(window["webpackJsonp"] = window["webpackJsonp"] || []).push([["chunk-vendors"],{ /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Analytics.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Analytics.js ***! \******************************************************************/ /*! exports provided: AnalyticsClass, Analytics */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsClass\", function() { return AnalyticsClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Analytics\", function() { return Analytics; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _Providers_AWSPinpointProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Providers/AWSPinpointProvider */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSPinpointProvider.js\");\n/* harmony import */ var _trackers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./trackers */ \"./node_modules/@aws-amplify/analytics/lib-esm/trackers/index.js\");\n/*\n * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AnalyticsClass');\nvar AMPLIFY_SYMBOL = (typeof Symbol !== 'undefined' && typeof Symbol.for === 'function'\n ? Symbol.for('amplify_default')\n : '@@amplify_default');\nvar dispatchAnalyticsEvent = function (event, data, message) {\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Hub\"].dispatch('analytics', { event: event, data: data, message: message }, 'Analytics', AMPLIFY_SYMBOL);\n};\nvar trackers = {\n pageView: _trackers__WEBPACK_IMPORTED_MODULE_2__[\"PageViewTracker\"],\n event: _trackers__WEBPACK_IMPORTED_MODULE_2__[\"EventTracker\"],\n session: _trackers__WEBPACK_IMPORTED_MODULE_2__[\"SessionTracker\"],\n};\nvar _instance = null;\n/**\n * Provide mobile analytics client functions\n */\nvar AnalyticsClass = /** @class */ (function () {\n /**\n * Initialize Analtyics\n * @param config - Configuration of the Analytics\n */\n function AnalyticsClass() {\n this._config = {};\n this._pluggables = [];\n this._disabled = false;\n this._trackers = {};\n _instance = this;\n this.record = this.record.bind(this);\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Hub\"].listen('auth', listener);\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Hub\"].listen('storage', listener);\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Hub\"].listen('analytics', listener);\n }\n AnalyticsClass.prototype.getModuleName = function () {\n return 'Analytics';\n };\n /**\n * configure Analytics\n * @param {Object} config - Configuration of the Analytics\n */\n AnalyticsClass.prototype.configure = function (config) {\n var _this = this;\n if (!config)\n return this._config;\n logger.debug('configure Analytics', config);\n var amplifyConfig = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Parser\"].parseMobilehubConfig(config);\n this._config = Object.assign({}, this._config, amplifyConfig.Analytics, config);\n if (this._config['disabled']) {\n this._disabled = true;\n }\n // turn on the autoSessionRecord if not specified\n if (this._config['autoSessionRecord'] === undefined) {\n this._config['autoSessionRecord'] = true;\n }\n this._pluggables.forEach(function (pluggable) {\n // for backward compatibility\n var providerConfig = pluggable.getProviderName() === 'AWSPinpoint' &&\n !_this._config['AWSPinpoint']\n ? _this._config\n : _this._config[pluggable.getProviderName()];\n pluggable.configure(__assign({ disabled: _this._config['disabled'], autoSessionRecord: _this._config['autoSessionRecord'] }, providerConfig));\n });\n if (this._pluggables.length === 0) {\n this.addPluggable(new _Providers_AWSPinpointProvider__WEBPACK_IMPORTED_MODULE_1__[\"AWSPinpointProvider\"]());\n }\n dispatchAnalyticsEvent('configured', null, \"The Analytics category has been configured successfully\");\n logger.debug('current configuration', this._config);\n return this._config;\n };\n /**\n * add plugin into Analytics category\n * @param pluggable - an instance of the plugin\n */\n AnalyticsClass.prototype.addPluggable = function (pluggable) {\n if (pluggable && pluggable.getCategory() === 'Analytics') {\n this._pluggables.push(pluggable);\n // for backward compatibility\n var providerConfig = pluggable.getProviderName() === 'AWSPinpoint' &&\n !this._config['AWSPinpoint']\n ? this._config\n : this._config[pluggable.getProviderName()];\n var config = __assign({ disabled: this._config['disabled'] }, providerConfig);\n pluggable.configure(config);\n return config;\n }\n };\n /**\n * Get the plugin object\n * @param providerName - the name of the provider to be removed\n */\n AnalyticsClass.prototype.getPluggable = function (providerName) {\n for (var i = 0; i < this._pluggables.length; i += 1) {\n var pluggable = this._pluggables[i];\n if (pluggable.getProviderName() === providerName) {\n return pluggable;\n }\n }\n logger.debug('No plugin found with providerName', providerName);\n return null;\n };\n /**\n * Remove the plugin object\n * @param providerName - the name of the provider to be removed\n */\n AnalyticsClass.prototype.removePluggable = function (providerName) {\n var idx = 0;\n while (idx < this._pluggables.length) {\n if (this._pluggables[idx].getProviderName() === providerName) {\n break;\n }\n idx += 1;\n }\n if (idx === this._pluggables.length) {\n logger.debug('No plugin found with providerName', providerName);\n return;\n }\n else {\n this._pluggables.splice(idx, idx + 1);\n return;\n }\n };\n /**\n * stop sending events\n */\n AnalyticsClass.prototype.disable = function () {\n this._disabled = true;\n };\n /**\n * start sending events\n */\n AnalyticsClass.prototype.enable = function () {\n this._disabled = false;\n };\n /**\n * Record Session start\n * @param [provider] - name of the provider.\n * @return - A promise which resolves if buffer doesn't overflow\n */\n AnalyticsClass.prototype.startSession = function (provider) {\n return __awaiter(this, void 0, void 0, function () {\n var params;\n return __generator(this, function (_a) {\n params = { event: { name: '_session.start' }, provider: provider };\n return [2 /*return*/, this._sendEvent(params)];\n });\n });\n };\n /**\n * Record Session stop\n * @param [provider] - name of the provider.\n * @return - A promise which resolves if buffer doesn't overflow\n */\n AnalyticsClass.prototype.stopSession = function (provider) {\n return __awaiter(this, void 0, void 0, function () {\n var params;\n return __generator(this, function (_a) {\n params = { event: { name: '_session.stop' }, provider: provider };\n return [2 /*return*/, this._sendEvent(params)];\n });\n });\n };\n AnalyticsClass.prototype.record = function (event, providerOrAttributes, metrics) {\n return __awaiter(this, void 0, void 0, function () {\n var params;\n return __generator(this, function (_a) {\n params = null;\n // this is just for compatibility, going to be deprecated\n if (typeof event === 'string') {\n params = {\n event: {\n name: event,\n attributes: providerOrAttributes,\n metrics: metrics,\n },\n provider: 'AWSPinpoint',\n };\n }\n else {\n params = { event: event, provider: providerOrAttributes };\n }\n return [2 /*return*/, this._sendEvent(params)];\n });\n });\n };\n AnalyticsClass.prototype.updateEndpoint = function (attrs, provider) {\n return __awaiter(this, void 0, void 0, function () {\n var event;\n return __generator(this, function (_a) {\n event = __assign(__assign({}, attrs), { name: '_update_endpoint' });\n return [2 /*return*/, this.record(event, provider)];\n });\n });\n };\n AnalyticsClass.prototype._sendEvent = function (params) {\n var _this = this;\n if (this._disabled) {\n logger.debug('Analytics has been disabled');\n return Promise.resolve();\n }\n var provider = params.provider ? params.provider : 'AWSPinpoint';\n return new Promise(function (resolve, reject) {\n _this._pluggables.forEach(function (pluggable) {\n if (pluggable.getProviderName() === provider) {\n pluggable.record(params, { resolve: resolve, reject: reject });\n }\n });\n });\n };\n AnalyticsClass.prototype.autoTrack = function (trackerType, opts) {\n if (!trackers[trackerType]) {\n logger.debug('invalid tracker type');\n return;\n }\n // to sync up two different configuration ways of auto session tracking\n if (trackerType === 'session') {\n this._config['autoSessionRecord'] = opts['enable'];\n }\n var tracker = this._trackers[trackerType];\n if (!tracker) {\n this._trackers[trackerType] = new trackers[trackerType](this.record, opts);\n }\n else {\n tracker.configure(opts);\n }\n };\n return AnalyticsClass;\n}());\n\nvar endpointUpdated = false;\nvar authConfigured = false;\nvar analyticsConfigured = false;\nvar listener = function (capsule) {\n var channel = capsule.channel, payload = capsule.payload;\n logger.debug('on hub capsule ' + channel, payload);\n switch (channel) {\n case 'auth':\n authEvent(payload);\n break;\n case 'storage':\n storageEvent(payload);\n break;\n case 'analytics':\n analyticsEvent(payload);\n break;\n default:\n break;\n }\n};\nvar storageEvent = function (payload) {\n var _a = payload.data, attrs = _a.attrs, metrics = _a.metrics;\n if (!attrs)\n return;\n if (analyticsConfigured) {\n _instance\n .record({\n name: 'Storage',\n attributes: attrs,\n metrics: metrics,\n })\n .catch(function (e) {\n logger.debug('Failed to send the storage event automatically', e);\n });\n }\n};\nvar authEvent = function (payload) {\n var event = payload.event;\n if (!event) {\n return;\n }\n var recordAuthEvent = function (eventName) { return __awaiter(void 0, void 0, void 0, function () {\n var err_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(authConfigured && analyticsConfigured)) return [3 /*break*/, 4];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, _instance.record({ name: \"_userauth.\" + eventName })];\n case 2: return [2 /*return*/, _a.sent()];\n case 3:\n err_1 = _a.sent();\n logger.debug(\"Failed to send the \" + eventName + \" event automatically\", err_1);\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n }); };\n switch (event) {\n case 'signIn':\n return recordAuthEvent('sign_in');\n case 'signUp':\n return recordAuthEvent('sign_up');\n case 'signOut':\n return recordAuthEvent('sign_out');\n case 'signIn_failure':\n return recordAuthEvent('auth_fail');\n case 'configured':\n authConfigured = true;\n if (authConfigured && analyticsConfigured) {\n sendEvents();\n }\n break;\n }\n};\nvar analyticsEvent = function (payload) {\n var event = payload.event;\n if (!event)\n return;\n switch (event) {\n case 'pinpointProvider_configured':\n analyticsConfigured = true;\n if (authConfigured && analyticsConfigured) {\n sendEvents();\n }\n break;\n }\n};\nvar sendEvents = function () {\n var config = _instance.configure();\n if (!endpointUpdated && config['autoSessionRecord']) {\n _instance.updateEndpoint({ immediate: true }).catch(function (e) {\n logger.debug('Failed to update the endpoint', e);\n });\n endpointUpdated = true;\n }\n _instance.autoTrack('session', {\n enable: config['autoSessionRecord'],\n });\n};\nvar Analytics = new AnalyticsClass();\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"].register(Analytics);\n//# sourceMappingURL=Analytics.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Analytics.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSKinesisFirehoseProvider.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSKinesisFirehoseProvider.js ***! \*********************************************************************************************/ /*! exports provided: AWSKinesisFirehoseProvider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSKinesisFirehoseProvider\", function() { return AWSKinesisFirehoseProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _AWSKinesisProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AWSKinesisProvider */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSKinesisProvider.js\");\n/* harmony import */ var _aws_sdk_client_firehose__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/client-firehose */ \"./node_modules/@aws-sdk/client-firehose/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AWSKineisFirehoseProvider');\nvar AWSKinesisFirehoseProvider = /** @class */ (function (_super) {\n __extends(AWSKinesisFirehoseProvider, _super);\n function AWSKinesisFirehoseProvider(config) {\n return _super.call(this, config) || this;\n }\n /**\n * get provider name of the plugin\n */\n AWSKinesisFirehoseProvider.prototype.getProviderName = function () {\n return 'AWSKinesisFirehose';\n };\n AWSKinesisFirehoseProvider.prototype._sendEvents = function (group) {\n var _this = this;\n if (group.length === 0) {\n return;\n }\n var _a = group[0], config = _a.config, credentials = _a.credentials;\n var initClients = this._init(config, credentials);\n if (!initClients)\n return false;\n var records = {};\n group.map(function (params) {\n // split by streamName\n var evt = params.event;\n var streamName = evt.streamName, data = evt.data;\n if (records[streamName] === undefined) {\n records[streamName] = [];\n }\n var bufferData = data && typeof data !== 'string' ? JSON.stringify(data) : data;\n var Data = Object(_aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_3__[\"fromUtf8\"])(bufferData);\n var record = { Data: Data };\n records[streamName].push(record);\n });\n Object.keys(records).map(function (streamName) {\n logger.debug('putting records to kinesis', streamName, 'with records', records[streamName]);\n _this._kinesisFirehose\n .send(new _aws_sdk_client_firehose__WEBPACK_IMPORTED_MODULE_2__[\"PutRecordBatchCommand\"]({\n Records: records[streamName],\n DeliveryStreamName: streamName,\n }))\n .then(function (res) { return logger.debug('Upload records to stream', streamName); })\n .catch(function (err) { return logger.debug('Failed to upload records to Kinesis', err); });\n });\n };\n AWSKinesisFirehoseProvider.prototype._init = function (config, credentials) {\n logger.debug('init clients');\n if (this._kinesisFirehose &&\n this._config.credentials &&\n this._config.credentials.sessionToken === credentials.sessionToken &&\n this._config.credentials.identityId === credentials.identityId) {\n logger.debug('no change for analytics config, directly return from init');\n return true;\n }\n this._config.credentials = credentials;\n var region = config.region;\n return this._initFirehose(region, credentials);\n };\n AWSKinesisFirehoseProvider.prototype._initFirehose = function (region, credentials) {\n logger.debug('initialize kinesis firehose with credentials', credentials);\n this._kinesisFirehose = new _aws_sdk_client_firehose__WEBPACK_IMPORTED_MODULE_2__[\"FirehoseClient\"]({\n apiVersion: '2015-08-04',\n region: region,\n credentials: credentials,\n });\n return true;\n };\n return AWSKinesisFirehoseProvider;\n}(_AWSKinesisProvider__WEBPACK_IMPORTED_MODULE_1__[\"AWSKinesisProvider\"]));\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (AWSKinesisFirehoseProvider);\n//# sourceMappingURL=AWSKinesisFirehoseProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSKinesisFirehoseProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSKinesisProvider.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSKinesisProvider.js ***! \*************************************************************************************/ /*! exports provided: AWSKinesisProvider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSKinesisProvider\", function() { return AWSKinesisProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_sdk_client_kinesis__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-kinesis */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AWSKinesisProvider');\n// events buffer\nvar BUFFER_SIZE = 1000;\nvar FLUSH_SIZE = 100;\nvar FLUSH_INTERVAL = 5 * 1000; // 5s\nvar RESEND_LIMIT = 5;\nvar AWSKinesisProvider = /** @class */ (function () {\n function AWSKinesisProvider(config) {\n this._buffer = [];\n this._config = config || {};\n this._config.bufferSize = this._config.bufferSize || BUFFER_SIZE;\n this._config.flushSize = this._config.flushSize || FLUSH_SIZE;\n this._config.flushInterval = this._config.flushInterval || FLUSH_INTERVAL;\n this._config.resendLimit = this._config.resendLimit || RESEND_LIMIT;\n this._setupTimer();\n }\n AWSKinesisProvider.prototype._setupTimer = function () {\n var _this = this;\n if (this._timer) {\n clearInterval(this._timer);\n }\n var _a = this._config, flushSize = _a.flushSize, flushInterval = _a.flushInterval;\n this._timer = setInterval(function () {\n var size = _this._buffer.length < flushSize ? _this._buffer.length : flushSize;\n var events = [];\n for (var i = 0; i < size; i += 1) {\n var params = _this._buffer.shift();\n events.push(params);\n }\n _this._sendFromBuffer(events);\n }, flushInterval);\n };\n /**\n * get the category of the plugin\n */\n AWSKinesisProvider.prototype.getCategory = function () {\n return 'Analytics';\n };\n /**\n * get provider name of the plugin\n */\n AWSKinesisProvider.prototype.getProviderName = function () {\n return 'AWSKinesis';\n };\n /**\n * configure the plugin\n * @param {Object} config - configuration\n */\n AWSKinesisProvider.prototype.configure = function (config) {\n logger.debug('configure Analytics', config);\n var conf = config || {};\n this._config = Object.assign({}, this._config, conf);\n this._setupTimer();\n return this._config;\n };\n /**\n * record an event\n * @param {Object} params - the params of an event\n */\n AWSKinesisProvider.prototype.record = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._getCredentials()];\n case 1:\n credentials = _a.sent();\n if (!credentials)\n return [2 /*return*/, Promise.resolve(false)];\n Object.assign(params, { config: this._config, credentials: credentials });\n return [2 /*return*/, this._putToBuffer(params)];\n }\n });\n });\n };\n AWSKinesisProvider.prototype.updateEndpoint = function () {\n logger.debug('updateEndpoint is not implemented in Kinesis provider');\n return Promise.resolve(true);\n };\n /**\n * @private\n * @param params - params for the event recording\n * Put events into buffer\n */\n AWSKinesisProvider.prototype._putToBuffer = function (params) {\n if (this._buffer.length < BUFFER_SIZE) {\n this._buffer.push(params);\n return Promise.resolve(true);\n }\n else {\n logger.debug('exceed analytics events buffer size');\n return Promise.reject(false);\n }\n };\n AWSKinesisProvider.prototype._sendFromBuffer = function (events) {\n var _this = this;\n // collapse events by credentials\n // events = [ {params} ]\n var eventsGroups = [];\n var preCred = null;\n var group = [];\n for (var i = 0; i < events.length; i += 1) {\n var cred = events[i].credentials;\n if (i === 0) {\n group.push(events[i]);\n preCred = cred;\n }\n else {\n if (cred.sessionToken === preCred.sessionToken &&\n cred.identityId === preCred.identityId) {\n logger.debug('no change for cred, put event in the same group');\n group.push(events[i]);\n }\n else {\n eventsGroups.push(group);\n group = [];\n group.push(events[i]);\n preCred = cred;\n }\n }\n }\n eventsGroups.push(group);\n eventsGroups.map(function (evts) {\n _this._sendEvents(evts);\n });\n };\n AWSKinesisProvider.prototype._sendEvents = function (group) {\n var _this = this;\n if (group.length === 0) {\n return;\n }\n var _a = group[0], config = _a.config, credentials = _a.credentials;\n var initClients = this._init(config, credentials);\n if (!initClients)\n return false;\n var records = {};\n group.map(function (params) {\n // spit by streamName\n var evt = params.event;\n var streamName = evt.streamName;\n if (records[streamName] === undefined) {\n records[streamName] = [];\n }\n var bufferData = evt.data && typeof evt.data !== 'string'\n ? JSON.stringify(evt.data)\n : evt.data;\n var Data = Object(_aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_2__[\"fromUtf8\"])(bufferData);\n var PartitionKey = evt.partitionKey || 'partition-' + credentials.identityId;\n var record = { Data: Data, PartitionKey: PartitionKey };\n records[streamName].push(record);\n });\n Object.keys(records).map(function (streamName) { return __awaiter(_this, void 0, void 0, function () {\n var command, err_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('putting records to kinesis with records', records[streamName]);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n command = new _aws_sdk_client_kinesis__WEBPACK_IMPORTED_MODULE_1__[\"PutRecordsCommand\"]({\n Records: records[streamName],\n StreamName: streamName,\n });\n return [4 /*yield*/, this._kinesis.send(command)];\n case 2:\n _a.sent();\n logger.debug('Upload records to stream', streamName);\n return [3 /*break*/, 4];\n case 3:\n err_1 = _a.sent();\n logger.debug('Failed to upload records to Kinesis', err_1);\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n }); });\n };\n AWSKinesisProvider.prototype._init = function (config, credentials) {\n logger.debug('init clients');\n if (this._kinesis &&\n this._config.credentials &&\n this._config.credentials.sessionToken === credentials.sessionToken &&\n this._config.credentials.identityId === credentials.identityId) {\n logger.debug('no change for analytics config, directly return from init');\n return true;\n }\n this._config.credentials = credentials;\n var region = config.region, endpoint = config.endpoint;\n return this._initKinesis(region, endpoint, credentials);\n };\n AWSKinesisProvider.prototype._initKinesis = function (region, endpoint, credentials) {\n logger.debug('initialize kinesis with credentials', credentials);\n this._kinesis = new _aws_sdk_client_kinesis__WEBPACK_IMPORTED_MODULE_1__[\"KinesisClient\"]({\n region: region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"getAmplifyUserAgent\"])(),\n endpoint: endpoint,\n });\n return true;\n };\n /**\n * @private\n * check if current credentials exists\n */\n AWSKinesisProvider.prototype._getCredentials = function () {\n var _this = this;\n return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()\n .then(function (credentials) {\n if (!credentials)\n return null;\n logger.debug('set credentials for analytics', _this._config.credentials);\n return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].shear(credentials);\n })\n .catch(function (err) {\n logger.debug('ensure credentials error', err);\n return null;\n });\n };\n return AWSKinesisProvider;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (AWSKinesisProvider);\n//# sourceMappingURL=AWSKinesisProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSKinesisProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSPinpointProvider.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSPinpointProvider.js ***! \**************************************************************************************/ /*! exports provided: AWSPinpointProvider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSPinpointProvider\", function() { return AWSPinpointProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_sdk_client_pinpoint__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-pinpoint */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/index.js\");\n/* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/cache */ \"./node_modules/@aws-amplify/cache/lib-esm/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! uuid */ \"./node_modules/uuid/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _EventBuffer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./EventBuffer */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/EventBuffer.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\n\n\n\n\n\nvar AMPLIFY_SYMBOL = (typeof Symbol !== 'undefined' &&\n typeof Symbol.for === 'function'\n ? Symbol.for('amplify_default')\n : '@@amplify_default');\nvar dispatchAnalyticsEvent = function (event, data) {\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Hub\"].dispatch('analytics', { event: event, data: data }, 'Analytics', AMPLIFY_SYMBOL);\n};\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AWSPinpointProvider');\nvar RETRYABLE_CODES = [429, 500];\nvar ACCEPTED_CODES = [202];\nvar FORBIDDEN_CODE = 403;\nvar MOBILE_SERVICE_NAME = 'mobiletargeting';\nvar EXPIRED_TOKEN_CODE = 'ExpiredTokenException';\nvar UPDATE_ENDPOINT = '_update_endpoint';\nvar SESSION_START = '_session.start';\nvar SESSION_STOP = '_session.stop';\nvar BEACON_SUPPORTED = typeof navigator !== 'undefined' &&\n navigator &&\n typeof navigator.sendBeacon === 'function';\n// events buffer\nvar BUFFER_SIZE = 1000;\nvar FLUSH_SIZE = 100;\nvar FLUSH_INTERVAL = 5 * 1000; // 5s\nvar RESEND_LIMIT = 5;\n// params: { event: {name: , .... }, timeStamp, config, resendLimits }\nvar AWSPinpointProvider = /** @class */ (function () {\n function AWSPinpointProvider(config) {\n this._endpointGenerating = true;\n this._endpointUpdateInProgress = false;\n this._buffer = null;\n this._endpointBuffer = [];\n this._config = config ? config : {};\n this._config.bufferSize = this._config.bufferSize || BUFFER_SIZE;\n this._config.flushSize = this._config.flushSize || FLUSH_SIZE;\n this._config.flushInterval = this._config.flushInterval || FLUSH_INTERVAL;\n this._config.resendLimit = this._config.resendLimit || RESEND_LIMIT;\n this._clientInfo = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ClientDevice\"].clientInfo();\n }\n /**\n * get the category of the plugin\n */\n AWSPinpointProvider.prototype.getCategory = function () {\n return AWSPinpointProvider.category;\n };\n /**\n * get provider name of the plugin\n */\n AWSPinpointProvider.prototype.getProviderName = function () {\n return AWSPinpointProvider.providerName;\n };\n /**\n * configure the plugin\n * @param {Object} config - configuration\n */\n AWSPinpointProvider.prototype.configure = function (config) {\n var _this = this;\n logger.debug('configure Analytics', config);\n var conf = config || {};\n this._config = Object.assign({}, this._config, conf);\n // If autoSessionRecord is enabled, we need to wait for the endpoint to be\n // updated before sending any events. See `sendEvents` in `Analytics.ts`\n this._endpointGenerating = !!config['autoSessionRecord'];\n if (this._config.appId && !this._config.disabled) {\n if (!this._config.endpointId) {\n var cacheKey = this.getProviderName() + '_' + this._config.appId;\n this._getEndpointId(cacheKey)\n .then(function (endpointId) {\n logger.debug('setting endpoint id from the cache', endpointId);\n _this._config.endpointId = endpointId;\n dispatchAnalyticsEvent('pinpointProvider_configured', null);\n })\n .catch(function (err) {\n logger.debug('Failed to generate endpointId', err);\n });\n }\n else {\n dispatchAnalyticsEvent('pinpointProvider_configured', null);\n }\n }\n else {\n this._flushBuffer();\n }\n return this._config;\n };\n /**\n * record an event\n * @param {Object} params - the params of an event\n */\n AWSPinpointProvider.prototype.record = function (params, handlers) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, timestamp;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('_public record', params);\n return [4 /*yield*/, this._getCredentials()];\n case 1:\n credentials = _a.sent();\n if (!credentials || !this._config.appId || !this._config.region) {\n logger.debug('cannot send events without credentials, applicationId or region');\n return [2 /*return*/, handlers.reject(new Error('No credentials, applicationId or region'))];\n }\n this._initClients(credentials);\n timestamp = new Date().getTime();\n // attach the session and eventId\n this._generateSession(params);\n params.event.eventId = Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v1\"])();\n Object.assign(params, { timestamp: timestamp, config: this._config });\n if (params.event.immediate) {\n return [2 /*return*/, this._send(params, handlers)];\n }\n else {\n this._putToBuffer(params, handlers);\n }\n return [2 /*return*/];\n }\n });\n });\n };\n AWSPinpointProvider.prototype._sendEndpointUpdate = function (endpointObject) {\n return __awaiter(this, void 0, void 0, function () {\n var next;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (this._endpointUpdateInProgress) {\n this._endpointBuffer.push(endpointObject);\n return [2 /*return*/];\n }\n this._endpointUpdateInProgress = true;\n return [4 /*yield*/, this._updateEndpoint(endpointObject)];\n case 1:\n _a.sent();\n next = this._endpointBuffer.shift();\n this._endpointUpdateInProgress = false;\n next && this._sendEndpointUpdate(next);\n return [2 /*return*/];\n }\n });\n });\n };\n /**\n * @private\n * @param params - params for event recording\n * Put events into buffer\n */\n AWSPinpointProvider.prototype._putToBuffer = function (params, handlers) {\n if (params.event.name === UPDATE_ENDPOINT) {\n this._sendEndpointUpdate({ params: params, handlers: handlers });\n return;\n }\n this._buffer && this._buffer.push({ params: params, handlers: handlers });\n };\n AWSPinpointProvider.prototype._generateSession = function (params) {\n this._sessionId = this._sessionId || Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v1\"])();\n var event = params.event;\n switch (event.name) {\n case SESSION_START:\n // refresh the session id and session start time\n this._sessionStartTimestamp = new Date().getTime();\n this._sessionId = Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v1\"])();\n event.session = {\n Id: this._sessionId,\n StartTimestamp: new Date(this._sessionStartTimestamp).toISOString(),\n };\n break;\n case SESSION_STOP:\n var stopTimestamp = new Date().getTime();\n this._sessionStartTimestamp =\n this._sessionStartTimestamp || new Date().getTime();\n this._sessionId = this._sessionId || Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v1\"])();\n event.session = {\n Id: this._sessionId,\n Duration: stopTimestamp - this._sessionStartTimestamp,\n StartTimestamp: new Date(this._sessionStartTimestamp).toISOString(),\n StopTimestamp: new Date(stopTimestamp).toISOString(),\n };\n this._sessionId = undefined;\n this._sessionStartTimestamp = undefined;\n break;\n default:\n this._sessionStartTimestamp =\n this._sessionStartTimestamp || new Date().getTime();\n this._sessionId = this._sessionId || Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v1\"])();\n event.session = {\n Id: this._sessionId,\n StartTimestamp: new Date(this._sessionStartTimestamp).toISOString(),\n };\n }\n };\n AWSPinpointProvider.prototype._send = function (params, handlers) {\n return __awaiter(this, void 0, void 0, function () {\n var event;\n return __generator(this, function (_a) {\n event = params.event;\n switch (event.name) {\n case UPDATE_ENDPOINT:\n return [2 /*return*/, this._updateEndpoint({ params: params, handlers: handlers })];\n case SESSION_STOP:\n return [2 /*return*/, this._pinpointSendStopSession(params, handlers)];\n default:\n return [2 /*return*/, this._pinpointPutEvents(params, handlers)];\n }\n return [2 /*return*/];\n });\n });\n };\n AWSPinpointProvider.prototype._generateBatchItemContext = function (params) {\n var _a;\n var event = params.event, timestamp = params.timestamp, config = params.config;\n var name = event.name, attributes = event.attributes, metrics = event.metrics, eventId = event.eventId, session = event.session;\n var appId = config.appId, endpointId = config.endpointId;\n var endpointContext = {};\n var eventParams = {\n ApplicationId: appId,\n EventsRequest: {\n BatchItem: {},\n },\n };\n var endpointObj = {};\n endpointObj.Endpoint = endpointContext;\n endpointObj.Events = (_a = {},\n _a[eventId] = {\n EventType: name,\n Timestamp: new Date(timestamp).toISOString(),\n Attributes: attributes,\n Metrics: metrics,\n Session: session,\n },\n _a);\n eventParams.EventsRequest.BatchItem[endpointId] = endpointObj;\n return eventParams;\n };\n AWSPinpointProvider.prototype._pinpointPutEvents = function (params, handlers) {\n return __awaiter(this, void 0, void 0, function () {\n var eventId, endpointId, eventParams, command, data, _a, _b, _c, _d, StatusCode, Message, err_1;\n return __generator(this, function (_e) {\n switch (_e.label) {\n case 0:\n eventId = params.event.eventId, endpointId = params.config.endpointId;\n eventParams = this._generateBatchItemContext(params);\n command = new _aws_sdk_client_pinpoint__WEBPACK_IMPORTED_MODULE_1__[\"PutEventsCommand\"](eventParams);\n _e.label = 1;\n case 1:\n _e.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.pinpointClient.send(command)];\n case 2:\n data = _e.sent();\n _a = data, _b = endpointId, _c = eventId, _d = _a.EventsResponse.Results[_b].EventsItemResponse[_c], StatusCode = _d.StatusCode, Message = _d.Message;\n if (ACCEPTED_CODES.includes(StatusCode)) {\n logger.debug('record event success. ', data);\n return [2 /*return*/, handlers.resolve(data)];\n }\n else {\n if (RETRYABLE_CODES.includes(StatusCode)) {\n this._retry(params, handlers);\n }\n else {\n logger.error(\"Event \" + eventId + \" is not accepted, the error is \" + Message);\n return [2 /*return*/, handlers.reject(data)];\n }\n }\n return [3 /*break*/, 4];\n case 3:\n err_1 = _e.sent();\n this._eventError(err_1);\n return [2 /*return*/, handlers.reject(err_1)];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n AWSPinpointProvider.prototype._pinpointSendStopSession = function (params, handlers) {\n if (!BEACON_SUPPORTED) {\n this._pinpointPutEvents(params, handlers);\n return;\n }\n var eventParams = this._generateBatchItemContext(params);\n var region = this._config.region;\n var ApplicationId = eventParams.ApplicationId, EventsRequest = eventParams.EventsRequest;\n var accessInfo = {\n secret_key: this._config.credentials.secretAccessKey,\n access_key: this._config.credentials.accessKeyId,\n session_token: this._config.credentials.sessionToken,\n };\n var url = \"https://pinpoint.\" + region + \".amazonaws.com/v1/apps/\" + ApplicationId + \"/events/legacy\";\n var body = JSON.stringify(EventsRequest);\n var method = 'POST';\n var request = {\n url: url,\n body: body,\n method: method,\n };\n var serviceInfo = { region: region, service: MOBILE_SERVICE_NAME };\n var requestUrl = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Signer\"].signUrl(request, accessInfo, serviceInfo, null);\n var success = navigator.sendBeacon(requestUrl, body);\n if (success) {\n return handlers.resolve('sendBeacon success');\n }\n return handlers.reject('sendBeacon failure');\n };\n AWSPinpointProvider.prototype._retry = function (params, handlers) {\n var resendLimit = params.config.resendLimit;\n // For backward compatibility\n params.resendLimit =\n typeof params.resendLimit === 'number' ? params.resendLimit : resendLimit;\n if (params.resendLimit-- > 0) {\n logger.debug(\"resending event \" + params.eventName + \" with \" + params.resendLimit + \" retry times left\");\n this._pinpointPutEvents(params, handlers);\n }\n else {\n logger.debug(\"retry times used up for event \" + params.eventName);\n }\n };\n AWSPinpointProvider.prototype._updateEndpoint = function (endpointObject) {\n return __awaiter(this, void 0, void 0, function () {\n var params, handlers, config, event, appId, endpointId, request, update_params, command, data, err_2, failureData;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n params = endpointObject.params, handlers = endpointObject.handlers;\n config = params.config, event = params.event;\n appId = config.appId, endpointId = config.endpointId;\n request = this._endpointRequest(config, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"JS\"].transferKeyToLowerCase(event, [], ['attributes', 'userAttributes', 'Attributes', 'UserAttributes']));\n update_params = {\n ApplicationId: appId,\n EndpointId: endpointId,\n EndpointRequest: request,\n };\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n command = new _aws_sdk_client_pinpoint__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointCommand\"](update_params);\n return [4 /*yield*/, this.pinpointClient.send(command)];\n case 2:\n data = _a.sent();\n logger.debug('updateEndpoint success', data);\n this._endpointGenerating = false;\n this._resumeBuffer();\n handlers.resolve(data);\n return [2 /*return*/];\n case 3:\n err_2 = _a.sent();\n failureData = {\n err: err_2,\n update_params: update_params,\n endpointObject: endpointObject,\n };\n return [2 /*return*/, this._handleEndpointUpdateFailure(failureData)];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n AWSPinpointProvider.prototype._handleEndpointUpdateFailure = function (failureData) {\n return __awaiter(this, void 0, void 0, function () {\n var err, endpointObject, statusCode, exponential;\n return __generator(this, function (_a) {\n err = failureData.err, endpointObject = failureData.endpointObject;\n statusCode = err.$metadata && err.$metadata.httpStatusCode;\n logger.debug('updateEndpoint error', err);\n switch (statusCode) {\n case FORBIDDEN_CODE:\n return [2 /*return*/, this._handleEndpointUpdateForbidden(failureData)];\n default:\n if (RETRYABLE_CODES.includes(statusCode)) {\n exponential = true;\n return [2 /*return*/, this._retryEndpointUpdate(endpointObject, exponential)];\n }\n logger.error('updateEndpoint failed', err);\n endpointObject.handlers.reject(err);\n }\n return [2 /*return*/];\n });\n });\n };\n AWSPinpointProvider.prototype._handleEndpointUpdateForbidden = function (failureData) {\n var err = failureData.err, endpointObject = failureData.endpointObject;\n var code = err.code, retryable = err.retryable;\n if (code !== EXPIRED_TOKEN_CODE && !retryable) {\n return endpointObject.handlers.reject(err);\n }\n this._retryEndpointUpdate(endpointObject);\n };\n AWSPinpointProvider.prototype._retryEndpointUpdate = function (endpointObject, exponential) {\n if (exponential === void 0) { exponential = false; }\n logger.debug('_retryEndpointUpdate', endpointObject);\n var params = endpointObject.params;\n // TODO: implement retry with exp back off once exp function is available\n var resendLimit = params.config.resendLimit;\n params.resendLimit =\n typeof params.resendLimit === 'number' ? params.resendLimit : resendLimit;\n if (params.resendLimit-- > 0) {\n logger.debug(\"resending endpoint update \" + params.event.eventId + \" with \" + params.resendLimit + \" retry attempts remaining\");\n // insert at the front of endpointBuffer\n this._endpointBuffer.length\n ? this._endpointBuffer.unshift(endpointObject)\n : this._updateEndpoint(endpointObject);\n return;\n }\n logger.warn(\"resending endpoint update \" + params.event.eventId + \" failed after \" + params.config.resendLimit + \" attempts\");\n if (this._endpointGenerating) {\n logger.error('Initial endpoint update failed. ');\n }\n };\n /**\n * @private\n * @param config\n * Init the clients\n */\n AWSPinpointProvider.prototype._initClients = function (credentials) {\n return __awaiter(this, void 0, void 0, function () {\n var identityId, region;\n return __generator(this, function (_a) {\n logger.debug('init clients');\n if (this.pinpointClient &&\n this._config.credentials &&\n this._config.credentials.sessionToken === credentials.sessionToken &&\n this._config.credentials.identityId === credentials.identityId) {\n logger.debug('no change for aws credentials, directly return from init');\n return [2 /*return*/];\n }\n identityId = this._config.credentials\n ? this._config.credentials.identityId\n : null;\n this._config.credentials = credentials;\n region = this._config.region;\n logger.debug('init clients with credentials', credentials);\n this.pinpointClient = new _aws_sdk_client_pinpoint__WEBPACK_IMPORTED_MODULE_1__[\"PinpointClient\"]({\n region: region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"getAmplifyUserAgent\"])(),\n });\n // TODO: remove this middleware once a long term fix is implemented by aws-sdk-js team.\n this.pinpointClient.middlewareStack.addRelativeTo(function (next) { return function (args) {\n delete args.request.headers['amz-sdk-invocation-id'];\n delete args.request.headers['amz-sdk-request'];\n return next(args);\n }; }, {\n step: 'finalizeRequest',\n relation: 'after',\n toMiddleware: 'retryMiddleware',\n });\n if (this._bufferExists() && identityId === credentials.identityId) {\n // if the identity has remained the same, pass the updated client to the buffer\n this._updateBufferClient();\n }\n else {\n // otherwise flush the buffer and instantiate a new one\n // this will cause the old buffer to send any remaining events\n // with the old credentials and then stop looping and shortly thereafter get picked up by GC\n this._initBuffer();\n }\n this._customizePinpointClientReq();\n return [2 /*return*/];\n });\n });\n };\n AWSPinpointProvider.prototype._bufferExists = function () {\n return this._buffer && this._buffer instanceof _EventBuffer__WEBPACK_IMPORTED_MODULE_4__[\"default\"];\n };\n AWSPinpointProvider.prototype._initBuffer = function () {\n if (this._bufferExists()) {\n this._flushBuffer();\n }\n this._buffer = new _EventBuffer__WEBPACK_IMPORTED_MODULE_4__[\"default\"](this.pinpointClient, this._config);\n // if the first endpoint update hasn't yet resolved pause the buffer to\n // prevent race conditions. It will be resumed as soon as that request succeeds\n if (this._endpointGenerating) {\n this._buffer.pause();\n }\n };\n AWSPinpointProvider.prototype._updateBufferClient = function () {\n if (this._bufferExists()) {\n this._buffer.updateClient(this.pinpointClient);\n }\n };\n AWSPinpointProvider.prototype._flushBuffer = function () {\n if (this._bufferExists()) {\n this._buffer.flush();\n this._buffer = null;\n }\n };\n AWSPinpointProvider.prototype._resumeBuffer = function () {\n if (this._bufferExists()) {\n this._buffer.resume();\n }\n };\n AWSPinpointProvider.prototype._customizePinpointClientReq = function () {\n // TODO FIXME: Find a middleware to do this with AWS V3 SDK\n // if (Platform.isReactNative) {\n // \tthis.pinpointClient.customizeRequests(request => {\n // \t\trequest.on('build', req => {\n // \t\t\treq.httpRequest.headers['user-agent'] = Platform.userAgent;\n // \t\t});\n // \t});\n // }\n };\n AWSPinpointProvider.prototype._getEndpointId = function (cacheKey) {\n return __awaiter(this, void 0, void 0, function () {\n var endpointId, ttl, expiration;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__[\"default\"].getItem(cacheKey)];\n case 1:\n endpointId = _a.sent();\n logger.debug('endpointId from cache', endpointId, 'type', typeof endpointId);\n if (!endpointId) {\n endpointId = Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v1\"])();\n ttl = 1000 * 60 * 60 * 24 * 365 * 100;\n expiration = new Date().getTime() + ttl;\n _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__[\"default\"].setItem(cacheKey, endpointId, {\n expires: expiration,\n priority: 1,\n });\n }\n return [2 /*return*/, endpointId];\n }\n });\n });\n };\n /**\n * EndPoint request\n * @return {Object} - The request of updating endpoint\n */\n AWSPinpointProvider.prototype._endpointRequest = function (config, event) {\n var credentials = config.credentials;\n var clientInfo = this._clientInfo || {};\n var clientContext = config.clientContext || {};\n // for now we have three different ways for default endpoint configurations\n // clientInfo\n // clientContext (deprecated)\n // config.endpoint\n var defaultEndpointConfig = config.endpoint || {};\n var demographicByClientInfo = {\n appVersion: clientInfo.appVersion,\n make: clientInfo.make,\n model: clientInfo.model,\n modelVersion: clientInfo.version,\n platform: clientInfo.platform,\n };\n // for backward compatibility\n var clientId = clientContext.clientId, appTitle = clientContext.appTitle, appVersionName = clientContext.appVersionName, appVersionCode = clientContext.appVersionCode, appPackageName = clientContext.appPackageName, demographicByClientContext = __rest(clientContext, [\"clientId\", \"appTitle\", \"appVersionName\", \"appVersionCode\", \"appPackageName\"]);\n var channelType = event.address\n ? clientInfo.platform === 'android'\n ? 'GCM'\n : 'APNS'\n : undefined;\n var tmp = __assign(__assign(__assign({ channelType: channelType, requestId: Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v1\"])(), effectiveDate: new Date().toISOString() }, defaultEndpointConfig), event), { attributes: __assign(__assign({}, defaultEndpointConfig.attributes), event.attributes), demographic: __assign(__assign(__assign(__assign({}, demographicByClientInfo), demographicByClientContext), defaultEndpointConfig.demographic), event.demographic), location: __assign(__assign({}, defaultEndpointConfig.location), event.location), metrics: __assign(__assign({}, defaultEndpointConfig.metrics), event.metrics), user: {\n userId: event.userId ||\n defaultEndpointConfig.userId ||\n credentials.identityId,\n userAttributes: __assign(__assign({}, defaultEndpointConfig.userAttributes), event.userAttributes),\n } });\n // eliminate unnecessary params\n var userId = tmp.userId, userAttributes = tmp.userAttributes, name = tmp.name, session = tmp.session, eventId = tmp.eventId, immediate = tmp.immediate, ret = __rest(tmp, [\"userId\", \"userAttributes\", \"name\", \"session\", \"eventId\", \"immediate\"]);\n return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"JS\"].transferKeyToUpperCase(ret, [], ['metrics', 'userAttributes', 'attributes']);\n };\n AWSPinpointProvider.prototype._eventError = function (err) {\n logger.error('record event failed.', err);\n logger.warn(\"Please ensure you have updated your Pinpoint IAM Policy \" +\n \"with the Action: \\\"mobiletargeting:PutEvents\\\" \" +\n \"in order to record events\");\n };\n AWSPinpointProvider.prototype._getCredentials = function () {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, err_3;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()];\n case 1:\n credentials = _a.sent();\n if (!credentials)\n return [2 /*return*/, null];\n logger.debug('set credentials for analytics', credentials);\n return [2 /*return*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].shear(credentials)];\n case 2:\n err_3 = _a.sent();\n logger.debug('ensure credentials error', err_3);\n return [2 /*return*/, null];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n AWSPinpointProvider.category = 'Analytics';\n AWSPinpointProvider.providerName = 'AWSPinpoint';\n return AWSPinpointProvider;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (AWSPinpointProvider);\n//# sourceMappingURL=AWSPinpointProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSPinpointProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/MediaAutoTrack.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/MediaAutoTrack.js ***! \*********************************************************************************************************/ /*! exports provided: MediaAutoTrack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MediaAutoTrack\", function() { return MediaAutoTrack; });\nvar HTML5_MEDIA_EVENT;\n(function (HTML5_MEDIA_EVENT) {\n HTML5_MEDIA_EVENT[\"PLAY\"] = \"play\";\n HTML5_MEDIA_EVENT[\"PAUSE\"] = \"pause\";\n HTML5_MEDIA_EVENT[\"ENDED\"] = \"Ended\";\n})(HTML5_MEDIA_EVENT || (HTML5_MEDIA_EVENT = {}));\nvar MEDIA_TYPE;\n(function (MEDIA_TYPE) {\n MEDIA_TYPE[\"IFRAME\"] = \"IFRAME\";\n MEDIA_TYPE[\"VIDEO\"] = \"VIDEO\";\n MEDIA_TYPE[\"AUDIO\"] = \"AUDIO\";\n})(MEDIA_TYPE || (MEDIA_TYPE = {}));\nvar EVENT_TYPE;\n(function (EVENT_TYPE) {\n EVENT_TYPE[\"PLAY\"] = \"Play\";\n EVENT_TYPE[\"ENDED\"] = \"Ended\";\n EVENT_TYPE[\"PAUSE\"] = \"Pause\";\n EVENT_TYPE[\"TIME_WATCHED\"] = \"TimeWatched\";\n})(EVENT_TYPE || (EVENT_TYPE = {}));\nvar MediaAutoTrack = /** @class */ (function () {\n function MediaAutoTrack(params, provider) {\n var _a;\n this.eventActionMapping = (_a = {},\n _a[EVENT_TYPE.ENDED] = this.endedEventAction.bind(this),\n _a[EVENT_TYPE.PLAY] = this.playEventAction.bind(this),\n _a[EVENT_TYPE.PAUSE] = this.pauseEventAction.bind(this),\n _a);\n var eventData = params.eventData;\n this._params = params;\n this._mediaElement = document.getElementById(eventData.properties['domElementId']);\n this._started = false;\n this._provider = provider;\n var mediaTrackFunMapping = {\n IFRAME: this._iframeMediaTracker,\n VIDEO: this._html5MediaTracker,\n AUDIO: this._html5MediaTracker,\n };\n mediaTrackFunMapping[this._mediaElement.tagName].bind(this)();\n this._initYoutubeFrame();\n }\n MediaAutoTrack.prototype._initYoutubeFrame = function () {\n this._youTubeIframeLoader = {\n src: 'https://www.youtube.com/iframe_api',\n loading: false,\n loaded: false,\n listeners: [],\n load: function (callback) {\n var _this = this;\n this.listeners.push(callback);\n if (this.loaded) {\n setTimeout(function () {\n _this.done();\n });\n return;\n }\n if (this.loading) {\n return;\n }\n this.loading = true;\n window['onYouTubeIframeAPIReady'] = function () {\n _this.loaded = true;\n _this.done();\n };\n var script = document.createElement('script');\n script.type = 'text/javascript';\n script.src = this.src;\n document.body.appendChild(script);\n },\n done: function () {\n delete window['onYouTubeIframeAPIReady'];\n while (this.listeners.length) {\n this.listeners.pop()(window['YT']);\n }\n },\n };\n };\n MediaAutoTrack.prototype._iframeMediaTracker = function () {\n var that = this;\n setInterval(function () {\n if (that._started) {\n that.recordEvent(MEDIA_TYPE.IFRAME, EVENT_TYPE.TIME_WATCHED);\n }\n }, 3 * 1000);\n this._youTubeIframeLoader.load(function (YT) {\n that._iframePlayer = new YT.Player(that._mediaElement.id, {\n events: { onStateChange: that._onPlayerStateChange.bind(that) },\n });\n });\n };\n MediaAutoTrack.prototype._onPlayerStateChange = function (event) {\n var iframeEventMapping = {\n 0: EVENT_TYPE.ENDED,\n 1: EVENT_TYPE.PLAY,\n 2: EVENT_TYPE.PAUSE,\n };\n var eventType = iframeEventMapping[event.data];\n if (eventType) {\n this.eventActionMapping[eventType](MEDIA_TYPE.IFRAME);\n }\n };\n MediaAutoTrack.prototype._html5MediaTracker = function () {\n var that = this;\n setInterval(function () {\n if (that._started) {\n that.recordEvent(MEDIA_TYPE.VIDEO, EVENT_TYPE.TIME_WATCHED);\n }\n }, 3 * 1000);\n this._mediaElement.addEventListener(HTML5_MEDIA_EVENT.PLAY, function () {\n that.eventActionMapping[EVENT_TYPE.PLAY](MEDIA_TYPE.VIDEO);\n }, false);\n this._mediaElement.addEventListener(HTML5_MEDIA_EVENT.PAUSE, function () {\n that.eventActionMapping[EVENT_TYPE.PAUSE](MEDIA_TYPE.VIDEO);\n }, false);\n this._mediaElement.addEventListener(HTML5_MEDIA_EVENT.ENDED, function () {\n that.eventActionMapping[EVENT_TYPE.ENDED](MEDIA_TYPE.VIDEO);\n }, false);\n };\n MediaAutoTrack.prototype.playEventAction = function (mediaType) {\n this._started = true;\n this.recordEvent(mediaType, EVENT_TYPE.PLAY);\n };\n MediaAutoTrack.prototype.pauseEventAction = function (mediaType) {\n this._started = false;\n this.recordEvent(mediaType, EVENT_TYPE.PAUSE);\n };\n MediaAutoTrack.prototype.endedEventAction = function (mediaType) {\n this._started = false;\n this.recordEvent(mediaType, EVENT_TYPE.ENDED);\n };\n MediaAutoTrack.prototype.recordEvent = function (mediaType, eventType) {\n var newParams = Object.assign({}, this._params);\n var eventData = newParams.eventData;\n eventData.eventType = eventType;\n if (mediaType === MEDIA_TYPE.VIDEO) {\n eventData.properties.timestamp = this._mediaElement.currentTime;\n eventData.properties.duration = this._mediaElement.duration;\n }\n else {\n eventData.properties.timestamp = this._financial(this._iframePlayer.getCurrentTime());\n eventData.properties.duration = this._financial(this._iframePlayer.getDuration());\n }\n var percentage = parseFloat(eventData.properties.timestamp) /\n parseFloat(eventData.properties.duration);\n eventData.properties.eventValue = Number(percentage.toFixed(4));\n delete eventData.properties.domElementId;\n this._provider.putToBuffer(newParams);\n };\n MediaAutoTrack.prototype._financial = function (x) {\n return Number.parseFloat(x).toFixed(4);\n };\n return MediaAutoTrack;\n}());\n\n//# sourceMappingURL=MediaAutoTrack.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/MediaAutoTrack.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/SessionInfoManager.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/SessionInfoManager.js ***! \*************************************************************************************************************/ /*! exports provided: SessionInfoManager */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SessionInfoManager\", function() { return SessionInfoManager; });\n/* harmony import */ var lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash/isEmpty */ \"./node_modules/lodash/isEmpty.js\");\n/* harmony import */ var lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var lodash_isEqual__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash/isEqual */ \"./node_modules/lodash/isEqual.js\");\n/* harmony import */ var lodash_isEqual__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(lodash_isEqual__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! uuid */ \"./node_modules/uuid/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/cache */ \"./node_modules/@aws-amplify/cache/lib-esm/index.js\");\n\n\n\n\n\nvar PERSONALIZE_CACHE = '_awsct';\nvar PERSONALIZE_CACHE_USERID = '_awsct_uid';\nvar PERSONALIZE_CACHE_SESSIONID = '_awsct_sid';\nvar DEFAULT_CACHE_PREFIX = 'peronslize';\nvar TIMER_INTERVAL = 30 * 1000;\nvar DELIMITER = '.';\nvar CACHE_EXPIRY_IN_DAYS = 7;\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"ConsoleLogger\"]('AmazonPersonalizeProvider');\nvar SessionInfoManager = /** @class */ (function () {\n function SessionInfoManager(prefixKey) {\n if (prefixKey === void 0) { prefixKey = ''; }\n this._isBrowser = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"JS\"].browserOrNode().isBrowser;\n this._timerKey = Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v1\"])().substr(0, 15);\n this._refreshTimer();\n }\n SessionInfoManager.prototype._refreshTimer = function () {\n if (this._timer) {\n clearInterval(this._timer);\n }\n var that = this;\n this._timer = setInterval(function () {\n that._timerKey = Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v1\"])().substr(0, 15);\n }, TIMER_INTERVAL);\n };\n SessionInfoManager.prototype.storeValue = function (key, value) {\n var today = new Date();\n var expire = new Date();\n expire.setTime(today.getTime() + 3600000 * 24 * CACHE_EXPIRY_IN_DAYS);\n _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4__[\"default\"].setItem(this._getCachePrefix(key), value, {\n expires: expire.getTime(),\n });\n };\n SessionInfoManager.prototype.retrieveValue = function (key) {\n return _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4__[\"default\"].getItem(this._getCachePrefix(key));\n };\n SessionInfoManager.prototype._getCachePrefix = function (key) {\n if (this._isBrowser) {\n return key + DELIMITER + window.location.host;\n }\n return DEFAULT_CACHE_PREFIX;\n };\n SessionInfoManager.prototype.getTimerKey = function () {\n return this._timerKey;\n };\n SessionInfoManager.prototype.updateSessionInfo = function (userId, sessionInfo) {\n var existUserId = sessionInfo.userId;\n var existSessionId = sessionInfo.sessionId;\n if (this._isRequireNewSession(userId, existUserId, existSessionId)) {\n var newSessionId = Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v1\"])();\n this.storeValue(PERSONALIZE_CACHE_USERID, userId);\n this.storeValue(PERSONALIZE_CACHE_SESSIONID, newSessionId);\n sessionInfo.sessionId = newSessionId;\n }\n else if (this._isRequireUpdateSessionInfo(userId, existUserId, existSessionId)) {\n this.storeValue(PERSONALIZE_CACHE_USERID, userId);\n }\n sessionInfo.userId = userId;\n };\n SessionInfoManager.prototype._isRequireUpdateSessionInfo = function (userId, cachedSessionUserId, cachedSessionSessionId) {\n // anonymouse => sign in : hasSession && s_userId == null && curr_userId !=null\n var isNoCachedSession = lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default()(cachedSessionSessionId);\n return (!isNoCachedSession && lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default()(cachedSessionUserId) && !lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default()(userId));\n };\n SessionInfoManager.prototype.retrieveSessionInfo = function (trackingId) {\n var sessionInfo = {};\n sessionInfo.trackingId = trackingId;\n sessionInfo.sessionId = this.retrieveValue(PERSONALIZE_CACHE_SESSIONID);\n sessionInfo.userId = this.retrieveValue(PERSONALIZE_CACHE_USERID);\n if (lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default()(sessionInfo.sessionId)) {\n sessionInfo.sessionId = Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v1\"])();\n this.storeValue(PERSONALIZE_CACHE_SESSIONID, sessionInfo.sessionId);\n }\n this.storeValue(PERSONALIZE_CACHE, trackingId);\n return sessionInfo;\n };\n SessionInfoManager.prototype._isRequireNewSession = function (userId, cachedSessionUserId, cachedSessionSessionId) {\n // new session => 1. no cached session info 2. signOut: s_userId !=null && curr_userId ==null\n // 3. switch account: s_userId !=null && curr_userId !=null && s_userId != curr_userId\n var isNoCachedSession = lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default()(cachedSessionSessionId);\n var isSignoutCase = lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default()(userId) && !lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default()(cachedSessionUserId);\n var isSwitchUserCase = !lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default()(userId) &&\n !lodash_isEmpty__WEBPACK_IMPORTED_MODULE_0___default()(cachedSessionUserId) &&\n !lodash_isEqual__WEBPACK_IMPORTED_MODULE_1___default()(userId, cachedSessionUserId);\n return isNoCachedSession || isSignoutCase || isSwitchUserCase;\n };\n return SessionInfoManager;\n}());\n\n//# sourceMappingURL=SessionInfoManager.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/SessionInfoManager.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/index.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/index.js ***! \************************************************************************************************/ /*! exports provided: SessionInfoManager, MediaAutoTrack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _SessionInfoManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SessionInfoManager */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/SessionInfoManager.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SessionInfoManager\", function() { return _SessionInfoManager__WEBPACK_IMPORTED_MODULE_0__[\"SessionInfoManager\"]; });\n\n/* harmony import */ var _MediaAutoTrack__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./MediaAutoTrack */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/MediaAutoTrack.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MediaAutoTrack\", function() { return _MediaAutoTrack__WEBPACK_IMPORTED_MODULE_1__[\"MediaAutoTrack\"]; });\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeProvider.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeProvider.js ***! \********************************************************************************************/ /*! exports provided: AmazonPersonalizeProvider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AmazonPersonalizeProvider\", function() { return AmazonPersonalizeProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_sdk_client_personalize_events__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-personalize-events */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/index.js\");\n/* harmony import */ var _AmazonPersonalizeHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AmazonPersonalizeHelper */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeHelper/index.js\");\n/* harmony import */ var lodash_get__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash/get */ \"./node_modules/lodash/get.js\");\n/* harmony import */ var lodash_get__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(lodash_get__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var lodash_isEmpty__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash/isEmpty */ \"./node_modules/lodash/isEmpty.js\");\n/* harmony import */ var lodash_isEmpty__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(lodash_isEmpty__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var lodash_isEqual__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash/isEqual */ \"./node_modules/lodash/isEqual.js\");\n/* harmony import */ var lodash_isEqual__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(lodash_isEqual__WEBPACK_IMPORTED_MODULE_5__);\n/*\n * Copyright 2019-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AmazonPersonalizeProvider');\n// events buffer\nvar FLUSH_SIZE = 5;\nvar FLUSH_SIZE_THRESHHOLD = 10;\nvar FLUSH_INTERVAL = 5 * 1000; // 5s\nvar IDENTIFY_EVENT = 'Identify';\nvar AmazonPersonalizeProvider = /** @class */ (function () {\n function AmazonPersonalizeProvider(config) {\n this._buffer = [];\n this._config = config ? config : {};\n this._config.flushSize =\n this._config.flushSize > 0 &&\n this._config.flushSize <= FLUSH_SIZE_THRESHHOLD\n ? this._config.flushSize\n : FLUSH_SIZE;\n this._config.flushInterval = this._config.flushInterval || FLUSH_INTERVAL;\n this._sessionManager = new _AmazonPersonalizeHelper__WEBPACK_IMPORTED_MODULE_2__[\"SessionInfoManager\"]();\n if (!lodash_isEmpty__WEBPACK_IMPORTED_MODULE_4___default()(this._config.trackingId)) {\n this._sessionInfo = this._sessionManager.retrieveSessionInfo(this._config.trackingId);\n }\n this._isBrowser = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"JS\"].browserOrNode().isBrowser;\n // flush event buffer\n this._setupTimer();\n }\n AmazonPersonalizeProvider.prototype._setupTimer = function () {\n if (this._timer) {\n clearInterval(this._timer);\n }\n var flushInterval = this._config.flushInterval;\n var that = this;\n this._timer = setInterval(function () {\n that._sendFromBuffer();\n }, flushInterval);\n };\n /**\n * Record event\n * @param eventType - type of the event action. e.g. \"Click\"\n * @param properties - properties of the event\n * @return Promise\n */\n AmazonPersonalizeProvider.prototype.record = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, _a, eventType, properties, requestParams, isLoaded;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, this._getCredentials()];\n case 1:\n credentials = _b.sent();\n if (!credentials)\n return [2 /*return*/, Promise.resolve(false)];\n Object.assign(params, {\n config: this._config,\n credentials: credentials,\n sentAt: new Date(),\n });\n _a = params.event, eventType = _a.eventType, properties = _a.properties;\n if (eventType === IDENTIFY_EVENT) {\n this._sessionManager.updateSessionInfo(properties && properties.userId ? properties.userId : '', this._sessionInfo);\n return [2 /*return*/];\n }\n else if (!lodash_isEmpty__WEBPACK_IMPORTED_MODULE_4___default()(params.event.userId)) {\n this._sessionManager.updateSessionInfo(params.event.userId, this._sessionInfo);\n }\n requestParams = this.generateRequestParams(params, this._sessionInfo);\n if (!(eventType === 'MediaAutoTrack')) return [3 /*break*/, 7];\n if (!this._isBrowser) return [3 /*break*/, 5];\n if (!!lodash_isEmpty__WEBPACK_IMPORTED_MODULE_4___default()(lodash_get__WEBPACK_IMPORTED_MODULE_3___default()(requestParams, 'eventData.properties.domElementId', null))) return [3 /*break*/, 3];\n return [4 /*yield*/, this.isElementFullyLoaded(this.loadElement, requestParams.eventData.properties['domElementId'], 500, 5)];\n case 2:\n isLoaded = _b.sent();\n if (isLoaded) {\n new _AmazonPersonalizeHelper__WEBPACK_IMPORTED_MODULE_2__[\"MediaAutoTrack\"](requestParams, this);\n }\n else {\n logger.debug('Cannot find the media element.');\n }\n return [3 /*break*/, 4];\n case 3:\n logger.debug(\"Missing domElementId field in 'properties' for MediaAutoTrack event type.\");\n _b.label = 4;\n case 4: return [3 /*break*/, 6];\n case 5:\n logger.debug('MediaAutoTrack only for browser');\n _b.label = 6;\n case 6: return [2 /*return*/];\n case 7: return [2 /*return*/, this.putToBuffer(requestParams)];\n }\n });\n });\n };\n AmazonPersonalizeProvider.prototype.loadElement = function (domId) {\n return new Promise(function (resolve, reject) {\n if (document.getElementById(domId) &&\n document.getElementById(domId).clientHeight) {\n return resolve(true);\n }\n else {\n return reject(true);\n }\n });\n };\n AmazonPersonalizeProvider.prototype.isElementFullyLoaded = function (operation, params, delay, times) {\n var _this = this;\n var wait = function (ms) { return new Promise(function (r) { return setTimeout(r, ms); }); };\n return new Promise(function (resolve, reject) {\n return operation(params)\n .then(resolve)\n .catch(function (reason) {\n if (times - 1 > 0) {\n return wait(delay)\n .then(_this.isElementFullyLoaded.bind(null, operation, params, delay, times - 1))\n .then(resolve)\n .catch(reject);\n }\n return reject(reason);\n });\n });\n };\n /**\n * get the category of the plugin\n */\n AmazonPersonalizeProvider.prototype.getCategory = function () {\n return 'Analytics';\n };\n /**\n * get provider name of the plugin\n */\n AmazonPersonalizeProvider.prototype.getProviderName = function () {\n return 'AmazonPersonalize';\n };\n /**\n * configure the plugin\n * @param {Object} config - configuration\n */\n AmazonPersonalizeProvider.prototype.configure = function (config) {\n logger.debug('configure Analytics', config);\n var conf = config ? config : {};\n this._config = Object.assign({}, this._config, conf);\n if (!lodash_isEmpty__WEBPACK_IMPORTED_MODULE_4___default()(this._config.trackingId)) {\n this._sessionInfo = this._sessionManager.retrieveSessionInfo(this._config.trackingId);\n }\n this._setupTimer();\n return this._config;\n };\n /**\n * Generate the requestParams from customer input params and sessionInfo\n * @private\n * @param eventData - customer input for event data\n * @param api - api name\n * @return RequestParams - wrapper object with all information required for make request\n */\n AmazonPersonalizeProvider.prototype.generateRequestParams = function (params, sessionInfo) {\n var requestParams = {};\n var _a = params.event, eventType = _a.eventType, properties = _a.properties;\n requestParams.eventData = { eventType: eventType, properties: properties };\n requestParams.sessionInfo = sessionInfo;\n requestParams.sentAt = params.sentAt;\n requestParams.credentials = params.credentials;\n requestParams.config = params.config;\n return requestParams;\n };\n /**\n * record an event\n * @param {Object} params - the params of an event\n */\n AmazonPersonalizeProvider.prototype._sendEvents = function (group) {\n var groupLen = group.length;\n if (groupLen === 0) {\n logger.debug('events array is empty, directly return');\n return;\n }\n var _a = group[0], config = _a.config, credentials = _a.credentials, sessionInfo = _a.sessionInfo;\n var initClients = this._init(config, credentials);\n if (!initClients)\n return false;\n if (groupLen > 0) {\n var events = [];\n for (var i = 0; i < groupLen; i += 1) {\n var params = group.shift();\n var eventPayload = this._generateSingleRecordPayload(params, sessionInfo);\n events.push(eventPayload);\n }\n var payload_1 = {};\n payload_1.trackingId = sessionInfo.trackingId;\n payload_1.sessionId = sessionInfo.sessionId;\n payload_1.userId = sessionInfo.userId;\n payload_1.eventList = [];\n events.forEach(function (event) {\n // @ts-ignore\n payload_1.eventList.push(event);\n });\n var command = new _aws_sdk_client_personalize_events__WEBPACK_IMPORTED_MODULE_1__[\"PutEventsCommand\"](payload_1);\n this._personalize.send(command, function (err) {\n if (err)\n logger.debug('Failed to call putEvents in Personalize', err);\n else\n logger.debug('Put events');\n });\n }\n };\n /**\n * Put event into buffer\n * @private\n * @param params - params for the event recording\n */\n AmazonPersonalizeProvider.prototype.putToBuffer = function (params) {\n if (this._buffer.length < this._config.flushSize) {\n this._buffer.push(params);\n }\n else {\n this._buffer.push(params);\n this._sendFromBuffer();\n }\n return Promise.resolve(true);\n };\n /**\n * flush the buffer and batch sending the request\n * @private\n * @param eventsParams - the buffer for cache the payload\n */\n AmazonPersonalizeProvider.prototype._sendFromBuffer = function () {\n var _this = this;\n var size = this._buffer.length;\n if (size <= 0)\n return;\n var eventsGroups = [];\n var preCred = null;\n var group = [];\n for (var i = 0; i < size; i += 1) {\n var currRequestParams = this._buffer.shift();\n var cred = currRequestParams.credentials;\n var sessionInfo = currRequestParams.sessionInfo;\n if (i === 0) {\n group.push(currRequestParams);\n preCred = cred;\n }\n else {\n if (lodash_isEqual__WEBPACK_IMPORTED_MODULE_5___default()(sessionInfo, this._sessionInfo) &&\n cred.sessionToken === preCred.sessionToken &&\n cred.identityId === preCred.identityId) {\n logger.debug('no change for cred, put event in the same group');\n group.push(currRequestParams);\n }\n else {\n eventsGroups.push(group);\n group = [];\n group.push(currRequestParams);\n preCred = cred;\n this._sessionInfo = sessionInfo;\n }\n }\n }\n eventsGroups.push(group);\n eventsGroups.map(function (group) {\n _this._sendEvents(group);\n });\n };\n /**\n * Generate the record payload for single event\n * @private\n * @param params - RequestParams\n */\n AmazonPersonalizeProvider.prototype._generateSingleRecordPayload = function (params, sessionInfo) {\n var eventData = params.eventData, sentAt = params.sentAt;\n var trackPayload = {};\n trackPayload.sentAt = sentAt;\n trackPayload.properties =\n eventData.properties && JSON.stringify(eventData.properties);\n trackPayload.eventId =\n this._sessionManager.getTimerKey() + sessionInfo.sessionId;\n trackPayload.eventType = eventData.eventType;\n return trackPayload;\n };\n /**\n * Initialize the personalize client\n * @private\n * @param params - RequestParams\n */\n AmazonPersonalizeProvider.prototype._init = function (config, credentials) {\n logger.debug('init clients');\n if (this._personalize &&\n this._config.credentials &&\n this._config.credentials.sessionToken === credentials.sessionToken &&\n this._config.credentials.identityId === credentials.identityId) {\n logger.debug('no change for analytics config, directly return from init');\n return true;\n }\n this._config.credentials = credentials;\n var region = config.region;\n logger.debug('initialize personalize with credentials', credentials);\n this._personalize = new _aws_sdk_client_personalize_events__WEBPACK_IMPORTED_MODULE_1__[\"PersonalizeEventsClient\"]({\n region: region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"getAmplifyUserAgent\"])(),\n });\n return true;\n };\n /**\n * check if current credentials exists\n * @private\n */\n AmazonPersonalizeProvider.prototype._getCredentials = function () {\n var that = this;\n return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()\n .then(function (credentials) {\n if (!credentials)\n return null;\n logger.debug('set credentials for analytics', that._config.credentials);\n return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].shear(credentials);\n })\n .catch(function (err) {\n logger.debug('ensure credentials error', err);\n return null;\n });\n };\n return AmazonPersonalizeProvider;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (AmazonPersonalizeProvider);\n//# sourceMappingURL=AmazonPersonalizeProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Providers/EventBuffer.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Providers/EventBuffer.js ***! \******************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_sdk_client_pinpoint__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-pinpoint */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/index.js\");\n/* harmony import */ var _utils_AppUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/AppUtils */ \"./node_modules/@aws-amplify/analytics/lib-esm/utils/AppUtils.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('EventsBuffer');\nvar RETRYABLE_CODES = [429, 500];\nvar ACCEPTED_CODES = [202];\nvar EventsBuffer = /** @class */ (function () {\n function EventsBuffer(client, config) {\n this._pause = false;\n this._flush = false;\n logger.debug('Instantiating buffer with config:', config);\n this._buffer = [];\n this._client = client;\n this._config = config;\n this._sendBatch = this._sendBatch.bind(this);\n this._startLoop();\n }\n EventsBuffer.prototype.push = function (event) {\n var _a;\n // if the buffer is currently at the configured limit, pushing would exceed it\n if (this._buffer.length >= this._config.bufferSize) {\n logger.debug('Exceeded analytics events buffer size');\n return event.handlers.reject(new Error('Exceeded the size of analytics events buffer'));\n }\n var eventId = event.params.event.eventId;\n var bufferElement = (_a = {}, _a[eventId] = event, _a);\n this._buffer.push(bufferElement);\n };\n EventsBuffer.prototype.pause = function () {\n this._pause = true;\n };\n EventsBuffer.prototype.resume = function () {\n this._pause = false;\n };\n EventsBuffer.prototype.updateClient = function (client) {\n this._client = client;\n };\n EventsBuffer.prototype.flush = function () {\n this._flush = true;\n };\n EventsBuffer.prototype._startLoop = function () {\n if (this._interval) {\n clearInterval(this._interval);\n }\n var flushInterval = this._config.flushInterval;\n this._interval = setInterval(this._sendBatch, flushInterval);\n };\n EventsBuffer.prototype._sendBatch = function () {\n var bufferLength = this._buffer.length;\n if (this._flush && !bufferLength) {\n clearInterval(this._interval);\n }\n // Do not send the batch of events if\n // the Buffer is paused or is empty or the App is not in the foreground\n // Apps should be in the foreground since\n // the OS may restrict access to the network in the background\n if (this._pause || !bufferLength || !Object(_utils_AppUtils__WEBPACK_IMPORTED_MODULE_2__[\"isAppInForeground\"])()) {\n return;\n }\n var flushSize = this._config.flushSize;\n var batchSize = Math.min(flushSize, bufferLength);\n var bufferSubset = this._buffer.splice(0, batchSize);\n this._putEvents(bufferSubset);\n };\n EventsBuffer.prototype._putEvents = function (buffer) {\n return __awaiter(this, void 0, void 0, function () {\n var eventMap, batchEventParams, command, data, err_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n eventMap = this._bufferToMap(buffer);\n batchEventParams = this._generateBatchEventParams(eventMap);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n command = new _aws_sdk_client_pinpoint__WEBPACK_IMPORTED_MODULE_1__[\"PutEventsCommand\"](batchEventParams);\n return [4 /*yield*/, this._client.send(command)];\n case 2:\n data = _a.sent();\n this._processPutEventsSuccessResponse(data, eventMap);\n return [3 /*break*/, 4];\n case 3:\n err_1 = _a.sent();\n return [2 /*return*/, this._handlePutEventsFailure(err_1, eventMap)];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n EventsBuffer.prototype._generateBatchEventParams = function (eventMap) {\n var batchEventParams = {\n ApplicationId: '',\n EventsRequest: {\n BatchItem: {},\n },\n };\n Object.values(eventMap).forEach(function (item) {\n var params = item.params;\n var event = params.event, timestamp = params.timestamp, config = params.config;\n var name = event.name, attributes = event.attributes, metrics = event.metrics, eventId = event.eventId, session = event.session;\n var appId = config.appId, endpointId = config.endpointId;\n var batchItem = batchEventParams.EventsRequest.BatchItem;\n batchEventParams.ApplicationId = batchEventParams.ApplicationId || appId;\n if (!batchItem[endpointId]) {\n batchItem[endpointId] = {\n Endpoint: {},\n Events: {},\n };\n }\n batchItem[endpointId].Events[eventId] = {\n EventType: name,\n Timestamp: new Date(timestamp).toISOString(),\n Attributes: attributes,\n Metrics: metrics,\n Session: session,\n };\n });\n return batchEventParams;\n };\n EventsBuffer.prototype._handlePutEventsFailure = function (err, eventMap) {\n logger.debug('_putEvents Failed: ', err);\n var statusCode = err.$metadata && err.$metadata.httpStatusCode;\n if (RETRYABLE_CODES.includes(statusCode)) {\n var retryableEvents = Object.values(eventMap);\n this._retry(retryableEvents);\n return;\n }\n };\n EventsBuffer.prototype._processPutEventsSuccessResponse = function (data, eventMap) {\n var Results = data.EventsResponse.Results;\n var retryableEvents = [];\n Object.entries(Results).forEach(function (_a) {\n var _b = __read(_a, 2), endpointId = _b[0], endpointValues = _b[1];\n var responses = endpointValues.EventsItemResponse;\n Object.entries(responses).forEach(function (_a) {\n var _b, _c;\n var _d = __read(_a, 2), eventId = _d[0], _e = _d[1], StatusCode = _e.StatusCode, Message = _e.Message;\n var eventObject = eventMap[eventId];\n // manually crafting handlers response to keep API consistant\n var response = {\n EventsResponse: {\n Results: (_b = {},\n _b[endpointId] = {\n EventsItemResponse: (_c = {},\n _c[eventId] = { StatusCode: StatusCode, Message: Message },\n _c),\n },\n _b),\n },\n };\n if (ACCEPTED_CODES.includes(StatusCode)) {\n eventObject.handlers.resolve(response);\n return;\n }\n if (RETRYABLE_CODES.includes(StatusCode)) {\n retryableEvents.push(eventObject);\n return;\n }\n var name = eventObject.params.event.name;\n logger.error(\"event \" + eventId + \" : \" + name + \" failed with error: \" + Message);\n return eventObject.handlers.reject(response);\n });\n });\n if (retryableEvents.length) {\n this._retry(retryableEvents);\n }\n };\n EventsBuffer.prototype._retry = function (retryableEvents) {\n var _a;\n // retryable events that haven't reached the resendLimit\n var eligibleEvents = [];\n retryableEvents.forEach(function (event) {\n var _a;\n var params = event.params;\n var _b = params.event, eventId = _b.eventId, name = _b.name;\n if (params.resendLimit-- > 0) {\n logger.debug(\"resending event \" + eventId + \" : \" + name + \" with \" + params.resendLimit + \" retry attempts remaining\");\n eligibleEvents.push((_a = {}, _a[eventId] = event, _a));\n return;\n }\n logger.debug(\"no retry attempts remaining for event \" + eventId + \" : \" + name);\n });\n // add the events to the front of the buffer\n (_a = this._buffer).unshift.apply(_a, __spread(eligibleEvents));\n };\n // convert buffer to map, i.e. { eventId1: { params, handler }, eventId2: { params, handlers } }\n // this allows us to easily access the handlers after receiving a batch response\n EventsBuffer.prototype._bufferToMap = function (buffer) {\n return buffer.reduce(function (acc, curVal) {\n var _a = __read(Object.entries(curVal), 1), _b = __read(_a[0], 2), key = _b[0], value = _b[1];\n acc[key] = value;\n return acc;\n }, {});\n };\n return EventsBuffer;\n}());\n/* harmony default export */ __webpack_exports__[\"default\"] = (EventsBuffer);\n//# sourceMappingURL=EventBuffer.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Providers/EventBuffer.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/Providers/index.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/Providers/index.js ***! \************************************************************************/ /*! exports provided: AWSPinpointProvider, AWSKinesisProvider, AWSKinesisFirehoseProvider, AmazonPersonalizeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AWSPinpointProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AWSPinpointProvider */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSPinpointProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSPinpointProvider\", function() { return _AWSPinpointProvider__WEBPACK_IMPORTED_MODULE_0__[\"AWSPinpointProvider\"]; });\n\n/* harmony import */ var _AWSKinesisProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AWSKinesisProvider */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSKinesisProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSKinesisProvider\", function() { return _AWSKinesisProvider__WEBPACK_IMPORTED_MODULE_1__[\"AWSKinesisProvider\"]; });\n\n/* harmony import */ var _AWSKinesisFirehoseProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AWSKinesisFirehoseProvider */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/AWSKinesisFirehoseProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSKinesisFirehoseProvider\", function() { return _AWSKinesisFirehoseProvider__WEBPACK_IMPORTED_MODULE_2__[\"AWSKinesisFirehoseProvider\"]; });\n\n/* harmony import */ var _AmazonPersonalizeProvider__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AmazonPersonalizeProvider */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/AmazonPersonalizeProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonPersonalizeProvider\", function() { return _AmazonPersonalizeProvider__WEBPACK_IMPORTED_MODULE_3__[\"AmazonPersonalizeProvider\"]; });\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/Providers/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/index.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/index.js ***! \**************************************************************/ /*! exports provided: default, Analytics, AWSPinpointProvider, AWSKinesisProvider, AWSKinesisFirehoseProvider, AmazonPersonalizeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Analytics__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Analytics */ \"./node_modules/@aws-amplify/analytics/lib-esm/Analytics.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Analytics\", function() { return _Analytics__WEBPACK_IMPORTED_MODULE_0__[\"Analytics\"]; });\n\n/* harmony import */ var _Providers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Providers */ \"./node_modules/@aws-amplify/analytics/lib-esm/Providers/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSPinpointProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AWSPinpointProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSKinesisProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AWSKinesisProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSKinesisFirehoseProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AWSKinesisFirehoseProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonPersonalizeProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AmazonPersonalizeProvider\"]; });\n\n/*\n * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_Analytics__WEBPACK_IMPORTED_MODULE_0__[\"Analytics\"]);\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/trackers/EventTracker.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/trackers/EventTracker.js ***! \******************************************************************************/ /*! exports provided: EventTracker, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventTracker\", function() { return EventTracker; });\n/* harmony import */ var _vendor_dom_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../vendor/dom-utils */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('EventTracker');\nvar defaultOpts = {\n enable: false,\n events: ['click'],\n selectorPrefix: 'data-amplify-analytics-',\n provider: 'AWSPinpoint',\n};\nvar EventTracker = /** @class */ (function () {\n function EventTracker(tracker, opts) {\n if (!_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"JS\"].browserOrNode().isBrowser || !window.addEventListener) {\n logger.debug('not in the supported web environment');\n return;\n }\n this._config = Object.assign({}, defaultOpts, opts);\n this._tracker = tracker;\n this._delegates = {};\n this._trackFunc = this._trackFunc.bind(this);\n logger.debug('initialize pageview tracker with opts', this._config);\n this.configure(this._config);\n }\n EventTracker.prototype.configure = function (opts) {\n var _this = this;\n Object.assign(this._config, opts);\n if (!this._config.enable) {\n Object.keys(this._delegates).forEach(function (key) {\n if (typeof _this._delegates[key].destroy === 'function')\n _this._delegates[key].destroy();\n });\n this._delegates = {};\n }\n else if (this._config.enable &&\n Object.keys(this._delegates).length === 0) {\n var selector_1 = '[' + this._config.selectorPrefix + 'on]';\n this._config.events.forEach(function (evt) {\n _this._delegates[evt] = Object(_vendor_dom_utils__WEBPACK_IMPORTED_MODULE_0__[\"delegate\"])(document, evt, selector_1, _this._trackFunc, { composed: true, useCapture: true });\n });\n }\n return this._config;\n };\n EventTracker.prototype._trackFunc = function (event, element) {\n return __awaiter(this, void 0, void 0, function () {\n var customAttrs, events, eventName, attrs, defaultAttrs, _a, attributes;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n customAttrs = {};\n events = element\n .getAttribute(this._config.selectorPrefix + 'on')\n .split(/\\s*,\\s*/);\n eventName = element.getAttribute(this._config.selectorPrefix + 'name');\n attrs = element.getAttribute(this._config.selectorPrefix + 'attrs');\n if (attrs) {\n attrs.split(/\\s*,\\s*/).forEach(function (attr) {\n var tmp = attr.trim().split(/\\s*:\\s*/);\n customAttrs[tmp[0]] = tmp[1];\n });\n }\n if (!(typeof this._config.attributes === 'function')) return [3 /*break*/, 2];\n return [4 /*yield*/, this._config.attributes()];\n case 1:\n _a = _b.sent();\n return [3 /*break*/, 3];\n case 2:\n _a = this._config.attributes;\n _b.label = 3;\n case 3:\n defaultAttrs = _a;\n attributes = Object.assign({\n type: event.type,\n target: event.target.localName + \" with id \" + event.target.id,\n }, defaultAttrs, customAttrs);\n logger.debug('events needed to be recorded', events);\n logger.debug('attributes needed to be attached', customAttrs);\n if (events.indexOf(event.type) < 0) {\n logger.debug(\"event \" + event.type + \" is not selected to be recorded\");\n return [2 /*return*/];\n }\n this._tracker({\n name: eventName || 'event',\n attributes: attributes,\n }, this._config.provider).catch(function (e) {\n logger.debug(\"Failed to record the \" + event.type + \" event', \" + e);\n });\n return [2 /*return*/];\n }\n });\n });\n };\n return EventTracker;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (EventTracker);\n//# sourceMappingURL=EventTracker.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/trackers/EventTracker.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/trackers/PageViewTracker.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/trackers/PageViewTracker.js ***! \*********************************************************************************/ /*! exports provided: PageViewTracker, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PageViewTracker\", function() { return PageViewTracker; });\n/* harmony import */ var _utils_MethodEmbed__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/MethodEmbed */ \"./node_modules/@aws-amplify/analytics/lib-esm/utils/MethodEmbed.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('PageViewTracker');\nvar PREV_URL_KEY = 'aws-amplify-analytics-prevUrl';\nvar getUrl = function () {\n if (!_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"JS\"].browserOrNode().isBrowser)\n return '';\n else\n return window.location.origin + window.location.pathname;\n};\nvar defaultOpts = {\n enable: false,\n provider: 'AWSPinpoint',\n getUrl: getUrl,\n};\nvar PageViewTracker = /** @class */ (function () {\n function PageViewTracker(tracker, opts) {\n logger.debug('initialize pageview tracker with opts', opts);\n this._config = Object.assign({}, defaultOpts, opts);\n this._tracker = tracker;\n this._hasEnabled = false;\n this._trackFunc = this._trackFunc.bind(this);\n if (this._config.type === 'SPA') {\n this._pageViewTrackSPA();\n }\n else {\n this._pageViewTrackDefault();\n }\n }\n PageViewTracker.prototype.configure = function (opts) {\n Object.assign(this._config, opts);\n // if spa, need to remove those listeners if disabled\n if (this._config.type === 'SPA') {\n this._pageViewTrackSPA();\n }\n return this._config;\n };\n PageViewTracker.prototype._isSameUrl = function () {\n var prevUrl = sessionStorage.getItem(PREV_URL_KEY);\n var curUrl = this._config.getUrl();\n if (prevUrl === curUrl) {\n logger.debug('the url is same');\n return true;\n }\n else\n return false;\n };\n PageViewTracker.prototype._pageViewTrackDefault = function () {\n return __awaiter(this, void 0, void 0, function () {\n var url, customAttrs, _a, attributes;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"JS\"].browserOrNode().isBrowser ||\n !window.addEventListener ||\n !window.sessionStorage) {\n logger.debug('not in the supported web enviroment');\n return [2 /*return*/];\n }\n url = this._config.getUrl();\n if (!(typeof this._config.attributes === 'function')) return [3 /*break*/, 2];\n return [4 /*yield*/, this._config.attributes()];\n case 1:\n _a = _b.sent();\n return [3 /*break*/, 3];\n case 2:\n _a = this._config.attributes;\n _b.label = 3;\n case 3:\n customAttrs = _a;\n attributes = Object.assign({\n url: url,\n }, customAttrs);\n if (this._config.enable && !this._isSameUrl()) {\n this._tracker({\n name: this._config.eventName || 'pageView',\n attributes: attributes,\n }, this._config.provider).catch(function (e) {\n logger.debug('Failed to record the page view event', e);\n });\n sessionStorage.setItem(PREV_URL_KEY, url);\n }\n return [2 /*return*/];\n }\n });\n });\n };\n PageViewTracker.prototype._trackFunc = function () {\n return __awaiter(this, void 0, void 0, function () {\n var url, customAttrs, _a, attributes;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"JS\"].browserOrNode().isBrowser ||\n !window.addEventListener ||\n !history.pushState ||\n !window.sessionStorage) {\n logger.debug('not in the supported web enviroment');\n return [2 /*return*/];\n }\n url = this._config.getUrl();\n if (!(typeof this._config.attributes === 'function')) return [3 /*break*/, 2];\n return [4 /*yield*/, this._config.attributes()];\n case 1:\n _a = _b.sent();\n return [3 /*break*/, 3];\n case 2:\n _a = this._config.attributes;\n _b.label = 3;\n case 3:\n customAttrs = _a;\n attributes = Object.assign({\n url: url,\n }, customAttrs);\n if (!this._isSameUrl()) {\n this._tracker({\n name: this._config.eventName || 'pageView',\n attributes: attributes,\n }, this._config.provider).catch(function (e) {\n logger.debug('Failed to record the page view event', e);\n });\n sessionStorage.setItem(PREV_URL_KEY, url);\n }\n return [2 /*return*/];\n }\n });\n });\n };\n PageViewTracker.prototype._pageViewTrackSPA = function () {\n if (!_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"JS\"].browserOrNode().isBrowser ||\n !window.addEventListener ||\n !history.pushState) {\n logger.debug('not in the supported web enviroment');\n return;\n }\n if (this._config.enable && !this._hasEnabled) {\n _utils_MethodEmbed__WEBPACK_IMPORTED_MODULE_0__[\"MethodEmbed\"].add(history, 'pushState', this._trackFunc);\n _utils_MethodEmbed__WEBPACK_IMPORTED_MODULE_0__[\"MethodEmbed\"].add(history, 'replaceState', this._trackFunc);\n window.addEventListener('popstate', this._trackFunc);\n this._trackFunc();\n this._hasEnabled = true;\n }\n else {\n _utils_MethodEmbed__WEBPACK_IMPORTED_MODULE_0__[\"MethodEmbed\"].remove(history, 'pushState');\n _utils_MethodEmbed__WEBPACK_IMPORTED_MODULE_0__[\"MethodEmbed\"].remove(history, 'replaceState');\n window.removeEventListener('popstate', this._trackFunc);\n this._hasEnabled = false;\n }\n };\n return PageViewTracker;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (PageViewTracker);\n//# sourceMappingURL=PageViewTracker.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/trackers/PageViewTracker.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/trackers/SessionTracker.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/trackers/SessionTracker.js ***! \********************************************************************************/ /*! exports provided: SessionTracker, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SessionTracker\", function() { return SessionTracker; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n// the session tracker for web\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('SessionTracker');\nvar defaultOpts = {\n enable: false,\n provider: 'AWSPinpoint',\n};\nvar initialEventSent = false;\nvar SessionTracker = /** @class */ (function () {\n function SessionTracker(tracker, opts) {\n this._config = Object.assign({}, defaultOpts, opts);\n this._tracker = tracker;\n this._hasEnabled = false;\n this._trackFunc = this._trackFunc.bind(this);\n this._trackBeforeUnload = this._trackBeforeUnload.bind(this);\n this.configure(this._config);\n }\n SessionTracker.prototype._envCheck = function () {\n if (!_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"JS\"].browserOrNode().isBrowser) {\n return false;\n }\n if (!document || !document.addEventListener) {\n logger.debug('not in the supported web environment');\n return false;\n }\n if (typeof document.hidden !== 'undefined') {\n this._hidden = 'hidden';\n this._visibilityChange = 'visibilitychange';\n }\n else if (typeof document['msHidden'] !== 'undefined') {\n this._hidden = 'msHidden';\n this._visibilityChange = 'msvisibilitychange';\n }\n else if (typeof document['webkitHidden'] !== 'undefined') {\n this._hidden = 'webkitHidden';\n this._visibilityChange = 'webkitvisibilitychange';\n }\n else {\n logger.debug('not in the supported web environment');\n return false;\n }\n return true;\n };\n SessionTracker.prototype._trackFunc = function () {\n return __awaiter(this, void 0, void 0, function () {\n var customAttrs, _a, attributes;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!(typeof this._config.attributes === 'function')) return [3 /*break*/, 2];\n return [4 /*yield*/, this._config.attributes()];\n case 1:\n _a = _b.sent();\n return [3 /*break*/, 3];\n case 2:\n _a = this._config.attributes;\n _b.label = 3;\n case 3:\n customAttrs = _a;\n attributes = Object.assign({}, customAttrs);\n if (document.visibilityState === this._hidden) {\n this._tracker({\n name: '_session.stop',\n attributes: attributes,\n }, this._config.provider).catch(function (e) {\n logger.debug('record session stop event failed.', e);\n });\n }\n else {\n this._tracker({\n name: '_session.start',\n attributes: attributes,\n }, this._config.provider).catch(function (e) {\n logger.debug('record session start event failed.', e);\n });\n }\n return [2 /*return*/];\n }\n });\n });\n };\n SessionTracker.prototype._trackBeforeUnload = function (event) {\n // before unload callback cannot be async => https://github.com/aws-amplify/amplify-js/issues/2088\n var _this = this;\n var customAttrs = typeof this._config.attributes === 'function'\n ? Promise.resolve(this._config.attributes())\n : Promise.resolve(this._config.attributes);\n customAttrs.then(function (custom) {\n var attributes = Object.assign({}, custom);\n _this._tracker({\n name: '_session.stop',\n attributes: attributes,\n immediate: true,\n }, _this._config.provider).catch(function (e) {\n logger.debug('record session stop event failed.', e);\n });\n });\n };\n // to keep configure a synchronized function\n SessionTracker.prototype._sendInitialEvent = function () {\n return __awaiter(this, void 0, void 0, function () {\n var customAttrs, _a, attributes;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (initialEventSent) {\n logger.debug('the start session has been sent when the page is loaded');\n return [2 /*return*/];\n }\n else {\n initialEventSent = true;\n }\n if (!(typeof this._config.attributes === 'function')) return [3 /*break*/, 2];\n return [4 /*yield*/, this._config.attributes()];\n case 1:\n _a = _b.sent();\n return [3 /*break*/, 3];\n case 2:\n _a = this._config.attributes;\n _b.label = 3;\n case 3:\n customAttrs = _a;\n attributes = Object.assign({}, customAttrs);\n this._tracker({\n name: '_session.start',\n attributes: attributes,\n }, this._config.provider).catch(function (e) {\n logger.debug('record session start event failed.', e);\n });\n return [2 /*return*/];\n }\n });\n });\n };\n SessionTracker.prototype.configure = function (opts) {\n if (!this._envCheck()) {\n return this._config;\n }\n Object.assign(this._config, opts);\n if (this._config.enable && !this._hasEnabled) {\n // send a start session as soon as it's enabled\n this._sendInitialEvent();\n // listen on events\n document.addEventListener(this._visibilityChange, this._trackFunc, false);\n window.addEventListener('beforeunload', this._trackBeforeUnload, false);\n this._hasEnabled = true;\n }\n else if (!this._config.enable && this._hasEnabled) {\n document.removeEventListener(this._visibilityChange, this._trackFunc, false);\n window.removeEventListener('beforeunload', this._trackBeforeUnload, false);\n this._hasEnabled = false;\n }\n return this._config;\n };\n return SessionTracker;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (SessionTracker);\n//# sourceMappingURL=SessionTracker.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/trackers/SessionTracker.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/trackers/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/trackers/index.js ***! \***********************************************************************/ /*! exports provided: PageViewTracker, EventTracker, SessionTracker */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PageViewTracker__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PageViewTracker */ \"./node_modules/@aws-amplify/analytics/lib-esm/trackers/PageViewTracker.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PageViewTracker\", function() { return _PageViewTracker__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/* harmony import */ var _EventTracker__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./EventTracker */ \"./node_modules/@aws-amplify/analytics/lib-esm/trackers/EventTracker.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventTracker\", function() { return _EventTracker__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _SessionTracker__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./SessionTracker */ \"./node_modules/@aws-amplify/analytics/lib-esm/trackers/SessionTracker.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SessionTracker\", function() { return _SessionTracker__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/trackers/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/utils/AppUtils.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/utils/AppUtils.js ***! \***********************************************************************/ /*! exports provided: isAppInForeground */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAppInForeground\", function() { return isAppInForeground; });\nvar isAppInForeground = function () {\n return true;\n};\n\n//# sourceMappingURL=AppUtils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/utils/AppUtils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/utils/MethodEmbed.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/utils/MethodEmbed.js ***! \**************************************************************************/ /*! exports provided: MethodEmbed, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MethodEmbed\", function() { return MethodEmbed; });\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\nvar lists = [];\nvar MethodEmbed = /** @class */ (function () {\n function MethodEmbed(context, methodName) {\n this.context = context;\n this.methodName = methodName;\n this._originalMethod = context[methodName].bind(context);\n }\n MethodEmbed.add = function (context, methodName, methodOverride) {\n getInstance(context, methodName).set(methodOverride);\n };\n MethodEmbed.remove = function (context, methodName) {\n getInstance(context, methodName).remove();\n };\n MethodEmbed.prototype.set = function (methodOverride) {\n var _this = this;\n this.context[this.methodName] = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return methodOverride(_this._originalMethod.apply(_this, __spread(args)));\n };\n };\n MethodEmbed.prototype.remove = function () {\n this.context[this.methodName] = this._originalMethod;\n };\n return MethodEmbed;\n}());\n\nfunction getInstance(context, methodName) {\n var instance = lists.filter(function (h) { return h.context === context && h.methodName === methodName; })[0];\n if (!instance) {\n instance = new MethodEmbed(context, methodName);\n lists.push(instance);\n }\n return instance;\n}\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (MethodEmbed);\n//# sourceMappingURL=MethodEmbed.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/utils/MethodEmbed.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/closest.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/closest.js ***! \*********************************************************************************/ /*! exports provided: closest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"closest\", function() { return closest; });\n/* harmony import */ var _matches__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./matches */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/matches.js\");\n/* harmony import */ var _parents__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./parents */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/parents.js\");\n/**\n * Copyright (c) 2017, Philip Walton \n */\n\n\n/**\n * Gets the closest parent element that matches the passed selector.\n * @param {Element} element The element whose parents to check.\n * @param {string} selector The CSS selector to match against.\n * @param {boolean=} shouldCheckSelf True if the selector should test against\n * the passed element itself.\n * @return {Element|undefined} The matching element or undefined.\n */\nfunction closest(element, selector, shouldCheckSelf) {\n if (shouldCheckSelf === void 0) { shouldCheckSelf = false; }\n if (!(element && element.nodeType === 1 && selector))\n return;\n var parentElements = (shouldCheckSelf ? [element] : []).concat(Object(_parents__WEBPACK_IMPORTED_MODULE_1__[\"parents\"])(element));\n for (var i = 0, parent_1; (parent_1 = parentElements[i]); i++) {\n if (Object(_matches__WEBPACK_IMPORTED_MODULE_0__[\"matches\"])(parent_1, selector))\n return parent_1;\n }\n}\n//# sourceMappingURL=closest.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/closest.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/delegate.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/delegate.js ***! \**********************************************************************************/ /*! exports provided: delegate */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"delegate\", function() { return delegate; });\n/* harmony import */ var _closest__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./closest */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/closest.js\");\n/* harmony import */ var _matches__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./matches */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/matches.js\");\n/**\n * Copyright (c) 2017, Philip Walton \n */\n\n\n/**\n * Delegates the handling of events for an element matching a selector to an\n * ancestor of the matching element.\n * @param {!Node} ancestor The ancestor element to add the listener to.\n * @param {string} eventType The event type to listen to.\n * @param {string} selector A CSS selector to match against child elements.\n * @param {!Function} callback A function to run any time the event happens.\n * @param {Object=} opts A configuration options object. The available options:\n * - useCapture: If true, bind to the event capture phase.\n * - deep: If true, delegate into shadow trees.\n * @return {Object} The delegate object. It contains a destroy method.\n */\nfunction delegate(ancestor, eventType, selector, callback, opts) {\n if (opts === void 0) { opts = {}; }\n // Defines the event listener.\n var listener = function (event) {\n var delegateTarget;\n // If opts.composed is true and the event originated from inside a Shadow\n // tree, check the composed path nodes.\n if (opts['composed'] && typeof event['composedPath'] === 'function') {\n var composedPath = event.composedPath();\n for (var i = 0, node = void 0; (node = composedPath[i]); i++) {\n if (node.nodeType === 1 && Object(_matches__WEBPACK_IMPORTED_MODULE_1__[\"matches\"])(node, selector)) {\n delegateTarget = node;\n }\n }\n }\n else {\n // Otherwise check the parents.\n delegateTarget = Object(_closest__WEBPACK_IMPORTED_MODULE_0__[\"closest\"])(event.target, selector, true);\n }\n if (delegateTarget) {\n callback.call(delegateTarget, event, delegateTarget);\n }\n };\n ancestor.addEventListener(eventType, listener, opts['useCapture']);\n return {\n destroy: function () {\n ancestor.removeEventListener(eventType, listener, opts['useCapture']);\n },\n };\n}\n//# sourceMappingURL=delegate.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/delegate.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/dispatch.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/dispatch.js ***! \**********************************************************************************/ /*! exports provided: dispatch */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"dispatch\", function() { return dispatch; });\n/**\n * Copyright (c) 2017, Philip Walton \n */\n/**\n * Dispatches an event on the passed element.\n * @param {!Element} element The DOM element to dispatch the event on.\n * @param {string} eventType The type of event to dispatch.\n * @param {Object|string=} eventName A string name of the event constructor\n * to use. Defaults to 'Event' if nothing is passed or 'CustomEvent' if\n * a value is set on `initDict.detail`. If eventName is given an object\n * it is assumed to be initDict and thus reassigned.\n * @param {Object=} initDict The initialization attributes for the\n * event. A `detail` property can be used here to pass custom data.\n * @return {boolean} The return value of `element.dispatchEvent`, which will\n * be false if any of the event listeners called `preventDefault`.\n */\nfunction dispatch(element, eventType, evtName, init_dict) {\n if (evtName === void 0) { evtName = 'Event'; }\n if (init_dict === void 0) { init_dict = {}; }\n var event;\n var isCustom;\n var initDict = init_dict;\n var eventName = evtName;\n // eventName is optional\n if (typeof eventName === 'object') {\n initDict = eventName;\n eventName = 'Event';\n }\n initDict['bubbles'] = initDict['bubbles'] || false;\n initDict['cancelable'] = initDict['cancelable'] || false;\n initDict['composed'] = initDict['composed'] || false;\n // If a detail property is passed, this is a custom event.\n if ('detail' in initDict)\n isCustom = true;\n eventName = isCustom ? 'CustomEvent' : eventName;\n // Tries to create the event using constructors, if that doesn't work,\n // fallback to `document.createEvent()`.\n try {\n event = new window[eventName](eventType, initDict);\n }\n catch (err) {\n event = document.createEvent(eventName);\n var initMethod = 'init' + (isCustom ? 'Custom' : '') + 'Event';\n event[initMethod](eventType, initDict['bubbles'], initDict['cancelable'], initDict['detail']);\n }\n return element.dispatchEvent(event);\n}\n//# sourceMappingURL=dispatch.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/dispatch.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/get-attributes.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/get-attributes.js ***! \****************************************************************************************/ /*! exports provided: getAttributes */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getAttributes\", function() { return getAttributes; });\n/**\n * Copyright (c) 2017, Philip Walton \n */\n/**\n * Gets all attributes of an element as a plain JavaScriot object.\n * @param {Element} element The element whose attributes to get.\n * @return {!Object} An object whose keys are the attribute keys and whose\n * values are the attribute values. If no attributes exist, an empty\n * object is returned.\n */\nfunction getAttributes(element) {\n var attrs = {};\n // Validate input.\n if (!(element && element.nodeType === 1))\n return attrs;\n // Return an empty object if there are no attributes.\n var map = element.attributes;\n if (map.length === 0)\n return {};\n for (var i = 0, attr = void 0; (attr = map[i]); i++) {\n attrs[attr.name] = attr.value;\n }\n return attrs;\n}\n//# sourceMappingURL=get-attributes.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/get-attributes.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/index.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/index.js ***! \*******************************************************************************/ /*! exports provided: closest, delegate, dispatch, getAttributes, matches, parents, parseUrl */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _closest__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./closest */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/closest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"closest\", function() { return _closest__WEBPACK_IMPORTED_MODULE_0__[\"closest\"]; });\n\n/* harmony import */ var _delegate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./delegate */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/delegate.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"delegate\", function() { return _delegate__WEBPACK_IMPORTED_MODULE_1__[\"delegate\"]; });\n\n/* harmony import */ var _dispatch__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./dispatch */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/dispatch.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"dispatch\", function() { return _dispatch__WEBPACK_IMPORTED_MODULE_2__[\"dispatch\"]; });\n\n/* harmony import */ var _get_attributes__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./get-attributes */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/get-attributes.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getAttributes\", function() { return _get_attributes__WEBPACK_IMPORTED_MODULE_3__[\"getAttributes\"]; });\n\n/* harmony import */ var _matches__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./matches */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/matches.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"matches\", function() { return _matches__WEBPACK_IMPORTED_MODULE_4__[\"matches\"]; });\n\n/* harmony import */ var _parents__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./parents */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/parents.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parents\", function() { return _parents__WEBPACK_IMPORTED_MODULE_5__[\"parents\"]; });\n\n/* harmony import */ var _parse_url__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./parse-url */ \"./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/parse-url.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseUrl\", function() { return _parse_url__WEBPACK_IMPORTED_MODULE_6__[\"parseUrl\"]; });\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/matches.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/matches.js ***! \*********************************************************************************/ /*! exports provided: matches */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"matches\", function() { return matches; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/**\n * Copyright (c) 2017, Philip Walton \n */\n\nvar proto = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"JS\"].browserOrNode().isBrowser && window['Element']\n ? window['Element'].prototype\n : null;\nvar nativeMatches = proto\n ? proto.matches ||\n // @ts-ignore\n proto.matchesSelector ||\n // @ts-ignore\n proto.webkitMatchesSelector ||\n // @ts-ignore\n proto.mozMatchesSelector ||\n // @ts-ignore\n proto.msMatchesSelector ||\n // @ts-ignore\n proto.oMatchesSelector\n : null;\n/**\n * Tests if a DOM elements matches any of the test DOM elements or selectors.\n * @param {Element} element The DOM element to test.\n * @param {Element|string|Array} test A DOM element, a CSS\n * selector, or an array of DOM elements or CSS selectors to match against.\n * @return {boolean} True of any part of the test matches.\n */\nfunction matches(element, test) {\n // Validate input.\n if (element && element.nodeType === 1 && test) {\n // if test is a string or DOM element test it.\n if (typeof test === 'string' || test.nodeType === 1) {\n return (element === test || matchesSelector(element, /** @type {string} */ test));\n }\n else if ('length' in test) {\n // if it has a length property iterate over the items\n // and return true if any match.\n for (var i = 0, item = void 0; (item = test[i]); i++) {\n if (element === item || matchesSelector(element, item))\n return true;\n }\n }\n }\n // Still here? Return false\n return false;\n}\n/**\n * Tests whether a DOM element matches a selector. This polyfills the native\n * Element.prototype.matches method across browsers.\n * @param {!Element} element The DOM element to test.\n * @param {string} selector The CSS selector to test element against.\n * @return {boolean} True if the selector matches.\n */\nfunction matchesSelector(element, selector) {\n if (typeof selector !== 'string')\n return false;\n if (nativeMatches)\n return nativeMatches.call(element, selector);\n var nodes = element.parentNode.querySelectorAll(selector);\n for (var i = 0, node = void 0; (node = nodes[i]); i++) {\n if (node === element)\n return true;\n }\n return false;\n}\n//# sourceMappingURL=matches.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/matches.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/parents.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/parents.js ***! \*********************************************************************************/ /*! exports provided: parents */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parents\", function() { return parents; });\n/**\n * Copyright (c) 2017, Philip Walton \n */\n/**\n * Returns an array of a DOM element's parent elements.\n * @param {!Element} element The DOM element whose parents to get.\n * @return {!Array} An array of all parent elemets, or an empty array if no\n * parent elements are found.\n */\nfunction parents(ele) {\n var list = [];\n var element = ele;\n while (element && element.parentNode && element.parentNode.nodeType === 1) {\n element = /** @type {!Element} */ element.parentNode;\n list.push(element);\n }\n return list;\n}\n//# sourceMappingURL=parents.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/parents.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/parse-url.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/parse-url.js ***! \***********************************************************************************/ /*! exports provided: parseUrl */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseUrl\", function() { return parseUrl; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/**\n * Copyright (c) 2017, Philip Walton \n */\n\nvar HTTP_PORT = '80';\nvar HTTPS_PORT = '443';\nvar DEFAULT_PORT = RegExp(':(' + HTTP_PORT + '|' + HTTPS_PORT + ')$');\nvar a = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"JS\"].browserOrNode().isBrowser ? document.createElement('a') : null;\nvar cache = {};\n/**\n * Parses the given url and returns an object mimicing a `Location` object.\n * @param {string} url The url to parse.\n * @return {!Object} An object with the same properties as a `Location`.\n */\nfunction parseUrl(u) {\n var url = u;\n // All falsy values (as well as \".\") should map to the current URL.\n url = !url || url === '.' ? location.href : url;\n if (cache[url])\n return cache[url];\n a.href = url;\n // When parsing file relative paths (e.g. `../index.html`), IE will correctly\n // resolve the `href` property but will keep the `..` in the `path` property.\n // It will also not include the `host` or `hostname` properties. Furthermore,\n // IE will sometimes return no protocol or just a colon, especially for things\n // like relative protocol URLs (e.g. \"//google.com\").\n // To workaround all of these issues, we reparse with the full URL from the\n // `href` property.\n if (url.charAt(0) === '.' || url.charAt(0) === '/')\n return parseUrl(a.href);\n // Don't include default ports.\n var port = a.port === HTTP_PORT || a.port === HTTPS_PORT ? '' : a.port;\n // PhantomJS sets the port to \"0\" when using the file: protocol.\n port = port === '0' ? '' : port;\n // Sometimes IE incorrectly includes a port for default ports\n // (e.g. `:80` or `:443`) even when no port is specified in the URL.\n // http://bit.ly/1rQNoMg\n var host = a.host.replace(DEFAULT_PORT, '');\n // Not all browser support `origin` so we have to build it.\n var origin = a['origin'] ? a['origin'] : a.protocol + '//' + host;\n // Sometimes IE doesn't include the leading slash for pathname.\n // http://bit.ly/1rQNoMg\n var pathname = a.pathname.charAt(0) === '/' ? a.pathname : '/' + a.pathname;\n return (cache[url] = {\n hash: a.hash,\n host: host,\n hostname: a.hostname,\n href: a.href,\n origin: origin,\n pathname: pathname,\n port: port,\n protocol: a.protocol,\n search: a.search,\n });\n}\n//# sourceMappingURL=parse-url.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/analytics/lib-esm/vendor/dom-utils/parse-url.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-graphql/lib-esm/GraphQLAPI.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-amplify/api-graphql/lib-esm/GraphQLAPI.js ***! \*********************************************************************/ /*! exports provided: graphqlOperation, GraphQLAPIClass, GraphQLAPI */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"graphqlOperation\", function() { return graphqlOperation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLAPIClass\", function() { return GraphQLAPIClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLAPI\", function() { return GraphQLAPI; });\n/* harmony import */ var graphql__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! graphql */ \"./node_modules/graphql/index.mjs\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/pubsub */ \"./node_modules/@aws-amplify/pubsub/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/auth */ \"./node_modules/@aws-amplify/auth/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/cache */ \"./node_modules/@aws-amplify/cache/lib-esm/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-amplify/api-graphql/lib-esm/types/index.js\");\n/* harmony import */ var _aws_amplify_api_rest__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-amplify/api-rest */ \"./node_modules/@aws-amplify/api-rest/lib-esm/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\n\n\nvar USER_AGENT_HEADER = 'x-amz-user-agent';\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('GraphQLAPI');\nvar graphqlOperation = function (query, variables, authToken, userAgentSuffix) {\n if (variables === void 0) { variables = {}; }\n return ({\n query: query,\n variables: variables,\n authToken: authToken,\n userAgentSuffix: userAgentSuffix,\n });\n};\n/**\n * Export Cloud Logic APIs\n */\nvar GraphQLAPIClass = /** @class */ (function () {\n /**\n * Initialize GraphQL API with AWS configuration\n * @param {Object} options - Configuration object for API\n */\n function GraphQLAPIClass(options) {\n this._api = null;\n this.Auth = _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_3__[\"default\"];\n this.Cache = _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4__[\"default\"];\n this.Credentials = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Credentials\"];\n this._options = options;\n logger.debug('API Options', this._options);\n }\n GraphQLAPIClass.prototype.getModuleName = function () {\n return 'GraphQLAPI';\n };\n /**\n * Configure API\n * @param {Object} config - Configuration of the API\n * @return {Object} - The current configuration\n */\n GraphQLAPIClass.prototype.configure = function (options) {\n var _a = options || {}, _b = _a.API, API = _b === void 0 ? {} : _b, otherOptions = __rest(_a, [\"API\"]);\n var opt = __assign(__assign({}, otherOptions), API);\n logger.debug('configure GraphQL API', { opt: opt });\n if (opt['aws_project_region']) {\n opt = Object.assign({}, opt, {\n region: opt['aws_project_region'],\n header: {},\n });\n }\n if (typeof opt.graphql_headers !== 'undefined' &&\n typeof opt.graphql_headers !== 'function') {\n logger.warn('graphql_headers should be a function');\n opt.graphql_headers = undefined;\n }\n this._options = Object.assign({}, this._options, opt);\n this.createInstance();\n return this._options;\n };\n /**\n * Create an instance of API for the library\n * @return - A promise of true if Success\n */\n GraphQLAPIClass.prototype.createInstance = function () {\n logger.debug('create Rest instance');\n if (this._options) {\n this._api = new _aws_amplify_api_rest__WEBPACK_IMPORTED_MODULE_6__[\"RestClient\"](this._options);\n // Share instance Credentials with client for SSR\n this._api.Credentials = this.Credentials;\n return true;\n }\n else {\n return Promise.reject('API not configured');\n }\n };\n GraphQLAPIClass.prototype._headerBasedAuth = function (defaultAuthenticationType, additionalHeaders) {\n if (additionalHeaders === void 0) { additionalHeaders = {}; }\n return __awaiter(this, void 0, void 0, function () {\n var _a, aws_appsync_authenticationType, apiKey, authenticationType, headers, _b, credentialsOK, token, federatedInfo, currentUser, e_1, session, e_2;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = this._options, aws_appsync_authenticationType = _a.aws_appsync_authenticationType, apiKey = _a.aws_appsync_apiKey;\n authenticationType = defaultAuthenticationType || aws_appsync_authenticationType || 'AWS_IAM';\n headers = {};\n _b = authenticationType;\n switch (_b) {\n case 'API_KEY': return [3 /*break*/, 1];\n case 'AWS_IAM': return [3 /*break*/, 2];\n case 'OPENID_CONNECT': return [3 /*break*/, 4];\n case 'AMAZON_COGNITO_USER_POOLS': return [3 /*break*/, 11];\n case 'AWS_LAMBDA': return [3 /*break*/, 15];\n }\n return [3 /*break*/, 16];\n case 1:\n if (!apiKey) {\n throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLAuthError\"].NO_API_KEY);\n }\n headers = {\n Authorization: null,\n 'X-Api-Key': apiKey,\n };\n return [3 /*break*/, 17];\n case 2: return [4 /*yield*/, this._ensureCredentials()];\n case 3:\n credentialsOK = _c.sent();\n if (!credentialsOK) {\n throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLAuthError\"].NO_CREDENTIALS);\n }\n return [3 /*break*/, 17];\n case 4:\n _c.trys.push([4, 9, , 10]);\n token = void 0;\n return [4 /*yield*/, _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4__[\"default\"].getItem('federatedInfo')];\n case 5:\n federatedInfo = _c.sent();\n if (!federatedInfo) return [3 /*break*/, 6];\n token = federatedInfo.token;\n return [3 /*break*/, 8];\n case 6: return [4 /*yield*/, _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_3__[\"default\"].currentAuthenticatedUser()];\n case 7:\n currentUser = _c.sent();\n if (currentUser) {\n token = currentUser.token;\n }\n _c.label = 8;\n case 8:\n if (!token) {\n throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLAuthError\"].NO_FEDERATED_JWT);\n }\n headers = {\n Authorization: token,\n };\n return [3 /*break*/, 10];\n case 9:\n e_1 = _c.sent();\n throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLAuthError\"].NO_CURRENT_USER);\n case 10: return [3 /*break*/, 17];\n case 11:\n _c.trys.push([11, 13, , 14]);\n return [4 /*yield*/, this.Auth.currentSession()];\n case 12:\n session = _c.sent();\n headers = {\n Authorization: session.getAccessToken().getJwtToken(),\n };\n return [3 /*break*/, 14];\n case 13:\n e_2 = _c.sent();\n throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLAuthError\"].NO_CURRENT_USER);\n case 14: return [3 /*break*/, 17];\n case 15:\n if (!additionalHeaders.Authorization) {\n throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLAuthError\"].NO_AUTH_TOKEN);\n }\n headers = {\n Authorization: additionalHeaders.Authorization,\n };\n return [3 /*break*/, 17];\n case 16:\n headers = {\n Authorization: null,\n };\n return [3 /*break*/, 17];\n case 17: return [2 /*return*/, headers];\n }\n });\n });\n };\n /**\n * to get the operation type\n * @param operation\n */\n GraphQLAPIClass.prototype.getGraphqlOperationType = function (operation) {\n var doc = Object(graphql__WEBPACK_IMPORTED_MODULE_0__[\"parse\"])(operation);\n var definitions = doc.definitions;\n var _a = __read(definitions, 1), operationType = _a[0].operation;\n return operationType;\n };\n /**\n * Executes a GraphQL operation\n *\n * @param options - GraphQL Options\n * @param [additionalHeaders] - headers to merge in after any `graphql_headers` set in the config\n * @returns An Observable if the query is a subscription query, else a promise of the graphql result.\n */\n GraphQLAPIClass.prototype.graphql = function (_a, additionalHeaders) {\n var paramQuery = _a.query, _b = _a.variables, variables = _b === void 0 ? {} : _b, authMode = _a.authMode, authToken = _a.authToken, userAgentSuffix = _a.userAgentSuffix;\n var query = typeof paramQuery === 'string'\n ? Object(graphql__WEBPACK_IMPORTED_MODULE_0__[\"parse\"])(paramQuery)\n : Object(graphql__WEBPACK_IMPORTED_MODULE_0__[\"parse\"])(Object(graphql__WEBPACK_IMPORTED_MODULE_0__[\"print\"])(paramQuery));\n var _c = __read(query.definitions.filter(function (def) { return def.kind === 'OperationDefinition'; }), 1), _d = _c[0], operationDef = _d === void 0 ? {} : _d;\n var operationType = operationDef.operation;\n var headers = additionalHeaders || {};\n // if an authorization header is set, have the explicit authToken take precedence\n if (authToken) {\n headers.Authorization = authToken;\n }\n switch (operationType) {\n case 'query':\n case 'mutation':\n this.createInstanceIfNotCreated();\n var cancellableToken = this._api.getCancellableToken();\n var initParams = { cancellableToken: cancellableToken };\n var responsePromise = this._graphql({ query: query, variables: variables, authMode: authMode, userAgentSuffix: userAgentSuffix }, headers, initParams);\n this._api.updateRequestToBeCancellable(responsePromise, cancellableToken);\n return responsePromise;\n case 'subscription':\n return this._graphqlSubscribe({ query: query, variables: variables, authMode: authMode }, headers);\n default:\n throw new Error(\"invalid operation type: \" + operationType);\n }\n };\n GraphQLAPIClass.prototype._graphql = function (_a, additionalHeaders, initParams) {\n var query = _a.query, variables = _a.variables, authMode = _a.authMode, userAgentSuffix = _a.userAgentSuffix;\n if (additionalHeaders === void 0) { additionalHeaders = {}; }\n if (initParams === void 0) { initParams = {}; }\n return __awaiter(this, void 0, void 0, function () {\n var _b, region, appSyncGraphqlEndpoint, _c, graphql_headers, customGraphqlEndpoint, customEndpointRegion, headers, _d, _e, _f, _g, _h, _j, body, init, endpoint, error, response, err_1, errors;\n var _k;\n return __generator(this, function (_l) {\n switch (_l.label) {\n case 0:\n this.createInstanceIfNotCreated();\n _b = this._options, region = _b.aws_appsync_region, appSyncGraphqlEndpoint = _b.aws_appsync_graphqlEndpoint, _c = _b.graphql_headers, graphql_headers = _c === void 0 ? function () { return ({}); } : _c, customGraphqlEndpoint = _b.graphql_endpoint, customEndpointRegion = _b.graphql_endpoint_iam_region;\n _d = [{}];\n _e = !customGraphqlEndpoint;\n if (!_e) return [3 /*break*/, 2];\n return [4 /*yield*/, this._headerBasedAuth(authMode, additionalHeaders)];\n case 1:\n _e = (_l.sent());\n _l.label = 2;\n case 2:\n _f = [__assign.apply(void 0, _d.concat([(_e)]))];\n _g = customGraphqlEndpoint;\n if (!_g) return [3 /*break*/, 6];\n if (!customEndpointRegion) return [3 /*break*/, 4];\n return [4 /*yield*/, this._headerBasedAuth(authMode, additionalHeaders)];\n case 3:\n _h = _l.sent();\n return [3 /*break*/, 5];\n case 4:\n _h = { Authorization: null };\n _l.label = 5;\n case 5:\n _g = (_h);\n _l.label = 6;\n case 6:\n _j = [__assign.apply(void 0, _f.concat([(_g)]))];\n return [4 /*yield*/, graphql_headers({ query: query, variables: variables })];\n case 7:\n headers = __assign.apply(void 0, [__assign.apply(void 0, [__assign.apply(void 0, _j.concat([(_l.sent())])), additionalHeaders]), (!customGraphqlEndpoint && (_k = {},\n _k[USER_AGENT_HEADER] = Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(userAgentSuffix),\n _k))]);\n body = {\n query: Object(graphql__WEBPACK_IMPORTED_MODULE_0__[\"print\"])(query),\n variables: variables,\n };\n init = Object.assign({\n headers: headers,\n body: body,\n signerServiceInfo: {\n service: !customGraphqlEndpoint ? 'appsync' : 'execute-api',\n region: !customGraphqlEndpoint ? region : customEndpointRegion,\n },\n }, initParams);\n endpoint = customGraphqlEndpoint || appSyncGraphqlEndpoint;\n if (!endpoint) {\n error = new graphql__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"]('No graphql endpoint provided.');\n throw {\n data: {},\n errors: [error],\n };\n }\n _l.label = 8;\n case 8:\n _l.trys.push([8, 10, , 11]);\n return [4 /*yield*/, this._api.post(endpoint, init)];\n case 9:\n response = _l.sent();\n return [3 /*break*/, 11];\n case 10:\n err_1 = _l.sent();\n // If the exception is because user intentionally\n // cancelled the request, do not modify the exception\n // so that clients can identify the exception correctly.\n if (this._api.isCancel(err_1)) {\n throw err_1;\n }\n response = {\n data: {},\n errors: [new graphql__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](err_1.message, null, null, null, null, err_1)],\n };\n return [3 /*break*/, 11];\n case 11:\n errors = response.errors;\n if (errors && errors.length) {\n throw response;\n }\n return [2 /*return*/, response];\n }\n });\n });\n };\n GraphQLAPIClass.prototype.createInstanceIfNotCreated = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!!this._api) return [3 /*break*/, 2];\n return [4 /*yield*/, this.createInstance()];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Checks to see if an error thrown is from an api request cancellation\n * @param {any} error - Any error\n * @return {boolean} - A boolean indicating if the error was from an api request cancellation\n */\n GraphQLAPIClass.prototype.isCancel = function (error) {\n return this._api.isCancel(error);\n };\n /**\n * Cancels an inflight request. Only applicable for graphql queries and mutations\n * @param {any} request - request to cancel\n * @return {boolean} - A boolean indicating if the request was cancelled\n */\n GraphQLAPIClass.prototype.cancel = function (request, message) {\n return this._api.cancel(request, message);\n };\n /**\n * Check if the request has a corresponding cancel token in the WeakMap.\n * @params request - The request promise\n * @return if the request has a corresponding cancel token.\n */\n GraphQLAPIClass.prototype.hasCancelToken = function (request) {\n return this._api.hasCancelToken(request);\n };\n GraphQLAPIClass.prototype._graphqlSubscribe = function (_a, additionalHeaders) {\n var query = _a.query, variables = _a.variables, defaultAuthenticationType = _a.authMode, authToken = _a.authToken;\n if (additionalHeaders === void 0) { additionalHeaders = {}; }\n var _b = this._options, region = _b.aws_appsync_region, appSyncGraphqlEndpoint = _b.aws_appsync_graphqlEndpoint, aws_appsync_authenticationType = _b.aws_appsync_authenticationType, apiKey = _b.aws_appsync_apiKey, _c = _b.graphql_headers, graphql_headers = _c === void 0 ? function () { return ({}); } : _c;\n var authenticationType = defaultAuthenticationType || aws_appsync_authenticationType || 'AWS_IAM';\n if (_aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_2__[\"PubSub\"] && typeof _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_2__[\"PubSub\"].subscribe === 'function') {\n return _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_2__[\"PubSub\"].subscribe('', {\n provider: _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER\"],\n appSyncGraphqlEndpoint: appSyncGraphqlEndpoint,\n authenticationType: authenticationType,\n apiKey: apiKey,\n query: Object(graphql__WEBPACK_IMPORTED_MODULE_0__[\"print\"])(query),\n region: region,\n variables: variables,\n graphql_headers: graphql_headers,\n additionalHeaders: additionalHeaders,\n authToken: authToken,\n });\n }\n else {\n logger.debug('No pubsub module applied for subscription');\n throw new Error('No pubsub module applied for subscription');\n }\n };\n /**\n * @private\n */\n GraphQLAPIClass.prototype._ensureCredentials = function () {\n var _this = this;\n return this.Credentials.get()\n .then(function (credentials) {\n if (!credentials)\n return false;\n var cred = _this.Credentials.shear(credentials);\n logger.debug('set credentials for api', cred);\n return true;\n })\n .catch(function (err) {\n logger.warn('ensure credentials error', err);\n return false;\n });\n };\n return GraphQLAPIClass;\n}());\n\nvar GraphQLAPI = new GraphQLAPIClass(null);\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Amplify\"].register(GraphQLAPI);\n//# sourceMappingURL=GraphQLAPI.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-graphql/lib-esm/GraphQLAPI.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-graphql/lib-esm/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-amplify/api-graphql/lib-esm/index.js ***! \****************************************************************/ /*! exports provided: GraphQLAuthError, GRAPHQL_AUTH_MODE, GraphQLAPI, GraphQLAPIClass, graphqlOperation, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _GraphQLAPI__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./GraphQLAPI */ \"./node_modules/@aws-amplify/api-graphql/lib-esm/GraphQLAPI.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-amplify/api-graphql/lib-esm/types/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLAuthError\", function() { return _types__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLAuthError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GRAPHQL_AUTH_MODE\", function() { return _types__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLAPI\", function() { return _GraphQLAPI__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLAPI\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLAPIClass\", function() { return _GraphQLAPI__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLAPIClass\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"graphqlOperation\", function() { return _GraphQLAPI__WEBPACK_IMPORTED_MODULE_0__[\"graphqlOperation\"]; });\n\n/* empty/unused harmony star reexport *//*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (_GraphQLAPI__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLAPI\"]);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-graphql/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-graphql/lib-esm/types/index.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-amplify/api-graphql/lib-esm/types/index.js ***! \**********************************************************************/ /*! exports provided: GRAPHQL_AUTH_MODE, GraphQLAuthError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLAuthError\", function() { return GraphQLAuthError; });\n/* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/auth */ \"./node_modules/@aws-amplify/auth/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GRAPHQL_AUTH_MODE\", function() { return _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"]; });\n\n\n\nvar GraphQLAuthError;\n(function (GraphQLAuthError) {\n GraphQLAuthError[\"NO_API_KEY\"] = \"No api-key configured\";\n GraphQLAuthError[\"NO_CURRENT_USER\"] = \"No current user\";\n GraphQLAuthError[\"NO_CREDENTIALS\"] = \"No credentials\";\n GraphQLAuthError[\"NO_FEDERATED_JWT\"] = \"No federated jwt\";\n GraphQLAuthError[\"NO_AUTH_TOKEN\"] = \"No auth token specified\";\n})(GraphQLAuthError || (GraphQLAuthError = {}));\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-graphql/lib-esm/types/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/lib-esm/RestAPI.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/lib-esm/RestAPI.js ***! \***************************************************************/ /*! exports provided: RestAPIClass, RestAPI */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RestAPIClass\", function() { return RestAPIClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RestAPI\", function() { return RestAPI; });\n/* harmony import */ var _RestClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./RestClient */ \"./node_modules/@aws-amplify/api-rest/lib-esm/RestClient.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('RestAPI');\n/**\n * Export Cloud Logic APIs\n */\nvar RestAPIClass = /** @class */ (function () {\n /**\n * Initialize Rest API with AWS configuration\n * @param {Object} options - Configuration object for API\n */\n function RestAPIClass(options) {\n this._api = null;\n this.Credentials = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Credentials\"];\n this._options = options;\n logger.debug('API Options', this._options);\n }\n RestAPIClass.prototype.getModuleName = function () {\n return 'RestAPI';\n };\n /**\n * Configure API part with aws configurations\n * @param {Object} config - Configuration of the API\n * @return {Object} - The current configuration\n */\n RestAPIClass.prototype.configure = function (options) {\n var _a = options || {}, _b = _a.API, API = _b === void 0 ? {} : _b, otherOptions = __rest(_a, [\"API\"]);\n var opt = __assign(__assign({}, otherOptions), API);\n logger.debug('configure Rest API', { opt: opt });\n if (opt['aws_project_region']) {\n if (opt['aws_cloud_logic_custom']) {\n var custom = opt['aws_cloud_logic_custom'];\n opt.endpoints =\n typeof custom === 'string' ? JSON.parse(custom) : custom;\n }\n opt = Object.assign({}, opt, {\n region: opt['aws_project_region'],\n header: {},\n });\n }\n if (Array.isArray(opt.endpoints)) {\n // Check if endpoints has custom_headers and validate if is a function\n opt.endpoints.forEach(function (endpoint) {\n if (typeof endpoint.custom_header !== 'undefined' &&\n typeof endpoint.custom_header !== 'function') {\n logger.warn('Rest API ' + endpoint.name + ', custom_header should be a function');\n endpoint.custom_header = undefined;\n }\n });\n }\n else if (this._options && Array.isArray(this._options.endpoints)) {\n opt.endpoints = this._options.endpoints;\n }\n else {\n opt.endpoints = [];\n }\n this._options = Object.assign({}, this._options, opt);\n this.createInstance();\n return this._options;\n };\n /**\n * Create an instance of API for the library\n * @return - A promise of true if Success\n */\n RestAPIClass.prototype.createInstance = function () {\n logger.debug('create Rest API instance');\n this._api = new _RestClient__WEBPACK_IMPORTED_MODULE_0__[\"RestClient\"](this._options);\n // Share Amplify instance with client for SSR\n this._api.Credentials = this.Credentials;\n return true;\n };\n /**\n * Make a GET request\n * @param {string} apiName - The api name of the request\n * @param {string} path - The path of the request\n * @param {json} [init] - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestAPIClass.prototype.get = function (apiName, path, init) {\n try {\n var apiInfo = this.getEndpointInfo(apiName, path);\n var cancellableToken = this._api.getCancellableToken();\n var initParams = Object.assign({}, init);\n initParams.cancellableToken = cancellableToken;\n var responsePromise = this._api.get(apiInfo, initParams);\n this._api.updateRequestToBeCancellable(responsePromise, cancellableToken);\n return responsePromise;\n }\n catch (err) {\n return Promise.reject(err.message);\n }\n };\n /**\n * Make a POST request\n * @param {string} apiName - The api name of the request\n * @param {string} path - The path of the request\n * @param {json} [init] - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestAPIClass.prototype.post = function (apiName, path, init) {\n try {\n var apiInfo = this.getEndpointInfo(apiName, path);\n var cancellableToken = this._api.getCancellableToken();\n var initParams = Object.assign({}, init);\n initParams.cancellableToken = cancellableToken;\n var responsePromise = this._api.post(apiInfo, initParams);\n this._api.updateRequestToBeCancellable(responsePromise, cancellableToken);\n return responsePromise;\n }\n catch (err) {\n return Promise.reject(err.message);\n }\n };\n /**\n * Make a PUT request\n * @param {string} apiName - The api name of the request\n * @param {string} path - The path of the request\n * @param {json} [init] - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestAPIClass.prototype.put = function (apiName, path, init) {\n try {\n var apiInfo = this.getEndpointInfo(apiName, path);\n var cancellableToken = this._api.getCancellableToken();\n var initParams = Object.assign({}, init);\n initParams.cancellableToken = cancellableToken;\n var responsePromise = this._api.put(apiInfo, initParams);\n this._api.updateRequestToBeCancellable(responsePromise, cancellableToken);\n return responsePromise;\n }\n catch (err) {\n return Promise.reject(err.message);\n }\n };\n /**\n * Make a PATCH request\n * @param {string} apiName - The api name of the request\n * @param {string} path - The path of the request\n * @param {json} [init] - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestAPIClass.prototype.patch = function (apiName, path, init) {\n try {\n var apiInfo = this.getEndpointInfo(apiName, path);\n var cancellableToken = this._api.getCancellableToken();\n var initParams = Object.assign({}, init);\n initParams.cancellableToken = cancellableToken;\n var responsePromise = this._api.patch(apiInfo, initParams);\n this._api.updateRequestToBeCancellable(responsePromise, cancellableToken);\n return responsePromise;\n }\n catch (err) {\n return Promise.reject(err.message);\n }\n };\n /**\n * Make a DEL request\n * @param {string} apiName - The api name of the request\n * @param {string} path - The path of the request\n * @param {json} [init] - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestAPIClass.prototype.del = function (apiName, path, init) {\n try {\n var apiInfo = this.getEndpointInfo(apiName, path);\n var cancellableToken = this._api.getCancellableToken();\n var initParams = Object.assign({}, init);\n initParams.cancellableToken = cancellableToken;\n var responsePromise = this._api.del(apiInfo, initParams);\n this._api.updateRequestToBeCancellable(responsePromise, cancellableToken);\n return responsePromise;\n }\n catch (err) {\n return Promise.reject(err.message);\n }\n };\n /**\n * Make a HEAD request\n * @param {string} apiName - The api name of the request\n * @param {string} path - The path of the request\n * @param {json} [init] - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestAPIClass.prototype.head = function (apiName, path, init) {\n try {\n var apiInfo = this.getEndpointInfo(apiName, path);\n var cancellableToken = this._api.getCancellableToken();\n var initParams = Object.assign({}, init);\n initParams.cancellableToken = cancellableToken;\n var responsePromise = this._api.head(apiInfo, initParams);\n this._api.updateRequestToBeCancellable(responsePromise, cancellableToken);\n return responsePromise;\n }\n catch (err) {\n return Promise.reject(err.message);\n }\n };\n /**\n * Checks to see if an error thrown is from an api request cancellation\n * @param {any} error - Any error\n * @return {boolean} - A boolean indicating if the error was from an api request cancellation\n */\n RestAPIClass.prototype.isCancel = function (error) {\n return this._api.isCancel(error);\n };\n /**\n * Cancels an inflight request\n * @param {any} request - request to cancel\n * @return {boolean} - A boolean indicating if the request was cancelled\n */\n RestAPIClass.prototype.cancel = function (request, message) {\n return this._api.cancel(request, message);\n };\n /**\n * Check if the request has a corresponding cancel token in the WeakMap.\n * @params request - The request promise\n * @return if the request has a corresponding cancel token.\n */\n RestAPIClass.prototype.hasCancelToken = function (request) {\n return this._api.hasCancelToken(request);\n };\n /**\n * Getting endpoint for API\n * @param {string} apiName - The name of the api\n * @return {string} - The endpoint of the api\n */\n RestAPIClass.prototype.endpoint = function (apiName) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this._api.endpoint(apiName)];\n });\n });\n };\n /**\n * Getting endpoint info for API\n * @param {string} apiName - The name of the api\n * @param {string} path - The path of the api that is going to accessed\n * @return {ApiInfo} - The endpoint information for that api-name\n */\n RestAPIClass.prototype.getEndpointInfo = function (apiName, path) {\n var cloud_logic_array = this._options.endpoints;\n if (!Array.isArray(cloud_logic_array)) {\n throw new Error(\"API category not configured\");\n }\n var apiConfig = cloud_logic_array.find(function (api) { return api.name === apiName; });\n if (!apiConfig) {\n throw new Error(\"API \" + apiName + \" does not exist\");\n }\n var response = {\n endpoint: apiConfig.endpoint + path,\n };\n if (typeof apiConfig.region === 'string') {\n response.region = apiConfig.region;\n }\n else if (typeof this._options.region === 'string') {\n response.region = this._options.region;\n }\n if (typeof apiConfig.service === 'string') {\n response.service = apiConfig.service || 'execute-api';\n }\n else {\n response.service = 'execute-api';\n }\n if (typeof apiConfig.custom_header === 'function') {\n response.custom_header = apiConfig.custom_header;\n }\n else {\n response.custom_header = undefined;\n }\n return response;\n };\n return RestAPIClass;\n}());\n\nvar RestAPI = new RestAPIClass(null);\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Amplify\"].register(RestAPI);\n//# sourceMappingURL=RestAPI.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/lib-esm/RestAPI.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/lib-esm/RestClient.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/lib-esm/RestClient.js ***! \******************************************************************/ /*! exports provided: RestClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RestClient\", function() { return RestClient; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! axios */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! url */ \"./node_modules/url/url.js\");\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(url__WEBPACK_IMPORTED_MODULE_2__);\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('RestClient');\n/**\n* HTTP Client for REST requests. Send and receive JSON data.\n* Sign request with AWS credentials if available\n* Usage:\n
\nconst restClient = new RestClient();\nrestClient.get('...')\n    .then(function(data) {\n        console.log(data);\n    })\n    .catch(err => console.log(err));\n
\n*/\nvar RestClient = /** @class */ (function () {\n /**\n * @param {RestClientOptions} [options] - Instance options\n */\n function RestClient(options) {\n this._region = 'us-east-1'; // this will be updated by endpoint function\n this._service = 'execute-api'; // this can be updated by endpoint function\n this._custom_header = undefined; // this can be updated by endpoint function\n /**\n * This weak map provides functionality to let clients cancel\n * in-flight axios requests. https://github.com/axios/axios#cancellation\n *\n * 1. For every axios request, a unique cancel token is generated and added in the request.\n * 2. Promise for fulfilling the request is then mapped to that unique cancel token.\n * 3. The promise is returned to the client.\n * 4. Clients can either wait for the promise to fulfill or call `API.cancel(promise)` to cancel the request.\n * 5. If `API.cancel(promise)` is called, then the corresponding cancel token is retrieved from the map below.\n * 6. Promise returned to the client will be in rejected state with the error provided during cancel.\n * 7. Clients can check if the error is because of cancelling by calling `API.isCancel(error)`.\n *\n * For more details, see https://github.com/aws-amplify/amplify-js/pull/3769#issuecomment-552660025\n */\n this._cancelTokenMap = null;\n this.Credentials = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"];\n this._options = options;\n logger.debug('API Options', this._options);\n if (this._cancelTokenMap == null) {\n this._cancelTokenMap = new WeakMap();\n }\n }\n /**\n * Update AWS credentials\n * @param {AWSCredentials} credentials - AWS credentials\n *\n updateCredentials(credentials: AWSCredentials) {\n this.options.credentials = credentials;\n }\n*/\n /**\n * Basic HTTP request. Customizable\n * @param {string | ApiInfo } urlOrApiInfo - Full request URL or Api information\n * @param {string} method - Request HTTP method\n * @param {json} [init] - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestClient.prototype.ajax = function (urlOrApiInfo, method, init) {\n return __awaiter(this, void 0, void 0, function () {\n var parsed_url, url, region, service, custom_header, params, libraryHeaders, userAgent, initParams, isAllResponse, custom_header_obj, _a, _b, search, parsedUrl;\n var _this = this;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n logger.debug(method, urlOrApiInfo);\n region = 'us-east-1';\n service = 'execute-api';\n custom_header = undefined;\n if (typeof urlOrApiInfo === 'string') {\n parsed_url = this._parseUrl(urlOrApiInfo);\n url = urlOrApiInfo;\n }\n else {\n (url = urlOrApiInfo.endpoint, custom_header = urlOrApiInfo.custom_header, region = urlOrApiInfo.region, service = urlOrApiInfo.service);\n parsed_url = this._parseUrl(urlOrApiInfo.endpoint);\n }\n params = {\n method: method,\n url: url,\n host: parsed_url.host,\n path: parsed_url.path,\n headers: {},\n data: null,\n responseType: 'json',\n timeout: 0,\n cancelToken: null,\n };\n libraryHeaders = {};\n if (_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Platform\"].isReactNative) {\n userAgent = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Platform\"].userAgent || 'aws-amplify/0.1.x';\n libraryHeaders = {\n 'User-Agent': userAgent,\n };\n }\n initParams = Object.assign({}, init);\n isAllResponse = initParams.response;\n if (initParams.body) {\n if (typeof FormData === 'function' &&\n initParams.body instanceof FormData) {\n libraryHeaders['Content-Type'] = 'multipart/form-data';\n params.data = initParams.body;\n }\n else {\n libraryHeaders['Content-Type'] = 'application/json; charset=UTF-8';\n params.data = JSON.stringify(initParams.body);\n }\n }\n if (initParams.responseType) {\n params.responseType = initParams.responseType;\n }\n if (initParams.withCredentials) {\n params['withCredentials'] = initParams.withCredentials;\n }\n if (initParams.timeout) {\n params.timeout = initParams.timeout;\n }\n if (initParams.cancellableToken) {\n params.cancelToken = initParams.cancellableToken.token;\n }\n params['signerServiceInfo'] = initParams.signerServiceInfo;\n if (!(typeof custom_header === 'function')) return [3 /*break*/, 2];\n return [4 /*yield*/, custom_header()];\n case 1:\n _a = _c.sent();\n return [3 /*break*/, 3];\n case 2:\n _a = undefined;\n _c.label = 3;\n case 3:\n custom_header_obj = _a;\n params.headers = __assign(__assign(__assign({}, libraryHeaders), custom_header_obj), initParams.headers);\n _b = Object(url__WEBPACK_IMPORTED_MODULE_2__[\"parse\"])(url, true, true), search = _b.search, parsedUrl = __rest(_b, [\"search\"]);\n params.url = Object(url__WEBPACK_IMPORTED_MODULE_2__[\"format\"])(__assign(__assign({}, parsedUrl), { query: __assign(__assign({}, parsedUrl.query), (initParams.queryStringParameters || {})) }));\n // Do not sign the request if client has added 'Authorization' header,\n // which means custom authorizer.\n if (typeof params.headers['Authorization'] !== 'undefined') {\n params.headers = Object.keys(params.headers).reduce(function (acc, k) {\n if (params.headers[k]) {\n acc[k] = params.headers[k];\n }\n return acc;\n // tslint:disable-next-line:align\n }, {});\n return [2 /*return*/, this._request(params, isAllResponse)];\n }\n // Signing the request in case there credentials are available\n return [2 /*return*/, this.Credentials.get().then(function (credentials) {\n return _this._signed(__assign({}, params), credentials, isAllResponse, {\n region: region,\n service: service,\n }).catch(function (error) {\n if (_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"DateUtils\"].isClockSkewError(error)) {\n var headers = error.response.headers;\n var dateHeader = headers && (headers.date || headers.Date);\n var responseDate = new Date(dateHeader);\n var requestDate = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"DateUtils\"].getDateFromHeaderString(params.headers['x-amz-date']);\n // Compare local clock to the server clock\n if (_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"DateUtils\"].isClockSkewed(responseDate)) {\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"DateUtils\"].setClockOffset(responseDate.getTime() - requestDate.getTime());\n return _this.ajax(urlOrApiInfo, method, init);\n }\n }\n throw error;\n });\n }, function (err) {\n logger.debug('No credentials available, the request will be unsigned');\n return _this._request(params, isAllResponse);\n })];\n }\n });\n });\n };\n /**\n * GET HTTP request\n * @param {string | ApiInfo } urlOrApiInfo - Full request URL or Api information\n * @param {JSON} init - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestClient.prototype.get = function (urlOrApiInfo, init) {\n return this.ajax(urlOrApiInfo, 'GET', init);\n };\n /**\n * PUT HTTP request\n * @param {string | ApiInfo } urlOrApiInfo - Full request URL or Api information\n * @param {json} init - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestClient.prototype.put = function (urlOrApiInfo, init) {\n return this.ajax(urlOrApiInfo, 'PUT', init);\n };\n /**\n * PATCH HTTP request\n * @param {string | ApiInfo } urlOrApiInfo - Full request URL or Api information\n * @param {json} init - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestClient.prototype.patch = function (urlOrApiInfo, init) {\n return this.ajax(urlOrApiInfo, 'PATCH', init);\n };\n /**\n * POST HTTP request\n * @param {string | ApiInfo } urlOrApiInfo - Full request URL or Api information\n * @param {json} init - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestClient.prototype.post = function (urlOrApiInfo, init) {\n return this.ajax(urlOrApiInfo, 'POST', init);\n };\n /**\n * DELETE HTTP request\n * @param {string | ApiInfo } urlOrApiInfo - Full request URL or Api information\n * @param {json} init - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestClient.prototype.del = function (urlOrApiInfo, init) {\n return this.ajax(urlOrApiInfo, 'DELETE', init);\n };\n /**\n * HEAD HTTP request\n * @param {string | ApiInfo } urlOrApiInfo - Full request URL or Api information\n * @param {json} init - Request extra params\n * @return {Promise} - A promise that resolves to an object with response status and JSON data, if successful.\n */\n RestClient.prototype.head = function (urlOrApiInfo, init) {\n return this.ajax(urlOrApiInfo, 'HEAD', init);\n };\n /**\n * Cancel an inflight API request\n * @param {Promise} request - The request promise to cancel\n * @param {string} [message] - A message to include in the cancelation exception\n */\n RestClient.prototype.cancel = function (request, message) {\n var source = this._cancelTokenMap.get(request);\n if (source) {\n source.cancel(message);\n return true;\n }\n return false;\n };\n /**\n * Check if the request has a corresponding cancel token in the WeakMap.\n * @params request - The request promise\n * @return if the request has a corresponding cancel token.\n */\n RestClient.prototype.hasCancelToken = function (request) {\n return this._cancelTokenMap.has(request);\n };\n /**\n * Checks to see if an error thrown is from an api request cancellation\n * @param {any} error - Any error\n * @return {boolean} - A boolean indicating if the error was from an api request cancellation\n */\n RestClient.prototype.isCancel = function (error) {\n return axios__WEBPACK_IMPORTED_MODULE_1___default.a.isCancel(error);\n };\n /**\n * Retrieves a new and unique cancel token which can be\n * provided in an axios request to be cancelled later.\n */\n RestClient.prototype.getCancellableToken = function () {\n return axios__WEBPACK_IMPORTED_MODULE_1___default.a.CancelToken.source();\n };\n /**\n * Updates the weakmap with a response promise and its\n * cancel token such that the cancel token can be easily\n * retrieved (and used for cancelling the request)\n */\n RestClient.prototype.updateRequestToBeCancellable = function (promise, cancelTokenSource) {\n this._cancelTokenMap.set(promise, cancelTokenSource);\n };\n /**\n * Getting endpoint for API\n * @param {string} apiName - The name of the api\n * @return {string} - The endpoint of the api\n */\n RestClient.prototype.endpoint = function (apiName) {\n var _this = this;\n var cloud_logic_array = this._options.endpoints;\n var response = '';\n if (!Array.isArray(cloud_logic_array)) {\n return response;\n }\n cloud_logic_array.forEach(function (v) {\n if (v.name === apiName) {\n response = v.endpoint;\n if (typeof v.region === 'string') {\n _this._region = v.region;\n }\n else if (typeof _this._options.region === 'string') {\n _this._region = _this._options.region;\n }\n if (typeof v.service === 'string') {\n _this._service = v.service || 'execute-api';\n }\n else {\n _this._service = 'execute-api';\n }\n if (typeof v.custom_header === 'function') {\n _this._custom_header = v.custom_header;\n }\n else {\n _this._custom_header = undefined;\n }\n }\n });\n return response;\n };\n /** private methods **/\n RestClient.prototype._signed = function (params, credentials, isAllResponse, _a) {\n var service = _a.service, region = _a.region;\n var signerServiceInfoParams = params.signerServiceInfo, otherParams = __rest(params, [\"signerServiceInfo\"]);\n var endpoint_region = region || this._region || this._options.region;\n var endpoint_service = service || this._service || this._options.service;\n var creds = {\n secret_key: credentials.secretAccessKey,\n access_key: credentials.accessKeyId,\n session_token: credentials.sessionToken,\n };\n var endpointInfo = {\n region: endpoint_region,\n service: endpoint_service,\n };\n var signerServiceInfo = Object.assign(endpointInfo, signerServiceInfoParams);\n var signed_params = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Signer\"].sign(otherParams, creds, signerServiceInfo);\n if (signed_params.data) {\n signed_params.body = signed_params.data;\n }\n logger.debug('Signed Request: ', signed_params);\n delete signed_params.headers['host'];\n return axios__WEBPACK_IMPORTED_MODULE_1___default()(signed_params)\n .then(function (response) { return (isAllResponse ? response : response.data); })\n .catch(function (error) {\n logger.debug(error);\n throw error;\n });\n };\n RestClient.prototype._request = function (params, isAllResponse) {\n if (isAllResponse === void 0) { isAllResponse = false; }\n return axios__WEBPACK_IMPORTED_MODULE_1___default()(params)\n .then(function (response) { return (isAllResponse ? response : response.data); })\n .catch(function (error) {\n logger.debug(error);\n throw error;\n });\n };\n RestClient.prototype._parseUrl = function (url) {\n var parts = url.split('/');\n return {\n host: parts[2],\n path: '/' + parts.slice(3).join('/'),\n };\n };\n return RestClient;\n}());\n\n//# sourceMappingURL=RestClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/lib-esm/RestClient.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/lib-esm/index.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/lib-esm/index.js ***! \*************************************************************/ /*! exports provided: RestAPI, RestAPIClass, RestClient, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _RestAPI__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./RestAPI */ \"./node_modules/@aws-amplify/api-rest/lib-esm/RestAPI.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestAPI\", function() { return _RestAPI__WEBPACK_IMPORTED_MODULE_0__[\"RestAPI\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestAPIClass\", function() { return _RestAPI__WEBPACK_IMPORTED_MODULE_0__[\"RestAPIClass\"]; });\n\n/* harmony import */ var _RestClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./RestClient */ \"./node_modules/@aws-amplify/api-rest/lib-esm/RestClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestClient\", function() { return _RestClient__WEBPACK_IMPORTED_MODULE_1__[\"RestClient\"]; });\n\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (_RestAPI__WEBPACK_IMPORTED_MODULE_0__[\"RestAPI\"]);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/index.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/index.js ***! \************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("module.exports = __webpack_require__(/*! ./lib/axios */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/axios.js\");\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/adapters/xhr.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/adapters/xhr.js ***! \***********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\nvar settle = __webpack_require__(/*! ./../core/settle */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/settle.js\");\nvar cookies = __webpack_require__(/*! ./../helpers/cookies */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/cookies.js\");\nvar buildURL = __webpack_require__(/*! ./../helpers/buildURL */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/buildURL.js\");\nvar buildFullPath = __webpack_require__(/*! ../core/buildFullPath */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/buildFullPath.js\");\nvar parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/parseHeaders.js\");\nvar isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isURLSameOrigin.js\");\nvar createError = __webpack_require__(/*! ../core/createError */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/createError.js\");\nvar defaults = __webpack_require__(/*! ../defaults */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/defaults.js\");\nvar Cancel = __webpack_require__(/*! ../cancel/Cancel */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/Cancel.js\");\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n var responseType = config.responseType;\n var onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n var fullPath = buildFullPath(config.baseURL, config.url);\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n var response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(createError('Request aborted', config, 'ECONNABORTED', request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n var timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n var transitional = config.transitional || defaults.transitional;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(createError(\n timeoutErrorMessage,\n config,\n transitional.clarifyTimeoutError ? 'ETIMEDOUT' : 'ECONNABORTED',\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = function(cancel) {\n if (!request) {\n return;\n }\n reject(!cancel || (cancel && cancel.type) ? new Cancel('canceled') : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n if (!requestData) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/adapters/xhr.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/axios.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/axios.js ***! \****************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\nvar bind = __webpack_require__(/*! ./helpers/bind */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/bind.js\");\nvar Axios = __webpack_require__(/*! ./core/Axios */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/Axios.js\");\nvar mergeConfig = __webpack_require__(/*! ./core/mergeConfig */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/mergeConfig.js\");\nvar defaults = __webpack_require__(/*! ./defaults */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/defaults.js\");\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Expose Cancel & CancelToken\naxios.Cancel = __webpack_require__(/*! ./cancel/Cancel */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/Cancel.js\");\naxios.CancelToken = __webpack_require__(/*! ./cancel/CancelToken */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/CancelToken.js\");\naxios.isCancel = __webpack_require__(/*! ./cancel/isCancel */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/isCancel.js\");\naxios.VERSION = __webpack_require__(/*! ./env/data */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/env/data.js\").version;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = __webpack_require__(/*! ./helpers/spread */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/spread.js\");\n\n// Expose isAxiosError\naxios.isAxiosError = __webpack_require__(/*! ./helpers/isAxiosError */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isAxiosError.js\");\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/axios.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/Cancel.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/Cancel.js ***! \************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/Cancel.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/CancelToken.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/CancelToken.js ***! \*****************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar Cancel = __webpack_require__(/*! ./Cancel */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/Cancel.js\");\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n\n // eslint-disable-next-line func-names\n this.promise.then(function(cancel) {\n if (!token._listeners) return;\n\n var i;\n var l = token._listeners.length;\n\n for (i = 0; i < l; i++) {\n token._listeners[i](cancel);\n }\n token._listeners = null;\n });\n\n // eslint-disable-next-line func-names\n this.promise.then = function(onfulfilled) {\n var _resolve;\n // eslint-disable-next-line func-names\n var promise = new Promise(function(resolve) {\n token.subscribe(resolve);\n _resolve = resolve;\n }).then(onfulfilled);\n\n promise.cancel = function reject() {\n token.unsubscribe(_resolve);\n };\n\n return promise;\n };\n\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Subscribe to the cancel signal\n */\n\nCancelToken.prototype.subscribe = function subscribe(listener) {\n if (this.reason) {\n listener(this.reason);\n return;\n }\n\n if (this._listeners) {\n this._listeners.push(listener);\n } else {\n this._listeners = [listener];\n }\n};\n\n/**\n * Unsubscribe from the cancel signal\n */\n\nCancelToken.prototype.unsubscribe = function unsubscribe(listener) {\n if (!this._listeners) {\n return;\n }\n var index = this._listeners.indexOf(listener);\n if (index !== -1) {\n this._listeners.splice(index, 1);\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/CancelToken.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/isCancel.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/isCancel.js ***! \**************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/isCancel.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/Axios.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/Axios.js ***! \*********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\nvar buildURL = __webpack_require__(/*! ../helpers/buildURL */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/buildURL.js\");\nvar InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/InterceptorManager.js\");\nvar dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/dispatchRequest.js\");\nvar mergeConfig = __webpack_require__(/*! ./mergeConfig */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/mergeConfig.js\");\nvar validator = __webpack_require__(/*! ../helpers/validator */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/validator.js\");\n\nvar validators = validator.validators;\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(configOrUrl, config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof configOrUrl === 'string') {\n config = config || {};\n config.url = configOrUrl;\n } else {\n config = configOrUrl || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n // Set config.method\n if (config.method) {\n config.method = config.method.toLowerCase();\n } else if (this.defaults.method) {\n config.method = this.defaults.method.toLowerCase();\n } else {\n config.method = 'get';\n }\n\n var transitional = config.transitional;\n\n if (transitional !== undefined) {\n validator.assertOptions(transitional, {\n silentJSONParsing: validators.transitional(validators.boolean),\n forcedJSONParsing: validators.transitional(validators.boolean),\n clarifyTimeoutError: validators.transitional(validators.boolean)\n }, false);\n }\n\n // filter out skipped interceptors\n var requestInterceptorChain = [];\n var synchronousRequestInterceptors = true;\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {\n return;\n }\n\n synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;\n\n requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n var responseInterceptorChain = [];\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n var promise;\n\n if (!synchronousRequestInterceptors) {\n var chain = [dispatchRequest, undefined];\n\n Array.prototype.unshift.apply(chain, requestInterceptorChain);\n chain = chain.concat(responseInterceptorChain);\n\n promise = Promise.resolve(config);\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n }\n\n\n var newConfig = config;\n while (requestInterceptorChain.length) {\n var onFulfilled = requestInterceptorChain.shift();\n var onRejected = requestInterceptorChain.shift();\n try {\n newConfig = onFulfilled(newConfig);\n } catch (error) {\n onRejected(error);\n break;\n }\n }\n\n try {\n promise = dispatchRequest(newConfig);\n } catch (error) {\n return Promise.reject(error);\n }\n\n while (responseInterceptorChain.length) {\n promise = promise.then(responseInterceptorChain.shift(), responseInterceptorChain.shift());\n }\n\n return promise;\n};\n\nAxios.prototype.getUri = function getUri(config) {\n config = mergeConfig(this.defaults, config);\n return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\\?/, '');\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/Axios.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/InterceptorManager.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/InterceptorManager.js ***! \**********************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected, options) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected,\n synchronous: options ? options.synchronous : false,\n runWhen: options ? options.runWhen : null\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/InterceptorManager.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/buildFullPath.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/buildFullPath.js ***! \*****************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar isAbsoluteURL = __webpack_require__(/*! ../helpers/isAbsoluteURL */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isAbsoluteURL.js\");\nvar combineURLs = __webpack_require__(/*! ../helpers/combineURLs */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/combineURLs.js\");\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n * @returns {string} The combined full path\n */\nmodule.exports = function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/buildFullPath.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/createError.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/createError.js ***! \***************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar enhanceError = __webpack_require__(/*! ./enhanceError */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/enhanceError.js\");\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/createError.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/dispatchRequest.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/dispatchRequest.js ***! \*******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\nvar transformData = __webpack_require__(/*! ./transformData */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/transformData.js\");\nvar isCancel = __webpack_require__(/*! ../cancel/isCancel */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/isCancel.js\");\nvar defaults = __webpack_require__(/*! ../defaults */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/defaults.js\");\nvar Cancel = __webpack_require__(/*! ../cancel/Cancel */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/cancel/Cancel.js\");\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new Cancel('canceled');\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData.call(\n config,\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData.call(\n config,\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData.call(\n config,\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/dispatchRequest.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/enhanceError.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/enhanceError.js ***! \****************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n\n error.request = request;\n error.response = response;\n error.isAxiosError = true;\n\n error.toJSON = function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n };\n return error;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/enhanceError.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/mergeConfig.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/mergeConfig.js ***! \***************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n * @returns {Object} New object resulting from merging config2 to config1\n */\nmodule.exports = function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n var config = {};\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDirectKeys(prop) {\n if (prop in config2) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n var mergeMap = {\n 'url': valueFromConfig2,\n 'method': valueFromConfig2,\n 'data': valueFromConfig2,\n 'baseURL': defaultToConfig2,\n 'transformRequest': defaultToConfig2,\n 'transformResponse': defaultToConfig2,\n 'paramsSerializer': defaultToConfig2,\n 'timeout': defaultToConfig2,\n 'timeoutMessage': defaultToConfig2,\n 'withCredentials': defaultToConfig2,\n 'adapter': defaultToConfig2,\n 'responseType': defaultToConfig2,\n 'xsrfCookieName': defaultToConfig2,\n 'xsrfHeaderName': defaultToConfig2,\n 'onUploadProgress': defaultToConfig2,\n 'onDownloadProgress': defaultToConfig2,\n 'decompress': defaultToConfig2,\n 'maxContentLength': defaultToConfig2,\n 'maxBodyLength': defaultToConfig2,\n 'transport': defaultToConfig2,\n 'httpAgent': defaultToConfig2,\n 'httpsAgent': defaultToConfig2,\n 'cancelToken': defaultToConfig2,\n 'socketPath': defaultToConfig2,\n 'responseEncoding': defaultToConfig2,\n 'validateStatus': mergeDirectKeys\n };\n\n utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {\n var merge = mergeMap[prop] || mergeDeepProperties;\n var configValue = merge(prop);\n (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);\n });\n\n return config;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/mergeConfig.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/settle.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/settle.js ***! \**********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar createError = __webpack_require__(/*! ./createError */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/createError.js\");\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/settle.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/transformData.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/transformData.js ***! \*****************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\nvar defaults = __webpack_require__(/*! ./../defaults */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/defaults.js\");\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n var context = this || defaults;\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn.call(context, data, headers);\n });\n\n return data;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/transformData.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/defaults.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/defaults.js ***! \*******************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/* WEBPACK VAR INJECTION */(function(process) {\n\nvar utils = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\nvar normalizeHeaderName = __webpack_require__(/*! ./helpers/normalizeHeaderName */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/normalizeHeaderName.js\");\nvar enhanceError = __webpack_require__(/*! ./core/enhanceError */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/core/enhanceError.js\");\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = __webpack_require__(/*! ./adapters/xhr */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/adapters/xhr.js\");\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = __webpack_require__(/*! ./adapters/http */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/adapters/xhr.js\");\n }\n return adapter;\n}\n\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nvar defaults = {\n\n transitional: {\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n },\n\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data) || (headers && headers['Content-Type'] === 'application/json')) {\n setContentTypeIfUnset(headers, 'application/json');\n return stringifySafely(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n var transitional = this.transitional || defaults.transitional;\n var silentJSONParsing = transitional && transitional.silentJSONParsing;\n var forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n var strictJSONParsing = !silentJSONParsing && this.responseType === 'json';\n\n if (strictJSONParsing || (forcedJSONParsing && utils.isString(data) && data.length)) {\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw enhanceError(e, this, 'E_JSON_PARSE');\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../node-libs-browser/mock/process.js */ \"./node_modules/node-libs-browser/mock/process.js\")))\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/defaults.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/env/data.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/env/data.js ***! \*******************************************************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("module.exports = {\n \"version\": \"0.26.0\"\n};\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/env/data.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/bind.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/bind.js ***! \***********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/bind.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/buildURL.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/buildURL.js ***! \***************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n var hashmarkIndex = url.indexOf('#');\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/buildURL.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/combineURLs.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/combineURLs.js ***! \******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/combineURLs.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/cookies.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/cookies.js ***! \**************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/cookies.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isAbsoluteURL.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isAbsoluteURL.js ***! \********************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isAbsoluteURL.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isAxiosError.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isAxiosError.js ***! \*******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nmodule.exports = function isAxiosError(payload) {\n return utils.isObject(payload) && (payload.isAxiosError === true);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isAxiosError.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isURLSameOrigin.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isURLSameOrigin.js ***! \**********************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/isURLSameOrigin.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/normalizeHeaderName.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/normalizeHeaderName.js ***! \**************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/normalizeHeaderName.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/parseHeaders.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/parseHeaders.js ***! \*******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js\");\n\n// Headers whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nvar ignoreDuplicateOf = [\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n];\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {\n return;\n }\n if (key === 'set-cookie') {\n parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n }\n });\n\n return parsed;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/parseHeaders.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/spread.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/spread.js ***! \*************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/spread.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/validator.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/validator.js ***! \****************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar VERSION = __webpack_require__(/*! ../env/data */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/env/data.js\").version;\n\nvar validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach(function(type, i) {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nvar deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return function(value, opt, opts) {\n if (validator === false) {\n throw new Error(formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')));\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new TypeError('options must be an object');\n }\n var keys = Object.keys(options);\n var i = keys.length;\n while (i-- > 0) {\n var opt = keys[i];\n var validator = schema[opt];\n if (validator) {\n var value = options[opt];\n var result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new TypeError('option ' + opt + ' must be ' + result);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw Error('Unknown option ' + opt);\n }\n }\n}\n\nmodule.exports = {\n assertOptions: assertOptions,\n validators: validators\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/validator.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js ***! \****************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar bind = __webpack_require__(/*! ./helpers/bind */ \"./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/helpers/bind.js\");\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return Array.isArray(val);\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return toString.call(val) === '[object FormData]';\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {Object} val The value to test\n * @return {boolean} True if value is a plain Object, otherwise false\n */\nfunction isPlainObject(val) {\n if (toString.call(val) !== '[object Object]') {\n return false;\n }\n\n var prototype = Object.getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return toString.call(val) === '[object URLSearchParams]';\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.trim ? str.trim() : str.replace(/^\\s+|\\s+$/g, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||\n navigator.product === 'NativeScript' ||\n navigator.product === 'NS')) {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n * @return {string} content value without BOM\n */\nfunction stripBOM(content) {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isPlainObject: isPlainObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim,\n stripBOM: stripBOM\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api-rest/node_modules/axios/lib/utils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api/lib-esm/API.js": /*!******************************************************!*\ !*** ./node_modules/@aws-amplify/api/lib-esm/API.js ***! \******************************************************/ /*! exports provided: APIClass, API */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APIClass\", function() { return APIClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"API\", function() { return API; });\n/* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/auth */ \"./node_modules/@aws-amplify/auth/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/cache */ \"./node_modules/@aws-amplify/cache/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_api_rest__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/api-rest */ \"./node_modules/@aws-amplify/api-rest/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/api-graphql */ \"./node_modules/@aws-amplify/api-graphql/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"ConsoleLogger\"]('API');\n/**\n * @deprecated\n * Use RestApi or GraphQLAPI to reduce your application bundle size\n * Export Cloud Logic APIs\n */\nvar APIClass = /** @class */ (function () {\n /**\n * Initialize API with AWS configuration\n * @param {Object} options - Configuration object for API\n */\n function APIClass(options) {\n this.Auth = _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_0__[\"Auth\"];\n this.Cache = _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_1__[\"default\"];\n this.Credentials = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"Credentials\"];\n this._options = options;\n this._restApi = new _aws_amplify_api_rest__WEBPACK_IMPORTED_MODULE_2__[\"RestAPIClass\"](options);\n this._graphqlApi = new _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLAPIClass\"](options);\n logger.debug('API Options', this._options);\n }\n APIClass.prototype.getModuleName = function () {\n return 'API';\n };\n /**\n * Configure API part with aws configurations\n * @param {Object} config - Configuration of the API\n * @return {Object} - The current configuration\n */\n APIClass.prototype.configure = function (options) {\n this._options = Object.assign({}, this._options, options);\n // Share Amplify instance with client for SSR\n this._restApi.Credentials = this.Credentials;\n this._graphqlApi.Auth = this.Auth;\n this._graphqlApi.Cache = this.Cache;\n this._graphqlApi.Credentials = this.Credentials;\n var restAPIConfig = this._restApi.configure(this._options);\n var graphQLAPIConfig = this._graphqlApi.configure(this._options);\n return __assign(__assign({}, restAPIConfig), graphQLAPIConfig);\n };\n /**\n * Make a GET request\n * @param apiName - The api name of the request\n * @param path - The path of the request\n * @param [init] - Request extra params\n * @return A promise that resolves to an object with response status and JSON data, if successful.\n */\n APIClass.prototype.get = function (apiName, path, init) {\n return this._restApi.get(apiName, path, init);\n };\n /**\n * Make a POST request\n * @param apiName - The api name of the request\n * @param path - The path of the request\n * @param [init] - Request extra params\n * @return A promise that resolves to an object with response status and JSON data, if successful.\n */\n APIClass.prototype.post = function (apiName, path, init) {\n return this._restApi.post(apiName, path, init);\n };\n /**\n * Make a PUT request\n * @param apiName - The api name of the request\n * @param path - The path of the request\n * @param [init] - Request extra params\n * @return A promise that resolves to an object with response status and JSON data, if successful.\n */\n APIClass.prototype.put = function (apiName, path, init) {\n return this._restApi.put(apiName, path, init);\n };\n /**\n * Make a PATCH request\n * @param apiName - The api name of the request\n * @param path - The path of the request\n * @param [init] - Request extra params\n * @return A promise that resolves to an object with response status and JSON data, if successful.\n */\n APIClass.prototype.patch = function (apiName, path, init) {\n return this._restApi.patch(apiName, path, init);\n };\n /**\n * Make a DEL request\n * @param apiName - The api name of the request\n * @param path - The path of the request\n * @param [init] - Request extra params\n * @return A promise that resolves to an object with response status and JSON data, if successful.\n */\n APIClass.prototype.del = function (apiName, path, init) {\n return this._restApi.del(apiName, path, init);\n };\n /**\n * Make a HEAD request\n * @param apiName - The api name of the request\n * @param path - The path of the request\n * @param [init] - Request extra params\n * @return A promise that resolves to an object with response status and JSON data, if successful.\n */\n APIClass.prototype.head = function (apiName, path, init) {\n return this._restApi.head(apiName, path, init);\n };\n /**\n * Checks to see if an error thrown is from an api request cancellation\n * @param error - Any error\n * @return If the error was from an api request cancellation\n */\n APIClass.prototype.isCancel = function (error) {\n return this._restApi.isCancel(error);\n };\n /**\n * Cancels an inflight request for either a GraphQL request or a Rest API request.\n * @param request - request to cancel\n * @param [message] - custom error message\n * @return If the request was cancelled\n */\n APIClass.prototype.cancel = function (request, message) {\n if (this._restApi.hasCancelToken(request)) {\n return this._restApi.cancel(request, message);\n }\n else if (this._graphqlApi.hasCancelToken(request)) {\n return this._graphqlApi.cancel(request, message);\n }\n return false;\n };\n /**\n * Getting endpoint for API\n * @param apiName - The name of the api\n * @return The endpoint of the api\n */\n APIClass.prototype.endpoint = function (apiName) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this._restApi.endpoint(apiName)];\n });\n });\n };\n /**\n * to get the operation type\n * @param operation\n */\n APIClass.prototype.getGraphqlOperationType = function (operation) {\n return this._graphqlApi.getGraphqlOperationType(operation);\n };\n APIClass.prototype.graphql = function (options, additionalHeaders) {\n return this._graphqlApi.graphql(options, additionalHeaders);\n };\n return APIClass;\n}());\n\nvar API = new APIClass(null);\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"Amplify\"].register(API);\n//# sourceMappingURL=API.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api/lib-esm/API.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/api/lib-esm/index.js": /*!********************************************************!*\ !*** ./node_modules/@aws-amplify/api/lib-esm/index.js ***! \********************************************************/ /*! exports provided: API, APIClass, graphqlOperation, GraphQLAuthError, GRAPHQL_AUTH_MODE, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _API__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./API */ \"./node_modules/@aws-amplify/api/lib-esm/API.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"API\", function() { return _API__WEBPACK_IMPORTED_MODULE_0__[\"API\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APIClass\", function() { return _API__WEBPACK_IMPORTED_MODULE_0__[\"APIClass\"]; });\n\n/* harmony import */ var _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/api-graphql */ \"./node_modules/@aws-amplify/api-graphql/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"graphqlOperation\", function() { return _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"graphqlOperation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLAuthError\", function() { return _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLAuthError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GRAPHQL_AUTH_MODE\", function() { return _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"]; });\n\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n/*\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_API__WEBPACK_IMPORTED_MODULE_0__[\"API\"]);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/api/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/Auth.js": /*!********************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/Auth.js ***! \********************************************************/ /*! exports provided: AuthClass, Auth */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AuthClass\", function() { return AuthClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Auth\", function() { return Auth; });\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-amplify/auth/lib-esm/types/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! amazon-cognito-identity-js */ \"./node_modules/amazon-cognito-identity-js/es/index.js\");\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! url */ \"./node_modules/url/url.js\");\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(url__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _OAuth_OAuth__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./OAuth/OAuth */ \"./node_modules/@aws-amplify/auth/lib-esm/OAuth/OAuth.js\");\n/* harmony import */ var _urlListener__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./urlListener */ \"./node_modules/@aws-amplify/auth/lib-esm/urlListener.js\");\n/* harmony import */ var _Errors__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./Errors */ \"./node_modules/@aws-amplify/auth/lib-esm/Errors.js\");\n/* harmony import */ var _types_Auth__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./types/Auth */ \"./node_modules/@aws-amplify/auth/lib-esm/types/Auth.js\");\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n *\t http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n\n\n\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('AuthClass');\nvar USER_ADMIN_SCOPE = 'aws.cognito.signin.user.admin';\n// 10 sec, following this guide https://www.nngroup.com/articles/response-times-3-important-limits/\nvar OAUTH_FLOW_MS_TIMEOUT = 10 * 1000;\nvar AMPLIFY_SYMBOL = (typeof Symbol !== 'undefined' && typeof Symbol.for === 'function'\n ? Symbol.for('amplify_default')\n : '@@amplify_default');\nvar dispatchAuthEvent = function (event, data, message) {\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Hub\"].dispatch('auth', { event: event, data: data, message: message }, 'Auth', AMPLIFY_SYMBOL);\n};\n// Cognito Documentation for max device\n// tslint:disable-next-line:max-line-length\n// https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_ListDevices.html#API_ListDevices_RequestSyntax\nvar MAX_DEVICES = 60;\nvar MAX_AUTOSIGNIN_POLLING_MS = 3 * 60 * 1000;\n/**\n * Provide authentication steps\n */\nvar AuthClass = /** @class */ (function () {\n /**\n * Initialize Auth with AWS configurations\n * @param {Object} config - Configuration of the Auth\n */\n function AuthClass(config) {\n var _this = this;\n this.userPool = null;\n this.user = null;\n this.oAuthFlowInProgress = false;\n this.autoSignInInitiated = false;\n this.Credentials = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Credentials\"];\n this.wrapRefreshSessionCallback = function (callback) {\n var wrapped = function (error, data) {\n if (data) {\n dispatchAuthEvent('tokenRefresh', undefined, \"New token retrieved\");\n }\n else {\n dispatchAuthEvent('tokenRefresh_failure', error, \"Failed to retrieve new token\");\n }\n return callback(error, data);\n };\n return wrapped;\n }; // prettier-ignore\n this.configure(config);\n this.currentCredentials = this.currentCredentials.bind(this);\n this.currentUserCredentials = this.currentUserCredentials.bind(this);\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Hub\"].listen('auth', function (_a) {\n var payload = _a.payload;\n var event = payload.event;\n switch (event) {\n case 'signIn':\n _this._storage.setItem('amplify-signin-with-hostedUI', 'false');\n break;\n case 'signOut':\n _this._storage.removeItem('amplify-signin-with-hostedUI');\n break;\n case 'cognitoHostedUI':\n _this._storage.setItem('amplify-signin-with-hostedUI', 'true');\n break;\n }\n });\n }\n AuthClass.prototype.getModuleName = function () {\n return 'Auth';\n };\n AuthClass.prototype.configure = function (config) {\n var _this = this;\n if (!config)\n return this._config || {};\n logger.debug('configure Auth');\n var conf = Object.assign({}, this._config, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Parser\"].parseMobilehubConfig(config).Auth, config);\n this._config = conf;\n var _a = this._config, userPoolId = _a.userPoolId, userPoolWebClientId = _a.userPoolWebClientId, cookieStorage = _a.cookieStorage, oauth = _a.oauth, region = _a.region, identityPoolId = _a.identityPoolId, mandatorySignIn = _a.mandatorySignIn, refreshHandlers = _a.refreshHandlers, identityPoolRegion = _a.identityPoolRegion, clientMetadata = _a.clientMetadata, endpoint = _a.endpoint;\n if (!this._config.storage) {\n // backward compatability\n if (cookieStorage)\n this._storage = new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CookieStorage\"](cookieStorage);\n else {\n this._storage = config.ssr\n ? new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"UniversalStorage\"]()\n : new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"StorageHelper\"]().getStorage();\n }\n }\n else {\n if (!this._isValidAuthStorage(this._config.storage)) {\n logger.error('The storage in the Auth config is not valid!');\n throw new Error('Empty storage object');\n }\n this._storage = this._config.storage;\n }\n this._storageSync = Promise.resolve();\n if (typeof this._storage['sync'] === 'function') {\n this._storageSync = this._storage['sync']();\n }\n if (userPoolId) {\n var userPoolData = {\n UserPoolId: userPoolId,\n ClientId: userPoolWebClientId,\n endpoint: endpoint,\n };\n userPoolData.Storage = this._storage;\n this.userPool = new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoUserPool\"](userPoolData, this.wrapRefreshSessionCallback);\n }\n this.Credentials.configure({\n mandatorySignIn: mandatorySignIn,\n region: identityPoolRegion || region,\n userPoolId: userPoolId,\n identityPoolId: identityPoolId,\n refreshHandlers: refreshHandlers,\n storage: this._storage,\n });\n // initialize cognitoauth client if hosted ui options provided\n // to keep backward compatibility:\n var cognitoHostedUIConfig = oauth\n ? Object(_types__WEBPACK_IMPORTED_MODULE_0__[\"isCognitoHostedOpts\"])(this._config.oauth)\n ? oauth\n : oauth.awsCognito\n : undefined;\n if (cognitoHostedUIConfig) {\n var cognitoAuthParams = Object.assign({\n cognitoClientId: userPoolWebClientId,\n UserPoolId: userPoolId,\n domain: cognitoHostedUIConfig['domain'],\n scopes: cognitoHostedUIConfig['scope'],\n redirectSignIn: cognitoHostedUIConfig['redirectSignIn'],\n redirectSignOut: cognitoHostedUIConfig['redirectSignOut'],\n responseType: cognitoHostedUIConfig['responseType'],\n Storage: this._storage,\n urlOpener: cognitoHostedUIConfig['urlOpener'],\n clientMetadata: clientMetadata,\n }, cognitoHostedUIConfig['options']);\n this._oAuthHandler = new _OAuth_OAuth__WEBPACK_IMPORTED_MODULE_4__[\"default\"]({\n scopes: cognitoAuthParams.scopes,\n config: cognitoAuthParams,\n cognitoClientId: cognitoAuthParams.cognitoClientId,\n });\n // **NOTE** - Remove this in a future major release as it is a breaking change\n // Prevents _handleAuthResponse from being called multiple times in Expo\n // See https://github.com/aws-amplify/amplify-js/issues/4388\n var usedResponseUrls_1 = {};\n Object(_urlListener__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(function (_a) {\n var url = _a.url;\n if (usedResponseUrls_1[url]) {\n return;\n }\n usedResponseUrls_1[url] = true;\n _this._handleAuthResponse(url);\n });\n }\n dispatchAuthEvent('configured', null, \"The Auth category has been configured successfully\");\n if (!this.autoSignInInitiated &&\n typeof this._storage['getItem'] === 'function') {\n var pollingInitiated = this.isTrueStorageValue('amplify-polling-started');\n if (pollingInitiated) {\n dispatchAuthEvent('autoSignIn_failure', null, _types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].AutoSignInError);\n this._storage.removeItem('amplify-auto-sign-in');\n }\n this._storage.removeItem('amplify-polling-started');\n }\n return this._config;\n };\n /**\n * Sign up with username, password and other attributes like phone, email\n * @param {String | object} params - The user attributes used for signin\n * @param {String[]} restOfAttrs - for the backward compatability\n * @return - A promise resolves callback data if success\n */\n AuthClass.prototype.signUp = function (params) {\n var _this = this;\n var restOfAttrs = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n restOfAttrs[_i - 1] = arguments[_i];\n }\n var _a, _b, _c;\n if (!this.userPool) {\n return this.rejectNoUserPool();\n }\n var username = null;\n var password = null;\n var attributes = [];\n var validationData = null;\n var clientMetadata;\n var autoSignIn = { enabled: false };\n var autoSignInValidationData = {};\n var autoSignInClientMetaData = {};\n if (params && typeof params === 'string') {\n username = params;\n password = restOfAttrs ? restOfAttrs[0] : null;\n var email = restOfAttrs ? restOfAttrs[1] : null;\n var phone_number = restOfAttrs ? restOfAttrs[2] : null;\n if (email)\n attributes.push(new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoUserAttribute\"]({ Name: 'email', Value: email }));\n if (phone_number)\n attributes.push(new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoUserAttribute\"]({\n Name: 'phone_number',\n Value: phone_number,\n }));\n }\n else if (params && typeof params === 'object') {\n username = params['username'];\n password = params['password'];\n if (params && params.clientMetadata) {\n clientMetadata = params.clientMetadata;\n }\n else if (this._config.clientMetadata) {\n clientMetadata = this._config.clientMetadata;\n }\n var attrs_1 = params['attributes'];\n if (attrs_1) {\n Object.keys(attrs_1).map(function (key) {\n attributes.push(new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoUserAttribute\"]({ Name: key, Value: attrs_1[key] }));\n });\n }\n var validationDataObject_1 = params['validationData'];\n if (validationDataObject_1) {\n validationData = [];\n Object.keys(validationDataObject_1).map(function (key) {\n validationData.push(new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoUserAttribute\"]({\n Name: key,\n Value: validationDataObject_1[key],\n }));\n });\n }\n autoSignIn = (_a = params.autoSignIn) !== null && _a !== void 0 ? _a : { enabled: false };\n if (autoSignIn.enabled) {\n this._storage.setItem('amplify-auto-sign-in', 'true');\n autoSignInValidationData = (_b = autoSignIn.validationData) !== null && _b !== void 0 ? _b : {};\n autoSignInClientMetaData = (_c = autoSignIn.clientMetaData) !== null && _c !== void 0 ? _c : {};\n }\n }\n else {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].SignUpError);\n }\n if (!username) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyUsername);\n }\n if (!password) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyPassword);\n }\n logger.debug('signUp attrs:', attributes);\n logger.debug('signUp validation data:', validationData);\n return new Promise(function (resolve, reject) {\n _this.userPool.signUp(username, password, attributes, validationData, function (err, data) {\n if (err) {\n dispatchAuthEvent('signUp_failure', err, username + \" failed to signup\");\n reject(err);\n }\n else {\n dispatchAuthEvent('signUp', data, username + \" has signed up successfully\");\n if (autoSignIn.enabled) {\n _this.handleAutoSignIn(username, password, autoSignInValidationData, autoSignInClientMetaData, data);\n }\n resolve(data);\n }\n }, clientMetadata);\n });\n };\n AuthClass.prototype.handleAutoSignIn = function (username, password, validationData, clientMetadata, data) {\n this.autoSignInInitiated = true;\n var authDetails = new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"AuthenticationDetails\"]({\n Username: username,\n Password: password,\n ValidationData: validationData,\n ClientMetadata: clientMetadata,\n });\n if (data.userConfirmed) {\n this.signInAfterUserConfirmed(authDetails);\n }\n else if (this._config.signUpVerificationMethod === 'link') {\n this.handleLinkAutoSignIn(authDetails);\n }\n else {\n this.handleCodeAutoSignIn(authDetails);\n }\n };\n AuthClass.prototype.handleCodeAutoSignIn = function (authDetails) {\n var _this = this;\n var listenEvent = function (_a) {\n var payload = _a.payload;\n if (payload.event === 'confirmSignUp') {\n _this.signInAfterUserConfirmed(authDetails, listenEvent);\n }\n };\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Hub\"].listen('auth', listenEvent);\n };\n AuthClass.prototype.handleLinkAutoSignIn = function (authDetails) {\n var _this = this;\n this._storage.setItem('amplify-polling-started', 'true');\n var start = Date.now();\n var autoSignInPollingIntervalId = setInterval(function () {\n if (Date.now() - start > MAX_AUTOSIGNIN_POLLING_MS) {\n clearInterval(autoSignInPollingIntervalId);\n dispatchAuthEvent('autoSignIn_failure', null, 'Please confirm your account and use your credentials to sign in.');\n _this._storage.removeItem('amplify-auto-sign-in');\n }\n else {\n _this.signInAfterUserConfirmed(authDetails, null, autoSignInPollingIntervalId);\n }\n }, 5000);\n };\n AuthClass.prototype.signInAfterUserConfirmed = function (authDetails, listenEvent, autoSignInPollingIntervalId) {\n return __awaiter(this, void 0, void 0, function () {\n var user, error_1;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n user = this.createCognitoUser(authDetails.getUsername());\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, user.authenticateUser(authDetails, this.authCallbacks(user, function (value) {\n dispatchAuthEvent('autoSignIn', value, authDetails.getUsername() + \" has signed in successfully\");\n if (listenEvent) {\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Hub\"].remove('auth', listenEvent);\n }\n if (autoSignInPollingIntervalId) {\n clearInterval(autoSignInPollingIntervalId);\n _this._storage.removeItem('amplify-polling-started');\n }\n _this._storage.removeItem('amplify-auto-sign-in');\n }, function (error) {\n logger.error(error);\n _this._storage.removeItem('amplify-auto-sign-in');\n }))];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n error_1 = _a.sent();\n logger.error(error_1);\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Send the verification code to confirm sign up\n * @param {String} username - The username to be confirmed\n * @param {String} code - The verification code\n * @param {ConfirmSignUpOptions} options - other options for confirm signup\n * @return - A promise resolves callback data if success\n */\n AuthClass.prototype.confirmSignUp = function (username, code, options) {\n var _this = this;\n if (!this.userPool) {\n return this.rejectNoUserPool();\n }\n if (!username) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyUsername);\n }\n if (!code) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyCode);\n }\n var user = this.createCognitoUser(username);\n var forceAliasCreation = options && typeof options.forceAliasCreation === 'boolean'\n ? options.forceAliasCreation\n : true;\n var clientMetadata;\n if (options && options.clientMetadata) {\n clientMetadata = options.clientMetadata;\n }\n else if (this._config.clientMetadata) {\n clientMetadata = this._config.clientMetadata;\n }\n return new Promise(function (resolve, reject) {\n user.confirmRegistration(code, forceAliasCreation, function (err, data) {\n if (err) {\n reject(err);\n }\n else {\n dispatchAuthEvent('confirmSignUp', data, username + \" has been confirmed successfully\");\n var autoSignIn = _this.isTrueStorageValue('amplify-auto-sign-in');\n if (autoSignIn && !_this.autoSignInInitiated) {\n dispatchAuthEvent('autoSignIn_failure', null, _types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].AutoSignInError);\n _this._storage.removeItem('amplify-auto-sign-in');\n }\n resolve(data);\n }\n }, clientMetadata);\n });\n };\n AuthClass.prototype.isTrueStorageValue = function (value) {\n var item = this._storage.getItem(value);\n return item ? item === 'true' : false;\n };\n /**\n * Resend the verification code\n * @param {String} username - The username to be confirmed\n * @param {ClientMetadata} clientMetadata - Metadata to be passed to Cognito Lambda triggers\n * @return - A promise resolves code delivery details if successful\n */\n AuthClass.prototype.resendSignUp = function (username, clientMetadata) {\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n if (!this.userPool) {\n return this.rejectNoUserPool();\n }\n if (!username) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyUsername);\n }\n var user = this.createCognitoUser(username);\n return new Promise(function (resolve, reject) {\n user.resendConfirmationCode(function (err, data) {\n if (err) {\n reject(err);\n }\n else {\n resolve(data);\n }\n }, clientMetadata);\n });\n };\n /**\n * Sign in\n * @param {String | SignInOpts} usernameOrSignInOpts - The username to be signed in or the sign in options\n * @param {String} pw - The password of the username\n * @param {ClientMetaData} clientMetadata - Client metadata for custom workflows\n * @return - A promise resolves the CognitoUser\n */\n AuthClass.prototype.signIn = function (usernameOrSignInOpts, pw, clientMetadata) {\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n if (!this.userPool) {\n return this.rejectNoUserPool();\n }\n var username = null;\n var password = null;\n var validationData = {};\n // for backward compatibility\n if (typeof usernameOrSignInOpts === 'string') {\n username = usernameOrSignInOpts;\n password = pw;\n }\n else if (Object(_types__WEBPACK_IMPORTED_MODULE_0__[\"isUsernamePasswordOpts\"])(usernameOrSignInOpts)) {\n if (typeof pw !== 'undefined') {\n logger.warn('The password should be defined under the first parameter object!');\n }\n username = usernameOrSignInOpts.username;\n password = usernameOrSignInOpts.password;\n validationData = usernameOrSignInOpts.validationData;\n }\n else {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].InvalidUsername);\n }\n if (!username) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyUsername);\n }\n var authDetails = new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"AuthenticationDetails\"]({\n Username: username,\n Password: password,\n ValidationData: validationData,\n ClientMetadata: clientMetadata,\n });\n if (password) {\n return this.signInWithPassword(authDetails);\n }\n else {\n return this.signInWithoutPassword(authDetails);\n }\n };\n /**\n * Return an object with the authentication callbacks\n * @param {CognitoUser} user - the cognito user object\n * @param {} resolve - function called when resolving the current step\n * @param {} reject - function called when rejecting the current step\n * @return - an object with the callback methods for user authentication\n */\n AuthClass.prototype.authCallbacks = function (user, resolve, reject) {\n var _this = this;\n var that = this;\n return {\n onSuccess: function (session) { return __awaiter(_this, void 0, void 0, function () {\n var cred, e_1, currentUser, e_2;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug(session);\n delete user['challengeName'];\n delete user['challengeParam'];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, 5, 9]);\n return [4 /*yield*/, this.Credentials.clear()];\n case 2:\n _a.sent();\n return [4 /*yield*/, this.Credentials.set(session, 'session')];\n case 3:\n cred = _a.sent();\n logger.debug('succeed to get cognito credentials', cred);\n return [3 /*break*/, 9];\n case 4:\n e_1 = _a.sent();\n logger.debug('cannot get cognito credentials', e_1);\n return [3 /*break*/, 9];\n case 5:\n _a.trys.push([5, 7, , 8]);\n return [4 /*yield*/, this.currentUserPoolUser()];\n case 6:\n currentUser = _a.sent();\n that.user = currentUser;\n dispatchAuthEvent('signIn', currentUser, \"A user \" + user.getUsername() + \" has been signed in\");\n resolve(currentUser);\n return [3 /*break*/, 8];\n case 7:\n e_2 = _a.sent();\n logger.error('Failed to get the signed in user', e_2);\n reject(e_2);\n return [3 /*break*/, 8];\n case 8: return [7 /*endfinally*/];\n case 9: return [2 /*return*/];\n }\n });\n }); },\n onFailure: function (err) {\n logger.debug('signIn failure', err);\n dispatchAuthEvent('signIn_failure', err, user.getUsername() + \" failed to signin\");\n reject(err);\n },\n customChallenge: function (challengeParam) {\n logger.debug('signIn custom challenge answer required');\n user['challengeName'] = 'CUSTOM_CHALLENGE';\n user['challengeParam'] = challengeParam;\n resolve(user);\n },\n mfaRequired: function (challengeName, challengeParam) {\n logger.debug('signIn MFA required');\n user['challengeName'] = challengeName;\n user['challengeParam'] = challengeParam;\n resolve(user);\n },\n mfaSetup: function (challengeName, challengeParam) {\n logger.debug('signIn mfa setup', challengeName);\n user['challengeName'] = challengeName;\n user['challengeParam'] = challengeParam;\n resolve(user);\n },\n newPasswordRequired: function (userAttributes, requiredAttributes) {\n logger.debug('signIn new password');\n user['challengeName'] = 'NEW_PASSWORD_REQUIRED';\n user['challengeParam'] = {\n userAttributes: userAttributes,\n requiredAttributes: requiredAttributes,\n };\n resolve(user);\n },\n totpRequired: function (challengeName, challengeParam) {\n logger.debug('signIn totpRequired');\n user['challengeName'] = challengeName;\n user['challengeParam'] = challengeParam;\n resolve(user);\n },\n selectMFAType: function (challengeName, challengeParam) {\n logger.debug('signIn selectMFAType', challengeName);\n user['challengeName'] = challengeName;\n user['challengeParam'] = challengeParam;\n resolve(user);\n },\n };\n };\n /**\n * Sign in with a password\n * @private\n * @param {AuthenticationDetails} authDetails - the user sign in data\n * @return - A promise resolves the CognitoUser object if success or mfa required\n */\n AuthClass.prototype.signInWithPassword = function (authDetails) {\n var _this = this;\n if (this.pendingSignIn) {\n throw new Error('Pending sign-in attempt already in progress');\n }\n var user = this.createCognitoUser(authDetails.getUsername());\n this.pendingSignIn = new Promise(function (resolve, reject) {\n user.authenticateUser(authDetails, _this.authCallbacks(user, function (value) {\n _this.pendingSignIn = null;\n resolve(value);\n }, function (error) {\n _this.pendingSignIn = null;\n reject(error);\n }));\n });\n return this.pendingSignIn;\n };\n /**\n * Sign in without a password\n * @private\n * @param {AuthenticationDetails} authDetails - the user sign in data\n * @return - A promise resolves the CognitoUser object if success or mfa required\n */\n AuthClass.prototype.signInWithoutPassword = function (authDetails) {\n var _this = this;\n var user = this.createCognitoUser(authDetails.getUsername());\n user.setAuthenticationFlowType('CUSTOM_AUTH');\n return new Promise(function (resolve, reject) {\n user.initiateAuth(authDetails, _this.authCallbacks(user, resolve, reject));\n });\n };\n /**\n * This was previously used by an authenticated user to get MFAOptions,\n * but no longer returns a meaningful response. Refer to the documentation for\n * how to setup and use MFA: https://docs.amplify.aws/lib/auth/mfa/q/platform/js\n * @deprecated\n * @param {CognitoUser} user - the current user\n * @return - A promise resolves the current preferred mfa option if success\n */\n AuthClass.prototype.getMFAOptions = function (user) {\n return new Promise(function (res, rej) {\n user.getMFAOptions(function (err, mfaOptions) {\n if (err) {\n logger.debug('get MFA Options failed', err);\n rej(err);\n return;\n }\n logger.debug('get MFA options success', mfaOptions);\n res(mfaOptions);\n return;\n });\n });\n };\n /**\n * get preferred mfa method\n * @param {CognitoUser} user - the current cognito user\n * @param {GetPreferredMFAOpts} params - options for getting the current user preferred MFA\n */\n AuthClass.prototype.getPreferredMFA = function (user, params) {\n var _this = this;\n var that = this;\n return new Promise(function (res, rej) {\n var clientMetadata = _this._config.clientMetadata; // TODO: verify behavior if this is override during signIn\n var bypassCache = params ? params.bypassCache : false;\n user.getUserData(function (err, data) { return __awaiter(_this, void 0, void 0, function () {\n var cleanUpError_1, mfaType;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!err) return [3 /*break*/, 5];\n logger.debug('getting preferred mfa failed', err);\n if (!this.isSessionInvalid(err)) return [3 /*break*/, 4];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.cleanUpInvalidSession(user)];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n cleanUpError_1 = _a.sent();\n rej(new Error(\"Session is invalid due to: \" + err.message + \" and failed to clean up invalid session: \" + cleanUpError_1.message));\n return [2 /*return*/];\n case 4:\n rej(err);\n return [2 /*return*/];\n case 5:\n mfaType = that._getMfaTypeFromUserData(data);\n if (!mfaType) {\n rej('invalid MFA Type');\n return [2 /*return*/];\n }\n else {\n res(mfaType);\n return [2 /*return*/];\n }\n return [2 /*return*/];\n }\n });\n }); }, { bypassCache: bypassCache, clientMetadata: clientMetadata });\n });\n };\n AuthClass.prototype._getMfaTypeFromUserData = function (data) {\n var ret = null;\n var preferredMFA = data.PreferredMfaSetting;\n // if the user has used Auth.setPreferredMFA() to setup the mfa type\n // then the \"PreferredMfaSetting\" would exist in the response\n if (preferredMFA) {\n ret = preferredMFA;\n }\n else {\n // if mfaList exists but empty, then its noMFA\n var mfaList = data.UserMFASettingList;\n if (!mfaList) {\n // if SMS was enabled by using Auth.enableSMS(),\n // the response would contain MFAOptions\n // as for now Cognito only supports for SMS, so we will say it is 'SMS_MFA'\n // if it does not exist, then it should be NOMFA\n var MFAOptions = data.MFAOptions;\n if (MFAOptions) {\n ret = 'SMS_MFA';\n }\n else {\n ret = 'NOMFA';\n }\n }\n else if (mfaList.length === 0) {\n ret = 'NOMFA';\n }\n else {\n logger.debug('invalid case for getPreferredMFA', data);\n }\n }\n return ret;\n };\n AuthClass.prototype._getUserData = function (user, params) {\n var _this = this;\n return new Promise(function (res, rej) {\n user.getUserData(function (err, data) { return __awaiter(_this, void 0, void 0, function () {\n var cleanUpError_2;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!err) return [3 /*break*/, 5];\n logger.debug('getting user data failed', err);\n if (!this.isSessionInvalid(err)) return [3 /*break*/, 4];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.cleanUpInvalidSession(user)];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n cleanUpError_2 = _a.sent();\n rej(new Error(\"Session is invalid due to: \" + err.message + \" and failed to clean up invalid session: \" + cleanUpError_2.message));\n return [2 /*return*/];\n case 4:\n rej(err);\n return [2 /*return*/];\n case 5:\n res(data);\n _a.label = 6;\n case 6: return [2 /*return*/];\n }\n });\n }); }, params);\n });\n };\n /**\n * set preferred MFA method\n * @param {CognitoUser} user - the current Cognito user\n * @param {string} mfaMethod - preferred mfa method\n * @return - A promise resolve if success\n */\n AuthClass.prototype.setPreferredMFA = function (user, mfaMethod) {\n return __awaiter(this, void 0, void 0, function () {\n var clientMetadata, userData, smsMfaSettings, totpMfaSettings, _a, mfaList, currentMFAType, that;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n clientMetadata = this._config.clientMetadata;\n return [4 /*yield*/, this._getUserData(user, {\n bypassCache: true,\n clientMetadata: clientMetadata,\n })];\n case 1:\n userData = _b.sent();\n smsMfaSettings = null;\n totpMfaSettings = null;\n _a = mfaMethod;\n switch (_a) {\n case 'TOTP': return [3 /*break*/, 2];\n case 'SOFTWARE_TOKEN_MFA': return [3 /*break*/, 2];\n case 'SMS': return [3 /*break*/, 3];\n case 'SMS_MFA': return [3 /*break*/, 3];\n case 'NOMFA': return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n totpMfaSettings = {\n PreferredMfa: true,\n Enabled: true,\n };\n return [3 /*break*/, 7];\n case 3:\n smsMfaSettings = {\n PreferredMfa: true,\n Enabled: true,\n };\n return [3 /*break*/, 7];\n case 4:\n mfaList = userData['UserMFASettingList'];\n return [4 /*yield*/, this._getMfaTypeFromUserData(userData)];\n case 5:\n currentMFAType = _b.sent();\n if (currentMFAType === 'NOMFA') {\n return [2 /*return*/, Promise.resolve('No change for mfa type')];\n }\n else if (currentMFAType === 'SMS_MFA') {\n smsMfaSettings = {\n PreferredMfa: false,\n Enabled: false,\n };\n }\n else if (currentMFAType === 'SOFTWARE_TOKEN_MFA') {\n totpMfaSettings = {\n PreferredMfa: false,\n Enabled: false,\n };\n }\n else {\n return [2 /*return*/, this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].InvalidMFA)];\n }\n // if there is a UserMFASettingList in the response\n // we need to disable every mfa type in that list\n if (mfaList && mfaList.length !== 0) {\n // to disable SMS or TOTP if exists in that list\n mfaList.forEach(function (mfaType) {\n if (mfaType === 'SMS_MFA') {\n smsMfaSettings = {\n PreferredMfa: false,\n Enabled: false,\n };\n }\n else if (mfaType === 'SOFTWARE_TOKEN_MFA') {\n totpMfaSettings = {\n PreferredMfa: false,\n Enabled: false,\n };\n }\n });\n }\n return [3 /*break*/, 7];\n case 6:\n logger.debug('no validmfa method provided');\n return [2 /*return*/, this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].NoMFA)];\n case 7:\n that = this;\n return [2 /*return*/, new Promise(function (res, rej) {\n user.setUserMfaPreference(smsMfaSettings, totpMfaSettings, function (err, result) {\n if (err) {\n logger.debug('Set user mfa preference error', err);\n return rej(err);\n }\n logger.debug('Set user mfa success', result);\n logger.debug('Caching the latest user data into local');\n // cache the latest result into user data\n user.getUserData(function (err, data) { return __awaiter(_this, void 0, void 0, function () {\n var cleanUpError_3;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!err) return [3 /*break*/, 5];\n logger.debug('getting user data failed', err);\n if (!this.isSessionInvalid(err)) return [3 /*break*/, 4];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.cleanUpInvalidSession(user)];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n cleanUpError_3 = _a.sent();\n rej(new Error(\"Session is invalid due to: \" + err.message + \" and failed to clean up invalid session: \" + cleanUpError_3.message));\n return [2 /*return*/];\n case 4: return [2 /*return*/, rej(err)];\n case 5: return [2 /*return*/, res(result)];\n }\n });\n }); }, {\n bypassCache: true,\n clientMetadata: clientMetadata,\n });\n });\n })];\n }\n });\n });\n };\n /**\n * disable SMS\n * @deprecated\n * @param {CognitoUser} user - the current user\n * @return - A promise resolves is success\n */\n AuthClass.prototype.disableSMS = function (user) {\n return new Promise(function (res, rej) {\n user.disableMFA(function (err, data) {\n if (err) {\n logger.debug('disable mfa failed', err);\n rej(err);\n return;\n }\n logger.debug('disable mfa succeed', data);\n res(data);\n return;\n });\n });\n };\n /**\n * enable SMS\n * @deprecated\n * @param {CognitoUser} user - the current user\n * @return - A promise resolves is success\n */\n AuthClass.prototype.enableSMS = function (user) {\n return new Promise(function (res, rej) {\n user.enableMFA(function (err, data) {\n if (err) {\n logger.debug('enable mfa failed', err);\n rej(err);\n return;\n }\n logger.debug('enable mfa succeed', data);\n res(data);\n return;\n });\n });\n };\n /**\n * Setup TOTP\n * @param {CognitoUser} user - the current user\n * @return - A promise resolves with the secret code if success\n */\n AuthClass.prototype.setupTOTP = function (user) {\n return new Promise(function (res, rej) {\n user.associateSoftwareToken({\n onFailure: function (err) {\n logger.debug('associateSoftwareToken failed', err);\n rej(err);\n return;\n },\n associateSecretCode: function (secretCode) {\n logger.debug('associateSoftwareToken sucess', secretCode);\n res(secretCode);\n return;\n },\n });\n });\n };\n /**\n * verify TOTP setup\n * @param {CognitoUser} user - the current user\n * @param {string} challengeAnswer - challenge answer\n * @return - A promise resolves is success\n */\n AuthClass.prototype.verifyTotpToken = function (user, challengeAnswer) {\n logger.debug('verification totp token', user, challengeAnswer);\n return new Promise(function (res, rej) {\n user.verifySoftwareToken(challengeAnswer, 'My TOTP device', {\n onFailure: function (err) {\n logger.debug('verifyTotpToken failed', err);\n rej(err);\n return;\n },\n onSuccess: function (data) {\n dispatchAuthEvent('signIn', user, \"A user \" + user.getUsername() + \" has been signed in\");\n logger.debug('verifyTotpToken success', data);\n res(data);\n return;\n },\n });\n });\n };\n /**\n * Send MFA code to confirm sign in\n * @param {Object} user - The CognitoUser object\n * @param {String} code - The confirmation code\n */\n AuthClass.prototype.confirmSignIn = function (user, code, mfaType, clientMetadata) {\n var _this = this;\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n if (!code) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyCode);\n }\n var that = this;\n return new Promise(function (resolve, reject) {\n user.sendMFACode(code, {\n onSuccess: function (session) { return __awaiter(_this, void 0, void 0, function () {\n var cred, e_3;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug(session);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, 5, 6]);\n return [4 /*yield*/, this.Credentials.clear()];\n case 2:\n _a.sent();\n return [4 /*yield*/, this.Credentials.set(session, 'session')];\n case 3:\n cred = _a.sent();\n logger.debug('succeed to get cognito credentials', cred);\n return [3 /*break*/, 6];\n case 4:\n e_3 = _a.sent();\n logger.debug('cannot get cognito credentials', e_3);\n return [3 /*break*/, 6];\n case 5:\n that.user = user;\n dispatchAuthEvent('signIn', user, \"A user \" + user.getUsername() + \" has been signed in\");\n resolve(user);\n return [7 /*endfinally*/];\n case 6: return [2 /*return*/];\n }\n });\n }); },\n onFailure: function (err) {\n logger.debug('confirm signIn failure', err);\n reject(err);\n },\n }, mfaType, clientMetadata);\n });\n };\n AuthClass.prototype.completeNewPassword = function (user, password, requiredAttributes, clientMetadata) {\n var _this = this;\n if (requiredAttributes === void 0) { requiredAttributes = {}; }\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n if (!password) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyPassword);\n }\n var that = this;\n return new Promise(function (resolve, reject) {\n user.completeNewPasswordChallenge(password, requiredAttributes, {\n onSuccess: function (session) { return __awaiter(_this, void 0, void 0, function () {\n var cred, e_4;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug(session);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, 5, 6]);\n return [4 /*yield*/, this.Credentials.clear()];\n case 2:\n _a.sent();\n return [4 /*yield*/, this.Credentials.set(session, 'session')];\n case 3:\n cred = _a.sent();\n logger.debug('succeed to get cognito credentials', cred);\n return [3 /*break*/, 6];\n case 4:\n e_4 = _a.sent();\n logger.debug('cannot get cognito credentials', e_4);\n return [3 /*break*/, 6];\n case 5:\n that.user = user;\n dispatchAuthEvent('signIn', user, \"A user \" + user.getUsername() + \" has been signed in\");\n resolve(user);\n return [7 /*endfinally*/];\n case 6: return [2 /*return*/];\n }\n });\n }); },\n onFailure: function (err) {\n logger.debug('completeNewPassword failure', err);\n dispatchAuthEvent('completeNewPassword_failure', err, _this.user + \" failed to complete the new password flow\");\n reject(err);\n },\n mfaRequired: function (challengeName, challengeParam) {\n logger.debug('signIn MFA required');\n user['challengeName'] = challengeName;\n user['challengeParam'] = challengeParam;\n resolve(user);\n },\n mfaSetup: function (challengeName, challengeParam) {\n logger.debug('signIn mfa setup', challengeName);\n user['challengeName'] = challengeName;\n user['challengeParam'] = challengeParam;\n resolve(user);\n },\n totpRequired: function (challengeName, challengeParam) {\n logger.debug('signIn mfa setup', challengeName);\n user['challengeName'] = challengeName;\n user['challengeParam'] = challengeParam;\n resolve(user);\n },\n }, clientMetadata);\n });\n };\n /**\n * Send the answer to a custom challenge\n * @param {CognitoUser} user - The CognitoUser object\n * @param {String} challengeResponses - The confirmation code\n */\n AuthClass.prototype.sendCustomChallengeAnswer = function (user, challengeResponses, clientMetadata) {\n var _this = this;\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n if (!this.userPool) {\n return this.rejectNoUserPool();\n }\n if (!challengeResponses) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyChallengeResponse);\n }\n var that = this;\n return new Promise(function (resolve, reject) {\n user.sendCustomChallengeAnswer(challengeResponses, _this.authCallbacks(user, resolve, reject), clientMetadata);\n });\n };\n /**\n * Delete an authenticated users' attributes\n * @param {CognitoUser} - The currently logged in user object\n * @return {Promise}\n **/\n AuthClass.prototype.deleteUserAttributes = function (user, attributeNames) {\n var that = this;\n return new Promise(function (resolve, reject) {\n that.userSession(user).then(function (session) {\n user.deleteAttributes(attributeNames, function (err, result) {\n if (err) {\n return reject(err);\n }\n else {\n return resolve(result);\n }\n });\n });\n });\n };\n /**\n * Delete the current authenticated user\n * @return {Promise}\n **/\n // TODO: Check return type void\n AuthClass.prototype.deleteUser = function () {\n return __awaiter(this, void 0, void 0, function () {\n var e_5, isSignedInHostedUI;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this._storageSync];\n case 1:\n _a.sent();\n return [3 /*break*/, 3];\n case 2:\n e_5 = _a.sent();\n logger.debug('Failed to sync cache info into memory', e_5);\n throw new Error(e_5);\n case 3:\n isSignedInHostedUI = this._oAuthHandler &&\n this._storage.getItem('amplify-signin-with-hostedUI') === 'true';\n return [2 /*return*/, new Promise(function (res, rej) { return __awaiter(_this, void 0, void 0, function () {\n var user_1;\n var _this = this;\n return __generator(this, function (_a) {\n if (this.userPool) {\n user_1 = this.userPool.getCurrentUser();\n if (!user_1) {\n logger.debug('Failed to get user from user pool');\n return [2 /*return*/, rej(new Error('No current user.'))];\n }\n else {\n user_1.getSession(function (err, session) { return __awaiter(_this, void 0, void 0, function () {\n var cleanUpError_4;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!err) return [3 /*break*/, 5];\n logger.debug('Failed to get the user session', err);\n if (!this.isSessionInvalid(err)) return [3 /*break*/, 4];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.cleanUpInvalidSession(user_1)];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n cleanUpError_4 = _a.sent();\n rej(new Error(\"Session is invalid due to: \" + err.message + \" and failed to clean up invalid session: \" + cleanUpError_4.message));\n return [2 /*return*/];\n case 4: return [2 /*return*/, rej(err)];\n case 5:\n user_1.deleteUser(function (err, result) {\n if (err) {\n rej(err);\n }\n else {\n dispatchAuthEvent('userDeleted', result, 'The authenticated user has been deleted.');\n user_1.signOut();\n _this.user = null;\n try {\n _this.cleanCachedItems(); // clean aws credentials\n }\n catch (e) {\n // TODO: change to rejects in refactor\n logger.debug('failed to clear cached items');\n }\n if (isSignedInHostedUI) {\n _this.oAuthSignOutRedirect(res, rej);\n }\n else {\n dispatchAuthEvent('signOut', _this.user, \"A user has been signed out\");\n res(result);\n }\n }\n });\n _a.label = 6;\n case 6: return [2 /*return*/];\n }\n });\n }); });\n }\n }\n else {\n logger.debug('no Congito User pool');\n rej(new Error('Cognito User pool does not exist'));\n }\n return [2 /*return*/];\n });\n }); })];\n }\n });\n });\n };\n /**\n * Update an authenticated users' attributes\n * @param {CognitoUser} - The currently logged in user object\n * @return {Promise}\n **/\n AuthClass.prototype.updateUserAttributes = function (user, attributes, clientMetadata) {\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n var attributeList = [];\n var that = this;\n return new Promise(function (resolve, reject) {\n that.userSession(user).then(function (session) {\n for (var key in attributes) {\n if (key !== 'sub' && key.indexOf('_verified') < 0) {\n var attr = {\n Name: key,\n Value: attributes[key],\n };\n attributeList.push(attr);\n }\n }\n user.updateAttributes(attributeList, function (err, result) {\n if (err) {\n return reject(err);\n }\n else {\n return resolve(result);\n }\n }, clientMetadata);\n });\n });\n };\n /**\n * Return user attributes\n * @param {Object} user - The CognitoUser object\n * @return - A promise resolves to user attributes if success\n */\n AuthClass.prototype.userAttributes = function (user) {\n var _this = this;\n return new Promise(function (resolve, reject) {\n _this.userSession(user).then(function (session) {\n user.getUserAttributes(function (err, attributes) {\n if (err) {\n reject(err);\n }\n else {\n resolve(attributes);\n }\n });\n });\n });\n };\n AuthClass.prototype.verifiedContact = function (user) {\n var that = this;\n return this.userAttributes(user).then(function (attributes) {\n var attrs = that.attributesToObject(attributes);\n var unverified = {};\n var verified = {};\n if (attrs['email']) {\n if (attrs['email_verified']) {\n verified['email'] = attrs['email'];\n }\n else {\n unverified['email'] = attrs['email'];\n }\n }\n if (attrs['phone_number']) {\n if (attrs['phone_number_verified']) {\n verified['phone_number'] = attrs['phone_number'];\n }\n else {\n unverified['phone_number'] = attrs['phone_number'];\n }\n }\n return {\n verified: verified,\n unverified: unverified,\n };\n });\n };\n AuthClass.prototype.isErrorWithMessage = function (err) {\n return (typeof err === 'object' &&\n Object.prototype.hasOwnProperty.call(err, 'message'));\n };\n // Session revoked by another app\n AuthClass.prototype.isTokenRevokedError = function (err) {\n return (this.isErrorWithMessage(err) &&\n err.message === 'Access Token has been revoked');\n };\n AuthClass.prototype.isRefreshTokenRevokedError = function (err) {\n return (this.isErrorWithMessage(err) &&\n err.message === 'Refresh Token has been revoked');\n };\n AuthClass.prototype.isUserDisabledError = function (err) {\n return this.isErrorWithMessage(err) && err.message === 'User is disabled.';\n };\n AuthClass.prototype.isUserDoesNotExistError = function (err) {\n return (this.isErrorWithMessage(err) && err.message === 'User does not exist.');\n };\n AuthClass.prototype.isRefreshTokenExpiredError = function (err) {\n return (this.isErrorWithMessage(err) &&\n err.message === 'Refresh Token has expired');\n };\n AuthClass.prototype.isSignedInHostedUI = function () {\n return (this._oAuthHandler &&\n this._storage.getItem('amplify-signin-with-hostedUI') === 'true');\n };\n AuthClass.prototype.isSessionInvalid = function (err) {\n return (this.isUserDisabledError(err) ||\n this.isUserDoesNotExistError(err) ||\n this.isTokenRevokedError(err) ||\n this.isRefreshTokenRevokedError(err) ||\n this.isRefreshTokenExpiredError(err));\n };\n AuthClass.prototype.cleanUpInvalidSession = function (user) {\n return __awaiter(this, void 0, void 0, function () {\n var e_6;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n user.signOut();\n this.user = null;\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.cleanCachedItems()];\n case 2:\n _a.sent(); // clean aws credentials\n return [3 /*break*/, 4];\n case 3:\n e_6 = _a.sent();\n logger.debug('failed to clear cached items');\n return [3 /*break*/, 4];\n case 4:\n if (this.isSignedInHostedUI()) {\n return [2 /*return*/, new Promise(function (res, rej) {\n _this.oAuthSignOutRedirect(res, rej);\n })];\n }\n else {\n dispatchAuthEvent('signOut', this.user, \"A user has been signed out\");\n }\n return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Get current authenticated user\n * @return - A promise resolves to current authenticated CognitoUser if success\n */\n AuthClass.prototype.currentUserPoolUser = function (params) {\n var _this = this;\n if (!this.userPool) {\n return this.rejectNoUserPool();\n }\n return new Promise(function (res, rej) {\n _this._storageSync\n .then(function () { return __awaiter(_this, void 0, void 0, function () {\n var user, clientMetadata;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!this.isOAuthInProgress()) return [3 /*break*/, 2];\n logger.debug('OAuth signIn in progress, waiting for resolution...');\n return [4 /*yield*/, new Promise(function (res) {\n var timeoutId = setTimeout(function () {\n logger.debug('OAuth signIn in progress timeout');\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Hub\"].remove('auth', hostedUISignCallback);\n res();\n }, OAUTH_FLOW_MS_TIMEOUT);\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Hub\"].listen('auth', hostedUISignCallback);\n function hostedUISignCallback(_a) {\n var payload = _a.payload;\n var event = payload.event;\n if (event === 'cognitoHostedUI' ||\n event === 'cognitoHostedUI_failure') {\n logger.debug(\"OAuth signIn resolved: \" + event);\n clearTimeout(timeoutId);\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Hub\"].remove('auth', hostedUISignCallback);\n res();\n }\n }\n })];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n user = this.userPool.getCurrentUser();\n if (!user) {\n logger.debug('Failed to get user from user pool');\n rej('No current user');\n return [2 /*return*/];\n }\n clientMetadata = this._config.clientMetadata;\n // refresh the session if the session expired.\n user.getSession(function (err, session) { return __awaiter(_this, void 0, void 0, function () {\n var cleanUpError_5, bypassCache, clientMetadata, _a, scope;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!err) return [3 /*break*/, 5];\n logger.debug('Failed to get the user session', err);\n if (!this.isSessionInvalid(err)) return [3 /*break*/, 4];\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.cleanUpInvalidSession(user)];\n case 2:\n _b.sent();\n return [3 /*break*/, 4];\n case 3:\n cleanUpError_5 = _b.sent();\n rej(new Error(\"Session is invalid due to: \" + err.message + \" and failed to clean up invalid session: \" + cleanUpError_5.message));\n return [2 /*return*/];\n case 4:\n rej(err);\n return [2 /*return*/];\n case 5:\n bypassCache = params ? params.bypassCache : false;\n if (!bypassCache) return [3 /*break*/, 7];\n return [4 /*yield*/, this.Credentials.clear()];\n case 6:\n _b.sent();\n _b.label = 7;\n case 7:\n clientMetadata = this._config.clientMetadata;\n _a = session.getAccessToken().decodePayload().scope, scope = _a === void 0 ? '' : _a;\n if (scope.split(' ').includes(USER_ADMIN_SCOPE)) {\n user.getUserData(function (err, data) { return __awaiter(_this, void 0, void 0, function () {\n var cleanUpError_6, preferredMFA, attributeList, i, attribute, userAttribute, attributes;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!err) return [3 /*break*/, 7];\n logger.debug('getting user data failed', err);\n if (!this.isSessionInvalid(err)) return [3 /*break*/, 5];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.cleanUpInvalidSession(user)];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n cleanUpError_6 = _a.sent();\n rej(new Error(\"Session is invalid due to: \" + err.message + \" and failed to clean up invalid session: \" + cleanUpError_6.message));\n return [2 /*return*/];\n case 4:\n rej(err);\n return [3 /*break*/, 6];\n case 5:\n res(user);\n _a.label = 6;\n case 6: return [2 /*return*/];\n case 7:\n preferredMFA = data.PreferredMfaSetting || 'NOMFA';\n attributeList = [];\n for (i = 0; i < data.UserAttributes.length; i++) {\n attribute = {\n Name: data.UserAttributes[i].Name,\n Value: data.UserAttributes[i].Value,\n };\n userAttribute = new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoUserAttribute\"](attribute);\n attributeList.push(userAttribute);\n }\n attributes = this.attributesToObject(attributeList);\n Object.assign(user, { attributes: attributes, preferredMFA: preferredMFA });\n return [2 /*return*/, res(user)];\n }\n });\n }); }, { bypassCache: bypassCache, clientMetadata: clientMetadata });\n }\n else {\n logger.debug(\"Unable to get the user data because the \" + USER_ADMIN_SCOPE + \" \" +\n \"is not in the scopes of the access token\");\n return [2 /*return*/, res(user)];\n }\n return [2 /*return*/];\n }\n });\n }); }, { clientMetadata: clientMetadata });\n return [2 /*return*/];\n }\n });\n }); })\n .catch(function (e) {\n logger.debug('Failed to sync cache info into memory', e);\n return rej(e);\n });\n });\n };\n AuthClass.prototype.isOAuthInProgress = function () {\n return this.oAuthFlowInProgress;\n };\n /**\n * Get current authenticated user\n * @param {CurrentUserOpts} - options for getting the current user\n * @return - A promise resolves to current authenticated CognitoUser if success\n */\n AuthClass.prototype.currentAuthenticatedUser = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var federatedUser, e_7, federatedInfo, user, e_8;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('getting current authenticated user');\n federatedUser = null;\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this._storageSync];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n e_7 = _a.sent();\n logger.debug('Failed to sync cache info into memory', e_7);\n throw e_7;\n case 4:\n try {\n federatedInfo = JSON.parse(this._storage.getItem('aws-amplify-federatedInfo'));\n if (federatedInfo) {\n federatedUser = __assign(__assign({}, federatedInfo.user), { token: federatedInfo.token });\n }\n }\n catch (e) {\n logger.debug('cannot load federated user from auth storage');\n }\n if (!federatedUser) return [3 /*break*/, 5];\n this.user = federatedUser;\n logger.debug('get current authenticated federated user', this.user);\n return [2 /*return*/, this.user];\n case 5:\n logger.debug('get current authenticated userpool user');\n user = null;\n _a.label = 6;\n case 6:\n _a.trys.push([6, 8, , 9]);\n return [4 /*yield*/, this.currentUserPoolUser(params)];\n case 7:\n user = _a.sent();\n return [3 /*break*/, 9];\n case 8:\n e_8 = _a.sent();\n if (e_8 === 'No userPool') {\n logger.error('Cannot get the current user because the user pool is missing. ' +\n 'Please make sure the Auth module is configured with a valid Cognito User Pool ID');\n }\n logger.debug('The user is not authenticated by the error', e_8);\n return [2 /*return*/, Promise.reject('The user is not authenticated')];\n case 9:\n this.user = user;\n return [2 /*return*/, this.user];\n }\n });\n });\n };\n /**\n * Get current user's session\n * @return - A promise resolves to session object if success\n */\n AuthClass.prototype.currentSession = function () {\n var that = this;\n logger.debug('Getting current session');\n // Purposely not calling the reject method here because we don't need a console error\n if (!this.userPool) {\n return Promise.reject(new Error('No User Pool in the configuration.'));\n }\n return new Promise(function (res, rej) {\n that\n .currentUserPoolUser()\n .then(function (user) {\n that\n .userSession(user)\n .then(function (session) {\n res(session);\n return;\n })\n .catch(function (e) {\n logger.debug('Failed to get the current session', e);\n rej(e);\n return;\n });\n })\n .catch(function (e) {\n logger.debug('Failed to get the current user', e);\n rej(e);\n return;\n });\n });\n };\n /**\n * Get the corresponding user session\n * @param {Object} user - The CognitoUser object\n * @return - A promise resolves to the session\n */\n AuthClass.prototype.userSession = function (user) {\n var _this = this;\n if (!user) {\n logger.debug('the user is null');\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].NoUserSession);\n }\n var clientMetadata = this._config.clientMetadata; // TODO: verify behavior if this is override during signIn\n return new Promise(function (res, rej) {\n logger.debug('Getting the session from this user:', user);\n user.getSession(function (err, session) { return __awaiter(_this, void 0, void 0, function () {\n var cleanUpError_7;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!err) return [3 /*break*/, 5];\n logger.debug('Failed to get the session from user', user);\n if (!this.isSessionInvalid(err)) return [3 /*break*/, 4];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.cleanUpInvalidSession(user)];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n cleanUpError_7 = _a.sent();\n rej(new Error(\"Session is invalid due to: \" + err.message + \" and failed to clean up invalid session: \" + cleanUpError_7.message));\n return [2 /*return*/];\n case 4:\n rej(err);\n return [2 /*return*/];\n case 5:\n logger.debug('Succeed to get the user session', session);\n res(session);\n return [2 /*return*/];\n }\n });\n }); }, { clientMetadata: clientMetadata });\n });\n };\n /**\n * Get authenticated credentials of current user.\n * @return - A promise resolves to be current user's credentials\n */\n AuthClass.prototype.currentUserCredentials = function () {\n return __awaiter(this, void 0, void 0, function () {\n var e_9, federatedInfo;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('Getting current user credentials');\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this._storageSync];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n e_9 = _a.sent();\n logger.debug('Failed to sync cache info into memory', e_9);\n throw e_9;\n case 4:\n federatedInfo = null;\n try {\n federatedInfo = JSON.parse(this._storage.getItem('aws-amplify-federatedInfo'));\n }\n catch (e) {\n logger.debug('failed to get or parse item aws-amplify-federatedInfo', e);\n }\n if (federatedInfo) {\n // refresh the jwt token here if necessary\n return [2 /*return*/, this.Credentials.refreshFederatedToken(federatedInfo)];\n }\n else {\n return [2 /*return*/, this.currentSession()\n .then(function (session) {\n logger.debug('getting session success', session);\n return _this.Credentials.set(session, 'session');\n })\n .catch(function () {\n logger.debug('getting guest credentials');\n return _this.Credentials.set(null, 'guest');\n })];\n }\n return [2 /*return*/];\n }\n });\n });\n };\n AuthClass.prototype.currentCredentials = function () {\n logger.debug('getting current credentials');\n return this.Credentials.get();\n };\n /**\n * Initiate an attribute confirmation request\n * @param {Object} user - The CognitoUser\n * @param {Object} attr - The attributes to be verified\n * @return - A promise resolves to callback data if success\n */\n AuthClass.prototype.verifyUserAttribute = function (user, attr, clientMetadata) {\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n return new Promise(function (resolve, reject) {\n user.getAttributeVerificationCode(attr, {\n onSuccess: function (success) {\n return resolve(success);\n },\n onFailure: function (err) {\n return reject(err);\n },\n }, clientMetadata);\n });\n };\n /**\n * Confirm an attribute using a confirmation code\n * @param {Object} user - The CognitoUser\n * @param {Object} attr - The attribute to be verified\n * @param {String} code - The confirmation code\n * @return - A promise resolves to callback data if success\n */\n AuthClass.prototype.verifyUserAttributeSubmit = function (user, attr, code) {\n if (!code) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyCode);\n }\n return new Promise(function (resolve, reject) {\n user.verifyAttribute(attr, code, {\n onSuccess: function (data) {\n resolve(data);\n return;\n },\n onFailure: function (err) {\n reject(err);\n return;\n },\n });\n });\n };\n AuthClass.prototype.verifyCurrentUserAttribute = function (attr) {\n var that = this;\n return that\n .currentUserPoolUser()\n .then(function (user) { return that.verifyUserAttribute(user, attr); });\n };\n /**\n * Confirm current user's attribute using a confirmation code\n * @param {Object} attr - The attribute to be verified\n * @param {String} code - The confirmation code\n * @return - A promise resolves to callback data if success\n */\n AuthClass.prototype.verifyCurrentUserAttributeSubmit = function (attr, code) {\n var that = this;\n return that\n .currentUserPoolUser()\n .then(function (user) { return that.verifyUserAttributeSubmit(user, attr, code); });\n };\n AuthClass.prototype.cognitoIdentitySignOut = function (opts, user) {\n return __awaiter(this, void 0, void 0, function () {\n var e_10, isSignedInHostedUI;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this._storageSync];\n case 1:\n _a.sent();\n return [3 /*break*/, 3];\n case 2:\n e_10 = _a.sent();\n logger.debug('Failed to sync cache info into memory', e_10);\n throw e_10;\n case 3:\n isSignedInHostedUI = this._oAuthHandler &&\n this._storage.getItem('amplify-signin-with-hostedUI') === 'true';\n return [2 /*return*/, new Promise(function (res, rej) {\n if (opts && opts.global) {\n logger.debug('user global sign out', user);\n // in order to use global signout\n // we must validate the user as an authenticated user by using getSession\n var clientMetadata = _this._config.clientMetadata; // TODO: verify behavior if this is override during signIn\n user.getSession(function (err, result) { return __awaiter(_this, void 0, void 0, function () {\n var cleanUpError_8;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!err) return [3 /*break*/, 5];\n logger.debug('failed to get the user session', err);\n if (!this.isSessionInvalid(err)) return [3 /*break*/, 4];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.cleanUpInvalidSession(user)];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n cleanUpError_8 = _a.sent();\n rej(new Error(\"Session is invalid due to: \" + err.message + \" and failed to clean up invalid session: \" + cleanUpError_8.message));\n return [2 /*return*/];\n case 4: return [2 /*return*/, rej(err)];\n case 5:\n user.globalSignOut({\n onSuccess: function (data) {\n logger.debug('global sign out success');\n if (isSignedInHostedUI) {\n _this.oAuthSignOutRedirect(res, rej);\n }\n else {\n return res();\n }\n },\n onFailure: function (err) {\n logger.debug('global sign out failed', err);\n return rej(err);\n },\n });\n return [2 /*return*/];\n }\n });\n }); }, { clientMetadata: clientMetadata });\n }\n else {\n logger.debug('user sign out', user);\n user.signOut(function () {\n if (isSignedInHostedUI) {\n _this.oAuthSignOutRedirect(res, rej);\n }\n else {\n return res();\n }\n });\n }\n })];\n }\n });\n });\n };\n AuthClass.prototype.oAuthSignOutRedirect = function (resolve, reject) {\n var isBrowser = Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"browserOrNode\"])().isBrowser;\n if (isBrowser) {\n this.oAuthSignOutRedirectOrReject(reject);\n }\n else {\n this.oAuthSignOutAndResolve(resolve);\n }\n };\n AuthClass.prototype.oAuthSignOutAndResolve = function (resolve) {\n this._oAuthHandler.signOut();\n resolve();\n };\n AuthClass.prototype.oAuthSignOutRedirectOrReject = function (reject) {\n this._oAuthHandler.signOut(); // this method redirects url\n // App should be redirected to another url otherwise it will reject\n setTimeout(function () { return reject(Error('Signout timeout fail')); }, 3000);\n };\n /**\n * Sign out method\n * @\n * @return - A promise resolved if success\n */\n AuthClass.prototype.signOut = function (opts) {\n return __awaiter(this, void 0, void 0, function () {\n var e_11, user;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.cleanCachedItems()];\n case 1:\n _a.sent();\n return [3 /*break*/, 3];\n case 2:\n e_11 = _a.sent();\n logger.debug('failed to clear cached items');\n return [3 /*break*/, 3];\n case 3:\n if (!this.userPool) return [3 /*break*/, 7];\n user = this.userPool.getCurrentUser();\n if (!user) return [3 /*break*/, 5];\n return [4 /*yield*/, this.cognitoIdentitySignOut(opts, user)];\n case 4:\n _a.sent();\n return [3 /*break*/, 6];\n case 5:\n logger.debug('no current Cognito user');\n _a.label = 6;\n case 6: return [3 /*break*/, 8];\n case 7:\n logger.debug('no Cognito User pool');\n _a.label = 8;\n case 8:\n /**\n * Note for future refactor - no reliable way to get username with\n * Cognito User Pools vs Identity when federating with Social Providers\n * This is why we need a well structured session object that can be inspected\n * and information passed back in the message below for Hub dispatch\n */\n dispatchAuthEvent('signOut', this.user, \"A user has been signed out\");\n this.user = null;\n return [2 /*return*/];\n }\n });\n });\n };\n AuthClass.prototype.cleanCachedItems = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: \n // clear cognito cached item\n return [4 /*yield*/, this.Credentials.clear()];\n case 1:\n // clear cognito cached item\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Change a password for an authenticated user\n * @param {Object} user - The CognitoUser object\n * @param {String} oldPassword - the current password\n * @param {String} newPassword - the requested new password\n * @return - A promise resolves if success\n */\n AuthClass.prototype.changePassword = function (user, oldPassword, newPassword, clientMetadata) {\n var _this = this;\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n return new Promise(function (resolve, reject) {\n _this.userSession(user).then(function (session) {\n user.changePassword(oldPassword, newPassword, function (err, data) {\n if (err) {\n logger.debug('change password failure', err);\n return reject(err);\n }\n else {\n return resolve(data);\n }\n }, clientMetadata);\n });\n });\n };\n /**\n * Initiate a forgot password request\n * @param {String} username - the username to change password\n * @return - A promise resolves if success\n */\n AuthClass.prototype.forgotPassword = function (username, clientMetadata) {\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n if (!this.userPool) {\n return this.rejectNoUserPool();\n }\n if (!username) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyUsername);\n }\n var user = this.createCognitoUser(username);\n return new Promise(function (resolve, reject) {\n user.forgotPassword({\n onSuccess: function () {\n resolve();\n return;\n },\n onFailure: function (err) {\n logger.debug('forgot password failure', err);\n dispatchAuthEvent('forgotPassword_failure', err, username + \" forgotPassword failed\");\n reject(err);\n return;\n },\n inputVerificationCode: function (data) {\n dispatchAuthEvent('forgotPassword', user, username + \" has initiated forgot password flow\");\n resolve(data);\n return;\n },\n }, clientMetadata);\n });\n };\n /**\n * Confirm a new password using a confirmation Code\n * @param {String} username - The username\n * @param {String} code - The confirmation code\n * @param {String} password - The new password\n * @return - A promise that resolves if success\n */\n AuthClass.prototype.forgotPasswordSubmit = function (username, code, password, clientMetadata) {\n if (clientMetadata === void 0) { clientMetadata = this._config.clientMetadata; }\n if (!this.userPool) {\n return this.rejectNoUserPool();\n }\n if (!username) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyUsername);\n }\n if (!code) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyCode);\n }\n if (!password) {\n return this.rejectAuthError(_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].EmptyPassword);\n }\n var user = this.createCognitoUser(username);\n return new Promise(function (resolve, reject) {\n user.confirmPassword(code, password, {\n onSuccess: function (success) {\n dispatchAuthEvent('forgotPasswordSubmit', user, username + \" forgotPasswordSubmit successful\");\n resolve(success);\n return;\n },\n onFailure: function (err) {\n dispatchAuthEvent('forgotPasswordSubmit_failure', err, username + \" forgotPasswordSubmit failed\");\n reject(err);\n return;\n },\n }, clientMetadata);\n });\n };\n /**\n * Get user information\n * @async\n * @return {Object }- current User's information\n */\n AuthClass.prototype.currentUserInfo = function () {\n return __awaiter(this, void 0, void 0, function () {\n var source, user, attributes, userAttrs, credentials, e_12, info, err_1, user;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n source = this.Credentials.getCredSource();\n if (!(!source || source === 'aws' || source === 'userPool')) return [3 /*break*/, 9];\n return [4 /*yield*/, this.currentUserPoolUser().catch(function (err) {\n return logger.error(err);\n })];\n case 1:\n user = _a.sent();\n if (!user) {\n return [2 /*return*/, null];\n }\n _a.label = 2;\n case 2:\n _a.trys.push([2, 8, , 9]);\n return [4 /*yield*/, this.userAttributes(user)];\n case 3:\n attributes = _a.sent();\n userAttrs = this.attributesToObject(attributes);\n credentials = null;\n _a.label = 4;\n case 4:\n _a.trys.push([4, 6, , 7]);\n return [4 /*yield*/, this.currentCredentials()];\n case 5:\n credentials = _a.sent();\n return [3 /*break*/, 7];\n case 6:\n e_12 = _a.sent();\n logger.debug('Failed to retrieve credentials while getting current user info', e_12);\n return [3 /*break*/, 7];\n case 7:\n info = {\n id: credentials ? credentials.identityId : undefined,\n username: user.getUsername(),\n attributes: userAttrs,\n };\n return [2 /*return*/, info];\n case 8:\n err_1 = _a.sent();\n logger.error('currentUserInfo error', err_1);\n return [2 /*return*/, {}];\n case 9:\n if (source === 'federated') {\n user = this.user;\n return [2 /*return*/, user ? user : {}];\n }\n return [2 /*return*/];\n }\n });\n });\n };\n AuthClass.prototype.federatedSignIn = function (providerOrOptions, response, user) {\n return __awaiter(this, void 0, void 0, function () {\n var options, provider, customState, client_id, redirect_uri, provider, loggedInUser, token, identity_id, expires_at, credentials, currentUser;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!this._config.identityPoolId && !this._config.userPoolId) {\n throw new Error(\"Federation requires either a User Pool or Identity Pool in config\");\n }\n // Ensure backwards compatability\n if (typeof providerOrOptions === 'undefined') {\n if (this._config.identityPoolId && !this._config.userPoolId) {\n throw new Error(\"Federation with Identity Pools requires tokens passed as arguments\");\n }\n }\n if (!(Object(_types__WEBPACK_IMPORTED_MODULE_0__[\"isFederatedSignInOptions\"])(providerOrOptions) ||\n Object(_types__WEBPACK_IMPORTED_MODULE_0__[\"isFederatedSignInOptionsCustom\"])(providerOrOptions) ||\n Object(_types__WEBPACK_IMPORTED_MODULE_0__[\"hasCustomState\"])(providerOrOptions) ||\n typeof providerOrOptions === 'undefined')) return [3 /*break*/, 1];\n options = providerOrOptions || {\n provider: _types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"CognitoHostedUIIdentityProvider\"].Cognito,\n };\n provider = Object(_types__WEBPACK_IMPORTED_MODULE_0__[\"isFederatedSignInOptions\"])(options)\n ? options.provider\n : options.customProvider;\n customState = Object(_types__WEBPACK_IMPORTED_MODULE_0__[\"isFederatedSignInOptions\"])(options)\n ? options.customState\n : options.customState;\n if (this._config.userPoolId) {\n client_id = Object(_types__WEBPACK_IMPORTED_MODULE_0__[\"isCognitoHostedOpts\"])(this._config.oauth)\n ? this._config.userPoolWebClientId\n : this._config.oauth.clientID;\n redirect_uri = Object(_types__WEBPACK_IMPORTED_MODULE_0__[\"isCognitoHostedOpts\"])(this._config.oauth)\n ? this._config.oauth.redirectSignIn\n : this._config.oauth.redirectUri;\n this._oAuthHandler.oauthSignIn(this._config.oauth.responseType, this._config.oauth.domain, redirect_uri, client_id, provider, customState);\n }\n return [3 /*break*/, 4];\n case 1:\n provider = providerOrOptions;\n // To check if the user is already logged in\n try {\n loggedInUser = JSON.stringify(JSON.parse(this._storage.getItem('aws-amplify-federatedInfo')).user);\n if (loggedInUser) {\n logger.warn(\"There is already a signed in user: \" + loggedInUser + \" in your app.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tYou should not call Auth.federatedSignIn method again as it may cause unexpected behavior.\");\n }\n }\n catch (e) { }\n token = response.token, identity_id = response.identity_id, expires_at = response.expires_at;\n return [4 /*yield*/, this.Credentials.set({ provider: provider, token: token, identity_id: identity_id, user: user, expires_at: expires_at }, 'federation')];\n case 2:\n credentials = _a.sent();\n return [4 /*yield*/, this.currentAuthenticatedUser()];\n case 3:\n currentUser = _a.sent();\n dispatchAuthEvent('signIn', currentUser, \"A user \" + currentUser.username + \" has been signed in\");\n logger.debug('federated sign in credentials', credentials);\n return [2 /*return*/, credentials];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Used to complete the OAuth flow with or without the Cognito Hosted UI\n * @param {String} URL - optional parameter for customers to pass in the response URL\n */\n AuthClass.prototype._handleAuthResponse = function (URL) {\n return __awaiter(this, void 0, void 0, function () {\n var currentUrl, hasCodeOrError, hasTokenOrError, _a, accessToken, idToken, refreshToken, state, session, credentials, isCustomStateIncluded, currentUser, customState, err_2;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (this.oAuthFlowInProgress) {\n logger.debug(\"Skipping URL \" + URL + \" current flow in progress\");\n return [2 /*return*/];\n }\n _b.label = 1;\n case 1:\n _b.trys.push([1, , 8, 9]);\n this.oAuthFlowInProgress = true;\n if (!this._config.userPoolId) {\n throw new Error(\"OAuth responses require a User Pool defined in config\");\n }\n dispatchAuthEvent('parsingCallbackUrl', { url: URL }, \"The callback url is being parsed\");\n currentUrl = URL || (Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"browserOrNode\"])().isBrowser ? window.location.href : '');\n hasCodeOrError = !!(Object(url__WEBPACK_IMPORTED_MODULE_3__[\"parse\"])(currentUrl).query || '')\n .split('&')\n .map(function (entry) { return entry.split('='); })\n .find(function (_a) {\n var _b = __read(_a, 1), k = _b[0];\n return k === 'code' || k === 'error';\n });\n hasTokenOrError = !!(Object(url__WEBPACK_IMPORTED_MODULE_3__[\"parse\"])(currentUrl).hash || '#')\n .substr(1)\n .split('&')\n .map(function (entry) { return entry.split('='); })\n .find(function (_a) {\n var _b = __read(_a, 1), k = _b[0];\n return k === 'access_token' || k === 'error';\n });\n if (!(hasCodeOrError || hasTokenOrError)) return [3 /*break*/, 7];\n this._storage.setItem('amplify-redirected-from-hosted-ui', 'true');\n _b.label = 2;\n case 2:\n _b.trys.push([2, 6, , 7]);\n return [4 /*yield*/, this._oAuthHandler.handleAuthResponse(currentUrl)];\n case 3:\n _a = _b.sent(), accessToken = _a.accessToken, idToken = _a.idToken, refreshToken = _a.refreshToken, state = _a.state;\n session = new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoUserSession\"]({\n IdToken: new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoIdToken\"]({ IdToken: idToken }),\n RefreshToken: new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoRefreshToken\"]({\n RefreshToken: refreshToken,\n }),\n AccessToken: new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoAccessToken\"]({\n AccessToken: accessToken,\n }),\n });\n credentials = void 0;\n if (!this._config.identityPoolId) return [3 /*break*/, 5];\n return [4 /*yield*/, this.Credentials.set(session, 'session')];\n case 4:\n credentials = _b.sent();\n logger.debug('AWS credentials', credentials);\n _b.label = 5;\n case 5:\n isCustomStateIncluded = /-/.test(state);\n currentUser = this.createCognitoUser(session.getIdToken().decodePayload()['cognito:username']);\n // This calls cacheTokens() in Cognito SDK\n currentUser.setSignInUserSession(session);\n if (window && typeof window.history !== 'undefined') {\n window.history.replaceState({}, null, this._config.oauth.redirectSignIn);\n }\n dispatchAuthEvent('signIn', currentUser, \"A user \" + currentUser.getUsername() + \" has been signed in\");\n dispatchAuthEvent('cognitoHostedUI', currentUser, \"A user \" + currentUser.getUsername() + \" has been signed in via Cognito Hosted UI\");\n if (isCustomStateIncluded) {\n customState = state.split('-').splice(1).join('-');\n dispatchAuthEvent('customOAuthState', Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"urlSafeDecode\"])(customState), \"State for user \" + currentUser.getUsername());\n }\n //#endregion\n return [2 /*return*/, credentials];\n case 6:\n err_2 = _b.sent();\n logger.debug('Error in cognito hosted auth response', err_2);\n // Just like a successful handling of `?code`, replace the window history to \"dispose\" of the `code`.\n // Otherwise, reloading the page will throw errors as the `code` has already been spent.\n if (window && typeof window.history !== 'undefined') {\n window.history.replaceState({}, null, this._config.oauth.redirectSignIn);\n }\n dispatchAuthEvent('signIn_failure', err_2, \"The OAuth response flow failed\");\n dispatchAuthEvent('cognitoHostedUI_failure', err_2, \"A failure occurred when returning to the Cognito Hosted UI\");\n dispatchAuthEvent('customState_failure', err_2, \"A failure occurred when returning state\");\n return [3 /*break*/, 7];\n case 7: return [3 /*break*/, 9];\n case 8:\n this.oAuthFlowInProgress = false;\n return [7 /*endfinally*/];\n case 9: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Compact version of credentials\n * @param {Object} credentials\n * @return {Object} - Credentials\n */\n AuthClass.prototype.essentialCredentials = function (credentials) {\n return {\n accessKeyId: credentials.accessKeyId,\n sessionToken: credentials.sessionToken,\n secretAccessKey: credentials.secretAccessKey,\n identityId: credentials.identityId,\n authenticated: credentials.authenticated,\n };\n };\n AuthClass.prototype.attributesToObject = function (attributes) {\n var _this = this;\n var obj = {};\n if (attributes) {\n attributes.map(function (attribute) {\n if (attribute.Name === 'email_verified' ||\n attribute.Name === 'phone_number_verified') {\n obj[attribute.Name] =\n _this.isTruthyString(attribute.Value) || attribute.Value === true;\n }\n else {\n obj[attribute.Name] = attribute.Value;\n }\n });\n }\n return obj;\n };\n AuthClass.prototype.isTruthyString = function (value) {\n return (typeof value.toLowerCase === 'function' && value.toLowerCase() === 'true');\n };\n AuthClass.prototype.createCognitoUser = function (username) {\n var userData = {\n Username: username,\n Pool: this.userPool,\n };\n userData.Storage = this._storage;\n var authenticationFlowType = this._config.authenticationFlowType;\n var user = new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoUser\"](userData);\n if (authenticationFlowType) {\n user.setAuthenticationFlowType(authenticationFlowType);\n }\n return user;\n };\n AuthClass.prototype._isValidAuthStorage = function (obj) {\n // We need to check if the obj has the functions of Storage\n return (!!obj &&\n typeof obj.getItem === 'function' &&\n typeof obj.setItem === 'function' &&\n typeof obj.removeItem === 'function' &&\n typeof obj.clear === 'function');\n };\n AuthClass.prototype.noUserPoolErrorHandler = function (config) {\n if (config) {\n if (!config.userPoolId || !config.identityPoolId) {\n return _types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].MissingAuthConfig;\n }\n }\n return _types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].NoConfig;\n };\n AuthClass.prototype.rejectAuthError = function (type) {\n return Promise.reject(new _Errors__WEBPACK_IMPORTED_MODULE_6__[\"AuthError\"](type));\n };\n AuthClass.prototype.rejectNoUserPool = function () {\n var type = this.noUserPoolErrorHandler(this._config);\n return Promise.reject(new _Errors__WEBPACK_IMPORTED_MODULE_6__[\"NoUserPoolError\"](type));\n };\n AuthClass.prototype.rememberDevice = function () {\n return __awaiter(this, void 0, void 0, function () {\n var currUser, error_2;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.currentUserPoolUser()];\n case 1:\n currUser = _a.sent();\n return [3 /*break*/, 3];\n case 2:\n error_2 = _a.sent();\n logger.debug('The user is not authenticated by the error', error_2);\n return [2 /*return*/, Promise.reject('The user is not authenticated')];\n case 3:\n currUser.getCachedDeviceKeyAndPassword();\n return [2 /*return*/, new Promise(function (res, rej) {\n currUser.setDeviceStatusRemembered({\n onSuccess: function (data) {\n res(data);\n },\n onFailure: function (err) {\n if (err.code === 'InvalidParameterException') {\n rej(new _Errors__WEBPACK_IMPORTED_MODULE_6__[\"AuthError\"](_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].DeviceConfig));\n }\n else if (err.code === 'NetworkError') {\n rej(new _Errors__WEBPACK_IMPORTED_MODULE_6__[\"AuthError\"](_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].NetworkError));\n }\n else {\n rej(err);\n }\n },\n });\n })];\n }\n });\n });\n };\n AuthClass.prototype.forgetDevice = function () {\n return __awaiter(this, void 0, void 0, function () {\n var currUser, error_3;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.currentUserPoolUser()];\n case 1:\n currUser = _a.sent();\n return [3 /*break*/, 3];\n case 2:\n error_3 = _a.sent();\n logger.debug('The user is not authenticated by the error', error_3);\n return [2 /*return*/, Promise.reject('The user is not authenticated')];\n case 3:\n currUser.getCachedDeviceKeyAndPassword();\n return [2 /*return*/, new Promise(function (res, rej) {\n currUser.forgetDevice({\n onSuccess: function (data) {\n res(data);\n },\n onFailure: function (err) {\n if (err.code === 'InvalidParameterException') {\n rej(new _Errors__WEBPACK_IMPORTED_MODULE_6__[\"AuthError\"](_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].DeviceConfig));\n }\n else if (err.code === 'NetworkError') {\n rej(new _Errors__WEBPACK_IMPORTED_MODULE_6__[\"AuthError\"](_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].NetworkError));\n }\n else {\n rej(err);\n }\n },\n });\n })];\n }\n });\n });\n };\n AuthClass.prototype.fetchDevices = function () {\n return __awaiter(this, void 0, void 0, function () {\n var currUser, error_4;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.currentUserPoolUser()];\n case 1:\n currUser = _a.sent();\n return [3 /*break*/, 3];\n case 2:\n error_4 = _a.sent();\n logger.debug('The user is not authenticated by the error', error_4);\n throw new Error('The user is not authenticated');\n case 3:\n currUser.getCachedDeviceKeyAndPassword();\n return [2 /*return*/, new Promise(function (res, rej) {\n var cb = {\n onSuccess: function (data) {\n var deviceList = data.Devices.map(function (device) {\n var deviceName = device.DeviceAttributes.find(function (_a) {\n var Name = _a.Name;\n return Name === 'device_name';\n }) || {};\n var deviceInfo = {\n id: device.DeviceKey,\n name: deviceName.Value,\n };\n return deviceInfo;\n });\n res(deviceList);\n },\n onFailure: function (err) {\n if (err.code === 'InvalidParameterException') {\n rej(new _Errors__WEBPACK_IMPORTED_MODULE_6__[\"AuthError\"](_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].DeviceConfig));\n }\n else if (err.code === 'NetworkError') {\n rej(new _Errors__WEBPACK_IMPORTED_MODULE_6__[\"AuthError\"](_types_Auth__WEBPACK_IMPORTED_MODULE_7__[\"AuthErrorTypes\"].NetworkError));\n }\n else {\n rej(err);\n }\n },\n };\n currUser.listDevices(MAX_DEVICES, null, cb);\n })];\n }\n });\n });\n };\n return AuthClass;\n}());\n\nvar Auth = new AuthClass(null);\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Amplify\"].register(Auth);\n//# sourceMappingURL=Auth.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/Auth.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/Errors.js": /*!**********************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/Errors.js ***! \**********************************************************/ /*! exports provided: AuthError, NoUserPoolError, authErrorMessages */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AuthError\", function() { return AuthError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoUserPoolError\", function() { return NoUserPoolError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"authErrorMessages\", function() { return authErrorMessages; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./common/AuthErrorStrings */ \"./node_modules/@aws-amplify/auth/lib-esm/common/AuthErrorStrings.js\");\n/*\n * Copyright 2019-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AuthError');\nvar AuthError = /** @class */ (function (_super) {\n __extends(AuthError, _super);\n function AuthError(type) {\n var _this = this;\n var _a = authErrorMessages[type], message = _a.message, log = _a.log;\n _this = _super.call(this, message) || this;\n // Hack for making the custom error class work when transpiled to es5\n // TODO: Delete the following 2 lines after we change the build target to >= es2015\n _this.constructor = AuthError;\n Object.setPrototypeOf(_this, AuthError.prototype);\n _this.name = 'AuthError';\n _this.log = log || message;\n logger.error(_this.log);\n return _this;\n }\n return AuthError;\n}(Error));\n\nvar NoUserPoolError = /** @class */ (function (_super) {\n __extends(NoUserPoolError, _super);\n function NoUserPoolError(type) {\n var _this = _super.call(this, type) || this;\n // Hack for making the custom error class work when transpiled to es5\n // TODO: Delete the following 2 lines after we change the build target to >= es2015\n _this.constructor = NoUserPoolError;\n Object.setPrototypeOf(_this, NoUserPoolError.prototype);\n _this.name = 'NoUserPoolError';\n return _this;\n }\n return NoUserPoolError;\n}(AuthError));\n\nvar authErrorMessages = {\n noConfig: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].DEFAULT_MSG,\n log: \"\\n Error: Amplify has not been configured correctly.\\n This error is typically caused by one of the following scenarios:\\n\\n 1. Make sure you're passing the awsconfig object to Amplify.configure() in your app's entry point\\n See https://aws-amplify.github.io/docs/js/authentication#configure-your-app for more information\\n \\n 2. There might be multiple conflicting versions of amplify packages in your node_modules.\\n\\t\\t\\t\\tRefer to our docs site for help upgrading Amplify packages (https://docs.amplify.aws/lib/troubleshooting/upgrading/q/platform/js)\\n \",\n },\n missingAuthConfig: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].DEFAULT_MSG,\n log: \"\\n Error: Amplify has not been configured correctly. \\n The configuration object is missing required auth properties.\\n This error is typically caused by one of the following scenarios:\\n\\n 1. Did you run `amplify push` after adding auth via `amplify add auth`?\\n See https://aws-amplify.github.io/docs/js/authentication#amplify-project-setup for more information\\n\\n 2. This could also be caused by multiple conflicting versions of amplify packages, see (https://docs.amplify.aws/lib/troubleshooting/upgrading/q/platform/js) for help upgrading Amplify packages.\\n \",\n },\n emptyUsername: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].EMPTY_USERNAME,\n },\n // TODO: should include a list of valid sign-in types\n invalidUsername: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].INVALID_USERNAME,\n },\n emptyPassword: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].EMPTY_PASSWORD,\n },\n emptyCode: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].EMPTY_CODE,\n },\n signUpError: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].SIGN_UP_ERROR,\n log: 'The first parameter should either be non-null string or object',\n },\n noMFA: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].NO_MFA,\n },\n invalidMFA: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].INVALID_MFA,\n },\n emptyChallengeResponse: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].EMPTY_CHALLENGE,\n },\n noUserSession: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].NO_USER_SESSION,\n },\n deviceConfig: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].DEVICE_CONFIG,\n },\n networkError: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].NETWORK_ERROR,\n },\n autoSignInError: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].AUTOSIGNIN_ERROR,\n },\n default: {\n message: _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_1__[\"AuthErrorStrings\"].DEFAULT_MSG,\n },\n};\n//# sourceMappingURL=Errors.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/Errors.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/OAuth/OAuth.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/OAuth/OAuth.js ***! \***************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! url */ \"./node_modules/url/url.js\");\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(url__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _urlOpener__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./urlOpener */ \"./node_modules/@aws-amplify/auth/lib-esm/OAuth/urlOpener.js\");\n/* harmony import */ var _oauthStorage__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./oauthStorage */ \"./node_modules/@aws-amplify/auth/lib-esm/OAuth/oauthStorage.js\");\n/* harmony import */ var _types_Auth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../types/Auth */ \"./node_modules/@aws-amplify/auth/lib-esm/types/Auth.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var crypto_js_sha256__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! crypto-js/sha256 */ \"./node_modules/crypto-js/sha256.js\");\n/* harmony import */ var crypto_js_sha256__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(crypto_js_sha256__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var crypto_js_enc_base64__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! crypto-js/enc-base64 */ \"./node_modules/crypto-js/enc-base64.js\");\n/* harmony import */ var crypto_js_enc_base64__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(crypto_js_enc_base64__WEBPACK_IMPORTED_MODULE_6__);\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n // Used for OAuth parsing of Cognito Hosted UI\n\n\n\n\n\n\nvar AMPLIFY_SYMBOL = (typeof Symbol !== 'undefined' &&\n typeof Symbol.for === 'function'\n ? Symbol.for('amplify_default')\n : '@@amplify_default');\nvar dispatchAuthEvent = function (event, data, message) {\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"Hub\"].dispatch('auth', { event: event, data: data, message: message }, 'Auth', AMPLIFY_SYMBOL);\n};\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"ConsoleLogger\"]('OAuth');\nvar OAuth = /** @class */ (function () {\n function OAuth(_a) {\n var config = _a.config, cognitoClientId = _a.cognitoClientId, _b = _a.scopes, scopes = _b === void 0 ? [] : _b;\n this._urlOpener = config.urlOpener || _urlOpener__WEBPACK_IMPORTED_MODULE_1__[\"launchUri\"];\n this._config = config;\n this._cognitoClientId = cognitoClientId;\n if (!this.isValidScopes(scopes))\n throw Error('scopes must be a String Array');\n this._scopes = scopes;\n }\n OAuth.prototype.isValidScopes = function (scopes) {\n return (Array.isArray(scopes) && scopes.every(function (scope) { return typeof scope === 'string'; }));\n };\n OAuth.prototype.oauthSignIn = function (responseType, domain, redirectSignIn, clientId, provider, customState) {\n if (responseType === void 0) { responseType = 'code'; }\n if (provider === void 0) { provider = _types_Auth__WEBPACK_IMPORTED_MODULE_3__[\"CognitoHostedUIIdentityProvider\"].Cognito; }\n var generatedState = this._generateState(32);\n /* encodeURIComponent is not URL safe, use urlSafeEncode instead. Cognito\n single-encodes/decodes url on first sign in and double-encodes/decodes url\n when user already signed in. Using encodeURIComponent, Base32, Base64 add\n characters % or = which on further encoding becomes unsafe. '=' create issue\n for parsing query params.\n Refer: https://github.com/aws-amplify/amplify-js/issues/5218 */\n var state = customState\n ? generatedState + \"-\" + Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"urlSafeEncode\"])(customState)\n : generatedState;\n _oauthStorage__WEBPACK_IMPORTED_MODULE_2__[\"setState\"](state);\n var pkce_key = this._generateRandom(128);\n _oauthStorage__WEBPACK_IMPORTED_MODULE_2__[\"setPKCE\"](pkce_key);\n var code_challenge = this._generateChallenge(pkce_key);\n var code_challenge_method = 'S256';\n var scopesString = this._scopes.join(' ');\n var queryString = Object.entries(__assign(__assign({ redirect_uri: redirectSignIn, response_type: responseType, client_id: clientId, identity_provider: provider, scope: scopesString, state: state }, (responseType === 'code' ? { code_challenge: code_challenge } : {})), (responseType === 'code' ? { code_challenge_method: code_challenge_method } : {})))\n .map(function (_a) {\n var _b = __read(_a, 2), k = _b[0], v = _b[1];\n return encodeURIComponent(k) + \"=\" + encodeURIComponent(v);\n })\n .join('&');\n var URL = \"https://\" + domain + \"/oauth2/authorize?\" + queryString;\n logger.debug(\"Redirecting to \" + URL);\n this._urlOpener(URL, redirectSignIn);\n };\n OAuth.prototype._handleCodeFlow = function (currentUrl) {\n return __awaiter(this, void 0, void 0, function () {\n var code, currentUrlPathname, redirectSignInPathname, oAuthTokenEndpoint, client_id, redirect_uri, code_verifier, oAuthTokenBody, body, _a, access_token, refresh_token, id_token, error;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n code = (Object(url__WEBPACK_IMPORTED_MODULE_0__[\"parse\"])(currentUrl).query || '')\n .split('&')\n .map(function (pairings) { return pairings.split('='); })\n .reduce(function (accum, _a) {\n var _b;\n var _c = __read(_a, 2), k = _c[0], v = _c[1];\n return (__assign(__assign({}, accum), (_b = {}, _b[k] = v, _b)));\n }, { code: undefined }).code;\n currentUrlPathname = Object(url__WEBPACK_IMPORTED_MODULE_0__[\"parse\"])(currentUrl).pathname || '/';\n redirectSignInPathname = Object(url__WEBPACK_IMPORTED_MODULE_0__[\"parse\"])(this._config.redirectSignIn).pathname || '/';\n if (!code || currentUrlPathname !== redirectSignInPathname) {\n return [2 /*return*/];\n }\n oAuthTokenEndpoint = 'https://' + this._config.domain + '/oauth2/token';\n dispatchAuthEvent('codeFlow', {}, \"Retrieving tokens from \" + oAuthTokenEndpoint);\n client_id = Object(_types_Auth__WEBPACK_IMPORTED_MODULE_3__[\"isCognitoHostedOpts\"])(this._config)\n ? this._cognitoClientId\n : this._config.clientID;\n redirect_uri = Object(_types_Auth__WEBPACK_IMPORTED_MODULE_3__[\"isCognitoHostedOpts\"])(this._config)\n ? this._config.redirectSignIn\n : this._config.redirectUri;\n code_verifier = _oauthStorage__WEBPACK_IMPORTED_MODULE_2__[\"getPKCE\"]();\n oAuthTokenBody = __assign({ grant_type: 'authorization_code', code: code,\n client_id: client_id,\n redirect_uri: redirect_uri }, (code_verifier ? { code_verifier: code_verifier } : {}));\n logger.debug(\"Calling token endpoint: \" + oAuthTokenEndpoint + \" with\", oAuthTokenBody);\n body = Object.entries(oAuthTokenBody)\n .map(function (_a) {\n var _b = __read(_a, 2), k = _b[0], v = _b[1];\n return encodeURIComponent(k) + \"=\" + encodeURIComponent(v);\n })\n .join('&');\n return [4 /*yield*/, fetch(oAuthTokenEndpoint, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/x-www-form-urlencoded',\n },\n body: body,\n })];\n case 1: return [4 /*yield*/, (_b.sent()).json()];\n case 2:\n _a = _b.sent(), access_token = _a.access_token, refresh_token = _a.refresh_token, id_token = _a.id_token, error = _a.error;\n if (error) {\n throw new Error(error);\n }\n return [2 /*return*/, {\n accessToken: access_token,\n refreshToken: refresh_token,\n idToken: id_token,\n }];\n }\n });\n });\n };\n OAuth.prototype._handleImplicitFlow = function (currentUrl) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, id_token, access_token;\n return __generator(this, function (_b) {\n _a = (Object(url__WEBPACK_IMPORTED_MODULE_0__[\"parse\"])(currentUrl).hash || '#')\n .substr(1) // Remove # from returned code\n .split('&')\n .map(function (pairings) { return pairings.split('='); })\n .reduce(function (accum, _a) {\n var _b;\n var _c = __read(_a, 2), k = _c[0], v = _c[1];\n return (__assign(__assign({}, accum), (_b = {}, _b[k] = v, _b)));\n }, {\n id_token: undefined,\n access_token: undefined,\n }), id_token = _a.id_token, access_token = _a.access_token;\n dispatchAuthEvent('implicitFlow', {}, \"Got tokens from \" + currentUrl);\n logger.debug(\"Retrieving implicit tokens from \" + currentUrl + \" with\");\n return [2 /*return*/, {\n accessToken: access_token,\n idToken: id_token,\n refreshToken: null,\n }];\n });\n });\n };\n OAuth.prototype.handleAuthResponse = function (currentUrl) {\n return __awaiter(this, void 0, void 0, function () {\n var urlParams, error, error_description, state, _a, _b, e_1;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _c.trys.push([0, 5, , 6]);\n urlParams = currentUrl\n ? __assign(__assign({}, (Object(url__WEBPACK_IMPORTED_MODULE_0__[\"parse\"])(currentUrl).hash || '#')\n .substr(1)\n .split('&')\n .map(function (entry) { return entry.split('='); })\n .reduce(function (acc, _a) {\n var _b = __read(_a, 2), k = _b[0], v = _b[1];\n return ((acc[k] = v), acc);\n }, {})), (Object(url__WEBPACK_IMPORTED_MODULE_0__[\"parse\"])(currentUrl).query || '')\n .split('&')\n .map(function (entry) { return entry.split('='); })\n .reduce(function (acc, _a) {\n var _b = __read(_a, 2), k = _b[0], v = _b[1];\n return ((acc[k] = v), acc);\n }, {}))\n : {};\n error = urlParams.error, error_description = urlParams.error_description;\n if (error) {\n throw new Error(error_description);\n }\n state = this._validateState(urlParams);\n logger.debug(\"Starting \" + this._config.responseType + \" flow with \" + currentUrl);\n if (!(this._config.responseType === 'code')) return [3 /*break*/, 2];\n _a = [{}];\n return [4 /*yield*/, this._handleCodeFlow(currentUrl)];\n case 1: return [2 /*return*/, __assign.apply(void 0, [__assign.apply(void 0, _a.concat([(_c.sent())])), { state: state }])];\n case 2:\n _b = [{}];\n return [4 /*yield*/, this._handleImplicitFlow(currentUrl)];\n case 3: return [2 /*return*/, __assign.apply(void 0, [__assign.apply(void 0, _b.concat([(_c.sent())])), { state: state }])];\n case 4: return [3 /*break*/, 6];\n case 5:\n e_1 = _c.sent();\n logger.error(\"Error handling auth response.\", e_1);\n throw e_1;\n case 6: return [2 /*return*/];\n }\n });\n });\n };\n OAuth.prototype._validateState = function (urlParams) {\n if (!urlParams) {\n return;\n }\n var savedState = _oauthStorage__WEBPACK_IMPORTED_MODULE_2__[\"getState\"]();\n var returnedState = urlParams.state;\n // This is because savedState only exists if the flow was initiated by Amplify\n if (savedState && savedState !== returnedState) {\n throw new Error('Invalid state in OAuth flow');\n }\n return returnedState;\n };\n OAuth.prototype.signOut = function () {\n return __awaiter(this, void 0, void 0, function () {\n var oAuthLogoutEndpoint, client_id, signout_uri;\n return __generator(this, function (_a) {\n oAuthLogoutEndpoint = 'https://' + this._config.domain + '/logout?';\n client_id = Object(_types_Auth__WEBPACK_IMPORTED_MODULE_3__[\"isCognitoHostedOpts\"])(this._config)\n ? this._cognitoClientId\n : this._config.oauth.clientID;\n signout_uri = Object(_types_Auth__WEBPACK_IMPORTED_MODULE_3__[\"isCognitoHostedOpts\"])(this._config)\n ? this._config.redirectSignOut\n : this._config.returnTo;\n oAuthLogoutEndpoint += Object.entries({\n client_id: client_id,\n logout_uri: encodeURIComponent(signout_uri),\n })\n .map(function (_a) {\n var _b = __read(_a, 2), k = _b[0], v = _b[1];\n return k + \"=\" + v;\n })\n .join('&');\n dispatchAuthEvent('oAuthSignOut', { oAuth: 'signOut' }, \"Signing out from \" + oAuthLogoutEndpoint);\n logger.debug(\"Signing out from \" + oAuthLogoutEndpoint);\n return [2 /*return*/, this._urlOpener(oAuthLogoutEndpoint, signout_uri)];\n });\n });\n };\n OAuth.prototype._generateState = function (length) {\n var result = '';\n var i = length;\n var chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';\n for (; i > 0; --i)\n result += chars[Math.round(Math.random() * (chars.length - 1))];\n return result;\n };\n OAuth.prototype._generateChallenge = function (code) {\n return this._base64URL(crypto_js_sha256__WEBPACK_IMPORTED_MODULE_5___default()(code));\n };\n OAuth.prototype._base64URL = function (string) {\n return string\n .toString(crypto_js_enc_base64__WEBPACK_IMPORTED_MODULE_6___default.a)\n .replace(/=/g, '')\n .replace(/\\+/g, '-')\n .replace(/\\//g, '_');\n };\n OAuth.prototype._generateRandom = function (size) {\n var CHARSET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~';\n var buffer = new Uint8Array(size);\n if (typeof window !== 'undefined' && !!window.crypto) {\n window.crypto.getRandomValues(buffer);\n }\n else {\n for (var i = 0; i < size; i += 1) {\n buffer[i] = (Math.random() * CHARSET.length) | 0;\n }\n }\n return this._bufferToString(buffer);\n };\n OAuth.prototype._bufferToString = function (buffer) {\n var CHARSET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';\n var state = [];\n for (var i = 0; i < buffer.byteLength; i += 1) {\n var index = buffer[i] % CHARSET.length;\n state.push(CHARSET[index]);\n }\n return state.join('');\n };\n return OAuth;\n}());\n/* harmony default export */ __webpack_exports__[\"default\"] = (OAuth);\n//# sourceMappingURL=OAuth.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/OAuth/OAuth.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/OAuth/oauthStorage.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/OAuth/oauthStorage.js ***! \**********************************************************************/ /*! exports provided: setState, getState, setPKCE, getPKCE, clearAll */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setState\", function() { return setState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getState\", function() { return getState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setPKCE\", function() { return setPKCE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPKCE\", function() { return getPKCE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"clearAll\", function() { return clearAll; });\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar setState = function (state) {\n window.sessionStorage.setItem('oauth_state', state);\n};\nvar getState = function () {\n var oauth_state = window.sessionStorage.getItem('oauth_state');\n window.sessionStorage.removeItem('oauth_state');\n return oauth_state;\n};\nvar setPKCE = function (private_key) {\n window.sessionStorage.setItem('ouath_pkce_key', private_key);\n};\nvar getPKCE = function () {\n var ouath_pkce_key = window.sessionStorage.getItem('ouath_pkce_key');\n window.sessionStorage.removeItem('ouath_pkce_key');\n return ouath_pkce_key;\n};\nvar clearAll = function () {\n window.sessionStorage.removeItem('ouath_pkce_key');\n window.sessionStorage.removeItem('oauth_state');\n};\n//# sourceMappingURL=oauthStorage.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/OAuth/oauthStorage.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/OAuth/urlOpener.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/OAuth/urlOpener.js ***! \*******************************************************************/ /*! exports provided: launchUri */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"launchUri\", function() { return launchUri; });\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar SELF = '_self';\nvar launchUri = function (url) {\n var windowProxy = window.open(url, SELF);\n if (windowProxy) {\n return Promise.resolve(windowProxy);\n }\n else {\n return Promise.reject();\n }\n};\n//# sourceMappingURL=urlOpener.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/OAuth/urlOpener.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/common/AuthErrorStrings.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/common/AuthErrorStrings.js ***! \***************************************************************************/ /*! exports provided: AuthErrorStrings */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AuthErrorStrings\", function() { return AuthErrorStrings; });\nvar AuthErrorStrings;\n(function (AuthErrorStrings) {\n AuthErrorStrings[\"DEFAULT_MSG\"] = \"Authentication Error\";\n AuthErrorStrings[\"EMPTY_EMAIL\"] = \"Email cannot be empty\";\n AuthErrorStrings[\"EMPTY_PHONE\"] = \"Phone number cannot be empty\";\n AuthErrorStrings[\"EMPTY_USERNAME\"] = \"Username cannot be empty\";\n AuthErrorStrings[\"INVALID_USERNAME\"] = \"The username should either be a string or one of the sign in types\";\n AuthErrorStrings[\"EMPTY_PASSWORD\"] = \"Password cannot be empty\";\n AuthErrorStrings[\"EMPTY_CODE\"] = \"Confirmation code cannot be empty\";\n AuthErrorStrings[\"SIGN_UP_ERROR\"] = \"Error creating account\";\n AuthErrorStrings[\"NO_MFA\"] = \"No valid MFA method provided\";\n AuthErrorStrings[\"INVALID_MFA\"] = \"Invalid MFA type\";\n AuthErrorStrings[\"EMPTY_CHALLENGE\"] = \"Challenge response cannot be empty\";\n AuthErrorStrings[\"NO_USER_SESSION\"] = \"Failed to get the session because the user is empty\";\n AuthErrorStrings[\"NETWORK_ERROR\"] = \"Network Error\";\n AuthErrorStrings[\"DEVICE_CONFIG\"] = \"Device tracking has not been configured in this User Pool\";\n AuthErrorStrings[\"AUTOSIGNIN_ERROR\"] = \"Please use your credentials to sign in\";\n})(AuthErrorStrings || (AuthErrorStrings = {}));\n//# sourceMappingURL=AuthErrorStrings.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/common/AuthErrorStrings.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/index.js": /*!*********************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/index.js ***! \*********************************************************/ /*! exports provided: default, Auth, CognitoUser, CookieStorage, CognitoHostedUIIdentityProvider, appendToCognitoUserAgent, AuthErrorStrings, GRAPHQL_AUTH_MODE */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Auth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Auth */ \"./node_modules/@aws-amplify/auth/lib-esm/Auth.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Auth\", function() { return _Auth__WEBPACK_IMPORTED_MODULE_0__[\"Auth\"]; });\n\n/* harmony import */ var _types_Auth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./types/Auth */ \"./node_modules/@aws-amplify/auth/lib-esm/types/Auth.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoHostedUIIdentityProvider\", function() { return _types_Auth__WEBPACK_IMPORTED_MODULE_1__[\"CognitoHostedUIIdentityProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GRAPHQL_AUTH_MODE\", function() { return _types_Auth__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"]; });\n\n/* harmony import */ var amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! amazon-cognito-identity-js */ \"./node_modules/amazon-cognito-identity-js/es/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoUser\", function() { return amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CognitoUser\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CookieStorage\", function() { return amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"CookieStorage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"appendToCognitoUserAgent\", function() { return amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_2__[\"appendToCognitoUserAgent\"]; });\n\n/* harmony import */ var _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./common/AuthErrorStrings */ \"./node_modules/@aws-amplify/auth/lib-esm/common/AuthErrorStrings.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AuthErrorStrings\", function() { return _common_AuthErrorStrings__WEBPACK_IMPORTED_MODULE_3__[\"AuthErrorStrings\"]; });\n\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_Auth__WEBPACK_IMPORTED_MODULE_0__[\"Auth\"]);\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/types/Auth.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/types/Auth.js ***! \**************************************************************/ /*! exports provided: CognitoHostedUIIdentityProvider, isFederatedSignInOptions, isFederatedSignInOptionsCustom, hasCustomState, isCognitoHostedOpts, AuthErrorTypes, isUsernamePasswordOpts, GRAPHQL_AUTH_MODE */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CognitoHostedUIIdentityProvider\", function() { return CognitoHostedUIIdentityProvider; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isFederatedSignInOptions\", function() { return isFederatedSignInOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isFederatedSignInOptionsCustom\", function() { return isFederatedSignInOptionsCustom; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasCustomState\", function() { return hasCustomState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isCognitoHostedOpts\", function() { return isCognitoHostedOpts; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AuthErrorTypes\", function() { return AuthErrorTypes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isUsernamePasswordOpts\", function() { return isUsernamePasswordOpts; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GRAPHQL_AUTH_MODE\", function() { return GRAPHQL_AUTH_MODE; });\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar CognitoHostedUIIdentityProvider;\n(function (CognitoHostedUIIdentityProvider) {\n CognitoHostedUIIdentityProvider[\"Cognito\"] = \"COGNITO\";\n CognitoHostedUIIdentityProvider[\"Google\"] = \"Google\";\n CognitoHostedUIIdentityProvider[\"Facebook\"] = \"Facebook\";\n CognitoHostedUIIdentityProvider[\"Amazon\"] = \"LoginWithAmazon\";\n CognitoHostedUIIdentityProvider[\"Apple\"] = \"SignInWithApple\";\n})(CognitoHostedUIIdentityProvider || (CognitoHostedUIIdentityProvider = {}));\nfunction isFederatedSignInOptions(obj) {\n var keys = ['provider'];\n return obj && !!keys.find(function (k) { return obj.hasOwnProperty(k); });\n}\nfunction isFederatedSignInOptionsCustom(obj) {\n var keys = ['customProvider'];\n return obj && !!keys.find(function (k) { return obj.hasOwnProperty(k); });\n}\nfunction hasCustomState(obj) {\n var keys = ['customState'];\n return obj && !!keys.find(function (k) { return obj.hasOwnProperty(k); });\n}\nfunction isCognitoHostedOpts(oauth) {\n return oauth.redirectSignIn !== undefined;\n}\nvar AuthErrorTypes;\n(function (AuthErrorTypes) {\n AuthErrorTypes[\"NoConfig\"] = \"noConfig\";\n AuthErrorTypes[\"MissingAuthConfig\"] = \"missingAuthConfig\";\n AuthErrorTypes[\"EmptyUsername\"] = \"emptyUsername\";\n AuthErrorTypes[\"InvalidUsername\"] = \"invalidUsername\";\n AuthErrorTypes[\"EmptyPassword\"] = \"emptyPassword\";\n AuthErrorTypes[\"EmptyCode\"] = \"emptyCode\";\n AuthErrorTypes[\"SignUpError\"] = \"signUpError\";\n AuthErrorTypes[\"NoMFA\"] = \"noMFA\";\n AuthErrorTypes[\"InvalidMFA\"] = \"invalidMFA\";\n AuthErrorTypes[\"EmptyChallengeResponse\"] = \"emptyChallengeResponse\";\n AuthErrorTypes[\"NoUserSession\"] = \"noUserSession\";\n AuthErrorTypes[\"Default\"] = \"default\";\n AuthErrorTypes[\"DeviceConfig\"] = \"deviceConfig\";\n AuthErrorTypes[\"NetworkError\"] = \"networkError\";\n AuthErrorTypes[\"AutoSignInError\"] = \"autoSignInError\";\n})(AuthErrorTypes || (AuthErrorTypes = {}));\nfunction isUsernamePasswordOpts(obj) {\n return !!obj.username;\n}\nvar GRAPHQL_AUTH_MODE;\n(function (GRAPHQL_AUTH_MODE) {\n GRAPHQL_AUTH_MODE[\"API_KEY\"] = \"API_KEY\";\n GRAPHQL_AUTH_MODE[\"AWS_IAM\"] = \"AWS_IAM\";\n GRAPHQL_AUTH_MODE[\"OPENID_CONNECT\"] = \"OPENID_CONNECT\";\n GRAPHQL_AUTH_MODE[\"AMAZON_COGNITO_USER_POOLS\"] = \"AMAZON_COGNITO_USER_POOLS\";\n GRAPHQL_AUTH_MODE[\"AWS_LAMBDA\"] = \"AWS_LAMBDA\";\n})(GRAPHQL_AUTH_MODE || (GRAPHQL_AUTH_MODE = {}));\n//# sourceMappingURL=Auth.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/types/Auth.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/types/index.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/types/index.js ***! \***************************************************************/ /*! exports provided: CognitoHostedUIIdentityProvider, isFederatedSignInOptions, isFederatedSignInOptionsCustom, hasCustomState, isCognitoHostedOpts, AuthErrorTypes, isUsernamePasswordOpts, GRAPHQL_AUTH_MODE */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Auth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Auth */ \"./node_modules/@aws-amplify/auth/lib-esm/types/Auth.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoHostedUIIdentityProvider\", function() { return _Auth__WEBPACK_IMPORTED_MODULE_0__[\"CognitoHostedUIIdentityProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isFederatedSignInOptions\", function() { return _Auth__WEBPACK_IMPORTED_MODULE_0__[\"isFederatedSignInOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isFederatedSignInOptionsCustom\", function() { return _Auth__WEBPACK_IMPORTED_MODULE_0__[\"isFederatedSignInOptionsCustom\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hasCustomState\", function() { return _Auth__WEBPACK_IMPORTED_MODULE_0__[\"hasCustomState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isCognitoHostedOpts\", function() { return _Auth__WEBPACK_IMPORTED_MODULE_0__[\"isCognitoHostedOpts\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AuthErrorTypes\", function() { return _Auth__WEBPACK_IMPORTED_MODULE_0__[\"AuthErrorTypes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isUsernamePasswordOpts\", function() { return _Auth__WEBPACK_IMPORTED_MODULE_0__[\"isUsernamePasswordOpts\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GRAPHQL_AUTH_MODE\", function() { return _Auth__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"]; });\n\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/types/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/auth/lib-esm/urlListener.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-amplify/auth/lib-esm/urlListener.js ***! \***************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (function (callback) {\n if (Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"browserOrNode\"])().isBrowser && window.location) {\n var url = window.location.href;\n callback({ url: url });\n }\n else if (Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"browserOrNode\"])().isNode) {\n // continue building on ssr\n (function () { }); // noop\n }\n else {\n throw new Error('Not supported');\n }\n});\n//# sourceMappingURL=urlListener.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/auth/lib-esm/urlListener.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/cache/lib-esm/BrowserStorageCache.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-amplify/cache/lib-esm/BrowserStorageCache.js ***! \************************************************************************/ /*! exports provided: BrowserStorageCacheClass, BrowserStorageCache, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BrowserStorageCacheClass\", function() { return BrowserStorageCacheClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BrowserStorageCache\", function() { return BrowserStorageCache; });\n/* harmony import */ var _Utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils */ \"./node_modules/@aws-amplify/cache/lib-esm/Utils/index.js\");\n/* harmony import */ var _StorageCache__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./StorageCache */ \"./node_modules/@aws-amplify/cache/lib-esm/StorageCache.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"ConsoleLogger\"]('Cache');\n/**\n * Customized storage based on the SessionStorage or LocalStorage with LRU implemented\n */\nvar BrowserStorageCacheClass = /** @class */ (function (_super) {\n __extends(BrowserStorageCacheClass, _super);\n /**\n * initialize the cache\n * @param config - the configuration of the cache\n */\n function BrowserStorageCacheClass(config) {\n var _this = this;\n var cacheConfig = config\n ? Object.assign({}, _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"], config)\n : _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"];\n _this = _super.call(this, cacheConfig) || this;\n _this.config.storage = cacheConfig.storage;\n _this.getItem = _this.getItem.bind(_this);\n _this.setItem = _this.setItem.bind(_this);\n _this.removeItem = _this.removeItem.bind(_this);\n return _this;\n }\n /**\n * decrease current size of the cache\n *\n * @private\n * @param amount - the amount of the cache size which needs to be decreased\n */\n BrowserStorageCacheClass.prototype._decreaseCurSizeInBytes = function (amount) {\n var curSize = this.getCacheCurSize();\n this.config.storage.setItem(this.cacheCurSizeKey, (curSize - amount).toString());\n };\n /**\n * increase current size of the cache\n *\n * @private\n * @param amount - the amount of the cache szie which need to be increased\n */\n BrowserStorageCacheClass.prototype._increaseCurSizeInBytes = function (amount) {\n var curSize = this.getCacheCurSize();\n this.config.storage.setItem(this.cacheCurSizeKey, (curSize + amount).toString());\n };\n /**\n * update the visited time if item has been visited\n *\n * @private\n * @param item - the item which need to be refreshed\n * @param prefixedKey - the key of the item\n *\n * @return the refreshed item\n */\n BrowserStorageCacheClass.prototype._refreshItem = function (item, prefixedKey) {\n item.visitedTime = Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"getCurrTime\"])();\n this.config.storage.setItem(prefixedKey, JSON.stringify(item));\n return item;\n };\n /**\n * check wether item is expired\n *\n * @private\n * @param key - the key of the item\n *\n * @return true if the item is expired.\n */\n BrowserStorageCacheClass.prototype._isExpired = function (key) {\n var text = this.config.storage.getItem(key);\n var item = JSON.parse(text);\n if (Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"getCurrTime\"])() >= item.expires) {\n return true;\n }\n return false;\n };\n /**\n * delete item from cache\n *\n * @private\n * @param prefixedKey - the key of the item\n * @param size - optional, the byte size of the item\n */\n BrowserStorageCacheClass.prototype._removeItem = function (prefixedKey, size) {\n var itemSize = size\n ? size\n : JSON.parse(this.config.storage.getItem(prefixedKey)).byteSize;\n this._decreaseCurSizeInBytes(itemSize);\n // remove the cache item\n this.config.storage.removeItem(prefixedKey);\n };\n /**\n * put item into cache\n *\n * @private\n * @param prefixedKey - the key of the item\n * @param itemData - the value of the item\n * @param itemSizeInBytes - the byte size of the item\n */\n BrowserStorageCacheClass.prototype._setItem = function (prefixedKey, item) {\n // update the cache size\n this._increaseCurSizeInBytes(item.byteSize);\n try {\n this.config.storage.setItem(prefixedKey, JSON.stringify(item));\n }\n catch (setItemErr) {\n // if failed, we need to rollback the cache size\n this._decreaseCurSizeInBytes(item.byteSize);\n logger.error(\"Failed to set item \" + setItemErr);\n }\n };\n /**\n * total space needed when poping out items\n *\n * @private\n * @param itemSize\n *\n * @return total space needed\n */\n BrowserStorageCacheClass.prototype._sizeToPop = function (itemSize) {\n var spaceItemNeed = this.getCacheCurSize() + itemSize - this.config.capacityInBytes;\n var cacheThresholdSpace = (1 - this.config.warningThreshold) * this.config.capacityInBytes;\n return spaceItemNeed > cacheThresholdSpace\n ? spaceItemNeed\n : cacheThresholdSpace;\n };\n /**\n * see whether cache is full\n *\n * @private\n * @param itemSize\n *\n * @return true if cache is full\n */\n BrowserStorageCacheClass.prototype._isCacheFull = function (itemSize) {\n return itemSize + this.getCacheCurSize() > this.config.capacityInBytes;\n };\n /**\n * scan the storage and find out all the keys owned by this cache\n * also clean the expired keys while scanning\n *\n * @private\n *\n * @return array of keys\n */\n BrowserStorageCacheClass.prototype._findValidKeys = function () {\n var keys = [];\n var keyInCache = [];\n // get all keys in Storage\n for (var i = 0; i < this.config.storage.length; i += 1) {\n keyInCache.push(this.config.storage.key(i));\n }\n // find those items which belong to our cache and also clean those expired items\n for (var i = 0; i < keyInCache.length; i += 1) {\n var key = keyInCache[i];\n if (key.indexOf(this.config.keyPrefix) === 0 &&\n key !== this.cacheCurSizeKey) {\n if (this._isExpired(key)) {\n this._removeItem(key);\n }\n else {\n keys.push(key);\n }\n }\n }\n return keys;\n };\n /**\n * get all the items we have, sort them by their priority,\n * if priority is same, sort them by their last visited time\n * pop out items from the low priority (5 is the lowest)\n *\n * @private\n * @param keys - all the keys in this cache\n * @param sizeToPop - the total size of the items which needed to be poped out\n */\n BrowserStorageCacheClass.prototype._popOutItems = function (keys, sizeToPop) {\n var items = [];\n var remainedSize = sizeToPop;\n // get the items from Storage\n for (var i = 0; i < keys.length; i += 1) {\n var val = this.config.storage.getItem(keys[i]);\n if (val != null) {\n var item = JSON.parse(val);\n items.push(item);\n }\n }\n // first compare priority\n // then compare visited time\n items.sort(function (a, b) {\n if (a.priority > b.priority) {\n return -1;\n }\n else if (a.priority < b.priority) {\n return 1;\n }\n else {\n if (a.visitedTime < b.visitedTime) {\n return -1;\n }\n else\n return 1;\n }\n });\n for (var i = 0; i < items.length; i += 1) {\n // pop out items until we have enough room for new item\n this._removeItem(items[i].key, items[i].byteSize);\n remainedSize -= items[i].byteSize;\n if (remainedSize <= 0) {\n return;\n }\n }\n };\n /**\n * Set item into cache. You can put number, string, boolean or object.\n * The cache will first check whether has the same key.\n * If it has, it will delete the old item and then put the new item in\n * The cache will pop out items if it is full\n * You can specify the cache item options. The cache will abort and output a warning:\n * If the key is invalid\n * If the size of the item exceeds itemMaxSize.\n * If the value is undefined\n * If incorrect cache item configuration\n * If error happened with browser storage\n *\n * @param key - the key of the item\n * @param value - the value of the item\n * @param {Object} [options] - optional, the specified meta-data\n */\n BrowserStorageCacheClass.prototype.setItem = function (key, value, options) {\n logger.log(\"Set item: key is \" + key + \", value is \" + value + \" with options: \" + options);\n var prefixedKey = this.config.keyPrefix + key;\n // invalid keys\n if (prefixedKey === this.config.keyPrefix ||\n prefixedKey === this.cacheCurSizeKey) {\n logger.warn(\"Invalid key: should not be empty or 'CurSize'\");\n return;\n }\n if (typeof value === 'undefined') {\n logger.warn(\"The value of item should not be undefined!\");\n return;\n }\n var cacheItemOptions = {\n priority: options && options.priority !== undefined\n ? options.priority\n : this.config.defaultPriority,\n expires: options && options.expires !== undefined\n ? options.expires\n : this.config.defaultTTL + Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"getCurrTime\"])(),\n };\n if (cacheItemOptions.priority < 1 || cacheItemOptions.priority > 5) {\n logger.warn(\"Invalid parameter: priority due to out or range. It should be within 1 and 5.\");\n return;\n }\n var item = this.fillCacheItem(prefixedKey, value, cacheItemOptions);\n // check wether this item is too big;\n if (item.byteSize > this.config.itemMaxSize) {\n logger.warn(\"Item with key: \" + key + \" you are trying to put into is too big!\");\n return;\n }\n try {\n // first look into the storage, if it exists, delete it.\n var val = this.config.storage.getItem(prefixedKey);\n if (val) {\n this._removeItem(prefixedKey, JSON.parse(val).byteSize);\n }\n // check whether the cache is full\n if (this._isCacheFull(item.byteSize)) {\n var validKeys = this._findValidKeys();\n // check again and then pop out items\n if (this._isCacheFull(item.byteSize)) {\n var sizeToPop = this._sizeToPop(item.byteSize);\n this._popOutItems(validKeys, sizeToPop);\n }\n }\n // put item in the cache\n // may failed due to storage full\n this._setItem(prefixedKey, item);\n }\n catch (e) {\n logger.warn(\"setItem failed! \" + e);\n }\n };\n /**\n * Get item from cache. It will return null if item doesn’t exist or it has been expired.\n * If you specified callback function in the options,\n * then the function will be executed if no such item in the cache\n * and finally put the return value into cache.\n * Please make sure the callback function will return the value you want to put into the cache.\n * The cache will abort output a warning:\n * If the key is invalid\n * If error happened with browser storage\n *\n * @param key - the key of the item\n * @param {Object} [options] - the options of callback function\n *\n * @return - return the value of the item\n */\n BrowserStorageCacheClass.prototype.getItem = function (key, options) {\n logger.log(\"Get item: key is \" + key + \" with options \" + options);\n var ret = null;\n var prefixedKey = this.config.keyPrefix + key;\n if (prefixedKey === this.config.keyPrefix ||\n prefixedKey === this.cacheCurSizeKey) {\n logger.warn(\"Invalid key: should not be empty or 'CurSize'\");\n return null;\n }\n try {\n ret = this.config.storage.getItem(prefixedKey);\n if (ret != null) {\n if (this._isExpired(prefixedKey)) {\n // if expired, remove that item and return null\n this._removeItem(prefixedKey, JSON.parse(ret).byteSize);\n ret = null;\n }\n else {\n // if not expired, great, return the value and refresh it\n var item = JSON.parse(ret);\n item = this._refreshItem(item, prefixedKey);\n return item.data;\n }\n }\n if (options && options.callback !== undefined) {\n var val = options.callback();\n if (val !== null) {\n this.setItem(key, val, options);\n }\n return val;\n }\n return null;\n }\n catch (e) {\n logger.warn(\"getItem failed! \" + e);\n return null;\n }\n };\n /**\n * remove item from the cache\n * The cache will abort output a warning:\n * If error happened with browser storage\n * @param key - the key of the item\n */\n BrowserStorageCacheClass.prototype.removeItem = function (key) {\n logger.log(\"Remove item: key is \" + key);\n var prefixedKey = this.config.keyPrefix + key;\n if (prefixedKey === this.config.keyPrefix ||\n prefixedKey === this.cacheCurSizeKey) {\n return;\n }\n try {\n var val = this.config.storage.getItem(prefixedKey);\n if (val) {\n this._removeItem(prefixedKey, JSON.parse(val).byteSize);\n }\n }\n catch (e) {\n logger.warn(\"removeItem failed! \" + e);\n }\n };\n /**\n * clear the entire cache\n * The cache will abort output a warning:\n * If error happened with browser storage\n */\n BrowserStorageCacheClass.prototype.clear = function () {\n logger.log(\"Clear Cache\");\n var keysToRemove = [];\n for (var i = 0; i < this.config.storage.length; i += 1) {\n var key = this.config.storage.key(i);\n if (key.indexOf(this.config.keyPrefix) === 0) {\n keysToRemove.push(key);\n }\n }\n try {\n for (var i = 0; i < keysToRemove.length; i += 1) {\n this.config.storage.removeItem(keysToRemove[i]);\n }\n }\n catch (e) {\n logger.warn(\"clear failed! \" + e);\n }\n };\n /**\n * Return all the keys in the cache.\n *\n * @return - all keys in the cache\n */\n BrowserStorageCacheClass.prototype.getAllKeys = function () {\n var keys = [];\n for (var i = 0; i < this.config.storage.length; i += 1) {\n var key = this.config.storage.key(i);\n if (key.indexOf(this.config.keyPrefix) === 0 &&\n key !== this.cacheCurSizeKey) {\n keys.push(key.substring(this.config.keyPrefix.length));\n }\n }\n return keys;\n };\n /**\n * return the current size of the cache\n *\n * @return - current size of the cache\n */\n BrowserStorageCacheClass.prototype.getCacheCurSize = function () {\n var ret = this.config.storage.getItem(this.cacheCurSizeKey);\n if (!ret) {\n this.config.storage.setItem(this.cacheCurSizeKey, '0');\n ret = '0';\n }\n return Number(ret);\n };\n /**\n * Return a new instance of cache with customized configuration.\n * @param config - the customized configuration\n *\n * @return - new instance of Cache\n */\n BrowserStorageCacheClass.prototype.createInstance = function (config) {\n if (!config.keyPrefix || config.keyPrefix === _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"].keyPrefix) {\n logger.error('invalid keyPrefix, setting keyPrefix with timeStamp');\n config.keyPrefix = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"getCurrTime\"].toString();\n }\n return new BrowserStorageCacheClass(config);\n };\n return BrowserStorageCacheClass;\n}(_StorageCache__WEBPACK_IMPORTED_MODULE_1__[\"StorageCache\"]));\n\nvar BrowserStorageCache = new BrowserStorageCacheClass();\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (BrowserStorageCache);\n//# sourceMappingURL=BrowserStorageCache.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/cache/lib-esm/BrowserStorageCache.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/cache/lib-esm/InMemoryCache.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-amplify/cache/lib-esm/InMemoryCache.js ***! \******************************************************************/ /*! exports provided: InMemoryCacheClass, InMemoryCache, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InMemoryCacheClass\", function() { return InMemoryCacheClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InMemoryCache\", function() { return InMemoryCache; });\n/* harmony import */ var _Utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils */ \"./node_modules/@aws-amplify/cache/lib-esm/Utils/index.js\");\n/* harmony import */ var _StorageCache__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./StorageCache */ \"./node_modules/@aws-amplify/cache/lib-esm/StorageCache.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"ConsoleLogger\"]('InMemoryCache');\n/**\n * Customized in-memory cache with LRU implemented\n * @member cacheObj - object which store items\n * @member cacheList - list of keys in the cache with LRU\n * @member curSizeInBytes - current size of the cache\n * @member maxPriority - max of the priority\n * @member cacheSizeLimit - the limit of cache size\n */\nvar InMemoryCacheClass = /** @class */ (function (_super) {\n __extends(InMemoryCacheClass, _super);\n /**\n * initialize the cache\n *\n * @param config - the configuration of the cache\n */\n function InMemoryCacheClass(config) {\n var _this = this;\n var cacheConfig = config\n ? Object.assign({}, _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"], config)\n : _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"];\n _this = _super.call(this, cacheConfig) || this;\n logger.debug('now we start!');\n _this.cacheList = [];\n _this.curSizeInBytes = 0;\n _this.maxPriority = 5;\n _this.getItem = _this.getItem.bind(_this);\n _this.setItem = _this.setItem.bind(_this);\n _this.removeItem = _this.removeItem.bind(_this);\n // initialize list for every priority\n for (var i = 0; i < _this.maxPriority; i += 1) {\n _this.cacheList[i] = new _Utils__WEBPACK_IMPORTED_MODULE_0__[\"CacheList\"]();\n }\n return _this;\n }\n /**\n * decrease current size of the cache\n *\n * @param amount - the amount of the cache size which needs to be decreased\n */\n InMemoryCacheClass.prototype._decreaseCurSizeInBytes = function (amount) {\n this.curSizeInBytes -= amount;\n };\n /**\n * increase current size of the cache\n *\n * @param amount - the amount of the cache szie which need to be increased\n */\n InMemoryCacheClass.prototype._increaseCurSizeInBytes = function (amount) {\n this.curSizeInBytes += amount;\n };\n /**\n * check whether item is expired\n *\n * @param key - the key of the item\n *\n * @return true if the item is expired.\n */\n InMemoryCacheClass.prototype._isExpired = function (key) {\n var text = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"CacheObject\"].getItem(key);\n var item = JSON.parse(text);\n if (Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"getCurrTime\"])() >= item.expires) {\n return true;\n }\n return false;\n };\n /**\n * delete item from cache\n *\n * @param prefixedKey - the key of the item\n * @param listIdx - indicates which cache list the key belongs to\n */\n InMemoryCacheClass.prototype._removeItem = function (prefixedKey, listIdx) {\n // delete the key from the list\n this.cacheList[listIdx].removeItem(prefixedKey);\n // decrease the current size of the cache\n this._decreaseCurSizeInBytes(JSON.parse(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"CacheObject\"].getItem(prefixedKey)).byteSize);\n // finally remove the item from memory\n _Utils__WEBPACK_IMPORTED_MODULE_0__[\"CacheObject\"].removeItem(prefixedKey);\n };\n /**\n * put item into cache\n *\n * @param prefixedKey - the key of the item\n * @param itemData - the value of the item\n * @param itemSizeInBytes - the byte size of the item\n * @param listIdx - indicates which cache list the key belongs to\n */\n InMemoryCacheClass.prototype._setItem = function (prefixedKey, item, listIdx) {\n // insert the key into the list\n this.cacheList[listIdx].insertItem(prefixedKey);\n // increase the current size of the cache\n this._increaseCurSizeInBytes(item.byteSize);\n // finally add the item into memory\n _Utils__WEBPACK_IMPORTED_MODULE_0__[\"CacheObject\"].setItem(prefixedKey, JSON.stringify(item));\n };\n /**\n * see whether cache is full\n *\n * @param itemSize\n *\n * @return true if cache is full\n */\n InMemoryCacheClass.prototype._isCacheFull = function (itemSize) {\n return this.curSizeInBytes + itemSize > this.config.capacityInBytes;\n };\n /**\n * check whether the cache contains the key\n *\n * @param key\n */\n InMemoryCacheClass.prototype.containsKey = function (key) {\n var prefixedKey = this.config.keyPrefix + key;\n for (var i = 0; i < this.maxPriority; i += 1) {\n if (this.cacheList[i].containsKey(prefixedKey)) {\n return i + 1;\n }\n }\n return -1;\n };\n /**\n * * Set item into cache. You can put number, string, boolean or object.\n * The cache will first check whether has the same key.\n * If it has, it will delete the old item and then put the new item in\n * The cache will pop out items if it is full\n * You can specify the cache item options. The cache will abort and output a warning:\n * If the key is invalid\n * If the size of the item exceeds itemMaxSize.\n * If the value is undefined\n * If incorrect cache item configuration\n * If error happened with browser storage\n *\n * @param key - the key of the item\n * @param value - the value of the item\n * @param options - optional, the specified meta-data\n *\n * @throws if the item is too big which exceeds the limit of single item size\n * @throws if the key is invalid\n */\n InMemoryCacheClass.prototype.setItem = function (key, value, options) {\n var prefixedKey = this.config.keyPrefix + key;\n // invalid keys\n if (prefixedKey === this.config.keyPrefix ||\n prefixedKey === this.cacheCurSizeKey) {\n logger.warn(\"Invalid key: should not be empty or 'CurSize'\");\n return;\n }\n if (typeof value === 'undefined') {\n logger.warn(\"The value of item should not be undefined!\");\n return;\n }\n var cacheItemOptions = {\n priority: options && options.priority !== undefined\n ? options.priority\n : this.config.defaultPriority,\n expires: options && options.expires !== undefined\n ? options.expires\n : this.config.defaultTTL + Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"getCurrTime\"])(),\n };\n if (cacheItemOptions.priority < 1 || cacheItemOptions.priority > 5) {\n logger.warn(\"Invalid parameter: priority due to out or range. It should be within 1 and 5.\");\n return;\n }\n var item = this.fillCacheItem(prefixedKey, value, cacheItemOptions);\n // check wether this item is too big;\n if (item.byteSize > this.config.itemMaxSize) {\n logger.warn(\"Item with key: \" + key + \" you are trying to put into is too big!\");\n return;\n }\n // if key already in the cache, then delete it.\n var presentKeyPrio = this.containsKey(key);\n if (presentKeyPrio !== -1) {\n this._removeItem(prefixedKey, presentKeyPrio - 1);\n }\n // pop out items in the cache when cache is full based on LRU\n // first start from lowest priority cache list\n var cacheListIdx = this.maxPriority - 1;\n while (this._isCacheFull(item.byteSize) && cacheListIdx >= 0) {\n if (!this.cacheList[cacheListIdx].isEmpty()) {\n var popedItemKey = this.cacheList[cacheListIdx].getLastItem();\n this._removeItem(popedItemKey, cacheListIdx);\n }\n else {\n cacheListIdx -= 1;\n }\n }\n this._setItem(prefixedKey, item, Number(item.priority) - 1);\n };\n /**\n * Get item from cache. It will return null if item doesn’t exist or it has been expired.\n * If you specified callback function in the options,\n * then the function will be executed if no such item in the cache\n * and finally put the return value into cache.\n * Please make sure the callback function will return the value you want to put into the cache.\n * The cache will abort output a warning:\n * If the key is invalid\n *\n * @param key - the key of the item\n * @param options - the options of callback function\n */\n InMemoryCacheClass.prototype.getItem = function (key, options) {\n var ret = null;\n var prefixedKey = this.config.keyPrefix + key;\n if (prefixedKey === this.config.keyPrefix ||\n prefixedKey === this.cacheCurSizeKey) {\n logger.warn(\"Invalid key: should not be empty or 'CurSize'\");\n return null;\n }\n // check whether it's in the cachelist\n var presentKeyPrio = this.containsKey(key);\n if (presentKeyPrio !== -1) {\n if (this._isExpired(prefixedKey)) {\n // if expired, remove that item and return null\n this._removeItem(prefixedKey, presentKeyPrio - 1);\n }\n else {\n // if not expired, great, return the value and refresh it\n ret = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"CacheObject\"].getItem(prefixedKey);\n var item = JSON.parse(ret);\n this.cacheList[item.priority - 1].refresh(prefixedKey);\n return item.data;\n }\n }\n if (options && options.callback !== undefined) {\n var val = options.callback();\n if (val !== null) {\n this.setItem(key, val, options);\n }\n return val;\n }\n return null;\n };\n /**\n * remove item from the cache\n *\n * @param key - the key of the item\n */\n InMemoryCacheClass.prototype.removeItem = function (key) {\n var prefixedKey = this.config.keyPrefix + key;\n // check if the key is in the cache\n var presentKeyPrio = this.containsKey(key);\n if (presentKeyPrio !== -1) {\n this._removeItem(prefixedKey, presentKeyPrio - 1);\n }\n };\n /**\n * clear the entire cache\n */\n InMemoryCacheClass.prototype.clear = function () {\n var e_1, _a;\n for (var i = 0; i < this.maxPriority; i += 1) {\n try {\n for (var _b = (e_1 = void 0, __values(this.cacheList[i].getKeys())), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n this._removeItem(key, i);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n }\n };\n /**\n * Return all the keys in the cache.\n */\n InMemoryCacheClass.prototype.getAllKeys = function () {\n var e_2, _a;\n var keys = [];\n for (var i = 0; i < this.maxPriority; i += 1) {\n try {\n for (var _b = (e_2 = void 0, __values(this.cacheList[i].getKeys())), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n keys.push(key.substring(this.config.keyPrefix.length));\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_2) throw e_2.error; }\n }\n }\n return keys;\n };\n /**\n * return the current size of the cache\n *\n * @return the current size of the cache\n */\n InMemoryCacheClass.prototype.getCacheCurSize = function () {\n return this.curSizeInBytes;\n };\n /**\n * Return a new instance of cache with customized configuration.\n * @param config - the customized configuration\n */\n InMemoryCacheClass.prototype.createInstance = function (config) {\n return new InMemoryCacheClass(config);\n };\n return InMemoryCacheClass;\n}(_StorageCache__WEBPACK_IMPORTED_MODULE_1__[\"StorageCache\"]));\n\nvar InMemoryCache = new InMemoryCacheClass();\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (InMemoryCache);\n//# sourceMappingURL=InMemoryCache.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/cache/lib-esm/InMemoryCache.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/cache/lib-esm/StorageCache.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-amplify/cache/lib-esm/StorageCache.js ***! \*****************************************************************/ /*! exports provided: StorageCache, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StorageCache\", function() { return StorageCache; });\n/* harmony import */ var _Utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils */ \"./node_modules/@aws-amplify/cache/lib-esm/Utils/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('StorageCache');\n/**\n * Initialization of the cache\n *\n */\nvar StorageCache = /** @class */ (function () {\n /**\n * Initialize the cache\n * @param config - the configuration of the cache\n */\n function StorageCache(config) {\n this.config = Object.assign({}, config);\n this.cacheCurSizeKey = this.config.keyPrefix + 'CurSize';\n this.checkConfig();\n }\n StorageCache.prototype.getModuleName = function () {\n return 'Cache';\n };\n StorageCache.prototype.checkConfig = function () {\n // check configuration\n if (!Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"isInteger\"])(this.config.capacityInBytes)) {\n logger.error('Invalid parameter: capacityInBytes. It should be an Integer. Setting back to default.');\n this.config.capacityInBytes = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"].capacityInBytes;\n }\n if (!Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"isInteger\"])(this.config.itemMaxSize)) {\n logger.error('Invalid parameter: itemMaxSize. It should be an Integer. Setting back to default.');\n this.config.itemMaxSize = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"].itemMaxSize;\n }\n if (!Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"isInteger\"])(this.config.defaultTTL)) {\n logger.error('Invalid parameter: defaultTTL. It should be an Integer. Setting back to default.');\n this.config.defaultTTL = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"].defaultTTL;\n }\n if (!Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"isInteger\"])(this.config.defaultPriority)) {\n logger.error('Invalid parameter: defaultPriority. It should be an Integer. Setting back to default.');\n this.config.defaultPriority = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"].defaultPriority;\n }\n if (this.config.itemMaxSize > this.config.capacityInBytes) {\n logger.error('Invalid parameter: itemMaxSize. It should be smaller than capacityInBytes. Setting back to default.');\n this.config.itemMaxSize = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"].itemMaxSize;\n }\n if (this.config.defaultPriority > 5 || this.config.defaultPriority < 1) {\n logger.error('Invalid parameter: defaultPriority. It should be between 1 and 5. Setting back to default.');\n this.config.defaultPriority = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"].defaultPriority;\n }\n if (Number(this.config.warningThreshold) > 1 ||\n Number(this.config.warningThreshold) < 0) {\n logger.error('Invalid parameter: warningThreshold. It should be between 0 and 1. Setting back to default.');\n this.config.warningThreshold = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"].warningThreshold;\n }\n // set 5MB limit\n var cacheLimit = 5 * 1024 * 1024;\n if (this.config.capacityInBytes > cacheLimit) {\n logger.error('Cache Capacity should be less than 5MB. Setting back to default. Setting back to default.');\n this.config.capacityInBytes = _Utils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"].capacityInBytes;\n }\n };\n /**\n * produce a JSON object with meta-data and data value\n * @param value - the value of the item\n * @param options - optional, the specified meta-data\n *\n * @return - the item which has the meta-data and the value\n */\n StorageCache.prototype.fillCacheItem = function (key, value, options) {\n var ret = {\n key: key,\n data: value,\n timestamp: Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"getCurrTime\"])(),\n visitedTime: Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"getCurrTime\"])(),\n priority: options.priority,\n expires: options.expires,\n type: typeof value,\n byteSize: 0,\n };\n ret.byteSize = Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"getByteLength\"])(JSON.stringify(ret));\n // for accurate size\n ret.byteSize = Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"getByteLength\"])(JSON.stringify(ret));\n return ret;\n };\n /**\n * set cache with customized configuration\n * @param config - customized configuration\n *\n * @return - the current configuration\n */\n StorageCache.prototype.configure = function (config) {\n if (!config) {\n return this.config;\n }\n if (config.keyPrefix) {\n logger.warn(\"Don't try to configure keyPrefix!\");\n }\n this.config = Object.assign({}, this.config, config, config.Cache);\n this.checkConfig();\n return this.config;\n };\n return StorageCache;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (StorageCache);\n//# sourceMappingURL=StorageCache.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/cache/lib-esm/StorageCache.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/cache/lib-esm/Utils/CacheList.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-amplify/cache/lib-esm/Utils/CacheList.js ***! \********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar DoubleLinkedNode = /** @class */ (function () {\n function DoubleLinkedNode(keyVal) {\n this.key = keyVal ? keyVal : '';\n this.prevNode = null;\n this.nextNode = null;\n }\n return DoubleLinkedNode;\n}());\n/**\n * double linked list plus a hash table inside\n * each key in the cache stored as a node in the list\n * recently visited node will be rotated to the head\n * so the Last Recently Visited node will be at the tail\n *\n * @member head - dummy head of the linked list\n * @member tail - dummy tail of the linked list\n * @member hashtable - the hashtable which maps cache key to list node\n * @member length - length of the list\n */\nvar CacheList = /** @class */ (function () {\n /**\n * initialization\n */\n function CacheList() {\n this.head = new DoubleLinkedNode();\n this.tail = new DoubleLinkedNode();\n this.hashtable = {};\n this.length = 0;\n this.head.nextNode = this.tail;\n this.tail.prevNode = this.head;\n }\n /**\n * insert node to the head of the list\n *\n * @param node\n */\n CacheList.prototype.insertNodeToHead = function (node) {\n var tmp = this.head.nextNode;\n this.head.nextNode = node;\n node.nextNode = tmp;\n node.prevNode = this.head;\n tmp.prevNode = node;\n this.length = this.length + 1;\n };\n /**\n * remove node\n *\n * @param node\n */\n CacheList.prototype.removeNode = function (node) {\n node.prevNode.nextNode = node.nextNode;\n node.nextNode.prevNode = node.prevNode;\n node.prevNode = null;\n node.nextNode = null;\n this.length = this.length - 1;\n };\n /**\n * @return true if list is empty\n */\n CacheList.prototype.isEmpty = function () {\n return this.length === 0;\n };\n /**\n * refresh node so it is rotated to the head\n *\n * @param key - key of the node\n */\n CacheList.prototype.refresh = function (key) {\n var node = this.hashtable[key];\n this.removeNode(node);\n this.insertNodeToHead(node);\n };\n /**\n * insert new node to the head and add it in the hashtable\n *\n * @param key - the key of the node\n */\n CacheList.prototype.insertItem = function (key) {\n var node = new DoubleLinkedNode(key);\n this.hashtable[key] = node;\n this.insertNodeToHead(node);\n };\n /**\n * @return the LAST Recently Visited key\n */\n CacheList.prototype.getLastItem = function () {\n return this.tail.prevNode.key;\n };\n /**\n * remove the cache key from the list and hashtable\n * @param key - the key of the node\n */\n CacheList.prototype.removeItem = function (key) {\n var removedItem = this.hashtable[key];\n this.removeNode(removedItem);\n delete this.hashtable[key];\n };\n /**\n * @return length of the list\n */\n CacheList.prototype.getSize = function () {\n return this.length;\n };\n /**\n * @return true if the key is in the hashtable\n * @param key\n */\n CacheList.prototype.containsKey = function (key) {\n return key in this.hashtable;\n };\n /**\n * clean up the list and hashtable\n */\n CacheList.prototype.clearList = function () {\n var e_1, _a;\n try {\n for (var _b = __values(Object.keys(this.hashtable)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n if (this.hashtable.hasOwnProperty(key)) {\n delete this.hashtable[key];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n this.head.nextNode = this.tail;\n this.tail.prevNode = this.head;\n this.length = 0;\n };\n /**\n * @return all keys in the hashtable\n */\n CacheList.prototype.getKeys = function () {\n return Object.keys(this.hashtable);\n };\n /**\n * mainly for test\n *\n * @param key\n * @return true if key is the head node\n */\n CacheList.prototype.isHeadNode = function (key) {\n var node = this.hashtable[key];\n return node.prevNode === this.head;\n };\n /**\n * mainly for test\n *\n * @param key\n * @return true if key is the tail node\n */\n CacheList.prototype.isTailNode = function (key) {\n var node = this.hashtable[key];\n return node.nextNode === this.tail;\n };\n return CacheList;\n}());\n/* harmony default export */ __webpack_exports__[\"default\"] = (CacheList);\n//# sourceMappingURL=CacheList.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/cache/lib-esm/Utils/CacheList.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/cache/lib-esm/Utils/CacheUtils.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-amplify/cache/lib-esm/Utils/CacheUtils.js ***! \*********************************************************************/ /*! exports provided: defaultConfig, getByteLength, getCurrTime, isInteger, CacheObject */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultConfig\", function() { return defaultConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getByteLength\", function() { return getByteLength; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCurrTime\", function() { return getCurrTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isInteger\", function() { return isInteger; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CacheObject\", function() { return CacheObject; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n/**\n * Default cache config\n */\nvar defaultConfig = {\n keyPrefix: 'aws-amplify-cache',\n capacityInBytes: 1048576,\n itemMaxSize: 210000,\n defaultTTL: 259200000,\n defaultPriority: 5,\n warningThreshold: 0.8,\n // the storage helper will check if localStorage exists,\n // if not, will use a in-memory object instead\n storage: new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"StorageHelper\"]().getStorage(),\n};\n/**\n * return the byte size of the string\n * @param str\n */\nfunction getByteLength(str) {\n var ret = 0;\n ret = str.length;\n for (var i = str.length; i >= 0; i -= 1) {\n var charCode = str.charCodeAt(i);\n if (charCode > 0x7f && charCode <= 0x7ff) {\n ret += 1;\n }\n else if (charCode > 0x7ff && charCode <= 0xffff) {\n ret += 2;\n }\n // trail surrogate\n if (charCode >= 0xdc00 && charCode <= 0xdfff) {\n i -= 1;\n }\n }\n return ret;\n}\n/**\n * get current time\n */\nfunction getCurrTime() {\n var currTime = new Date();\n return currTime.getTime();\n}\n/**\n * check if passed value is an integer\n */\nfunction isInteger(value) {\n if (Number.isInteger) {\n return Number.isInteger(value);\n }\n return _isInteger(value);\n}\nfunction _isInteger(value) {\n return (typeof value === 'number' && isFinite(value) && Math.floor(value) === value);\n}\n/**\n * provide an object as the in-memory cache\n */\nvar store = {};\nvar CacheObject = /** @class */ (function () {\n function CacheObject() {\n }\n CacheObject.clear = function () {\n store = {};\n };\n CacheObject.getItem = function (key) {\n return store[key] || null;\n };\n CacheObject.setItem = function (key, value) {\n store[key] = value;\n };\n CacheObject.removeItem = function (key) {\n delete store[key];\n };\n return CacheObject;\n}());\n\n//# sourceMappingURL=CacheUtils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/cache/lib-esm/Utils/CacheUtils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/cache/lib-esm/Utils/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-amplify/cache/lib-esm/Utils/index.js ***! \****************************************************************/ /*! exports provided: defaultConfig, getByteLength, getCurrTime, isInteger, CacheObject, CacheList */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _CacheUtils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CacheUtils */ \"./node_modules/@aws-amplify/cache/lib-esm/Utils/CacheUtils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultConfig\", function() { return _CacheUtils__WEBPACK_IMPORTED_MODULE_0__[\"defaultConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getByteLength\", function() { return _CacheUtils__WEBPACK_IMPORTED_MODULE_0__[\"getByteLength\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getCurrTime\", function() { return _CacheUtils__WEBPACK_IMPORTED_MODULE_0__[\"getCurrTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isInteger\", function() { return _CacheUtils__WEBPACK_IMPORTED_MODULE_0__[\"isInteger\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CacheObject\", function() { return _CacheUtils__WEBPACK_IMPORTED_MODULE_0__[\"CacheObject\"]; });\n\n/* harmony import */ var _CacheList__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CacheList */ \"./node_modules/@aws-amplify/cache/lib-esm/Utils/CacheList.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CacheList\", function() { return _CacheList__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/cache/lib-esm/Utils/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/cache/lib-esm/index.js": /*!**********************************************************!*\ !*** ./node_modules/@aws-amplify/cache/lib-esm/index.js ***! \**********************************************************/ /*! exports provided: BrowserStorageCache, InMemoryCache, Cache, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _BrowserStorageCache__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BrowserStorageCache */ \"./node_modules/@aws-amplify/cache/lib-esm/BrowserStorageCache.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BrowserStorageCache\", function() { return _BrowserStorageCache__WEBPACK_IMPORTED_MODULE_1__[\"BrowserStorageCache\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Cache\", function() { return _BrowserStorageCache__WEBPACK_IMPORTED_MODULE_1__[\"BrowserStorageCache\"]; });\n\n/* harmony import */ var _InMemoryCache__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./InMemoryCache */ \"./node_modules/@aws-amplify/cache/lib-esm/InMemoryCache.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InMemoryCache\", function() { return _InMemoryCache__WEBPACK_IMPORTED_MODULE_2__[\"InMemoryCache\"]; });\n\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_BrowserStorageCache__WEBPACK_IMPORTED_MODULE_1__[\"BrowserStorageCache\"]);\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"].register(_BrowserStorageCache__WEBPACK_IMPORTED_MODULE_1__[\"BrowserStorageCache\"]);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/cache/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Amplify.js": /*!***********************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Amplify.js ***! \***********************************************************/ /*! exports provided: AmplifyClass, Amplify, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AmplifyClass\", function() { return AmplifyClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Amplify\", function() { return Amplify; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Amplify');\nvar AmplifyClass = /** @class */ (function () {\n function AmplifyClass() {\n // Everything that is `register`ed is tracked here\n this._components = [];\n this._config = {};\n // All modules (with `getModuleName()`) are stored here for dependency injection\n this._modules = {};\n // for backward compatibility to avoid breaking change\n // if someone is using like Amplify.Auth\n this.Auth = null;\n this.Analytics = null;\n this.API = null;\n this.Credentials = null;\n this.Storage = null;\n this.I18n = null;\n this.Cache = null;\n this.PubSub = null;\n this.Interactions = null;\n this.Pushnotification = null;\n this.UI = null;\n this.XR = null;\n this.Predictions = null;\n this.DataStore = null;\n this.Geo = null;\n this.Logger = _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"];\n this.ServiceWorker = null;\n }\n AmplifyClass.prototype.register = function (comp) {\n logger.debug('component registered in amplify', comp);\n this._components.push(comp);\n if (typeof comp.getModuleName === 'function') {\n this._modules[comp.getModuleName()] = comp;\n this[comp.getModuleName()] = comp;\n }\n else {\n logger.debug('no getModuleName method for component', comp);\n }\n // Finally configure this new component(category) loaded\n // With the new modularization changes in Amplify V3, all the Amplify\n // component are not loaded/registered right away but when they are\n // imported (and hence instantiated) in the client's app. This ensures\n // that all new components imported get correctly configured with the\n // configuration that Amplify.configure() was called with.\n comp.configure(this._config);\n };\n AmplifyClass.prototype.configure = function (config) {\n var _this = this;\n if (!config)\n return this._config;\n this._config = Object.assign(this._config, config);\n logger.debug('amplify config', this._config);\n // Dependency Injection via property-setting.\n // This avoids introducing a public method/interface/setter that's difficult to remove later.\n // Plus, it reduces `if` statements within the `constructor` and `configure` of each module\n Object.entries(this._modules).forEach(function (_a) {\n var _b = __read(_a, 2), Name = _b[0], comp = _b[1];\n // e.g. Auth.*\n Object.keys(comp).forEach(function (property) {\n // e.g. Auth[\"Credentials\"] = this._modules[\"Credentials\"] when set\n if (_this._modules[property]) {\n comp[property] = _this._modules[property];\n }\n });\n });\n this._components.map(function (comp) {\n comp.configure(_this._config);\n });\n return this._config;\n };\n AmplifyClass.prototype.addPluggable = function (pluggable) {\n if (pluggable &&\n pluggable['getCategory'] &&\n typeof pluggable['getCategory'] === 'function') {\n this._components.map(function (comp) {\n if (comp['addPluggable'] &&\n typeof comp['addPluggable'] === 'function') {\n comp.addPluggable(pluggable);\n }\n });\n }\n };\n return AmplifyClass;\n}());\n\nvar Amplify = new AmplifyClass();\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (Amplify);\n//# sourceMappingURL=Amplify.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Amplify.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/ClientDevice/browser.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/ClientDevice/browser.js ***! \************************************************************************/ /*! exports provided: clientInfo, dimension, browserType */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"clientInfo\", function() { return clientInfo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"dimension\", function() { return dimension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"browserType\", function() { return browserType; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('ClientDevice_Browser');\nfunction clientInfo() {\n if (typeof window === 'undefined') {\n return {};\n }\n return browserClientInfo();\n}\nfunction browserClientInfo() {\n if (typeof window === 'undefined') {\n logger.warn('No window object available to get browser client info');\n return {};\n }\n var nav = window.navigator;\n if (!nav) {\n logger.warn('No navigator object available to get browser client info');\n return {};\n }\n var platform = nav.platform, product = nav.product, vendor = nav.vendor, userAgent = nav.userAgent, language = nav.language;\n var type = browserType(userAgent);\n var timezone = browserTimezone();\n return {\n platform: platform,\n make: product || vendor,\n model: type.type,\n version: type.version,\n appVersion: [type.type, type.version].join('/'),\n language: language,\n timezone: timezone,\n };\n}\nfunction dimension() {\n if (typeof window === 'undefined') {\n logger.warn('No window object available to get browser client info');\n return { width: 320, height: 320 };\n }\n return {\n width: window.innerWidth,\n height: window.innerHeight,\n };\n}\nfunction browserTimezone() {\n var tzMatch = /\\(([A-Za-z\\s].*)\\)/.exec(new Date().toString());\n return tzMatch ? tzMatch[1] || '' : '';\n}\nfunction browserType(userAgent) {\n var operaMatch = /.+(Opera[\\s[A-Z]*|OPR[\\sA-Z]*)\\/([0-9\\.]+).*/i.exec(userAgent);\n if (operaMatch) {\n return { type: operaMatch[1], version: operaMatch[2] };\n }\n var ieMatch = /.+(Trident|Edge)\\/([0-9\\.]+).*/i.exec(userAgent);\n if (ieMatch) {\n return { type: ieMatch[1], version: ieMatch[2] };\n }\n var cfMatch = /.+(Chrome|Firefox|FxiOS)\\/([0-9\\.]+).*/i.exec(userAgent);\n if (cfMatch) {\n return { type: cfMatch[1], version: cfMatch[2] };\n }\n var sMatch = /.+(Safari)\\/([0-9\\.]+).*/i.exec(userAgent);\n if (sMatch) {\n return { type: sMatch[1], version: sMatch[2] };\n }\n var awkMatch = /.+(AppleWebKit)\\/([0-9\\.]+).*/i.exec(userAgent);\n if (awkMatch) {\n return { type: awkMatch[1], version: awkMatch[2] };\n }\n var anyMatch = /.*([A-Z]+)\\/([0-9\\.]+).*/i.exec(userAgent);\n if (anyMatch) {\n return { type: anyMatch[1], version: anyMatch[2] };\n }\n return { type: '', version: '' };\n}\n//# sourceMappingURL=browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/ClientDevice/browser.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/ClientDevice/index.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/ClientDevice/index.js ***! \**********************************************************************/ /*! exports provided: ClientDevice, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDevice\", function() { return ClientDevice; });\n/* harmony import */ var _browser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./browser */ \"./node_modules/@aws-amplify/core/lib-esm/ClientDevice/browser.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\nvar ClientDevice = /** @class */ (function () {\n function ClientDevice() {\n }\n ClientDevice.clientInfo = function () {\n return Object(_browser__WEBPACK_IMPORTED_MODULE_0__[\"clientInfo\"])();\n };\n ClientDevice.dimension = function () {\n return Object(_browser__WEBPACK_IMPORTED_MODULE_0__[\"dimension\"])();\n };\n return ClientDevice;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (ClientDevice);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/ClientDevice/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Credentials.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Credentials.js ***! \***************************************************************/ /*! exports provided: CredentialsClass, Credentials, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CredentialsClass\", function() { return CredentialsClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Credentials\", function() { return Credentials; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/* harmony import */ var _StorageHelper__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./StorageHelper */ \"./node_modules/@aws-amplify/core/lib-esm/StorageHelper/index.js\");\n/* harmony import */ var _JS__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./JS */ \"./node_modules/@aws-amplify/core/lib-esm/JS.js\");\n/* harmony import */ var _OAuthHelper__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./OAuthHelper */ \"./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/index.js\");\n/* harmony import */ var _Util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Util */ \"./node_modules/@aws-amplify/core/lib-esm/Util/index.js\");\n/* harmony import */ var _Amplify__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Amplify */ \"./node_modules/@aws-amplify/core/lib-esm/Amplify.js\");\n/* harmony import */ var _aws_sdk_credential_provider_cognito_identity__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/credential-provider-cognito-identity */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/client-cognito-identity */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/index.js\");\n/* harmony import */ var _Util_CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./Util/CognitoIdentityClient */ \"./node_modules/@aws-amplify/core/lib-esm/Util/CognitoIdentityClient.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\n\n\n\n\n\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Credentials');\nvar CREDENTIALS_TTL = 50 * 60 * 1000; // 50 min, can be modified on config if required in the future\nvar COGNITO_IDENTITY_KEY_PREFIX = 'CognitoIdentityId-';\nvar CredentialsClass = /** @class */ (function () {\n function CredentialsClass(config) {\n this._gettingCredPromise = null;\n this._refreshHandlers = {};\n // Allow `Auth` to be injected for SSR, but Auth isn't a required dependency for Credentials\n this.Auth = undefined;\n this.configure(config);\n this._refreshHandlers['google'] = _OAuthHelper__WEBPACK_IMPORTED_MODULE_3__[\"GoogleOAuth\"].refreshGoogleToken;\n this._refreshHandlers['facebook'] = _OAuthHelper__WEBPACK_IMPORTED_MODULE_3__[\"FacebookOAuth\"].refreshFacebookToken;\n }\n CredentialsClass.prototype.getModuleName = function () {\n return 'Credentials';\n };\n CredentialsClass.prototype.getCredSource = function () {\n return this._credentials_source;\n };\n CredentialsClass.prototype.configure = function (config) {\n if (!config)\n return this._config || {};\n this._config = Object.assign({}, this._config, config);\n var refreshHandlers = this._config.refreshHandlers;\n // If the developer has provided an object of refresh handlers,\n // then we can merge the provided handlers with the current handlers.\n if (refreshHandlers) {\n this._refreshHandlers = __assign(__assign({}, this._refreshHandlers), refreshHandlers);\n }\n this._storage = this._config.storage;\n if (!this._storage) {\n this._storage = new _StorageHelper__WEBPACK_IMPORTED_MODULE_1__[\"StorageHelper\"]().getStorage();\n }\n this._storageSync = Promise.resolve();\n if (typeof this._storage['sync'] === 'function') {\n this._storageSync = this._storage['sync']();\n }\n return this._config;\n };\n CredentialsClass.prototype.get = function () {\n logger.debug('getting credentials');\n return this._pickupCredentials();\n };\n // currently we only store the guest identity in local storage\n CredentialsClass.prototype._getCognitoIdentityIdStorageKey = function (identityPoolId) {\n return \"\" + COGNITO_IDENTITY_KEY_PREFIX + identityPoolId;\n };\n CredentialsClass.prototype._pickupCredentials = function () {\n logger.debug('picking up credentials');\n if (!this._gettingCredPromise || !this._gettingCredPromise.isPending()) {\n logger.debug('getting new cred promise');\n this._gettingCredPromise = Object(_JS__WEBPACK_IMPORTED_MODULE_2__[\"makeQuerablePromise\"])(this._keepAlive());\n }\n else {\n logger.debug('getting old cred promise');\n }\n return this._gettingCredPromise;\n };\n CredentialsClass.prototype._keepAlive = function () {\n return __awaiter(this, void 0, void 0, function () {\n var cred, _a, Auth, user_1, session, refreshToken_1, refreshRequest, err_1;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n logger.debug('checking if credentials exists and not expired');\n cred = this._credentials;\n if (cred && !this._isExpired(cred) && !this._isPastTTL()) {\n logger.debug('credentials not changed and not expired, directly return');\n return [2 /*return*/, Promise.resolve(cred)];\n }\n logger.debug('need to get a new credential or refresh the existing one');\n _a = this.Auth, Auth = _a === void 0 ? _Amplify__WEBPACK_IMPORTED_MODULE_5__[\"Amplify\"].Auth : _a;\n if (!Auth || typeof Auth.currentUserCredentials !== 'function') {\n return [2 /*return*/, Promise.reject('No Auth module registered in Amplify')];\n }\n if (!(!this._isExpired(cred) && this._isPastTTL())) return [3 /*break*/, 6];\n logger.debug('ttl has passed but token is not yet expired');\n _b.label = 1;\n case 1:\n _b.trys.push([1, 5, , 6]);\n return [4 /*yield*/, Auth.currentUserPoolUser()];\n case 2:\n user_1 = _b.sent();\n return [4 /*yield*/, Auth.currentSession()];\n case 3:\n session = _b.sent();\n refreshToken_1 = session.refreshToken;\n refreshRequest = new Promise(function (res, rej) {\n user_1.refreshSession(refreshToken_1, function (err, data) {\n return err ? rej(err) : res(data);\n });\n });\n return [4 /*yield*/, refreshRequest];\n case 4:\n _b.sent(); // note that rejections will be caught and handled in the catch block.\n return [3 /*break*/, 6];\n case 5:\n err_1 = _b.sent();\n // should not throw because user might just be on guest access or is authenticated through federation\n logger.debug('Error attempting to refreshing the session', err_1);\n return [3 /*break*/, 6];\n case 6: return [2 /*return*/, Auth.currentUserCredentials()];\n }\n });\n });\n };\n CredentialsClass.prototype.refreshFederatedToken = function (federatedInfo) {\n logger.debug('Getting federated credentials');\n var provider = federatedInfo.provider, user = federatedInfo.user, token = federatedInfo.token, identity_id = federatedInfo.identity_id;\n var expires_at = federatedInfo.expires_at;\n // Make sure expires_at is in millis\n expires_at =\n new Date(expires_at).getFullYear() === 1970\n ? expires_at * 1000\n : expires_at;\n var that = this;\n logger.debug('checking if federated jwt token expired');\n if (expires_at > new Date().getTime()) {\n // if not expired\n logger.debug('token not expired');\n return this._setCredentialsFromFederation({\n provider: provider,\n token: token,\n user: user,\n identity_id: identity_id,\n expires_at: expires_at,\n });\n }\n else {\n // if refresh handler exists\n if (that._refreshHandlers[provider] &&\n typeof that._refreshHandlers[provider] === 'function') {\n logger.debug('getting refreshed jwt token from federation provider');\n return this._providerRefreshWithRetry({\n refreshHandler: that._refreshHandlers[provider],\n provider: provider,\n user: user,\n });\n }\n else {\n logger.debug('no refresh handler for provider:', provider);\n this.clear();\n return Promise.reject('no refresh handler for provider');\n }\n }\n };\n CredentialsClass.prototype._providerRefreshWithRetry = function (_a) {\n var _this = this;\n var refreshHandler = _a.refreshHandler, provider = _a.provider, user = _a.user;\n var MAX_DELAY_MS = 10 * 1000;\n // refreshHandler will retry network errors, otherwise it will\n // return NonRetryableError to break out of jitteredExponentialRetry\n return Object(_Util__WEBPACK_IMPORTED_MODULE_4__[\"jitteredExponentialRetry\"])(refreshHandler, [], MAX_DELAY_MS)\n .then(function (data) {\n logger.debug('refresh federated token sucessfully', data);\n return _this._setCredentialsFromFederation({\n provider: provider,\n token: data.token,\n user: user,\n identity_id: data.identity_id,\n expires_at: data.expires_at,\n });\n })\n .catch(function (e) {\n var isNetworkError = typeof e === 'string' &&\n e.toLowerCase().lastIndexOf('network error', e.length) === 0;\n if (!isNetworkError) {\n _this.clear();\n }\n logger.debug('refresh federated token failed', e);\n return Promise.reject('refreshing federation token failed: ' + e);\n });\n };\n CredentialsClass.prototype._isExpired = function (credentials) {\n if (!credentials) {\n logger.debug('no credentials for expiration check');\n return true;\n }\n logger.debug('are these credentials expired?', credentials);\n var ts = Date.now();\n /* returns date object.\n https://github.com/aws/aws-sdk-js-v3/blob/v1.0.0-beta.1/packages/types/src/credentials.ts#L26\n */\n var expiration = credentials.expiration;\n return expiration.getTime() <= ts;\n };\n CredentialsClass.prototype._isPastTTL = function () {\n return this._nextCredentialsRefresh <= Date.now();\n };\n CredentialsClass.prototype._setCredentialsForGuest = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _a, identityPoolId, region, mandatorySignIn, identityId, _b, cognitoClient, credentials, cognitoIdentityParams, credentialsProvider;\n var _this = this;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n logger.debug('setting credentials for guest');\n _a = this._config, identityPoolId = _a.identityPoolId, region = _a.region, mandatorySignIn = _a.mandatorySignIn;\n if (mandatorySignIn) {\n return [2 /*return*/, Promise.reject('cannot get guest credentials when mandatory signin enabled')];\n }\n if (!identityPoolId) {\n logger.debug('No Cognito Identity pool provided for unauthenticated access');\n return [2 /*return*/, Promise.reject('No Cognito Identity pool provided for unauthenticated access')];\n }\n if (!region) {\n logger.debug('region is not configured for getting the credentials');\n return [2 /*return*/, Promise.reject('region is not configured for getting the credentials')];\n }\n _b = this;\n return [4 /*yield*/, this._getGuestIdentityId()];\n case 1:\n identityId = (_b._identityId = _c.sent());\n cognitoClient = Object(_Util_CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_8__[\"createCognitoIdentityClient\"])({\n region: region,\n });\n credentials = undefined;\n if (identityId) {\n cognitoIdentityParams = {\n identityId: identityId,\n client: cognitoClient,\n };\n credentials = Object(_aws_sdk_credential_provider_cognito_identity__WEBPACK_IMPORTED_MODULE_6__[\"fromCognitoIdentity\"])(cognitoIdentityParams)();\n }\n else {\n credentialsProvider = function () { return __awaiter(_this, void 0, void 0, function () {\n var IdentityId, cognitoIdentityParams, credentialsFromCognitoIdentity;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, cognitoClient.send(new _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_7__[\"GetIdCommand\"]({\n IdentityPoolId: identityPoolId,\n }))];\n case 1:\n IdentityId = (_a.sent()).IdentityId;\n this._identityId = IdentityId;\n cognitoIdentityParams = {\n client: cognitoClient,\n identityId: IdentityId,\n };\n credentialsFromCognitoIdentity = Object(_aws_sdk_credential_provider_cognito_identity__WEBPACK_IMPORTED_MODULE_6__[\"fromCognitoIdentity\"])(cognitoIdentityParams);\n return [2 /*return*/, credentialsFromCognitoIdentity()];\n }\n });\n }); };\n credentials = credentialsProvider().catch(function (err) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n throw err;\n });\n }); });\n }\n return [2 /*return*/, this._loadCredentials(credentials, 'guest', false, null)\n .then(function (res) {\n return res;\n })\n .catch(function (e) { return __awaiter(_this, void 0, void 0, function () {\n var credentialsProvider;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(e.name === 'ResourceNotFoundException' &&\n e.message === \"Identity '\" + identityId + \"' not found.\")) return [3 /*break*/, 2];\n logger.debug('Failed to load guest credentials');\n return [4 /*yield*/, this._removeGuestIdentityId()];\n case 1:\n _a.sent();\n credentialsProvider = function () { return __awaiter(_this, void 0, void 0, function () {\n var IdentityId, cognitoIdentityParams, credentialsFromCognitoIdentity;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, cognitoClient.send(new _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_7__[\"GetIdCommand\"]({\n IdentityPoolId: identityPoolId,\n }))];\n case 1:\n IdentityId = (_a.sent()).IdentityId;\n this._identityId = IdentityId;\n cognitoIdentityParams = {\n client: cognitoClient,\n identityId: IdentityId,\n };\n credentialsFromCognitoIdentity = Object(_aws_sdk_credential_provider_cognito_identity__WEBPACK_IMPORTED_MODULE_6__[\"fromCognitoIdentity\"])(cognitoIdentityParams);\n return [2 /*return*/, credentialsFromCognitoIdentity()];\n }\n });\n }); };\n credentials = credentialsProvider().catch(function (err) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n throw err;\n });\n }); });\n return [2 /*return*/, this._loadCredentials(credentials, 'guest', false, null)];\n case 2: return [2 /*return*/, e];\n }\n });\n }); })];\n }\n });\n });\n };\n CredentialsClass.prototype._setCredentialsFromFederation = function (params) {\n var provider = params.provider, token = params.token, identity_id = params.identity_id;\n var domains = {\n google: 'accounts.google.com',\n facebook: 'graph.facebook.com',\n amazon: 'www.amazon.com',\n developer: 'cognito-identity.amazonaws.com',\n };\n // Use custom provider url instead of the predefined ones\n var domain = domains[provider] || provider;\n if (!domain) {\n return Promise.reject('You must specify a federated provider');\n }\n var logins = {};\n logins[domain] = token;\n var _a = this._config, identityPoolId = _a.identityPoolId, region = _a.region;\n if (!identityPoolId) {\n logger.debug('No Cognito Federated Identity pool provided');\n return Promise.reject('No Cognito Federated Identity pool provided');\n }\n if (!region) {\n logger.debug('region is not configured for getting the credentials');\n return Promise.reject('region is not configured for getting the credentials');\n }\n var cognitoClient = Object(_Util_CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_8__[\"createCognitoIdentityClient\"])({\n region: region,\n });\n var credentials = undefined;\n if (identity_id) {\n var cognitoIdentityParams = {\n identityId: identity_id,\n logins: logins,\n client: cognitoClient,\n };\n credentials = Object(_aws_sdk_credential_provider_cognito_identity__WEBPACK_IMPORTED_MODULE_6__[\"fromCognitoIdentity\"])(cognitoIdentityParams)();\n }\n else {\n var cognitoIdentityParams = {\n logins: logins,\n identityPoolId: identityPoolId,\n client: cognitoClient,\n };\n credentials = Object(_aws_sdk_credential_provider_cognito_identity__WEBPACK_IMPORTED_MODULE_6__[\"fromCognitoIdentityPool\"])(cognitoIdentityParams)();\n }\n return this._loadCredentials(credentials, 'federated', true, params);\n };\n CredentialsClass.prototype._setCredentialsFromSession = function (session) {\n var _this = this;\n logger.debug('set credentials from session');\n var idToken = session.getIdToken().getJwtToken();\n var _a = this._config, region = _a.region, userPoolId = _a.userPoolId, identityPoolId = _a.identityPoolId;\n if (!identityPoolId) {\n logger.debug('No Cognito Federated Identity pool provided');\n return Promise.reject('No Cognito Federated Identity pool provided');\n }\n if (!region) {\n logger.debug('region is not configured for getting the credentials');\n return Promise.reject('region is not configured for getting the credentials');\n }\n var key = 'cognito-idp.' + region + '.amazonaws.com/' + userPoolId;\n var logins = {};\n logins[key] = idToken;\n var cognitoClient = Object(_Util_CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_8__[\"createCognitoIdentityClient\"])({\n region: region,\n });\n /*\n Retreiving identityId with GetIdCommand to mimic the behavior in the following code in aws-sdk-v3:\n https://git.io/JeDxU\n\n Note: Retreive identityId from CredentialsProvider once aws-sdk-js v3 supports this.\n */\n var credentialsProvider = function () { return __awaiter(_this, void 0, void 0, function () {\n var guestIdentityId, generatedOrRetrievedIdentityId, IdentityId, _a, _b, AccessKeyId, Expiration, SecretKey, SessionToken, primaryIdentityId;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, this._getGuestIdentityId()];\n case 1:\n guestIdentityId = _c.sent();\n if (!!guestIdentityId) return [3 /*break*/, 3];\n return [4 /*yield*/, cognitoClient.send(new _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_7__[\"GetIdCommand\"]({\n IdentityPoolId: identityPoolId,\n Logins: logins,\n }))];\n case 2:\n IdentityId = (_c.sent()).IdentityId;\n generatedOrRetrievedIdentityId = IdentityId;\n _c.label = 3;\n case 3: return [4 /*yield*/, cognitoClient.send(new _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_7__[\"GetCredentialsForIdentityCommand\"]({\n IdentityId: guestIdentityId || generatedOrRetrievedIdentityId,\n Logins: logins,\n }))];\n case 4:\n _a = _c.sent(), _b = _a.Credentials, AccessKeyId = _b.AccessKeyId, Expiration = _b.Expiration, SecretKey = _b.SecretKey, SessionToken = _b.SessionToken, primaryIdentityId = _a.IdentityId;\n this._identityId = primaryIdentityId;\n if (!guestIdentityId) return [3 /*break*/, 6];\n // if guestIdentity is found and used by GetCredentialsForIdentity\n // it will be linked to the logins provided, and disqualified as an unauth identity\n logger.debug(\"The guest identity \" + guestIdentityId + \" has been successfully linked to the logins\");\n if (guestIdentityId === primaryIdentityId) {\n logger.debug(\"The guest identity \" + guestIdentityId + \" has become the primary identity\");\n }\n // remove it from local storage to avoid being used as a guest Identity by _setCredentialsForGuest\n return [4 /*yield*/, this._removeGuestIdentityId()];\n case 5:\n // remove it from local storage to avoid being used as a guest Identity by _setCredentialsForGuest\n _c.sent();\n _c.label = 6;\n case 6: \n // https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-provider-cognito-identity/src/fromCognitoIdentity.ts#L40\n return [2 /*return*/, {\n accessKeyId: AccessKeyId,\n secretAccessKey: SecretKey,\n sessionToken: SessionToken,\n expiration: Expiration,\n identityId: primaryIdentityId,\n }];\n }\n });\n }); };\n var credentials = credentialsProvider().catch(function (err) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n throw err;\n });\n }); });\n return this._loadCredentials(credentials, 'userPool', true, null);\n };\n CredentialsClass.prototype._loadCredentials = function (credentials, source, authenticated, info) {\n var _this = this;\n var that = this;\n return new Promise(function (res, rej) {\n credentials\n .then(function (credentials) { return __awaiter(_this, void 0, void 0, function () {\n var user, provider, token, expires_at, identity_id;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('Load credentials successfully', credentials);\n if (this._identityId && !credentials.identityId) {\n credentials['identityId'] = this._identityId;\n }\n that._credentials = credentials;\n that._credentials.authenticated = authenticated;\n that._credentials_source = source;\n that._nextCredentialsRefresh = new Date().getTime() + CREDENTIALS_TTL;\n if (source === 'federated') {\n user = Object.assign({ id: this._credentials.identityId }, info.user);\n provider = info.provider, token = info.token, expires_at = info.expires_at, identity_id = info.identity_id;\n try {\n this._storage.setItem('aws-amplify-federatedInfo', JSON.stringify({\n provider: provider,\n token: token,\n user: user,\n expires_at: expires_at,\n identity_id: identity_id,\n }));\n }\n catch (e) {\n logger.debug('Failed to put federated info into auth storage', e);\n }\n }\n if (!(source === 'guest')) return [3 /*break*/, 2];\n return [4 /*yield*/, this._setGuestIdentityId(credentials.identityId)];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n res(that._credentials);\n return [2 /*return*/];\n }\n });\n }); })\n .catch(function (err) {\n if (err) {\n logger.debug('Failed to load credentials', credentials);\n logger.debug('Error loading credentials', err);\n rej(err);\n return;\n }\n });\n });\n };\n CredentialsClass.prototype.set = function (params, source) {\n if (source === 'session') {\n return this._setCredentialsFromSession(params);\n }\n else if (source === 'federation') {\n return this._setCredentialsFromFederation(params);\n }\n else if (source === 'guest') {\n return this._setCredentialsForGuest();\n }\n else {\n logger.debug('no source specified for setting credentials');\n return Promise.reject('invalid source');\n }\n };\n CredentialsClass.prototype.clear = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n this._credentials = null;\n this._credentials_source = null;\n logger.debug('removing aws-amplify-federatedInfo from storage');\n this._storage.removeItem('aws-amplify-federatedInfo');\n return [2 /*return*/];\n });\n });\n };\n /* operations on local stored guest identity */\n CredentialsClass.prototype._getGuestIdentityId = function () {\n return __awaiter(this, void 0, void 0, function () {\n var identityPoolId, e_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n identityPoolId = this._config.identityPoolId;\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this._storageSync];\n case 2:\n _a.sent();\n return [2 /*return*/, this._storage.getItem(this._getCognitoIdentityIdStorageKey(identityPoolId))];\n case 3:\n e_1 = _a.sent();\n logger.debug('Failed to get the cached guest identityId', e_1);\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n CredentialsClass.prototype._setGuestIdentityId = function (identityId) {\n return __awaiter(this, void 0, void 0, function () {\n var identityPoolId, e_2;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n identityPoolId = this._config.identityPoolId;\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this._storageSync];\n case 2:\n _a.sent();\n this._storage.setItem(this._getCognitoIdentityIdStorageKey(identityPoolId), identityId);\n return [3 /*break*/, 4];\n case 3:\n e_2 = _a.sent();\n logger.debug('Failed to cache guest identityId', e_2);\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n CredentialsClass.prototype._removeGuestIdentityId = function () {\n return __awaiter(this, void 0, void 0, function () {\n var identityPoolId;\n return __generator(this, function (_a) {\n identityPoolId = this._config.identityPoolId;\n logger.debug(\"removing \" + this._getCognitoIdentityIdStorageKey(identityPoolId) + \" from storage\");\n this._storage.removeItem(this._getCognitoIdentityIdStorageKey(identityPoolId));\n return [2 /*return*/];\n });\n });\n };\n /**\n * Compact version of credentials\n * @param {Object} credentials\n * @return {Object} - Credentials\n */\n CredentialsClass.prototype.shear = function (credentials) {\n return {\n accessKeyId: credentials.accessKeyId,\n sessionToken: credentials.sessionToken,\n secretAccessKey: credentials.secretAccessKey,\n identityId: credentials.identityId,\n authenticated: credentials.authenticated,\n };\n };\n return CredentialsClass;\n}());\n\nvar Credentials = new CredentialsClass(null);\n_Amplify__WEBPACK_IMPORTED_MODULE_5__[\"Amplify\"].register(Credentials);\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (Credentials);\n//# sourceMappingURL=Credentials.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Credentials.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Errors.js": /*!**********************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Errors.js ***! \**********************************************************/ /*! exports provided: missingConfig, invalidParameter */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"missingConfig\", function() { return missingConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invalidParameter\", function() { return invalidParameter; });\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nfunction missingConfig(name) {\n return new Error('Missing config value of ' + name);\n}\nfunction invalidParameter(name) {\n return new Error('Invalid parameter value of ' + name);\n}\n//# sourceMappingURL=Errors.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Errors.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Hub.js": /*!*******************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Hub.js ***! \*******************************************************/ /*! exports provided: HubClass, Hub, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HubClass\", function() { return HubClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Hub\", function() { return Hub; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Hub');\nvar AMPLIFY_SYMBOL = (typeof Symbol !== 'undefined' &&\n typeof Symbol.for === 'function'\n ? Symbol.for('amplify_default')\n : '@@amplify_default');\nfunction isLegacyCallback(callback) {\n return callback.onHubCapsule !== undefined;\n}\nvar HubClass = /** @class */ (function () {\n function HubClass(name) {\n this.listeners = [];\n this.patterns = [];\n this.protectedChannels = [\n 'core',\n 'auth',\n 'api',\n 'analytics',\n 'interactions',\n 'pubsub',\n 'storage',\n 'ui',\n 'xr',\n ];\n this.name = name;\n }\n // Note - Need to pass channel as a reference for removal to work and not anonymous function\n HubClass.prototype.remove = function (channel, listener) {\n if (channel instanceof RegExp) {\n var pattern_1 = this.patterns.find(function (_a) {\n var pattern = _a.pattern;\n return pattern.source === channel.source;\n });\n if (!pattern_1) {\n logger.warn(\"No listeners for \" + channel);\n return;\n }\n this.patterns = __spread(this.patterns.filter(function (x) { return x !== pattern_1; }));\n }\n else {\n var holder = this.listeners[channel];\n if (!holder) {\n logger.warn(\"No listeners for \" + channel);\n return;\n }\n this.listeners[channel] = __spread(holder.filter(function (_a) {\n var callback = _a.callback;\n return callback !== listener;\n }));\n }\n };\n HubClass.prototype.dispatch = function (channel, payload, source, ampSymbol) {\n if (source === void 0) { source = ''; }\n if (this.protectedChannels.indexOf(channel) > -1) {\n var hasAccess = ampSymbol === AMPLIFY_SYMBOL;\n if (!hasAccess) {\n logger.warn(\"WARNING: \" + channel + \" is protected and dispatching on it can have unintended consequences\");\n }\n }\n var capsule = {\n channel: channel,\n payload: __assign({}, payload),\n source: source,\n patternInfo: [],\n };\n try {\n this._toListeners(capsule);\n }\n catch (e) {\n logger.error(e);\n }\n };\n HubClass.prototype.listen = function (channel, callback, listenerName) {\n var _this = this;\n if (listenerName === void 0) { listenerName = 'noname'; }\n var cb;\n // Check for legacy onHubCapsule callback for backwards compatability\n if (isLegacyCallback(callback)) {\n logger.warn(\"WARNING onHubCapsule is Deprecated. Please pass in a callback.\");\n cb = callback.onHubCapsule.bind(callback);\n }\n else if (typeof callback !== 'function') {\n throw new Error('No callback supplied to Hub');\n }\n else {\n cb = callback;\n }\n if (channel instanceof RegExp) {\n this.patterns.push({\n pattern: channel,\n callback: cb,\n });\n }\n else {\n var holder = this.listeners[channel];\n if (!holder) {\n holder = [];\n this.listeners[channel] = holder;\n }\n holder.push({\n name: listenerName,\n callback: cb,\n });\n }\n return function () {\n _this.remove(channel, cb);\n };\n };\n HubClass.prototype._toListeners = function (capsule) {\n var channel = capsule.channel, payload = capsule.payload;\n var holder = this.listeners[channel];\n if (holder) {\n holder.forEach(function (listener) {\n logger.debug(\"Dispatching to \" + channel + \" with \", payload);\n try {\n listener.callback(capsule);\n }\n catch (e) {\n logger.error(e);\n }\n });\n }\n if (this.patterns.length > 0) {\n if (!payload.message) {\n logger.warn(\"Cannot perform pattern matching without a message key\");\n return;\n }\n var payloadStr_1 = payload.message;\n this.patterns.forEach(function (pattern) {\n var match = payloadStr_1.match(pattern.pattern);\n if (match) {\n var _a = __read(match), groups = _a.slice(1);\n var dispatchingCapsule = __assign(__assign({}, capsule), { patternInfo: groups });\n try {\n pattern.callback(dispatchingCapsule);\n }\n catch (e) {\n logger.error(e);\n }\n }\n });\n }\n };\n return HubClass;\n}());\n\n/*We export a __default__ instance of HubClass to use it as a\npseudo Singleton for the main messaging bus, however you can still create\nyour own instance of HubClass() for a separate \"private bus\" of events.*/\nvar Hub = new HubClass('__default__');\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (Hub);\n//# sourceMappingURL=Hub.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Hub.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/I18n/I18n.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/I18n/I18n.js ***! \*************************************************************/ /*! exports provided: I18n */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"I18n\", function() { return I18n; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('I18n');\n/**\n * Language transition class\n */\nvar I18n = /** @class */ (function () {\n /**\n * @constructor\n * Initialize with configurations\n * @param {Object} options\n */\n function I18n(options) {\n /**\n * @private\n */\n this._options = null;\n /**\n * @private\n */\n this._lang = null;\n /**\n * @private\n */\n this._dict = {};\n this._options = Object.assign({}, options);\n this._lang = this._options.language;\n if (!this._lang &&\n typeof window !== 'undefined' &&\n window &&\n window.navigator) {\n this._lang = window.navigator.language;\n }\n logger.debug(this._lang);\n }\n /**\n * @method\n * Explicitly setting language\n * @param {String} lang\n */\n I18n.prototype.setLanguage = function (lang) {\n this._lang = lang;\n };\n /**\n * @method\n * Get value\n * @param {String} key\n * @param {String} defVal - Default value\n */\n I18n.prototype.get = function (key, defVal) {\n if (defVal === void 0) { defVal = undefined; }\n if (!this._lang) {\n return typeof defVal !== 'undefined' ? defVal : key;\n }\n var lang = this._lang;\n var val = this.getByLanguage(key, lang);\n if (val) {\n return val;\n }\n if (lang.indexOf('-') > 0) {\n val = this.getByLanguage(key, lang.split('-')[0]);\n }\n if (val) {\n return val;\n }\n return typeof defVal !== 'undefined' ? defVal : key;\n };\n /**\n * @method\n * Get value according to specified language\n * @param {String} key\n * @param {String} language - Specified langurage to be used\n * @param {String} defVal - Default value\n */\n I18n.prototype.getByLanguage = function (key, language, defVal) {\n if (defVal === void 0) { defVal = null; }\n if (!language) {\n return defVal;\n }\n var lang_dict = this._dict[language];\n if (!lang_dict) {\n return defVal;\n }\n return lang_dict[key];\n };\n /**\n * @method\n * Add vocabularies for one language\n * @param {String} language - Language of the dictionary\n * @param {Object} vocabularies - Object that has key-value as dictionary entry\n */\n I18n.prototype.putVocabulariesForLanguage = function (language, vocabularies) {\n var lang_dict = this._dict[language];\n if (!lang_dict) {\n lang_dict = this._dict[language] = {};\n }\n Object.assign(lang_dict, vocabularies);\n };\n /**\n * @method\n * Add vocabularies for one language\n * @param {Object} vocabularies - Object that has language as key,\n * vocabularies of each language as value\n */\n I18n.prototype.putVocabularies = function (vocabularies) {\n var _this = this;\n Object.keys(vocabularies).map(function (key) {\n _this.putVocabulariesForLanguage(key, vocabularies[key]);\n });\n };\n return I18n;\n}());\n\n//# sourceMappingURL=I18n.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/I18n/I18n.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/I18n/index.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/I18n/index.js ***! \**************************************************************/ /*! exports provided: I18n, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"I18n\", function() { return I18n; });\n/* harmony import */ var _I18n__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./I18n */ \"./node_modules/@aws-amplify/core/lib-esm/I18n/I18n.js\");\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/* harmony import */ var _Amplify__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Amplify */ \"./node_modules/@aws-amplify/core/lib-esm/Amplify.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('I18n');\nvar _config = null;\nvar _i18n = null;\n/**\n * Export I18n APIs\n */\nvar I18n = /** @class */ (function () {\n function I18n() {\n }\n /**\n * @static\n * @method\n * Configure I18n part\n * @param {Object} config - Configuration of the I18n\n */\n I18n.configure = function (config) {\n logger.debug('configure I18n');\n if (!config) {\n return _config;\n }\n _config = Object.assign({}, _config, config.I18n || config);\n I18n.createInstance();\n return _config;\n };\n I18n.getModuleName = function () {\n return 'I18n';\n };\n /**\n * @static\n * @method\n * Create an instance of I18n for the library\n */\n I18n.createInstance = function () {\n logger.debug('create I18n instance');\n if (_i18n) {\n return;\n }\n _i18n = new _I18n__WEBPACK_IMPORTED_MODULE_0__[\"I18n\"](_config);\n };\n /**\n * @static @method\n * Explicitly setting language\n * @param {String} lang\n */\n I18n.setLanguage = function (lang) {\n I18n.checkConfig();\n return _i18n.setLanguage(lang);\n };\n /**\n * @static @method\n * Get value\n * @param {String} key\n * @param {String} defVal - Default value\n */\n I18n.get = function (key, defVal) {\n if (!I18n.checkConfig()) {\n return typeof defVal === 'undefined' ? key : defVal;\n }\n return _i18n.get(key, defVal);\n };\n /**\n * @static\n * @method\n * Add vocabularies for one language\n * @param {String} langurage - Language of the dictionary\n * @param {Object} vocabularies - Object that has key-value as dictionary entry\n */\n I18n.putVocabulariesForLanguage = function (language, vocabularies) {\n I18n.checkConfig();\n return _i18n.putVocabulariesForLanguage(language, vocabularies);\n };\n /**\n * @static\n * @method\n * Add vocabularies for one language\n * @param {Object} vocabularies - Object that has language as key,\n * vocabularies of each language as value\n */\n I18n.putVocabularies = function (vocabularies) {\n I18n.checkConfig();\n return _i18n.putVocabularies(vocabularies);\n };\n I18n.checkConfig = function () {\n if (!_i18n) {\n _i18n = new _I18n__WEBPACK_IMPORTED_MODULE_0__[\"I18n\"](_config);\n }\n return true;\n };\n return I18n;\n}());\n\n_Amplify__WEBPACK_IMPORTED_MODULE_2__[\"Amplify\"].register(I18n);\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (I18n);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/I18n/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/JS.js": /*!******************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/JS.js ***! \******************************************************/ /*! exports provided: isEmpty, sortByField, objectLessAttributes, filenameToContentType, isTextFile, generateRandomString, makeQuerablePromise, isWebWorker, browserOrNode, transferKeyToLowerCase, transferKeyToUpperCase, isStrictObject, JS, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isEmpty\", function() { return isEmpty; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"sortByField\", function() { return sortByField; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"objectLessAttributes\", function() { return objectLessAttributes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"filenameToContentType\", function() { return filenameToContentType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTextFile\", function() { return isTextFile; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"generateRandomString\", function() { return generateRandomString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"makeQuerablePromise\", function() { return makeQuerablePromise; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isWebWorker\", function() { return isWebWorker; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"browserOrNode\", function() { return browserOrNode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"transferKeyToLowerCase\", function() { return transferKeyToLowerCase; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"transferKeyToUpperCase\", function() { return transferKeyToUpperCase; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isStrictObject\", function() { return isStrictObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JS\", function() { return JS; });\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar MIME_MAP = [\n { type: 'text/plain', ext: 'txt' },\n { type: 'text/html', ext: 'html' },\n { type: 'text/javascript', ext: 'js' },\n { type: 'text/css', ext: 'css' },\n { type: 'text/csv', ext: 'csv' },\n { type: 'text/yaml', ext: 'yml' },\n { type: 'text/yaml', ext: 'yaml' },\n { type: 'text/calendar', ext: 'ics' },\n { type: 'text/calendar', ext: 'ical' },\n { type: 'image/apng', ext: 'apng' },\n { type: 'image/bmp', ext: 'bmp' },\n { type: 'image/gif', ext: 'gif' },\n { type: 'image/x-icon', ext: 'ico' },\n { type: 'image/x-icon', ext: 'cur' },\n { type: 'image/jpeg', ext: 'jpg' },\n { type: 'image/jpeg', ext: 'jpeg' },\n { type: 'image/jpeg', ext: 'jfif' },\n { type: 'image/jpeg', ext: 'pjp' },\n { type: 'image/jpeg', ext: 'pjpeg' },\n { type: 'image/png', ext: 'png' },\n { type: 'image/svg+xml', ext: 'svg' },\n { type: 'image/tiff', ext: 'tif' },\n { type: 'image/tiff', ext: 'tiff' },\n { type: 'image/webp', ext: 'webp' },\n { type: 'application/json', ext: 'json' },\n { type: 'application/xml', ext: 'xml' },\n { type: 'application/x-sh', ext: 'sh' },\n { type: 'application/zip', ext: 'zip' },\n { type: 'application/x-rar-compressed', ext: 'rar' },\n { type: 'application/x-tar', ext: 'tar' },\n { type: 'application/x-bzip', ext: 'bz' },\n { type: 'application/x-bzip2', ext: 'bz2' },\n { type: 'application/pdf', ext: 'pdf' },\n { type: 'application/java-archive', ext: 'jar' },\n { type: 'application/msword', ext: 'doc' },\n { type: 'application/vnd.ms-excel', ext: 'xls' },\n { type: 'application/vnd.ms-excel', ext: 'xlsx' },\n { type: 'message/rfc822', ext: 'eml' },\n];\nvar isEmpty = function (obj) {\n if (obj === void 0) { obj = {}; }\n return Object.keys(obj).length === 0;\n};\nvar sortByField = function (list, field, dir) {\n if (!list || !list.sort) {\n return false;\n }\n var dirX = dir && dir === 'desc' ? -1 : 1;\n list.sort(function (a, b) {\n var a_val = a[field];\n var b_val = b[field];\n if (typeof b_val === 'undefined') {\n return typeof a_val === 'undefined' ? 0 : 1 * dirX;\n }\n if (typeof a_val === 'undefined') {\n return -1 * dirX;\n }\n if (a_val < b_val) {\n return -1 * dirX;\n }\n if (a_val > b_val) {\n return 1 * dirX;\n }\n return 0;\n });\n return true;\n};\nvar objectLessAttributes = function (obj, less) {\n var ret = Object.assign({}, obj);\n if (less) {\n if (typeof less === 'string') {\n delete ret[less];\n }\n else {\n less.forEach(function (attr) {\n delete ret[attr];\n });\n }\n }\n return ret;\n};\nvar filenameToContentType = function (filename, defVal) {\n if (defVal === void 0) { defVal = 'application/octet-stream'; }\n var name = filename.toLowerCase();\n var filtered = MIME_MAP.filter(function (mime) { return name.endsWith('.' + mime.ext); });\n return filtered.length > 0 ? filtered[0].type : defVal;\n};\nvar isTextFile = function (contentType) {\n var type = contentType.toLowerCase();\n if (type.startsWith('text/')) {\n return true;\n }\n return ('application/json' === type ||\n 'application/xml' === type ||\n 'application/sh' === type);\n};\nvar generateRandomString = function () {\n var result = '';\n var chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';\n for (var i = 32; i > 0; i -= 1) {\n result += chars[Math.floor(Math.random() * chars.length)];\n }\n return result;\n};\nvar makeQuerablePromise = function (promise) {\n if (promise.isResolved)\n return promise;\n var isPending = true;\n var isRejected = false;\n var isFullfilled = false;\n var result = promise.then(function (data) {\n isFullfilled = true;\n isPending = false;\n return data;\n }, function (e) {\n isRejected = true;\n isPending = false;\n throw e;\n });\n result.isFullfilled = function () { return isFullfilled; };\n result.isPending = function () { return isPending; };\n result.isRejected = function () { return isRejected; };\n return result;\n};\nvar isWebWorker = function () {\n if (typeof self === 'undefined') {\n return false;\n }\n var selfContext = self;\n return typeof selfContext.WorkerGlobalScope !== 'undefined' &&\n self instanceof selfContext.WorkerGlobalScope;\n};\nvar browserOrNode = function () {\n var isBrowser = typeof window !== 'undefined' && typeof window.document !== 'undefined';\n var isNode = typeof process !== 'undefined' &&\n process.versions != null &&\n process.versions.node != null;\n return {\n isBrowser: isBrowser,\n isNode: isNode,\n };\n};\n/**\n * transfer the first letter of the keys to lowercase\n * @param {Object} obj - the object need to be transferred\n * @param {Array} whiteListForItself - whitelist itself from being transferred\n * @param {Array} whiteListForChildren - whitelist its children keys from being transferred\n */\nvar transferKeyToLowerCase = function (obj, whiteListForItself, whiteListForChildren) {\n if (whiteListForItself === void 0) { whiteListForItself = []; }\n if (whiteListForChildren === void 0) { whiteListForChildren = []; }\n if (!isStrictObject(obj))\n return obj;\n var ret = {};\n for (var key in obj) {\n if (obj.hasOwnProperty(key)) {\n var transferedKey = whiteListForItself.includes(key)\n ? key\n : key[0].toLowerCase() + key.slice(1);\n ret[transferedKey] = whiteListForChildren.includes(key)\n ? obj[key]\n : transferKeyToLowerCase(obj[key], whiteListForItself, whiteListForChildren);\n }\n }\n return ret;\n};\n/**\n * transfer the first letter of the keys to lowercase\n * @param {Object} obj - the object need to be transferred\n * @param {Array} whiteListForItself - whitelist itself from being transferred\n * @param {Array} whiteListForChildren - whitelist its children keys from being transferred\n */\nvar transferKeyToUpperCase = function (obj, whiteListForItself, whiteListForChildren) {\n if (whiteListForItself === void 0) { whiteListForItself = []; }\n if (whiteListForChildren === void 0) { whiteListForChildren = []; }\n if (!isStrictObject(obj))\n return obj;\n var ret = {};\n for (var key in obj) {\n if (obj.hasOwnProperty(key)) {\n var transferredKey = whiteListForItself.includes(key)\n ? key\n : key[0].toUpperCase() + key.slice(1);\n ret[transferredKey] = whiteListForChildren.includes(key)\n ? obj[key]\n : transferKeyToUpperCase(obj[key], whiteListForItself, whiteListForChildren);\n }\n }\n return ret;\n};\n/**\n * Return true if the object is a strict object\n * which means it's not Array, Function, Number, String, Boolean or Null\n * @param obj the Object\n */\nvar isStrictObject = function (obj) {\n return (obj instanceof Object &&\n !(obj instanceof Array) &&\n !(obj instanceof Function) &&\n !(obj instanceof Number) &&\n !(obj instanceof String) &&\n !(obj instanceof Boolean));\n};\n/**\n * @deprecated use per-function imports\n */\nvar JS = /** @class */ (function () {\n function JS() {\n }\n JS.isEmpty = isEmpty;\n JS.sortByField = sortByField;\n JS.objectLessAttributes = objectLessAttributes;\n JS.filenameToContentType = filenameToContentType;\n JS.isTextFile = isTextFile;\n JS.generateRandomString = generateRandomString;\n JS.makeQuerablePromise = makeQuerablePromise;\n JS.isWebWorker = isWebWorker;\n JS.browserOrNode = browserOrNode;\n JS.transferKeyToLowerCase = transferKeyToLowerCase;\n JS.transferKeyToUpperCase = transferKeyToUpperCase;\n JS.isStrictObject = isStrictObject;\n return JS;\n}());\n\n/**\n * @deprecated use per-function imports\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (JS);\n//# sourceMappingURL=JS.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node-libs-browser/mock/process.js */ \"./node_modules/node-libs-browser/mock/process.js\")))\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/JS.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Logger/ConsoleLogger.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Logger/ConsoleLogger.js ***! \************************************************************************/ /*! exports provided: LOG_TYPE, ConsoleLogger */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LOG_TYPE\", function() { return LOG_TYPE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConsoleLogger\", function() { return ConsoleLogger; });\n/* harmony import */ var _Util_Constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Util/Constants */ \"./node_modules/@aws-amplify/core/lib-esm/Util/Constants.js\");\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\nvar LOG_LEVELS = {\n VERBOSE: 1,\n DEBUG: 2,\n INFO: 3,\n WARN: 4,\n ERROR: 5,\n};\nvar LOG_TYPE;\n(function (LOG_TYPE) {\n LOG_TYPE[\"DEBUG\"] = \"DEBUG\";\n LOG_TYPE[\"ERROR\"] = \"ERROR\";\n LOG_TYPE[\"INFO\"] = \"INFO\";\n LOG_TYPE[\"WARN\"] = \"WARN\";\n LOG_TYPE[\"VERBOSE\"] = \"VERBOSE\";\n})(LOG_TYPE || (LOG_TYPE = {}));\n/**\n * Write logs\n * @class Logger\n */\nvar ConsoleLogger = /** @class */ (function () {\n /**\n * @constructor\n * @param {string} name - Name of the logger\n */\n function ConsoleLogger(name, level) {\n if (level === void 0) { level = LOG_TYPE.WARN; }\n this.name = name;\n this.level = level;\n this._pluggables = [];\n }\n ConsoleLogger.prototype._padding = function (n) {\n return n < 10 ? '0' + n : '' + n;\n };\n ConsoleLogger.prototype._ts = function () {\n var dt = new Date();\n return ([this._padding(dt.getMinutes()), this._padding(dt.getSeconds())].join(':') +\n '.' +\n dt.getMilliseconds());\n };\n ConsoleLogger.prototype.configure = function (config) {\n if (!config)\n return this._config;\n this._config = config;\n return this._config;\n };\n /**\n * Write log\n * @method\n * @memeberof Logger\n * @param {LOG_TYPE|string} type - log type, default INFO\n * @param {string|object} msg - Logging message or object\n */\n ConsoleLogger.prototype._log = function (type) {\n var e_1, _a;\n var msg = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n msg[_i - 1] = arguments[_i];\n }\n var logger_level_name = this.level;\n if (ConsoleLogger.LOG_LEVEL) {\n logger_level_name = ConsoleLogger.LOG_LEVEL;\n }\n if (typeof window !== 'undefined' && window.LOG_LEVEL) {\n logger_level_name = window.LOG_LEVEL;\n }\n var logger_level = LOG_LEVELS[logger_level_name];\n var type_level = LOG_LEVELS[type];\n if (!(type_level >= logger_level)) {\n // Do nothing if type is not greater than or equal to logger level (handle undefined)\n return;\n }\n var log = console.log.bind(console);\n if (type === LOG_TYPE.ERROR && console.error) {\n log = console.error.bind(console);\n }\n if (type === LOG_TYPE.WARN && console.warn) {\n log = console.warn.bind(console);\n }\n var prefix = \"[\" + type + \"] \" + this._ts() + \" \" + this.name;\n var message = '';\n if (msg.length === 1 && typeof msg[0] === 'string') {\n message = prefix + \" - \" + msg[0];\n log(message);\n }\n else if (msg.length === 1) {\n message = prefix + \" \" + msg[0];\n log(prefix, msg[0]);\n }\n else if (typeof msg[0] === 'string') {\n var obj = msg.slice(1);\n if (obj.length === 1) {\n obj = obj[0];\n }\n message = prefix + \" - \" + msg[0] + \" \" + obj;\n log(prefix + \" - \" + msg[0], obj);\n }\n else {\n message = prefix + \" \" + msg;\n log(prefix, msg);\n }\n try {\n for (var _b = __values(this._pluggables), _c = _b.next(); !_c.done; _c = _b.next()) {\n var plugin = _c.value;\n var logEvent = { message: message, timestamp: Date.now() };\n plugin.pushLogs([logEvent]);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n };\n /**\n * Write General log. Default to INFO\n * @method\n * @memeberof Logger\n * @param {string|object} msg - Logging message or object\n */\n ConsoleLogger.prototype.log = function () {\n var msg = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n msg[_i] = arguments[_i];\n }\n this._log.apply(this, __spread([LOG_TYPE.INFO], msg));\n };\n /**\n * Write INFO log\n * @method\n * @memeberof Logger\n * @param {string|object} msg - Logging message or object\n */\n ConsoleLogger.prototype.info = function () {\n var msg = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n msg[_i] = arguments[_i];\n }\n this._log.apply(this, __spread([LOG_TYPE.INFO], msg));\n };\n /**\n * Write WARN log\n * @method\n * @memeberof Logger\n * @param {string|object} msg - Logging message or object\n */\n ConsoleLogger.prototype.warn = function () {\n var msg = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n msg[_i] = arguments[_i];\n }\n this._log.apply(this, __spread([LOG_TYPE.WARN], msg));\n };\n /**\n * Write ERROR log\n * @method\n * @memeberof Logger\n * @param {string|object} msg - Logging message or object\n */\n ConsoleLogger.prototype.error = function () {\n var msg = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n msg[_i] = arguments[_i];\n }\n this._log.apply(this, __spread([LOG_TYPE.ERROR], msg));\n };\n /**\n * Write DEBUG log\n * @method\n * @memeberof Logger\n * @param {string|object} msg - Logging message or object\n */\n ConsoleLogger.prototype.debug = function () {\n var msg = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n msg[_i] = arguments[_i];\n }\n this._log.apply(this, __spread([LOG_TYPE.DEBUG], msg));\n };\n /**\n * Write VERBOSE log\n * @method\n * @memeberof Logger\n * @param {string|object} msg - Logging message or object\n */\n ConsoleLogger.prototype.verbose = function () {\n var msg = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n msg[_i] = arguments[_i];\n }\n this._log.apply(this, __spread([LOG_TYPE.VERBOSE], msg));\n };\n ConsoleLogger.prototype.addPluggable = function (pluggable) {\n if (pluggable && pluggable.getCategoryName() === _Util_Constants__WEBPACK_IMPORTED_MODULE_0__[\"AWS_CLOUDWATCH_CATEGORY\"]) {\n this._pluggables.push(pluggable);\n pluggable.configure(this._config);\n }\n };\n ConsoleLogger.prototype.listPluggables = function () {\n return this._pluggables;\n };\n ConsoleLogger.LOG_LEVEL = null;\n return ConsoleLogger;\n}());\n\n//# sourceMappingURL=ConsoleLogger.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Logger/ConsoleLogger.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Logger/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Logger/index.js ***! \****************************************************************/ /*! exports provided: LOG_TYPE, ConsoleLogger */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _ConsoleLogger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ConsoleLogger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/ConsoleLogger.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LOG_TYPE\", function() { return _ConsoleLogger__WEBPACK_IMPORTED_MODULE_0__[\"LOG_TYPE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConsoleLogger\", function() { return _ConsoleLogger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]; });\n\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Logger/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/FacebookOAuth.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/FacebookOAuth.js ***! \*****************************************************************************/ /*! exports provided: FacebookOAuth, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FacebookOAuth\", function() { return FacebookOAuth; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/* harmony import */ var _JS__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../JS */ \"./node_modules/@aws-amplify/core/lib-esm/JS.js\");\n/* harmony import */ var _Util__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Util */ \"./node_modules/@aws-amplify/core/lib-esm/Util/index.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('CognitoCredentials');\nvar waitForInit = new Promise(function (res, rej) {\n if (!Object(_JS__WEBPACK_IMPORTED_MODULE_1__[\"browserOrNode\"])().isBrowser) {\n logger.debug('not in the browser, directly resolved');\n return res();\n }\n var fb = window['FB'];\n if (fb) {\n logger.debug('FB SDK already loaded');\n return res();\n }\n else {\n setTimeout(function () {\n return res();\n }, 2000);\n }\n});\nvar FacebookOAuth = /** @class */ (function () {\n function FacebookOAuth() {\n this.initialized = false;\n this.refreshFacebookToken = this.refreshFacebookToken.bind(this);\n this._refreshFacebookTokenImpl = this._refreshFacebookTokenImpl.bind(this);\n }\n FacebookOAuth.prototype.refreshFacebookToken = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!!this.initialized) return [3 /*break*/, 2];\n logger.debug('need to wait for the Facebook SDK loaded');\n return [4 /*yield*/, waitForInit];\n case 1:\n _a.sent();\n this.initialized = true;\n logger.debug('finish waiting');\n _a.label = 2;\n case 2: return [2 /*return*/, this._refreshFacebookTokenImpl()];\n }\n });\n });\n };\n FacebookOAuth.prototype._refreshFacebookTokenImpl = function () {\n var fb = null;\n if (Object(_JS__WEBPACK_IMPORTED_MODULE_1__[\"browserOrNode\"])().isBrowser)\n fb = window['FB'];\n if (!fb) {\n var errorMessage = 'no fb sdk available';\n logger.debug(errorMessage);\n return Promise.reject(new _Util__WEBPACK_IMPORTED_MODULE_2__[\"NonRetryableError\"](errorMessage));\n }\n return new Promise(function (res, rej) {\n fb.getLoginStatus(function (fbResponse) {\n if (!fbResponse || !fbResponse.authResponse) {\n var errorMessage = 'no response from facebook when refreshing the jwt token';\n logger.debug(errorMessage);\n // There is no definitive indication for a network error in\n // fbResponse, so we are treating it as an invalid token.\n rej(new _Util__WEBPACK_IMPORTED_MODULE_2__[\"NonRetryableError\"](errorMessage));\n }\n else {\n var response = fbResponse.authResponse;\n var accessToken = response.accessToken, expiresIn = response.expiresIn;\n var date = new Date();\n var expires_at = expiresIn * 1000 + date.getTime();\n if (!accessToken) {\n var errorMessage = 'the jwtToken is undefined';\n logger.debug(errorMessage);\n rej(new _Util__WEBPACK_IMPORTED_MODULE_2__[\"NonRetryableError\"](errorMessage));\n }\n res({\n token: accessToken,\n expires_at: expires_at,\n });\n }\n }, { scope: 'public_profile,email' });\n });\n };\n return FacebookOAuth;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (FacebookOAuth);\n//# sourceMappingURL=FacebookOAuth.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/FacebookOAuth.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/GoogleOAuth.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/GoogleOAuth.js ***! \***************************************************************************/ /*! exports provided: GoogleOAuth, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GoogleOAuth\", function() { return GoogleOAuth; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/* harmony import */ var _JS__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../JS */ \"./node_modules/@aws-amplify/core/lib-esm/JS.js\");\n/* harmony import */ var _Util__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Util */ \"./node_modules/@aws-amplify/core/lib-esm/Util/index.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('CognitoCredentials');\nvar waitForInit = new Promise(function (res, rej) {\n if (!Object(_JS__WEBPACK_IMPORTED_MODULE_1__[\"browserOrNode\"])().isBrowser) {\n logger.debug('not in the browser, directly resolved');\n return res();\n }\n var ga = window['gapi'] && window['gapi'].auth2 ? window['gapi'].auth2 : null;\n if (ga) {\n logger.debug('google api already loaded');\n return res();\n }\n else {\n setTimeout(function () {\n return res();\n }, 2000);\n }\n});\nvar GoogleOAuth = /** @class */ (function () {\n function GoogleOAuth() {\n this.initialized = false;\n this.refreshGoogleToken = this.refreshGoogleToken.bind(this);\n this._refreshGoogleTokenImpl = this._refreshGoogleTokenImpl.bind(this);\n }\n GoogleOAuth.prototype.refreshGoogleToken = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!!this.initialized) return [3 /*break*/, 2];\n logger.debug('need to wait for the Google SDK loaded');\n return [4 /*yield*/, waitForInit];\n case 1:\n _a.sent();\n this.initialized = true;\n logger.debug('finish waiting');\n _a.label = 2;\n case 2: return [2 /*return*/, this._refreshGoogleTokenImpl()];\n }\n });\n });\n };\n GoogleOAuth.prototype._refreshGoogleTokenImpl = function () {\n var ga = null;\n if (Object(_JS__WEBPACK_IMPORTED_MODULE_1__[\"browserOrNode\"])().isBrowser)\n ga = window['gapi'] && window['gapi'].auth2 ? window['gapi'].auth2 : null;\n if (!ga) {\n logger.debug('no gapi auth2 available');\n return Promise.reject('no gapi auth2 available');\n }\n return new Promise(function (res, rej) {\n ga.getAuthInstance()\n .then(function (googleAuth) {\n if (!googleAuth) {\n logger.debug('google Auth undefined');\n rej(new _Util__WEBPACK_IMPORTED_MODULE_2__[\"NonRetryableError\"]('google Auth undefined'));\n }\n var googleUser = googleAuth.currentUser.get();\n // refresh the token\n if (googleUser.isSignedIn()) {\n logger.debug('refreshing the google access token');\n googleUser\n .reloadAuthResponse()\n .then(function (authResponse) {\n var id_token = authResponse.id_token, expires_at = authResponse.expires_at;\n res({ token: id_token, expires_at: expires_at });\n })\n .catch(function (err) {\n if (err && err.error === 'network_error') {\n // Not using NonRetryableError so handler will be retried\n rej('Network error reloading google auth response');\n }\n else {\n rej(new _Util__WEBPACK_IMPORTED_MODULE_2__[\"NonRetryableError\"]('Failed to reload google auth response'));\n }\n });\n }\n else {\n rej(new _Util__WEBPACK_IMPORTED_MODULE_2__[\"NonRetryableError\"]('User is not signed in with Google'));\n }\n })\n .catch(function (err) {\n logger.debug('Failed to refresh google token', err);\n rej(new _Util__WEBPACK_IMPORTED_MODULE_2__[\"NonRetryableError\"]('Failed to refresh google token'));\n });\n });\n };\n return GoogleOAuth;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (GoogleOAuth);\n//# sourceMappingURL=GoogleOAuth.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/GoogleOAuth.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/index.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/index.js ***! \*********************************************************************/ /*! exports provided: GoogleOAuth, FacebookOAuth */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GoogleOAuth\", function() { return GoogleOAuth; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FacebookOAuth\", function() { return FacebookOAuth; });\n/* harmony import */ var _GoogleOAuth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./GoogleOAuth */ \"./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/GoogleOAuth.js\");\n/* harmony import */ var _FacebookOAuth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FacebookOAuth */ \"./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/FacebookOAuth.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\nvar GoogleOAuth = new _GoogleOAuth__WEBPACK_IMPORTED_MODULE_0__[\"GoogleOAuth\"]();\nvar FacebookOAuth = new _FacebookOAuth__WEBPACK_IMPORTED_MODULE_1__[\"FacebookOAuth\"]();\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Parser.js": /*!**********************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Parser.js ***! \**********************************************************/ /*! exports provided: parseMobileHubConfig, Parser, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseMobileHubConfig\", function() { return parseMobileHubConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Parser\", function() { return Parser; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Parser');\nvar parseMobileHubConfig = function (config) {\n var amplifyConfig = {};\n // Analytics\n if (config['aws_mobile_analytics_app_id']) {\n var Analytics = {\n AWSPinpoint: {\n appId: config['aws_mobile_analytics_app_id'],\n region: config['aws_mobile_analytics_app_region'],\n },\n };\n amplifyConfig.Analytics = Analytics;\n }\n // Auth\n if (config['aws_cognito_identity_pool_id'] || config['aws_user_pools_id']) {\n amplifyConfig.Auth = {\n userPoolId: config['aws_user_pools_id'],\n userPoolWebClientId: config['aws_user_pools_web_client_id'],\n region: config['aws_cognito_region'],\n identityPoolId: config['aws_cognito_identity_pool_id'],\n identityPoolRegion: config['aws_cognito_region'],\n mandatorySignIn: config['aws_mandatory_sign_in'] === 'enable',\n signUpVerificationMethod: config['aws_cognito_sign_up_verification_method'] || 'code',\n };\n }\n // Storage\n var storageConfig;\n if (config['aws_user_files_s3_bucket']) {\n storageConfig = {\n AWSS3: {\n bucket: config['aws_user_files_s3_bucket'],\n region: config['aws_user_files_s3_bucket_region'],\n dangerouslyConnectToHttpEndpointForTesting: config['aws_user_files_s3_dangerously_connect_to_http_endpoint_for_testing'],\n },\n };\n }\n else {\n storageConfig = config ? config.Storage || config : {};\n }\n // Logging\n if (config['Logging']) {\n amplifyConfig.Logging = __assign(__assign({}, config['Logging']), { region: config['aws_project_region'] });\n }\n // Geo\n if (config['geo']) {\n amplifyConfig.Geo = Object.assign({}, config.geo);\n if (config.geo['amazon_location_service']) {\n amplifyConfig.Geo = {\n AmazonLocationService: config.geo['amazon_location_service'],\n };\n }\n }\n amplifyConfig.Analytics = Object.assign({}, amplifyConfig.Analytics, config.Analytics);\n amplifyConfig.Auth = Object.assign({}, amplifyConfig.Auth, config.Auth);\n amplifyConfig.Storage = Object.assign({}, storageConfig);\n amplifyConfig.Logging = Object.assign({}, amplifyConfig.Logging, config.Logging);\n logger.debug('parse config', config, 'to amplifyconfig', amplifyConfig);\n return amplifyConfig;\n};\n/**\n * @deprecated use per-function export\n */\nvar Parser = /** @class */ (function () {\n function Parser() {\n }\n Parser.parseMobilehubConfig = parseMobileHubConfig;\n return Parser;\n}());\n\n/**\n * @deprecated use per-function export\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (Parser);\n//# sourceMappingURL=Parser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Parser.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Platform/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Platform/index.js ***! \******************************************************************/ /*! exports provided: Platform, getAmplifyUserAgent, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Platform\", function() { return Platform; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getAmplifyUserAgent\", function() { return getAmplifyUserAgent; });\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./version */ \"./node_modules/@aws-amplify/core/lib-esm/Platform/version.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\nvar BASE_USER_AGENT = \"aws-amplify/\" + _version__WEBPACK_IMPORTED_MODULE_0__[\"version\"];\nvar Platform = {\n userAgent: BASE_USER_AGENT + \" js\",\n product: '',\n navigator: null,\n isReactNative: false,\n};\nif (typeof navigator !== 'undefined' && navigator.product) {\n Platform.product = navigator.product || '';\n Platform.navigator = navigator || null;\n switch (navigator.product) {\n case 'ReactNative':\n Platform.userAgent = BASE_USER_AGENT + \" react-native\";\n Platform.isReactNative = true;\n break;\n default:\n Platform.userAgent = BASE_USER_AGENT + \" js\";\n Platform.isReactNative = false;\n break;\n }\n}\nvar getAmplifyUserAgent = function (content) {\n return \"\" + Platform.userAgent + (content ? content : '');\n};\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (Platform);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Platform/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Platform/version.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Platform/version.js ***! \********************************************************************/ /*! exports provided: version */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return version; });\n// generated by genversion\nvar version = '4.7.14';\n//# sourceMappingURL=version.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Platform/version.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Providers/AWSCloudWatchProvider.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Providers/AWSCloudWatchProvider.js ***! \***********************************************************************************/ /*! exports provided: AWSCloudWatchProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSCloudWatchProvider\", function() { return AWSCloudWatchProvider; });\n/* harmony import */ var _aws_sdk_client_cloudwatch_logs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/client-cloudwatch-logs */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/index.js\");\n/* harmony import */ var ___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../.. */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/* harmony import */ var _Platform__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Platform */ \"./node_modules/@aws-amplify/core/lib-esm/Platform/index.js\");\n/* harmony import */ var _Parser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../Parser */ \"./node_modules/@aws-amplify/core/lib-esm/Parser.js\");\n/* harmony import */ var _Util_Constants__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../Util/Constants */ \"./node_modules/@aws-amplify/core/lib-esm/Util/Constants.js\");\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\n\n\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_2__[\"ConsoleLogger\"]('AWSCloudWatch');\nvar AWSCloudWatchProvider = /** @class */ (function () {\n function AWSCloudWatchProvider(config) {\n this.configure(config);\n this._dataTracker = {\n eventUploadInProgress: false,\n logEvents: [],\n };\n this._currentLogBatch = [];\n this._initiateLogPushInterval();\n }\n AWSCloudWatchProvider.prototype.getProviderName = function () {\n return AWSCloudWatchProvider.PROVIDER_NAME;\n };\n AWSCloudWatchProvider.prototype.getCategoryName = function () {\n return AWSCloudWatchProvider.CATEGORY;\n };\n AWSCloudWatchProvider.prototype.getLogQueue = function () {\n return this._dataTracker.logEvents;\n };\n AWSCloudWatchProvider.prototype.configure = function (config) {\n if (!config)\n return this._config || {};\n var conf = Object.assign({}, this._config, Object(_Parser__WEBPACK_IMPORTED_MODULE_4__[\"parseMobileHubConfig\"])(config).Logging, config);\n this._config = conf;\n return this._config;\n };\n AWSCloudWatchProvider.prototype.createLogGroup = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var cmd, credentialsOK, client, output, error_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('creating new log group in CloudWatch - ', params.logGroupName);\n cmd = new _aws_sdk_client_cloudwatch_logs__WEBPACK_IMPORTED_MODULE_0__[\"CreateLogGroupCommand\"](params);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, , 5]);\n return [4 /*yield*/, this._ensureCredentials()];\n case 2:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error(_Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"NO_CREDS_ERROR_STRING\"]);\n }\n client = this._initCloudWatchLogs();\n return [4 /*yield*/, client.send(cmd)];\n case 3:\n output = _a.sent();\n return [2 /*return*/, output];\n case 4:\n error_1 = _a.sent();\n logger.error(\"error creating log group - \" + error_1);\n throw error_1;\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype.getLogGroups = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var cmd, credentialsOK, client, output, error_2;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('getting list of log groups');\n cmd = new _aws_sdk_client_cloudwatch_logs__WEBPACK_IMPORTED_MODULE_0__[\"DescribeLogGroupsCommand\"](params);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, , 5]);\n return [4 /*yield*/, this._ensureCredentials()];\n case 2:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error(_Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"NO_CREDS_ERROR_STRING\"]);\n }\n client = this._initCloudWatchLogs();\n return [4 /*yield*/, client.send(cmd)];\n case 3:\n output = _a.sent();\n return [2 /*return*/, output];\n case 4:\n error_2 = _a.sent();\n logger.error(\"error getting log group - \" + error_2);\n throw error_2;\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype.createLogStream = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var cmd, credentialsOK, client, output, error_3;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('creating new log stream in CloudWatch - ', params.logStreamName);\n cmd = new _aws_sdk_client_cloudwatch_logs__WEBPACK_IMPORTED_MODULE_0__[\"CreateLogStreamCommand\"](params);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, , 5]);\n return [4 /*yield*/, this._ensureCredentials()];\n case 2:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error(_Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"NO_CREDS_ERROR_STRING\"]);\n }\n client = this._initCloudWatchLogs();\n return [4 /*yield*/, client.send(cmd)];\n case 3:\n output = _a.sent();\n return [2 /*return*/, output];\n case 4:\n error_3 = _a.sent();\n logger.error(\"error creating log stream - \" + error_3);\n throw error_3;\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype.getLogStreams = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var cmd, credentialsOK, client, output, error_4;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('getting list of log streams');\n cmd = new _aws_sdk_client_cloudwatch_logs__WEBPACK_IMPORTED_MODULE_0__[\"DescribeLogStreamsCommand\"](params);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, , 5]);\n return [4 /*yield*/, this._ensureCredentials()];\n case 2:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error(_Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"NO_CREDS_ERROR_STRING\"]);\n }\n client = this._initCloudWatchLogs();\n return [4 /*yield*/, client.send(cmd)];\n case 3:\n output = _a.sent();\n return [2 /*return*/, output];\n case 4:\n error_4 = _a.sent();\n logger.error(\"error getting log stream - \" + error_4);\n throw error_4;\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype.getLogEvents = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var cmd, credentialsOK, client, output, error_5;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('getting log events from stream - ', params.logStreamName);\n cmd = new _aws_sdk_client_cloudwatch_logs__WEBPACK_IMPORTED_MODULE_0__[\"GetLogEventsCommand\"](params);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, , 5]);\n return [4 /*yield*/, this._ensureCredentials()];\n case 2:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error(_Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"NO_CREDS_ERROR_STRING\"]);\n }\n client = this._initCloudWatchLogs();\n return [4 /*yield*/, client.send(cmd)];\n case 3:\n output = _a.sent();\n return [2 /*return*/, output];\n case 4:\n error_5 = _a.sent();\n logger.error(\"error getting log events - \" + error_5);\n throw error_5;\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype.pushLogs = function (logs) {\n logger.debug('pushing log events to Cloudwatch...');\n this._dataTracker.logEvents = __spread(this._dataTracker.logEvents, logs);\n };\n AWSCloudWatchProvider.prototype._validateLogGroupExistsAndCreate = function (logGroupName) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, currGroups, foundGroups, err_1, errString;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (this._dataTracker.verifiedLogGroup) {\n return [2 /*return*/, this._dataTracker.verifiedLogGroup];\n }\n _a.label = 1;\n case 1:\n _a.trys.push([1, 5, , 6]);\n return [4 /*yield*/, this._ensureCredentials()];\n case 2:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error(_Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"NO_CREDS_ERROR_STRING\"]);\n }\n return [4 /*yield*/, this.getLogGroups({\n logGroupNamePrefix: logGroupName,\n })];\n case 3:\n currGroups = _a.sent();\n if (!(typeof currGroups === 'string') && currGroups.logGroups) {\n foundGroups = currGroups.logGroups.filter(function (group) { return group.logGroupName === logGroupName; });\n if (foundGroups.length > 0) {\n this._dataTracker.verifiedLogGroup = foundGroups[0];\n return [2 /*return*/, foundGroups[0]];\n }\n }\n /**\n * If we get to this point, it means that the specified log group does not exist\n * and we should create it.\n */\n return [4 /*yield*/, this.createLogGroup({ logGroupName: logGroupName })];\n case 4:\n /**\n * If we get to this point, it means that the specified log group does not exist\n * and we should create it.\n */\n _a.sent();\n return [2 /*return*/, null];\n case 5:\n err_1 = _a.sent();\n errString = \"failure during log group search: \" + err_1;\n logger.error(errString);\n throw err_1;\n case 6: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype._validateLogStreamExists = function (logGroupName, logStreamName) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, currStreams, foundStreams, err_2, errString;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 4, , 5]);\n return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error(_Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"NO_CREDS_ERROR_STRING\"]);\n }\n return [4 /*yield*/, this.getLogStreams({\n logGroupName: logGroupName,\n logStreamNamePrefix: logStreamName,\n })];\n case 2:\n currStreams = _a.sent();\n if (currStreams.logStreams) {\n foundStreams = currStreams.logStreams.filter(function (stream) { return stream.logStreamName === logStreamName; });\n if (foundStreams.length > 0) {\n this._nextSequenceToken = foundStreams[0].uploadSequenceToken;\n return [2 /*return*/, foundStreams[0]];\n }\n }\n /**\n * If we get to this point, it means that the specified stream does not\n * exist, and we should create it now.\n */\n return [4 /*yield*/, this.createLogStream({\n logGroupName: logGroupName,\n logStreamName: logStreamName,\n })];\n case 3:\n /**\n * If we get to this point, it means that the specified stream does not\n * exist, and we should create it now.\n */\n _a.sent();\n return [2 /*return*/, null];\n case 4:\n err_2 = _a.sent();\n errString = \"failure during log stream search: \" + err_2;\n logger.error(errString);\n throw err_2;\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype._sendLogEvents = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, cmd, client, output, err_3, errString;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 3, , 4]);\n return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error(_Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"NO_CREDS_ERROR_STRING\"]);\n }\n logger.debug('sending log events to stream - ', params.logStreamName);\n cmd = new _aws_sdk_client_cloudwatch_logs__WEBPACK_IMPORTED_MODULE_0__[\"PutLogEventsCommand\"](params);\n client = this._initCloudWatchLogs();\n return [4 /*yield*/, client.send(cmd)];\n case 2:\n output = _a.sent();\n return [2 /*return*/, output];\n case 3:\n err_3 = _a.sent();\n errString = \"failure during log push: \" + err_3;\n logger.error(errString);\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype._initCloudWatchLogs = function () {\n return new _aws_sdk_client_cloudwatch_logs__WEBPACK_IMPORTED_MODULE_0__[\"CloudWatchLogsClient\"]({\n region: this._config.region,\n credentials: this._config.credentials,\n customUserAgent: Object(_Platform__WEBPACK_IMPORTED_MODULE_3__[\"getAmplifyUserAgent\"])(),\n endpoint: this._config.endpoint,\n });\n };\n AWSCloudWatchProvider.prototype._ensureCredentials = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, ___WEBPACK_IMPORTED_MODULE_1__[\"Credentials\"].get()\n .then(function (credentials) {\n if (!credentials)\n return false;\n var cred = ___WEBPACK_IMPORTED_MODULE_1__[\"Credentials\"].shear(credentials);\n logger.debug('set credentials for logging', cred);\n _this._config.credentials = cred;\n return true;\n })\n .catch(function (error) {\n logger.warn('ensure credentials error', error);\n return false;\n })];\n case 1: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype._getNextSequenceToken = function () {\n return __awaiter(this, void 0, void 0, function () {\n var logStream, err_4;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (this._nextSequenceToken && this._nextSequenceToken.length > 0) {\n return [2 /*return*/, this._nextSequenceToken];\n }\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, , 5]);\n return [4 /*yield*/, this._validateLogGroupExistsAndCreate(this._config.logGroupName)];\n case 2:\n _a.sent();\n this._nextSequenceToken = undefined;\n return [4 /*yield*/, this._validateLogStreamExists(this._config.logGroupName, this._config.logStreamName)];\n case 3:\n logStream = _a.sent();\n if (logStream) {\n this._nextSequenceToken = logStream.uploadSequenceToken;\n }\n return [2 /*return*/, this._nextSequenceToken];\n case 4:\n err_4 = _a.sent();\n logger.error(\"failure while getting next sequence token: \" + err_4);\n throw err_4;\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype._safeUploadLogEvents = function () {\n return __awaiter(this, void 0, void 0, function () {\n var seqToken, logBatch, putLogsPayload, sendLogEventsResponse, err_5;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 3, , 4]);\n return [4 /*yield*/, this._getNextSequenceToken()];\n case 1:\n seqToken = _a.sent();\n logBatch = this._currentLogBatch.length === 0\n ? this._getBufferedBatchOfLogs()\n : this._currentLogBatch;\n putLogsPayload = {\n logGroupName: this._config.logGroupName,\n logStreamName: this._config.logStreamName,\n logEvents: logBatch,\n sequenceToken: seqToken,\n };\n this._dataTracker.eventUploadInProgress = true;\n return [4 /*yield*/, this._sendLogEvents(putLogsPayload)];\n case 2:\n sendLogEventsResponse = _a.sent();\n this._nextSequenceToken = sendLogEventsResponse.nextSequenceToken;\n this._dataTracker.eventUploadInProgress = false;\n this._currentLogBatch = [];\n return [2 /*return*/, sendLogEventsResponse];\n case 3:\n err_5 = _a.sent();\n logger.error(\"error during _safeUploadLogEvents: \" + err_5);\n if (_Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"RETRY_ERROR_CODES\"].includes(err_5.name)) {\n this._getNewSequenceTokenAndSubmit({\n logEvents: this._currentLogBatch,\n logGroupName: this._config.logGroupName,\n logStreamName: this._config.logStreamName,\n });\n }\n else {\n this._dataTracker.eventUploadInProgress = false;\n throw err_5;\n }\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype._getBufferedBatchOfLogs = function () {\n /**\n * CloudWatch has restrictions on the size of the log events that get sent up.\n * We need to track both the size of each event and the total size of the batch\n * of logs.\n *\n * We also need to ensure that the logs in the batch are sorted in chronological order.\n * https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutLogEvents.html\n */\n var currentEventIdx = 0;\n var totalByteSize = 0;\n while (currentEventIdx < this._dataTracker.logEvents.length) {\n var currentEvent = this._dataTracker.logEvents[currentEventIdx];\n var eventSize = currentEvent\n ? new TextEncoder().encode(currentEvent.message).length +\n _Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_BASE_BUFFER_SIZE\"]\n : 0;\n if (eventSize > _Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_MAX_EVENT_SIZE\"]) {\n var errString = \"Log entry exceeds maximum size for CloudWatch logs. Log size: \" + eventSize + \". Truncating log message.\";\n logger.warn(errString);\n currentEvent.message = currentEvent.message.substring(0, eventSize);\n }\n if (totalByteSize + eventSize > _Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE\"])\n break;\n totalByteSize += eventSize;\n currentEventIdx++;\n }\n this._currentLogBatch = this._dataTracker.logEvents.splice(0, currentEventIdx);\n return this._currentLogBatch;\n };\n AWSCloudWatchProvider.prototype._getNewSequenceTokenAndSubmit = function (payload) {\n return __awaiter(this, void 0, void 0, function () {\n var seqToken, sendLogEventsRepsonse, err_6;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 3, , 4]);\n this._nextSequenceToken = undefined;\n this._dataTracker.eventUploadInProgress = true;\n return [4 /*yield*/, this._getNextSequenceToken()];\n case 1:\n seqToken = _a.sent();\n payload.sequenceToken = seqToken;\n return [4 /*yield*/, this._sendLogEvents(payload)];\n case 2:\n sendLogEventsRepsonse = _a.sent();\n this._dataTracker.eventUploadInProgress = false;\n this._currentLogBatch = [];\n return [2 /*return*/, sendLogEventsRepsonse];\n case 3:\n err_6 = _a.sent();\n logger.error(\"error when retrying log submission with new sequence token: \" + err_6);\n this._dataTracker.eventUploadInProgress = false;\n throw err_6;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n AWSCloudWatchProvider.prototype._initiateLogPushInterval = function () {\n var _this = this;\n if (this._timer) {\n clearInterval(this._timer);\n }\n this._timer = setInterval(function () { return __awaiter(_this, void 0, void 0, function () {\n var err_7;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 3, , 4]);\n if (!this._getDocUploadPermissibility()) return [3 /*break*/, 2];\n return [4 /*yield*/, this._safeUploadLogEvents()];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2: return [3 /*break*/, 4];\n case 3:\n err_7 = _a.sent();\n logger.error(\"error when calling _safeUploadLogEvents in the timer interval - \" + err_7);\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n }); }, 2000);\n };\n AWSCloudWatchProvider.prototype._getDocUploadPermissibility = function () {\n return ((this._dataTracker.logEvents.length !== 0 ||\n this._currentLogBatch.length !== 0) &&\n !this._dataTracker.eventUploadInProgress);\n };\n AWSCloudWatchProvider.PROVIDER_NAME = _Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_PROVIDER_NAME\"];\n AWSCloudWatchProvider.CATEGORY = _Util_Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_CATEGORY\"];\n return AWSCloudWatchProvider;\n}());\n\n//# sourceMappingURL=AWSCloudWatchProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Providers/AWSCloudWatchProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Providers/index.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Providers/index.js ***! \*******************************************************************/ /*! exports provided: AWSCloudWatchProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AWSCloudWatchProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AWSCloudWatchProvider */ \"./node_modules/@aws-amplify/core/lib-esm/Providers/AWSCloudWatchProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSCloudWatchProvider\", function() { return _AWSCloudWatchProvider__WEBPACK_IMPORTED_MODULE_0__[\"AWSCloudWatchProvider\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Providers/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/RNComponents/index.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/RNComponents/index.js ***! \**********************************************************************/ /*! exports provided: Linking, AppState, AsyncStorage */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Linking\", function() { return Linking; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AppState\", function() { return AppState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncStorage\", function() { return AsyncStorage; });\n/* harmony import */ var _JS__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../JS */ \"./node_modules/@aws-amplify/core/lib-esm/JS.js\");\n/* harmony import */ var _StorageHelper__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../StorageHelper */ \"./node_modules/@aws-amplify/core/lib-esm/StorageHelper/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\nvar Linking = {};\nvar AppState = {\n addEventListener: function (action, handler) { return undefined; },\n};\n// if not in react native, just use local storage\nvar AsyncStorage = Object(_JS__WEBPACK_IMPORTED_MODULE_0__[\"browserOrNode\"])().isBrowser\n ? new _StorageHelper__WEBPACK_IMPORTED_MODULE_1__[\"StorageHelper\"]().getStorage()\n : undefined;\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/RNComponents/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/ServiceWorker/ServiceWorker.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/ServiceWorker/ServiceWorker.js ***! \*******************************************************************************/ /*! exports provided: ServiceWorkerClass, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceWorkerClass\", function() { return ServiceWorkerClass; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/* harmony import */ var _JS__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../JS */ \"./node_modules/@aws-amplify/core/lib-esm/JS.js\");\n/* harmony import */ var _Amplify__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Amplify */ \"./node_modules/@aws-amplify/core/lib-esm/Amplify.js\");\n/**\n * Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n/**\n * Provides a means to registering a service worker in the browser\n * and communicating with it via postMessage events.\n * https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API/\n *\n * postMessage events are currently not supported in all browsers. See:\n * https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API\n *\n * At the minmum this class will register the service worker and listen\n * and attempt to dispatch messages on state change and record analytics\n * events based on the service worker lifecycle.\n */\nvar ServiceWorkerClass = /** @class */ (function () {\n function ServiceWorkerClass() {\n // The AWS Amplify logger\n this._logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('ServiceWorker');\n }\n Object.defineProperty(ServiceWorkerClass.prototype, \"serviceWorker\", {\n /**\n * Get the currently active service worker\n */\n get: function () {\n return this._serviceWorker;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Register the service-worker.js file in the browser\n * Make sure the service-worker.js is part of the build\n * for example with Angular, modify the angular-cli.json file\n * and add to \"assets\" array \"service-worker.js\"\n * @param {string} - (optional) Service worker file. Defaults to \"/service-worker.js\"\n * @param {string} - (optional) The service worker scope. Defaults to \"/\"\n * - API Doc: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/register\n * @returns {Promise}\n *\t- resolve(ServiceWorkerRegistration)\n *\t- reject(Error)\n **/\n ServiceWorkerClass.prototype.register = function (filePath, scope) {\n var _this = this;\n if (filePath === void 0) { filePath = '/service-worker.js'; }\n if (scope === void 0) { scope = '/'; }\n this._logger.debug(\"registering \" + filePath);\n this._logger.debug(\"registering service worker with scope \" + scope);\n return new Promise(function (resolve, reject) {\n if (navigator && 'serviceWorker' in navigator) {\n navigator.serviceWorker\n .register(filePath, {\n scope: scope,\n })\n .then(function (registration) {\n if (registration.installing) {\n _this._serviceWorker = registration.installing;\n }\n else if (registration.waiting) {\n _this._serviceWorker = registration.waiting;\n }\n else if (registration.active) {\n _this._serviceWorker = registration.active;\n }\n _this._registration = registration;\n _this._setupListeners();\n _this._logger.debug(\"Service Worker Registration Success: \" + registration);\n return resolve(registration);\n })\n .catch(function (error) {\n _this._logger.debug(\"Service Worker Registration Failed \" + error);\n return reject(error);\n });\n }\n else {\n return reject(new Error('Service Worker not available'));\n }\n });\n };\n /**\n * Enable web push notifications. If not subscribed, a new subscription will\n * be created and registered.\n * \tTest Push Server: https://web-push-codelab.glitch.me/\n * \tPush Server Libraries: https://github.com/web-push-libs/\n * \tAPI Doc: https://developers.google.com/web/fundamentals/codelabs/push-notifications/\n * @param publicKey\n * @returns {Promise}\n * \t- resolve(PushSubscription)\n * - reject(Error)\n */\n ServiceWorkerClass.prototype.enablePush = function (publicKey) {\n var _this = this;\n if (!this._registration)\n throw new Error('Service Worker not registered');\n this._publicKey = publicKey;\n return new Promise(function (resolve, reject) {\n if (Object(_JS__WEBPACK_IMPORTED_MODULE_1__[\"browserOrNode\"])().isBrowser) {\n _this._registration.pushManager.getSubscription().then(function (subscription) {\n if (subscription) {\n _this._subscription = subscription;\n _this._logger.debug(\"User is subscribed to push: \" + JSON.stringify(subscription));\n resolve(subscription);\n }\n else {\n _this._logger.debug(\"User is NOT subscribed to push\");\n return _this._registration.pushManager\n .subscribe({\n userVisibleOnly: true,\n applicationServerKey: _this._urlB64ToUint8Array(publicKey),\n })\n .then(function (subscription) {\n _this._subscription = subscription;\n _this._logger.debug(\"User subscribed: \" + JSON.stringify(subscription));\n resolve(subscription);\n })\n .catch(function (error) {\n _this._logger.error(error);\n });\n }\n });\n }\n else {\n return reject(new Error('Service Worker not available'));\n }\n });\n };\n /**\n * Convert a base64 encoded string to a Uint8 array for the push server key\n * @param base64String\n */\n ServiceWorkerClass.prototype._urlB64ToUint8Array = function (base64String) {\n var padding = '='.repeat((4 - (base64String.length % 4)) % 4);\n var base64 = (base64String + padding)\n .replace(/\\-/g, '+')\n .replace(/_/g, '/');\n var rawData = window.atob(base64);\n var outputArray = new Uint8Array(rawData.length);\n for (var i = 0; i < rawData.length; ++i) {\n outputArray[i] = rawData.charCodeAt(i);\n }\n return outputArray;\n };\n /**\n * Send a message to the service worker. The service worker needs\n * to implement `self.addEventListener('message') to handle the\n * message. This ***currently*** does not work in Safari or IE.\n * @param {object | string} - An arbitrary JSON object or string message to send to the service worker\n *\t- see: https://developer.mozilla.org/en-US/docs/Web/API/Transferable\n * @returns {Promise}\n **/\n ServiceWorkerClass.prototype.send = function (message) {\n if (this._serviceWorker) {\n this._serviceWorker.postMessage(typeof message === 'object' ? JSON.stringify(message) : message);\n }\n };\n /**\n * Listen for service worker state change and message events\n * https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker/state\n **/\n ServiceWorkerClass.prototype._setupListeners = function () {\n var _this = this;\n this._serviceWorker.addEventListener('statechange', function (event) {\n var currentState = _this._serviceWorker.state;\n _this._logger.debug(\"ServiceWorker statechange: \" + currentState);\n if (_Amplify__WEBPACK_IMPORTED_MODULE_2__[\"Amplify\"].Analytics && typeof _Amplify__WEBPACK_IMPORTED_MODULE_2__[\"Amplify\"].Analytics.record === 'function') {\n _Amplify__WEBPACK_IMPORTED_MODULE_2__[\"Amplify\"].Analytics.record({\n name: 'ServiceWorker',\n attributes: {\n state: currentState,\n },\n });\n }\n });\n this._serviceWorker.addEventListener('message', function (event) {\n _this._logger.debug(\"ServiceWorker message event: \" + event);\n });\n };\n return ServiceWorkerClass;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (ServiceWorkerClass);\n//# sourceMappingURL=ServiceWorker.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/ServiceWorker/ServiceWorker.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/ServiceWorker/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/ServiceWorker/index.js ***! \***********************************************************************/ /*! exports provided: ServiceWorker */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _ServiceWorker__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ServiceWorker */ \"./node_modules/@aws-amplify/core/lib-esm/ServiceWorker/ServiceWorker.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceWorker\", function() { return _ServiceWorker__WEBPACK_IMPORTED_MODULE_0__[\"ServiceWorkerClass\"]; });\n\n/**\n * Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/ServiceWorker/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Signer.js": /*!**********************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Signer.js ***! \**********************************************************/ /*! exports provided: Signer, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Signer\", function() { return Signer; });\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/* harmony import */ var _aws_crypto_sha256_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-crypto/sha256-js */ \"./node_modules/@aws-crypto/sha256-js/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_js__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/util-hex-encoding/dist/es/index.js\");\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! url */ \"./node_modules/url/url.js\");\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(url__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _Util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Util */ \"./node_modules/@aws-amplify/core/lib-esm/Util/index.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\n\n\n\n\n\nvar logger = new _Logger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Signer');\nvar DEFAULT_ALGORITHM = 'AWS4-HMAC-SHA256';\nvar IOT_SERVICE_NAME = 'iotdevicegateway';\nvar encrypt = function (key, src) {\n var hash = new _aws_crypto_sha256_js__WEBPACK_IMPORTED_MODULE_1__[\"Sha256\"](key);\n hash.update(src);\n return hash.digestSync();\n};\nvar hash = function (src) {\n var arg = src || '';\n var hash = new _aws_crypto_sha256_js__WEBPACK_IMPORTED_MODULE_1__[\"Sha256\"]();\n hash.update(arg);\n return Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__[\"toHex\"])(hash.digestSync());\n};\n/**\n * @private\n * RFC 3986 compliant version of encodeURIComponent\n */\nvar escape_RFC3986 = function (component) {\n return component.replace(/[!'()*]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase();\n });\n};\n/**\n * @private\n * Create canonical query string\n *\n */\nvar canonical_query = function (query) {\n if (!query || query.length === 0) {\n return '';\n }\n return query\n .split('&')\n .map(function (e) {\n var key_val = e.split('=');\n if (key_val.length === 1) {\n return e;\n }\n else {\n var reencoded_val = escape_RFC3986(key_val[1]);\n return key_val[0] + '=' + reencoded_val;\n }\n })\n .sort(function (a, b) {\n var key_a = a.split('=')[0];\n var key_b = b.split('=')[0];\n if (key_a === key_b) {\n return a < b ? -1 : 1;\n }\n else {\n return key_a < key_b ? -1 : 1;\n }\n })\n .join('&');\n};\n/**\n* @private\n* Create canonical headers\n*\n
\nCanonicalHeaders =\n    CanonicalHeadersEntry0 + CanonicalHeadersEntry1 + ... + CanonicalHeadersEntryN\nCanonicalHeadersEntry =\n    Lowercase(HeaderName) + ':' + Trimall(HeaderValue) + '\\n'\n
\n*/\nvar canonical_headers = function (headers) {\n if (!headers || Object.keys(headers).length === 0) {\n return '';\n }\n return (Object.keys(headers)\n .map(function (key) {\n return {\n key: key.toLowerCase(),\n value: headers[key] ? headers[key].trim().replace(/\\s+/g, ' ') : '',\n };\n })\n .sort(function (a, b) {\n return a.key < b.key ? -1 : 1;\n })\n .map(function (item) {\n return item.key + ':' + item.value;\n })\n .join('\\n') + '\\n');\n};\n/**\n * List of header keys included in the canonical headers.\n * @access private\n */\nvar signed_headers = function (headers) {\n return Object.keys(headers)\n .map(function (key) {\n return key.toLowerCase();\n })\n .sort()\n .join(';');\n};\n/**\n* @private\n* Create canonical request\n* Refer to\n* {@link http://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html|Create a Canonical Request}\n*\n
\nCanonicalRequest =\n    HTTPRequestMethod + '\\n' +\n    CanonicalURI + '\\n' +\n    CanonicalQueryString + '\\n' +\n    CanonicalHeaders + '\\n' +\n    SignedHeaders + '\\n' +\n    HexEncode(Hash(RequestPayload))\n
\n*/\nvar canonical_request = function (request) {\n var url_info = Object(url__WEBPACK_IMPORTED_MODULE_3__[\"parse\"])(request.url);\n return [\n request.method || '/',\n encodeURIComponent(url_info.pathname).replace(/%2F/gi, '/'),\n canonical_query(url_info.query),\n canonical_headers(request.headers),\n signed_headers(request.headers),\n hash(request.data),\n ].join('\\n');\n};\nvar parse_service_info = function (request) {\n var url_info = Object(url__WEBPACK_IMPORTED_MODULE_3__[\"parse\"])(request.url), host = url_info.host;\n var matched = host.match(/([^\\.]+)\\.(?:([^\\.]*)\\.)?amazonaws\\.com$/);\n var parsed = (matched || []).slice(1, 3);\n if (parsed[1] === 'es') {\n // Elastic Search\n parsed = parsed.reverse();\n }\n return {\n service: request.service || parsed[0],\n region: request.region || parsed[1],\n };\n};\nvar credential_scope = function (d_str, region, service) {\n return [d_str, region, service, 'aws4_request'].join('/');\n};\n/**\n* @private\n* Create a string to sign\n* Refer to\n* {@link http://docs.aws.amazon.com/general/latest/gr/sigv4-create-string-to-sign.html|Create String to Sign}\n*\n
\nStringToSign =\n    Algorithm + \\n +\n    RequestDateTime + \\n +\n    CredentialScope + \\n +\n    HashedCanonicalRequest\n
\n*/\nvar string_to_sign = function (algorithm, canonical_request, dt_str, scope) {\n return [algorithm, dt_str, scope, hash(canonical_request)].join('\\n');\n};\n/**\n* @private\n* Create signing key\n* Refer to\n* {@link http://docs.aws.amazon.com/general/latest/gr/sigv4-calculate-signature.html|Calculate Signature}\n*\n
\nkSecret = your secret access key\nkDate = HMAC(\"AWS4\" + kSecret, Date)\nkRegion = HMAC(kDate, Region)\nkService = HMAC(kRegion, Service)\nkSigning = HMAC(kService, \"aws4_request\")\n
\n*/\nvar get_signing_key = function (secret_key, d_str, service_info) {\n logger.debug(service_info);\n var k = 'AWS4' + secret_key, k_date = encrypt(k, d_str), k_region = encrypt(k_date, service_info.region), k_service = encrypt(k_region, service_info.service), k_signing = encrypt(k_service, 'aws4_request');\n return k_signing;\n};\nvar get_signature = function (signing_key, str_to_sign) {\n return Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__[\"toHex\"])(encrypt(signing_key, str_to_sign));\n};\n/**\n * @private\n * Create authorization header\n * Refer to\n * {@link http://docs.aws.amazon.com/general/latest/gr/sigv4-add-signature-to-request.html|Add the Signing Information}\n */\nvar get_authorization_header = function (algorithm, access_key, scope, signed_headers, signature) {\n return [\n algorithm + ' ' + 'Credential=' + access_key + '/' + scope,\n 'SignedHeaders=' + signed_headers,\n 'Signature=' + signature,\n ].join(', ');\n};\nvar Signer = /** @class */ (function () {\n function Signer() {\n }\n /**\n * Sign a HTTP request, add 'Authorization' header to request param\n * @method sign\n * @memberof Signer\n * @static\n *\n * @param {object} request - HTTP request object\n
\n    request: {\n        method: GET | POST | PUT ...\n        url: ...,\n        headers: {\n            header1: ...\n        },\n        data: data\n    }\n    
\n * @param {object} access_info - AWS access credential info\n
\n    access_info: {\n        access_key: ...,\n        secret_key: ...,\n        session_token: ...\n    }\n    
\n * @param {object} [service_info] - AWS service type and region, optional,\n * if not provided then parse out from url\n
\n    service_info: {\n        service: ...,\n        region: ...\n    }\n    
\n *\n * @returns {object} Signed HTTP request\n */\n Signer.sign = function (request, access_info, service_info) {\n if (service_info === void 0) { service_info = null; }\n request.headers = request.headers || {};\n if (request.body && !request.data) {\n throw new Error('The attribute \"body\" was found on the request object. Please use the attribute \"data\" instead.');\n }\n // datetime string and date string\n var dt = _Util__WEBPACK_IMPORTED_MODULE_4__[\"DateUtils\"].getDateWithClockOffset(), dt_str = dt.toISOString().replace(/[:\\-]|\\.\\d{3}/g, ''), d_str = dt_str.substr(0, 8);\n var url_info = Object(url__WEBPACK_IMPORTED_MODULE_3__[\"parse\"])(request.url);\n request.headers['host'] = url_info.host;\n request.headers['x-amz-date'] = dt_str;\n if (access_info.session_token) {\n request.headers['X-Amz-Security-Token'] = access_info.session_token;\n }\n // Task 1: Create a Canonical Request\n var request_str = canonical_request(request);\n logger.debug(request_str);\n // Task 2: Create a String to Sign\n var serviceInfo = service_info || parse_service_info(request), scope = credential_scope(d_str, serviceInfo.region, serviceInfo.service), str_to_sign = string_to_sign(DEFAULT_ALGORITHM, request_str, dt_str, scope);\n // Task 3: Calculate the Signature\n var signing_key = get_signing_key(access_info.secret_key, d_str, serviceInfo), signature = get_signature(signing_key, str_to_sign);\n // Task 4: Adding the Signing information to the Request\n var authorization_header = get_authorization_header(DEFAULT_ALGORITHM, access_info.access_key, scope, signed_headers(request.headers), signature);\n request.headers['Authorization'] = authorization_header;\n return request;\n };\n Signer.signUrl = function (urlOrRequest, accessInfo, serviceInfo, expiration) {\n var urlToSign = typeof urlOrRequest === 'object' ? urlOrRequest.url : urlOrRequest;\n var method = typeof urlOrRequest === 'object' ? urlOrRequest.method : 'GET';\n var body = typeof urlOrRequest === 'object' ? urlOrRequest.body : undefined;\n var now = _Util__WEBPACK_IMPORTED_MODULE_4__[\"DateUtils\"].getDateWithClockOffset()\n .toISOString()\n .replace(/[:\\-]|\\.\\d{3}/g, '');\n var today = now.substr(0, 8);\n // Intentionally discarding search\n var _a = Object(url__WEBPACK_IMPORTED_MODULE_3__[\"parse\"])(urlToSign, true, true), search = _a.search, parsedUrl = __rest(_a, [\"search\"]);\n var host = parsedUrl.host;\n var signedHeaders = { host: host };\n var _b = serviceInfo || parse_service_info({ url: Object(url__WEBPACK_IMPORTED_MODULE_3__[\"format\"])(parsedUrl) }), region = _b.region, service = _b.service;\n var credentialScope = credential_scope(today, region, service);\n // IoT service does not allow the session token in the canonical request\n // https://docs.aws.amazon.com/general/latest/gr/sigv4-add-signature-to-request.html\n var sessionTokenRequired = accessInfo.session_token && service !== IOT_SERVICE_NAME;\n var queryParams = __assign(__assign(__assign({ 'X-Amz-Algorithm': DEFAULT_ALGORITHM, 'X-Amz-Credential': [accessInfo.access_key, credentialScope].join('/'), 'X-Amz-Date': now.substr(0, 16) }, (sessionTokenRequired\n ? { 'X-Amz-Security-Token': \"\" + accessInfo.session_token }\n : {})), (expiration ? { 'X-Amz-Expires': \"\" + expiration } : {})), { 'X-Amz-SignedHeaders': Object.keys(signedHeaders).join(',') });\n var canonicalRequest = canonical_request({\n method: method,\n url: Object(url__WEBPACK_IMPORTED_MODULE_3__[\"format\"])(__assign(__assign({}, parsedUrl), { query: __assign(__assign({}, parsedUrl.query), queryParams) })),\n headers: signedHeaders,\n data: body,\n });\n var stringToSign = string_to_sign(DEFAULT_ALGORITHM, canonicalRequest, now, credentialScope);\n var signing_key = get_signing_key(accessInfo.secret_key, today, {\n region: region,\n service: service,\n });\n var signature = get_signature(signing_key, stringToSign);\n var additionalQueryParams = __assign({ 'X-Amz-Signature': signature }, (accessInfo.session_token && {\n 'X-Amz-Security-Token': accessInfo.session_token,\n }));\n var result = Object(url__WEBPACK_IMPORTED_MODULE_3__[\"format\"])({\n protocol: parsedUrl.protocol,\n slashes: true,\n hostname: parsedUrl.hostname,\n port: parsedUrl.port,\n pathname: parsedUrl.pathname,\n query: __assign(__assign(__assign({}, parsedUrl.query), queryParams), additionalQueryParams),\n });\n return result;\n };\n return Signer;\n}());\n\n/**\n * @deprecated use per-function import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (Signer);\n//# sourceMappingURL=Signer.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Signer.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/StorageHelper/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/StorageHelper/index.js ***! \***********************************************************************/ /*! exports provided: MemoryStorage, StorageHelper, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MemoryStorage\", function() { return MemoryStorage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StorageHelper\", function() { return StorageHelper; });\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar dataMemory = {};\n/** @class */\nvar MemoryStorage = /** @class */ (function () {\n function MemoryStorage() {\n }\n /**\n * This is used to set a specific item in storage\n * @param {string} key - the key for the item\n * @param {object} value - the value\n * @returns {string} value that was set\n */\n MemoryStorage.setItem = function (key, value) {\n dataMemory[key] = value;\n return dataMemory[key];\n };\n /**\n * This is used to get a specific key from storage\n * @param {string} key - the key for the item\n * This is used to clear the storage\n * @returns {string} the data item\n */\n MemoryStorage.getItem = function (key) {\n return Object.prototype.hasOwnProperty.call(dataMemory, key)\n ? dataMemory[key]\n : undefined;\n };\n /**\n * This is used to remove an item from storage\n * @param {string} key - the key being set\n * @returns {string} value - value that was deleted\n */\n MemoryStorage.removeItem = function (key) {\n return delete dataMemory[key];\n };\n /**\n * This is used to clear the storage\n * @returns {string} nothing\n */\n MemoryStorage.clear = function () {\n dataMemory = {};\n return dataMemory;\n };\n return MemoryStorage;\n}());\n\nvar StorageHelper = /** @class */ (function () {\n /**\n * This is used to get a storage object\n * @returns {object} the storage\n */\n function StorageHelper() {\n try {\n this.storageWindow = window.localStorage;\n this.storageWindow.setItem('aws.amplify.test-ls', 1);\n this.storageWindow.removeItem('aws.amplify.test-ls');\n }\n catch (exception) {\n this.storageWindow = MemoryStorage;\n }\n }\n /**\n * This is used to return the storage\n * @returns {object} the storage\n */\n StorageHelper.prototype.getStorage = function () {\n return this.storageWindow;\n };\n return StorageHelper;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (StorageHelper);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/StorageHelper/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/UniversalStorage/index.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/UniversalStorage/index.js ***! \**************************************************************************/ /*! exports provided: UniversalStorage */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniversalStorage\", function() { return UniversalStorage; });\n/* harmony import */ var universal_cookie__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! universal-cookie */ \"./node_modules/universal-cookie/es6/index.js\");\n/* harmony import */ var _JS__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../JS */ \"./node_modules/@aws-amplify/core/lib-esm/JS.js\");\n\n\nvar isBrowser = Object(_JS__WEBPACK_IMPORTED_MODULE_1__[\"browserOrNode\"])().isBrowser;\nvar UniversalStorage = /** @class */ (function () {\n function UniversalStorage(context) {\n if (context === void 0) { context = {}; }\n this.cookies = new universal_cookie__WEBPACK_IMPORTED_MODULE_0__[\"default\"]();\n this.store = isBrowser ? window.localStorage : Object.create(null);\n this.cookies = context.req\n ? new universal_cookie__WEBPACK_IMPORTED_MODULE_0__[\"default\"](context.req.headers.cookie)\n : new universal_cookie__WEBPACK_IMPORTED_MODULE_0__[\"default\"]();\n Object.assign(this.store, this.cookies.getAll());\n }\n Object.defineProperty(UniversalStorage.prototype, \"length\", {\n get: function () {\n return Object.entries(this.store).length;\n },\n enumerable: true,\n configurable: true\n });\n UniversalStorage.prototype.clear = function () {\n var _this = this;\n Array.from(new Array(this.length))\n .map(function (_, i) { return _this.key(i); })\n .forEach(function (key) { return _this.removeItem(key); });\n };\n UniversalStorage.prototype.getItem = function (key) {\n return this.getLocalItem(key);\n };\n UniversalStorage.prototype.getLocalItem = function (key) {\n return Object.prototype.hasOwnProperty.call(this.store, key)\n ? this.store[key]\n : null;\n };\n UniversalStorage.prototype.getUniversalItem = function (key) {\n return this.cookies.get(key);\n };\n UniversalStorage.prototype.key = function (index) {\n return Object.keys(this.store)[index];\n };\n UniversalStorage.prototype.removeItem = function (key) {\n this.removeLocalItem(key);\n this.removeUniversalItem(key);\n };\n UniversalStorage.prototype.removeLocalItem = function (key) {\n delete this.store[key];\n };\n UniversalStorage.prototype.removeUniversalItem = function (key) {\n this.cookies.remove(key, {\n path: '/',\n });\n };\n UniversalStorage.prototype.setItem = function (key, value) {\n this.setLocalItem(key, value);\n // keys take the shape:\n // 1. `${ProviderPrefix}.${userPoolClientId}.${username}.${tokenType}\n // 2. `${ProviderPrefix}.${userPoolClientId}.LastAuthUser\n var tokenType = key.split('.').pop();\n switch (tokenType) {\n // LastAuthUser is needed for computing other key names\n case 'LastAuthUser':\n // accessToken is required for CognitoUserSession\n case 'accessToken':\n // refreshToken originates on the client, but SSR pages won't fail when this expires\n // Note: the new `accessToken` will also be refreshed on the client (since Amplify doesn't set server-side cookies)\n case 'refreshToken':\n // Required for CognitoUserSession\n case 'idToken':\n isBrowser\n ? this.setUniversalItem(key, value)\n : this.setLocalItem(key, value);\n // userData is used when `Auth.currentAuthenticatedUser({ bypassCache: false })`.\n // Can be persisted to speed up calls to `Auth.currentAuthenticatedUser()`\n // case 'userData':\n // Ignoring clockDrift on the server for now, but needs testing\n // case 'clockDrift':\n }\n };\n UniversalStorage.prototype.setLocalItem = function (key, value) {\n this.store[key] = value;\n };\n UniversalStorage.prototype.setUniversalItem = function (key, value) {\n this.cookies.set(key, value, {\n path: '/',\n // `httpOnly` cannot be set via JavaScript: https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#JavaScript_access_using_Document.cookie\n sameSite: true,\n // Allow unsecure requests to http://localhost:3000/ when in development.\n secure: window.location.hostname === 'localhost' ? false : true,\n });\n };\n return UniversalStorage;\n}());\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/UniversalStorage/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Util/BackgroundProcessManager.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Util/BackgroundProcessManager.js ***! \*********************************************************************************/ /*! exports provided: BackgroundProcessManager, BackgroundManagerNotOpenError, BackgroundProcessManagerState */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BackgroundProcessManager\", function() { return BackgroundProcessManager; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BackgroundManagerNotOpenError\", function() { return BackgroundManagerNotOpenError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BackgroundProcessManagerState\", function() { return BackgroundProcessManagerState; });\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\n/**\n * @private For internal Amplify use.\n *\n * Creates a new scope for promises, observables, and other types of work or\n * processes that may be running in the background. This manager provides\n * an singular entrypoint to request termination and await completion.\n *\n * As work completes on its own prior to close, the manager removes them\n * from the registry to avoid holding references to completed jobs.\n */\nvar BackgroundProcessManager = /** @class */ (function () {\n /**\n * Creates a new manager for promises, observables, and other types\n * of work that may be running in the background. This manager provides\n * a centralized mechanism to request termination and await completion.\n */\n function BackgroundProcessManager() {\n /**\n * A string indicating whether the manager is accepting new work (\"Open\"),\n * waiting for work to complete (\"Closing\"), or fully done with all\n * submitted work and *not* accepting new jobs (\"Closed\").\n */\n this._state = BackgroundProcessManagerState.Open;\n /**\n * The list of outstanding jobs we'll need to wait for upon `close()`\n */\n this.jobs = new Set();\n }\n BackgroundProcessManager.prototype.add = function (jobOrDescription, optionalDescription) {\n var job;\n var description;\n if (typeof jobOrDescription === 'string') {\n job = undefined;\n description = jobOrDescription;\n }\n else {\n job = jobOrDescription;\n description = optionalDescription;\n }\n var error = this.closedFailure(description);\n if (error)\n return error;\n if (job === undefined) {\n return this.addHook(description);\n }\n else if (typeof job === 'function') {\n return this.addFunction(job, description);\n }\n else if (job instanceof BackgroundProcessManager) {\n return this.addManager(job, description);\n }\n else {\n throw new Error('If `job` is provided, it must be an Observable, Function, or BackgroundProcessManager.');\n }\n };\n /**\n * Adds a **cleaner** function that doesn't immediately get executed.\n * Instead, the caller gets a **terminate** function back. The *cleaner* is\n * invoked only once the mananger *closes* or the returned **terminate**\n * function is called.\n *\n * @param clean The cleanup function.\n * @param description Optional description to help identify pending jobs.\n * @returns A terminate function.\n */\n BackgroundProcessManager.prototype.addCleaner = function (clean, description) {\n var _this = this;\n var _a = this.addHook(description), resolve = _a.resolve, onTerminate = _a.onTerminate;\n var proxy = function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, clean()];\n case 1:\n _a.sent();\n resolve();\n return [2 /*return*/];\n }\n });\n }); };\n onTerminate.then(proxy);\n return proxy;\n };\n BackgroundProcessManager.prototype.addFunction = function (job, description) {\n // the function we call when we want to try to terminate this job.\n var terminate;\n // the promise the job can opt into listening to for termination.\n var onTerminate = new Promise(function (resolve) {\n terminate = resolve;\n });\n // finally! start the job.\n var jobResult = job(onTerminate);\n // depending on what the job gives back, register the result\n // so we can monitor for completion.\n if (typeof (jobResult === null || jobResult === void 0 ? void 0 : jobResult.then) === 'function') {\n this.registerPromise(jobResult, terminate, description);\n }\n // At the end of the day, or you know, method call, it doesn't matter\n // what the return value is at all; we just pass it through to the\n // caller.\n return jobResult;\n };\n BackgroundProcessManager.prototype.addManager = function (manager, description) {\n var _this = this;\n this.addCleaner(function () { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, manager.close()];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); }, description);\n };\n /**\n * Creates and registers a fabricated job for processes that need to operate\n * with callbacks/hooks. The returned `resolve` and `reject`\n * functions can be used to signal the job is done successfully or not.\n * The returned `onTerminate` is a promise that will resolve when the\n * manager is requesting the termination of the job.\n *\n * @param description Optional description to help identify pending jobs.\n * @returns `{ resolve, reject, onTerminate }`\n */\n BackgroundProcessManager.prototype.addHook = function (description) {\n // the resolve/reject functions we'll provide to the caller to signal\n // the state of the job.\n var resolve;\n var reject;\n // the underlying promise we'll use to manage it, pretty much like\n // any other promise.\n var promise = new Promise(function (res, rej) {\n resolve = res;\n reject = rej;\n });\n // the function we call when we want to try to terminate this job.\n var terminate;\n // the promise the job can opt into listening to for termination.\n var onTerminate = new Promise(function (resolveTerminate) {\n terminate = resolveTerminate;\n });\n this.registerPromise(promise, terminate, description);\n return {\n resolve: resolve,\n reject: reject,\n onTerminate: onTerminate,\n };\n };\n /**\n * Adds a Promise based job to the list of jobs for monitoring and listens\n * for either a success or failure, upon which the job is considered \"done\"\n * and removed from the registry.\n *\n * @param promise A promise that is on its way to being returned to a\n * caller, which needs to be tracked as a background job.\n * @param terminate The termination function to register, which can be\n * invoked to request the job stop.\n * @param description Optional description to help identify pending jobs.\n */\n BackgroundProcessManager.prototype.registerPromise = function (promise, terminate, description) {\n var _this = this;\n var jobEntry = { promise: promise, terminate: terminate, description: description };\n this.jobs.add(jobEntry);\n // in all of my testing, it is safe to multi-subscribe to a promise.\n // so, rather than create another layer of promising, we're just going\n // to hook into the promise we already have, and when it's done\n // (successfully or not), we no longer need to wait for it upon close.\n //\n // sorry this is a bit hand-wavy:\n //\n // i believe we use `.then` and `.catch` instead of `.finally` because\n // `.finally` is invoked in a different order in the sequence, and this\n // breaks assumptions throughout and causes failures.\n promise\n .then(function () {\n _this.jobs.delete(jobEntry);\n })\n .catch(function () {\n _this.jobs.delete(jobEntry);\n });\n };\n Object.defineProperty(BackgroundProcessManager.prototype, \"length\", {\n /**\n * The number of jobs being waited on.\n *\n * We don't use this for anything. It's just informational for the caller,\n * and can be used in logging and testing.\n *\n * @returns the number of jobs.\n */\n get: function () {\n return this.jobs.size;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BackgroundProcessManager.prototype, \"state\", {\n /**\n * The execution state of the manager. One of:\n *\n * 1. \"Open\" -> Accepting new jobs\n * 1. \"Closing\" -> Not accepting new work. Waiting for jobs to complete.\n * 1. \"Closed\" -> Not accepting new work. All submitted jobs are complete.\n */\n get: function () {\n return this._state;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BackgroundProcessManager.prototype, \"pending\", {\n /**\n * The registered `description` of all still-pending jobs.\n *\n * @returns descriptions as an array.\n */\n get: function () {\n return Array.from(this.jobs).map(function (job) { return job.description; });\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BackgroundProcessManager.prototype, \"isOpen\", {\n /**\n * Whether the manager is accepting new jobs.\n */\n get: function () {\n return this._state === BackgroundProcessManagerState.Open;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BackgroundProcessManager.prototype, \"isClosing\", {\n /**\n * Whether the manager is rejecting new work, but still waiting for\n * submitted work to complete.\n */\n get: function () {\n return this._state === BackgroundProcessManagerState.Closing;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BackgroundProcessManager.prototype, \"isClosed\", {\n /**\n * Whether the manager is rejecting work and done waiting for submitted\n * work to complete.\n */\n get: function () {\n return this._state === BackgroundProcessManagerState.Closed;\n },\n enumerable: true,\n configurable: true\n });\n BackgroundProcessManager.prototype.closedFailure = function (description) {\n if (!this.isOpen) {\n return Promise.reject(new BackgroundManagerNotOpenError([\n \"The manager is \" + this.state + \".\",\n \"You tried to add \\\"\" + description + \"\\\".\",\n \"Pending jobs: [\\n\" + this.pending\n .map(function (t) { return ' ' + t; })\n .join(',\\n') + \"\\n]\",\n ].join('\\n')));\n }\n };\n /**\n * Signals jobs to stop (for those that accept interruptions) and waits\n * for confirmation that jobs have stopped.\n *\n * This immediately puts the manager into a closing state and just begins\n * to reject new work. After all work in the manager is complete, the\n * manager goes into a `Completed` state and `close()` returns.\n *\n * This call is idempotent.\n *\n * If the manager is already closing or closed, `finalCleaup` is not executed.\n *\n * @param onClosed\n * @returns The settled results of each still-running job's promise. If the\n * manager is already closed, this will contain the results as of when the\n * manager's `close()` was called in an `Open` state.\n */\n BackgroundProcessManager.prototype.close = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _a, _b, job;\n var e_1, _c;\n return __generator(this, function (_d) {\n switch (_d.label) {\n case 0:\n if (!this.isOpen) return [3 /*break*/, 2];\n this._state = BackgroundProcessManagerState.Closing;\n try {\n for (_a = __values(Array.from(this.jobs)), _b = _a.next(); !_b.done; _b = _a.next()) {\n job = _b.value;\n try {\n job.terminate();\n }\n catch (error) {\n // Due to potential races with a job's natural completion, it's\n // reasonable to expect the termination call to fail. Hence,\n // not logging as an error.\n console.warn(\"Failed to send termination signal to job. Error: \" + error.message, job);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_b && !_b.done && (_c = _a.return)) _c.call(_a);\n }\n finally { if (e_1) throw e_1.error; }\n }\n // Use `allSettled()` because we want to wait for all to finish. We do\n // not want to stop waiting if there is a failure.\n this._closingPromise = Promise.allSettled(Array.from(this.jobs).map(function (j) { return j.promise; }));\n return [4 /*yield*/, this._closingPromise];\n case 1:\n _d.sent();\n this._state = BackgroundProcessManagerState.Closed;\n _d.label = 2;\n case 2: return [2 /*return*/, this._closingPromise];\n }\n });\n });\n };\n /**\n * Signals the manager to start accepting work (again) and returns once\n * the manager is ready to do so.\n *\n * If the state is already `Open`, this call is a no-op.\n *\n * If the state is `Closed`, this call simply updates state and returns.\n *\n * If the state is `Closing`, this call waits for completion before it\n * updates the state and returns.\n */\n BackgroundProcessManager.prototype.open = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!this.isClosing) return [3 /*break*/, 2];\n return [4 /*yield*/, this.close()];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n this._state = BackgroundProcessManagerState.Open;\n return [2 /*return*/];\n }\n });\n });\n };\n return BackgroundProcessManager;\n}());\n\n/**\n *\n */\nvar BackgroundManagerNotOpenError = /** @class */ (function (_super) {\n __extends(BackgroundManagerNotOpenError, _super);\n function BackgroundManagerNotOpenError(message) {\n return _super.call(this, \"BackgroundManagerNotOpenError: \" + message) || this;\n }\n return BackgroundManagerNotOpenError;\n}(Error));\n\n/**\n * All possible states a `BackgroundProcessManager` instance can be in.\n */\nvar BackgroundProcessManagerState;\n(function (BackgroundProcessManagerState) {\n /**\n * Accepting new jobs.\n */\n BackgroundProcessManagerState[\"Open\"] = \"Open\";\n /**\n * Not accepting new jobs. Waiting for submitted jobs to complete.\n */\n BackgroundProcessManagerState[\"Closing\"] = \"Closing\";\n /**\n * Not accepting new jobs. All submitted jobs are complete.\n */\n BackgroundProcessManagerState[\"Closed\"] = \"Closed\";\n})(BackgroundProcessManagerState || (BackgroundProcessManagerState = {}));\n//# sourceMappingURL=BackgroundProcessManager.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Util/BackgroundProcessManager.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Util/CognitoIdentityClient.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Util/CognitoIdentityClient.js ***! \******************************************************************************/ /*! exports provided: createCognitoIdentityClient, middlewareArgs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createCognitoIdentityClient\", function() { return createCognitoIdentityClient; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"middlewareArgs\", function() { return middlewareArgs; });\n/* harmony import */ var _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/client-cognito-identity */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/index.js\");\n/* harmony import */ var _Platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Platform */ \"./node_modules/@aws-amplify/core/lib-esm/Platform/index.js\");\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n\n\n/**\n * Returns a CognitoIdentityClient with middleware\n * @param {CognitoIdentityClientConfig} config\n * @return {CognitoIdentityClient}\n */\nfunction createCognitoIdentityClient(config) {\n var client = new _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_0__[\"CognitoIdentityClient\"]({\n region: config.region,\n customUserAgent: Object(_Platform__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(),\n });\n client.middlewareStack.add(function (next, _) { return function (args) {\n return next(middlewareArgs(args));\n }; }, {\n step: 'build',\n name: 'cacheControlMiddleWare',\n });\n return client;\n}\nfunction middlewareArgs(args) {\n return __assign(__assign({}, args), { request: __assign(__assign({}, args.request), { headers: __assign(__assign({}, args.request.headers), { 'cache-control': 'no-store' }) }) });\n}\n//# sourceMappingURL=CognitoIdentityClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Util/CognitoIdentityClient.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Util/Constants.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Util/Constants.js ***! \******************************************************************/ /*! exports provided: AWS_CLOUDWATCH_BASE_BUFFER_SIZE, AWS_CLOUDWATCH_CATEGORY, AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE, AWS_CLOUDWATCH_MAX_EVENT_SIZE, AWS_CLOUDWATCH_PROVIDER_NAME, NO_CREDS_ERROR_STRING, RETRY_ERROR_CODES */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_BASE_BUFFER_SIZE\", function() { return AWS_CLOUDWATCH_BASE_BUFFER_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_CATEGORY\", function() { return AWS_CLOUDWATCH_CATEGORY; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE\", function() { return AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_MAX_EVENT_SIZE\", function() { return AWS_CLOUDWATCH_MAX_EVENT_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_PROVIDER_NAME\", function() { return AWS_CLOUDWATCH_PROVIDER_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NO_CREDS_ERROR_STRING\", function() { return NO_CREDS_ERROR_STRING; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RETRY_ERROR_CODES\", function() { return RETRY_ERROR_CODES; });\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n// Logging constants\nvar AWS_CLOUDWATCH_BASE_BUFFER_SIZE = 26;\nvar AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE = 1048576;\nvar AWS_CLOUDWATCH_MAX_EVENT_SIZE = 256000;\nvar AWS_CLOUDWATCH_CATEGORY = 'Logging';\nvar AWS_CLOUDWATCH_PROVIDER_NAME = 'AWSCloudWatch';\nvar NO_CREDS_ERROR_STRING = 'No credentials';\nvar RETRY_ERROR_CODES = [\n 'ResourceNotFoundException',\n 'InvalidSequenceTokenException',\n];\n\n//# sourceMappingURL=Constants.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Util/Constants.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Util/DateUtils.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Util/DateUtils.js ***! \******************************************************************/ /*! exports provided: DateUtils */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DateUtils\", function() { return DateUtils; });\n/**\n * Date & time utility functions to abstract the `aws-sdk` away from users.\n * (v2 => v3 modularization is a breaking change)\n *\n * @see https://github.com/aws/aws-sdk-js/blob/6edf586dcc1de7fe8fbfbbd9a0d2b1847921e6e1/lib/util.js#L262\n */\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n// Comment - TODO: remove\nvar FIVE_MINUTES_IN_MS = 1000 * 60 * 5;\nvar DateUtils = {\n /**\n * Milliseconds to offset the date to compensate for clock skew between device & services\n */\n clockOffset: 0,\n getDateWithClockOffset: function () {\n if (DateUtils.clockOffset) {\n return new Date(new Date().getTime() + DateUtils.clockOffset);\n }\n else {\n return new Date();\n }\n },\n /**\n * @returns {number} Clock offset in milliseconds\n */\n getClockOffset: function () {\n return DateUtils.clockOffset;\n },\n getHeaderStringFromDate: function (date) {\n if (date === void 0) { date = DateUtils.getDateWithClockOffset(); }\n return date.toISOString().replace(/[:\\-]|\\.\\d{3}/g, '');\n },\n getDateFromHeaderString: function (header) {\n var _a = __read(header.match(/^(\\d{4})(\\d{2})(\\d{2})T(\\d{2})(\\d{2})(\\d{2}).+/), 7), year = _a[1], month = _a[2], day = _a[3], hour = _a[4], minute = _a[5], second = _a[6];\n return new Date(Date.UTC(Number(year), Number(month) - 1, Number(day), Number(hour), Number(minute), Number(second)));\n },\n isClockSkewed: function (serverDate) {\n // API gateway permits client calls that are off by no more than ±5 minutes\n return (Math.abs(serverDate.getTime() - DateUtils.getDateWithClockOffset().getTime()) >= FIVE_MINUTES_IN_MS);\n },\n isClockSkewError: function (error) {\n if (!error.response || !error.response.headers) {\n return false;\n }\n var headers = error.response.headers;\n return Boolean(['BadRequestException', 'InvalidSignatureException'].includes(headers['x-amzn-errortype']) &&\n (headers.date || headers.Date));\n },\n /**\n * @param {number} offset Clock offset in milliseconds\n */\n setClockOffset: function (offset) {\n DateUtils.clockOffset = offset;\n },\n};\n//# sourceMappingURL=DateUtils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Util/DateUtils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Util/Mutex.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Util/Mutex.js ***! \**************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/*!\n * The MIT License (MIT)\n *\n * Copyright (c) 2016 Christian Speckner \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */\nvar Mutex = /** @class */ (function () {\n function Mutex() {\n this._queue = [];\n this._pending = false;\n }\n Mutex.prototype.isLocked = function () {\n return this._pending;\n };\n Mutex.prototype.acquire = function () {\n var _this = this;\n var ticket = new Promise(function (resolve) {\n return _this._queue.push(resolve);\n });\n if (!this._pending) {\n this._dispatchNext();\n }\n return ticket;\n };\n Mutex.prototype.runExclusive = function (callback) {\n return this.acquire().then(function (release) {\n var result;\n try {\n result = callback();\n }\n catch (e) {\n release();\n throw e;\n }\n return Promise.resolve(result).then(function (x) { return (release(), x); }, function (e) {\n release();\n throw e;\n });\n });\n };\n Mutex.prototype._dispatchNext = function () {\n if (this._queue.length > 0) {\n this._pending = true;\n this._queue.shift()(this._dispatchNext.bind(this));\n }\n else {\n this._pending = false;\n }\n };\n return Mutex;\n}());\n/* harmony default export */ __webpack_exports__[\"default\"] = (Mutex);\n//# sourceMappingURL=Mutex.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Util/Mutex.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Util/Reachability.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Util/Reachability.js ***! \*********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\n\n\nvar ReachabilityNavigator = /** @class */ (function () {\n function ReachabilityNavigator() {\n }\n ReachabilityNavigator.prototype.networkMonitor = function (netInfo) {\n if (Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"browserOrNode\"])().isNode) {\n return zen_observable_ts__WEBPACK_IMPORTED_MODULE_1__[\"default\"].from([{ online: true }]);\n }\n var globalObj = Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"isWebWorker\"])() ? self : window;\n return new zen_observable_ts__WEBPACK_IMPORTED_MODULE_1__[\"default\"](function (observer) {\n observer.next({ online: globalObj.navigator.onLine });\n var notifyOnline = function () { return observer.next({ online: true }); };\n var notifyOffline = function () { return observer.next({ online: false }); };\n globalObj.addEventListener('online', notifyOnline);\n globalObj.addEventListener('offline', notifyOffline);\n ReachabilityNavigator._observers.push(observer);\n return function () {\n globalObj.removeEventListener('online', notifyOnline);\n globalObj.removeEventListener('offline', notifyOffline);\n ReachabilityNavigator._observers = ReachabilityNavigator._observers.filter(function (_observer) { return _observer !== observer; });\n };\n });\n };\n // expose observers to simulate offline mode for integration testing\n ReachabilityNavigator._observerOverride = function (status) {\n var e_1, _a;\n var _loop_1 = function (observer) {\n if (observer.closed) {\n ReachabilityNavigator._observers = ReachabilityNavigator._observers.filter(function (_observer) { return _observer !== observer; });\n return \"continue\";\n }\n observer.next(status);\n };\n try {\n for (var _b = __values(ReachabilityNavigator._observers), _c = _b.next(); !_c.done; _c = _b.next()) {\n var observer = _c.value;\n _loop_1(observer);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n };\n ReachabilityNavigator._observers = [];\n return ReachabilityNavigator;\n}());\n/* harmony default export */ __webpack_exports__[\"default\"] = (ReachabilityNavigator);\n//# sourceMappingURL=Reachability.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Util/Reachability.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Util/Retry.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Util/Retry.js ***! \**************************************************************/ /*! exports provided: NonRetryableError, retry, jitteredBackoff, jitteredExponentialRetry */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NonRetryableError\", function() { return NonRetryableError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"retry\", function() { return retry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"jitteredBackoff\", function() { return jitteredBackoff; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"jitteredExponentialRetry\", function() { return jitteredExponentialRetry; });\n/* harmony import */ var _Logger_ConsoleLogger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Logger/ConsoleLogger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/ConsoleLogger.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\nvar logger = new _Logger_ConsoleLogger__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Util');\nvar NonRetryableError = /** @class */ (function (_super) {\n __extends(NonRetryableError, _super);\n function NonRetryableError(message) {\n var _this = _super.call(this, message) || this;\n _this.nonRetryable = true;\n return _this;\n }\n return NonRetryableError;\n}(Error));\n\nvar isNonRetryableError = function (obj) {\n var key = 'nonRetryable';\n return obj && obj[key];\n};\n/**\n * @private\n * Internal use of Amplify only\n */\nfunction retry(functionToRetry, args, delayFn, onTerminate) {\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n if (typeof functionToRetry !== 'function') {\n throw Error('functionToRetry must be a function');\n }\n return [2 /*return*/, new Promise(function (resolve, reject) { return __awaiter(_this, void 0, void 0, function () {\n var attempt, terminated, timeout, wakeUp, lastError, _loop_1, state_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n attempt = 0;\n terminated = false;\n wakeUp = function () { };\n onTerminate &&\n onTerminate.then(function () {\n // signal not to try anymore.\n terminated = true;\n // stop sleeping if we're sleeping.\n clearTimeout(timeout);\n wakeUp();\n });\n _loop_1 = function () {\n var _a, _b, err_1, retryIn_1;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n attempt++;\n logger.debug(functionToRetry.name + \" attempt #\" + attempt + \" with this vars: \" + JSON.stringify(args));\n _c.label = 1;\n case 1:\n _c.trys.push([1, 3, , 7]);\n _a = {};\n _b = resolve;\n return [4 /*yield*/, functionToRetry.apply(void 0, __spread(args))];\n case 2: return [2 /*return*/, (_a.value = _b.apply(void 0, [_c.sent()]), _a)];\n case 3:\n err_1 = _c.sent();\n lastError = err_1;\n logger.debug(\"error on \" + functionToRetry.name, err_1);\n if (isNonRetryableError(err_1)) {\n logger.debug(functionToRetry.name + \" non retryable error\", err_1);\n return [2 /*return*/, { value: reject(err_1) }];\n }\n retryIn_1 = delayFn(attempt, args, err_1);\n logger.debug(functionToRetry.name + \" retrying in \" + retryIn_1 + \" ms\");\n if (!(retryIn_1 === false || terminated)) return [3 /*break*/, 4];\n return [2 /*return*/, { value: reject(err_1) }];\n case 4: return [4 /*yield*/, new Promise(function (r) {\n wakeUp = r; // export wakeUp for onTerminate handling\n timeout = setTimeout(wakeUp, retryIn_1);\n })];\n case 5:\n _c.sent();\n _c.label = 6;\n case 6: return [3 /*break*/, 7];\n case 7: return [2 /*return*/];\n }\n });\n };\n _a.label = 1;\n case 1:\n if (!!terminated) return [3 /*break*/, 3];\n return [5 /*yield**/, _loop_1()];\n case 2:\n state_1 = _a.sent();\n if (typeof state_1 === \"object\")\n return [2 /*return*/, state_1.value];\n return [3 /*break*/, 1];\n case 3:\n // reached if terminated while waiting for a timer.\n reject(lastError);\n return [2 /*return*/];\n }\n });\n }); })];\n });\n });\n}\nvar MAX_DELAY_MS = 5 * 60 * 1000;\n/**\n * @private\n * Internal use of Amplify only\n */\nfunction jitteredBackoff(maxDelayMs) {\n if (maxDelayMs === void 0) { maxDelayMs = MAX_DELAY_MS; }\n var BASE_TIME_MS = 100;\n var JITTER_FACTOR = 100;\n return function (attempt) {\n var delay = Math.pow(2, attempt) * BASE_TIME_MS + JITTER_FACTOR * Math.random();\n return delay > maxDelayMs ? false : delay;\n };\n}\n/**\n * @private\n * Internal use of Amplify only\n */\nvar jitteredExponentialRetry = function (functionToRetry, args, maxDelayMs, onTerminate) {\n if (maxDelayMs === void 0) { maxDelayMs = MAX_DELAY_MS; }\n return retry(functionToRetry, args, jitteredBackoff(maxDelayMs), onTerminate);\n};\n//# sourceMappingURL=Retry.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Util/Retry.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Util/StringUtils.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Util/StringUtils.js ***! \********************************************************************/ /*! exports provided: urlSafeEncode, urlSafeDecode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"urlSafeEncode\", function() { return urlSafeEncode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"urlSafeDecode\", function() { return urlSafeDecode; });\nfunction urlSafeEncode(str) {\n return str\n .split('')\n .map(function (char) {\n return char\n .charCodeAt(0)\n .toString(16)\n .padStart(2, '0');\n })\n .join('');\n}\nfunction urlSafeDecode(hex) {\n return hex\n .match(/.{2}/g)\n .map(function (char) { return String.fromCharCode(parseInt(char, 16)); })\n .join('');\n}\n//# sourceMappingURL=StringUtils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Util/StringUtils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/Util/index.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/Util/index.js ***! \**************************************************************/ /*! exports provided: NonRetryableError, retry, jitteredBackoff, jitteredExponentialRetry, Mutex, Reachability, DateUtils, urlSafeEncode, urlSafeDecode, AWS_CLOUDWATCH_BASE_BUFFER_SIZE, AWS_CLOUDWATCH_CATEGORY, AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE, AWS_CLOUDWATCH_MAX_EVENT_SIZE, AWS_CLOUDWATCH_PROVIDER_NAME, NO_CREDS_ERROR_STRING, RETRY_ERROR_CODES, BackgroundProcessManager, BackgroundManagerNotOpenError, BackgroundProcessManagerState */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Retry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Retry */ \"./node_modules/@aws-amplify/core/lib-esm/Util/Retry.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NonRetryableError\", function() { return _Retry__WEBPACK_IMPORTED_MODULE_0__[\"NonRetryableError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retry\", function() { return _Retry__WEBPACK_IMPORTED_MODULE_0__[\"retry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"jitteredBackoff\", function() { return _Retry__WEBPACK_IMPORTED_MODULE_0__[\"jitteredBackoff\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"jitteredExponentialRetry\", function() { return _Retry__WEBPACK_IMPORTED_MODULE_0__[\"jitteredExponentialRetry\"]; });\n\n/* harmony import */ var _Mutex__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Mutex */ \"./node_modules/@aws-amplify/core/lib-esm/Util/Mutex.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Mutex\", function() { return _Mutex__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _Reachability__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Reachability */ \"./node_modules/@aws-amplify/core/lib-esm/Util/Reachability.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Reachability\", function() { return _Reachability__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n/* harmony import */ var _DateUtils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./DateUtils */ \"./node_modules/@aws-amplify/core/lib-esm/Util/DateUtils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DateUtils\", function() { return _DateUtils__WEBPACK_IMPORTED_MODULE_3__[\"DateUtils\"]; });\n\n/* harmony import */ var _StringUtils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./StringUtils */ \"./node_modules/@aws-amplify/core/lib-esm/Util/StringUtils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"urlSafeEncode\", function() { return _StringUtils__WEBPACK_IMPORTED_MODULE_4__[\"urlSafeEncode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"urlSafeDecode\", function() { return _StringUtils__WEBPACK_IMPORTED_MODULE_4__[\"urlSafeDecode\"]; });\n\n/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Constants */ \"./node_modules/@aws-amplify/core/lib-esm/Util/Constants.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_BASE_BUFFER_SIZE\", function() { return _Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_BASE_BUFFER_SIZE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_CATEGORY\", function() { return _Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_CATEGORY\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE\", function() { return _Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_MAX_EVENT_SIZE\", function() { return _Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_MAX_EVENT_SIZE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_PROVIDER_NAME\", function() { return _Constants__WEBPACK_IMPORTED_MODULE_5__[\"AWS_CLOUDWATCH_PROVIDER_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NO_CREDS_ERROR_STRING\", function() { return _Constants__WEBPACK_IMPORTED_MODULE_5__[\"NO_CREDS_ERROR_STRING\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RETRY_ERROR_CODES\", function() { return _Constants__WEBPACK_IMPORTED_MODULE_5__[\"RETRY_ERROR_CODES\"]; });\n\n/* harmony import */ var _BackgroundProcessManager__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BackgroundProcessManager */ \"./node_modules/@aws-amplify/core/lib-esm/Util/BackgroundProcessManager.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BackgroundProcessManager\", function() { return _BackgroundProcessManager__WEBPACK_IMPORTED_MODULE_6__[\"BackgroundProcessManager\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BackgroundManagerNotOpenError\", function() { return _BackgroundProcessManager__WEBPACK_IMPORTED_MODULE_6__[\"BackgroundManagerNotOpenError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BackgroundProcessManagerState\", function() { return _BackgroundProcessManager__WEBPACK_IMPORTED_MODULE_6__[\"BackgroundProcessManagerState\"]; });\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/Util/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/constants.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/constants.js ***! \*************************************************************/ /*! exports provided: INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER, INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER, USER_AGENT_HEADER */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER\", function() { return INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER\", function() { return INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"USER_AGENT_HEADER\", function() { return USER_AGENT_HEADER; });\n/*\n * Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n/**\n * This Symbol is used to reference an internal-only PubSub provider that\n * is used for AppSync/GraphQL subscriptions in the API category.\n */\nvar hasSymbol = typeof Symbol !== 'undefined' && typeof Symbol.for === 'function';\n/**\n * @deprecated Unused, all usecases have migrated to INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER\n */\nvar INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER = hasSymbol\n ? Symbol.for('INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER')\n : '@@INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER';\nvar INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER = hasSymbol\n ? Symbol.for('INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER')\n : '@@INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER';\nvar USER_AGENT_HEADER = 'x-amz-user-agent';\n//# sourceMappingURL=constants.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/constants.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/core/lib-esm/index.js": /*!*********************************************************!*\ !*** ./node_modules/@aws-amplify/core/lib-esm/index.js ***! \*********************************************************/ /*! exports provided: AmplifyClass, ClientDevice, ConsoleLogger, Logger, missingConfig, invalidParameter, Hub, I18n, isEmpty, sortByField, objectLessAttributes, filenameToContentType, isTextFile, generateRandomString, makeQuerablePromise, isWebWorker, browserOrNode, transferKeyToLowerCase, transferKeyToUpperCase, isStrictObject, JS, Signer, parseMobileHubConfig, Parser, AWSCloudWatchProvider, FacebookOAuth, GoogleOAuth, Linking, AppState, AsyncStorage, Credentials, CredentialsClass, ServiceWorker, StorageHelper, MemoryStorage, UniversalStorage, Platform, getAmplifyUserAgent, INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER, INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER, USER_AGENT_HEADER, Constants, NonRetryableError, retry, jitteredBackoff, jitteredExponentialRetry, Mutex, Reachability, DateUtils, urlSafeEncode, urlSafeDecode, AWS_CLOUDWATCH_BASE_BUFFER_SIZE, AWS_CLOUDWATCH_CATEGORY, AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE, AWS_CLOUDWATCH_MAX_EVENT_SIZE, AWS_CLOUDWATCH_PROVIDER_NAME, NO_CREDS_ERROR_STRING, RETRY_ERROR_CODES, BackgroundProcessManager, BackgroundManagerNotOpenError, BackgroundProcessManagerState, Amplify, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Constants\", function() { return Constants; });\n/* harmony import */ var _Amplify__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Amplify */ \"./node_modules/@aws-amplify/core/lib-esm/Amplify.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Amplify\", function() { return _Amplify__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"]; });\n\n/* harmony import */ var _Platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Platform */ \"./node_modules/@aws-amplify/core/lib-esm/Platform/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmplifyClass\", function() { return _Amplify__WEBPACK_IMPORTED_MODULE_0__[\"AmplifyClass\"]; });\n\n/* harmony import */ var _ClientDevice__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ClientDevice */ \"./node_modules/@aws-amplify/core/lib-esm/ClientDevice/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClientDevice\", function() { return _ClientDevice__WEBPACK_IMPORTED_MODULE_2__[\"ClientDevice\"]; });\n\n/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Logger */ \"./node_modules/@aws-amplify/core/lib-esm/Logger/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConsoleLogger\", function() { return _Logger__WEBPACK_IMPORTED_MODULE_3__[\"ConsoleLogger\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Logger\", function() { return _Logger__WEBPACK_IMPORTED_MODULE_3__[\"ConsoleLogger\"]; });\n\n/* harmony import */ var _Errors__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Errors */ \"./node_modules/@aws-amplify/core/lib-esm/Errors.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"missingConfig\", function() { return _Errors__WEBPACK_IMPORTED_MODULE_4__[\"missingConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"invalidParameter\", function() { return _Errors__WEBPACK_IMPORTED_MODULE_4__[\"invalidParameter\"]; });\n\n/* harmony import */ var _Hub__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Hub */ \"./node_modules/@aws-amplify/core/lib-esm/Hub.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Hub\", function() { return _Hub__WEBPACK_IMPORTED_MODULE_5__[\"Hub\"]; });\n\n/* harmony import */ var _I18n__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./I18n */ \"./node_modules/@aws-amplify/core/lib-esm/I18n/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"I18n\", function() { return _I18n__WEBPACK_IMPORTED_MODULE_6__[\"I18n\"]; });\n\n/* harmony import */ var _JS__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./JS */ \"./node_modules/@aws-amplify/core/lib-esm/JS.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isEmpty\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"isEmpty\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"sortByField\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"sortByField\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"objectLessAttributes\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"objectLessAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"filenameToContentType\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"filenameToContentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTextFile\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"isTextFile\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"generateRandomString\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"generateRandomString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"makeQuerablePromise\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"makeQuerablePromise\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isWebWorker\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"isWebWorker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"browserOrNode\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"browserOrNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"transferKeyToLowerCase\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"transferKeyToLowerCase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"transferKeyToUpperCase\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"transferKeyToUpperCase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isStrictObject\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"isStrictObject\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JS\", function() { return _JS__WEBPACK_IMPORTED_MODULE_7__[\"JS\"]; });\n\n/* harmony import */ var _Signer__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./Signer */ \"./node_modules/@aws-amplify/core/lib-esm/Signer.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Signer\", function() { return _Signer__WEBPACK_IMPORTED_MODULE_8__[\"Signer\"]; });\n\n/* harmony import */ var _Parser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./Parser */ \"./node_modules/@aws-amplify/core/lib-esm/Parser.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseMobileHubConfig\", function() { return _Parser__WEBPACK_IMPORTED_MODULE_9__[\"parseMobileHubConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Parser\", function() { return _Parser__WEBPACK_IMPORTED_MODULE_9__[\"Parser\"]; });\n\n/* harmony import */ var _Providers__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./Providers */ \"./node_modules/@aws-amplify/core/lib-esm/Providers/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSCloudWatchProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_10__[\"AWSCloudWatchProvider\"]; });\n\n/* harmony import */ var _OAuthHelper__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./OAuthHelper */ \"./node_modules/@aws-amplify/core/lib-esm/OAuthHelper/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FacebookOAuth\", function() { return _OAuthHelper__WEBPACK_IMPORTED_MODULE_11__[\"FacebookOAuth\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GoogleOAuth\", function() { return _OAuthHelper__WEBPACK_IMPORTED_MODULE_11__[\"GoogleOAuth\"]; });\n\n/* harmony import */ var _RNComponents__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./RNComponents */ \"./node_modules/@aws-amplify/core/lib-esm/RNComponents/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Linking\", function() { return _RNComponents__WEBPACK_IMPORTED_MODULE_12__[\"Linking\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AppState\", function() { return _RNComponents__WEBPACK_IMPORTED_MODULE_12__[\"AppState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AsyncStorage\", function() { return _RNComponents__WEBPACK_IMPORTED_MODULE_12__[\"AsyncStorage\"]; });\n\n/* harmony import */ var _Credentials__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./Credentials */ \"./node_modules/@aws-amplify/core/lib-esm/Credentials.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Credentials\", function() { return _Credentials__WEBPACK_IMPORTED_MODULE_13__[\"Credentials\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CredentialsClass\", function() { return _Credentials__WEBPACK_IMPORTED_MODULE_13__[\"CredentialsClass\"]; });\n\n/* harmony import */ var _ServiceWorker__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./ServiceWorker */ \"./node_modules/@aws-amplify/core/lib-esm/ServiceWorker/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceWorker\", function() { return _ServiceWorker__WEBPACK_IMPORTED_MODULE_14__[\"ServiceWorker\"]; });\n\n/* harmony import */ var _StorageHelper__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./StorageHelper */ \"./node_modules/@aws-amplify/core/lib-esm/StorageHelper/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StorageHelper\", function() { return _StorageHelper__WEBPACK_IMPORTED_MODULE_15__[\"StorageHelper\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MemoryStorage\", function() { return _StorageHelper__WEBPACK_IMPORTED_MODULE_15__[\"MemoryStorage\"]; });\n\n/* harmony import */ var _UniversalStorage__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./UniversalStorage */ \"./node_modules/@aws-amplify/core/lib-esm/UniversalStorage/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniversalStorage\", function() { return _UniversalStorage__WEBPACK_IMPORTED_MODULE_16__[\"UniversalStorage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Platform\", function() { return _Platform__WEBPACK_IMPORTED_MODULE_1__[\"Platform\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getAmplifyUserAgent\", function() { return _Platform__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"]; });\n\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-amplify/core/lib-esm/constants.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER\", function() { return _constants__WEBPACK_IMPORTED_MODULE_17__[\"INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER\", function() { return _constants__WEBPACK_IMPORTED_MODULE_17__[\"INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"USER_AGENT_HEADER\", function() { return _constants__WEBPACK_IMPORTED_MODULE_17__[\"USER_AGENT_HEADER\"]; });\n\n/* empty/unused harmony star reexport *//* harmony import */ var _Util__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./Util */ \"./node_modules/@aws-amplify/core/lib-esm/Util/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NonRetryableError\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"NonRetryableError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retry\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"retry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"jitteredBackoff\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"jitteredBackoff\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"jitteredExponentialRetry\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"jitteredExponentialRetry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Mutex\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"Mutex\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Reachability\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"Reachability\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DateUtils\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"DateUtils\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"urlSafeEncode\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"urlSafeEncode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"urlSafeDecode\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"urlSafeDecode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_BASE_BUFFER_SIZE\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"AWS_CLOUDWATCH_BASE_BUFFER_SIZE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_CATEGORY\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"AWS_CLOUDWATCH_CATEGORY\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"AWS_CLOUDWATCH_MAX_BATCH_EVENT_SIZE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_MAX_EVENT_SIZE\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"AWS_CLOUDWATCH_MAX_EVENT_SIZE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWS_CLOUDWATCH_PROVIDER_NAME\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"AWS_CLOUDWATCH_PROVIDER_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NO_CREDS_ERROR_STRING\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"NO_CREDS_ERROR_STRING\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RETRY_ERROR_CODES\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"RETRY_ERROR_CODES\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BackgroundProcessManager\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"BackgroundProcessManager\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BackgroundManagerNotOpenError\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"BackgroundManagerNotOpenError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BackgroundProcessManagerState\", function() { return _Util__WEBPACK_IMPORTED_MODULE_18__[\"BackgroundProcessManagerState\"]; });\n\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar Constants = {\n userAgent: _Platform__WEBPACK_IMPORTED_MODULE_1__[\"Platform\"].userAgent,\n};\n\n\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_Amplify__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"]);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/core/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/defaultAuthStrategy.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/defaultAuthStrategy.js ***! \***********************************************************************************************/ /*! exports provided: defaultAuthStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultAuthStrategy\", function() { return defaultAuthStrategy; });\n// Default behavior is to use the primary auth mode for an API,\n// so we are returning an empty array so that DataStore will default\n// to using the primary auth mode.\nvar defaultAuthStrategy = function () { return []; };\n//# sourceMappingURL=defaultAuthStrategy.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/defaultAuthStrategy.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/index.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/index.js ***! \*********************************************************************************/ /*! exports provided: defaultAuthStrategy, multiAuthStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _defaultAuthStrategy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./defaultAuthStrategy */ \"./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/defaultAuthStrategy.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultAuthStrategy\", function() { return _defaultAuthStrategy__WEBPACK_IMPORTED_MODULE_0__[\"defaultAuthStrategy\"]; });\n\n/* harmony import */ var _multiAuthStrategy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./multiAuthStrategy */ \"./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/multiAuthStrategy.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"multiAuthStrategy\", function() { return _multiAuthStrategy__WEBPACK_IMPORTED_MODULE_1__[\"multiAuthStrategy\"]; });\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/multiAuthStrategy.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/multiAuthStrategy.js ***! \*********************************************************************************************/ /*! exports provided: multiAuthStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"multiAuthStrategy\", function() { return multiAuthStrategy; });\n/* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/auth */ \"./node_modules/@aws-amplify/auth/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/api-graphql */ \"./node_modules/@aws-amplify/api-graphql/lib-esm/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\nfunction getProviderFromRule(rule) {\n // private with no provider means userPools\n if (rule.allow === 'private' && !rule.provider) {\n return _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].USER_POOLS;\n }\n // public with no provider means apiKey\n if (rule.allow === 'public' && !rule.provider) {\n return _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].API_KEY;\n }\n return rule.provider;\n}\nfunction sortAuthRulesWithPriority(rules) {\n var allowSortPriority = [\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].CUSTOM,\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].OWNER,\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].GROUPS,\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].PRIVATE,\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].PUBLIC,\n ];\n var providerSortPriority = [\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].FUNCTION,\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].USER_POOLS,\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].OIDC,\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].IAM,\n _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].API_KEY,\n ];\n return __spread(rules).sort(function (a, b) {\n if (a.allow === b.allow) {\n return (providerSortPriority.indexOf(getProviderFromRule(a)) -\n providerSortPriority.indexOf(getProviderFromRule(b)));\n }\n return (allowSortPriority.indexOf(a.allow) - allowSortPriority.indexOf(b.allow));\n });\n}\nfunction getAuthRules(_a) {\n var rules = _a.rules, currentUser = _a.currentUser;\n // Using Set to ensure uniqueness\n var authModes = new Set();\n rules.forEach(function (rule) {\n switch (rule.allow) {\n case _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].CUSTOM:\n // custom with no provider -> function\n if (!rule.provider ||\n rule.provider === _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].FUNCTION) {\n authModes.add(_aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"].AWS_LAMBDA);\n }\n break;\n case _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].GROUPS:\n case _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].OWNER: {\n // We shouldn't attempt User Pool or OIDC if there isn't an authenticated user\n if (currentUser) {\n if (rule.provider === _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].USER_POOLS) {\n authModes.add(_aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"].AMAZON_COGNITO_USER_POOLS);\n }\n else if (rule.provider === _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].OIDC) {\n authModes.add(_aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"].OPENID_CONNECT);\n }\n }\n break;\n }\n case _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].PRIVATE: {\n // We shouldn't attempt private if there isn't an authenticated user\n if (currentUser) {\n // private with no provider means userPools\n if (!rule.provider ||\n rule.provider === _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].USER_POOLS) {\n authModes.add(_aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"].AMAZON_COGNITO_USER_POOLS);\n }\n else if (rule.provider === _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].IAM) {\n authModes.add(_aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"].AWS_IAM);\n }\n }\n break;\n }\n case _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthAllow\"].PUBLIC: {\n if (rule.provider === _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].IAM) {\n authModes.add(_aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"].AWS_IAM);\n }\n else if (!rule.provider ||\n rule.provider === _types__WEBPACK_IMPORTED_MODULE_2__[\"ModelAttributeAuthProvider\"].API_KEY) {\n // public with no provider means apiKey\n authModes.add(_aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_1__[\"GRAPHQL_AUTH_MODE\"].API_KEY);\n }\n break;\n }\n default:\n break;\n }\n });\n return Array.from(authModes);\n}\n/**\n * Returns an array of auth modes to try based on the schema, model, and\n * authenticated user (or lack thereof). Rules are sourced from `getAuthRules`\n * and returned in the order they ought to be attempted.\n *\n * @see sortAuthRulesWithPriority\n * @see getAuthRules\n *\n * @param param0 The `{schema, modelName}` to inspect.\n * @returns A sorted array of auth modes to attempt.\n */\nvar multiAuthStrategy = function (amplifyContext) {\n return function (_a) {\n var schema = _a.schema, modelName = _a.modelName;\n return __awaiter(void 0, void 0, void 0, function () {\n var currentUser, e_1, attributes, authAttribute, sortedRules;\n var _b;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n amplifyContext.Auth = amplifyContext.Auth || _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_0__[\"default\"];\n _c.label = 1;\n case 1:\n _c.trys.push([1, 3, , 4]);\n return [4 /*yield*/, amplifyContext.Auth.currentAuthenticatedUser()];\n case 2:\n currentUser = _c.sent();\n return [3 /*break*/, 4];\n case 3:\n e_1 = _c.sent();\n return [3 /*break*/, 4];\n case 4:\n attributes = schema.namespaces.user.models[modelName].attributes;\n if (attributes) {\n authAttribute = attributes.find(function (attr) { return attr.type === 'auth'; });\n if ((_b = authAttribute === null || authAttribute === void 0 ? void 0 : authAttribute.properties) === null || _b === void 0 ? void 0 : _b.rules) {\n sortedRules = sortAuthRulesWithPriority(authAttribute.properties.rules);\n return [2 /*return*/, getAuthRules({ currentUser: currentUser, rules: sortedRules })];\n }\n }\n return [2 /*return*/, []];\n }\n });\n });\n };\n};\n//# sourceMappingURL=multiAuthStrategy.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/multiAuthStrategy.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/datastore/datastore.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/datastore/datastore.js ***! \****************************************************************************/ /*! exports provided: syncClasses, DataStoreClass, initSchema, DataStore */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"syncClasses\", function() { return syncClasses; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DataStoreClass\", function() { return DataStore; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initSchema\", function() { return initSchema; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DataStore\", function() { return instance; });\n/* harmony import */ var _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/api */ \"./node_modules/@aws-amplify/api/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/auth */ \"./node_modules/@aws-amplify/auth/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/cache */ \"./node_modules/@aws-amplify/cache/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var immer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! immer */ \"./node_modules/immer/dist/immer.esm.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! uuid */ \"./node_modules/@aws-amplify/datastore/node_modules/uuid/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _authModeStrategies__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../authModeStrategies */ \"./node_modules/@aws-amplify/datastore/lib-esm/authModeStrategies/index.js\");\n/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../predicates */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js\");\n/* harmony import */ var _storage_storage__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../storage/storage */ \"./node_modules/@aws-amplify/datastore/lib-esm/storage/storage.js\");\n/* harmony import */ var _sync__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../sync */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _sync_utils__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../sync/utils */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nObject(immer__WEBPACK_IMPORTED_MODULE_4__[\"setAutoFreeze\"])(true);\nObject(immer__WEBPACK_IMPORTED_MODULE_4__[\"enablePatches\"])();\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"ConsoleLogger\"]('DataStore');\nvar ulid = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"monotonicUlidFactory\"])(Date.now());\nvar isNode = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"JS\"].browserOrNode().isNode;\nvar SETTING_SCHEMA_VERSION = 'schemaVersion';\nvar schema;\nvar modelNamespaceMap = new WeakMap();\n// stores data for crafting the correct update mutation input for a model\n// Patch[] - array of changed fields and metadata\n// PersistentModel - the source model, used for diffing object-type fields\nvar modelPatchesMap = new WeakMap();\nvar getModelDefinition = function (modelConstructor) {\n var namespace = modelNamespaceMap.get(modelConstructor);\n return schema.namespaces[namespace].models[modelConstructor.name];\n};\nvar isValidModelConstructor = function (obj) {\n return Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isModelConstructor\"])(obj) && modelNamespaceMap.has(obj);\n};\nvar namespaceResolver = function (modelConstructor) {\n return modelNamespaceMap.get(modelConstructor);\n};\n// exporting syncClasses for testing outbox.test.ts\nvar syncClasses;\nvar userClasses;\nvar dataStoreClasses;\nvar storageClasses;\nvar initSchema = function (userSchema) {\n var _a;\n if (schema !== undefined) {\n console.warn('The schema has already been initialized');\n return userClasses;\n }\n logger.log('validating schema', { schema: userSchema });\n var internalUserNamespace = __assign({ name: _util__WEBPACK_IMPORTED_MODULE_12__[\"USER\"] }, userSchema);\n logger.log('DataStore', 'Init models');\n userClasses = createTypeClasses(internalUserNamespace);\n logger.log('DataStore', 'Models initialized');\n var dataStoreNamespace = getNamespace();\n var storageNamespace = _storage_storage__WEBPACK_IMPORTED_MODULE_9__[\"ExclusiveStorage\"].getNamespace();\n var syncNamespace = _sync__WEBPACK_IMPORTED_MODULE_10__[\"SyncEngine\"].getNamespace();\n dataStoreClasses = createTypeClasses(dataStoreNamespace);\n storageClasses = createTypeClasses(storageNamespace);\n syncClasses = createTypeClasses(syncNamespace);\n schema = {\n namespaces: (_a = {},\n _a[dataStoreNamespace.name] = dataStoreNamespace,\n _a[internalUserNamespace.name] = internalUserNamespace,\n _a[storageNamespace.name] = storageNamespace,\n _a[syncNamespace.name] = syncNamespace,\n _a),\n version: userSchema.version,\n };\n Object.keys(schema.namespaces).forEach(function (namespace) {\n var e_1, _a;\n var _b = __read(Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"establishRelationAndKeys\"])(schema.namespaces[namespace]), 2), relations = _b[0], keys = _b[1];\n schema.namespaces[namespace].relationships = relations;\n schema.namespaces[namespace].keys = keys;\n var modelAssociations = new Map();\n Object.values(schema.namespaces[namespace].models).forEach(function (model) {\n var connectedModels = [];\n Object.values(model.fields)\n .filter(function (field) {\n return field.association &&\n field.association.connectionType === 'BELONGS_TO' &&\n field.type.model !== model.name;\n })\n .forEach(function (field) {\n return connectedModels.push(field.type.model);\n });\n modelAssociations.set(model.name, connectedModels);\n });\n var result = new Map();\n var count = 1000;\n while ( true && count > 0) {\n if (modelAssociations.size === 0) {\n break;\n }\n count--;\n if (count === 0) {\n throw new Error('Models are not topologically sortable. Please verify your schema.');\n }\n try {\n for (var _c = (e_1 = void 0, __values(Array.from(modelAssociations.keys()))), _d = _c.next(); !_d.done; _d = _c.next()) {\n var modelName = _d.value;\n var parents = modelAssociations.get(modelName);\n if (parents.every(function (x) { return result.has(x); })) {\n result.set(modelName, parents);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_a = _c.return)) _a.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n Array.from(result.keys()).forEach(function (x) { return modelAssociations.delete(x); });\n }\n schema.namespaces[namespace].modelTopologicalOrdering = result;\n });\n return userClasses;\n};\n/**\n * Throws an exception if the schema has *not* been initialized\n * by `initSchema()`.\n *\n * **To be called before trying to access schema.**\n *\n * Currently this only needs to be called in `start()` and `clear()` because\n * all other functions will call start first.\n */\nvar checkSchemaInitialized = function () {\n if (schema === undefined) {\n var message = 'Schema is not initialized. DataStore will not function as expected. This could happen if you have multiple versions of DataStore installed. Please see https://docs.amplify.aws/lib/troubleshooting/upgrading/q/platform/js/#check-for-duplicate-versions';\n logger.error(message);\n throw new Error(message);\n }\n};\nvar createTypeClasses = function (namespace) {\n var classes = {};\n Object.entries(namespace.models).forEach(function (_a) {\n var _b = __read(_a, 2), modelName = _b[0], modelDefinition = _b[1];\n var clazz = createModelClass(modelDefinition);\n classes[modelName] = clazz;\n modelNamespaceMap.set(clazz, namespace.name);\n });\n Object.entries(namespace.nonModels || {}).forEach(function (_a) {\n var _b = __read(_a, 2), typeName = _b[0], typeDefinition = _b[1];\n var clazz = createNonModelClass(typeDefinition);\n classes[typeName] = clazz;\n });\n return classes;\n};\n/**\n * Collection of instantiated models to allow storage of metadata apart from\n * the model visible to the consuming app -- in case the app doesn't have\n * metadata fields (_version, _deleted, etc.) exposed on the model itself.\n */\nvar instancesMetadata = new WeakSet();\nfunction modelInstanceCreator(modelConstructor, init) {\n instancesMetadata.add(init);\n return new modelConstructor(init);\n}\nvar validateModelFields = function (modelDefinition) { return function (k, v) {\n var fieldDefinition = modelDefinition.fields[k];\n if (fieldDefinition !== undefined) {\n var type_1 = fieldDefinition.type, isRequired_1 = fieldDefinition.isRequired, isArrayNullable = fieldDefinition.isArrayNullable, name_1 = fieldDefinition.name, isArray = fieldDefinition.isArray;\n if (((!isArray && isRequired_1) || (isArray && !isArrayNullable)) &&\n (v === null || v === undefined)) {\n throw new Error(\"Field \" + name_1 + \" is required\");\n }\n if (Object(_types__WEBPACK_IMPORTED_MODULE_11__[\"isSchemaModelWithAttributes\"])(modelDefinition) &&\n !Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isIdManaged\"])(modelDefinition)) {\n var keys = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n if (keys.includes(k) && v === '') {\n logger.error(_util__WEBPACK_IMPORTED_MODULE_12__[\"errorMessages\"].idEmptyString, { k: k, value: v });\n throw new Error(_util__WEBPACK_IMPORTED_MODULE_12__[\"errorMessages\"].idEmptyString);\n }\n }\n if (Object(_types__WEBPACK_IMPORTED_MODULE_11__[\"isGraphQLScalarType\"])(type_1)) {\n var jsType_1 = _types__WEBPACK_IMPORTED_MODULE_11__[\"GraphQLScalarType\"].getJSType(type_1);\n var validateScalar_1 = _types__WEBPACK_IMPORTED_MODULE_11__[\"GraphQLScalarType\"].getValidationFunction(type_1);\n if (type_1 === 'AWSJSON') {\n if (typeof v === jsType_1) {\n return;\n }\n if (typeof v === 'string') {\n try {\n JSON.parse(v);\n return;\n }\n catch (error) {\n throw new Error(\"Field \" + name_1 + \" is an invalid JSON object. \" + v);\n }\n }\n }\n if (isArray) {\n var errorTypeText = jsType_1;\n if (!isRequired_1) {\n errorTypeText = jsType_1 + \" | null | undefined\";\n }\n if (!Array.isArray(v) && !isArrayNullable) {\n throw new Error(\"Field \" + name_1 + \" should be of type [\" + errorTypeText + \"], \" + typeof v + \" received. \" + v);\n }\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isNullOrUndefined\"])(v) &&\n v.some(function (e) {\n return Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isNullOrUndefined\"])(e) ? isRequired_1 : typeof e !== jsType_1;\n })) {\n var elemTypes = v\n .map(function (e) { return (e === null ? 'null' : typeof e); })\n .join(',');\n throw new Error(\"All elements in the \" + name_1 + \" array should be of type \" + errorTypeText + \", [\" + elemTypes + \"] received. \" + v);\n }\n if (validateScalar_1 && !Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isNullOrUndefined\"])(v)) {\n var validationStatus = v.map(function (e) {\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isNullOrUndefined\"])(e)) {\n return validateScalar_1(e);\n }\n else if (Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isNullOrUndefined\"])(e) && !isRequired_1) {\n return true;\n }\n else {\n return false;\n }\n });\n if (!validationStatus.every(function (s) { return s; })) {\n throw new Error(\"All elements in the \" + name_1 + \" array should be of type \" + type_1 + \", validation failed for one or more elements. \" + v);\n }\n }\n }\n else if (!isRequired_1 && v === undefined) {\n return;\n }\n else if (typeof v !== jsType_1 && v !== null) {\n throw new Error(\"Field \" + name_1 + \" should be of type \" + jsType_1 + \", \" + typeof v + \" received. \" + v);\n }\n else if (!Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isNullOrUndefined\"])(v) &&\n validateScalar_1 &&\n !validateScalar_1(v)) {\n throw new Error(\"Field \" + name_1 + \" should be of type \" + type_1 + \", validation failed. \" + v);\n }\n }\n else if (Object(_types__WEBPACK_IMPORTED_MODULE_11__[\"isNonModelFieldType\"])(type_1)) {\n // do not check non model fields if undefined or null\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isNullOrUndefined\"])(v)) {\n var subNonModelDefinition_1 = schema.namespaces.user.nonModels[type_1.nonModel];\n var modelValidator_1 = validateModelFields(subNonModelDefinition_1);\n if (isArray) {\n var errorTypeText = type_1.nonModel;\n if (!isRequired_1) {\n errorTypeText = type_1.nonModel + \" | null | undefined\";\n }\n if (!Array.isArray(v)) {\n throw new Error(\"Field \" + name_1 + \" should be of type [\" + errorTypeText + \"], \" + typeof v + \" received. \" + v);\n }\n v.forEach(function (item) {\n if ((Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isNullOrUndefined\"])(item) && isRequired_1) ||\n (typeof item !== 'object' && typeof item !== 'undefined')) {\n throw new Error(\"All elements in the \" + name_1 + \" array should be of type \" + type_1.nonModel + \", [\" + typeof item + \"] received. \" + item);\n }\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isNullOrUndefined\"])(item)) {\n Object.keys(subNonModelDefinition_1.fields).forEach(function (subKey) {\n modelValidator_1(subKey, item[subKey]);\n });\n }\n });\n }\n else {\n if (typeof v !== 'object') {\n throw new Error(\"Field \" + name_1 + \" should be of type \" + type_1.nonModel + \", \" + typeof v + \" recieved. \" + v);\n }\n Object.keys(subNonModelDefinition_1.fields).forEach(function (subKey) {\n modelValidator_1(subKey, v[subKey]);\n });\n }\n }\n }\n }\n}; };\nvar castInstanceType = function (modelDefinition, k, v) {\n var _a = modelDefinition.fields[k] || {}, isArray = _a.isArray, type = _a.type;\n // attempt to parse stringified JSON\n if (typeof v === 'string' &&\n (isArray ||\n type === 'AWSJSON' ||\n Object(_types__WEBPACK_IMPORTED_MODULE_11__[\"isNonModelFieldType\"])(type) ||\n Object(_types__WEBPACK_IMPORTED_MODULE_11__[\"isModelFieldType\"])(type))) {\n try {\n return JSON.parse(v);\n }\n catch (_b) {\n // if JSON is invalid, don't throw and let modelValidator handle it\n }\n }\n // cast from numeric representation of boolean to JS boolean\n if (typeof v === 'number' && type === 'Boolean') {\n return Boolean(v);\n }\n return v;\n};\nvar initializeInstance = function (init, modelDefinition, draft) {\n var modelValidator = validateModelFields(modelDefinition);\n Object.entries(init).forEach(function (_a) {\n var _b = __read(_a, 2), k = _b[0], v = _b[1];\n var parsedValue = castInstanceType(modelDefinition, k, v);\n modelValidator(k, parsedValue);\n draft[k] = parsedValue;\n });\n};\nvar createModelClass = function (modelDefinition) {\n var clazz = /** @class */ (function () {\n function Model(init) {\n var instance = Object(immer__WEBPACK_IMPORTED_MODULE_4__[\"produce\"])(this, function (draft) {\n initializeInstance(init, modelDefinition, draft);\n // model is initialized inside a DataStore component (e.g. by Sync Engine, Storage Engine, etc.)\n var isInternallyInitialized = instancesMetadata.has(init);\n var modelInstanceMetadata = isInternallyInitialized\n ? init\n : {};\n var _id = modelInstanceMetadata.id;\n if (Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isIdManaged\"])(modelDefinition)) {\n var isInternalModel = _id !== null && _id !== undefined;\n var id = isInternalModel\n ? _id\n : modelDefinition.syncable\n ? Object(uuid__WEBPACK_IMPORTED_MODULE_5__[\"v4\"])()\n : ulid();\n draft.id = id;\n }\n else if (Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"isIdOptionallyManaged\"])(modelDefinition)) {\n // only auto-populate if the id was not provided\n draft.id = draft.id || Object(uuid__WEBPACK_IMPORTED_MODULE_5__[\"v4\"])();\n }\n if (!isInternallyInitialized) {\n checkReadOnlyPropertyOnCreate(draft, modelDefinition);\n }\n var _version = modelInstanceMetadata._version, _lastChangedAt = modelInstanceMetadata._lastChangedAt, _deleted = modelInstanceMetadata._deleted;\n if (modelDefinition.syncable) {\n draft._version = _version;\n draft._lastChangedAt = _lastChangedAt;\n draft._deleted = _deleted;\n }\n });\n return instance;\n }\n Model.copyOf = function (source, fn) {\n var modelConstructor = Object.getPrototypeOf(source || {}).constructor;\n if (!isValidModelConstructor(modelConstructor)) {\n var msg = 'The source object is not a valid model';\n logger.error(msg, { source: source });\n throw new Error(msg);\n }\n var patches;\n var model = Object(immer__WEBPACK_IMPORTED_MODULE_4__[\"produce\"])(source, function (draft) {\n fn(draft);\n var keyNames = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n // Keys are immutable\n keyNames.forEach(function (key) { return (draft[key] = source[key]); });\n var modelValidator = validateModelFields(modelDefinition);\n Object.entries(draft).forEach(function (_a) {\n var _b = __read(_a, 2), k = _b[0], v = _b[1];\n var parsedValue = castInstanceType(modelDefinition, k, v);\n modelValidator(k, parsedValue);\n });\n }, function (p) { return (patches = p); });\n var hasExistingPatches = modelPatchesMap.has(source);\n if (patches.length || hasExistingPatches) {\n if (hasExistingPatches) {\n var _a = __read(modelPatchesMap.get(source), 2), existingPatches = _a[0], existingSource = _a[1];\n var mergedPatches = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"mergePatches\"])(existingSource, existingPatches, patches);\n modelPatchesMap.set(model, [mergedPatches, existingSource]);\n checkReadOnlyPropertyOnUpdate(mergedPatches, modelDefinition);\n }\n else {\n modelPatchesMap.set(model, [patches, source]);\n checkReadOnlyPropertyOnUpdate(patches, modelDefinition);\n }\n }\n return model;\n };\n // \"private\" method (that's hidden via `Setting`) for `withSSRContext` to use\n // to gain access to `modelInstanceCreator` and `clazz` for persisting IDs from server to client.\n Model.fromJSON = function (json) {\n var _this = this;\n if (Array.isArray(json)) {\n return json.map(function (init) { return _this.fromJSON(init); });\n }\n var instance = modelInstanceCreator(clazz, json);\n var modelValidator = validateModelFields(modelDefinition);\n Object.entries(instance).forEach(function (_a) {\n var _b = __read(_a, 2), k = _b[0], v = _b[1];\n modelValidator(k, v);\n });\n return instance;\n };\n return Model;\n }());\n clazz[immer__WEBPACK_IMPORTED_MODULE_4__[\"immerable\"]] = true;\n Object.defineProperty(clazz, 'name', { value: modelDefinition.name });\n return clazz;\n};\nvar checkReadOnlyPropertyOnCreate = function (draft, modelDefinition) {\n var modelKeys = Object.keys(draft);\n var fields = modelDefinition.fields;\n modelKeys.forEach(function (key) {\n if (fields[key] && fields[key].isReadOnly) {\n throw new Error(key + \" is read-only.\");\n }\n });\n};\nvar checkReadOnlyPropertyOnUpdate = function (patches, modelDefinition) {\n var patchArray = patches.map(function (p) { return [p.path[0], p.value]; });\n var fields = modelDefinition.fields;\n patchArray.forEach(function (_a) {\n var _b = __read(_a, 2), key = _b[0], val = _b[1];\n if (!val || !fields[key])\n return;\n if (fields[key].isReadOnly) {\n throw new Error(key + \" is read-only.\");\n }\n });\n};\nvar createNonModelClass = function (typeDefinition) {\n var clazz = /** @class */ (function () {\n function Model(init) {\n var instance = Object(immer__WEBPACK_IMPORTED_MODULE_4__[\"produce\"])(this, function (draft) {\n initializeInstance(init, typeDefinition, draft);\n });\n return instance;\n }\n return Model;\n }());\n clazz[immer__WEBPACK_IMPORTED_MODULE_4__[\"immerable\"]] = true;\n Object.defineProperty(clazz, 'name', { value: typeDefinition.name });\n Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"registerNonModelClass\"])(clazz);\n return clazz;\n};\nfunction isQueryOne(obj) {\n return typeof obj === 'string';\n}\nfunction defaultConflictHandler(conflictData) {\n var localModel = conflictData.localModel, modelConstructor = conflictData.modelConstructor, remoteModel = conflictData.remoteModel;\n var _version = remoteModel._version;\n return modelInstanceCreator(modelConstructor, __assign(__assign({}, localModel), { _version: _version }));\n}\nfunction defaultErrorHandler(error) {\n logger.warn(error);\n}\nfunction getModelConstructorByModelName(namespaceName, modelName) {\n var result;\n switch (namespaceName) {\n case _util__WEBPACK_IMPORTED_MODULE_12__[\"DATASTORE\"]:\n result = dataStoreClasses[modelName];\n break;\n case _util__WEBPACK_IMPORTED_MODULE_12__[\"USER\"]:\n result = userClasses[modelName];\n break;\n case _util__WEBPACK_IMPORTED_MODULE_12__[\"SYNC\"]:\n result = syncClasses[modelName];\n break;\n case _util__WEBPACK_IMPORTED_MODULE_12__[\"STORAGE\"]:\n result = storageClasses[modelName];\n break;\n default:\n Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"exhaustiveCheck\"])(namespaceName);\n break;\n }\n if (isValidModelConstructor(result)) {\n return result;\n }\n else {\n var msg = \"Model name is not valid for namespace. modelName: \" + modelName + \", namespace: \" + namespaceName;\n logger.error(msg);\n throw new Error(msg);\n }\n}\n/**\n * Queries the DataStore metadata tables to see if they are the expected\n * version. If not, clobbers the whole DB. If so, leaves them alone.\n * Otherwise, simply writes the schema version.\n *\n * SIDE EFFECT:\n * 1. Creates a transaction\n * 1. Updates data.\n *\n * @param storage Storage adapter containing the metadata.\n * @param version The expected schema version.\n */\nfunction checkSchemaVersion(storage, version) {\n return __awaiter(this, void 0, void 0, function () {\n var Setting, modelDefinition;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n Setting = dataStoreClasses.Setting;\n modelDefinition = schema.namespaces[_util__WEBPACK_IMPORTED_MODULE_12__[\"DATASTORE\"]].models.Setting;\n return [4 /*yield*/, storage.runExclusive(function (s) { return __awaiter(_this, void 0, void 0, function () {\n var _a, schemaVersionSetting, storedValue;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, s.query(Setting, _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createFromExisting(modelDefinition, function (c) {\n return c.key('eq', SETTING_SCHEMA_VERSION);\n }), { page: 0, limit: 1 })];\n case 1:\n _a = __read.apply(void 0, [_b.sent(), 1]), schemaVersionSetting = _a[0];\n if (!(schemaVersionSetting !== undefined &&\n schemaVersionSetting.value !== undefined)) return [3 /*break*/, 4];\n storedValue = JSON.parse(schemaVersionSetting.value);\n if (!(storedValue !== version)) return [3 /*break*/, 3];\n return [4 /*yield*/, s.clear(false)];\n case 2:\n _b.sent();\n _b.label = 3;\n case 3: return [3 /*break*/, 6];\n case 4: return [4 /*yield*/, s.save(modelInstanceCreator(Setting, {\n key: SETTING_SCHEMA_VERSION,\n value: JSON.stringify(version),\n }))];\n case 5:\n _b.sent();\n _b.label = 6;\n case 6: return [2 /*return*/];\n }\n });\n }); })];\n case 1:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n}\nvar syncSubscription;\nfunction getNamespace() {\n var namespace = {\n name: _util__WEBPACK_IMPORTED_MODULE_12__[\"DATASTORE\"],\n relationships: {},\n enums: {},\n nonModels: {},\n models: {\n Setting: {\n name: 'Setting',\n pluralName: 'Settings',\n syncable: false,\n fields: {\n id: {\n name: 'id',\n type: 'ID',\n isRequired: true,\n isArray: false,\n },\n key: {\n name: 'key',\n type: 'String',\n isRequired: true,\n isArray: false,\n },\n value: {\n name: 'value',\n type: 'String',\n isRequired: true,\n isArray: false,\n },\n },\n },\n },\n };\n return namespace;\n}\nvar DataStoreState;\n(function (DataStoreState) {\n DataStoreState[\"NotRunning\"] = \"Not Running\";\n DataStoreState[\"Starting\"] = \"Starting\";\n DataStoreState[\"Running\"] = \"Running\";\n DataStoreState[\"Stopping\"] = \"Stopping\";\n DataStoreState[\"Clearing\"] = \"Clearing\";\n})(DataStoreState || (DataStoreState = {}));\nvar DataStore = /** @class */ (function () {\n function DataStore() {\n var _this = this;\n // reference to configured category instances. Used for preserving SSR context\n this.Auth = _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__[\"Auth\"];\n this.API = _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"default\"];\n this.Cache = _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__[\"default\"];\n this.amplifyConfig = {};\n this.syncPredicates = new WeakMap();\n // object that gets passed to descendent classes. Allows us to pass these down by reference\n this.amplifyContext = {\n Auth: this.Auth,\n API: this.API,\n Cache: this.Cache,\n };\n /**\n * **IMPORTANT!**\n *\n * Accumulator for background things that can **and MUST** be called when\n * DataStore stops.\n *\n * These jobs **MUST** be *idempotent promises* that resolve ONLY\n * once the intended jobs are completely finished and/or otherwise destroyed\n * and cleaned up with ZERO outstanding:\n *\n * 1. side effects (e.g., state changes)\n * 1. callbacks\n * 1. subscriptions\n * 1. calls to storage\n * 1. *etc.*\n *\n * Methods that create pending promises, subscriptions, callbacks, or any\n * type of side effect **MUST** be registered with the manager. And, a new\n * manager must be created after each `exit()`.\n *\n * Failure to comply will put DataStore into a highly unpredictable state\n * when it needs to stop or clear -- which occurs when restarting with new\n * sync expressions, during testing, and potentially during app code\n * recovery handling, etc..\n *\n * It is up to the discretion of each disposer whether to wait for job\n * completion or to cancel operations and issue failures *as long as the\n * disposer returns in a reasonable amount of time.*\n *\n * (Reasonable = *seconds*, not minutes.)\n */\n this.runningProcesses = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"BackgroundProcessManager\"]();\n /**\n * Indicates what state DataStore is in.\n *\n * Not [yet?] used for actual state management; but for messaging\n * when errors occur, to help troubleshoot.\n */\n this.state = DataStoreState.NotRunning;\n /**\n * If not already done:\n * 1. Attaches and initializes storage.\n * 1. Loads the schema and records metadata.\n * 1. If `this.amplifyConfig.aws_appsync_graphqlEndpoint` contains a URL,\n * attaches a sync engine, starts it, and subscribes.\n */\n this.start = function () { return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n return [2 /*return*/, this.runningProcesses\n .add(function () { return __awaiter(_this, void 0, void 0, function () {\n var aws_appsync_graphqlEndpoint, _a, fullSyncIntervalInMilliseconds;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n this.state = DataStoreState.Starting;\n if (!(this.initialized === undefined)) return [3 /*break*/, 1];\n logger.debug('Starting DataStore');\n this.initialized = new Promise(function (res, rej) {\n _this.initResolve = res;\n _this.initReject = rej;\n });\n return [3 /*break*/, 3];\n case 1: return [4 /*yield*/, this.initialized];\n case 2:\n _b.sent();\n return [2 /*return*/];\n case 3:\n this.storage = new _storage_storage__WEBPACK_IMPORTED_MODULE_9__[\"ExclusiveStorage\"](schema, namespaceResolver, getModelConstructorByModelName, modelInstanceCreator, this.storageAdapter, this.sessionId);\n return [4 /*yield*/, this.storage.init()];\n case 4:\n _b.sent();\n checkSchemaInitialized();\n return [4 /*yield*/, checkSchemaVersion(this.storage, schema.version)];\n case 5:\n _b.sent();\n aws_appsync_graphqlEndpoint = this.amplifyConfig.aws_appsync_graphqlEndpoint;\n if (!aws_appsync_graphqlEndpoint) return [3 /*break*/, 7];\n logger.debug('GraphQL endpoint available', aws_appsync_graphqlEndpoint);\n _a = this;\n return [4 /*yield*/, this.processSyncExpressions()];\n case 6:\n _a.syncPredicates = _b.sent();\n this.sync = new _sync__WEBPACK_IMPORTED_MODULE_10__[\"SyncEngine\"](schema, namespaceResolver, syncClasses, userClasses, this.storage, modelInstanceCreator, this.conflictHandler, this.errorHandler, this.syncPredicates, this.amplifyConfig, this.authModeStrategy, this.amplifyContext, this.connectivityMonitor);\n fullSyncIntervalInMilliseconds = this.fullSyncInterval * 1000 * 60;\n syncSubscription = this.sync\n .start({ fullSyncInterval: fullSyncIntervalInMilliseconds })\n .subscribe({\n next: function (_a) {\n var type = _a.type, data = _a.data;\n // In Node, we need to wait for queries to be synced to prevent returning empty arrays.\n // In the Browser, we can begin returning data once subscriptions are in place.\n var readyType = isNode\n ? _sync__WEBPACK_IMPORTED_MODULE_10__[\"ControlMessage\"].SYNC_ENGINE_SYNC_QUERIES_READY\n : _sync__WEBPACK_IMPORTED_MODULE_10__[\"ControlMessage\"].SYNC_ENGINE_STORAGE_SUBSCRIBED;\n if (type === readyType) {\n _this.initResolve();\n }\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"Hub\"].dispatch('datastore', {\n event: type,\n data: data,\n });\n },\n error: function (err) {\n logger.warn('Sync error', err);\n _this.initReject();\n },\n });\n return [3 /*break*/, 8];\n case 7:\n logger.warn(\"Data won't be synchronized. No GraphQL endpoint configured. Did you forget `Amplify.configure(awsconfig)`?\", {\n config: this.amplifyConfig,\n });\n this.initResolve();\n _b.label = 8;\n case 8: return [4 /*yield*/, this.initialized];\n case 9:\n _b.sent();\n this.state = DataStoreState.Running;\n return [2 /*return*/];\n }\n });\n }); }, 'datastore start')\n .catch(this.handleAddProcError('DataStore.start()'))];\n });\n }); };\n this.query = function (modelConstructor, identifierOrCriteria, paginationProducer) { return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n return [2 /*return*/, this.runningProcesses\n .add(function () { return __awaiter(_this, void 0, void 0, function () {\n var msg, modelDefinition, keyFields, predicate, msg, pagination, result, returnOne;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.start()];\n case 1:\n _a.sent();\n //#region Input validation\n if (!isValidModelConstructor(modelConstructor)) {\n msg = 'Constructor is not for a valid model';\n logger.error(msg, { modelConstructor: modelConstructor });\n throw new Error(msg);\n }\n if (typeof identifierOrCriteria === 'string') {\n if (paginationProducer !== undefined) {\n logger.warn('Pagination is ignored when querying by id');\n }\n }\n modelDefinition = getModelDefinition(modelConstructor);\n keyFields = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n if (isQueryOne(identifierOrCriteria)) {\n if (keyFields.length > 1) {\n msg = _util__WEBPACK_IMPORTED_MODULE_12__[\"errorMessages\"].queryByPkWithCompositeKeyPresent;\n logger.error(msg, { keyFields: keyFields });\n throw new Error(msg);\n }\n predicate = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createForSingleField(modelDefinition, keyFields[0], identifierOrCriteria);\n }\n else {\n // Object is being queried using object literal syntax\n if (Object(_types__WEBPACK_IMPORTED_MODULE_11__[\"isIdentifierObject\"])(identifierOrCriteria, modelDefinition)) {\n predicate = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createForPk(modelDefinition, identifierOrCriteria);\n }\n else if (Object(_predicates__WEBPACK_IMPORTED_MODULE_8__[\"isPredicatesAll\"])(identifierOrCriteria)) {\n // Predicates.ALL means \"all records\", so no predicate (undefined)\n predicate = undefined;\n }\n else {\n predicate = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createFromExisting(modelDefinition, identifierOrCriteria);\n }\n }\n pagination = this.processPagination(modelDefinition, paginationProducer);\n //#endregion\n logger.debug('params ready', {\n modelConstructor: modelConstructor,\n predicate: _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].getPredicates(predicate, false),\n pagination: __assign(__assign({}, pagination), { sort: _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelSortPredicateCreator\"].getPredicates(pagination && pagination.sort, false) }),\n });\n return [4 /*yield*/, this.storage.query(modelConstructor, predicate, pagination)];\n case 2:\n result = _a.sent();\n returnOne = isQueryOne(identifierOrCriteria) ||\n Object(_types__WEBPACK_IMPORTED_MODULE_11__[\"isIdentifierObject\"])(identifierOrCriteria, modelDefinition);\n return [2 /*return*/, returnOne ? result[0] : result];\n }\n });\n }); }, 'datastore query')\n .catch(this.handleAddProcError('DataStore.query()'))];\n });\n }); };\n this.save = function (model, condition) { return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n return [2 /*return*/, this.runningProcesses\n .add(function () { return __awaiter(_this, void 0, void 0, function () {\n var patchesTuple, modelConstructor, msg, modelDefinition, producedCondition, _a, savedModel;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, this.start()];\n case 1:\n _b.sent();\n patchesTuple = modelPatchesMap.get(model);\n modelConstructor = model ? model.constructor : undefined;\n if (!isValidModelConstructor(modelConstructor)) {\n msg = 'Object is not an instance of a valid model';\n logger.error(msg, { model: model });\n throw new Error(msg);\n }\n modelDefinition = getModelDefinition(modelConstructor);\n producedCondition = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createFromExisting(modelDefinition, condition);\n return [4 /*yield*/, this.storage.runExclusive(function (s) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, s.save(model, producedCondition, undefined, patchesTuple)];\n case 1:\n _a.sent();\n return [2 /*return*/, s.query(modelConstructor, _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createForPk(modelDefinition, model))];\n }\n });\n }); })];\n case 2:\n _a = __read.apply(void 0, [_b.sent(), 1]), savedModel = _a[0];\n return [2 /*return*/, savedModel];\n }\n });\n }); }, 'datastore save')\n .catch(this.handleAddProcError('DataStore.save()'))];\n });\n }); };\n this.setConflictHandler = function (config) {\n var configDataStore = config.DataStore;\n var conflictHandlerIsDefault = function () {\n return _this.conflictHandler === defaultConflictHandler;\n };\n if (configDataStore && configDataStore.conflictHandler) {\n return configDataStore.conflictHandler;\n }\n if (conflictHandlerIsDefault() && config.conflictHandler) {\n return config.conflictHandler;\n }\n return _this.conflictHandler || defaultConflictHandler;\n };\n this.setErrorHandler = function (config) {\n var configDataStore = config.DataStore;\n var errorHandlerIsDefault = function () {\n return _this.errorHandler === defaultErrorHandler;\n };\n if (configDataStore && configDataStore.errorHandler) {\n return configDataStore.errorHandler;\n }\n if (errorHandlerIsDefault() && config.errorHandler) {\n return config.errorHandler;\n }\n return _this.errorHandler || defaultErrorHandler;\n };\n this.delete = function (modelOrConstructor, identifierOrCriteria) { return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n return [2 /*return*/, this.runningProcesses\n .add(function () { return __awaiter(_this, void 0, void 0, function () {\n var condition, msg, modelConstructor, msg, modelDefinition, keyFields, msg, msg, _a, deleted, model, modelConstructor, msg, modelDefinition, pkPredicate, msg, _b, _c, deleted;\n return __generator(this, function (_d) {\n switch (_d.label) {\n case 0: return [4 /*yield*/, this.start()];\n case 1:\n _d.sent();\n if (!modelOrConstructor) {\n msg = 'Model or Model Constructor required';\n logger.error(msg, { modelOrConstructor: modelOrConstructor });\n throw new Error(msg);\n }\n if (!isValidModelConstructor(modelOrConstructor)) return [3 /*break*/, 3];\n modelConstructor = modelOrConstructor;\n if (!identifierOrCriteria) {\n msg = 'Id to delete or criteria required. Do you want to delete all? Pass Predicates.ALL';\n logger.error(msg, { identifierOrCriteria: identifierOrCriteria });\n throw new Error(msg);\n }\n modelDefinition = getModelDefinition(modelConstructor);\n if (typeof identifierOrCriteria === 'string') {\n keyFields = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n if (keyFields.length > 1) {\n msg = _util__WEBPACK_IMPORTED_MODULE_12__[\"errorMessages\"].deleteByPkWithCompositeKeyPresent;\n logger.error(msg, { keyFields: keyFields });\n throw new Error(msg);\n }\n condition = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createForSingleField(getModelDefinition(modelConstructor), keyFields[0], identifierOrCriteria);\n }\n else {\n if (Object(_types__WEBPACK_IMPORTED_MODULE_11__[\"isIdentifierObject\"])(identifierOrCriteria, modelDefinition)) {\n condition = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createForPk(modelDefinition, identifierOrCriteria);\n }\n else {\n condition = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createFromExisting(modelDefinition, \n /**\n * idOrCriteria is always a ProducerModelPredicate, never a symbol.\n * The symbol is used only for typing purposes. e.g. see Predicates.ALL\n */\n identifierOrCriteria);\n }\n if (!condition ||\n !_predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].isValidPredicate(condition)) {\n msg = 'Criteria required. Do you want to delete all? Pass Predicates.ALL';\n logger.error(msg, { condition: condition });\n throw new Error(msg);\n }\n }\n return [4 /*yield*/, this.storage.delete(modelConstructor, condition)];\n case 2:\n _a = __read.apply(void 0, [_d.sent(), 1]), deleted = _a[0];\n return [2 /*return*/, deleted];\n case 3:\n model = modelOrConstructor;\n modelConstructor = Object.getPrototypeOf(model || {})\n .constructor;\n if (!isValidModelConstructor(modelConstructor)) {\n msg = 'Object is not an instance of a valid model';\n logger.error(msg, { model: model });\n throw new Error(msg);\n }\n modelDefinition = getModelDefinition(modelConstructor);\n pkPredicate = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createForPk(modelDefinition, model);\n if (identifierOrCriteria) {\n if (typeof identifierOrCriteria !== 'function') {\n msg = 'Invalid criteria';\n logger.error(msg, { identifierOrCriteria: identifierOrCriteria });\n throw new Error(msg);\n }\n condition = identifierOrCriteria(pkPredicate);\n }\n else {\n condition = pkPredicate;\n }\n return [4 /*yield*/, this.storage.delete(model, condition)];\n case 4:\n _b = __read.apply(void 0, [_d.sent(), 1]), _c = __read(_b[0], 1), deleted = _c[0];\n return [2 /*return*/, deleted];\n }\n });\n }); }, 'datastore delete')\n .catch(this.handleAddProcError('DataStore.delete()'))];\n });\n }); };\n this.observe = function (modelOrConstructor, identifierOrCriteria) {\n var predicate;\n var modelConstructor = modelOrConstructor && isValidModelConstructor(modelOrConstructor)\n ? modelOrConstructor\n : undefined;\n if (modelOrConstructor && modelConstructor === undefined) {\n var model = modelOrConstructor;\n var modelConstructor_1 = model && Object.getPrototypeOf(model).constructor;\n if (isValidModelConstructor(modelConstructor_1)) {\n if (identifierOrCriteria) {\n logger.warn('idOrCriteria is ignored when using a model instance', {\n model: model,\n identifierOrCriteria: identifierOrCriteria,\n });\n }\n return _this.observe(modelConstructor_1, model.id);\n }\n else {\n var msg = 'The model is not an instance of a PersistentModelConstructor';\n logger.error(msg, { model: model });\n throw new Error(msg);\n }\n }\n // observe should not accept object literal syntax\n if (identifierOrCriteria &&\n modelConstructor &&\n Object(_types__WEBPACK_IMPORTED_MODULE_11__[\"isIdentifierObject\"])(identifierOrCriteria, getModelDefinition(modelConstructor))) {\n var msg = _util__WEBPACK_IMPORTED_MODULE_12__[\"errorMessages\"].observeWithObjectLiteral;\n logger.error(msg, { objectLiteral: identifierOrCriteria });\n throw new Error(msg);\n }\n if (identifierOrCriteria !== undefined && modelConstructor === undefined) {\n var msg = 'Cannot provide criteria without a modelConstructor';\n logger.error(msg, identifierOrCriteria);\n throw new Error(msg);\n }\n if (modelConstructor && !isValidModelConstructor(modelConstructor)) {\n var msg = 'Constructor is not for a valid model';\n logger.error(msg, { modelConstructor: modelConstructor });\n throw new Error(msg);\n }\n if (typeof identifierOrCriteria === 'string') {\n var modelDefinition = getModelDefinition(modelConstructor);\n var _a = __read(Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"extractPrimaryKeyFieldNames\"])(modelDefinition), 1), keyField = _a[0];\n predicate = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createForSingleField(getModelDefinition(modelConstructor), keyField, identifierOrCriteria);\n }\n else {\n if (Object(_predicates__WEBPACK_IMPORTED_MODULE_8__[\"isPredicatesAll\"])(identifierOrCriteria)) {\n predicate = undefined;\n }\n else {\n predicate =\n modelConstructor &&\n _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createFromExisting(getModelDefinition(modelConstructor), identifierOrCriteria);\n }\n }\n return new zen_observable_ts__WEBPACK_IMPORTED_MODULE_6__[\"default\"](function (observer) {\n var handle;\n _this.runningProcesses\n .add(function () { return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.start()];\n case 1:\n _a.sent();\n // Filter the events returned by Storage according to namespace,\n // append original element data, and subscribe to the observable\n handle = this.storage\n .observe(modelConstructor, predicate)\n .filter(function (_a) {\n var model = _a.model;\n return namespaceResolver(model) === _util__WEBPACK_IMPORTED_MODULE_12__[\"USER\"];\n })\n .subscribe({\n next: function (item) {\n return _this.runningProcesses.isOpen &&\n _this.runningProcesses.add(function () { return __awaiter(_this, void 0, void 0, function () {\n var message, modelDefinition, keyFields, primaryKeysAndValues, freshElement;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n message = item;\n if (!(item.opType !== 'DELETE')) return [3 /*break*/, 2];\n modelDefinition = getModelDefinition(item.model);\n keyFields = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n primaryKeysAndValues = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"extractPrimaryKeysAndValues\"])(item.element, keyFields);\n return [4 /*yield*/, this.query(item.model, primaryKeysAndValues)];\n case 1:\n freshElement = _a.sent();\n message = __assign(__assign({}, message), { element: freshElement });\n _a.label = 2;\n case 2:\n observer.next(message);\n return [2 /*return*/];\n }\n });\n }); }, 'datastore observe message handler');\n },\n error: function (err) { return observer.error(err); },\n complete: function () { return observer.complete(); },\n });\n return [2 /*return*/];\n }\n });\n }); }, 'datastore observe observable initialization')\n .catch(_this.handleAddProcError('DataStore.observe()'))\n .catch(function (error) {\n observer.error(error);\n });\n // better than no cleaner, but if the subscriber is handling the\n // complete() message async and not registering with the context,\n // this will still be problematic.\n return _this.runningProcesses.addCleaner(function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n if (handle) {\n handle.unsubscribe();\n }\n return [2 /*return*/];\n });\n }); }, 'DataStore.observe() cleanup');\n });\n };\n this.observeQuery = function (model, criteria, options) {\n return new zen_observable_ts__WEBPACK_IMPORTED_MODULE_6__[\"default\"](function (observer) {\n var items = new Map();\n var itemsChanged = new Map();\n var deletedItemIds = [];\n var handle;\n var predicate;\n /**\n * As the name suggests, this geneates a snapshot in the form of\n * \t`{items: T[], isSynced: boolean}`\n * and sends it to the observer.\n *\n * SIDE EFFECT: The underlying generation and emission methods may touch:\n * `items`, `itemsChanged`, and `deletedItemIds`.\n *\n * Refer to `generateSnapshot` and `emitSnapshot` for more details.\n */\n var generateAndEmitSnapshot = function () {\n var snapshot = generateSnapshot();\n emitSnapshot(snapshot);\n };\n // a mechanism to return data after X amount of seconds OR after the\n // \"limit\" (itemsChanged >= this.syncPageSize) has been reached, whichever comes first\n var limitTimerRace = new _util__WEBPACK_IMPORTED_MODULE_12__[\"DeferredCallbackResolver\"]({\n callback: generateAndEmitSnapshot,\n errorHandler: observer.error,\n maxInterval: 2000,\n });\n var sort = (options || {}).sort;\n var sortOptions = sort ? { sort: sort } : undefined;\n var modelDefinition = getModelDefinition(model);\n var keyFields = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n if (isQueryOne(criteria)) {\n predicate = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createForSingleField(modelDefinition, keyFields[0], criteria);\n }\n else {\n if (Object(_predicates__WEBPACK_IMPORTED_MODULE_8__[\"isPredicatesAll\"])(criteria)) {\n // Predicates.ALL means \"all records\", so no predicate (undefined)\n predicate = undefined;\n }\n else {\n predicate = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createFromExisting(modelDefinition, criteria);\n }\n }\n var _a = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].getPredicates(predicate, false) || {}, predicates = _a.predicates, predicateGroupType = _a.type;\n var hasPredicate = !!predicates;\n _this.runningProcesses\n .add(function () { return __awaiter(_this, void 0, void 0, function () {\n var err_1;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.query(model, criteria, sortOptions)];\n case 1:\n // first, query and return any locally-available records\n (_a.sent()).forEach(function (item) {\n var itemModelDefinition = getModelDefinition(model);\n var idOrPk = Object(_sync_utils__WEBPACK_IMPORTED_MODULE_13__[\"getIdentifierValue\"])(itemModelDefinition, item);\n items.set(idOrPk, item);\n });\n // Observe the model and send a stream of updates (debounced).\n // We need to post-filter results instead of passing criteria through\n // to have visibility into items that move from in-set to out-of-set.\n // We need to explicitly remove those items from the existing snapshot.\n handle = this.observe(model).subscribe(function (_a) {\n var element = _a.element, model = _a.model, opType = _a.opType;\n var _b, _c;\n var itemModelDefinition = getModelDefinition(model);\n var idOrPk = Object(_sync_utils__WEBPACK_IMPORTED_MODULE_13__[\"getIdentifierValue\"])(itemModelDefinition, element);\n if (hasPredicate &&\n !Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"validatePredicate\"])(element, predicateGroupType, predicates)) {\n if (opType === 'UPDATE' &&\n (items.has(idOrPk) || itemsChanged.has(idOrPk))) {\n // tracking as a \"deleted item\" will include the item in\n // page limit calculations and ensure it is removed from the\n // final items collection, regardless of which collection(s)\n // it is currently in. (I mean, it could be in both, right!?)\n deletedItemIds.push(idOrPk);\n }\n else {\n // ignore updates for irrelevant/filtered items.\n return;\n }\n }\n // Flag items which have been recently deleted\n // NOTE: Merging of separate operations to the same model instance is handled upstream\n // in the `mergePage` method within src/sync/merger.ts. The final state of a model instance\n // depends on the LATEST record (for a given id).\n if (opType === 'DELETE') {\n deletedItemIds.push(idOrPk);\n }\n else {\n itemsChanged.set(idOrPk, element);\n }\n var isSynced = (_c = (_b = _this.sync) === null || _b === void 0 ? void 0 : _b.getModelSyncedStatus(model)) !== null && _c !== void 0 ? _c : false;\n var limit = itemsChanged.size - deletedItemIds.length >=\n _this.syncPageSize;\n if (limit || isSynced) {\n limitTimerRace.resolve();\n }\n // kicks off every subsequent race as results sync down\n limitTimerRace.start();\n });\n // returns a set of initial/locally-available results\n generateAndEmitSnapshot();\n return [3 /*break*/, 3];\n case 2:\n err_1 = _a.sent();\n observer.error(err_1);\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/];\n }\n });\n }); }, 'datastore observequery startup')\n .catch(_this.handleAddProcError('DataStore.observeQuery()'))\n .catch(function (error) {\n observer.error(error);\n });\n /**\n * Combines the `items`, `itemsChanged`, and `deletedItemIds` collections into\n * a snapshot in the form of `{ items: T[], isSynced: boolean}`.\n *\n * SIDE EFFECT: The shared `items` collection is recreated.\n */\n var generateSnapshot = function () {\n var _a, _b;\n var isSynced = (_b = (_a = _this.sync) === null || _a === void 0 ? void 0 : _a.getModelSyncedStatus(model)) !== null && _b !== void 0 ? _b : false;\n var itemsArray = __spread(Array.from(items.values()), Array.from(itemsChanged.values()));\n if (options === null || options === void 0 ? void 0 : options.sort) {\n sortItems(itemsArray);\n }\n items.clear();\n itemsArray.forEach(function (item) {\n var itemModelDefinition = getModelDefinition(model);\n var idOrPk = Object(_sync_utils__WEBPACK_IMPORTED_MODULE_13__[\"getIdentifierValue\"])(itemModelDefinition, item);\n items.set(idOrPk, item);\n });\n // remove deleted items from the final result set\n deletedItemIds.forEach(function (idOrPk) { return items.delete(idOrPk); });\n return {\n items: Array.from(items.values()),\n isSynced: isSynced,\n };\n };\n /**\n * Emits the list of items to the observer.\n *\n * SIDE EFFECT: `itemsChanged` and `deletedItemIds` are cleared to prepare\n * for the next snapshot.\n *\n * @param snapshot The generated items data to emit.\n */\n var emitSnapshot = function (snapshot) {\n // send the generated snapshot to the primary subscription.\n // NOTE: This observer's handler *could* be async ...\n observer.next(snapshot);\n // reset the changed items sets\n itemsChanged.clear();\n deletedItemIds = [];\n };\n /**\n * Sorts an `Array` of `T` according to the sort instructions given in the\n * original `observeQuery()` call.\n *\n * @param itemsToSort A array of model type.\n */\n var sortItems = function (itemsToSort) {\n var modelDefinition = getModelDefinition(model);\n var pagination = _this.processPagination(modelDefinition, options);\n var sortPredicates = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelSortPredicateCreator\"].getPredicates(pagination.sort);\n if (sortPredicates.length) {\n var compareFn = Object(_util__WEBPACK_IMPORTED_MODULE_12__[\"sortCompareFunction\"])(sortPredicates);\n itemsToSort.sort(compareFn);\n }\n };\n /**\n * Force one last snapshot when the model is fully synced.\n *\n * This reduces latency for that last snapshot, which will otherwise\n * wait for the configured timeout.\n *\n * @param payload The payload from the Hub event.\n */\n var hubCallback = function (_a) {\n var payload = _a.payload;\n var _b;\n var event = payload.event, data = payload.data;\n if (event === _sync__WEBPACK_IMPORTED_MODULE_10__[\"ControlMessage\"].SYNC_ENGINE_MODEL_SYNCED &&\n ((_b = data === null || data === void 0 ? void 0 : data.model) === null || _b === void 0 ? void 0 : _b.name) === model.name) {\n generateAndEmitSnapshot();\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"Hub\"].remove('datastore', hubCallback);\n }\n };\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"Hub\"].listen('datastore', hubCallback);\n return _this.runningProcesses.addCleaner(function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n if (handle) {\n handle.unsubscribe();\n }\n return [2 /*return*/];\n });\n }); }, 'datastore observequery cleaner');\n });\n };\n this.configure = function (config) {\n if (config === void 0) { config = {}; }\n _this.amplifyContext.Auth = _this.Auth;\n _this.amplifyContext.API = _this.API;\n _this.amplifyContext.Cache = _this.Cache;\n var configDataStore = config.DataStore, configAuthModeStrategyType = config.authModeStrategyType, configConflictHandler = config.conflictHandler, configErrorHandler = config.errorHandler, configMaxRecordsToSync = config.maxRecordsToSync, configSyncPageSize = config.syncPageSize, configFullSyncInterval = config.fullSyncInterval, configSyncExpressions = config.syncExpressions, configAuthProviders = config.authProviders, configStorageAdapter = config.storageAdapter, configFromAmplify = __rest(config, [\"DataStore\", \"authModeStrategyType\", \"conflictHandler\", \"errorHandler\", \"maxRecordsToSync\", \"syncPageSize\", \"fullSyncInterval\", \"syncExpressions\", \"authProviders\", \"storageAdapter\"]);\n _this.amplifyConfig = __assign(__assign({}, configFromAmplify), _this.amplifyConfig);\n _this.conflictHandler = _this.setConflictHandler(config);\n _this.errorHandler = _this.setErrorHandler(config);\n var authModeStrategyType = (configDataStore && configDataStore.authModeStrategyType) ||\n configAuthModeStrategyType ||\n _types__WEBPACK_IMPORTED_MODULE_11__[\"AuthModeStrategyType\"].DEFAULT;\n switch (authModeStrategyType) {\n case _types__WEBPACK_IMPORTED_MODULE_11__[\"AuthModeStrategyType\"].MULTI_AUTH:\n _this.authModeStrategy = Object(_authModeStrategies__WEBPACK_IMPORTED_MODULE_7__[\"multiAuthStrategy\"])(_this.amplifyContext);\n break;\n case _types__WEBPACK_IMPORTED_MODULE_11__[\"AuthModeStrategyType\"].DEFAULT:\n _this.authModeStrategy = _authModeStrategies__WEBPACK_IMPORTED_MODULE_7__[\"defaultAuthStrategy\"];\n break;\n default:\n _this.authModeStrategy = _authModeStrategies__WEBPACK_IMPORTED_MODULE_7__[\"defaultAuthStrategy\"];\n break;\n }\n // store on config object, so that Sync, Subscription, and Mutation processors can have access\n _this.amplifyConfig.authProviders =\n (configDataStore && configDataStore.authProviders) || configAuthProviders;\n _this.syncExpressions =\n (configDataStore && configDataStore.syncExpressions) ||\n configSyncExpressions ||\n _this.syncExpressions;\n _this.maxRecordsToSync =\n (configDataStore && configDataStore.maxRecordsToSync) ||\n configMaxRecordsToSync ||\n _this.maxRecordsToSync ||\n 10000;\n // store on config object, so that Sync, Subscription, and Mutation processors can have access\n _this.amplifyConfig.maxRecordsToSync = _this.maxRecordsToSync;\n _this.syncPageSize =\n (configDataStore && configDataStore.syncPageSize) ||\n configSyncPageSize ||\n _this.syncPageSize ||\n 1000;\n // store on config object, so that Sync, Subscription, and Mutation processors can have access\n _this.amplifyConfig.syncPageSize = _this.syncPageSize;\n _this.fullSyncInterval =\n (configDataStore && configDataStore.fullSyncInterval) ||\n configFullSyncInterval ||\n _this.fullSyncInterval ||\n 24 * 60; // 1 day\n _this.storageAdapter =\n (configDataStore && configDataStore.storageAdapter) ||\n configStorageAdapter ||\n _this.storageAdapter ||\n undefined;\n _this.sessionId = _this.retrieveSessionId();\n };\n }\n DataStore.prototype.getModuleName = function () {\n return 'DataStore';\n };\n /**\n * Builds a function to capture `BackgroundManagerNotOpenError`'s to produce friendlier,\n * more instructive errors for customers.\n *\n * @param operation The name of the operation (usually a Datastore method) the customer\n * tried to call.\n */\n DataStore.prototype.handleAddProcError = function (operation) {\n var _this = this;\n /**\n * If the tested error is a `BackgroundManagerNotOpenError`, it will be captured\n * and replaced with a friendlier message that instructs the App Developer.\n *\n * @param err An error to test.\n */\n var handler = function (err) {\n if (err.message.startsWith('BackgroundManagerNotOpenError')) {\n throw new Error([\n \"DataStoreStateError: Tried to execute `\" + operation + \"` while DataStore was \\\"\" + _this.state + \"\\\".\",\n \"This can only be done while DataStore is \\\"Started\\\" or \\\"Stopped\\\". To remedy:\",\n 'Ensure all calls to `stop()` and `clear()` have completed first.',\n 'If this is not possible, retry the operation until it succeeds.',\n ].join('\\n'));\n }\n else {\n throw err;\n }\n };\n return handler;\n };\n /**\n * Clears all data from storage and removes all data, schema info, other\n * initialization details, and then stops DataStore.\n *\n * That said, reinitialization is required after clearing. This can be done\n * by explicitiliy calling `start()` or any method that implicitly starts\n * DataStore, such as `query()`, `save()`, or `delete()`.\n */\n DataStore.prototype.clear = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n checkSchemaInitialized();\n this.state = DataStoreState.Clearing;\n return [4 /*yield*/, this.runningProcesses.close()];\n case 1:\n _a.sent();\n if (!(this.storage === undefined)) return [3 /*break*/, 3];\n // connect to storage so that it can be cleared without fully starting DataStore\n this.storage = new _storage_storage__WEBPACK_IMPORTED_MODULE_9__[\"ExclusiveStorage\"](schema, namespaceResolver, getModelConstructorByModelName, modelInstanceCreator, this.storageAdapter, this.sessionId);\n return [4 /*yield*/, this.storage.init()];\n case 2:\n _a.sent();\n _a.label = 3;\n case 3:\n if (syncSubscription && !syncSubscription.closed) {\n syncSubscription.unsubscribe();\n }\n if (!this.sync) return [3 /*break*/, 5];\n return [4 /*yield*/, this.sync.stop()];\n case 4:\n _a.sent();\n _a.label = 5;\n case 5: return [4 /*yield*/, this.storage.clear()];\n case 6:\n _a.sent();\n this.initialized = undefined; // Should re-initialize when start() is called.\n this.storage = undefined;\n this.sync = undefined;\n this.syncPredicates = new WeakMap();\n return [4 /*yield*/, this.runningProcesses.open()];\n case 7:\n _a.sent();\n this.state = DataStoreState.NotRunning;\n return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Stops all DataStore sync activities.\n *\n * TODO: \"Waits for graceful termination of\n * running queries and terminates subscriptions.\"\n */\n DataStore.prototype.stop = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n this.state = DataStoreState.Stopping;\n return [4 /*yield*/, this.runningProcesses.close()];\n case 1:\n _a.sent();\n if (syncSubscription && !syncSubscription.closed) {\n syncSubscription.unsubscribe();\n }\n if (!this.sync) return [3 /*break*/, 3];\n return [4 /*yield*/, this.sync.stop()];\n case 2:\n _a.sent();\n _a.label = 3;\n case 3:\n this.initialized = undefined; // Should re-initialize when start() is called.\n this.sync = undefined;\n return [4 /*yield*/, this.runningProcesses.open()];\n case 4:\n _a.sent();\n this.state = DataStoreState.NotRunning;\n return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Validates given pagination input from a query and creates a pagination\n * argument for use against the storage layer.\n *\n * @param modelDefinition\n * @param paginationProducer\n */\n DataStore.prototype.processPagination = function (modelDefinition, paginationProducer) {\n var sortPredicate;\n var _a = paginationProducer || {}, limit = _a.limit, page = _a.page, sort = _a.sort;\n if (limit === undefined && page === undefined && sort === undefined) {\n return undefined;\n }\n if (page !== undefined && limit === undefined) {\n throw new Error('Limit is required when requesting a page');\n }\n if (page !== undefined) {\n if (typeof page !== 'number') {\n throw new Error('Page should be a number');\n }\n if (page < 0) {\n throw new Error(\"Page can't be negative\");\n }\n }\n if (limit !== undefined) {\n if (typeof limit !== 'number') {\n throw new Error('Limit should be a number');\n }\n if (limit < 0) {\n throw new Error(\"Limit can't be negative\");\n }\n }\n if (sort) {\n sortPredicate = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelSortPredicateCreator\"].createFromExisting(modelDefinition, paginationProducer.sort);\n }\n return {\n limit: limit,\n page: page,\n sort: sortPredicate,\n };\n };\n /**\n * Examines the configured `syncExpressions` and produces a WeakMap of\n * SchemaModel -> predicate to use during sync.\n */\n DataStore.prototype.processSyncExpressions = function () {\n return __awaiter(this, void 0, void 0, function () {\n var syncPredicates;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!this.syncExpressions || !this.syncExpressions.length) {\n return [2 /*return*/, new WeakMap()];\n }\n return [4 /*yield*/, Promise.all(this.syncExpressions.map(function (syncExpression) { return __awaiter(_this, void 0, void 0, function () {\n var _a, modelConstructor, conditionProducer, modelDefinition, condition, predicate;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, syncExpression];\n case 1:\n _a = _b.sent(), modelConstructor = _a.modelConstructor, conditionProducer = _a.conditionProducer;\n modelDefinition = getModelDefinition(modelConstructor);\n return [4 /*yield*/, this.unwrapPromise(conditionProducer)];\n case 2:\n condition = _b.sent();\n if (Object(_predicates__WEBPACK_IMPORTED_MODULE_8__[\"isPredicatesAll\"])(condition)) {\n return [2 /*return*/, [modelDefinition, null]];\n }\n predicate = this.createFromCondition(modelDefinition, condition);\n return [2 /*return*/, [modelDefinition, predicate]];\n }\n });\n }); }))];\n case 1:\n syncPredicates = _a.sent();\n return [2 /*return*/, this.weakMapFromEntries(syncPredicates)];\n }\n });\n });\n };\n DataStore.prototype.createFromCondition = function (modelDefinition, condition) {\n try {\n return _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].createFromExisting(modelDefinition, condition);\n }\n catch (error) {\n logger.error('Error creating Sync Predicate');\n throw error;\n }\n };\n DataStore.prototype.unwrapPromise = function (conditionProducer) {\n return __awaiter(this, void 0, void 0, function () {\n var condition, error_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, conditionProducer()];\n case 1:\n condition = _a.sent();\n return [2 /*return*/, condition];\n case 2:\n error_1 = _a.sent();\n if (error_1 instanceof TypeError) {\n return [2 /*return*/, conditionProducer];\n }\n throw error_1;\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n DataStore.prototype.weakMapFromEntries = function (entries) {\n return entries.reduce(function (map, _a) {\n var _b = __read(_a, 2), modelDefinition = _b[0], predicate = _b[1];\n if (map.has(modelDefinition)) {\n var name_2 = modelDefinition.name;\n logger.warn(\"You can only utilize one Sync Expression per model.\\n Subsequent sync expressions for the \" + name_2 + \" model will be ignored.\");\n return map;\n }\n if (predicate) {\n map.set(modelDefinition, predicate);\n }\n return map;\n }, new WeakMap());\n };\n /**\n * A session ID to allow CMS to open databases against multiple apps.\n * This session ID is only expected be set by AWS Amplify Studio.\n */\n DataStore.prototype.retrieveSessionId = function () {\n try {\n var sessionId = sessionStorage.getItem('datastoreSessionId');\n if (sessionId) {\n var aws_appsync_graphqlEndpoint = this.amplifyConfig.aws_appsync_graphqlEndpoint;\n var appSyncUrl = aws_appsync_graphqlEndpoint.split('/')[2];\n var _a = __read(appSyncUrl.split('.'), 1), appSyncId = _a[0];\n return sessionId + \"-\" + appSyncId;\n }\n }\n catch (_b) { }\n return undefined;\n };\n return DataStore;\n}());\nvar instance = new DataStore();\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"Amplify\"].register(instance);\n\n//# sourceMappingURL=datastore.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/datastore/datastore.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/index.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/index.js ***! \**************************************************************/ /*! exports provided: DataStore, DataStoreClass, initSchema, Predicates, ModelPredicateCreator, ModelSortPredicateCreator, utils, isSchemaModel, isSchemaModelWithAttributes, isAssociatedWith, isTargetNameAssociation, isModelAttributeAuth, isModelAttributeKey, isModelAttributePrimaryKey, isModelAttributeCompositeKey, ModelAttributeAuthAllow, ModelAttributeAuthProvider, GraphQLScalarType, isGraphQLScalarType, isModelFieldType, isNonModelFieldType, isEnumFieldType, isIdentifierObject, OpType, isPredicateObj, isPredicateGroup, QueryOne, SortDirection, AuthModeStrategyType, ModelOperation, syncExpression, ProcessName, DISCARD, LimitTimerRaceResolvedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utils\", function() { return utils; });\n/* harmony import */ var _datastore_datastore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./datastore/datastore */ \"./node_modules/@aws-amplify/datastore/lib-esm/datastore/datastore.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DataStore\", function() { return _datastore_datastore__WEBPACK_IMPORTED_MODULE_0__[\"DataStore\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DataStoreClass\", function() { return _datastore_datastore__WEBPACK_IMPORTED_MODULE_0__[\"DataStoreClass\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"initSchema\", function() { return _datastore_datastore__WEBPACK_IMPORTED_MODULE_0__[\"initSchema\"]; });\n\n/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./predicates */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Predicates\", function() { return _predicates__WEBPACK_IMPORTED_MODULE_1__[\"Predicates\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModelPredicateCreator\", function() { return _predicates__WEBPACK_IMPORTED_MODULE_1__[\"ModelPredicateCreator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModelSortPredicateCreator\", function() { return _predicates__WEBPACK_IMPORTED_MODULE_1__[\"ModelSortPredicateCreator\"]; });\n\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSchemaModel\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isSchemaModel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSchemaModelWithAttributes\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isSchemaModelWithAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isAssociatedWith\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isAssociatedWith\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTargetNameAssociation\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isTargetNameAssociation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isModelAttributeAuth\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isModelAttributeAuth\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isModelAttributeKey\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isModelAttributeKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isModelAttributePrimaryKey\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isModelAttributePrimaryKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isModelAttributeCompositeKey\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isModelAttributeCompositeKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModelAttributeAuthAllow\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"ModelAttributeAuthAllow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModelAttributeAuthProvider\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"ModelAttributeAuthProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLScalarType\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isGraphQLScalarType\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isGraphQLScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isModelFieldType\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isModelFieldType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isNonModelFieldType\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isNonModelFieldType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isEnumFieldType\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isEnumFieldType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifierObject\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isIdentifierObject\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OpType\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isPredicateObj\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isPredicateObj\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isPredicateGroup\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"isPredicateGroup\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryOne\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"QueryOne\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SortDirection\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"SortDirection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AuthModeStrategyType\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"AuthModeStrategyType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModelOperation\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"ModelOperation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"syncExpression\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"syncExpression\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProcessName\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"ProcessName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DISCARD\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"DISCARD\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitTimerRaceResolvedValues\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"LimitTimerRaceResolvedValues\"]; });\n\n\n\n\nvar utils = {\n USER: _util__WEBPACK_IMPORTED_MODULE_2__[\"USER\"],\n traverseModel: _util__WEBPACK_IMPORTED_MODULE_2__[\"traverseModel\"],\n validatePredicate: _util__WEBPACK_IMPORTED_MODULE_2__[\"validatePredicate\"],\n isNonModelConstructor: _util__WEBPACK_IMPORTED_MODULE_2__[\"isNonModelConstructor\"],\n isModelConstructor: _util__WEBPACK_IMPORTED_MODULE_2__[\"isModelConstructor\"],\n};\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js ***! \*************************************************************************/ /*! exports provided: ModelSortPredicateCreator, isPredicatesAll, PredicateAll, Predicates, ModelPredicateCreator */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isPredicatesAll\", function() { return isPredicatesAll; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PredicateAll\", function() { return PredicateAll; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Predicates\", function() { return Predicates; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ModelPredicateCreator\", function() { return ModelPredicateCreator; });\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _sort__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./sort */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/sort.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModelSortPredicateCreator\", function() { return _sort__WEBPACK_IMPORTED_MODULE_1__[\"ModelSortPredicateCreator\"]; });\n\n\n\nvar predicatesAllSet = new WeakSet();\nfunction isPredicatesAll(predicate) {\n return predicatesAllSet.has(predicate);\n}\n// This symbol is not used at runtime, only its type (unique symbol)\nvar PredicateAll = Symbol('A predicate that matches all records');\nvar Predicates = /** @class */ (function () {\n function Predicates() {\n }\n Object.defineProperty(Predicates, \"ALL\", {\n get: function () {\n var predicate = (function (c) { return c; });\n predicatesAllSet.add(predicate);\n return predicate;\n },\n enumerable: true,\n configurable: true\n });\n return Predicates;\n}());\n\nvar ModelPredicateCreator = /** @class */ (function () {\n function ModelPredicateCreator() {\n }\n ModelPredicateCreator.createPredicateBuilder = function (modelDefinition) {\n var modelName = modelDefinition.name;\n var fieldNames = new Set(Object.keys(modelDefinition.fields));\n var handler;\n var predicate = new Proxy({}, (handler = {\n get: function (_target, propertyKey, receiver) {\n var groupType = propertyKey;\n switch (groupType) {\n case 'and':\n case 'or':\n case 'not':\n var result_1 = function (newPredicate) {\n var group = {\n type: groupType,\n predicates: [],\n };\n // Create a new recorder\n var tmpPredicateRecorder = new Proxy({}, handler);\n // Set the recorder group\n ModelPredicateCreator.predicateGroupsMap.set(tmpPredicateRecorder, group);\n // Apply the predicates to the recorder (this is the step that records the changes)\n newPredicate(tmpPredicateRecorder);\n // Push the group to the top-level recorder\n ModelPredicateCreator.predicateGroupsMap\n .get(receiver)\n .predicates.push(group);\n return receiver;\n };\n return result_1;\n default:\n Object(_util__WEBPACK_IMPORTED_MODULE_0__[\"exhaustiveCheck\"])(groupType, false);\n }\n var field = propertyKey;\n if (!fieldNames.has(field)) {\n throw new Error(\"Invalid field for model. field: \" + field + \", model: \" + modelName);\n }\n var result = function (operator, operand) {\n ModelPredicateCreator.predicateGroupsMap\n .get(receiver)\n .predicates.push({ field: field, operator: operator, operand: operand });\n return receiver;\n };\n return result;\n },\n }));\n var group = {\n type: 'and',\n predicates: [],\n };\n ModelPredicateCreator.predicateGroupsMap.set(predicate, group);\n return predicate;\n };\n ModelPredicateCreator.isValidPredicate = function (predicate) {\n return ModelPredicateCreator.predicateGroupsMap.has(predicate);\n };\n ModelPredicateCreator.getPredicates = function (predicate, throwOnInvalid) {\n if (throwOnInvalid === void 0) { throwOnInvalid = true; }\n if (throwOnInvalid && !ModelPredicateCreator.isValidPredicate(predicate)) {\n throw new Error('The predicate is not valid');\n }\n return ModelPredicateCreator.predicateGroupsMap.get(predicate);\n };\n // transforms cb-style predicate into Proxy\n ModelPredicateCreator.createFromExisting = function (modelDefinition, existing) {\n if (!existing || !modelDefinition) {\n return undefined;\n }\n return existing(ModelPredicateCreator.createPredicateBuilder(modelDefinition));\n };\n ModelPredicateCreator.createForSingleField = function (modelDefinition, fieldName, value) {\n return ModelPredicateCreator.createPredicateBuilder(modelDefinition)[fieldName]('eq', value);\n };\n ModelPredicateCreator.createForPk = function (modelDefinition, model) {\n var keyFields = Object(_util__WEBPACK_IMPORTED_MODULE_0__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n var keyValues = Object(_util__WEBPACK_IMPORTED_MODULE_0__[\"extractPrimaryKeyValues\"])(model, keyFields);\n var modelPredicate = ModelPredicateCreator.createPredicateBuilder(modelDefinition);\n keyFields.forEach(function (field, idx) {\n var operand = keyValues[idx];\n modelPredicate = modelPredicate[field]('eq', operand);\n });\n return modelPredicate;\n };\n ModelPredicateCreator.predicateGroupsMap = new WeakMap();\n return ModelPredicateCreator;\n}());\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/predicates/sort.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/predicates/sort.js ***! \************************************************************************/ /*! exports provided: ModelSortPredicateCreator */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ModelSortPredicateCreator\", function() { return ModelSortPredicateCreator; });\nvar ModelSortPredicateCreator = /** @class */ (function () {\n function ModelSortPredicateCreator() {\n }\n ModelSortPredicateCreator.createPredicateBuilder = function (modelDefinition) {\n var modelName = modelDefinition.name;\n var fieldNames = new Set(Object.keys(modelDefinition.fields));\n var handler;\n var predicate = new Proxy({}, (handler = {\n get: function (_target, propertyKey, receiver) {\n var field = propertyKey;\n if (!fieldNames.has(field)) {\n throw new Error(\"Invalid field for model. field: \" + field + \", model: \" + modelName);\n }\n var result = function (sortDirection) {\n ModelSortPredicateCreator.sortPredicateGroupsMap\n .get(receiver)\n .push({ field: field, sortDirection: sortDirection });\n return receiver;\n };\n return result;\n },\n }));\n ModelSortPredicateCreator.sortPredicateGroupsMap.set(predicate, []);\n return predicate;\n };\n ModelSortPredicateCreator.isValidPredicate = function (predicate) {\n return ModelSortPredicateCreator.sortPredicateGroupsMap.has(predicate);\n };\n ModelSortPredicateCreator.getPredicates = function (predicate, throwOnInvalid) {\n if (throwOnInvalid === void 0) { throwOnInvalid = true; }\n if (throwOnInvalid &&\n !ModelSortPredicateCreator.isValidPredicate(predicate)) {\n throw new Error('The predicate is not valid');\n }\n return ModelSortPredicateCreator.sortPredicateGroupsMap.get(predicate);\n };\n // transforms cb-style predicate into Proxy\n ModelSortPredicateCreator.createFromExisting = function (modelDefinition, existing) {\n if (!existing || !modelDefinition) {\n return undefined;\n }\n return existing(ModelSortPredicateCreator.createPredicateBuilder(modelDefinition));\n };\n ModelSortPredicateCreator.sortPredicateGroupsMap = new WeakMap();\n return ModelSortPredicateCreator;\n}());\n\n//# sourceMappingURL=sort.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/predicates/sort.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/AsyncStorageAdapter.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/AsyncStorageAdapter.js ***! \********************************************************************************************/ /*! exports provided: AsyncStorageAdapter, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncStorageAdapter\", function() { return AsyncStorageAdapter; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _AsyncStorageDatabase__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AsyncStorageDatabase */ \"./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/AsyncStorageDatabase.js\");\n/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../predicates */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __asyncValues = (undefined && undefined.__asyncValues) || function (o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n 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);\n 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); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('DataStore');\nvar AsyncStorageAdapter = /** @class */ (function () {\n function AsyncStorageAdapter() {\n }\n AsyncStorageAdapter.prototype.getStorenameForModel = function (modelConstructor) {\n var namespace = this.namespaceResolver(modelConstructor);\n var modelName = modelConstructor.name;\n return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespace, modelName);\n };\n // Retrieves primary key values from a model\n AsyncStorageAdapter.prototype.getIndexKeyValuesFromModel = function (model) {\n var modelConstructor = Object.getPrototypeOf(model)\n .constructor;\n var namespaceName = this.namespaceResolver(modelConstructor);\n var keys = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndexKeys\"])(this.schema.namespaces[namespaceName], modelConstructor.name);\n return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"extractPrimaryKeyValues\"])(model, keys);\n };\n // Retrieves concatenated primary key values from a model\n AsyncStorageAdapter.prototype.getIndexKeyValuesPath = function (model) {\n return this.getIndexKeyValuesFromModel(model).join(_util__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"]);\n };\n AsyncStorageAdapter.prototype.setUp = function (theSchema, namespaceResolver, modelInstanceCreator, getModelConstructorByModelName) {\n return __awaiter(this, void 0, void 0, function () {\n var error_1;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!!this.initPromise) return [3 /*break*/, 1];\n this.initPromise = new Promise(function (res, rej) {\n _this.resolve = res;\n _this.reject = rej;\n });\n return [3 /*break*/, 3];\n case 1: return [4 /*yield*/, this.initPromise];\n case 2:\n _a.sent();\n return [2 /*return*/];\n case 3:\n this.schema = theSchema;\n this.namespaceResolver = namespaceResolver;\n this.modelInstanceCreator = modelInstanceCreator;\n this.getModelConstructorByModelName = getModelConstructorByModelName;\n _a.label = 4;\n case 4:\n _a.trys.push([4, 7, , 8]);\n if (!!this.db) return [3 /*break*/, 6];\n this.db = new _AsyncStorageDatabase__WEBPACK_IMPORTED_MODULE_1__[\"default\"]();\n return [4 /*yield*/, this.db.init()];\n case 5:\n _a.sent();\n this.resolve();\n _a.label = 6;\n case 6: return [3 /*break*/, 8];\n case 7:\n error_1 = _a.sent();\n this.reject(error_1);\n return [3 /*break*/, 8];\n case 8: return [2 /*return*/];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.save = function (model, condition) {\n var e_1, _a;\n return __awaiter(this, void 0, void 0, function () {\n var modelConstructor, storeName, namespaceName, connectedModels, set, connectionStoreNames, keyValuesPath, fromDB, predicates, predicateObjs, type, isValid, msg, result, connectionStoreNames_1, connectionStoreNames_1_1, resItem, storeName_1, item, instance, keys, itemKeyValues, itemKeyValuesPath, fromDB_1, opType, modelKeyValues, e_1_1;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n modelConstructor = Object.getPrototypeOf(model)\n .constructor;\n storeName = this.getStorenameForModel(modelConstructor);\n namespaceName = this.namespaceResolver(modelConstructor);\n connectedModels = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"traverseModel\"])(modelConstructor.name, model, this.schema.namespaces[namespaceName], this.modelInstanceCreator, this.getModelConstructorByModelName);\n set = new Set();\n connectionStoreNames = Object.values(connectedModels).map(function (_a) {\n var modelName = _a.modelName, item = _a.item, instance = _a.instance;\n var storeName = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespaceName, modelName);\n set.add(storeName);\n var keys = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndexKeys\"])(_this.schema.namespaces[namespaceName], modelName);\n return { storeName: storeName, item: item, instance: instance, keys: keys };\n });\n keyValuesPath = this.getIndexKeyValuesPath(model);\n return [4 /*yield*/, this.db.get(keyValuesPath, storeName)];\n case 1:\n fromDB = _b.sent();\n if (condition && fromDB) {\n predicates = _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelPredicateCreator\"].getPredicates(condition);\n predicateObjs = predicates.predicates, type = predicates.type;\n isValid = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"validatePredicate\"])(fromDB, type, predicateObjs);\n if (!isValid) {\n msg = 'Conditional update failed';\n logger.error(msg, { model: fromDB, condition: predicateObjs });\n throw new Error(msg);\n }\n }\n result = [];\n _b.label = 2;\n case 2:\n _b.trys.push([2, 9, 10, 15]);\n connectionStoreNames_1 = __asyncValues(connectionStoreNames);\n _b.label = 3;\n case 3: return [4 /*yield*/, connectionStoreNames_1.next()];\n case 4:\n if (!(connectionStoreNames_1_1 = _b.sent(), !connectionStoreNames_1_1.done)) return [3 /*break*/, 8];\n resItem = connectionStoreNames_1_1.value;\n storeName_1 = resItem.storeName, item = resItem.item, instance = resItem.instance, keys = resItem.keys;\n itemKeyValues = keys.map(function (key) { return item[key]; });\n itemKeyValuesPath = itemKeyValues.join(_util__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"]);\n return [4 /*yield*/, this.db.get(itemKeyValuesPath, storeName_1)];\n case 5:\n fromDB_1 = _b.sent();\n opType = fromDB_1 ? _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].UPDATE : _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].INSERT;\n modelKeyValues = this.getIndexKeyValuesFromModel(model);\n if (!(Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"keysEqual\"])(itemKeyValues, modelKeyValues) ||\n opType === _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].INSERT)) return [3 /*break*/, 7];\n return [4 /*yield*/, this.db.save(item, storeName_1, keys, itemKeyValuesPath)];\n case 6:\n _b.sent();\n result.push([instance, opType]);\n _b.label = 7;\n case 7: return [3 /*break*/, 3];\n case 8: return [3 /*break*/, 15];\n case 9:\n e_1_1 = _b.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 15];\n case 10:\n _b.trys.push([10, , 13, 14]);\n if (!(connectionStoreNames_1_1 && !connectionStoreNames_1_1.done && (_a = connectionStoreNames_1.return))) return [3 /*break*/, 12];\n return [4 /*yield*/, _a.call(connectionStoreNames_1)];\n case 11:\n _b.sent();\n _b.label = 12;\n case 12: return [3 /*break*/, 14];\n case 13:\n if (e_1) throw e_1.error;\n return [7 /*endfinally*/];\n case 14: return [7 /*endfinally*/];\n case 15: return [2 /*return*/, result];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.load = function (namespaceName, srcModelName, records) {\n var records_1, records_1_1, records_2, records_2_1;\n var e_2, _a, e_3, _b, e_4, _c;\n return __awaiter(this, void 0, void 0, function () {\n var namespace, relations, connectionStoreNames, modelConstructor, relations_1, relations_1_1, relation, fieldName, modelName, targetName, targetNames, relationType, storeName, modelConstructor_1, _d, recordItem, getByFields, allPresent, keys, connectionRecord, getByfield, key, connectionRecord, e_3_1, recordItem, allPresent, keys, connectionRecord, key, connectionRecord, e_4_1, e_2_1;\n var _this = this;\n return __generator(this, function (_e) {\n switch (_e.label) {\n case 0:\n namespace = this.schema.namespaces[namespaceName];\n relations = namespace.relationships[srcModelName].relationTypes;\n connectionStoreNames = relations.map(function (_a) {\n var modelName = _a.modelName;\n return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespaceName, modelName);\n });\n modelConstructor = this.getModelConstructorByModelName(namespaceName, srcModelName);\n if (connectionStoreNames.length === 0) {\n return [2 /*return*/, records.map(function (record) {\n return _this.modelInstanceCreator(modelConstructor, record);\n })];\n }\n _e.label = 1;\n case 1:\n _e.trys.push([1, 38, 39, 44]);\n relations_1 = __asyncValues(relations);\n _e.label = 2;\n case 2: return [4 /*yield*/, relations_1.next()];\n case 3:\n if (!(relations_1_1 = _e.sent(), !relations_1_1.done)) return [3 /*break*/, 37];\n relation = relations_1_1.value;\n fieldName = relation.fieldName, modelName = relation.modelName, targetName = relation.targetName, targetNames = relation.targetNames, relationType = relation.relationType;\n storeName = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespaceName, modelName);\n modelConstructor_1 = this.getModelConstructorByModelName(namespaceName, modelName);\n _d = relationType;\n switch (_d) {\n case 'HAS_ONE': return [3 /*break*/, 4];\n case 'BELONGS_TO': return [3 /*break*/, 19];\n case 'HAS_MANY': return [3 /*break*/, 34];\n }\n return [3 /*break*/, 35];\n case 4:\n _e.trys.push([4, 12, 13, 18]);\n records_1 = __asyncValues(records);\n _e.label = 5;\n case 5: return [4 /*yield*/, records_1.next()];\n case 6:\n if (!(records_1_1 = _e.sent(), !records_1_1.done)) return [3 /*break*/, 11];\n recordItem = records_1_1.value;\n if (!(targetNames === null || targetNames === void 0 ? void 0 : targetNames.length)) return [3 /*break*/, 8];\n getByFields = [];\n allPresent = void 0;\n // iterate through all targetnames to make sure they are all present in the recordItem\n allPresent = targetNames.every(function (targetName) {\n return recordItem[targetName] != null;\n });\n if (!allPresent) {\n return [3 /*break*/, 11];\n }\n getByFields = targetNames;\n keys = getByFields\n .map(function (getByField) { return recordItem[getByField]; })\n .join(_util__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"]);\n return [4 /*yield*/, this.db.get(keys, storeName)];\n case 7:\n connectionRecord = _e.sent();\n recordItem[fieldName] =\n connectionRecord &&\n this.modelInstanceCreator(modelConstructor_1, connectionRecord);\n return [3 /*break*/, 10];\n case 8:\n getByfield = recordItem[targetName]\n ? targetName\n : fieldName;\n if (!recordItem[getByfield])\n return [3 /*break*/, 11];\n key = recordItem[getByfield];\n return [4 /*yield*/, this.db.get(key, storeName)];\n case 9:\n connectionRecord = _e.sent();\n recordItem[fieldName] =\n connectionRecord &&\n this.modelInstanceCreator(modelConstructor_1, connectionRecord);\n _e.label = 10;\n case 10: return [3 /*break*/, 5];\n case 11: return [3 /*break*/, 18];\n case 12:\n e_3_1 = _e.sent();\n e_3 = { error: e_3_1 };\n return [3 /*break*/, 18];\n case 13:\n _e.trys.push([13, , 16, 17]);\n if (!(records_1_1 && !records_1_1.done && (_b = records_1.return))) return [3 /*break*/, 15];\n return [4 /*yield*/, _b.call(records_1)];\n case 14:\n _e.sent();\n _e.label = 15;\n case 15: return [3 /*break*/, 17];\n case 16:\n if (e_3) throw e_3.error;\n return [7 /*endfinally*/];\n case 17: return [7 /*endfinally*/];\n case 18: return [3 /*break*/, 36];\n case 19:\n _e.trys.push([19, 27, 28, 33]);\n records_2 = __asyncValues(records);\n _e.label = 20;\n case 20: return [4 /*yield*/, records_2.next()];\n case 21:\n if (!(records_2_1 = _e.sent(), !records_2_1.done)) return [3 /*break*/, 26];\n recordItem = records_2_1.value;\n if (!(targetNames === null || targetNames === void 0 ? void 0 : targetNames.length)) return [3 /*break*/, 23];\n allPresent = void 0;\n // iterate through all targetnames to make sure they are all present in the recordItem\n allPresent = targetNames.every(function (targetName) {\n return recordItem[targetName] != null;\n });\n // If not present, there is not yet a connected record\n if (!allPresent) {\n return [3 /*break*/, 26];\n }\n keys = targetNames\n .map(function (targetName) { return recordItem[targetName]; })\n .join(_util__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"]);\n return [4 /*yield*/, this.db.get(keys, storeName)];\n case 22:\n connectionRecord = _e.sent();\n recordItem[fieldName] =\n connectionRecord &&\n this.modelInstanceCreator(modelConstructor_1, connectionRecord);\n targetNames === null || targetNames === void 0 ? void 0 : targetNames.map(function (targetName) {\n delete recordItem[targetName];\n });\n return [3 /*break*/, 25];\n case 23:\n if (!recordItem[targetName]) return [3 /*break*/, 25];\n key = recordItem[targetName];\n return [4 /*yield*/, this.db.get(key, storeName)];\n case 24:\n connectionRecord = _e.sent();\n recordItem[fieldName] =\n connectionRecord &&\n this.modelInstanceCreator(modelConstructor_1, connectionRecord);\n delete recordItem[targetName];\n _e.label = 25;\n case 25: return [3 /*break*/, 20];\n case 26: return [3 /*break*/, 33];\n case 27:\n e_4_1 = _e.sent();\n e_4 = { error: e_4_1 };\n return [3 /*break*/, 33];\n case 28:\n _e.trys.push([28, , 31, 32]);\n if (!(records_2_1 && !records_2_1.done && (_c = records_2.return))) return [3 /*break*/, 30];\n return [4 /*yield*/, _c.call(records_2)];\n case 29:\n _e.sent();\n _e.label = 30;\n case 30: return [3 /*break*/, 32];\n case 31:\n if (e_4) throw e_4.error;\n return [7 /*endfinally*/];\n case 32: return [7 /*endfinally*/];\n case 33: return [3 /*break*/, 36];\n case 34: \n // TODO: Lazy loading\n return [3 /*break*/, 36];\n case 35:\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"exhaustiveCheck\"])(relationType);\n return [3 /*break*/, 36];\n case 36: return [3 /*break*/, 2];\n case 37: return [3 /*break*/, 44];\n case 38:\n e_2_1 = _e.sent();\n e_2 = { error: e_2_1 };\n return [3 /*break*/, 44];\n case 39:\n _e.trys.push([39, , 42, 43]);\n if (!(relations_1_1 && !relations_1_1.done && (_a = relations_1.return))) return [3 /*break*/, 41];\n return [4 /*yield*/, _a.call(relations_1)];\n case 40:\n _e.sent();\n _e.label = 41;\n case 41: return [3 /*break*/, 43];\n case 42:\n if (e_2) throw e_2.error;\n return [7 /*endfinally*/];\n case 43: return [7 /*endfinally*/];\n case 44: return [2 /*return*/, records.map(function (record) {\n return _this.modelInstanceCreator(modelConstructor, record);\n })];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.query = function (modelConstructor, predicate, pagination) {\n return __awaiter(this, void 0, void 0, function () {\n var storeName, namespaceName, predicates, keys, queryByKey, hasSort, hasPagination, records;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n storeName = this.getStorenameForModel(modelConstructor);\n namespaceName = this.namespaceResolver(modelConstructor);\n predicates = predicate && _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelPredicateCreator\"].getPredicates(predicate);\n keys = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndexKeys\"])(this.schema.namespaces[namespaceName], modelConstructor.name);\n queryByKey = predicates && this.keyValueFromPredicate(predicates, keys);\n hasSort = pagination && pagination.sort;\n hasPagination = pagination && pagination.limit;\n return [4 /*yield*/, (function () { return __awaiter(_this, void 0, void 0, function () {\n var record, filtered, all;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!queryByKey) return [3 /*break*/, 2];\n return [4 /*yield*/, this.getByKey(storeName, queryByKey)];\n case 1:\n record = _a.sent();\n return [2 /*return*/, record ? [record] : []];\n case 2:\n if (!predicates) return [3 /*break*/, 4];\n return [4 /*yield*/, this.filterOnPredicate(storeName, predicates)];\n case 3:\n filtered = _a.sent();\n return [2 /*return*/, this.inMemoryPagination(filtered, pagination)];\n case 4:\n if (!(hasSort || hasPagination)) return [3 /*break*/, 6];\n return [4 /*yield*/, this.getAll(storeName)];\n case 5:\n all = _a.sent();\n return [2 /*return*/, this.inMemoryPagination(all, pagination)];\n case 6: return [2 /*return*/, this.getAll(storeName)];\n }\n });\n }); })()];\n case 1:\n records = _a.sent();\n return [4 /*yield*/, this.load(namespaceName, modelConstructor.name, records)];\n case 2: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.getByKey = function (storeName, keyValuePath) {\n return __awaiter(this, void 0, void 0, function () {\n var record;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.db.get(keyValuePath, storeName)];\n case 1:\n record = _a.sent();\n return [2 /*return*/, record];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.getAll = function (storeName) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.db.getAll(storeName)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.keyValueFromPredicate = function (predicates, keys) {\n var e_5, _a;\n var predicateObjs = predicates.predicates;\n if (predicateObjs.length !== keys.length) {\n return;\n }\n var keyValues = [];\n var _loop_1 = function (key) {\n var predicateObj = predicateObjs.find(function (p) { return Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isPredicateObj\"])(p) && p.field === key && p.operator === 'eq'; });\n predicateObj && keyValues.push(predicateObj.operand);\n };\n try {\n for (var keys_1 = __values(keys), keys_1_1 = keys_1.next(); !keys_1_1.done; keys_1_1 = keys_1.next()) {\n var key = keys_1_1.value;\n _loop_1(key);\n }\n }\n catch (e_5_1) { e_5 = { error: e_5_1 }; }\n finally {\n try {\n if (keys_1_1 && !keys_1_1.done && (_a = keys_1.return)) _a.call(keys_1);\n }\n finally { if (e_5) throw e_5.error; }\n }\n return keyValues.length === keys.length\n ? keyValues.join(_util__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"])\n : undefined;\n };\n AsyncStorageAdapter.prototype.filterOnPredicate = function (storeName, predicates) {\n return __awaiter(this, void 0, void 0, function () {\n var predicateObjs, type, all, filtered;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n predicateObjs = predicates.predicates, type = predicates.type;\n return [4 /*yield*/, this.getAll(storeName)];\n case 1:\n all = _a.sent();\n filtered = predicateObjs\n ? all.filter(function (m) { return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"validatePredicate\"])(m, type, predicateObjs); })\n : all;\n return [2 /*return*/, filtered];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.inMemoryPagination = function (records, pagination) {\n if (pagination && records.length > 1) {\n if (pagination.sort) {\n var sortPredicates = _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelSortPredicateCreator\"].getPredicates(pagination.sort);\n if (sortPredicates.length) {\n var compareFn = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"sortCompareFunction\"])(sortPredicates);\n records.sort(compareFn);\n }\n }\n var _a = pagination.page, page = _a === void 0 ? 0 : _a, _b = pagination.limit, limit = _b === void 0 ? 0 : _b;\n var start = Math.max(0, page * limit) || 0;\n var end = limit > 0 ? start + limit : records.length;\n return records.slice(start, end);\n }\n return records;\n };\n AsyncStorageAdapter.prototype.queryOne = function (modelConstructor, firstOrLast) {\n if (firstOrLast === void 0) { firstOrLast = _types__WEBPACK_IMPORTED_MODULE_3__[\"QueryOne\"].FIRST; }\n return __awaiter(this, void 0, void 0, function () {\n var storeName, result;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n storeName = this.getStorenameForModel(modelConstructor);\n return [4 /*yield*/, this.db.getOne(firstOrLast, storeName)];\n case 1:\n result = _a.sent();\n return [2 /*return*/, result && this.modelInstanceCreator(modelConstructor, result)];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.delete = function (modelOrModelConstructor, condition) {\n return __awaiter(this, void 0, void 0, function () {\n var deleteQueue, modelConstructor, nameSpace, models, relations, deletedModels, deletedModels, model, modelConstructor, namespaceName, storeName, keyValuePath, fromDB, msg, predicates, predicateObjs, type, isValid, msg, relations, relations, deletedModels;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n deleteQueue = [];\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"isModelConstructor\"])(modelOrModelConstructor)) return [3 /*break*/, 8];\n modelConstructor = modelOrModelConstructor;\n nameSpace = this.namespaceResolver(modelConstructor);\n return [4 /*yield*/, this.query(modelConstructor, condition)];\n case 1:\n models = _a.sent();\n relations = this.schema.namespaces[nameSpace].relationships[modelConstructor.name]\n .relationTypes;\n if (!(condition !== undefined)) return [3 /*break*/, 4];\n return [4 /*yield*/, this.deleteTraverse(relations, models, modelConstructor.name, nameSpace, deleteQueue)];\n case 2:\n _a.sent();\n return [4 /*yield*/, this.deleteItem(deleteQueue)];\n case 3:\n _a.sent();\n deletedModels = deleteQueue.reduce(function (acc, _a) {\n var items = _a.items;\n return acc.concat(items);\n }, []);\n return [2 /*return*/, [models, deletedModels]];\n case 4: return [4 /*yield*/, this.deleteTraverse(relations, models, modelConstructor.name, nameSpace, deleteQueue)];\n case 5:\n _a.sent();\n return [4 /*yield*/, this.deleteItem(deleteQueue)];\n case 6:\n _a.sent();\n deletedModels = deleteQueue.reduce(function (acc, _a) {\n var items = _a.items;\n return acc.concat(items);\n }, []);\n return [2 /*return*/, [models, deletedModels]];\n case 7: return [3 /*break*/, 15];\n case 8:\n model = modelOrModelConstructor;\n modelConstructor = Object.getPrototypeOf(model)\n .constructor;\n namespaceName = this.namespaceResolver(modelConstructor);\n storeName = this.getStorenameForModel(modelConstructor);\n if (!condition) return [3 /*break*/, 11];\n keyValuePath = this.getIndexKeyValuesPath(model);\n return [4 /*yield*/, this.db.get(keyValuePath, storeName)];\n case 9:\n fromDB = _a.sent();\n if (fromDB === undefined) {\n msg = 'Model instance not found in storage';\n logger.warn(msg, { model: model });\n return [2 /*return*/, [[model], []]];\n }\n predicates = _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelPredicateCreator\"].getPredicates(condition);\n predicateObjs = predicates.predicates, type = predicates.type;\n isValid = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"validatePredicate\"])(fromDB, type, predicateObjs);\n if (!isValid) {\n msg = 'Conditional update failed';\n logger.error(msg, { model: fromDB, condition: predicateObjs });\n throw new Error(msg);\n }\n relations = this.schema.namespaces[namespaceName].relationships[modelConstructor.name].relationTypes;\n return [4 /*yield*/, this.deleteTraverse(relations, [model], modelConstructor.name, namespaceName, deleteQueue)];\n case 10:\n _a.sent();\n return [3 /*break*/, 13];\n case 11:\n relations = this.schema.namespaces[namespaceName].relationships[modelConstructor.name].relationTypes;\n return [4 /*yield*/, this.deleteTraverse(relations, [model], modelConstructor.name, namespaceName, deleteQueue)];\n case 12:\n _a.sent();\n _a.label = 13;\n case 13: return [4 /*yield*/, this.deleteItem(deleteQueue)];\n case 14:\n _a.sent();\n deletedModels = deleteQueue.reduce(function (acc, _a) {\n var items = _a.items;\n return acc.concat(items);\n }, []);\n return [2 /*return*/, [[model], deletedModels]];\n case 15: return [2 /*return*/];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.deleteItem = function (deleteQueue) {\n var deleteQueue_1, deleteQueue_1_1;\n var e_6, _a, e_7, _b;\n return __awaiter(this, void 0, void 0, function () {\n var deleteItem, storeName, items, items_1, items_1_1, item, keyValuesPath, e_7_1, e_6_1;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _c.trys.push([0, 17, 18, 23]);\n deleteQueue_1 = __asyncValues(deleteQueue);\n _c.label = 1;\n case 1: return [4 /*yield*/, deleteQueue_1.next()];\n case 2:\n if (!(deleteQueue_1_1 = _c.sent(), !deleteQueue_1_1.done)) return [3 /*break*/, 16];\n deleteItem = deleteQueue_1_1.value;\n storeName = deleteItem.storeName, items = deleteItem.items;\n _c.label = 3;\n case 3:\n _c.trys.push([3, 9, 10, 15]);\n items_1 = __asyncValues(items);\n _c.label = 4;\n case 4: return [4 /*yield*/, items_1.next()];\n case 5:\n if (!(items_1_1 = _c.sent(), !items_1_1.done)) return [3 /*break*/, 8];\n item = items_1_1.value;\n if (!item) return [3 /*break*/, 7];\n if (!(typeof item === 'object')) return [3 /*break*/, 7];\n keyValuesPath = this.getIndexKeyValuesPath(item);\n return [4 /*yield*/, this.db.delete(keyValuesPath, storeName)];\n case 6:\n _c.sent();\n _c.label = 7;\n case 7: return [3 /*break*/, 4];\n case 8: return [3 /*break*/, 15];\n case 9:\n e_7_1 = _c.sent();\n e_7 = { error: e_7_1 };\n return [3 /*break*/, 15];\n case 10:\n _c.trys.push([10, , 13, 14]);\n if (!(items_1_1 && !items_1_1.done && (_b = items_1.return))) return [3 /*break*/, 12];\n return [4 /*yield*/, _b.call(items_1)];\n case 11:\n _c.sent();\n _c.label = 12;\n case 12: return [3 /*break*/, 14];\n case 13:\n if (e_7) throw e_7.error;\n return [7 /*endfinally*/];\n case 14: return [7 /*endfinally*/];\n case 15: return [3 /*break*/, 1];\n case 16: return [3 /*break*/, 23];\n case 17:\n e_6_1 = _c.sent();\n e_6 = { error: e_6_1 };\n return [3 /*break*/, 23];\n case 18:\n _c.trys.push([18, , 21, 22]);\n if (!(deleteQueue_1_1 && !deleteQueue_1_1.done && (_a = deleteQueue_1.return))) return [3 /*break*/, 20];\n return [4 /*yield*/, _a.call(deleteQueue_1)];\n case 19:\n _c.sent();\n _c.label = 20;\n case 20: return [3 /*break*/, 22];\n case 21:\n if (e_6) throw e_6.error;\n return [7 /*endfinally*/];\n case 22: return [7 /*endfinally*/];\n case 23: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Populates the delete Queue with all the items to delete\n * @param relations\n * @param models\n * @param srcModel\n * @param nameSpace\n * @param deleteQueue\n */\n AsyncStorageAdapter.prototype.deleteTraverse = function (relations, models, srcModel, nameSpace, deleteQueue) {\n var relations_2, relations_2_1, models_1, models_1_1, models_2, models_2_1;\n var e_8, _a, e_9, _b, e_10, _c;\n return __awaiter(this, void 0, void 0, function () {\n var rel, relationType, modelName, targetName, targetNames, associatedWith, storeName, index, _d, model, hasOneIndex_1, hasConnectedModelFields, keyValuesPath, values_1, isUnidirectionalConnection, allRecords, recordToDelete, hasOneIndex_2, hasOneCustomField, keyValuesPath, value_1, allRecords, recordToDelete, e_9_1, model, keyValues, allRecords, indices, childrenArray, e_10_1, e_8_1;\n var _this = this;\n return __generator(this, function (_e) {\n switch (_e.label) {\n case 0:\n _e.trys.push([0, 38, 39, 44]);\n relations_2 = __asyncValues(relations);\n _e.label = 1;\n case 1: return [4 /*yield*/, relations_2.next()];\n case 2:\n if (!(relations_2_1 = _e.sent(), !relations_2_1.done)) return [3 /*break*/, 37];\n rel = relations_2_1.value;\n relationType = rel.relationType, modelName = rel.modelName, targetName = rel.targetName, targetNames = rel.targetNames, associatedWith = rel.associatedWith;\n storeName = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(nameSpace, modelName);\n index = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndex\"])(this.schema.namespaces[nameSpace].relationships[modelName]\n .relationTypes, srcModel) ||\n // if we were unable to find an index via relationTypes\n // i.e. for keyName connections, attempt to find one by the\n // associatedWith property\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndexFromAssociation\"])(this.schema.namespaces[nameSpace].relationships[modelName].indexes, rel.associatedWith);\n _d = relationType;\n switch (_d) {\n case 'HAS_ONE': return [3 /*break*/, 3];\n case 'HAS_MANY': return [3 /*break*/, 20];\n case 'BELONGS_TO': return [3 /*break*/, 34];\n }\n return [3 /*break*/, 35];\n case 3:\n _e.trys.push([3, 13, 14, 19]);\n models_1 = __asyncValues(models);\n _e.label = 4;\n case 4: return [4 /*yield*/, models_1.next()];\n case 5:\n if (!(models_1_1 = _e.sent(), !models_1_1.done)) return [3 /*break*/, 12];\n model = models_1_1.value;\n if (!(targetNames && (targetNames === null || targetNames === void 0 ? void 0 : targetNames.length))) return [3 /*break*/, 8];\n if (index) {\n hasOneIndex_1 = index.split(_util__WEBPACK_IMPORTED_MODULE_4__[\"IDENTIFIER_KEY_SEPARATOR\"]);\n }\n else if (associatedWith) {\n if (Array.isArray(associatedWith)) {\n hasOneIndex_1 = associatedWith;\n }\n else {\n hasOneIndex_1 = [associatedWith];\n }\n }\n hasConnectedModelFields = targetNames.every(function (targetName) {\n return model.hasOwnProperty(targetName);\n });\n keyValuesPath = this.getIndexKeyValuesPath(model);\n isUnidirectionalConnection = hasOneIndex_1 === associatedWith;\n if (hasConnectedModelFields && isUnidirectionalConnection) {\n // Values will be that of the child model\n values_1 = targetNames\n .filter(function (targetName) { var _a; return (_a = model[targetName]) !== null && _a !== void 0 ? _a : false; })\n .map(function (targetName) { return model[targetName]; });\n }\n else {\n // values will be that of the parent model\n values_1 = keyValuesPath.split(_util__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"]);\n }\n if (values_1.length === 0)\n return [3 /*break*/, 12];\n return [4 /*yield*/, this.db.getAll(storeName)];\n case 6:\n allRecords = _e.sent();\n recordToDelete = void 0;\n // values === targetNames\n if (hasConnectedModelFields) {\n /**\n * Retrieve record by finding the record where all\n * targetNames are present on the connected model.\n *\n */\n // recordToDelete = allRecords.filter(childItem =>\n // \tvalues.every(value => childItem[value] != null)\n // ) as T[];\n recordToDelete = allRecords.filter(function (childItem) {\n return hasOneIndex_1.every(function (index) { return values_1.includes(childItem[index]); });\n });\n }\n else {\n // values === keyValuePath\n recordToDelete = allRecords.filter(function (childItem) { return childItem[hasOneIndex_1] === values_1; });\n }\n return [4 /*yield*/, this.deleteTraverse(this.schema.namespaces[nameSpace].relationships[modelName]\n .relationTypes, recordToDelete, modelName, nameSpace, deleteQueue)];\n case 7:\n _e.sent();\n return [3 /*break*/, 11];\n case 8:\n hasOneIndex_2 = index || associatedWith;\n hasOneCustomField = targetName in model;\n keyValuesPath = this.getIndexKeyValuesPath(model);\n value_1 = hasOneCustomField\n ? model[targetName]\n : keyValuesPath;\n if (!value_1)\n return [3 /*break*/, 12];\n return [4 /*yield*/, this.db.getAll(storeName)];\n case 9:\n allRecords = _e.sent();\n recordToDelete = allRecords.filter(function (childItem) { return childItem[hasOneIndex_2] === value_1; });\n return [4 /*yield*/, this.deleteTraverse(this.schema.namespaces[nameSpace].relationships[modelName]\n .relationTypes, recordToDelete, modelName, nameSpace, deleteQueue)];\n case 10:\n _e.sent();\n _e.label = 11;\n case 11: return [3 /*break*/, 4];\n case 12: return [3 /*break*/, 19];\n case 13:\n e_9_1 = _e.sent();\n e_9 = { error: e_9_1 };\n return [3 /*break*/, 19];\n case 14:\n _e.trys.push([14, , 17, 18]);\n if (!(models_1_1 && !models_1_1.done && (_b = models_1.return))) return [3 /*break*/, 16];\n return [4 /*yield*/, _b.call(models_1)];\n case 15:\n _e.sent();\n _e.label = 16;\n case 16: return [3 /*break*/, 18];\n case 17:\n if (e_9) throw e_9.error;\n return [7 /*endfinally*/];\n case 18: return [7 /*endfinally*/];\n case 19: return [3 /*break*/, 36];\n case 20:\n _e.trys.push([20, 27, 28, 33]);\n models_2 = __asyncValues(models);\n _e.label = 21;\n case 21: return [4 /*yield*/, models_2.next()];\n case 22:\n if (!(models_2_1 = _e.sent(), !models_2_1.done)) return [3 /*break*/, 26];\n model = models_2_1.value;\n keyValues = this.getIndexKeyValuesFromModel(model);\n return [4 /*yield*/, this.db.getAll(storeName)];\n case 23:\n allRecords = _e.sent();\n indices = index.split(_util__WEBPACK_IMPORTED_MODULE_4__[\"IDENTIFIER_KEY_SEPARATOR\"]);\n childrenArray = allRecords.filter(function (childItem) {\n return indices.every(function (index) { return keyValues.includes(childItem[index]); });\n });\n return [4 /*yield*/, this.deleteTraverse(this.schema.namespaces[nameSpace].relationships[modelName]\n .relationTypes, childrenArray, modelName, nameSpace, deleteQueue)];\n case 24:\n _e.sent();\n _e.label = 25;\n case 25: return [3 /*break*/, 21];\n case 26: return [3 /*break*/, 33];\n case 27:\n e_10_1 = _e.sent();\n e_10 = { error: e_10_1 };\n return [3 /*break*/, 33];\n case 28:\n _e.trys.push([28, , 31, 32]);\n if (!(models_2_1 && !models_2_1.done && (_c = models_2.return))) return [3 /*break*/, 30];\n return [4 /*yield*/, _c.call(models_2)];\n case 29:\n _e.sent();\n _e.label = 30;\n case 30: return [3 /*break*/, 32];\n case 31:\n if (e_10) throw e_10.error;\n return [7 /*endfinally*/];\n case 32: return [7 /*endfinally*/];\n case 33: return [3 /*break*/, 36];\n case 34: \n // Intentionally blank\n return [3 /*break*/, 36];\n case 35:\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"exhaustiveCheck\"])(relationType);\n return [3 /*break*/, 36];\n case 36: return [3 /*break*/, 1];\n case 37: return [3 /*break*/, 44];\n case 38:\n e_8_1 = _e.sent();\n e_8 = { error: e_8_1 };\n return [3 /*break*/, 44];\n case 39:\n _e.trys.push([39, , 42, 43]);\n if (!(relations_2_1 && !relations_2_1.done && (_a = relations_2.return))) return [3 /*break*/, 41];\n return [4 /*yield*/, _a.call(relations_2)];\n case 40:\n _e.sent();\n _e.label = 41;\n case 41: return [3 /*break*/, 43];\n case 42:\n if (e_8) throw e_8.error;\n return [7 /*endfinally*/];\n case 43: return [7 /*endfinally*/];\n case 44:\n deleteQueue.push({\n storeName: Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(nameSpace, srcModel),\n items: models.map(function (record) {\n return _this.modelInstanceCreator(_this.getModelConstructorByModelName(nameSpace, srcModel), record);\n }),\n });\n return [2 /*return*/];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.clear = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.db.clear()];\n case 1:\n _a.sent();\n this.db = undefined;\n this.initPromise = undefined;\n return [2 /*return*/];\n }\n });\n });\n };\n AsyncStorageAdapter.prototype.batchSave = function (modelConstructor, items) {\n return __awaiter(this, void 0, void 0, function () {\n var modelName, namespaceName, storeName, keys, batch, _loop_2, this_1, items_2, items_2_1, item;\n var e_11, _a;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n modelName = modelConstructor.name;\n namespaceName = this.namespaceResolver(modelConstructor);\n storeName = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespaceName, modelName);\n keys = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndexKeys\"])(this.schema.namespaces[namespaceName], modelName);\n batch = [];\n _loop_2 = function (item) {\n var model = this_1.modelInstanceCreator(modelConstructor, item);\n var connectedModels = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"traverseModel\"])(modelName, model, this_1.schema.namespaces[namespaceName], this_1.modelInstanceCreator, this_1.getModelConstructorByModelName);\n var keyValuesPath = this_1.getIndexKeyValuesPath(model);\n var instance = connectedModels.find(function (_a) {\n var instance = _a.instance;\n var instanceKeyValuesPath = _this.getIndexKeyValuesPath(instance);\n return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"keysEqual\"])([instanceKeyValuesPath], [keyValuesPath]);\n }).instance;\n batch.push(instance);\n };\n this_1 = this;\n try {\n for (items_2 = __values(items), items_2_1 = items_2.next(); !items_2_1.done; items_2_1 = items_2.next()) {\n item = items_2_1.value;\n _loop_2(item);\n }\n }\n catch (e_11_1) { e_11 = { error: e_11_1 }; }\n finally {\n try {\n if (items_2_1 && !items_2_1.done && (_a = items_2.return)) _a.call(items_2);\n }\n finally { if (e_11) throw e_11.error; }\n }\n return [4 /*yield*/, this.db.batchSave(storeName, batch, keys)];\n case 1: return [2 /*return*/, _b.sent()];\n }\n });\n });\n };\n return AsyncStorageAdapter;\n}());\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (new AsyncStorageAdapter());\n//# sourceMappingURL=AsyncStorageAdapter.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/AsyncStorageAdapter.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/AsyncStorageDatabase.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/AsyncStorageDatabase.js ***! \*********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _InMemoryStore__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./InMemoryStore */ \"./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/InMemoryStore.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n\n\n\nvar DB_NAME = '@AmplifyDatastore';\nvar COLLECTION = 'Collection';\nvar DATA = 'Data';\nvar monotonicFactoriesMap = new Map();\nvar AsyncStorageDatabase = /** @class */ (function () {\n function AsyncStorageDatabase() {\n /**\n * Maps storeNames to a map of ulid->id\n */\n this._collectionInMemoryIndex = new Map();\n this.storage = Object(_InMemoryStore__WEBPACK_IMPORTED_MODULE_2__[\"createInMemoryStore\"])();\n }\n /**\n * Collection index is map of stores (i.e. sync, metadata, mutation event, and data)\n * @param storeName {string} - Name of the store\n * @returns Map of ulid->id\n */\n AsyncStorageDatabase.prototype.getCollectionIndex = function (storeName) {\n if (!this._collectionInMemoryIndex.has(storeName)) {\n this._collectionInMemoryIndex.set(storeName, new Map());\n }\n return this._collectionInMemoryIndex.get(storeName);\n };\n /**\n * Return ULID for store if it exists, otherwise create a new one\n * @param storeName {string} - Name of the store\n * @returns ulid\n */\n AsyncStorageDatabase.prototype.getMonotonicFactory = function (storeName) {\n if (!monotonicFactoriesMap.has(storeName)) {\n monotonicFactoriesMap.set(storeName, Object(_util__WEBPACK_IMPORTED_MODULE_1__[\"monotonicUlidFactory\"])());\n }\n return monotonicFactoriesMap.get(storeName);\n };\n AsyncStorageDatabase.prototype.init = function () {\n return __awaiter(this, void 0, void 0, function () {\n var allKeys, keysForCollectionEntries, allKeys_1, allKeys_1_1, key, _a, dbName, storeName, recordType, ulidOrId, id, ulid, id_1, newUlid, oldKey, newKey, item, e_1_1;\n var e_1, _b;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n this._collectionInMemoryIndex.clear();\n return [4 /*yield*/, this.storage.getAllKeys()];\n case 1:\n allKeys = _c.sent();\n keysForCollectionEntries = [];\n _c.label = 2;\n case 2:\n _c.trys.push([2, 12, 13, 14]);\n allKeys_1 = __values(allKeys), allKeys_1_1 = allKeys_1.next();\n _c.label = 3;\n case 3:\n if (!!allKeys_1_1.done) return [3 /*break*/, 11];\n key = allKeys_1_1.value;\n _a = __read(key.split('::'), 5), dbName = _a[0], storeName = _a[1], recordType = _a[2], ulidOrId = _a[3], id = _a[4];\n if (!(dbName === DB_NAME)) return [3 /*break*/, 10];\n if (!(recordType === DATA)) return [3 /*break*/, 9];\n ulid = void 0;\n if (!(id === undefined)) return [3 /*break*/, 7];\n id_1 = ulidOrId;\n newUlid = this.getMonotonicFactory(storeName)();\n oldKey = this.getLegacyKeyForItem(storeName, id_1);\n newKey = this.getKeyForItem(storeName, id_1, newUlid);\n return [4 /*yield*/, this.storage.getItem(oldKey)];\n case 4:\n item = _c.sent();\n return [4 /*yield*/, this.storage.setItem(newKey, item)];\n case 5:\n _c.sent();\n return [4 /*yield*/, this.storage.removeItem(oldKey)];\n case 6:\n _c.sent();\n ulid = newUlid;\n return [3 /*break*/, 8];\n case 7:\n ulid = ulidOrId;\n _c.label = 8;\n case 8:\n this.getCollectionIndex(storeName).set(id, ulid);\n return [3 /*break*/, 10];\n case 9:\n if (recordType === COLLECTION) {\n keysForCollectionEntries.push(key);\n }\n _c.label = 10;\n case 10:\n allKeys_1_1 = allKeys_1.next();\n return [3 /*break*/, 3];\n case 11: return [3 /*break*/, 14];\n case 12:\n e_1_1 = _c.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 14];\n case 13:\n try {\n if (allKeys_1_1 && !allKeys_1_1.done && (_b = allKeys_1.return)) _b.call(allKeys_1);\n }\n finally { if (e_1) throw e_1.error; }\n return [7 /*endfinally*/];\n case 14:\n if (!(keysForCollectionEntries.length > 0)) return [3 /*break*/, 16];\n return [4 /*yield*/, this.storage.multiRemove(keysForCollectionEntries)];\n case 15:\n _c.sent();\n _c.label = 16;\n case 16: return [2 /*return*/];\n }\n });\n });\n };\n AsyncStorageDatabase.prototype.save = function (item, storeName, keys, keyValuesPath) {\n return __awaiter(this, void 0, void 0, function () {\n var idxName, ulid, itemKey;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n idxName = Object(_util__WEBPACK_IMPORTED_MODULE_1__[\"indexNameFromKeys\"])(keys);\n ulid = this.getCollectionIndex(storeName).get(idxName) ||\n this.getMonotonicFactory(storeName)();\n itemKey = this.getKeyForItem(storeName, keyValuesPath, ulid);\n // Set key in collection index\n this.getCollectionIndex(storeName).set(keyValuesPath, ulid);\n // Save item in db\n return [4 /*yield*/, this.storage.setItem(itemKey, JSON.stringify(item))];\n case 1:\n // Save item in db\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n AsyncStorageDatabase.prototype.batchSave = function (storeName, items, keys) {\n return __awaiter(this, void 0, void 0, function () {\n var result, collection, keysToDelete, keysToSave, allItemsKeys, itemsMap, _loop_1, this_1, items_1, items_1_1, item, existingRecordsMap, existingRecordsKeys, allItemsKeys_1, allItemsKeys_1_1, key;\n var e_2, _a, e_3, _b;\n var _this = this;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (items.length === 0) {\n return [2 /*return*/, []];\n }\n result = [];\n collection = this.getCollectionIndex(storeName);\n keysToDelete = new Set();\n keysToSave = new Set();\n allItemsKeys = [];\n itemsMap = {};\n _loop_1 = function (item) {\n // Extract keys from concatenated key path, map to item values\n var keyValues = keys.map(function (field) { return item[field]; });\n var _deleted = item._deleted;\n // If id is in the store, retrieve, otherwise generate new ULID\n var ulid = collection.get(keyValues.join(_util__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"])) ||\n this_1.getMonotonicFactory(storeName)();\n // Generate the \"longer key\" for the item\n var key = this_1.getKeyForItem(storeName, keyValues.join(_util__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"]), ulid);\n allItemsKeys.push(key);\n itemsMap[key] = { ulid: ulid, model: item };\n if (_deleted) {\n keysToDelete.add(key);\n }\n else {\n keysToSave.add(key);\n }\n };\n this_1 = this;\n try {\n /* Populate allItemKeys, keysToDelete, and keysToSave */\n for (items_1 = __values(items), items_1_1 = items_1.next(); !items_1_1.done; items_1_1 = items_1.next()) {\n item = items_1_1.value;\n _loop_1(item);\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (items_1_1 && !items_1_1.done && (_a = items_1.return)) _a.call(items_1);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return [4 /*yield*/, this.storage.multiGet(allItemsKeys)];\n case 1:\n existingRecordsMap = _c.sent();\n existingRecordsKeys = existingRecordsMap\n .filter(function (_a) {\n var _b = __read(_a, 2), v = _b[1];\n return !!v;\n })\n .reduce(function (set, _a) {\n var _b = __read(_a, 1), k = _b[0];\n return set.add(k);\n }, new Set());\n // Delete\n return [4 /*yield*/, new Promise(function (resolve, reject) {\n if (keysToDelete.size === 0) {\n resolve();\n return;\n }\n var keysToDeleteArray = Array.from(keysToDelete);\n keysToDeleteArray.forEach(function (key) {\n // key: full db key\n // keys: PK and/or SK keys\n var primaryKeyValues = keys\n .map(function (field) { return itemsMap[key].model[field]; })\n .join(_util__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"]);\n collection.delete(primaryKeyValues);\n });\n _this.storage.multiRemove(keysToDeleteArray, function (errors) {\n if (errors && errors.length > 0) {\n reject(errors);\n }\n else {\n resolve();\n }\n });\n })];\n case 2:\n // Delete\n _c.sent();\n // Save\n return [4 /*yield*/, new Promise(function (resolve, reject) {\n if (keysToSave.size === 0) {\n resolve();\n return;\n }\n var entriesToSet = Array.from(keysToSave).map(function (key) { return [\n key,\n JSON.stringify(itemsMap[key].model),\n ]; });\n keysToSave.forEach(function (key) {\n var _a = itemsMap[key], model = _a.model, ulid = _a.ulid;\n // Retrieve values from model, use as key for collection index\n var keyValues = keys\n .map(function (field) { return model[field]; })\n .join(_util__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\"]);\n collection.set(keyValues, ulid);\n });\n _this.storage.multiSet(entriesToSet, function (errors) {\n if (errors && errors.length > 0) {\n reject(errors);\n }\n else {\n resolve();\n }\n });\n })];\n case 3:\n // Save\n _c.sent();\n try {\n for (allItemsKeys_1 = __values(allItemsKeys), allItemsKeys_1_1 = allItemsKeys_1.next(); !allItemsKeys_1_1.done; allItemsKeys_1_1 = allItemsKeys_1.next()) {\n key = allItemsKeys_1_1.value;\n if (keysToDelete.has(key) && existingRecordsKeys.has(key)) {\n result.push([itemsMap[key].model, _types__WEBPACK_IMPORTED_MODULE_0__[\"OpType\"].DELETE]);\n }\n else if (keysToSave.has(key)) {\n result.push([\n itemsMap[key].model,\n existingRecordsKeys.has(key) ? _types__WEBPACK_IMPORTED_MODULE_0__[\"OpType\"].UPDATE : _types__WEBPACK_IMPORTED_MODULE_0__[\"OpType\"].INSERT,\n ]);\n }\n }\n }\n catch (e_3_1) { e_3 = { error: e_3_1 }; }\n finally {\n try {\n if (allItemsKeys_1_1 && !allItemsKeys_1_1.done && (_b = allItemsKeys_1.return)) _b.call(allItemsKeys_1);\n }\n finally { if (e_3) throw e_3.error; }\n }\n return [2 /*return*/, result];\n }\n });\n });\n };\n AsyncStorageDatabase.prototype.get = function (keyValuePath, storeName) {\n return __awaiter(this, void 0, void 0, function () {\n var ulid, itemKey, recordAsString, record;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n ulid = this.getCollectionIndex(storeName).get(keyValuePath);\n itemKey = this.getKeyForItem(storeName, keyValuePath, ulid);\n return [4 /*yield*/, this.storage.getItem(itemKey)];\n case 1:\n recordAsString = _a.sent();\n record = recordAsString && JSON.parse(recordAsString);\n return [2 /*return*/, record];\n }\n });\n });\n };\n AsyncStorageDatabase.prototype.getOne = function (firstOrLast, storeName) {\n return __awaiter(this, void 0, void 0, function () {\n var collection, _a, itemId, ulid, itemKey, itemString, _b, result;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n collection = this.getCollectionIndex(storeName);\n _a = __read(firstOrLast === _types__WEBPACK_IMPORTED_MODULE_0__[\"QueryOne\"].FIRST\n ? (function () {\n var e_4, _a, _b;\n var id, ulid;\n try {\n for (var collection_1 = __values(collection), collection_1_1 = collection_1.next(); !collection_1_1.done; collection_1_1 = collection_1.next()) {\n _b = __read(collection_1_1.value, 2), id = _b[0], ulid = _b[1];\n break;\n } // Get first element of the set\n }\n catch (e_4_1) { e_4 = { error: e_4_1 }; }\n finally {\n try {\n if (collection_1_1 && !collection_1_1.done && (_a = collection_1.return)) _a.call(collection_1);\n }\n finally { if (e_4) throw e_4.error; }\n }\n return [id, ulid];\n })()\n : (function () {\n var e_5, _a, _b;\n var id, ulid;\n try {\n for (var collection_2 = __values(collection), collection_2_1 = collection_2.next(); !collection_2_1.done; collection_2_1 = collection_2.next()) {\n _b = __read(collection_2_1.value, 2), id = _b[0], ulid = _b[1];\n ;\n } // Get last element of the set\n }\n catch (e_5_1) { e_5 = { error: e_5_1 }; }\n finally {\n try {\n if (collection_2_1 && !collection_2_1.done && (_a = collection_2.return)) _a.call(collection_2);\n }\n finally { if (e_5) throw e_5.error; }\n }\n return [id, ulid];\n })(), 2), itemId = _a[0], ulid = _a[1];\n itemKey = this.getKeyForItem(storeName, itemId, ulid);\n _b = itemKey;\n if (!_b) return [3 /*break*/, 2];\n return [4 /*yield*/, this.storage.getItem(itemKey)];\n case 1:\n _b = (_c.sent());\n _c.label = 2;\n case 2:\n itemString = _b;\n result = itemString ? JSON.parse(itemString) || undefined : undefined;\n return [2 /*return*/, result];\n }\n });\n });\n };\n /**\n * This function gets all the records stored in async storage for a particular storeName\n * It then loads all the records for that filtered set of keys using multiGet()\n */\n AsyncStorageDatabase.prototype.getAll = function (storeName, pagination) {\n return __awaiter(this, void 0, void 0, function () {\n var collection, _a, _b, page, _c, limit, start, end, keysForStore, count, collection_3, collection_3_1, _d, id, ulid, storeRecordStrings, records;\n var e_6, _e;\n return __generator(this, function (_f) {\n switch (_f.label) {\n case 0:\n collection = this.getCollectionIndex(storeName);\n _a = pagination || {}, _b = _a.page, page = _b === void 0 ? 0 : _b, _c = _a.limit, limit = _c === void 0 ? 0 : _c;\n start = Math.max(0, page * limit) || 0;\n end = limit > 0 ? start + limit : undefined;\n keysForStore = [];\n count = 0;\n try {\n for (collection_3 = __values(collection), collection_3_1 = collection_3.next(); !collection_3_1.done; collection_3_1 = collection_3.next()) {\n _d = __read(collection_3_1.value, 2), id = _d[0], ulid = _d[1];\n count++;\n if (count <= start) {\n continue;\n }\n keysForStore.push(this.getKeyForItem(storeName, id, ulid));\n if (count === end) {\n break;\n }\n }\n }\n catch (e_6_1) { e_6 = { error: e_6_1 }; }\n finally {\n try {\n if (collection_3_1 && !collection_3_1.done && (_e = collection_3.return)) _e.call(collection_3);\n }\n finally { if (e_6) throw e_6.error; }\n }\n return [4 /*yield*/, this.storage.multiGet(keysForStore)];\n case 1:\n storeRecordStrings = _f.sent();\n records = storeRecordStrings\n .filter(function (_a) {\n var _b = __read(_a, 2), value = _b[1];\n return value;\n })\n .map(function (_a) {\n var _b = __read(_a, 2), value = _b[1];\n return JSON.parse(value);\n });\n return [2 /*return*/, records];\n }\n });\n });\n };\n AsyncStorageDatabase.prototype.delete = function (key, storeName) {\n return __awaiter(this, void 0, void 0, function () {\n var ulid, itemKey;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n ulid = this.getCollectionIndex(storeName).get(key);\n itemKey = this.getKeyForItem(storeName, key, ulid);\n this.getCollectionIndex(storeName).delete(key);\n return [4 /*yield*/, this.storage.removeItem(itemKey)];\n case 1:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Clear the AsyncStorage of all DataStore entries\n */\n AsyncStorageDatabase.prototype.clear = function () {\n return __awaiter(this, void 0, void 0, function () {\n var allKeys, allDataStoreKeys;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.storage.getAllKeys()];\n case 1:\n allKeys = _a.sent();\n allDataStoreKeys = allKeys.filter(function (key) { return key.startsWith(DB_NAME); });\n return [4 /*yield*/, this.storage.multiRemove(allDataStoreKeys)];\n case 2:\n _a.sent();\n this._collectionInMemoryIndex.clear();\n return [2 /*return*/];\n }\n });\n });\n };\n AsyncStorageDatabase.prototype.getKeyForItem = function (storeName, id, ulid) {\n return this.getKeyPrefixForStoreItems(storeName) + \"::\" + ulid + \"::\" + id;\n };\n AsyncStorageDatabase.prototype.getLegacyKeyForItem = function (storeName, id) {\n return this.getKeyPrefixForStoreItems(storeName) + \"::\" + id;\n };\n AsyncStorageDatabase.prototype.getKeyPrefixForStoreItems = function (storeName) {\n return DB_NAME + \"::\" + storeName + \"::\" + DATA;\n };\n return AsyncStorageDatabase;\n}());\n/* harmony default export */ __webpack_exports__[\"default\"] = (AsyncStorageDatabase);\n//# sourceMappingURL=AsyncStorageDatabase.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/AsyncStorageDatabase.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/InMemoryStore.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/InMemoryStore.js ***! \**************************************************************************************/ /*! exports provided: InMemoryStore, createInMemoryStore */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InMemoryStore\", function() { return InMemoryStore; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createInMemoryStore\", function() { return createInMemoryStore; });\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar InMemoryStore = /** @class */ (function () {\n function InMemoryStore() {\n var _this = this;\n this.db = new Map();\n this.getAllKeys = function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, Array.from(this.db.keys())];\n });\n }); };\n this.multiGet = function (keys) { return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n return [2 /*return*/, keys.reduce(function (res, k) { return (res.push([k, _this.db.get(k)]), res); }, [])];\n });\n }); };\n this.multiRemove = function (keys, callback) { return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n keys.forEach(function (k) { return _this.db.delete(k); });\n typeof callback === 'function' && callback();\n return [2 /*return*/];\n });\n }); };\n this.multiSet = function (entries, callback) { return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n entries.forEach(function (_a) {\n var _b = __read(_a, 2), key = _b[0], value = _b[1];\n _this.setItem(key, value);\n });\n typeof callback === 'function' && callback();\n return [2 /*return*/];\n });\n }); };\n this.setItem = function (key, value) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this.db.set(key, value)];\n });\n }); };\n this.removeItem = function (key) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this.db.delete(key)];\n });\n }); };\n this.getItem = function (key) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this.db.get(key)];\n });\n }); };\n }\n return InMemoryStore;\n}());\n\nfunction createInMemoryStore() {\n return new InMemoryStore();\n}\n//# sourceMappingURL=InMemoryStore.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/InMemoryStore.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/IndexedDBAdapter.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/IndexedDBAdapter.js ***! \*****************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var idb__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! idb */ \"./node_modules/idb/build/esm/index.js\");\n/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../predicates */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __asyncValues = (undefined && undefined.__asyncValues) || function (o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n 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);\n 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); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('DataStore');\nvar DB_NAME = 'amplify-datastore';\nvar IndexedDBAdapter = /** @class */ (function () {\n function IndexedDBAdapter() {\n var _this = this;\n this.dbName = DB_NAME;\n this.safariCompatabilityMode = false;\n /**\n * Checks the given path against the browser's IndexedDB implementation for\n * necessary compatibility transformations, applying those transforms if needed.\n *\n * @param `keyArr` strings to compatibilize for browser-indexeddb index operations\n * @returns An array or string, depending on and given key,\n * that is ensured to be compatible with the IndexedDB implementation's nuances.\n */\n this.canonicalKeyPath = function (keyArr) {\n if (_this.safariCompatabilityMode) {\n return keyArr.length > 1 ? keyArr : keyArr[0];\n }\n return keyArr;\n };\n }\n IndexedDBAdapter.prototype.getStorenameForModel = function (modelConstructor) {\n var namespace = this.namespaceResolver(modelConstructor);\n var modelName = modelConstructor.name;\n return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespace, modelName);\n };\n // Retrieves primary key values from a model\n IndexedDBAdapter.prototype.getIndexKeyValuesFromModel = function (model) {\n var modelConstructor = Object.getPrototypeOf(model)\n .constructor;\n var namespaceName = this.namespaceResolver(modelConstructor);\n var keys = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndexKeys\"])(this.schema.namespaces[namespaceName], modelConstructor.name);\n return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"extractPrimaryKeyValues\"])(model, keys);\n };\n IndexedDBAdapter.prototype.checkPrivate = function () {\n return __awaiter(this, void 0, void 0, function () {\n var isPrivate;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"isPrivateMode\"])().then(function (isPrivate) {\n return isPrivate;\n })];\n case 1:\n isPrivate = _a.sent();\n if (isPrivate) {\n logger.error(\"IndexedDB not supported in this browser's private mode\");\n return [2 /*return*/, Promise.reject(\"IndexedDB not supported in this browser's private mode\")];\n }\n else {\n return [2 /*return*/, Promise.resolve()];\n }\n return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Whether the browser's implementation of IndexedDB is coercing single-field\n * indexes to a scalar key.\n *\n * If this returns `true`, we need to treat indexes containing a single field\n * as scalars.\n *\n * See PR description for reference:\n * https://github.com/aws-amplify/amplify-js/pull/10527\n */\n IndexedDBAdapter.prototype.setSafariCompatabilityMode = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = this;\n return [4 /*yield*/, Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"isSafariCompatabilityMode\"])()];\n case 1:\n _a.safariCompatabilityMode = _b.sent();\n if (this.safariCompatabilityMode === true) {\n logger.debug('IndexedDB Adapter is running in Safari Compatability Mode');\n }\n return [2 /*return*/];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.getNamespaceAndModelFromStorename = function (storeName) {\n var _a = __read(storeName.split('_')), namespaceName = _a[0], modelNameArr = _a.slice(1);\n return {\n namespaceName: namespaceName,\n modelName: modelNameArr.join('_'),\n };\n };\n IndexedDBAdapter.prototype.setUp = function (theSchema, namespaceResolver, modelInstanceCreator, getModelConstructorByModelName, sessionId) {\n return __awaiter(this, void 0, void 0, function () {\n var VERSION, _a, error_1;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, this.checkPrivate()];\n case 1:\n _b.sent();\n return [4 /*yield*/, this.setSafariCompatabilityMode()];\n case 2:\n _b.sent();\n if (!!this.initPromise) return [3 /*break*/, 3];\n this.initPromise = new Promise(function (res, rej) {\n _this.resolve = res;\n _this.reject = rej;\n });\n return [3 /*break*/, 5];\n case 3: return [4 /*yield*/, this.initPromise];\n case 4:\n _b.sent();\n _b.label = 5;\n case 5:\n if (sessionId) {\n this.dbName = DB_NAME + \"-\" + sessionId;\n }\n this.schema = theSchema;\n this.namespaceResolver = namespaceResolver;\n this.modelInstanceCreator = modelInstanceCreator;\n this.getModelConstructorByModelName = getModelConstructorByModelName;\n _b.label = 6;\n case 6:\n _b.trys.push([6, 9, , 10]);\n if (!!this.db) return [3 /*break*/, 8];\n VERSION = 3;\n _a = this;\n return [4 /*yield*/, idb__WEBPACK_IMPORTED_MODULE_1__[\"openDB\"](this.dbName, VERSION, {\n upgrade: function (db, oldVersion, newVersion, txn) { return __awaiter(_this, void 0, void 0, function () {\n var _a, _b, storeName, origStore, tmpName, _c, namespaceName, modelName, newStore, cursor, count, e_1_1, error_2;\n var e_1, _d;\n var _this = this;\n return __generator(this, function (_e) {\n switch (_e.label) {\n case 0:\n if (oldVersion === 0) {\n Object.keys(theSchema.namespaces).forEach(function (namespaceName) {\n var namespace = theSchema.namespaces[namespaceName];\n Object.keys(namespace.models).forEach(function (modelName) {\n var storeName = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespaceName, modelName);\n _this.createObjectStoreForModel(db, namespaceName, storeName, modelName);\n });\n });\n return [2 /*return*/];\n }\n if (!((oldVersion === 1 || oldVersion === 2) && newVersion === 3)) return [3 /*break*/, 16];\n _e.label = 1;\n case 1:\n _e.trys.push([1, 14, , 15]);\n _e.label = 2;\n case 2:\n _e.trys.push([2, 11, 12, 13]);\n _a = __values(txn.objectStoreNames), _b = _a.next();\n _e.label = 3;\n case 3:\n if (!!_b.done) return [3 /*break*/, 10];\n storeName = _b.value;\n origStore = txn.objectStore(storeName);\n tmpName = \"tmp_\" + storeName;\n origStore.name = tmpName;\n _c = this.getNamespaceAndModelFromStorename(storeName), namespaceName = _c.namespaceName, modelName = _c.modelName;\n newStore = this.createObjectStoreForModel(db, namespaceName, storeName, modelName);\n return [4 /*yield*/, origStore.openCursor()];\n case 4:\n cursor = _e.sent();\n count = 0;\n _e.label = 5;\n case 5:\n if (!(cursor && cursor.value)) return [3 /*break*/, 8];\n // we don't pass key, since they are all new entries in the new store\n return [4 /*yield*/, newStore.put(cursor.value)];\n case 6:\n // we don't pass key, since they are all new entries in the new store\n _e.sent();\n return [4 /*yield*/, cursor.continue()];\n case 7:\n cursor = _e.sent();\n count++;\n return [3 /*break*/, 5];\n case 8:\n // delete original\n db.deleteObjectStore(tmpName);\n logger.debug(count + \" \" + storeName + \" records migrated\");\n _e.label = 9;\n case 9:\n _b = _a.next();\n return [3 /*break*/, 3];\n case 10: return [3 /*break*/, 13];\n case 11:\n e_1_1 = _e.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 13];\n case 12:\n try {\n if (_b && !_b.done && (_d = _a.return)) _d.call(_a);\n }\n finally { if (e_1) throw e_1.error; }\n return [7 /*endfinally*/];\n case 13:\n // add new models created after IndexedDB, but before migration\n // this case may happen when a user has not opened an app for\n // some time and a new model is added during that time\n Object.keys(theSchema.namespaces).forEach(function (namespaceName) {\n var namespace = theSchema.namespaces[namespaceName];\n var objectStoreNames = new Set(txn.objectStoreNames);\n Object.keys(namespace.models)\n .map(function (modelName) {\n return [\n modelName,\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespaceName, modelName),\n ];\n })\n .filter(function (_a) {\n var _b = __read(_a, 2), storeName = _b[1];\n return !objectStoreNames.has(storeName);\n })\n .forEach(function (_a) {\n var _b = __read(_a, 2), modelName = _b[0], storeName = _b[1];\n _this.createObjectStoreForModel(db, namespaceName, storeName, modelName);\n });\n });\n return [3 /*break*/, 15];\n case 14:\n error_2 = _e.sent();\n logger.error('Error migrating IndexedDB data', error_2);\n txn.abort();\n throw error_2;\n case 15: return [2 /*return*/];\n case 16: return [2 /*return*/];\n }\n });\n }); },\n })];\n case 7:\n _a.db = _b.sent();\n this.resolve();\n _b.label = 8;\n case 8: return [3 /*break*/, 10];\n case 9:\n error_1 = _b.sent();\n this.reject(error_1);\n return [3 /*break*/, 10];\n case 10: return [2 /*return*/];\n }\n });\n });\n };\n IndexedDBAdapter.prototype._get = function (storeOrStoreName, keyArr) {\n return __awaiter(this, void 0, void 0, function () {\n var index, storeName, store, result;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (typeof storeOrStoreName === 'string') {\n storeName = storeOrStoreName;\n index = this.db.transaction(storeName, 'readonly').store.index('byPk');\n }\n else {\n store = storeOrStoreName;\n index = store.index('byPk');\n }\n return [4 /*yield*/, index.get(this.canonicalKeyPath(keyArr))];\n case 1:\n result = _a.sent();\n return [2 /*return*/, result];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.save = function (model, condition) {\n var e_2, _a;\n return __awaiter(this, void 0, void 0, function () {\n var modelConstructor, storeName, namespaceName, connectedModels, set, connectionStoreNames, tx, store, keyValues, fromDB, predicates, predicateObjs, type, isValid, msg, result, connectionStoreNames_1, connectionStoreNames_1_1, resItem, storeName_1, item, instance, keys, store_1, itemKeyValues, fromDB_1, opType, modelKeyValues, key, e_2_1;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, this.checkPrivate()];\n case 1:\n _b.sent();\n modelConstructor = Object.getPrototypeOf(model)\n .constructor;\n storeName = this.getStorenameForModel(modelConstructor);\n namespaceName = this.namespaceResolver(modelConstructor);\n connectedModels = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"traverseModel\"])(modelConstructor.name, model, this.schema.namespaces[namespaceName], this.modelInstanceCreator, this.getModelConstructorByModelName);\n set = new Set();\n connectionStoreNames = Object.values(connectedModels).map(function (_a) {\n var modelName = _a.modelName, item = _a.item, instance = _a.instance;\n var storeName = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespaceName, modelName);\n set.add(storeName);\n var keys = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndexKeys\"])(_this.schema.namespaces[namespaceName], modelName);\n return { storeName: storeName, item: item, instance: instance, keys: keys };\n });\n tx = this.db.transaction(__spread([storeName], Array.from(set.values())), 'readwrite');\n store = tx.objectStore(storeName);\n keyValues = this.getIndexKeyValuesFromModel(model);\n return [4 /*yield*/, this._get(store, keyValues)];\n case 2:\n fromDB = _b.sent();\n if (condition && fromDB) {\n predicates = _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelPredicateCreator\"].getPredicates(condition);\n predicateObjs = predicates.predicates, type = predicates.type;\n isValid = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"validatePredicate\"])(fromDB, type, predicateObjs);\n if (!isValid) {\n msg = 'Conditional update failed';\n logger.error(msg, { model: fromDB, condition: predicateObjs });\n throw new Error(msg);\n }\n }\n result = [];\n _b.label = 3;\n case 3:\n _b.trys.push([3, 11, 12, 17]);\n connectionStoreNames_1 = __asyncValues(connectionStoreNames);\n _b.label = 4;\n case 4: return [4 /*yield*/, connectionStoreNames_1.next()];\n case 5:\n if (!(connectionStoreNames_1_1 = _b.sent(), !connectionStoreNames_1_1.done)) return [3 /*break*/, 10];\n resItem = connectionStoreNames_1_1.value;\n storeName_1 = resItem.storeName, item = resItem.item, instance = resItem.instance, keys = resItem.keys;\n store_1 = tx.objectStore(storeName_1);\n itemKeyValues = keys.map(function (key) {\n var value = item[key];\n return value;\n });\n return [4 /*yield*/, this._get(store_1, itemKeyValues)];\n case 6:\n fromDB_1 = _b.sent();\n opType = fromDB_1 === undefined ? _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].INSERT : _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].UPDATE;\n modelKeyValues = this.getIndexKeyValuesFromModel(model);\n if (!(Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"keysEqual\"])(itemKeyValues, modelKeyValues) ||\n opType === _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].INSERT)) return [3 /*break*/, 9];\n return [4 /*yield*/, store_1\n .index('byPk')\n .getKey(this.canonicalKeyPath(itemKeyValues))];\n case 7:\n key = _b.sent();\n return [4 /*yield*/, store_1.put(item, key)];\n case 8:\n _b.sent();\n result.push([instance, opType]);\n _b.label = 9;\n case 9: return [3 /*break*/, 4];\n case 10: return [3 /*break*/, 17];\n case 11:\n e_2_1 = _b.sent();\n e_2 = { error: e_2_1 };\n return [3 /*break*/, 17];\n case 12:\n _b.trys.push([12, , 15, 16]);\n if (!(connectionStoreNames_1_1 && !connectionStoreNames_1_1.done && (_a = connectionStoreNames_1.return))) return [3 /*break*/, 14];\n return [4 /*yield*/, _a.call(connectionStoreNames_1)];\n case 13:\n _b.sent();\n _b.label = 14;\n case 14: return [3 /*break*/, 16];\n case 15:\n if (e_2) throw e_2.error;\n return [7 /*endfinally*/];\n case 16: return [7 /*endfinally*/];\n case 17: return [4 /*yield*/, tx.done];\n case 18:\n _b.sent();\n return [2 /*return*/, result];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.load = function (namespaceName, srcModelName, records) {\n var records_1, records_1_1, records_2, records_2_1;\n var e_3, _a, e_4, _b, e_5, _c;\n return __awaiter(this, void 0, void 0, function () {\n var namespace, relations, connectionStoreNames, modelConstructor, tx, relations_1, relations_1_1, relation, fieldName, modelName, targetName, targetNames, storeName, store, modelConstructor_1, _d, recordItem, getByFields, allPresent, keys, connectionRecord, getByfield, key, connectionRecord, e_4_1, recordItem, allPresent, keys, connectionRecord, key, connectionRecord, e_5_1, e_3_1;\n var _this = this;\n return __generator(this, function (_e) {\n switch (_e.label) {\n case 0:\n namespace = this.schema.namespaces[namespaceName];\n relations = namespace.relationships[srcModelName].relationTypes;\n connectionStoreNames = relations.map(function (_a) {\n var modelName = _a.modelName;\n return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespaceName, modelName);\n });\n modelConstructor = this.getModelConstructorByModelName(namespaceName, srcModelName);\n if (connectionStoreNames.length === 0) {\n return [2 /*return*/, records.map(function (record) {\n return _this.modelInstanceCreator(modelConstructor, record);\n })];\n }\n tx = this.db.transaction(__spread(connectionStoreNames), 'readonly');\n _e.label = 1;\n case 1:\n _e.trys.push([1, 38, 39, 44]);\n relations_1 = __asyncValues(relations);\n _e.label = 2;\n case 2: return [4 /*yield*/, relations_1.next()];\n case 3:\n if (!(relations_1_1 = _e.sent(), !relations_1_1.done)) return [3 /*break*/, 37];\n relation = relations_1_1.value;\n fieldName = relation.fieldName, modelName = relation.modelName, targetName = relation.targetName, targetNames = relation.targetNames;\n storeName = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(namespaceName, modelName);\n store = tx.objectStore(storeName);\n modelConstructor_1 = this.getModelConstructorByModelName(namespaceName, modelName);\n _d = relation.relationType;\n switch (_d) {\n case 'HAS_ONE': return [3 /*break*/, 4];\n case 'BELONGS_TO': return [3 /*break*/, 19];\n case 'HAS_MANY': return [3 /*break*/, 34];\n }\n return [3 /*break*/, 35];\n case 4:\n _e.trys.push([4, 12, 13, 18]);\n records_1 = __asyncValues(records);\n _e.label = 5;\n case 5: return [4 /*yield*/, records_1.next()];\n case 6:\n if (!(records_1_1 = _e.sent(), !records_1_1.done)) return [3 /*break*/, 11];\n recordItem = records_1_1.value;\n if (!(targetNames === null || targetNames === void 0 ? void 0 : targetNames.length)) return [3 /*break*/, 8];\n getByFields = [];\n allPresent = void 0;\n // iterate through all targetnames to make sure they are all present in the recordItem\n allPresent = targetNames.every(function (targetName) {\n return recordItem[targetName] != null;\n });\n if (!allPresent) {\n return [3 /*break*/, 11];\n }\n getByFields = targetNames;\n keys = getByFields.map(function (getByField) { return recordItem[getByField]; });\n return [4 /*yield*/, this._get(store, keys)];\n case 7:\n connectionRecord = _e.sent();\n recordItem[fieldName] =\n connectionRecord &&\n this.modelInstanceCreator(modelConstructor_1, connectionRecord);\n return [3 /*break*/, 10];\n case 8:\n getByfield = recordItem[targetName]\n ? targetName\n : fieldName;\n // We break here, because the recordItem does not have 'team', the `getByField`\n // extract the keys on the related model.\n if (!recordItem[getByfield])\n return [3 /*break*/, 11];\n key = [recordItem[getByfield]];\n return [4 /*yield*/, this._get(store, key)];\n case 9:\n connectionRecord = _e.sent();\n recordItem[fieldName] =\n connectionRecord &&\n this.modelInstanceCreator(modelConstructor_1, connectionRecord);\n _e.label = 10;\n case 10: return [3 /*break*/, 5];\n case 11: return [3 /*break*/, 18];\n case 12:\n e_4_1 = _e.sent();\n e_4 = { error: e_4_1 };\n return [3 /*break*/, 18];\n case 13:\n _e.trys.push([13, , 16, 17]);\n if (!(records_1_1 && !records_1_1.done && (_b = records_1.return))) return [3 /*break*/, 15];\n return [4 /*yield*/, _b.call(records_1)];\n case 14:\n _e.sent();\n _e.label = 15;\n case 15: return [3 /*break*/, 17];\n case 16:\n if (e_4) throw e_4.error;\n return [7 /*endfinally*/];\n case 17: return [7 /*endfinally*/];\n case 18: return [3 /*break*/, 36];\n case 19:\n _e.trys.push([19, 27, 28, 33]);\n records_2 = __asyncValues(records);\n _e.label = 20;\n case 20: return [4 /*yield*/, records_2.next()];\n case 21:\n if (!(records_2_1 = _e.sent(), !records_2_1.done)) return [3 /*break*/, 26];\n recordItem = records_2_1.value;\n if (!(targetNames === null || targetNames === void 0 ? void 0 : targetNames.length)) return [3 /*break*/, 23];\n allPresent = void 0;\n // iterate through all targetnames to make sure they are all present in the recordItem\n allPresent = targetNames.every(function (targetName) {\n return recordItem[targetName] != null;\n });\n // If not present, there is not yet a connected record\n if (!allPresent) {\n return [3 /*break*/, 26];\n }\n keys = targetNames\n .filter(function (targetName) { var _a; return (_a = recordItem[targetName]) !== null && _a !== void 0 ? _a : false; })\n .map(function (targetName) { return recordItem[targetName]; });\n return [4 /*yield*/, this._get(store, keys)];\n case 22:\n connectionRecord = _e.sent();\n recordItem[fieldName] =\n connectionRecord &&\n this.modelInstanceCreator(modelConstructor_1, connectionRecord);\n targetNames === null || targetNames === void 0 ? void 0 : targetNames.map(function (targetName) {\n delete recordItem[targetName];\n });\n return [3 /*break*/, 25];\n case 23:\n if (!recordItem[targetName]) return [3 /*break*/, 25];\n key = [recordItem[targetName]];\n return [4 /*yield*/, this._get(store, key)];\n case 24:\n connectionRecord = _e.sent();\n recordItem[fieldName] =\n connectionRecord &&\n this.modelInstanceCreator(modelConstructor_1, connectionRecord);\n delete recordItem[targetName];\n _e.label = 25;\n case 25: return [3 /*break*/, 20];\n case 26: return [3 /*break*/, 33];\n case 27:\n e_5_1 = _e.sent();\n e_5 = { error: e_5_1 };\n return [3 /*break*/, 33];\n case 28:\n _e.trys.push([28, , 31, 32]);\n if (!(records_2_1 && !records_2_1.done && (_c = records_2.return))) return [3 /*break*/, 30];\n return [4 /*yield*/, _c.call(records_2)];\n case 29:\n _e.sent();\n _e.label = 30;\n case 30: return [3 /*break*/, 32];\n case 31:\n if (e_5) throw e_5.error;\n return [7 /*endfinally*/];\n case 32: return [7 /*endfinally*/];\n case 33: return [3 /*break*/, 36];\n case 34: \n // TODO: Lazy loading\n return [3 /*break*/, 36];\n case 35:\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"exhaustiveCheck\"])(relation.relationType);\n return [3 /*break*/, 36];\n case 36: return [3 /*break*/, 2];\n case 37: return [3 /*break*/, 44];\n case 38:\n e_3_1 = _e.sent();\n e_3 = { error: e_3_1 };\n return [3 /*break*/, 44];\n case 39:\n _e.trys.push([39, , 42, 43]);\n if (!(relations_1_1 && !relations_1_1.done && (_a = relations_1.return))) return [3 /*break*/, 41];\n return [4 /*yield*/, _a.call(relations_1)];\n case 40:\n _e.sent();\n _e.label = 41;\n case 41: return [3 /*break*/, 43];\n case 42:\n if (e_3) throw e_3.error;\n return [7 /*endfinally*/];\n case 43: return [7 /*endfinally*/];\n case 44: return [2 /*return*/, records.map(function (record) {\n return _this.modelInstanceCreator(modelConstructor, record);\n })];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.query = function (modelConstructor, predicate, pagination) {\n return __awaiter(this, void 0, void 0, function () {\n var storeName, namespaceName, predicates, keyPath, queryByKey, hasSort, hasPagination, records;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.checkPrivate()];\n case 1:\n _a.sent();\n storeName = this.getStorenameForModel(modelConstructor);\n namespaceName = this.namespaceResolver(modelConstructor);\n predicates = predicate && _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelPredicateCreator\"].getPredicates(predicate);\n keyPath = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndexKeys\"])(this.schema.namespaces[namespaceName], modelConstructor.name);\n queryByKey = predicates && this.keyValueFromPredicate(predicates, keyPath);\n hasSort = pagination && pagination.sort;\n hasPagination = pagination && pagination.limit;\n return [4 /*yield*/, (function () { return __awaiter(_this, void 0, void 0, function () {\n var record, filtered, all;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!queryByKey) return [3 /*break*/, 2];\n return [4 /*yield*/, this.getByKey(storeName, queryByKey)];\n case 1:\n record = _a.sent();\n return [2 /*return*/, record ? [record] : []];\n case 2:\n if (!predicates) return [3 /*break*/, 4];\n return [4 /*yield*/, this.filterOnPredicate(storeName, predicates)];\n case 3:\n filtered = _a.sent();\n return [2 /*return*/, this.inMemoryPagination(filtered, pagination)];\n case 4:\n if (!hasSort) return [3 /*break*/, 6];\n return [4 /*yield*/, this.getAll(storeName)];\n case 5:\n all = _a.sent();\n return [2 /*return*/, this.inMemoryPagination(all, pagination)];\n case 6:\n if (hasPagination) {\n return [2 /*return*/, this.enginePagination(storeName, pagination)];\n }\n return [2 /*return*/, this.getAll(storeName)];\n }\n });\n }); })()];\n case 2:\n records = _a.sent();\n return [4 /*yield*/, this.load(namespaceName, modelConstructor.name, records)];\n case 3: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.getByKey = function (storeName, keyValue) {\n return __awaiter(this, void 0, void 0, function () {\n var record;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._get(storeName, keyValue)];\n case 1:\n record = _a.sent();\n return [2 /*return*/, record];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.getAll = function (storeName) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.db.getAll(storeName)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.keyValueFromPredicate = function (predicates, keyPath) {\n var e_6, _a;\n var predicateObjs = predicates.predicates;\n if (predicateObjs.length !== keyPath.length) {\n return;\n }\n var keyValues = [];\n var _loop_1 = function (key) {\n var predicateObj = predicateObjs.find(function (p) { return Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isPredicateObj\"])(p) && p.field === key && p.operator === 'eq'; });\n predicateObj && keyValues.push(predicateObj.operand);\n };\n try {\n for (var keyPath_1 = __values(keyPath), keyPath_1_1 = keyPath_1.next(); !keyPath_1_1.done; keyPath_1_1 = keyPath_1.next()) {\n var key = keyPath_1_1.value;\n _loop_1(key);\n }\n }\n catch (e_6_1) { e_6 = { error: e_6_1 }; }\n finally {\n try {\n if (keyPath_1_1 && !keyPath_1_1.done && (_a = keyPath_1.return)) _a.call(keyPath_1);\n }\n finally { if (e_6) throw e_6.error; }\n }\n return keyValues.length === keyPath.length ? keyValues : undefined;\n };\n IndexedDBAdapter.prototype.filterOnPredicate = function (storeName, predicates) {\n return __awaiter(this, void 0, void 0, function () {\n var predicateObjs, type, all, filtered;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n predicateObjs = predicates.predicates, type = predicates.type;\n return [4 /*yield*/, this.getAll(storeName)];\n case 1:\n all = _a.sent();\n filtered = predicateObjs\n ? all.filter(function (m) { return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"validatePredicate\"])(m, type, predicateObjs); })\n : all;\n return [2 /*return*/, filtered];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.inMemoryPagination = function (records, pagination) {\n if (pagination && records.length > 1) {\n if (pagination.sort) {\n var sortPredicates = _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelSortPredicateCreator\"].getPredicates(pagination.sort);\n if (sortPredicates.length) {\n var compareFn = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"sortCompareFunction\"])(sortPredicates);\n records.sort(compareFn);\n }\n }\n var _a = pagination.page, page = _a === void 0 ? 0 : _a, _b = pagination.limit, limit = _b === void 0 ? 0 : _b;\n var start = Math.max(0, page * limit) || 0;\n var end = limit > 0 ? start + limit : records.length;\n return records.slice(start, end);\n }\n return records;\n };\n IndexedDBAdapter.prototype.enginePagination = function (storeName, pagination) {\n return __awaiter(this, void 0, void 0, function () {\n var result, _a, page, _b, limit, initialRecord, cursor, pageResults, hasLimit;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (!pagination) return [3 /*break*/, 7];\n _a = pagination.page, page = _a === void 0 ? 0 : _a, _b = pagination.limit, limit = _b === void 0 ? 0 : _b;\n initialRecord = Math.max(0, page * limit) || 0;\n return [4 /*yield*/, this.db\n .transaction(storeName)\n .objectStore(storeName)\n .openCursor()];\n case 1:\n cursor = _c.sent();\n if (!(cursor && initialRecord > 0)) return [3 /*break*/, 3];\n return [4 /*yield*/, cursor.advance(initialRecord)];\n case 2:\n _c.sent();\n _c.label = 3;\n case 3:\n pageResults = [];\n hasLimit = typeof limit === 'number' && limit > 0;\n _c.label = 4;\n case 4:\n if (!(cursor && cursor.value)) return [3 /*break*/, 6];\n pageResults.push(cursor.value);\n if (hasLimit && pageResults.length === limit) {\n return [3 /*break*/, 6];\n }\n return [4 /*yield*/, cursor.continue()];\n case 5:\n cursor = _c.sent();\n return [3 /*break*/, 4];\n case 6:\n result = pageResults;\n return [3 /*break*/, 9];\n case 7: return [4 /*yield*/, this.db.getAll(storeName)];\n case 8:\n result = (_c.sent());\n _c.label = 9;\n case 9: return [2 /*return*/, result];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.queryOne = function (modelConstructor, firstOrLast) {\n if (firstOrLast === void 0) { firstOrLast = _types__WEBPACK_IMPORTED_MODULE_3__[\"QueryOne\"].FIRST; }\n return __awaiter(this, void 0, void 0, function () {\n var storeName, cursor, result;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.checkPrivate()];\n case 1:\n _a.sent();\n storeName = this.getStorenameForModel(modelConstructor);\n return [4 /*yield*/, this.db\n .transaction([storeName], 'readonly')\n .objectStore(storeName)\n .openCursor(undefined, firstOrLast === _types__WEBPACK_IMPORTED_MODULE_3__[\"QueryOne\"].FIRST ? 'next' : 'prev')];\n case 2:\n cursor = _a.sent();\n result = cursor ? cursor.value : undefined;\n return [2 /*return*/, result && this.modelInstanceCreator(modelConstructor, result)];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.delete = function (modelOrModelConstructor, condition) {\n return __awaiter(this, void 0, void 0, function () {\n var deleteQueue, modelConstructor, nameSpace, storeName, models, relations, deletedModels, deletedModels, model, modelConstructor, namespaceName, storeName, tx, store, keyValues, fromDB, msg, predicates, predicateObjs, type, isValid, msg, relations, relations, deletedModels;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.checkPrivate()];\n case 1:\n _a.sent();\n deleteQueue = [];\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"isModelConstructor\"])(modelOrModelConstructor)) return [3 /*break*/, 9];\n modelConstructor = modelOrModelConstructor;\n nameSpace = this.namespaceResolver(modelConstructor);\n storeName = this.getStorenameForModel(modelConstructor);\n return [4 /*yield*/, this.query(modelConstructor, condition)];\n case 2:\n models = _a.sent();\n relations = this.schema.namespaces[nameSpace].relationships[modelConstructor.name]\n .relationTypes;\n if (!(condition !== undefined)) return [3 /*break*/, 5];\n return [4 /*yield*/, this.deleteTraverse(relations, models, modelConstructor.name, nameSpace, deleteQueue)];\n case 3:\n _a.sent();\n return [4 /*yield*/, this.deleteItem(deleteQueue)];\n case 4:\n _a.sent();\n deletedModels = deleteQueue.reduce(function (acc, _a) {\n var items = _a.items;\n return acc.concat(items);\n }, []);\n return [2 /*return*/, [models, deletedModels]];\n case 5: return [4 /*yield*/, this.deleteTraverse(relations, models, modelConstructor.name, nameSpace, deleteQueue)];\n case 6:\n _a.sent();\n // Delete all\n return [4 /*yield*/, this.db\n .transaction([storeName], 'readwrite')\n .objectStore(storeName)\n .clear()];\n case 7:\n // Delete all\n _a.sent();\n deletedModels = deleteQueue.reduce(function (acc, _a) {\n var items = _a.items;\n return acc.concat(items);\n }, []);\n return [2 /*return*/, [models, deletedModels]];\n case 8: return [3 /*break*/, 17];\n case 9:\n model = modelOrModelConstructor;\n modelConstructor = Object.getPrototypeOf(model)\n .constructor;\n namespaceName = this.namespaceResolver(modelConstructor);\n storeName = this.getStorenameForModel(modelConstructor);\n if (!condition) return [3 /*break*/, 13];\n tx = this.db.transaction([storeName], 'readwrite');\n store = tx.objectStore(storeName);\n keyValues = this.getIndexKeyValuesFromModel(model);\n return [4 /*yield*/, this._get(store, keyValues)];\n case 10:\n fromDB = _a.sent();\n if (fromDB === undefined) {\n msg = 'Model instance not found in storage';\n logger.warn(msg, { model: model });\n return [2 /*return*/, [[model], []]];\n }\n predicates = _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelPredicateCreator\"].getPredicates(condition);\n predicateObjs = predicates.predicates, type = predicates.type;\n isValid = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"validatePredicate\"])(fromDB, type, predicateObjs);\n if (!isValid) {\n msg = 'Conditional update failed';\n logger.error(msg, { model: fromDB, condition: predicateObjs });\n throw new Error(msg);\n }\n return [4 /*yield*/, tx.done];\n case 11:\n _a.sent();\n relations = this.schema.namespaces[namespaceName].relationships[modelConstructor.name].relationTypes;\n return [4 /*yield*/, this.deleteTraverse(relations, [model], modelConstructor.name, namespaceName, deleteQueue)];\n case 12:\n _a.sent();\n return [3 /*break*/, 15];\n case 13:\n relations = this.schema.namespaces[namespaceName].relationships[modelConstructor.name].relationTypes;\n return [4 /*yield*/, this.deleteTraverse(relations, [model], modelConstructor.name, namespaceName, deleteQueue)];\n case 14:\n _a.sent();\n _a.label = 15;\n case 15: return [4 /*yield*/, this.deleteItem(deleteQueue)];\n case 16:\n _a.sent();\n deletedModels = deleteQueue.reduce(function (acc, _a) {\n var items = _a.items;\n return acc.concat(items);\n }, []);\n return [2 /*return*/, [[model], deletedModels]];\n case 17: return [2 /*return*/];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.deleteItem = function (deleteQueue) {\n var deleteQueue_1, deleteQueue_1_1;\n var e_7, _a, e_8, _b;\n return __awaiter(this, void 0, void 0, function () {\n var connectionStoreNames, tx, deleteItem, storeName, items, store, items_1, items_1_1, item, key, keyValues, itemKey, e_8_1, e_7_1;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n connectionStoreNames = deleteQueue.map(function (_a) {\n var storeName = _a.storeName;\n return storeName;\n });\n tx = this.db.transaction(__spread(connectionStoreNames), 'readwrite');\n _c.label = 1;\n case 1:\n _c.trys.push([1, 22, 23, 28]);\n deleteQueue_1 = __asyncValues(deleteQueue);\n _c.label = 2;\n case 2: return [4 /*yield*/, deleteQueue_1.next()];\n case 3:\n if (!(deleteQueue_1_1 = _c.sent(), !deleteQueue_1_1.done)) return [3 /*break*/, 21];\n deleteItem = deleteQueue_1_1.value;\n storeName = deleteItem.storeName, items = deleteItem.items;\n store = tx.objectStore(storeName);\n _c.label = 4;\n case 4:\n _c.trys.push([4, 14, 15, 20]);\n items_1 = __asyncValues(items);\n _c.label = 5;\n case 5: return [4 /*yield*/, items_1.next()];\n case 6:\n if (!(items_1_1 = _c.sent(), !items_1_1.done)) return [3 /*break*/, 13];\n item = items_1_1.value;\n if (!item) return [3 /*break*/, 12];\n key = void 0;\n if (!(typeof item === 'object')) return [3 /*break*/, 8];\n keyValues = this.getIndexKeyValuesFromModel(item);\n return [4 /*yield*/, store\n .index('byPk')\n .getKey(this.canonicalKeyPath(keyValues))];\n case 7:\n key = _c.sent();\n return [3 /*break*/, 10];\n case 8:\n itemKey = item.toString();\n return [4 /*yield*/, store.index('byPk').getKey(itemKey)];\n case 9:\n key = _c.sent();\n _c.label = 10;\n case 10:\n if (!(key !== undefined)) return [3 /*break*/, 12];\n return [4 /*yield*/, store.delete(key)];\n case 11:\n _c.sent();\n _c.label = 12;\n case 12: return [3 /*break*/, 5];\n case 13: return [3 /*break*/, 20];\n case 14:\n e_8_1 = _c.sent();\n e_8 = { error: e_8_1 };\n return [3 /*break*/, 20];\n case 15:\n _c.trys.push([15, , 18, 19]);\n if (!(items_1_1 && !items_1_1.done && (_b = items_1.return))) return [3 /*break*/, 17];\n return [4 /*yield*/, _b.call(items_1)];\n case 16:\n _c.sent();\n _c.label = 17;\n case 17: return [3 /*break*/, 19];\n case 18:\n if (e_8) throw e_8.error;\n return [7 /*endfinally*/];\n case 19: return [7 /*endfinally*/];\n case 20: return [3 /*break*/, 2];\n case 21: return [3 /*break*/, 28];\n case 22:\n e_7_1 = _c.sent();\n e_7 = { error: e_7_1 };\n return [3 /*break*/, 28];\n case 23:\n _c.trys.push([23, , 26, 27]);\n if (!(deleteQueue_1_1 && !deleteQueue_1_1.done && (_a = deleteQueue_1.return))) return [3 /*break*/, 25];\n return [4 /*yield*/, _a.call(deleteQueue_1)];\n case 24:\n _c.sent();\n _c.label = 25;\n case 25: return [3 /*break*/, 27];\n case 26:\n if (e_7) throw e_7.error;\n return [7 /*endfinally*/];\n case 27: return [7 /*endfinally*/];\n case 28: return [2 /*return*/];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.deleteTraverse = function (relations, models, srcModel, nameSpace, deleteQueue) {\n var relations_2, relations_2_1, models_1, models_1_1, models_2, models_2_1;\n var e_9, _a, e_10, _b, e_11, _c;\n return __awaiter(this, void 0, void 0, function () {\n var rel, relationType, modelName, targetName, targetNames, associatedWith, storeName, _d, model, hasOneIndex, values, recordToDelete, index, values, value, recordToDelete, e_10_1, model, index, keyValues, childrenArray, e_11_1, e_9_1;\n var _this = this;\n return __generator(this, function (_e) {\n switch (_e.label) {\n case 0:\n _e.trys.push([0, 38, 39, 44]);\n relations_2 = __asyncValues(relations);\n _e.label = 1;\n case 1: return [4 /*yield*/, relations_2.next()];\n case 2:\n if (!(relations_2_1 = _e.sent(), !relations_2_1.done)) return [3 /*break*/, 37];\n rel = relations_2_1.value;\n relationType = rel.relationType, modelName = rel.modelName, targetName = rel.targetName, targetNames = rel.targetNames, associatedWith = rel.associatedWith;\n storeName = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(nameSpace, modelName);\n _d = relationType;\n switch (_d) {\n case 'HAS_ONE': return [3 /*break*/, 3];\n case 'HAS_MANY': return [3 /*break*/, 20];\n case 'BELONGS_TO': return [3 /*break*/, 34];\n }\n return [3 /*break*/, 35];\n case 3:\n _e.trys.push([3, 13, 14, 19]);\n models_1 = __asyncValues(models);\n _e.label = 4;\n case 4: return [4 /*yield*/, models_1.next()];\n case 5:\n if (!(models_1_1 = _e.sent(), !models_1_1.done)) return [3 /*break*/, 12];\n model = models_1_1.value;\n hasOneIndex = 'byPk';\n if (!(targetNames === null || targetNames === void 0 ? void 0 : targetNames.length)) return [3 /*break*/, 8];\n values = targetNames\n .filter(function (targetName) { var _a; return (_a = model[targetName]) !== null && _a !== void 0 ? _a : false; })\n .map(function (targetName) { return model[targetName]; });\n if (values.length === 0)\n return [3 /*break*/, 12];\n return [4 /*yield*/, this.db\n .transaction(storeName, 'readwrite')\n .objectStore(storeName)\n .index(hasOneIndex)\n .get(this.canonicalKeyPath(values))];\n case 6:\n recordToDelete = (_e.sent());\n return [4 /*yield*/, this.deleteTraverse(this.schema.namespaces[nameSpace].relationships[modelName]\n .relationTypes, recordToDelete ? [recordToDelete] : [], modelName, nameSpace, deleteQueue)];\n case 7:\n _e.sent();\n return [3 /*break*/, 12];\n case 8:\n index = void 0;\n values = void 0;\n if (targetName && targetName in model) {\n index = hasOneIndex;\n value = model[targetName];\n if (!value)\n return [3 /*break*/, 12];\n values = [value];\n }\n else {\n // backwards compatability for older versions of codegen that did not emit targetName for HAS_ONE relations\n // TODO: can we deprecate this? it's been ~2 years since codegen started including targetName for HAS_ONE\n // If we deprecate, we'll need to re-gen the MIPR in __tests__/schema.ts > newSchema\n // otherwise some unit tests will fail\n index = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndex\"])(this.schema.namespaces[nameSpace].relationships[modelName]\n .relationTypes, srcModel);\n values = this.getIndexKeyValuesFromModel(model);\n }\n if (!values || !index)\n return [3 /*break*/, 12];\n return [4 /*yield*/, this.db\n .transaction(storeName, 'readwrite')\n .objectStore(storeName)\n .index(index)\n .get(this.canonicalKeyPath(values))];\n case 9:\n recordToDelete = (_e.sent());\n return [4 /*yield*/, this.deleteTraverse(this.schema.namespaces[nameSpace].relationships[modelName]\n .relationTypes, recordToDelete ? [recordToDelete] : [], modelName, nameSpace, deleteQueue)];\n case 10:\n _e.sent();\n _e.label = 11;\n case 11: return [3 /*break*/, 4];\n case 12: return [3 /*break*/, 19];\n case 13:\n e_10_1 = _e.sent();\n e_10 = { error: e_10_1 };\n return [3 /*break*/, 19];\n case 14:\n _e.trys.push([14, , 17, 18]);\n if (!(models_1_1 && !models_1_1.done && (_b = models_1.return))) return [3 /*break*/, 16];\n return [4 /*yield*/, _b.call(models_1)];\n case 15:\n _e.sent();\n _e.label = 16;\n case 16: return [3 /*break*/, 18];\n case 17:\n if (e_10) throw e_10.error;\n return [7 /*endfinally*/];\n case 18: return [7 /*endfinally*/];\n case 19: return [3 /*break*/, 36];\n case 20:\n _e.trys.push([20, 27, 28, 33]);\n models_2 = __asyncValues(models);\n _e.label = 21;\n case 21: return [4 /*yield*/, models_2.next()];\n case 22:\n if (!(models_2_1 = _e.sent(), !models_2_1.done)) return [3 /*break*/, 26];\n model = models_2_1.value;\n index = \n // explicit bi-directional @hasMany and @manyToMany\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndex\"])(this.schema.namespaces[nameSpace].relationships[modelName]\n .relationTypes, srcModel) ||\n // uni and/or implicit @hasMany\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getIndexFromAssociation\"])(this.schema.namespaces[nameSpace].relationships[modelName]\n .indexes, associatedWith);\n keyValues = this.getIndexKeyValuesFromModel(model);\n return [4 /*yield*/, this.db\n .transaction(storeName, 'readwrite')\n .objectStore(storeName)\n .index(index)\n .getAll(this.canonicalKeyPath(keyValues))];\n case 23:\n childrenArray = _e.sent();\n return [4 /*yield*/, this.deleteTraverse(this.schema.namespaces[nameSpace].relationships[modelName]\n .relationTypes, childrenArray, modelName, nameSpace, deleteQueue)];\n case 24:\n _e.sent();\n _e.label = 25;\n case 25: return [3 /*break*/, 21];\n case 26: return [3 /*break*/, 33];\n case 27:\n e_11_1 = _e.sent();\n e_11 = { error: e_11_1 };\n return [3 /*break*/, 33];\n case 28:\n _e.trys.push([28, , 31, 32]);\n if (!(models_2_1 && !models_2_1.done && (_c = models_2.return))) return [3 /*break*/, 30];\n return [4 /*yield*/, _c.call(models_2)];\n case 29:\n _e.sent();\n _e.label = 30;\n case 30: return [3 /*break*/, 32];\n case 31:\n if (e_11) throw e_11.error;\n return [7 /*endfinally*/];\n case 32: return [7 /*endfinally*/];\n case 33: return [3 /*break*/, 36];\n case 34: \n // Intentionally blank\n return [3 /*break*/, 36];\n case 35:\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"exhaustiveCheck\"])(relationType);\n return [3 /*break*/, 36];\n case 36: return [3 /*break*/, 1];\n case 37: return [3 /*break*/, 44];\n case 38:\n e_9_1 = _e.sent();\n e_9 = { error: e_9_1 };\n return [3 /*break*/, 44];\n case 39:\n _e.trys.push([39, , 42, 43]);\n if (!(relations_2_1 && !relations_2_1.done && (_a = relations_2.return))) return [3 /*break*/, 41];\n return [4 /*yield*/, _a.call(relations_2)];\n case 40:\n _e.sent();\n _e.label = 41;\n case 41: return [3 /*break*/, 43];\n case 42:\n if (e_9) throw e_9.error;\n return [7 /*endfinally*/];\n case 43: return [7 /*endfinally*/];\n case 44:\n deleteQueue.push({\n storeName: Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"getStorename\"])(nameSpace, srcModel),\n items: models.map(function (record) {\n return _this.modelInstanceCreator(_this.getModelConstructorByModelName(nameSpace, srcModel), record);\n }),\n });\n return [2 /*return*/];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.clear = function () {\n var _a;\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, this.checkPrivate()];\n case 1:\n _b.sent();\n (_a = this.db) === null || _a === void 0 ? void 0 : _a.close();\n return [4 /*yield*/, idb__WEBPACK_IMPORTED_MODULE_1__[\"deleteDB\"](this.dbName)];\n case 2:\n _b.sent();\n this.db = undefined;\n this.initPromise = undefined;\n return [2 /*return*/];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.batchSave = function (modelConstructor, items) {\n return __awaiter(this, void 0, void 0, function () {\n var result, storeName, txn, store, _loop_2, this_1, items_2, items_2_1, item, e_12_1;\n var e_12, _a;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (items.length === 0) {\n return [2 /*return*/, []];\n }\n return [4 /*yield*/, this.checkPrivate()];\n case 1:\n _b.sent();\n result = [];\n storeName = this.getStorenameForModel(modelConstructor);\n txn = this.db.transaction(storeName, 'readwrite');\n store = txn.store;\n _loop_2 = function (item) {\n var namespaceName, modelName, model, connectedModels, keyValues, _deleted, index, key, instance;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n namespaceName = this_1.namespaceResolver(modelConstructor);\n modelName = modelConstructor.name;\n model = this_1.modelInstanceCreator(modelConstructor, item);\n connectedModels = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"traverseModel\"])(modelName, model, this_1.schema.namespaces[namespaceName], this_1.modelInstanceCreator, this_1.getModelConstructorByModelName);\n keyValues = this_1.getIndexKeyValuesFromModel(model);\n _deleted = item._deleted;\n index = store.index('byPk');\n return [4 /*yield*/, index.getKey(this_1.canonicalKeyPath(keyValues))];\n case 1:\n key = _a.sent();\n if (!!_deleted) return [3 /*break*/, 3];\n instance = connectedModels.find(function (_a) {\n var instance = _a.instance;\n var instanceKeyValues = _this.getIndexKeyValuesFromModel(instance);\n return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"keysEqual\"])(instanceKeyValues, keyValues);\n }).instance;\n result.push([\n instance,\n key ? _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].UPDATE : _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].INSERT,\n ]);\n return [4 /*yield*/, store.put(instance, key)];\n case 2:\n _a.sent();\n return [3 /*break*/, 5];\n case 3:\n result.push([item, _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].DELETE]);\n if (!key) return [3 /*break*/, 5];\n return [4 /*yield*/, store.delete(key)];\n case 4:\n _a.sent();\n _a.label = 5;\n case 5: return [2 /*return*/];\n }\n });\n };\n this_1 = this;\n _b.label = 2;\n case 2:\n _b.trys.push([2, 7, 8, 9]);\n items_2 = __values(items), items_2_1 = items_2.next();\n _b.label = 3;\n case 3:\n if (!!items_2_1.done) return [3 /*break*/, 6];\n item = items_2_1.value;\n return [5 /*yield**/, _loop_2(item)];\n case 4:\n _b.sent();\n _b.label = 5;\n case 5:\n items_2_1 = items_2.next();\n return [3 /*break*/, 3];\n case 6: return [3 /*break*/, 9];\n case 7:\n e_12_1 = _b.sent();\n e_12 = { error: e_12_1 };\n return [3 /*break*/, 9];\n case 8:\n try {\n if (items_2_1 && !items_2_1.done && (_a = items_2.return)) _a.call(items_2);\n }\n finally { if (e_12) throw e_12.error; }\n return [7 /*endfinally*/];\n case 9: return [4 /*yield*/, txn.done];\n case 10:\n _b.sent();\n return [2 /*return*/, result];\n }\n });\n });\n };\n IndexedDBAdapter.prototype.createObjectStoreForModel = function (db, namespaceName, storeName, modelName) {\n var store = db.createObjectStore(storeName, {\n autoIncrement: true,\n });\n var indexes = this.schema.namespaces[namespaceName].relationships[modelName].indexes;\n indexes.forEach(function (_a) {\n var _b = __read(_a, 3), idxName = _b[0], keyPath = _b[1], options = _b[2];\n store.createIndex(idxName, keyPath, options);\n });\n return store;\n };\n return IndexedDBAdapter;\n}());\n/* harmony default export */ __webpack_exports__[\"default\"] = (new IndexedDBAdapter());\n//# sourceMappingURL=IndexedDBAdapter.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/IndexedDBAdapter.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/getDefaultAdapter/index.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/getDefaultAdapter/index.js ***! \************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _IndexedDBAdapter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../IndexedDBAdapter */ \"./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/IndexedDBAdapter.js\");\n/* harmony import */ var _AsyncStorageAdapter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../AsyncStorageAdapter */ \"./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/AsyncStorageAdapter.js\");\n\n\n\nvar getDefaultAdapter = function () {\n var isBrowser = Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"browserOrNode\"])().isBrowser;\n if ((isBrowser && window.indexedDB) || (Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"isWebWorker\"])() && self.indexedDB)) {\n return _IndexedDBAdapter__WEBPACK_IMPORTED_MODULE_1__[\"default\"];\n }\n return _AsyncStorageAdapter__WEBPACK_IMPORTED_MODULE_2__[\"default\"];\n};\n/* harmony default export */ __webpack_exports__[\"default\"] = (getDefaultAdapter);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/getDefaultAdapter/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/storage/storage.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/storage/storage.js ***! \************************************************************************/ /*! exports provided: ExclusiveStorage */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExclusiveStorage\", function() { return ExclusiveStorage; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var zen_push__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! zen-push */ \"./node_modules/zen-push/index.js\");\n/* harmony import */ var zen_push__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(zen_push__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../predicates */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _sync_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../sync/utils */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js\");\n/* harmony import */ var _adapter_getDefaultAdapter__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./adapter/getDefaultAdapter */ \"./node_modules/@aws-amplify/datastore/lib-esm/storage/adapter/getDefaultAdapter/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\n\n\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Logger\"]('DataStore');\nvar StorageClass = /** @class */ (function () {\n function StorageClass(schema, namespaceResolver, getModelConstructorByModelName, modelInstanceCreator, adapter, sessionId) {\n this.schema = schema;\n this.namespaceResolver = namespaceResolver;\n this.getModelConstructorByModelName = getModelConstructorByModelName;\n this.modelInstanceCreator = modelInstanceCreator;\n this.adapter = adapter;\n this.sessionId = sessionId;\n this.adapter = this.adapter || Object(_adapter_getDefaultAdapter__WEBPACK_IMPORTED_MODULE_6__[\"default\"])();\n this.pushStream = new zen_push__WEBPACK_IMPORTED_MODULE_1___default.a();\n }\n StorageClass.getNamespace = function () {\n var namespace = {\n name: _util__WEBPACK_IMPORTED_MODULE_4__[\"STORAGE\"],\n relationships: {},\n enums: {},\n models: {},\n nonModels: {},\n };\n return namespace;\n };\n StorageClass.prototype.init = function () {\n return __awaiter(this, void 0, void 0, function () {\n var resolve, reject;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(this.initialized !== undefined)) return [3 /*break*/, 2];\n return [4 /*yield*/, this.initialized];\n case 1:\n _a.sent();\n return [2 /*return*/];\n case 2:\n logger.debug('Starting Storage');\n this.initialized = new Promise(function (res, rej) {\n resolve = res;\n reject = rej;\n });\n this.adapter\n .setUp(this.schema, this.namespaceResolver, this.modelInstanceCreator, this.getModelConstructorByModelName, this.sessionId)\n .then(resolve, reject);\n return [4 /*yield*/, this.initialized];\n case 3:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n StorageClass.prototype.save = function (model, condition, mutator, patchesTuple) {\n return __awaiter(this, void 0, void 0, function () {\n var result;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.init()];\n case 1:\n _a.sent();\n return [4 /*yield*/, this.adapter.save(model, condition)];\n case 2:\n result = _a.sent();\n result.forEach(function (r) {\n var _a = __read(r, 2), savedElement = _a[0], opType = _a[1];\n // truthy when save is called by the Merger\n var syncResponse = !!mutator;\n var updateMutationInput;\n // don't attempt to calc mutation input when storage.save\n // is called by Merger, i.e., when processing an AppSync response\n if (opType === _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].UPDATE && !syncResponse) {\n //\n // TODO: LOOK!!!\n // the `model` used here is in effect regardless of what model\n // comes back from adapter.save().\n // Prior to fix, SQLite adapter had been returning two models\n // of different types, resulting in invalid outbox entries.\n //\n // the bug is essentially fixed in SQLite adapter.\n // leaving as-is, because it's currently unclear whether anything\n // depends on this remaining as-is.\n //\n updateMutationInput = _this.getUpdateMutationInput(model, savedElement, patchesTuple);\n // // an update without changed user fields\n // => don't create mutationEvent\n if (updateMutationInput === null) {\n return result;\n }\n }\n var element = updateMutationInput || savedElement;\n var modelConstructor = Object.getPrototypeOf(savedElement)\n .constructor;\n _this.pushStream.next({\n model: modelConstructor,\n opType: opType,\n element: element,\n mutator: mutator,\n condition: _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelPredicateCreator\"].getPredicates(condition, false),\n savedElement: savedElement,\n });\n });\n return [2 /*return*/, result];\n }\n });\n });\n };\n StorageClass.prototype.delete = function (modelOrModelConstructor, condition, mutator) {\n return __awaiter(this, void 0, void 0, function () {\n var deleted, models, modelConstructor, namespaceName, modelDefinition, modelIds;\n var _a;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, this.init()];\n case 1:\n _b.sent();\n return [4 /*yield*/, this.adapter.delete(modelOrModelConstructor, condition)];\n case 2:\n _a = __read.apply(void 0, [_b.sent(), 2]), models = _a[0], deleted = _a[1];\n modelConstructor = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"isModelConstructor\"])(modelOrModelConstructor)\n ? modelOrModelConstructor\n : Object.getPrototypeOf(modelOrModelConstructor || {})\n .constructor;\n namespaceName = this.namespaceResolver(modelConstructor);\n modelDefinition = this.schema.namespaces[namespaceName].models[modelConstructor.name];\n modelIds = new Set(models.map(function (model) {\n var modelId = Object(_sync_utils__WEBPACK_IMPORTED_MODULE_5__[\"getIdentifierValue\"])(modelDefinition, model);\n return modelId;\n }));\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"isModelConstructor\"])(modelOrModelConstructor) &&\n !Array.isArray(deleted)) {\n deleted = [deleted];\n }\n deleted.forEach(function (model) {\n var modelConstructor = Object.getPrototypeOf(model)\n .constructor;\n var theCondition;\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"isModelConstructor\"])(modelOrModelConstructor)) {\n var modelId = Object(_sync_utils__WEBPACK_IMPORTED_MODULE_5__[\"getIdentifierValue\"])(modelDefinition, model);\n theCondition = modelIds.has(modelId)\n ? _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelPredicateCreator\"].getPredicates(condition, false)\n : undefined;\n }\n _this.pushStream.next({\n model: modelConstructor,\n opType: _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].DELETE,\n element: model,\n mutator: mutator,\n condition: theCondition,\n });\n });\n return [2 /*return*/, [models, deleted]];\n }\n });\n });\n };\n StorageClass.prototype.query = function (modelConstructor, predicate, pagination) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.init()];\n case 1:\n _a.sent();\n return [4 /*yield*/, this.adapter.query(modelConstructor, predicate, pagination)];\n case 2: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n StorageClass.prototype.queryOne = function (modelConstructor, firstOrLast) {\n if (firstOrLast === void 0) { firstOrLast = _types__WEBPACK_IMPORTED_MODULE_3__[\"QueryOne\"].FIRST; }\n return __awaiter(this, void 0, void 0, function () {\n var record;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.init()];\n case 1:\n _a.sent();\n return [4 /*yield*/, this.adapter.queryOne(modelConstructor, firstOrLast)];\n case 2:\n record = _a.sent();\n return [2 /*return*/, record];\n }\n });\n });\n };\n StorageClass.prototype.observe = function (modelConstructor, predicate, skipOwn) {\n var listenToAll = !modelConstructor;\n var _a = _predicates__WEBPACK_IMPORTED_MODULE_2__[\"ModelPredicateCreator\"].getPredicates(predicate, false) || {}, predicates = _a.predicates, type = _a.type;\n var hasPredicate = !!predicates;\n var result = this.pushStream.observable\n .filter(function (_a) {\n var mutator = _a.mutator;\n return !skipOwn || mutator !== skipOwn;\n })\n .map(function (_a) {\n var _mutator = _a.mutator, message = __rest(_a, [\"mutator\"]);\n return message;\n });\n if (!listenToAll) {\n result = result.filter(function (_a) {\n var model = _a.model, element = _a.element;\n if (modelConstructor !== model) {\n return false;\n }\n if (hasPredicate) {\n return Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"validatePredicate\"])(element, type, predicates);\n }\n return true;\n });\n }\n return result;\n };\n StorageClass.prototype.clear = function (completeObservable) {\n if (completeObservable === void 0) { completeObservable = true; }\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n this.initialized = undefined;\n return [4 /*yield*/, this.adapter.clear()];\n case 1:\n _a.sent();\n if (completeObservable) {\n this.pushStream.complete();\n }\n return [2 /*return*/];\n }\n });\n });\n };\n StorageClass.prototype.batchSave = function (modelConstructor, items, mutator) {\n return __awaiter(this, void 0, void 0, function () {\n var result;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.init()];\n case 1:\n _a.sent();\n return [4 /*yield*/, this.adapter.batchSave(modelConstructor, items)];\n case 2:\n result = _a.sent();\n result.forEach(function (_a) {\n var _b = __read(_a, 2), element = _b[0], opType = _b[1];\n _this.pushStream.next({\n model: modelConstructor,\n opType: opType,\n element: element,\n mutator: mutator,\n condition: undefined,\n });\n });\n return [2 /*return*/, result];\n }\n });\n });\n };\n // returns null if no user fields were changed (determined by value comparison)\n StorageClass.prototype.getUpdateMutationInput = function (model, originalElement, patchesTuple) {\n var e_1, _a;\n var containsPatches = patchesTuple && patchesTuple.length;\n if (!containsPatches) {\n return null;\n }\n var _b = __read(patchesTuple, 2), patches = _b[0], source = _b[1];\n var updatedElement = {};\n // extract array of updated fields from patches\n var updatedFields = (patches.map(function (patch) { return patch.path && patch.path[0]; }));\n // check model def for association and replace with targetName if exists\n var modelConstructor = Object.getPrototypeOf(model)\n .constructor;\n var namespace = this.namespaceResolver(modelConstructor);\n var fields = this.schema.namespaces[namespace].models[modelConstructor.name].fields;\n var _c = this.schema.namespaces[namespace].keys[modelConstructor.name], primaryKey = _c.primaryKey, _d = _c.compositeKeys, compositeKeys = _d === void 0 ? [] : _d;\n // set original values for these fields\n updatedFields.forEach(function (field) {\n var e_2, _a, e_3, _b, e_4, _c, e_5, _d, e_6, _e;\n var _f;\n var targetNames = Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isTargetNameAssociation\"])((_f = fields[field]) === null || _f === void 0 ? void 0 : _f.association);\n if (Array.isArray(targetNames)) {\n try {\n // if field refers to a belongsTo relation, use the target field instead\n for (var targetNames_1 = __values(targetNames), targetNames_1_1 = targetNames_1.next(); !targetNames_1_1.done; targetNames_1_1 = targetNames_1.next()) {\n var targetName = targetNames_1_1.value;\n // check field values by value. Ignore unchanged fields\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"valuesEqual\"])(source[targetName], originalElement[targetName])) {\n // if the field was updated to 'undefined', replace with 'null' for compatibility with JSON and GraphQL\n updatedElement[targetName] =\n originalElement[targetName] === undefined\n ? null\n : originalElement[targetName];\n try {\n for (var compositeKeys_1 = (e_3 = void 0, __values(compositeKeys)), compositeKeys_1_1 = compositeKeys_1.next(); !compositeKeys_1_1.done; compositeKeys_1_1 = compositeKeys_1.next()) {\n var fieldSet = compositeKeys_1_1.value;\n // include all of the fields that comprise the composite key\n if (fieldSet.has(targetName)) {\n try {\n for (var fieldSet_1 = (e_4 = void 0, __values(fieldSet)), fieldSet_1_1 = fieldSet_1.next(); !fieldSet_1_1.done; fieldSet_1_1 = fieldSet_1.next()) {\n var compositeField = fieldSet_1_1.value;\n updatedElement[compositeField] =\n originalElement[compositeField];\n }\n }\n catch (e_4_1) { e_4 = { error: e_4_1 }; }\n finally {\n try {\n if (fieldSet_1_1 && !fieldSet_1_1.done && (_c = fieldSet_1.return)) _c.call(fieldSet_1);\n }\n finally { if (e_4) throw e_4.error; }\n }\n }\n }\n }\n catch (e_3_1) { e_3 = { error: e_3_1 }; }\n finally {\n try {\n if (compositeKeys_1_1 && !compositeKeys_1_1.done && (_b = compositeKeys_1.return)) _b.call(compositeKeys_1);\n }\n finally { if (e_3) throw e_3.error; }\n }\n }\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (targetNames_1_1 && !targetNames_1_1.done && (_a = targetNames_1.return)) _a.call(targetNames_1);\n }\n finally { if (e_2) throw e_2.error; }\n }\n }\n else {\n // Backwards compatibility pre-CPK\n // if field refers to a belongsTo relation, use the target field instead\n var key = targetNames || field;\n // check field values by value. Ignore unchanged fields\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"valuesEqual\"])(source[key], originalElement[key])) {\n // if the field was updated to 'undefined', replace with 'null' for compatibility with JSON and GraphQL\n updatedElement[key] =\n originalElement[key] === undefined ? null : originalElement[key];\n try {\n for (var compositeKeys_2 = __values(compositeKeys), compositeKeys_2_1 = compositeKeys_2.next(); !compositeKeys_2_1.done; compositeKeys_2_1 = compositeKeys_2.next()) {\n var fieldSet = compositeKeys_2_1.value;\n // include all of the fields that comprise the composite key\n if (fieldSet.has(key)) {\n try {\n for (var fieldSet_2 = (e_6 = void 0, __values(fieldSet)), fieldSet_2_1 = fieldSet_2.next(); !fieldSet_2_1.done; fieldSet_2_1 = fieldSet_2.next()) {\n var compositeField = fieldSet_2_1.value;\n updatedElement[compositeField] =\n originalElement[compositeField];\n }\n }\n catch (e_6_1) { e_6 = { error: e_6_1 }; }\n finally {\n try {\n if (fieldSet_2_1 && !fieldSet_2_1.done && (_e = fieldSet_2.return)) _e.call(fieldSet_2);\n }\n finally { if (e_6) throw e_6.error; }\n }\n }\n }\n }\n catch (e_5_1) { e_5 = { error: e_5_1 }; }\n finally {\n try {\n if (compositeKeys_2_1 && !compositeKeys_2_1.done && (_d = compositeKeys_2.return)) _d.call(compositeKeys_2);\n }\n finally { if (e_5) throw e_5.error; }\n }\n }\n }\n });\n // Exit early when there are no changes introduced in the update mutation\n if (Object.keys(updatedElement).length === 0) {\n return null;\n }\n // include field(s) from custom PK if one is specified for the model\n if (primaryKey && primaryKey.length) {\n try {\n for (var primaryKey_1 = __values(primaryKey), primaryKey_1_1 = primaryKey_1.next(); !primaryKey_1_1.done; primaryKey_1_1 = primaryKey_1.next()) {\n var pkField = primaryKey_1_1.value;\n updatedElement[pkField] = originalElement[pkField];\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (primaryKey_1_1 && !primaryKey_1_1.done && (_a = primaryKey_1.return)) _a.call(primaryKey_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n }\n var id = originalElement.id, _version = originalElement._version, _lastChangedAt = originalElement._lastChangedAt, _deleted = originalElement._deleted;\n // For update mutations we only want to send fields with changes\n // and the required internal fields\n return __assign(__assign({}, updatedElement), { id: id,\n _version: _version,\n _lastChangedAt: _lastChangedAt,\n _deleted: _deleted });\n };\n return StorageClass;\n}());\nvar ExclusiveStorage = /** @class */ (function () {\n function ExclusiveStorage(schema, namespaceResolver, getModelConstructorByModelName, modelInstanceCreator, adapter, sessionId) {\n this.mutex = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Mutex\"]();\n this.storage = new StorageClass(schema, namespaceResolver, getModelConstructorByModelName, modelInstanceCreator, adapter, sessionId);\n }\n ExclusiveStorage.prototype.runExclusive = function (fn) {\n return this.mutex.runExclusive(fn.bind(this, this.storage));\n };\n ExclusiveStorage.prototype.save = function (model, condition, mutator, patchesTuple) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this.runExclusive(function (storage) {\n return storage.save(model, condition, mutator, patchesTuple);\n })];\n });\n });\n };\n ExclusiveStorage.prototype.delete = function (modelOrModelConstructor, condition, mutator) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this.runExclusive(function (storage) {\n if (Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"isModelConstructor\"])(modelOrModelConstructor)) {\n var modelConstructor = modelOrModelConstructor;\n return storage.delete(modelConstructor, condition, mutator);\n }\n else {\n var model = modelOrModelConstructor;\n return storage.delete(model, condition, mutator);\n }\n })];\n });\n });\n };\n ExclusiveStorage.prototype.query = function (modelConstructor, predicate, pagination) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this.runExclusive(function (storage) {\n return storage.query(modelConstructor, predicate, pagination);\n })];\n });\n });\n };\n ExclusiveStorage.prototype.queryOne = function (modelConstructor, firstOrLast) {\n if (firstOrLast === void 0) { firstOrLast = _types__WEBPACK_IMPORTED_MODULE_3__[\"QueryOne\"].FIRST; }\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this.runExclusive(function (storage) {\n return storage.queryOne(modelConstructor, firstOrLast);\n })];\n });\n });\n };\n ExclusiveStorage.getNamespace = function () {\n return StorageClass.getNamespace();\n };\n ExclusiveStorage.prototype.observe = function (modelConstructor, predicate, skipOwn) {\n return this.storage.observe(modelConstructor, predicate, skipOwn);\n };\n ExclusiveStorage.prototype.clear = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.runExclusive(function (storage) { return storage.clear(); })];\n case 1:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n ExclusiveStorage.prototype.batchSave = function (modelConstructor, items) {\n return this.storage.batchSave(modelConstructor, items);\n };\n ExclusiveStorage.prototype.init = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, this.storage.init()];\n });\n });\n };\n return ExclusiveStorage;\n}());\n\n//# sourceMappingURL=storage.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/storage/storage.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/datastoreConnectivity.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/datastoreConnectivity.js ***! \***********************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _datastoreReachability__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./datastoreReachability */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/datastoreReachability/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('DataStore');\nvar RECONNECTING_IN = 5000; // 5s this may be configurable in the future\nvar DataStoreConnectivity = /** @class */ (function () {\n function DataStoreConnectivity() {\n this.connectionStatus = {\n online: false,\n };\n }\n DataStoreConnectivity.prototype.status = function () {\n var _this = this;\n if (this.observer) {\n throw new Error('Subscriber already exists');\n }\n return new zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__[\"default\"](function (observer) {\n _this.observer = observer;\n // Will be used to forward socket connection changes, enhancing Reachability\n _this.subscription = _datastoreReachability__WEBPACK_IMPORTED_MODULE_2__[\"ReachabilityMonitor\"].subscribe(function (_a) {\n var online = _a.online;\n _this.connectionStatus.online = online;\n var observerResult = __assign({}, _this.connectionStatus); // copyOf status\n observer.next(observerResult);\n });\n return function () {\n clearTimeout(_this.timeout);\n _this.unsubscribe();\n };\n });\n };\n DataStoreConnectivity.prototype.unsubscribe = function () {\n if (this.subscription) {\n clearTimeout(this.timeout);\n this.subscription.unsubscribe();\n }\n };\n // for consistency with other background processors.\n DataStoreConnectivity.prototype.stop = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n this.unsubscribe();\n return [2 /*return*/];\n });\n });\n };\n DataStoreConnectivity.prototype.socketDisconnected = function () {\n var _this = this;\n if (this.observer && typeof this.observer.next === 'function') {\n this.observer.next({ online: false }); // Notify network issue from the socket\n this.timeout = setTimeout(function () {\n var observerResult = __assign({}, _this.connectionStatus); // copyOf status\n _this.observer.next(observerResult);\n }, RECONNECTING_IN); // giving time for socket cleanup and network status stabilization\n }\n };\n return DataStoreConnectivity;\n}());\n/* harmony default export */ __webpack_exports__[\"default\"] = (DataStoreConnectivity);\n//# sourceMappingURL=datastoreConnectivity.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/datastoreConnectivity.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/datastoreReachability/index.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/datastoreReachability/index.js ***! \*****************************************************************************************/ /*! exports provided: ReachabilityMonitor */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReachabilityMonitor\", function() { return ReachabilityMonitor; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n\nvar ReachabilityMonitor = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Reachability\"]().networkMonitor();\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/datastoreReachability/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/index.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/index.js ***! \*******************************************************************/ /*! exports provided: ControlMessage, SyncEngine */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ControlMessage\", function() { return ControlMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SyncEngine\", function() { return SyncEngine; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/pubsub */ \"./node_modules/@aws-amplify/pubsub/lib-esm/index.js\");\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../predicates */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _datastoreConnectivity__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./datastoreConnectivity */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/datastoreConnectivity.js\");\n/* harmony import */ var _merger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./merger */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/merger.js\");\n/* harmony import */ var _outbox__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./outbox */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/outbox.js\");\n/* harmony import */ var _processors_mutation__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./processors/mutation */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/mutation.js\");\n/* harmony import */ var _processors_subscription__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./processors/subscription */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/subscription.js\");\n/* harmony import */ var _processors_sync__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./processors/sync */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/sync.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar isNode = Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"browserOrNode\"])().isNode;\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('DataStore');\nvar ownSymbol = Symbol('sync');\nvar ControlMessage;\n(function (ControlMessage) {\n ControlMessage[\"SYNC_ENGINE_STORAGE_SUBSCRIBED\"] = \"storageSubscribed\";\n ControlMessage[\"SYNC_ENGINE_SUBSCRIPTIONS_ESTABLISHED\"] = \"subscriptionsEstablished\";\n ControlMessage[\"SYNC_ENGINE_SYNC_QUERIES_STARTED\"] = \"syncQueriesStarted\";\n ControlMessage[\"SYNC_ENGINE_SYNC_QUERIES_READY\"] = \"syncQueriesReady\";\n ControlMessage[\"SYNC_ENGINE_MODEL_SYNCED\"] = \"modelSynced\";\n ControlMessage[\"SYNC_ENGINE_OUTBOX_MUTATION_ENQUEUED\"] = \"outboxMutationEnqueued\";\n ControlMessage[\"SYNC_ENGINE_OUTBOX_MUTATION_PROCESSED\"] = \"outboxMutationProcessed\";\n ControlMessage[\"SYNC_ENGINE_OUTBOX_STATUS\"] = \"outboxStatus\";\n ControlMessage[\"SYNC_ENGINE_NETWORK_STATUS\"] = \"networkStatus\";\n ControlMessage[\"SYNC_ENGINE_READY\"] = \"ready\";\n})(ControlMessage || (ControlMessage = {}));\nvar SyncEngine = /** @class */ (function () {\n function SyncEngine(schema, namespaceResolver, modelClasses, userModelClasses, storage, modelInstanceCreator, conflictHandler, errorHandler, syncPredicates, amplifyConfig, authModeStrategy, amplifyContext, connectivityMonitor) {\n if (amplifyConfig === void 0) { amplifyConfig = {}; }\n this.schema = schema;\n this.namespaceResolver = namespaceResolver;\n this.modelClasses = modelClasses;\n this.userModelClasses = userModelClasses;\n this.storage = storage;\n this.modelInstanceCreator = modelInstanceCreator;\n this.syncPredicates = syncPredicates;\n this.amplifyConfig = amplifyConfig;\n this.authModeStrategy = authModeStrategy;\n this.amplifyContext = amplifyContext;\n this.connectivityMonitor = connectivityMonitor;\n this.online = false;\n this.modelSyncedStatus = new WeakMap();\n this.runningProcesses = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"BackgroundProcessManager\"]();\n var MutationEvent = this.modelClasses['MutationEvent'];\n this.outbox = new _outbox__WEBPACK_IMPORTED_MODULE_8__[\"MutationEventOutbox\"](this.schema, MutationEvent, modelInstanceCreator, ownSymbol);\n this.modelMerger = new _merger__WEBPACK_IMPORTED_MODULE_7__[\"ModelMerger\"](this.outbox, ownSymbol);\n this.syncQueriesProcessor = new _processors_sync__WEBPACK_IMPORTED_MODULE_11__[\"SyncProcessor\"](this.schema, this.syncPredicates, this.amplifyConfig, this.authModeStrategy, errorHandler, this.amplifyContext);\n this.subscriptionsProcessor = new _processors_subscription__WEBPACK_IMPORTED_MODULE_10__[\"SubscriptionProcessor\"](this.schema, this.syncPredicates, this.amplifyConfig, this.authModeStrategy, errorHandler, this.amplifyContext);\n this.mutationsProcessor = new _processors_mutation__WEBPACK_IMPORTED_MODULE_9__[\"MutationProcessor\"](this.schema, this.storage, this.userModelClasses, this.outbox, this.modelInstanceCreator, MutationEvent, this.amplifyConfig, this.authModeStrategy, errorHandler, conflictHandler, this.amplifyContext);\n this.datastoreConnectivity =\n this.connectivityMonitor || new _datastoreConnectivity__WEBPACK_IMPORTED_MODULE_6__[\"default\"]();\n }\n SyncEngine.prototype.getModelSyncedStatus = function (modelConstructor) {\n return this.modelSyncedStatus.get(modelConstructor);\n };\n SyncEngine.prototype.start = function (params) {\n var _this = this;\n return new zen_observable_ts__WEBPACK_IMPORTED_MODULE_2__[\"default\"](function (observer) {\n logger.log('starting sync engine...');\n var subscriptions = [];\n _this.runningProcesses.add(function () { return __awaiter(_this, void 0, void 0, function () {\n var err_1, startPromise, hasMutationsInOutbox;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.setupModels(params)];\n case 1:\n _a.sent();\n return [3 /*break*/, 3];\n case 2:\n err_1 = _a.sent();\n observer.error(err_1);\n return [2 /*return*/];\n case 3:\n startPromise = new Promise(function (doneStarting, failedStarting) {\n _this.datastoreConnectivity.status().subscribe(function (_a) {\n var online = _a.online;\n return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_b) {\n return [2 /*return*/, this.runningProcesses.isOpen &&\n this.runningProcesses.add(function (onTerminate) { return __awaiter(_this, void 0, void 0, function () {\n var ctlSubsObservable_1, dataSubsObservable, err_2, error_1;\n var _a;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!(online && !this.online)) return [3 /*break*/, 10];\n this.online = online;\n observer.next({\n type: ControlMessage.SYNC_ENGINE_NETWORK_STATUS,\n data: {\n active: this.online,\n },\n });\n dataSubsObservable = void 0;\n if (!isNode) return [3 /*break*/, 1];\n logger.warn('Realtime disabled when in a server-side environment');\n return [3 /*break*/, 6];\n case 1:\n //#region GraphQL Subscriptions\n _a = __read(this.subscriptionsProcessor.start(), 2), \n // const ctlObservable: Observable\n ctlSubsObservable_1 = _a[0], \n // const dataObservable: Observable<[TransformerMutationType, SchemaModel, Readonly<{\n // id: string;\n // } & Record>]>\n dataSubsObservable = _a[1];\n _b.label = 2;\n case 2:\n _b.trys.push([2, 4, , 5]);\n return [4 /*yield*/, new Promise(function (resolve, reject) {\n onTerminate.then(reject);\n var ctlSubsSubscription = ctlSubsObservable_1.subscribe({\n next: function (msg) {\n if (msg === _processors_subscription__WEBPACK_IMPORTED_MODULE_10__[\"CONTROL_MSG\"].CONNECTED) {\n resolve();\n }\n },\n error: function (err) {\n reject(err);\n var handleDisconnect = _this.disconnectionHandler();\n handleDisconnect(err);\n },\n });\n subscriptions.push(ctlSubsSubscription);\n })];\n case 3:\n _b.sent();\n return [3 /*break*/, 5];\n case 4:\n err_2 = _b.sent();\n observer.error(err_2);\n failedStarting();\n return [2 /*return*/];\n case 5:\n logger.log('Realtime ready');\n observer.next({\n type: ControlMessage.SYNC_ENGINE_SUBSCRIPTIONS_ESTABLISHED,\n });\n _b.label = 6;\n case 6:\n _b.trys.push([6, 8, , 9]);\n return [4 /*yield*/, new Promise(function (resolve, reject) {\n var syncQuerySubscription = _this.syncQueriesObservable().subscribe({\n next: function (message) {\n var type = message.type;\n if (type ===\n ControlMessage.SYNC_ENGINE_SYNC_QUERIES_READY) {\n resolve();\n }\n observer.next(message);\n },\n complete: function () {\n resolve();\n },\n error: function (error) {\n reject(error);\n },\n });\n if (syncQuerySubscription) {\n subscriptions.push(syncQuerySubscription);\n }\n })];\n case 7:\n _b.sent();\n return [3 /*break*/, 9];\n case 8:\n error_1 = _b.sent();\n observer.error(error_1);\n failedStarting();\n return [2 /*return*/];\n case 9:\n //#endregion\n //#region process mutations (outbox)\n subscriptions.push(this.mutationsProcessor\n .start()\n .subscribe(function (_a) {\n var modelDefinition = _a.modelDefinition, item = _a.model, hasMore = _a.hasMore;\n return _this.runningProcesses.add(function () { return __awaiter(_this, void 0, void 0, function () {\n var modelConstructor, model;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n modelConstructor = this.userModelClasses[modelDefinition.name];\n model = this.modelInstanceCreator(modelConstructor, item);\n return [4 /*yield*/, this.storage.runExclusive(function (storage) {\n return _this.modelMerger.merge(storage, model, modelDefinition);\n })];\n case 1:\n _a.sent();\n observer.next({\n type: ControlMessage.SYNC_ENGINE_OUTBOX_MUTATION_PROCESSED,\n data: {\n model: modelConstructor,\n element: model,\n },\n });\n observer.next({\n type: ControlMessage.SYNC_ENGINE_OUTBOX_STATUS,\n data: {\n isEmpty: !hasMore,\n },\n });\n return [2 /*return*/];\n }\n });\n }); }, 'mutation processor event');\n }));\n //#endregion\n //#region Merge subscriptions buffer\n // TODO: extract to function\n if (!isNode) {\n subscriptions.push(dataSubsObservable.subscribe(function (_a) {\n var _b = __read(_a, 3), _transformerMutationType = _b[0], modelDefinition = _b[1], item = _b[2];\n return _this.runningProcesses.add(function () { return __awaiter(_this, void 0, void 0, function () {\n var modelConstructor, model;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n modelConstructor = this.userModelClasses[modelDefinition.name];\n model = this.modelInstanceCreator(modelConstructor, item);\n return [4 /*yield*/, this.storage.runExclusive(function (storage) {\n return _this.modelMerger.merge(storage, model, modelDefinition);\n })];\n case 1:\n _a.sent();\n return [2 /*return*/];\n }\n });\n }); }, 'subscription dataSubsObservable event');\n }));\n }\n return [3 /*break*/, 11];\n case 10:\n if (!online) {\n this.online = online;\n observer.next({\n type: ControlMessage.SYNC_ENGINE_NETWORK_STATUS,\n data: {\n active: this.online,\n },\n });\n subscriptions.forEach(function (sub) { return sub.unsubscribe(); });\n subscriptions = [];\n }\n _b.label = 11;\n case 11:\n doneStarting();\n return [2 /*return*/];\n }\n });\n }); }, 'datastore connectivity event')];\n });\n });\n });\n });\n this.storage\n .observe(null, null, ownSymbol)\n .filter(function (_a) {\n var model = _a.model;\n var modelDefinition = _this.getModelDefinition(model);\n return modelDefinition.syncable === true;\n })\n .subscribe({\n next: function (_a) {\n var opType = _a.opType, model = _a.model, element = _a.element, condition = _a.condition;\n return __awaiter(_this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_b) {\n return [2 /*return*/, this.runningProcesses.add(function () { return __awaiter(_this, void 0, void 0, function () {\n var namespace, MutationEventConstructor, modelDefinition, graphQLCondition, mutationEvent;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n namespace = this.schema.namespaces[this.namespaceResolver(model)];\n MutationEventConstructor = this.modelClasses['MutationEvent'];\n modelDefinition = this.getModelDefinition(model);\n graphQLCondition = Object(_utils__WEBPACK_IMPORTED_MODULE_12__[\"predicateToGraphQLCondition\"])(condition, modelDefinition);\n mutationEvent = Object(_utils__WEBPACK_IMPORTED_MODULE_12__[\"createMutationInstanceFromModelOperation\"])(namespace.relationships, this.getModelDefinition(model), opType, model, element, graphQLCondition, MutationEventConstructor, this.modelInstanceCreator);\n return [4 /*yield*/, this.outbox.enqueue(this.storage, mutationEvent)];\n case 1:\n _a.sent();\n observer.next({\n type: ControlMessage.SYNC_ENGINE_OUTBOX_MUTATION_ENQUEUED,\n data: {\n model: model,\n element: element,\n },\n });\n observer.next({\n type: ControlMessage.SYNC_ENGINE_OUTBOX_STATUS,\n data: {\n isEmpty: false,\n },\n });\n return [4 /*yield*/, startPromise];\n case 2:\n _a.sent();\n if (this.online) {\n this.mutationsProcessor.resume();\n }\n return [2 /*return*/];\n }\n });\n }); }, 'storage event')];\n });\n });\n },\n });\n observer.next({\n type: ControlMessage.SYNC_ENGINE_STORAGE_SUBSCRIBED,\n });\n return [4 /*yield*/, this.outbox.peek(this.storage)];\n case 4:\n hasMutationsInOutbox = (_a.sent()) === undefined;\n observer.next({\n type: ControlMessage.SYNC_ENGINE_OUTBOX_STATUS,\n data: {\n isEmpty: hasMutationsInOutbox,\n },\n });\n return [4 /*yield*/, startPromise];\n case 5:\n _a.sent();\n observer.next({\n type: ControlMessage.SYNC_ENGINE_READY,\n });\n return [2 /*return*/];\n }\n });\n }); }, 'sync start');\n });\n };\n SyncEngine.prototype.getModelsMetadataWithNextFullSync = function (currentTimeStamp) {\n return __awaiter(this, void 0, void 0, function () {\n var modelLastSync, _a;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = Map.bind;\n return [4 /*yield*/, this.runningProcesses.add(function () { return _this.getModelsMetadata(); }, 'sync/index getModelsMetadataWithNextFullSync')];\n case 1:\n modelLastSync = new (_a.apply(Map, [void 0, (_b.sent()).map(function (_a) {\n var namespace = _a.namespace, model = _a.model, lastSync = _a.lastSync, lastFullSync = _a.lastFullSync, fullSyncInterval = _a.fullSyncInterval, lastSyncPredicate = _a.lastSyncPredicate;\n var nextFullSync = lastFullSync + fullSyncInterval;\n var syncFrom = !lastFullSync || nextFullSync < currentTimeStamp\n ? 0 // perform full sync if expired\n : lastSync; // perform delta sync\n return [\n _this.schema.namespaces[namespace].models[model],\n [namespace, syncFrom],\n ];\n })]))();\n return [2 /*return*/, modelLastSync];\n }\n });\n });\n };\n SyncEngine.prototype.syncQueriesObservable = function () {\n var _this = this;\n if (!this.online) {\n return zen_observable_ts__WEBPACK_IMPORTED_MODULE_2__[\"default\"].of();\n }\n return new zen_observable_ts__WEBPACK_IMPORTED_MODULE_2__[\"default\"](function (observer) {\n var syncQueriesSubscription;\n _this.runningProcesses.isOpen &&\n _this.runningProcesses.add(function (onTerminate) { return __awaiter(_this, void 0, void 0, function () {\n var terminated, _loop_1, this_1;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n terminated = false;\n _loop_1 = function () {\n var count, modelLastSync, paginatingModels, newestFullSyncStartedAt, theInterval, start, duration, newestStartedAt, msNextFullSync;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n count = new WeakMap();\n return [4 /*yield*/, this_1.getModelsMetadataWithNextFullSync(Date.now())];\n case 1:\n modelLastSync = _a.sent();\n paginatingModels = new Set(modelLastSync.keys());\n return [4 /*yield*/, new Promise(function (resolve, reject) {\n if (!_this.runningProcesses.isOpen)\n resolve();\n onTerminate.then(function () { return resolve(); });\n syncQueriesSubscription = _this.syncQueriesProcessor\n .start(modelLastSync)\n .subscribe({\n next: function (_a) {\n var namespace = _a.namespace, modelDefinition = _a.modelDefinition, items = _a.items, done = _a.done, startedAt = _a.startedAt, isFullSync = _a.isFullSync;\n return __awaiter(_this, void 0, void 0, function () {\n var modelConstructor, modelName, modelMetadata_1, lastFullSync, fullSyncInterval, counts;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n modelConstructor = this.userModelClasses[modelDefinition.name];\n if (!count.has(modelConstructor)) {\n count.set(modelConstructor, {\n new: 0,\n updated: 0,\n deleted: 0,\n });\n start = Object(_util__WEBPACK_IMPORTED_MODULE_5__[\"getNow\"])();\n newestStartedAt =\n newestStartedAt === undefined\n ? startedAt\n : Math.max(newestStartedAt, startedAt);\n }\n /**\n * If there are mutations in the outbox for a given id, those need to be\n * merged individually. Otherwise, we can merge them in batches.\n */\n return [4 /*yield*/, this.storage.runExclusive(function (storage) { return __awaiter(_this, void 0, void 0, function () {\n var idsInOutbox, oneByOne, page, opTypeCount, oneByOne_1, oneByOne_1_1, item, opType, e_1_1, _a, _b, _c, counts;\n var e_1, _d;\n return __generator(this, function (_e) {\n switch (_e.label) {\n case 0: return [4 /*yield*/, this.outbox.getModelIds(storage)];\n case 1:\n idsInOutbox = _e.sent();\n oneByOne = [];\n page = items.filter(function (item) {\n var itemId = Object(_utils__WEBPACK_IMPORTED_MODULE_12__[\"getIdentifierValue\"])(modelDefinition, item);\n if (!idsInOutbox.has(itemId)) {\n return true;\n }\n oneByOne.push(item);\n return false;\n });\n opTypeCount = [];\n _e.label = 2;\n case 2:\n _e.trys.push([2, 7, 8, 9]);\n oneByOne_1 = __values(oneByOne), oneByOne_1_1 = oneByOne_1.next();\n _e.label = 3;\n case 3:\n if (!!oneByOne_1_1.done) return [3 /*break*/, 6];\n item = oneByOne_1_1.value;\n return [4 /*yield*/, this.modelMerger.merge(storage, item, modelDefinition)];\n case 4:\n opType = _e.sent();\n if (opType !== undefined) {\n opTypeCount.push([item, opType]);\n }\n _e.label = 5;\n case 5:\n oneByOne_1_1 = oneByOne_1.next();\n return [3 /*break*/, 3];\n case 6: return [3 /*break*/, 9];\n case 7:\n e_1_1 = _e.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 9];\n case 8:\n try {\n if (oneByOne_1_1 && !oneByOne_1_1.done && (_d = oneByOne_1.return)) _d.call(oneByOne_1);\n }\n finally { if (e_1) throw e_1.error; }\n return [7 /*endfinally*/];\n case 9:\n _b = (_a = opTypeCount.push).apply;\n _c = [opTypeCount];\n return [4 /*yield*/, this.modelMerger.mergePage(storage, modelConstructor, page, modelDefinition)];\n case 10:\n _b.apply(_a, _c.concat([__spread.apply(void 0, [(_e.sent())])]));\n counts = count.get(modelConstructor);\n opTypeCount.forEach(function (_a) {\n var _b = __read(_a, 2), opType = _b[1];\n switch (opType) {\n case _types__WEBPACK_IMPORTED_MODULE_4__[\"OpType\"].INSERT:\n counts.new++;\n break;\n case _types__WEBPACK_IMPORTED_MODULE_4__[\"OpType\"].UPDATE:\n counts.updated++;\n break;\n case _types__WEBPACK_IMPORTED_MODULE_4__[\"OpType\"].DELETE:\n counts.deleted++;\n break;\n default:\n Object(_util__WEBPACK_IMPORTED_MODULE_5__[\"exhaustiveCheck\"])(opType);\n }\n });\n return [2 /*return*/];\n }\n });\n }); })];\n case 1:\n /**\n * If there are mutations in the outbox for a given id, those need to be\n * merged individually. Otherwise, we can merge them in batches.\n */\n _b.sent();\n if (!done) return [3 /*break*/, 4];\n modelName = modelDefinition.name;\n return [4 /*yield*/, this.getModelMetadata(namespace, modelName)];\n case 2:\n modelMetadata_1 = _b.sent();\n lastFullSync = modelMetadata_1.lastFullSync, fullSyncInterval = modelMetadata_1.fullSyncInterval;\n theInterval = fullSyncInterval;\n newestFullSyncStartedAt =\n newestFullSyncStartedAt === undefined\n ? lastFullSync\n : Math.max(newestFullSyncStartedAt, isFullSync ? startedAt : lastFullSync);\n modelMetadata_1 = this.modelClasses\n .ModelMetadata.copyOf(modelMetadata_1, function (draft) {\n draft.lastSync = startedAt;\n draft.lastFullSync = isFullSync\n ? startedAt\n : modelMetadata_1.lastFullSync;\n });\n return [4 /*yield*/, this.storage.save(modelMetadata_1, undefined, ownSymbol)];\n case 3:\n _b.sent();\n counts = count.get(modelConstructor);\n this.modelSyncedStatus.set(modelConstructor, true);\n observer.next({\n type: ControlMessage.SYNC_ENGINE_MODEL_SYNCED,\n data: {\n model: modelConstructor,\n isFullSync: isFullSync,\n isDeltaSync: !isFullSync,\n counts: counts,\n },\n });\n paginatingModels.delete(modelDefinition);\n if (paginatingModels.size === 0) {\n duration = Object(_util__WEBPACK_IMPORTED_MODULE_5__[\"getNow\"])() - start;\n resolve();\n observer.next({\n type: ControlMessage.SYNC_ENGINE_SYNC_QUERIES_READY,\n });\n syncQueriesSubscription.unsubscribe();\n }\n _b.label = 4;\n case 4: return [2 /*return*/];\n }\n });\n });\n },\n error: function (error) {\n observer.error(error);\n },\n });\n observer.next({\n type: ControlMessage.SYNC_ENGINE_SYNC_QUERIES_STARTED,\n data: {\n models: Array.from(paginatingModels).map(function (_a) {\n var name = _a.name;\n return name;\n }),\n },\n });\n })];\n case 2:\n _a.sent();\n msNextFullSync = newestFullSyncStartedAt +\n theInterval -\n (newestStartedAt + duration);\n logger.debug(\"Next fullSync in \" + msNextFullSync / 1000 + \" seconds. (\" + new Date(Date.now() + msNextFullSync) + \")\");\n // TODO: create `BackgroundProcessManager.sleep()` ... but, need to put\n // a lot of thought into what that contract looks like to\n // support possible use-cases:\n //\n // 1. non-cancelable\n // 2. cancelable, unsleep on exit()\n // 3. cancelable, throw Error on exit()\n // 4. cancelable, callback first on exit()?\n // 5. ... etc. ? ...\n //\n // TLDR; this is a lot of complexity here for a sleep(),\n // but, it's not clear to me yet how to support an\n // extensible, centralized cancelable `sleep()` elegantly.\n return [4 /*yield*/, this_1.runningProcesses.add(function (onTerminate) { return __awaiter(_this, void 0, void 0, function () {\n var sleepTimer, unsleep, sleep;\n return __generator(this, function (_a) {\n sleep = new Promise(function (_unsleep) {\n unsleep = _unsleep;\n sleepTimer = setTimeout(unsleep, msNextFullSync);\n });\n onTerminate.then(function () {\n terminated = true;\n unsleep();\n });\n return [2 /*return*/, sleep];\n });\n }); }, 'syncQueriesObservable sleep')];\n case 3:\n // TODO: create `BackgroundProcessManager.sleep()` ... but, need to put\n // a lot of thought into what that contract looks like to\n // support possible use-cases:\n //\n // 1. non-cancelable\n // 2. cancelable, unsleep on exit()\n // 3. cancelable, throw Error on exit()\n // 4. cancelable, callback first on exit()?\n // 5. ... etc. ? ...\n //\n // TLDR; this is a lot of complexity here for a sleep(),\n // but, it's not clear to me yet how to support an\n // extensible, centralized cancelable `sleep()` elegantly.\n _a.sent();\n return [2 /*return*/];\n }\n });\n };\n this_1 = this;\n _a.label = 1;\n case 1:\n if (!(!observer.closed && !terminated)) return [3 /*break*/, 3];\n return [5 /*yield**/, _loop_1()];\n case 2:\n _a.sent();\n return [3 /*break*/, 1];\n case 3: return [2 /*return*/];\n }\n });\n }); }, 'syncQueriesObservable main');\n });\n };\n SyncEngine.prototype.disconnectionHandler = function () {\n var _this = this;\n return function (msg) {\n // This implementation is tied to AWSAppSyncRealTimeProvider 'Connection closed', 'Timeout disconnect' msg\n if (_aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_1__[\"CONTROL_MSG\"].CONNECTION_CLOSED === msg ||\n _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_1__[\"CONTROL_MSG\"].TIMEOUT_DISCONNECT === msg) {\n _this.datastoreConnectivity.socketDisconnected();\n }\n };\n };\n SyncEngine.prototype.unsubscribeConnectivity = function () {\n this.datastoreConnectivity.unsubscribe();\n };\n /**\n * Stops all subscription activities and resolves when all activies report\n * that they're disconnected, done retrying, etc..\n */\n SyncEngine.prototype.stop = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('stopping sync engine');\n /**\n * Gracefully disconnecting subscribers first just prevents *more* work\n * from entering the pipelines.\n */\n this.unsubscribeConnectivity();\n /**\n * aggressively shut down any lingering background processes.\n * some of this might be semi-redundant with unsubscribing. however,\n * unsubscribing doesn't allow us to wait for settling.\n * (Whereas `stop()` does.)\n */\n return [4 /*yield*/, this.mutationsProcessor.stop()];\n case 1:\n /**\n * aggressively shut down any lingering background processes.\n * some of this might be semi-redundant with unsubscribing. however,\n * unsubscribing doesn't allow us to wait for settling.\n * (Whereas `stop()` does.)\n */\n _a.sent();\n return [4 /*yield*/, this.subscriptionsProcessor.stop()];\n case 2:\n _a.sent();\n return [4 /*yield*/, this.datastoreConnectivity.stop()];\n case 3:\n _a.sent();\n return [4 /*yield*/, this.syncQueriesProcessor.stop()];\n case 4:\n _a.sent();\n return [4 /*yield*/, this.runningProcesses.close()];\n case 5:\n _a.sent();\n return [4 /*yield*/, this.runningProcesses.open()];\n case 6:\n _a.sent();\n logger.debug('sync engine stopped and ready to restart');\n return [2 /*return*/];\n }\n });\n });\n };\n SyncEngine.prototype.setupModels = function (params) {\n return __awaiter(this, void 0, void 0, function () {\n var fullSyncInterval, ModelMetadataConstructor, models, savedModel, promises, result, _a, _b, modelMetadata, modelName, e_2_1;\n var e_2, _c;\n var _this = this;\n return __generator(this, function (_d) {\n switch (_d.label) {\n case 0:\n fullSyncInterval = params.fullSyncInterval;\n ModelMetadataConstructor = this.modelClasses\n .ModelMetadata;\n models = [];\n Object.values(this.schema.namespaces).forEach(function (namespace) {\n Object.values(namespace.models)\n .filter(function (_a) {\n var syncable = _a.syncable;\n return syncable;\n })\n .forEach(function (model) {\n models.push([namespace.name, model]);\n if (namespace.name === _util__WEBPACK_IMPORTED_MODULE_5__[\"USER\"]) {\n var modelConstructor = _this.userModelClasses[model.name];\n _this.modelSyncedStatus.set(modelConstructor, false);\n }\n });\n });\n promises = models.map(function (_a) {\n var _b = __read(_a, 2), namespace = _b[0], model = _b[1];\n return __awaiter(_this, void 0, void 0, function () {\n var modelMetadata, syncPredicate, lastSyncPredicate, prevSyncPredicate, syncPredicateUpdated_1;\n var _c, _d, _e, _f;\n return __generator(this, function (_g) {\n switch (_g.label) {\n case 0: return [4 /*yield*/, this.getModelMetadata(namespace, model.name)];\n case 1:\n modelMetadata = _g.sent();\n syncPredicate = _predicates__WEBPACK_IMPORTED_MODULE_3__[\"ModelPredicateCreator\"].getPredicates(this.syncPredicates.get(model), false);\n lastSyncPredicate = syncPredicate\n ? JSON.stringify(syncPredicate)\n : null;\n if (!(modelMetadata === undefined)) return [3 /*break*/, 3];\n return [4 /*yield*/, this.storage.save(this.modelInstanceCreator(ModelMetadataConstructor, {\n model: model.name,\n namespace: namespace,\n lastSync: null,\n fullSyncInterval: fullSyncInterval,\n lastFullSync: null,\n lastSyncPredicate: lastSyncPredicate,\n }), undefined, ownSymbol)];\n case 2:\n _c = __read.apply(void 0, [_g.sent(), 1]), _d = __read(_c[0], 1), savedModel = _d[0];\n return [3 /*break*/, 5];\n case 3:\n prevSyncPredicate = modelMetadata.lastSyncPredicate\n ? modelMetadata.lastSyncPredicate\n : null;\n syncPredicateUpdated_1 = prevSyncPredicate !== lastSyncPredicate;\n return [4 /*yield*/, this.storage.save(ModelMetadataConstructor.copyOf(modelMetadata, function (draft) {\n draft.fullSyncInterval = fullSyncInterval;\n // perform a base sync if the syncPredicate changed in between calls to DataStore.start\n // ensures that the local store contains all the data specified by the syncExpression\n if (syncPredicateUpdated_1) {\n draft.lastSync = null;\n draft.lastFullSync = null;\n draft.lastSyncPredicate = lastSyncPredicate;\n }\n }))];\n case 4:\n _e = __read.apply(void 0, [_g.sent(), 1]), _f = __read(_e[0], 1), savedModel = _f[0];\n _g.label = 5;\n case 5: return [2 /*return*/, savedModel];\n }\n });\n });\n });\n result = {};\n _d.label = 1;\n case 1:\n _d.trys.push([1, 6, 7, 8]);\n return [4 /*yield*/, Promise.all(promises)];\n case 2:\n _a = __values.apply(void 0, [_d.sent()]), _b = _a.next();\n _d.label = 3;\n case 3:\n if (!!_b.done) return [3 /*break*/, 5];\n modelMetadata = _b.value;\n modelName = modelMetadata.model;\n result[modelName] = modelMetadata;\n _d.label = 4;\n case 4:\n _b = _a.next();\n return [3 /*break*/, 3];\n case 5: return [3 /*break*/, 8];\n case 6:\n e_2_1 = _d.sent();\n e_2 = { error: e_2_1 };\n return [3 /*break*/, 8];\n case 7:\n try {\n if (_b && !_b.done && (_c = _a.return)) _c.call(_a);\n }\n finally { if (e_2) throw e_2.error; }\n return [7 /*endfinally*/];\n case 8: return [2 /*return*/, result];\n }\n });\n });\n };\n SyncEngine.prototype.getModelsMetadata = function () {\n return __awaiter(this, void 0, void 0, function () {\n var ModelMetadata, modelsMetadata;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n ModelMetadata = this.modelClasses\n .ModelMetadata;\n return [4 /*yield*/, this.storage.query(ModelMetadata)];\n case 1:\n modelsMetadata = _a.sent();\n return [2 /*return*/, modelsMetadata];\n }\n });\n });\n };\n SyncEngine.prototype.getModelMetadata = function (namespace, model) {\n return __awaiter(this, void 0, void 0, function () {\n var ModelMetadata, predicate, _a, modelMetadata;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n ModelMetadata = this.modelClasses\n .ModelMetadata;\n predicate = _predicates__WEBPACK_IMPORTED_MODULE_3__[\"ModelPredicateCreator\"].createFromExisting(this.schema.namespaces[_util__WEBPACK_IMPORTED_MODULE_5__[\"SYNC\"]].models[ModelMetadata.name], function (c) { return c.namespace('eq', namespace).model('eq', model); });\n return [4 /*yield*/, this.storage.query(ModelMetadata, predicate, {\n page: 0,\n limit: 1,\n })];\n case 1:\n _a = __read.apply(void 0, [_b.sent(), 1]), modelMetadata = _a[0];\n return [2 /*return*/, modelMetadata];\n }\n });\n });\n };\n SyncEngine.prototype.getModelDefinition = function (modelConstructor) {\n var namespaceName = this.namespaceResolver(modelConstructor);\n var modelDefinition = this.schema.namespaces[namespaceName].models[modelConstructor.name];\n return modelDefinition;\n };\n SyncEngine.getNamespace = function () {\n var namespace = {\n name: _util__WEBPACK_IMPORTED_MODULE_5__[\"SYNC\"],\n relationships: {},\n enums: {\n OperationType: {\n name: 'OperationType',\n values: ['CREATE', 'UPDATE', 'DELETE'],\n },\n },\n nonModels: {},\n models: {\n MutationEvent: {\n name: 'MutationEvent',\n pluralName: 'MutationEvents',\n syncable: false,\n fields: {\n id: {\n name: 'id',\n type: 'ID',\n isRequired: true,\n isArray: false,\n },\n model: {\n name: 'model',\n type: 'String',\n isRequired: true,\n isArray: false,\n },\n data: {\n name: 'data',\n type: 'String',\n isRequired: true,\n isArray: false,\n },\n modelId: {\n name: 'modelId',\n type: 'String',\n isRequired: true,\n isArray: false,\n },\n operation: {\n name: 'operation',\n type: {\n enum: 'Operationtype',\n },\n isArray: false,\n isRequired: true,\n },\n condition: {\n name: 'condition',\n type: 'String',\n isArray: false,\n isRequired: true,\n },\n },\n },\n ModelMetadata: {\n name: 'ModelMetadata',\n pluralName: 'ModelsMetadata',\n syncable: false,\n fields: {\n id: {\n name: 'id',\n type: 'ID',\n isRequired: true,\n isArray: false,\n },\n namespace: {\n name: 'namespace',\n type: 'String',\n isRequired: true,\n isArray: false,\n },\n model: {\n name: 'model',\n type: 'String',\n isRequired: true,\n isArray: false,\n },\n lastSync: {\n name: 'lastSync',\n type: 'Int',\n isRequired: false,\n isArray: false,\n },\n lastFullSync: {\n name: 'lastFullSync',\n type: 'Int',\n isRequired: false,\n isArray: false,\n },\n fullSyncInterval: {\n name: 'fullSyncInterval',\n type: 'Int',\n isRequired: true,\n isArray: false,\n },\n lastSyncPredicate: {\n name: 'lastSyncPredicate',\n type: 'String',\n isRequired: false,\n isArray: false,\n },\n },\n },\n },\n };\n return namespace;\n };\n return SyncEngine;\n}());\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/merger.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/merger.js ***! \********************************************************************/ /*! exports provided: ModelMerger */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ModelMerger\", function() { return ModelMerger; });\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n// https://github.com/aws-amplify/amplify-js/blob/datastore-docs/packages/datastore/docs/sync-engine.md#merger\nvar ModelMerger = /** @class */ (function () {\n function ModelMerger(outbox, ownSymbol) {\n this.outbox = outbox;\n this.ownSymbol = ownSymbol;\n }\n /**\n *\n * @param storage Storage adapter that contains the data.\n * @param model The model from an outbox mutation.\n * @returns The type of operation (INSERT/UPDATE/DELETE)\n */\n ModelMerger.prototype.merge = function (storage, model, modelDefinition) {\n return __awaiter(this, void 0, void 0, function () {\n var result, mutationsForModel, isDelete;\n var _a, _b;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, this.outbox.getForModel(storage, model, modelDefinition)];\n case 1:\n mutationsForModel = _c.sent();\n isDelete = model._deleted;\n if (!(mutationsForModel.length === 0)) return [3 /*break*/, 5];\n if (!isDelete) return [3 /*break*/, 3];\n result = _types__WEBPACK_IMPORTED_MODULE_0__[\"OpType\"].DELETE;\n return [4 /*yield*/, storage.delete(model, undefined, this.ownSymbol)];\n case 2:\n _c.sent();\n return [3 /*break*/, 5];\n case 3: return [4 /*yield*/, storage.save(model, undefined, this.ownSymbol)];\n case 4:\n _a = __read.apply(void 0, [_c.sent(), 1]), _b = __read(_a[0], 2), result = _b[1];\n _c.label = 5;\n case 5: return [2 /*return*/, result];\n }\n });\n });\n };\n ModelMerger.prototype.mergePage = function (storage, modelConstructor, items, modelDefinition) {\n return __awaiter(this, void 0, void 0, function () {\n var itemsMap, items_1, items_1_1, item, modelId, page;\n var e_1, _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n itemsMap = new Map();\n try {\n for (items_1 = __values(items), items_1_1 = items_1.next(); !items_1_1.done; items_1_1 = items_1.next()) {\n item = items_1_1.value;\n modelId = Object(_utils__WEBPACK_IMPORTED_MODULE_1__[\"getIdentifierValue\"])(modelDefinition, item);\n itemsMap.set(modelId, item);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (items_1_1 && !items_1_1.done && (_a = items_1.return)) _a.call(items_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n page = __spread(itemsMap.values());\n return [4 /*yield*/, storage.batchSave(modelConstructor, page, this.ownSymbol)];\n case 1: return [2 /*return*/, _b.sent()];\n }\n });\n });\n };\n return ModelMerger;\n}());\n\n//# sourceMappingURL=merger.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/merger.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/outbox.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/outbox.js ***! \********************************************************************/ /*! exports provided: MutationEventOutbox */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MutationEventOutbox\", function() { return MutationEventOutbox; });\n/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../predicates */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n\n\n\n\n// TODO: Persist deleted ids\n// https://github.com/aws-amplify/amplify-js/blob/datastore-docs/packages/datastore/docs/sync-engine.md#outbox\nvar MutationEventOutbox = /** @class */ (function () {\n function MutationEventOutbox(schema, MutationEvent, modelInstanceCreator, ownSymbol) {\n this.schema = schema;\n this.MutationEvent = MutationEvent;\n this.modelInstanceCreator = modelInstanceCreator;\n this.ownSymbol = ownSymbol;\n }\n MutationEventOutbox.prototype.enqueue = function (storage, mutationEvent) {\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, storage.runExclusive(function (s) { return __awaiter(_this, void 0, void 0, function () {\n var mutationEventModelDefinition, predicate, _a, first, incomingMutationType, merged_1, incomingConditionJSON, incomingCondition, merged;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n mutationEventModelDefinition = this.schema.namespaces[_util__WEBPACK_IMPORTED_MODULE_2__[\"SYNC\"]].models['MutationEvent'];\n predicate = _predicates__WEBPACK_IMPORTED_MODULE_0__[\"ModelPredicateCreator\"].createFromExisting(mutationEventModelDefinition, function (c) {\n return c\n .modelId('eq', mutationEvent.modelId)\n .id('ne', _this.inProgressMutationEventId);\n });\n return [4 /*yield*/, s.query(this.MutationEvent, predicate)];\n case 1:\n _a = __read.apply(void 0, [_b.sent(), 1]), first = _a[0];\n if (!(first === undefined)) return [3 /*break*/, 3];\n return [4 /*yield*/, s.save(mutationEvent, undefined, this.ownSymbol)];\n case 2:\n _b.sent();\n return [2 /*return*/];\n case 3:\n incomingMutationType = mutationEvent.operation;\n if (!(first.operation === _utils__WEBPACK_IMPORTED_MODULE_3__[\"TransformerMutationType\"].CREATE)) return [3 /*break*/, 8];\n if (!(incomingMutationType === _utils__WEBPACK_IMPORTED_MODULE_3__[\"TransformerMutationType\"].DELETE)) return [3 /*break*/, 5];\n return [4 /*yield*/, s.delete(this.MutationEvent, predicate)];\n case 4:\n _b.sent();\n return [3 /*break*/, 7];\n case 5:\n merged_1 = this.mergeUserFields(first, mutationEvent);\n return [4 /*yield*/, s.save(this.MutationEvent.copyOf(first, function (draft) {\n draft.data = merged_1.data;\n }), undefined, this.ownSymbol)];\n case 6:\n _b.sent();\n _b.label = 7;\n case 7: return [3 /*break*/, 12];\n case 8:\n incomingConditionJSON = mutationEvent.condition;\n incomingCondition = JSON.parse(incomingConditionJSON);\n merged = void 0;\n if (!(Object.keys(incomingCondition).length === 0)) return [3 /*break*/, 10];\n merged = this.mergeUserFields(first, mutationEvent);\n // delete all for model\n return [4 /*yield*/, s.delete(this.MutationEvent, predicate)];\n case 9:\n // delete all for model\n _b.sent();\n _b.label = 10;\n case 10:\n merged = merged || mutationEvent;\n // Enqueue new one\n return [4 /*yield*/, s.save(merged, undefined, this.ownSymbol)];\n case 11:\n // Enqueue new one\n _b.sent();\n _b.label = 12;\n case 12: return [2 /*return*/];\n }\n });\n }); })];\n case 1:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n MutationEventOutbox.prototype.dequeue = function (storage, record, recordOp) {\n return __awaiter(this, void 0, void 0, function () {\n var head;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.peek(storage)];\n case 1:\n head = _a.sent();\n if (!record) return [3 /*break*/, 3];\n return [4 /*yield*/, this.syncOutboxVersionsOnDequeue(storage, record, head, recordOp)];\n case 2:\n _a.sent();\n _a.label = 3;\n case 3: return [4 /*yield*/, storage.delete(head)];\n case 4:\n _a.sent();\n this.inProgressMutationEventId = undefined;\n return [2 /*return*/, head];\n }\n });\n });\n };\n /**\n * Doing a peek() implies that the mutation goes \"inProgress\"\n *\n * @param storage\n */\n MutationEventOutbox.prototype.peek = function (storage) {\n return __awaiter(this, void 0, void 0, function () {\n var head;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, storage.queryOne(this.MutationEvent, _types__WEBPACK_IMPORTED_MODULE_1__[\"QueryOne\"].FIRST)];\n case 1:\n head = _a.sent();\n this.inProgressMutationEventId = head ? head.id : undefined;\n return [2 /*return*/, head];\n }\n });\n });\n };\n MutationEventOutbox.prototype.getForModel = function (storage, model, userModelDefinition) {\n return __awaiter(this, void 0, void 0, function () {\n var mutationEventModelDefinition, modelId, mutationEvents;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n mutationEventModelDefinition = this.schema.namespaces[_util__WEBPACK_IMPORTED_MODULE_2__[\"SYNC\"]].models.MutationEvent;\n modelId = Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"getIdentifierValue\"])(userModelDefinition, model);\n return [4 /*yield*/, storage.query(this.MutationEvent, _predicates__WEBPACK_IMPORTED_MODULE_0__[\"ModelPredicateCreator\"].createFromExisting(mutationEventModelDefinition, function (c) { return c.modelId('eq', modelId); }))];\n case 1:\n mutationEvents = _a.sent();\n return [2 /*return*/, mutationEvents];\n }\n });\n });\n };\n MutationEventOutbox.prototype.getModelIds = function (storage) {\n return __awaiter(this, void 0, void 0, function () {\n var mutationEvents, result;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, storage.query(this.MutationEvent)];\n case 1:\n mutationEvents = _a.sent();\n result = new Set();\n mutationEvents.forEach(function (_a) {\n var modelId = _a.modelId;\n return result.add(modelId);\n });\n return [2 /*return*/, result];\n }\n });\n });\n };\n // applies _version from the AppSync mutation response to other items\n // in the mutation queue with the same id\n // see https://github.com/aws-amplify/amplify-js/pull/7354 for more details\n MutationEventOutbox.prototype.syncOutboxVersionsOnDequeue = function (storage, record, head, recordOp) {\n return __awaiter(this, void 0, void 0, function () {\n var _version, _lastChangedAt, _deleted, _incomingData, incomingData, data, __version, __lastChangedAt, __deleted, _outgoingData, outgoingData, mutationEventModelDefinition, userModelDefinition, recordId, predicate, outdatedMutations, reconciledMutations;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (head.operation !== recordOp) {\n return [2 /*return*/];\n }\n _version = record._version, _lastChangedAt = record._lastChangedAt, _deleted = record._deleted, _incomingData = __rest(record, [\"_version\", \"_lastChangedAt\", \"_deleted\"]);\n incomingData = this.removeTimestampFields(head.model, _incomingData);\n data = JSON.parse(head.data);\n if (!data) {\n return [2 /*return*/];\n }\n __version = data._version, __lastChangedAt = data._lastChangedAt, __deleted = data._deleted, _outgoingData = __rest(data, [\"_version\", \"_lastChangedAt\", \"_deleted\"]);\n outgoingData = this.removeTimestampFields(head.model, _outgoingData);\n // Don't sync the version when the data in the response does not match the data\n // in the request, i.e., when there's a handled conflict\n if (!Object(_util__WEBPACK_IMPORTED_MODULE_2__[\"valuesEqual\"])(incomingData, outgoingData, true)) {\n return [2 /*return*/];\n }\n mutationEventModelDefinition = this.schema.namespaces[_util__WEBPACK_IMPORTED_MODULE_2__[\"SYNC\"]].models['MutationEvent'];\n userModelDefinition = this.schema.namespaces['user'].models[head.model];\n recordId = Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"getIdentifierValue\"])(userModelDefinition, record);\n predicate = _predicates__WEBPACK_IMPORTED_MODULE_0__[\"ModelPredicateCreator\"].createFromExisting(mutationEventModelDefinition, function (c) { return c.modelId('eq', recordId).id('ne', _this.inProgressMutationEventId); });\n return [4 /*yield*/, storage.query(this.MutationEvent, predicate)];\n case 1:\n outdatedMutations = _a.sent();\n if (!outdatedMutations.length) {\n return [2 /*return*/];\n }\n reconciledMutations = outdatedMutations.map(function (m) {\n var oldData = JSON.parse(m.data);\n var newData = __assign(__assign({}, oldData), { _version: _version, _lastChangedAt: _lastChangedAt });\n return _this.MutationEvent.copyOf(m, function (draft) {\n draft.data = JSON.stringify(newData);\n });\n });\n return [4 /*yield*/, storage.delete(this.MutationEvent, predicate)];\n case 2:\n _a.sent();\n return [4 /*yield*/, Promise.all(reconciledMutations.map(function (m) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, storage.save(m, undefined, this.ownSymbol)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); }))];\n case 3:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n MutationEventOutbox.prototype.mergeUserFields = function (previous, current) {\n var _a = JSON.parse(previous.data), _version = _a._version, _lastChangedAt = _a._lastChangedAt, _deleted = _a._deleted, previousData = __rest(_a, [\"_version\", \"_lastChangedAt\", \"_deleted\"]);\n var _b = JSON.parse(current.data), __version = _b._version, __lastChangedAt = _b._lastChangedAt, __deleted = _b._deleted, currentData = __rest(_b, [\"_version\", \"_lastChangedAt\", \"_deleted\"]);\n var data = JSON.stringify(__assign(__assign({ _version: _version,\n _lastChangedAt: _lastChangedAt,\n _deleted: _deleted }, previousData), currentData));\n return this.modelInstanceCreator(this.MutationEvent, __assign(__assign({}, current), { data: data }));\n };\n /*\n if a model is using custom timestamp fields\n the custom field names will be stored in the model attributes\n\n e.g.\n \"attributes\": [\n {\n \"type\": \"model\",\n \"properties\": {\n \"timestamps\": {\n \"createdAt\": \"createdOn\",\n \"updatedAt\": \"updatedOn\"\n }\n }\n }\n ]\n */\n MutationEventOutbox.prototype.removeTimestampFields = function (model, record) {\n var _a, _b;\n var CREATED_AT_DEFAULT_KEY = 'createdAt';\n var UPDATED_AT_DEFAULT_KEY = 'updatedAt';\n var createdTimestampKey = CREATED_AT_DEFAULT_KEY;\n var updatedTimestampKey = UPDATED_AT_DEFAULT_KEY;\n var modelAttributes = (_a = this.schema.namespaces[_util__WEBPACK_IMPORTED_MODULE_2__[\"USER\"]].models[model].attributes) === null || _a === void 0 ? void 0 : _a.find(function (attr) { return attr.type === 'model'; });\n var timestampFieldsMap = (_b = modelAttributes === null || modelAttributes === void 0 ? void 0 : modelAttributes.properties) === null || _b === void 0 ? void 0 : _b.timestamps;\n if (timestampFieldsMap) {\n createdTimestampKey = timestampFieldsMap[CREATED_AT_DEFAULT_KEY];\n updatedTimestampKey = timestampFieldsMap[UPDATED_AT_DEFAULT_KEY];\n }\n delete record[createdTimestampKey];\n delete record[updatedTimestampKey];\n return record;\n };\n return MutationEventOutbox;\n}());\n\n//# sourceMappingURL=outbox.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/outbox.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/errorMaps.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/errorMaps.js ***! \**********************************************************************************/ /*! exports provided: mutationErrorMap, subscriptionErrorMap, syncErrorMap, getMutationErrorType, getSubscriptionErrorType, getSyncErrorType, mapErrorToType */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mutationErrorMap\", function() { return mutationErrorMap; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"subscriptionErrorMap\", function() { return subscriptionErrorMap; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"syncErrorMap\", function() { return syncErrorMap; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getMutationErrorType\", function() { return getMutationErrorType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSubscriptionErrorType\", function() { return getSubscriptionErrorType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSyncErrorType\", function() { return getSyncErrorType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mapErrorToType\", function() { return mapErrorToType; });\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar connectionTimeout = function (error) {\n return /^Connection failed: Connection Timeout/.test(error.message);\n};\nvar serverError = function (error) {\n return /^Error: Request failed with status code 5\\d\\d/.test(error.message);\n};\nvar mutationErrorMap = {\n BadModel: function () { return false; },\n BadRecord: function (error) {\n var message = error.message;\n return (/^Cannot return \\w+ for [\\w-_]+ type/.test(message) ||\n /^Variable '.+' has coerced Null value for NonNull type/.test(message)); // newly required field, out of date client\n },\n ConfigError: function () { return false; },\n Transient: function (error) { return connectionTimeout(error) || serverError(error); },\n Unauthorized: function (error) {\n return /^Request failed with status code 401/.test(error.message);\n },\n};\nvar subscriptionErrorMap = {\n BadModel: function () { return false; },\n BadRecord: function () { return false; },\n ConfigError: function () { return false; },\n Transient: function (observableError) {\n var error = unwrapObservableError(observableError);\n return connectionTimeout(error) || serverError(error);\n },\n Unauthorized: function (observableError) {\n var error = unwrapObservableError(observableError);\n return /Connection failed.+Unauthorized/.test(error.message);\n },\n};\nvar syncErrorMap = {\n BadModel: function () { return false; },\n BadRecord: function (error) { return /^Cannot return \\w+ for [\\w-_]+ type/.test(error.message); },\n ConfigError: function () { return false; },\n Transient: function (error) { return connectionTimeout(error) || serverError(error); },\n Unauthorized: function () { return false; },\n};\n/**\n * Get the first error reason of an observable.\n * Allows for error maps to be easily applied to observable errors\n *\n * @param observableError an error from ZenObservable subscribe error callback\n */\nfunction unwrapObservableError(observableError) {\n var _a = observableError.error, _b = __read((_a === void 0 ? {\n errors: [],\n } : _a).errors, 1), error = _b[0];\n return error;\n}\nfunction getMutationErrorType(error) {\n return mapErrorToType(mutationErrorMap, error);\n}\nfunction getSubscriptionErrorType(error) {\n return mapErrorToType(subscriptionErrorMap, error);\n}\nfunction getSyncErrorType(error) {\n return mapErrorToType(syncErrorMap, error);\n}\n/**\n * Categorizes an error with a broad error type, intended to make\n * customer error handling code simpler.\n * @param errorMap Error names and a list of patterns that indicate them (each pattern as a regex or function)\n * @param error The underying error to categorize.\n */\nfunction mapErrorToType(errorMap, error) {\n var e_1, _a;\n var errorTypes = __spread(Object.keys(errorMap));\n try {\n for (var errorTypes_1 = __values(errorTypes), errorTypes_1_1 = errorTypes_1.next(); !errorTypes_1_1.done; errorTypes_1_1 = errorTypes_1.next()) {\n var errorType = errorTypes_1_1.value;\n var matcher = errorMap[errorType];\n if (matcher(error)) {\n return errorType;\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (errorTypes_1_1 && !errorTypes_1_1.done && (_a = errorTypes_1.return)) _a.call(errorTypes_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return 'Unknown';\n}\n//# sourceMappingURL=errorMaps.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/errorMaps.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/mutation.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/mutation.js ***! \*********************************************************************************/ /*! exports provided: safeJitteredBackoff, MutationProcessor */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"safeJitteredBackoff\", function() { return safeJitteredBackoff; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MutationProcessor\", function() { return MutationProcessor; });\n/* harmony import */ var _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/api */ \"./node_modules/@aws-amplify/api/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utils */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js\");\n/* harmony import */ var _errorMaps__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./errorMaps */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/errorMaps.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\n\n\n\n\n\n\n\nvar MAX_ATTEMPTS = 10;\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('DataStore');\nvar MutationProcessor = /** @class */ (function () {\n function MutationProcessor(schema, storage, userClasses, outbox, modelInstanceCreator, MutationEvent, amplifyConfig, authModeStrategy, errorHandler, conflictHandler, amplifyContext) {\n if (amplifyConfig === void 0) { amplifyConfig = {}; }\n this.schema = schema;\n this.storage = storage;\n this.userClasses = userClasses;\n this.outbox = outbox;\n this.modelInstanceCreator = modelInstanceCreator;\n this.MutationEvent = MutationEvent;\n this.amplifyConfig = amplifyConfig;\n this.authModeStrategy = authModeStrategy;\n this.errorHandler = errorHandler;\n this.conflictHandler = conflictHandler;\n this.amplifyContext = amplifyContext;\n this.typeQuery = new WeakMap();\n this.processing = false;\n this.runningProcesses = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"BackgroundProcessManager\"]();\n this.amplifyContext.API = this.amplifyContext.API || _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"default\"];\n this.generateQueries();\n }\n MutationProcessor.prototype.generateQueries = function () {\n var _this = this;\n Object.values(this.schema.namespaces).forEach(function (namespace) {\n Object.values(namespace.models)\n .filter(function (_a) {\n var syncable = _a.syncable;\n return syncable;\n })\n .forEach(function (model) {\n var _a = __read(Object(_utils__WEBPACK_IMPORTED_MODULE_5__[\"buildGraphQLOperation\"])(namespace, model, 'CREATE'), 1), createMutation = _a[0];\n var _b = __read(Object(_utils__WEBPACK_IMPORTED_MODULE_5__[\"buildGraphQLOperation\"])(namespace, model, 'UPDATE'), 1), updateMutation = _b[0];\n var _c = __read(Object(_utils__WEBPACK_IMPORTED_MODULE_5__[\"buildGraphQLOperation\"])(namespace, model, 'DELETE'), 1), deleteMutation = _c[0];\n _this.typeQuery.set(model, [\n createMutation,\n updateMutation,\n deleteMutation,\n ]);\n });\n });\n };\n MutationProcessor.prototype.isReady = function () {\n return this.observer !== undefined;\n };\n MutationProcessor.prototype.start = function () {\n var _this = this;\n var observable = new zen_observable_ts__WEBPACK_IMPORTED_MODULE_2__[\"default\"](function (observer) {\n _this.observer = observer;\n try {\n _this.resume();\n }\n catch (error) {\n logger.error('mutations processor start error', error);\n throw error;\n }\n return _this.runningProcesses.addCleaner(function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n this.pause();\n return [2 /*return*/];\n });\n }); });\n });\n return observable;\n };\n MutationProcessor.prototype.stop = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.runningProcesses.close()];\n case 1:\n _a.sent();\n return [4 /*yield*/, this.runningProcesses.open()];\n case 2:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n MutationProcessor.prototype.resume = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, (this.runningProcesses.isOpen &&\n this.runningProcesses.add(function (onTerminate) { return __awaiter(_this, void 0, void 0, function () {\n var head, namespaceName, _loop_1, this_1, _a;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (this.processing ||\n !this.isReady() ||\n !this.runningProcesses.isOpen) {\n return [2 /*return*/];\n }\n this.processing = true;\n namespaceName = _util__WEBPACK_IMPORTED_MODULE_4__[\"USER\"];\n _loop_1 = function () {\n var model, operation, data, condition, modelConstructor, result, opName, modelDefinition, modelAuthModes, operationAuthModes_1, authModeAttempts_1, authModeRetry_1, error_1, record, hasMore;\n var _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n model = head.model, operation = head.operation, data = head.data, condition = head.condition;\n modelConstructor = this_1.userClasses[model];\n result = void 0;\n opName = void 0;\n modelDefinition = void 0;\n _b.label = 1;\n case 1:\n _b.trys.push([1, 4, , 5]);\n return [4 /*yield*/, Object(_utils__WEBPACK_IMPORTED_MODULE_5__[\"getModelAuthModes\"])({\n authModeStrategy: this_1.authModeStrategy,\n defaultAuthMode: this_1.amplifyConfig.aws_appsync_authenticationType,\n modelName: model,\n schema: this_1.schema,\n })];\n case 2:\n modelAuthModes = _b.sent();\n operationAuthModes_1 = modelAuthModes[operation.toUpperCase()];\n authModeAttempts_1 = 0;\n authModeRetry_1 = function () { return __awaiter(_this, void 0, void 0, function () {\n var response, error_2;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 4]);\n logger.debug(\"Attempting mutation with authMode: \" + operationAuthModes_1[authModeAttempts_1]);\n return [4 /*yield*/, this.jitteredRetry(namespaceName, model, operation, data, condition, modelConstructor, this.MutationEvent, head, operationAuthModes_1[authModeAttempts_1], onTerminate)];\n case 1:\n response = _a.sent();\n logger.debug(\"Mutation sent successfully with authMode: \" + operationAuthModes_1[authModeAttempts_1]);\n return [2 /*return*/, response];\n case 2:\n error_2 = _a.sent();\n authModeAttempts_1++;\n if (authModeAttempts_1 >= operationAuthModes_1.length) {\n logger.debug(\"Mutation failed with authMode: \" + operationAuthModes_1[authModeAttempts_1 - 1]);\n throw error_2;\n }\n logger.debug(\"Mutation failed with authMode: \" + operationAuthModes_1[authModeAttempts_1 - 1] + \". Retrying with authMode: \" + operationAuthModes_1[authModeAttempts_1]);\n return [4 /*yield*/, authModeRetry_1()];\n case 3: return [2 /*return*/, _a.sent()];\n case 4: return [2 /*return*/];\n }\n });\n }); };\n return [4 /*yield*/, authModeRetry_1()];\n case 3:\n _a = __read.apply(void 0, [_b.sent(), 3]), result = _a[0], opName = _a[1], modelDefinition = _a[2];\n return [3 /*break*/, 5];\n case 4:\n error_1 = _b.sent();\n if (error_1.message === 'Offline' ||\n error_1.message === 'RetryMutation') {\n return [2 /*return*/, \"continue\"];\n }\n return [3 /*break*/, 5];\n case 5:\n if (!(result === undefined)) return [3 /*break*/, 7];\n logger.debug('done retrying');\n return [4 /*yield*/, this_1.storage.runExclusive(function (storage) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.outbox.dequeue(storage)];\n case 1:\n _a.sent();\n return [2 /*return*/];\n }\n });\n }); })];\n case 6:\n _b.sent();\n return [2 /*return*/, \"continue\"];\n case 7:\n record = result.data[opName];\n hasMore = false;\n return [4 /*yield*/, this_1.storage.runExclusive(function (storage) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: \n // using runExclusive to prevent possible race condition\n // when another record gets enqueued between dequeue and peek\n return [4 /*yield*/, this.outbox.dequeue(storage, record, operation)];\n case 1:\n // using runExclusive to prevent possible race condition\n // when another record gets enqueued between dequeue and peek\n _a.sent();\n return [4 /*yield*/, this.outbox.peek(storage)];\n case 2:\n hasMore = (_a.sent()) !== undefined;\n return [2 /*return*/];\n }\n });\n }); })];\n case 8:\n _b.sent();\n this_1.observer.next({\n operation: operation,\n modelDefinition: modelDefinition,\n model: record,\n hasMore: hasMore,\n });\n return [2 /*return*/];\n }\n });\n };\n this_1 = this;\n _b.label = 1;\n case 1:\n _a = this.processing &&\n this.runningProcesses.isOpen;\n if (!_a) return [3 /*break*/, 3];\n return [4 /*yield*/, this.outbox.peek(this.storage)];\n case 2:\n _a = (head = _b.sent()) !== undefined;\n _b.label = 3;\n case 3:\n if (!_a) return [3 /*break*/, 5];\n return [5 /*yield**/, _loop_1()];\n case 4:\n _b.sent();\n return [3 /*break*/, 1];\n case 5:\n // pauses itself\n this.pause();\n return [2 /*return*/];\n }\n });\n }); }, 'mutation resume loop'))];\n case 1:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n MutationProcessor.prototype.jitteredRetry = function (namespaceName, model, operation, data, condition, modelConstructor, MutationEvent, mutationEvent, authMode, onTerminate) {\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"retry\"])(function (model, operation, data, condition, modelConstructor, MutationEvent, mutationEvent) { return __awaiter(_this, void 0, void 0, function () {\n var _a, query, variables, graphQLCondition, opName, modelDefinition, authToken, tryWith, attempt, opType, result, err_1, _b, error, _c, _d, code, retryWith, err_2, _e, _f, opName_1, query_1, authToken_1, serverData, namespace, updatedMutation;\n var _g;\n return __generator(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = __read(this.createQueryVariables(namespaceName, model, operation, data, condition), 5), query = _a[0], variables = _a[1], graphQLCondition = _a[2], opName = _a[3], modelDefinition = _a[4];\n return [4 /*yield*/, Object(_utils__WEBPACK_IMPORTED_MODULE_5__[\"getTokenForCustomAuth\"])(authMode, this.amplifyConfig)];\n case 1:\n authToken = _h.sent();\n tryWith = {\n query: query,\n variables: variables,\n authMode: authMode,\n authToken: authToken,\n userAgentSuffix: _util__WEBPACK_IMPORTED_MODULE_4__[\"USER_AGENT_SUFFIX_DATASTORE\"],\n };\n attempt = 0;\n opType = this.opTypeFromTransformerOperation(operation);\n _h.label = 2;\n case 2:\n _h.trys.push([2, 4, , 17]);\n return [4 /*yield*/, this.amplifyContext.API.graphql(tryWith)];\n case 3:\n result = (_h.sent());\n // `as any` because TypeScript doesn't seem to like passing tuples\n // through generic params???\n return [2 /*return*/, [result, opName, modelDefinition]];\n case 4:\n err_1 = _h.sent();\n if (!(err_1.errors && err_1.errors.length > 0)) return [3 /*break*/, 15];\n _b = __read(err_1.errors, 1), error = _b[0];\n _c = error.originalError, _d = (_c === void 0 ? {} : _c).code, code = _d === void 0 ? null : _d;\n if (error.errorType === 'Unauthorized') {\n throw new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"NonRetryableError\"]('Unauthorized');\n }\n if (error.message === 'Network Error' ||\n code === 'ECONNABORTED' // refers to axios timeout error caused by device's bad network condition\n ) {\n if (!this.processing) {\n throw new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"NonRetryableError\"]('Offline');\n }\n // TODO: Check errors on different env (react-native or other browsers)\n throw new Error('Network Error');\n }\n if (!(error.errorType === 'ConflictUnhandled')) return [3 /*break*/, 13];\n // TODO: add on ConflictConditionalCheck error query last from server\n attempt++;\n retryWith = void 0;\n if (!(attempt > MAX_ATTEMPTS)) return [3 /*break*/, 5];\n retryWith = _types__WEBPACK_IMPORTED_MODULE_3__[\"DISCARD\"];\n return [3 /*break*/, 8];\n case 5:\n _h.trys.push([5, 7, , 8]);\n return [4 /*yield*/, this.conflictHandler({\n modelConstructor: modelConstructor,\n localModel: this.modelInstanceCreator(modelConstructor, variables.input),\n remoteModel: this.modelInstanceCreator(modelConstructor, error.data),\n operation: opType,\n attempts: attempt,\n })];\n case 6:\n retryWith = _h.sent();\n return [3 /*break*/, 8];\n case 7:\n err_2 = _h.sent();\n logger.warn('conflict trycatch', err_2);\n return [3 /*break*/, 17];\n case 8:\n if (!(retryWith === _types__WEBPACK_IMPORTED_MODULE_3__[\"DISCARD\"])) return [3 /*break*/, 11];\n _e = __read(Object(_utils__WEBPACK_IMPORTED_MODULE_5__[\"buildGraphQLOperation\"])(this.schema.namespaces[namespaceName], modelDefinition, 'GET'), 1), _f = __read(_e[0], 3), opName_1 = _f[1], query_1 = _f[2];\n return [4 /*yield*/, Object(_utils__WEBPACK_IMPORTED_MODULE_5__[\"getTokenForCustomAuth\"])(authMode, this.amplifyConfig)];\n case 9:\n authToken_1 = _h.sent();\n return [4 /*yield*/, this.amplifyContext.API.graphql({\n query: query_1,\n variables: { id: variables.input.id },\n authMode: authMode,\n authToken: authToken_1,\n userAgentSuffix: _util__WEBPACK_IMPORTED_MODULE_4__[\"USER_AGENT_SUFFIX_DATASTORE\"],\n })];\n case 10:\n serverData = _h.sent();\n // onTerminate cancel graphql()\n return [2 /*return*/, [serverData, opName_1, modelDefinition]];\n case 11:\n namespace = this.schema.namespaces[namespaceName];\n updatedMutation = Object(_utils__WEBPACK_IMPORTED_MODULE_5__[\"createMutationInstanceFromModelOperation\"])(namespace.relationships, modelDefinition, opType, modelConstructor, retryWith, graphQLCondition, MutationEvent, this.modelInstanceCreator, mutationEvent.id);\n return [4 /*yield*/, this.storage.save(updatedMutation)];\n case 12:\n _h.sent();\n throw new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"NonRetryableError\"]('RetryMutation');\n case 13:\n try {\n this.errorHandler({\n recoverySuggestion: 'Ensure app code is up to date, auth directives exist and are correct on each model, and that server-side data has not been invalidated by a schema change. If the problem persists, search for or create an issue: https://github.com/aws-amplify/amplify-js/issues',\n localModel: variables.input,\n message: error.message,\n operation: operation,\n errorType: Object(_errorMaps__WEBPACK_IMPORTED_MODULE_6__[\"getMutationErrorType\"])(error),\n errorInfo: error.errorInfo,\n process: _types__WEBPACK_IMPORTED_MODULE_3__[\"ProcessName\"].mutate,\n cause: error,\n remoteModel: error.data\n ? this.modelInstanceCreator(modelConstructor, error.data)\n : null,\n });\n }\n catch (err) {\n logger.warn('Mutation error handler failed with:', err);\n }\n finally {\n // Return empty tuple, dequeues the mutation\n return [2 /*return*/, error.data\n ? [\n { data: (_g = {}, _g[opName] = error.data, _g) },\n opName,\n modelDefinition,\n ]\n : []];\n }\n _h.label = 14;\n case 14: return [3 /*break*/, 16];\n case 15: \n // Catch-all for client-side errors that don't come back in the `GraphQLError` format.\n // These errors should not be retried.\n throw new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"NonRetryableError\"](err_1);\n case 16: return [3 /*break*/, 17];\n case 17:\n if (tryWith) return [3 /*break*/, 2];\n _h.label = 18;\n case 18: return [2 /*return*/];\n }\n });\n }); }, [\n model,\n operation,\n data,\n condition,\n modelConstructor,\n MutationEvent,\n mutationEvent,\n ], safeJitteredBackoff, onTerminate)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n MutationProcessor.prototype.createQueryVariables = function (namespaceName, model, operation, data, condition) {\n var e_1, _a, e_2, _b, e_3, _c;\n var modelDefinition = this.schema.namespaces[namespaceName].models[model];\n var primaryKey = this.schema.namespaces[namespaceName].keys[model].primaryKey;\n var queriesTuples = this.typeQuery.get(modelDefinition);\n var _d = __read(queriesTuples.find(function (_a) {\n var _b = __read(_a, 1), transformerMutationType = _b[0];\n return transformerMutationType === operation;\n }), 3), opName = _d[1], query = _d[2];\n var _e = JSON.parse(data), _version = _e._version, parsedData = __rest(_e, [\"_version\"]);\n // include all the fields that comprise a custom PK if one is specified\n var deleteInput = {};\n if (primaryKey === null || primaryKey === void 0 ? void 0 : primaryKey.length) {\n try {\n for (var primaryKey_1 = __values(primaryKey), primaryKey_1_1 = primaryKey_1.next(); !primaryKey_1_1.done; primaryKey_1_1 = primaryKey_1.next()) {\n var pkField = primaryKey_1_1.value;\n deleteInput[pkField] = parsedData[pkField];\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (primaryKey_1_1 && !primaryKey_1_1.done && (_a = primaryKey_1.return)) _a.call(primaryKey_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n }\n else {\n deleteInput[_util__WEBPACK_IMPORTED_MODULE_4__[\"ID\"]] = parsedData.id;\n }\n var mutationInput;\n if (operation === _utils__WEBPACK_IMPORTED_MODULE_5__[\"TransformerMutationType\"].DELETE) {\n // For DELETE mutations, only the key(s) are included in the input\n mutationInput = deleteInput;\n }\n else {\n // Otherwise, we construct the mutation input with the following logic\n mutationInput = {};\n var modelFields = Object.values(modelDefinition.fields);\n try {\n for (var modelFields_1 = __values(modelFields), modelFields_1_1 = modelFields_1.next(); !modelFields_1_1.done; modelFields_1_1 = modelFields_1.next()) {\n var _f = modelFields_1_1.value, name_1 = _f.name, type = _f.type, association = _f.association;\n // model fields should be stripped out from the input\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isModelFieldType\"])(type)) {\n // except for belongs to relations - we need to replace them with the correct foreign key(s)\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isTargetNameAssociation\"])(association) &&\n association.connectionType === 'BELONGS_TO') {\n var targetNames = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"extractTargetNamesFromSrc\"])(association);\n if (targetNames) {\n try {\n // instead of including the connected model itself, we add its key(s) to the mutation input\n for (var targetNames_1 = (e_3 = void 0, __values(targetNames)), targetNames_1_1 = targetNames_1.next(); !targetNames_1_1.done; targetNames_1_1 = targetNames_1.next()) {\n var targetName = targetNames_1_1.value;\n mutationInput[targetName] = parsedData[targetName];\n }\n }\n catch (e_3_1) { e_3 = { error: e_3_1 }; }\n finally {\n try {\n if (targetNames_1_1 && !targetNames_1_1.done && (_c = targetNames_1.return)) _c.call(targetNames_1);\n }\n finally { if (e_3) throw e_3.error; }\n }\n }\n }\n continue;\n }\n // scalar fields / non-model types\n if (operation === _utils__WEBPACK_IMPORTED_MODULE_5__[\"TransformerMutationType\"].UPDATE) {\n if (!parsedData.hasOwnProperty(name_1)) {\n // for update mutations - strip out a field if it's unchanged\n continue;\n }\n }\n // all other fields are added to the input object\n mutationInput[name_1] = parsedData[name_1];\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (modelFields_1_1 && !modelFields_1_1.done && (_b = modelFields_1.return)) _b.call(modelFields_1);\n }\n finally { if (e_2) throw e_2.error; }\n }\n }\n // Build mutation variables input object\n var input = __assign(__assign({}, mutationInput), { _version: _version });\n var graphQLCondition = JSON.parse(condition);\n var variables = __assign({ input: input }, (operation === _utils__WEBPACK_IMPORTED_MODULE_5__[\"TransformerMutationType\"].CREATE\n ? {}\n : {\n condition: Object.keys(graphQLCondition).length > 0\n ? graphQLCondition\n : null,\n }));\n return [query, variables, graphQLCondition, opName, modelDefinition];\n };\n MutationProcessor.prototype.opTypeFromTransformerOperation = function (operation) {\n switch (operation) {\n case _utils__WEBPACK_IMPORTED_MODULE_5__[\"TransformerMutationType\"].CREATE:\n return _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].INSERT;\n case _utils__WEBPACK_IMPORTED_MODULE_5__[\"TransformerMutationType\"].DELETE:\n return _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].DELETE;\n case _utils__WEBPACK_IMPORTED_MODULE_5__[\"TransformerMutationType\"].UPDATE:\n return _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].UPDATE;\n case _utils__WEBPACK_IMPORTED_MODULE_5__[\"TransformerMutationType\"].GET: // Intentionally blank\n break;\n default:\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"exhaustiveCheck\"])(operation);\n }\n };\n MutationProcessor.prototype.pause = function () {\n this.processing = false;\n };\n return MutationProcessor;\n}());\nvar MAX_RETRY_DELAY_MS = 5 * 60 * 1000;\nvar originalJitteredBackoff = Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"jitteredBackoff\"])(MAX_RETRY_DELAY_MS);\n/**\n * @private\n * Internal use of Amplify only.\n *\n * Wraps the jittered backoff calculation to retry Network Errors indefinitely.\n * Backs off according to original jittered retry logic until the original retry\n * logic hits its max. After this occurs, if the error is a Network Error, we\n * ignore the attempt count and return MAX_RETRY_DELAY_MS to retry forever (until\n * the request succeeds).\n *\n * @param attempt ignored\n * @param _args ignored\n * @param error tested to see if `.message` is 'Network Error'\n * @returns number | false :\n */\nvar safeJitteredBackoff = function (attempt, _args, error) {\n var attemptResult = originalJitteredBackoff(attempt);\n // If this is the last attempt and it is a network error, we retry indefinitively every 5 minutes\n if (attemptResult === false && (error === null || error === void 0 ? void 0 : error.message) === 'Network Error') {\n return MAX_RETRY_DELAY_MS;\n }\n return attemptResult;\n};\n\n//# sourceMappingURL=mutation.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/mutation.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/subscription.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/subscription.js ***! \*************************************************************************************/ /*! exports provided: CONTROL_MSG, USER_CREDENTIALS, SubscriptionProcessor */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(Buffer) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONTROL_MSG\", function() { return CONTROL_MSG; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"USER_CREDENTIALS\", function() { return USER_CREDENTIALS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SubscriptionProcessor\", function() { return SubscriptionProcessor; });\n/* harmony import */ var _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/api */ \"./node_modules/@aws-amplify/api/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/auth */ \"./node_modules/@aws-amplify/auth/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/cache */ \"./node_modules/@aws-amplify/cache/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/pubsub */ \"./node_modules/@aws-amplify/pubsub/lib-esm/index.js\");\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utils */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js\");\n/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../predicates */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _errorMaps__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./errorMaps */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/errorMaps.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\n\n\n\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"ConsoleLogger\"]('DataStore');\nvar CONTROL_MSG;\n(function (CONTROL_MSG) {\n CONTROL_MSG[\"CONNECTED\"] = \"CONNECTED\";\n})(CONTROL_MSG || (CONTROL_MSG = {}));\nvar USER_CREDENTIALS;\n(function (USER_CREDENTIALS) {\n USER_CREDENTIALS[USER_CREDENTIALS[\"none\"] = 0] = \"none\";\n USER_CREDENTIALS[USER_CREDENTIALS[\"unauth\"] = 1] = \"unauth\";\n USER_CREDENTIALS[USER_CREDENTIALS[\"auth\"] = 2] = \"auth\";\n})(USER_CREDENTIALS || (USER_CREDENTIALS = {}));\nvar SubscriptionProcessor = /** @class */ (function () {\n function SubscriptionProcessor(schema, syncPredicates, amplifyConfig, authModeStrategy, errorHandler, amplifyContext) {\n if (amplifyConfig === void 0) { amplifyConfig = {}; }\n if (amplifyContext === void 0) { amplifyContext = { Auth: _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__[\"Auth\"], API: _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"default\"], Cache: _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__[\"default\"] }; }\n this.schema = schema;\n this.syncPredicates = syncPredicates;\n this.amplifyConfig = amplifyConfig;\n this.authModeStrategy = authModeStrategy;\n this.errorHandler = errorHandler;\n this.amplifyContext = amplifyContext;\n this.typeQuery = new WeakMap();\n this.buffer = [];\n this.runningProcesses = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"BackgroundProcessManager\"]();\n }\n SubscriptionProcessor.prototype.buildSubscription = function (namespace, model, transformerMutationType, userCredentials, cognitoTokenPayload, oidcTokenPayload, authMode) {\n var aws_appsync_authenticationType = this.amplifyConfig.aws_appsync_authenticationType;\n var _a = this.getAuthorizationInfo(model, userCredentials, aws_appsync_authenticationType, cognitoTokenPayload, oidcTokenPayload, authMode) || {}, isOwner = _a.isOwner, ownerField = _a.ownerField, ownerValue = _a.ownerValue;\n var _b = __read(Object(_utils__WEBPACK_IMPORTED_MODULE_7__[\"buildSubscriptionGraphQLOperation\"])(namespace, model, transformerMutationType, isOwner, ownerField), 3), opType = _b[0], opName = _b[1], query = _b[2];\n return { authMode: authMode, opType: opType, opName: opName, query: query, isOwner: isOwner, ownerField: ownerField, ownerValue: ownerValue };\n };\n SubscriptionProcessor.prototype.getAuthorizationInfo = function (model, userCredentials, defaultAuthType, cognitoTokenPayload, oidcTokenPayload, authMode) {\n if (cognitoTokenPayload === void 0) { cognitoTokenPayload = {}; }\n if (oidcTokenPayload === void 0) { oidcTokenPayload = {}; }\n var rules = Object(_utils__WEBPACK_IMPORTED_MODULE_7__[\"getAuthorizationRules\"])(model);\n // Return null if user doesn't have proper credentials for private API with IAM auth\n var iamPrivateAuth = authMode === _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"].AWS_IAM &&\n rules.find(function (rule) { return rule.authStrategy === 'private' && rule.provider === 'iam'; });\n if (iamPrivateAuth && userCredentials === USER_CREDENTIALS.unauth) {\n return null;\n }\n // Group auth should take precedence over owner auth, so we are checking\n // if rule(s) have group authorization as well as if either the Cognito or\n // OIDC token has a groupClaim. If so, we are returning auth info before\n // any further owner-based auth checks.\n var groupAuthRules = rules.filter(function (rule) {\n return rule.authStrategy === 'groups' &&\n ['userPools', 'oidc'].includes(rule.provider);\n });\n var validGroup = (authMode === _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"].AMAZON_COGNITO_USER_POOLS ||\n authMode === _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"].OPENID_CONNECT) &&\n groupAuthRules.find(function (groupAuthRule) {\n // validate token against groupClaim\n var cognitoUserGroups = Object(_utils__WEBPACK_IMPORTED_MODULE_7__[\"getUserGroupsFromToken\"])(cognitoTokenPayload, groupAuthRule);\n var oidcUserGroups = Object(_utils__WEBPACK_IMPORTED_MODULE_7__[\"getUserGroupsFromToken\"])(oidcTokenPayload, groupAuthRule);\n return __spread(cognitoUserGroups, oidcUserGroups).find(function (userGroup) {\n return groupAuthRule.groups.find(function (group) { return group === userGroup; });\n });\n });\n if (validGroup) {\n return {\n authMode: authMode,\n isOwner: false,\n };\n }\n // Owner auth needs additional values to be returned in order to create the subscription with\n // the correct parameters so we are getting the owner value from the Cognito token via the\n // identityClaim from the auth rule.\n var cognitoOwnerAuthRules = authMode === _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"].AMAZON_COGNITO_USER_POOLS\n ? rules.filter(function (rule) {\n return rule.authStrategy === 'owner' && rule.provider === 'userPools';\n })\n : [];\n var ownerAuthInfo;\n cognitoOwnerAuthRules.forEach(function (ownerAuthRule) {\n var ownerValue = cognitoTokenPayload[ownerAuthRule.identityClaim];\n if (ownerValue) {\n ownerAuthInfo = {\n authMode: _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"].AMAZON_COGNITO_USER_POOLS,\n isOwner: ownerAuthRule.areSubscriptionsPublic ? false : true,\n ownerField: ownerAuthRule.ownerField,\n ownerValue: ownerValue,\n };\n }\n });\n if (ownerAuthInfo) {\n return ownerAuthInfo;\n }\n // Owner auth needs additional values to be returned in order to create the subscription with\n // the correct parameters so we are getting the owner value from the OIDC token via the\n // identityClaim from the auth rule.\n var oidcOwnerAuthRules = authMode === _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"].OPENID_CONNECT\n ? rules.filter(function (rule) { return rule.authStrategy === 'owner' && rule.provider === 'oidc'; })\n : [];\n oidcOwnerAuthRules.forEach(function (ownerAuthRule) {\n var ownerValue = oidcTokenPayload[ownerAuthRule.identityClaim];\n if (ownerValue) {\n ownerAuthInfo = {\n authMode: _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"].OPENID_CONNECT,\n isOwner: ownerAuthRule.areSubscriptionsPublic ? false : true,\n ownerField: ownerAuthRule.ownerField,\n ownerValue: ownerValue,\n };\n }\n });\n if (ownerAuthInfo) {\n return ownerAuthInfo;\n }\n // Fallback: return authMode or default auth type\n return {\n authMode: authMode || defaultAuthType,\n isOwner: false,\n };\n };\n SubscriptionProcessor.prototype.hubQueryCompletionListener = function (completed, capsule) {\n var event = capsule.payload.event;\n if (event === _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_4__[\"CONTROL_MSG\"].SUBSCRIPTION_ACK) {\n completed();\n }\n };\n SubscriptionProcessor.prototype.start = function () {\n var _this = this;\n var ctlObservable = new zen_observable_ts__WEBPACK_IMPORTED_MODULE_5__[\"default\"](function (observer) {\n var promises = [];\n // Creating subs for each model/operation combo so they can be unsubscribed\n // independently, since the auth retry behavior is asynchronous.\n var subscriptions = {};\n var cognitoTokenPayload, oidcTokenPayload;\n var userCredentials = USER_CREDENTIALS.none;\n _this.runningProcesses.add(function () { return __awaiter(_this, void 0, void 0, function () {\n var credentials, err_1, session, err_2, _a, aws_cognito_region, AuthConfig, token, federatedInfo, currentUser, payload, err_3;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _b.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.amplifyContext.Auth.currentCredentials()];\n case 1:\n credentials = _b.sent();\n userCredentials = credentials.authenticated\n ? USER_CREDENTIALS.auth\n : USER_CREDENTIALS.unauth;\n return [3 /*break*/, 3];\n case 2:\n err_1 = _b.sent();\n return [3 /*break*/, 3];\n case 3:\n _b.trys.push([3, 5, , 6]);\n return [4 /*yield*/, this.amplifyContext.Auth.currentSession()];\n case 4:\n session = _b.sent();\n cognitoTokenPayload = session.getIdToken().decodePayload();\n return [3 /*break*/, 6];\n case 5:\n err_2 = _b.sent();\n return [3 /*break*/, 6];\n case 6:\n _b.trys.push([6, 11, , 12]);\n _a = this.amplifyConfig, aws_cognito_region = _a.aws_cognito_region, AuthConfig = _a.Auth;\n if (!aws_cognito_region || (AuthConfig && !AuthConfig.region)) {\n throw 'Auth is not configured';\n }\n token = void 0;\n return [4 /*yield*/, this.amplifyContext.Cache.getItem('federatedInfo')];\n case 7:\n federatedInfo = _b.sent();\n if (!federatedInfo) return [3 /*break*/, 8];\n token = federatedInfo.token;\n return [3 /*break*/, 10];\n case 8: return [4 /*yield*/, this.amplifyContext.Auth.currentAuthenticatedUser()];\n case 9:\n currentUser = _b.sent();\n if (currentUser) {\n token = currentUser.token;\n }\n _b.label = 10;\n case 10:\n if (token) {\n payload = token.split('.')[1];\n oidcTokenPayload = JSON.parse(Buffer.from(payload, 'base64').toString('utf8'));\n }\n return [3 /*break*/, 12];\n case 11:\n err_3 = _b.sent();\n logger.debug('error getting OIDC JWT', err_3);\n return [3 /*break*/, 12];\n case 12:\n Object.values(this.schema.namespaces).forEach(function (namespace) {\n Object.values(namespace.models)\n .filter(function (_a) {\n var syncable = _a.syncable;\n return syncable;\n })\n .forEach(function (modelDefinition) {\n return _this.runningProcesses.isOpen &&\n _this.runningProcesses.add(function () { return __awaiter(_this, void 0, void 0, function () {\n var modelAuthModes, readAuthModes, operations, operationAuthModeAttempts, authModeRetry;\n var _a, _b, _c;\n var _this = this;\n return __generator(this, function (_d) {\n switch (_d.label) {\n case 0: return [4 /*yield*/, Object(_utils__WEBPACK_IMPORTED_MODULE_7__[\"getModelAuthModes\"])({\n authModeStrategy: this.authModeStrategy,\n defaultAuthMode: this.amplifyConfig.aws_appsync_authenticationType,\n modelName: modelDefinition.name,\n schema: this.schema,\n })];\n case 1:\n modelAuthModes = _d.sent();\n readAuthModes = modelAuthModes.READ;\n subscriptions = __assign(__assign({}, subscriptions), (_a = {}, _a[modelDefinition.name] = (_b = {},\n _b[_utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].CREATE] = [],\n _b[_utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].UPDATE] = [],\n _b[_utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].DELETE] = [],\n _b), _a));\n operations = [\n _utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].CREATE,\n _utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].UPDATE,\n _utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].DELETE,\n ];\n operationAuthModeAttempts = (_c = {},\n _c[_utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].CREATE] = 0,\n _c[_utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].UPDATE] = 0,\n _c[_utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].DELETE] = 0,\n _c);\n authModeRetry = function (operation) { return __awaiter(_this, void 0, void 0, function () {\n var _a, transformerMutationType, opName, query, isOwner, ownerField, ownerValue, authMode, authToken, variables, userAgentSuffix, queryObservable, subscriptionReadyCallback;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = this.buildSubscription(namespace, modelDefinition, operation, userCredentials, cognitoTokenPayload, oidcTokenPayload, readAuthModes[operationAuthModeAttempts[operation]]), transformerMutationType = _a.opType, opName = _a.opName, query = _a.query, isOwner = _a.isOwner, ownerField = _a.ownerField, ownerValue = _a.ownerValue, authMode = _a.authMode;\n return [4 /*yield*/, Object(_utils__WEBPACK_IMPORTED_MODULE_7__[\"getTokenForCustomAuth\"])(authMode, this.amplifyConfig)];\n case 1:\n authToken = _b.sent();\n variables = {};\n if (isOwner) {\n if (!ownerValue) {\n observer.error('Owner field required, sign in is needed in order to perform this operation');\n return [2 /*return*/];\n }\n variables[ownerField] = ownerValue;\n }\n logger.debug(\"Attempting \" + operation + \" subscription with authMode: \" + readAuthModes[operationAuthModeAttempts[operation]]);\n userAgentSuffix = _util__WEBPACK_IMPORTED_MODULE_9__[\"USER_AGENT_SUFFIX_DATASTORE\"];\n queryObservable = this.amplifyContext.API.graphql(__assign(__assign({ query: query,\n variables: variables }, { authMode: authMode }), { authToken: authToken,\n userAgentSuffix: userAgentSuffix }));\n // TODO: consider onTerminate.then(() => API.cancel(...))\n subscriptions[modelDefinition.name][transformerMutationType].push(queryObservable\n .map(function (_a) {\n var value = _a.value;\n return value;\n })\n .subscribe({\n next: function (_a) {\n var data = _a.data, errors = _a.errors;\n if (Array.isArray(errors) && errors.length > 0) {\n var messages = errors.map(function (_a) {\n var message = _a.message;\n return message;\n });\n logger.warn(\"Skipping incoming subscription. Messages: \" + messages.join('\\n'));\n _this.drainBuffer();\n return;\n }\n var predicatesGroup = _predicates__WEBPACK_IMPORTED_MODULE_8__[\"ModelPredicateCreator\"].getPredicates(_this.syncPredicates.get(modelDefinition), false);\n var _b = data, _c = opName, record = _b[_c];\n // checking incoming subscription against syncPredicate.\n // once AppSync implements filters on subscriptions, we'll be\n // able to set these when establishing the subscription instead.\n // Until then, we'll need to filter inbound\n if (_this.passesPredicateValidation(record, predicatesGroup)) {\n _this.pushToBuffer(transformerMutationType, modelDefinition, record);\n }\n _this.drainBuffer();\n },\n error: function (subscriptionError) { return __awaiter(_this, void 0, void 0, function () {\n var _a, _b, _c, _d, message, e_1;\n return __generator(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = subscriptionError.error, _b = __read((_a === void 0 ? {\n errors: [],\n } : _a).errors, 1), _c = _b[0], _d = (_c === void 0 ? {} : _c).message, message = _d === void 0 ? '' : _d;\n if (message.includes(_aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_4__[\"CONTROL_MSG\"].REALTIME_SUBSCRIPTION_INIT_ERROR) ||\n message.includes(_aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_4__[\"CONTROL_MSG\"].CONNECTION_FAILED)) {\n // Unsubscribe and clear subscription array for model/operation\n subscriptions[modelDefinition.name][transformerMutationType].forEach(function (subscription) {\n return subscription.unsubscribe();\n });\n subscriptions[modelDefinition.name][transformerMutationType] = [];\n operationAuthModeAttempts[operation]++;\n if (operationAuthModeAttempts[operation] >=\n readAuthModes.length) {\n // last auth mode retry. Continue with error\n logger.debug(operation + \" subscription failed with authMode: \" + readAuthModes[operationAuthModeAttempts[operation] - 1]);\n }\n else {\n // retry with different auth mode. Do not trigger\n // observer error or error handler\n logger.debug(operation + \" subscription failed with authMode: \" + readAuthModes[operationAuthModeAttempts[operation] - 1] + \". Retrying with authMode: \" + readAuthModes[operationAuthModeAttempts[operation]]);\n authModeRetry(operation);\n return [2 /*return*/];\n }\n }\n logger.warn('subscriptionError', message);\n _e.label = 1;\n case 1:\n _e.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.errorHandler({\n recoverySuggestion: 'Ensure app code is up to date, auth directives exist and are correct on each model, and that server-side data has not been invalidated by a schema change. If the problem persists, search for or create an issue: https://github.com/aws-amplify/amplify-js/issues',\n localModel: null,\n message: message,\n model: modelDefinition.name,\n operation: operation,\n errorType: Object(_errorMaps__WEBPACK_IMPORTED_MODULE_10__[\"getSubscriptionErrorType\"])(subscriptionError),\n process: _types__WEBPACK_IMPORTED_MODULE_6__[\"ProcessName\"].subscribe,\n remoteModel: null,\n cause: subscriptionError,\n })];\n case 2:\n _e.sent();\n return [3 /*break*/, 4];\n case 3:\n e_1 = _e.sent();\n logger.error('Subscription error handler failed with:', e_1);\n return [3 /*break*/, 4];\n case 4:\n if (typeof subscriptionReadyCallback === 'function') {\n subscriptionReadyCallback();\n }\n if (message.includes('\"errorType\":\"Unauthorized\"') ||\n message.includes('\"errorType\":\"OperationDisabled\"')) {\n return [2 /*return*/];\n }\n observer.error(message);\n return [2 /*return*/];\n }\n });\n }); },\n }));\n promises.push((function () { return __awaiter(_this, void 0, void 0, function () {\n var boundFunction;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, new Promise(function (res) {\n subscriptionReadyCallback = res;\n boundFunction = _this.hubQueryCompletionListener.bind(_this, res);\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"Hub\"].listen('api', boundFunction);\n })];\n case 1:\n _a.sent();\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"Hub\"].remove('api', boundFunction);\n return [2 /*return*/];\n }\n });\n }); })());\n return [2 /*return*/];\n }\n });\n }); };\n operations.forEach(function (op) { return authModeRetry(op); });\n return [2 /*return*/];\n }\n });\n }); });\n });\n });\n this.runningProcesses.isOpen &&\n this.runningProcesses.add(function () {\n return Promise.all(promises).then(function () {\n observer.next(CONTROL_MSG.CONNECTED);\n });\n });\n return [2 /*return*/];\n }\n });\n }); }, 'subscription processor new subscriber');\n return _this.runningProcesses.addCleaner(function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n Object.keys(subscriptions).forEach(function (modelName) {\n subscriptions[modelName][_utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].CREATE].forEach(function (subscription) { return subscription.unsubscribe(); });\n subscriptions[modelName][_utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].UPDATE].forEach(function (subscription) { return subscription.unsubscribe(); });\n subscriptions[modelName][_utils__WEBPACK_IMPORTED_MODULE_7__[\"TransformerMutationType\"].DELETE].forEach(function (subscription) { return subscription.unsubscribe(); });\n });\n return [2 /*return*/];\n });\n }); });\n });\n var dataObservable = new zen_observable_ts__WEBPACK_IMPORTED_MODULE_5__[\"default\"](function (observer) {\n _this.dataObserver = observer;\n _this.drainBuffer();\n return _this.runningProcesses.addCleaner(function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n this.dataObserver = null;\n return [2 /*return*/];\n });\n }); });\n });\n return [ctlObservable, dataObservable];\n };\n SubscriptionProcessor.prototype.stop = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.runningProcesses.close()];\n case 1:\n _a.sent();\n return [4 /*yield*/, this.runningProcesses.open()];\n case 2:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n SubscriptionProcessor.prototype.passesPredicateValidation = function (record, predicatesGroup) {\n if (!predicatesGroup) {\n return true;\n }\n var predicates = predicatesGroup.predicates, type = predicatesGroup.type;\n return Object(_util__WEBPACK_IMPORTED_MODULE_9__[\"validatePredicate\"])(record, type, predicates);\n };\n SubscriptionProcessor.prototype.pushToBuffer = function (transformerMutationType, modelDefinition, data) {\n this.buffer.push([transformerMutationType, modelDefinition, data]);\n };\n SubscriptionProcessor.prototype.drainBuffer = function () {\n var _this = this;\n if (this.dataObserver) {\n this.buffer.forEach(function (data) { return _this.dataObserver.next(data); });\n this.buffer = [];\n }\n };\n return SubscriptionProcessor;\n}());\n\n//# sourceMappingURL=subscription.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/subscription.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/sync.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/sync.js ***! \*****************************************************************************/ /*! exports provided: SyncProcessor */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SyncProcessor\", function() { return SyncProcessor; });\n/* harmony import */ var _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/api */ \"./node_modules/@aws-amplify/api/lib-esm/index.js\");\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _predicates__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../predicates */ \"./node_modules/@aws-amplify/datastore/lib-esm/predicates/index.js\");\n/* harmony import */ var _errorMaps__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./errorMaps */ \"./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/errorMaps.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\n\n\n\n\n\n\n\n\nvar opResultDefaults = {\n items: [],\n nextToken: null,\n startedAt: null,\n};\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"ConsoleLogger\"]('DataStore');\nvar SyncProcessor = /** @class */ (function () {\n function SyncProcessor(schema, syncPredicates, amplifyConfig, authModeStrategy, errorHandler, amplifyContext) {\n if (amplifyConfig === void 0) { amplifyConfig = {}; }\n this.schema = schema;\n this.syncPredicates = syncPredicates;\n this.amplifyConfig = amplifyConfig;\n this.authModeStrategy = authModeStrategy;\n this.errorHandler = errorHandler;\n this.amplifyContext = amplifyContext;\n this.typeQuery = new WeakMap();\n this.runningProcesses = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"BackgroundProcessManager\"]();\n amplifyContext.API = amplifyContext.API || _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"default\"];\n this.generateQueries();\n }\n SyncProcessor.prototype.generateQueries = function () {\n var _this = this;\n Object.values(this.schema.namespaces).forEach(function (namespace) {\n Object.values(namespace.models)\n .filter(function (_a) {\n var syncable = _a.syncable;\n return syncable;\n })\n .forEach(function (model) {\n var _a = __read(Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"buildGraphQLOperation\"])(namespace, model, 'LIST'), 1), _b = __read(_a[0]), opNameQuery = _b.slice(1);\n _this.typeQuery.set(model, opNameQuery);\n });\n });\n };\n SyncProcessor.prototype.graphqlFilterFromPredicate = function (model) {\n if (!this.syncPredicates) {\n return null;\n }\n var predicatesGroup = _predicates__WEBPACK_IMPORTED_MODULE_6__[\"ModelPredicateCreator\"].getPredicates(this.syncPredicates.get(model), false);\n if (!predicatesGroup) {\n return null;\n }\n return Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"predicateToGraphQLFilter\"])(predicatesGroup);\n };\n SyncProcessor.prototype.retrievePage = function (modelDefinition, lastSync, nextToken, limit, filter, onTerminate) {\n if (limit === void 0) { limit = null; }\n return __awaiter(this, void 0, void 0, function () {\n var _a, opName, query, variables, modelAuthModes, readAuthModes, authModeAttempts, authModeRetry, data, _b, _c, opResult, items, newNextToken, startedAt;\n var _this = this;\n return __generator(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = __read(this.typeQuery.get(modelDefinition), 2), opName = _a[0], query = _a[1];\n variables = {\n limit: limit,\n nextToken: nextToken,\n lastSync: lastSync,\n filter: filter,\n };\n return [4 /*yield*/, Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"getModelAuthModes\"])({\n authModeStrategy: this.authModeStrategy,\n defaultAuthMode: this.amplifyConfig.aws_appsync_authenticationType,\n modelName: modelDefinition.name,\n schema: this.schema,\n })];\n case 1:\n modelAuthModes = _d.sent();\n readAuthModes = modelAuthModes.READ;\n authModeAttempts = 0;\n authModeRetry = function () { return __awaiter(_this, void 0, void 0, function () {\n var response, error_1, authMode;\n var _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!this.runningProcesses.isOpen) {\n throw new Error('sync.retreievePage termination was requested. Exiting.');\n }\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 5]);\n logger.debug(\"Attempting sync with authMode: \" + readAuthModes[authModeAttempts]);\n return [4 /*yield*/, this.jitteredRetry({\n query: query,\n variables: variables,\n opName: opName,\n modelDefinition: modelDefinition,\n authMode: readAuthModes[authModeAttempts],\n onTerminate: onTerminate,\n })];\n case 2:\n response = _b.sent();\n logger.debug(\"Sync successful with authMode: \" + readAuthModes[authModeAttempts]);\n return [2 /*return*/, response];\n case 3:\n error_1 = _b.sent();\n authModeAttempts++;\n if (authModeAttempts >= readAuthModes.length) {\n authMode = readAuthModes[authModeAttempts - 1];\n logger.debug(\"Sync failed with authMode: \" + authMode, error_1);\n if (Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"getClientSideAuthError\"])(error_1) || Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"getForbiddenError\"])(error_1)) {\n // return empty list of data so DataStore will continue to sync other models\n logger.warn(\"User is unauthorized to query \" + opName + \" with auth mode \" + authMode + \". No data could be returned.\");\n return [2 /*return*/, {\n data: (_a = {},\n _a[opName] = opResultDefaults,\n _a),\n }];\n }\n throw error_1;\n }\n logger.debug(\"Sync failed with authMode: \" + readAuthModes[authModeAttempts - 1] + \". Retrying with authMode: \" + readAuthModes[authModeAttempts]);\n return [4 /*yield*/, authModeRetry()];\n case 4: return [2 /*return*/, _b.sent()];\n case 5: return [2 /*return*/];\n }\n });\n }); };\n return [4 /*yield*/, authModeRetry()];\n case 2:\n data = (_d.sent()).data;\n _b = data, _c = opName, opResult = _b[_c];\n items = opResult.items, newNextToken = opResult.nextToken, startedAt = opResult.startedAt;\n return [2 /*return*/, {\n nextToken: newNextToken,\n startedAt: startedAt,\n items: items,\n }];\n }\n });\n });\n };\n SyncProcessor.prototype.jitteredRetry = function (_a) {\n var query = _a.query, variables = _a.variables, opName = _a.opName, modelDefinition = _a.modelDefinition, authMode = _a.authMode, onTerminate = _a.onTerminate;\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"jitteredExponentialRetry\"])(function (query, variables) { return __awaiter(_this, void 0, void 0, function () {\n var authToken, error_2, clientOrForbiddenErrorMessage, hasItems, unauthorized, otherErrors, result;\n var _this = this;\n var _a, _b, _c, _d;\n return __generator(this, function (_e) {\n switch (_e.label) {\n case 0:\n _e.trys.push([0, 3, , 6]);\n return [4 /*yield*/, Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"getTokenForCustomAuth\"])(authMode, this.amplifyConfig)];\n case 1:\n authToken = _e.sent();\n return [4 /*yield*/, this.amplifyContext.API.graphql({\n query: query,\n variables: variables,\n authMode: authMode,\n authToken: authToken,\n userAgentSuffix: _util__WEBPACK_IMPORTED_MODULE_4__[\"USER_AGENT_SUFFIX_DATASTORE\"],\n })];\n case 2: return [2 /*return*/, _e.sent()];\n case 3:\n error_2 = _e.sent();\n clientOrForbiddenErrorMessage = Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"getClientSideAuthError\"])(error_2) || Object(_utils__WEBPACK_IMPORTED_MODULE_3__[\"getForbiddenError\"])(error_2);\n if (clientOrForbiddenErrorMessage) {\n throw new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"NonRetryableError\"](clientOrForbiddenErrorMessage);\n }\n hasItems = Boolean((_b = (_a = error_2 === null || error_2 === void 0 ? void 0 : error_2.data) === null || _a === void 0 ? void 0 : _a[opName]) === null || _b === void 0 ? void 0 : _b.items);\n unauthorized = (error_2 === null || error_2 === void 0 ? void 0 : error_2.errors) &&\n error_2.errors.some(function (err) { return err.errorType === 'Unauthorized'; });\n otherErrors = (error_2 === null || error_2 === void 0 ? void 0 : error_2.errors) &&\n error_2.errors.filter(function (err) { return err.errorType !== 'Unauthorized'; });\n result = error_2;\n if (hasItems) {\n result.data[opName].items = result.data[opName].items.filter(function (item) { return item !== null; });\n }\n if (!(hasItems && (otherErrors === null || otherErrors === void 0 ? void 0 : otherErrors.length))) return [3 /*break*/, 5];\n return [4 /*yield*/, Promise.all(otherErrors.map(function (err) { return __awaiter(_this, void 0, void 0, function () {\n var e_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.errorHandler({\n recoverySuggestion: 'Ensure app code is up to date, auth directives exist and are correct on each model, and that server-side data has not been invalidated by a schema change. If the problem persists, search for or create an issue: https://github.com/aws-amplify/amplify-js/issues',\n localModel: null,\n message: err.message,\n model: modelDefinition.name,\n operation: opName,\n errorType: Object(_errorMaps__WEBPACK_IMPORTED_MODULE_7__[\"getSyncErrorType\"])(err),\n process: _types__WEBPACK_IMPORTED_MODULE_2__[\"ProcessName\"].sync,\n remoteModel: null,\n cause: err,\n })];\n case 1:\n _a.sent();\n return [3 /*break*/, 3];\n case 2:\n e_1 = _a.sent();\n logger.error('Sync error handler failed with:', e_1);\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/];\n }\n });\n }); }))];\n case 4:\n _e.sent();\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"Hub\"].dispatch('datastore', {\n event: 'nonApplicableDataReceived',\n data: {\n errors: otherErrors,\n modelName: modelDefinition.name,\n },\n });\n _e.label = 5;\n case 5:\n if (unauthorized) {\n logger.warn('queryError', \"User is unauthorized to query \" + opName + \", some items could not be returned.\");\n result.data = result.data || {};\n result.data[opName] = __assign(__assign({}, opResultDefaults), result.data[opName]);\n return [2 /*return*/, result];\n }\n if ((_d = (_c = result.data) === null || _c === void 0 ? void 0 : _c[opName].items) === null || _d === void 0 ? void 0 : _d.length) {\n return [2 /*return*/, result];\n }\n throw error_2;\n case 6: return [2 /*return*/];\n }\n });\n }); }, [query, variables], undefined, onTerminate)];\n case 1: return [2 /*return*/, _b.sent()];\n }\n });\n });\n };\n SyncProcessor.prototype.start = function (typesLastSync) {\n var _this = this;\n var _a = this.amplifyConfig, maxRecordsToSync = _a.maxRecordsToSync, syncPageSize = _a.syncPageSize;\n var parentPromises = new Map();\n var observable = new zen_observable_ts__WEBPACK_IMPORTED_MODULE_1__[\"default\"](function (observer) {\n var sortedTypesLastSyncs = Object.values(_this.schema.namespaces).reduce(function (map, namespace) {\n var e_2, _a;\n try {\n for (var _b = __values(Array.from(namespace.modelTopologicalOrdering.keys())), _c = _b.next(); !_c.done; _c = _b.next()) {\n var modelName = _c.value;\n var typeLastSync = typesLastSync.get(namespace.models[modelName]);\n map.set(namespace.models[modelName], typeLastSync);\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return map;\n }, new Map());\n var allModelsReady = Array.from(sortedTypesLastSyncs.entries())\n .filter(function (_a) {\n var _b = __read(_a, 1), syncable = _b[0].syncable;\n return syncable;\n })\n .map(function (_a) {\n var _b = __read(_a, 2), modelDefinition = _b[0], _c = __read(_b[1], 2), namespace = _c[0], lastSync = _c[1];\n return _this.runningProcesses.isOpen &&\n _this.runningProcesses.add(function (onTerminate) { return __awaiter(_this, void 0, void 0, function () {\n var done, nextToken, startedAt, items, recordsReceived, filter, parents, promises, promise;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n done = false;\n nextToken = null;\n startedAt = null;\n items = null;\n recordsReceived = 0;\n filter = this.graphqlFilterFromPredicate(modelDefinition);\n parents = this.schema.namespaces[namespace].modelTopologicalOrdering.get(modelDefinition.name);\n promises = parents.map(function (parent) {\n return parentPromises.get(namespace + \"_\" + parent);\n });\n promise = new Promise(function (res) { return __awaiter(_this, void 0, void 0, function () {\n var limit;\n var _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, Promise.all(promises)];\n case 1:\n _b.sent();\n _b.label = 2;\n case 2:\n if (!this.runningProcesses.isOpen) {\n return [2 /*return*/];\n }\n limit = Math.min(maxRecordsToSync - recordsReceived, syncPageSize);\n return [4 /*yield*/, this.retrievePage(modelDefinition, lastSync, nextToken, limit, filter, onTerminate)];\n case 3:\n (_a = _b.sent(), items = _a.items, nextToken = _a.nextToken, startedAt = _a.startedAt);\n recordsReceived += items.length;\n done =\n nextToken === null || recordsReceived >= maxRecordsToSync;\n observer.next({\n namespace: namespace,\n modelDefinition: modelDefinition,\n items: items,\n done: done,\n startedAt: startedAt,\n isFullSync: !lastSync,\n });\n _b.label = 4;\n case 4:\n if (!done) return [3 /*break*/, 2];\n _b.label = 5;\n case 5:\n res();\n return [2 /*return*/];\n }\n });\n }); });\n parentPromises.set(namespace + \"_\" + modelDefinition.name, promise);\n return [4 /*yield*/, promise];\n case 1:\n _a.sent();\n return [2 /*return*/];\n }\n });\n }); }, \"adding model \" + modelDefinition.name);\n });\n Promise.all(allModelsReady).then(function () {\n observer.complete();\n });\n });\n return observable;\n };\n SyncProcessor.prototype.stop = function () {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('stopping sync processor');\n return [4 /*yield*/, this.runningProcesses.close()];\n case 1:\n _a.sent();\n return [4 /*yield*/, this.runningProcesses.open()];\n case 2:\n _a.sent();\n logger.debug('sync processor stopped');\n return [2 /*return*/];\n }\n });\n });\n };\n return SyncProcessor;\n}());\n\n//# sourceMappingURL=sync.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/processors/sync.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js ***! \*******************************************************************/ /*! exports provided: TransformerMutationType, getMetadataFields, generateSelectionSet, getAuthorizationRules, buildSubscriptionGraphQLOperation, buildGraphQLOperation, createMutationInstanceFromModelOperation, predicateToGraphQLCondition, predicateToGraphQLFilter, getUserGroupsFromToken, getModelAuthModes, getForbiddenError, getClientSideAuthError, getTokenForCustomAuth, getIdentifierValue */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TransformerMutationType\", function() { return TransformerMutationType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getMetadataFields\", function() { return getMetadataFields; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"generateSelectionSet\", function() { return generateSelectionSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getAuthorizationRules\", function() { return getAuthorizationRules; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildSubscriptionGraphQLOperation\", function() { return buildSubscriptionGraphQLOperation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildGraphQLOperation\", function() { return buildGraphQLOperation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createMutationInstanceFromModelOperation\", function() { return createMutationInstanceFromModelOperation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"predicateToGraphQLCondition\", function() { return predicateToGraphQLCondition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"predicateToGraphQLFilter\", function() { return predicateToGraphQLFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserGroupsFromToken\", function() { return getUserGroupsFromToken; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getModelAuthModes\", function() { return getModelAuthModes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getForbiddenError\", function() { return getForbiddenError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getClientSideAuthError\", function() { return getClientSideAuthError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getTokenForCustomAuth\", function() { return getTokenForCustomAuth; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getIdentifierValue\", function() { return getIdentifierValue; });\n/* harmony import */ var _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/api-graphql */ \"./node_modules/@aws-amplify/api-graphql/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_api__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/api */ \"./node_modules/@aws-amplify/api/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"Logger\"]('DataStore');\nvar GraphQLOperationType;\n(function (GraphQLOperationType) {\n GraphQLOperationType[\"LIST\"] = \"query\";\n GraphQLOperationType[\"CREATE\"] = \"mutation\";\n GraphQLOperationType[\"UPDATE\"] = \"mutation\";\n GraphQLOperationType[\"DELETE\"] = \"mutation\";\n GraphQLOperationType[\"GET\"] = \"query\";\n})(GraphQLOperationType || (GraphQLOperationType = {}));\nvar TransformerMutationType;\n(function (TransformerMutationType) {\n TransformerMutationType[\"CREATE\"] = \"Create\";\n TransformerMutationType[\"UPDATE\"] = \"Update\";\n TransformerMutationType[\"DELETE\"] = \"Delete\";\n TransformerMutationType[\"GET\"] = \"Get\";\n})(TransformerMutationType || (TransformerMutationType = {}));\nvar dummyMetadata = {\n _version: undefined,\n _lastChangedAt: undefined,\n _deleted: undefined,\n};\nvar metadataFields = (Object.keys(dummyMetadata));\nfunction getMetadataFields() {\n return metadataFields;\n}\nfunction generateSelectionSet(namespace, modelDefinition) {\n var scalarFields = getScalarFields(modelDefinition);\n var nonModelFields = getNonModelFields(namespace, modelDefinition);\n var implicitOwnerField = getImplicitOwnerField(modelDefinition, scalarFields);\n var scalarAndMetadataFields = Object.values(scalarFields)\n .map(function (_a) {\n var name = _a.name;\n return name;\n })\n .concat(implicitOwnerField)\n .concat(nonModelFields);\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isSchemaModel\"])(modelDefinition)) {\n scalarAndMetadataFields = scalarAndMetadataFields\n .concat(getMetadataFields())\n .concat(getConnectionFields(modelDefinition, namespace));\n }\n var result = scalarAndMetadataFields.join('\\n');\n return result;\n}\nfunction getImplicitOwnerField(modelDefinition, scalarFields) {\n var ownerFields = getOwnerFields(modelDefinition);\n if (!scalarFields.owner && ownerFields.includes('owner')) {\n return ['owner'];\n }\n return [];\n}\nfunction getOwnerFields(modelDefinition) {\n var ownerFields = [];\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isSchemaModelWithAttributes\"])(modelDefinition)) {\n modelDefinition.attributes.forEach(function (attr) {\n if (attr.properties && attr.properties.rules) {\n var rule = attr.properties.rules.find(function (rule) { return rule.allow === 'owner'; });\n if (rule && rule.ownerField) {\n ownerFields.push(rule.ownerField);\n }\n }\n });\n }\n return ownerFields;\n}\nfunction getScalarFields(modelDefinition) {\n var fields = modelDefinition.fields;\n var result = Object.values(fields)\n .filter(function (field) {\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isGraphQLScalarType\"])(field.type) || Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isEnumFieldType\"])(field.type)) {\n return true;\n }\n return false;\n })\n .reduce(function (acc, field) {\n acc[field.name] = field;\n return acc;\n }, {});\n return result;\n}\n// Used for generating the selection set for queries and mutations\nfunction getConnectionFields(modelDefinition, namespace) {\n var result = [];\n Object.values(modelDefinition.fields)\n .filter(function (_a) {\n var association = _a.association;\n return association && Object.keys(association).length;\n })\n .forEach(function (_a) {\n var name = _a.name, association = _a.association;\n var connectionType = association.connectionType;\n switch (connectionType) {\n case 'HAS_ONE':\n case 'HAS_MANY':\n // Intentionally blank\n break;\n case 'BELONGS_TO':\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isTargetNameAssociation\"])(association)) {\n // New codegen (CPK)\n if (association.targetNames && association.targetNames.length > 0) {\n // Need to retrieve relations in order to get connected model keys\n var _b = __read(Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"establishRelationAndKeys\"])(namespace), 1), relations = _b[0];\n var connectedModelName = modelDefinition.fields[name].type['model'];\n var byPkIndex = relations[connectedModelName].indexes.find(function (_a) {\n var _b = __read(_a, 1), name = _b[0];\n return name === 'byPk';\n });\n var keyFields = byPkIndex && byPkIndex[1];\n var keyFieldSelectionSet = keyFields === null || keyFields === void 0 ? void 0 : keyFields.join(' ');\n // We rely on `_deleted` when we process the sync query (e.g. in batchSave in the adapters)\n result.push(name + \" { \" + keyFieldSelectionSet + \" _deleted }\");\n }\n else {\n // backwards-compatability for schema generated prior to custom primary key support\n result.push(name + \" { id _deleted }\");\n }\n }\n break;\n default:\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"exhaustiveCheck\"])(connectionType);\n }\n });\n return result;\n}\nfunction getNonModelFields(namespace, modelDefinition) {\n var result = [];\n Object.values(modelDefinition.fields).forEach(function (_a) {\n var name = _a.name, type = _a.type;\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isNonModelFieldType\"])(type)) {\n var typeDefinition = namespace.nonModels[type.nonModel];\n var scalarFields = Object.values(getScalarFields(typeDefinition)).map(function (_a) {\n var name = _a.name;\n return name;\n });\n var nested_1 = [];\n Object.values(typeDefinition.fields).forEach(function (field) {\n var type = field.type, name = field.name;\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isNonModelFieldType\"])(type)) {\n var typeDefinition_1 = namespace.nonModels[type.nonModel];\n nested_1.push(name + \" { \" + generateSelectionSet(namespace, typeDefinition_1) + \" }\");\n }\n });\n result.push(name + \" { \" + scalarFields.join(' ') + \" \" + nested_1.join(' ') + \" }\");\n }\n });\n return result;\n}\nfunction getAuthorizationRules(modelDefinition) {\n // Searching for owner authorization on attributes\n var authConfig = []\n .concat(modelDefinition.attributes)\n .find(function (attr) { return attr && attr.type === 'auth'; });\n var _a = (authConfig || {}).properties, _b = (_a === void 0 ? {} : _a).rules, rules = _b === void 0 ? [] : _b;\n var resultRules = [];\n // Multiple rules can be declared for allow: owner\n rules.forEach(function (rule) {\n // setting defaults for backwards compatibility with old cli\n var _a = rule.identityClaim, identityClaim = _a === void 0 ? 'cognito:username' : _a, _b = rule.ownerField, ownerField = _b === void 0 ? 'owner' : _b, _c = rule.operations, operations = _c === void 0 ? ['create', 'update', 'delete', 'read'] : _c, _d = rule.provider, provider = _d === void 0 ? 'userPools' : _d, _e = rule.groupClaim, groupClaim = _e === void 0 ? 'cognito:groups' : _e, _f = rule.allow, authStrategy = _f === void 0 ? 'iam' : _f, _g = rule.groups, groups = _g === void 0 ? [] : _g;\n var isReadAuthorized = operations.includes('read');\n var isOwnerAuth = authStrategy === 'owner';\n if (!isReadAuthorized && !isOwnerAuth) {\n return;\n }\n var authRule = {\n identityClaim: identityClaim,\n ownerField: ownerField,\n provider: provider,\n groupClaim: groupClaim,\n authStrategy: authStrategy,\n groups: groups,\n areSubscriptionsPublic: false,\n };\n if (isOwnerAuth) {\n // look for the subscription level override\n // only pay attention to the public level\n var modelConfig = []\n .concat(modelDefinition.attributes)\n .find(function (attr) { return attr && attr.type === 'model'; });\n // find the subscriptions level. ON is default\n var _h = (modelConfig || {}).properties, _j = (_h === void 0 ? {} : _h).subscriptions, _k = (_j === void 0 ? {} : _j).level, level = _k === void 0 ? 'on' : _k;\n // treat subscriptions as public for owner auth with unprotected reads\n // when `read` is omitted from `operations`\n authRule.areSubscriptionsPublic =\n !operations.includes('read') || level === 'public';\n }\n if (isOwnerAuth) {\n // owner rules has least priority\n resultRules.push(authRule);\n return;\n }\n resultRules.unshift(authRule);\n });\n return resultRules;\n}\nfunction buildSubscriptionGraphQLOperation(namespace, modelDefinition, transformerMutationType, isOwnerAuthorization, ownerField) {\n var selectionSet = generateSelectionSet(namespace, modelDefinition);\n var typeName = modelDefinition.name, pluralTypeName = modelDefinition.pluralName;\n var opName = \"on\" + transformerMutationType + typeName;\n var docArgs = '';\n var opArgs = '';\n if (isOwnerAuthorization) {\n docArgs = \"($\" + ownerField + \": String!)\";\n opArgs = \"(\" + ownerField + \": $\" + ownerField + \")\";\n }\n return [\n transformerMutationType,\n opName,\n \"subscription operation\" + docArgs + \"{\\n\\t\\t\\t\" + opName + opArgs + \"{\\n\\t\\t\\t\\t\" + selectionSet + \"\\n\\t\\t\\t}\\n\\t\\t}\",\n ];\n}\nfunction buildGraphQLOperation(namespace, modelDefinition, graphQLOpType) {\n var selectionSet = generateSelectionSet(namespace, modelDefinition);\n var typeName = modelDefinition.name, pluralTypeName = modelDefinition.pluralName;\n var operation;\n var documentArgs = ' ';\n var operationArgs = ' ';\n var transformerMutationType;\n switch (graphQLOpType) {\n case 'LIST':\n operation = \"sync\" + pluralTypeName;\n documentArgs = \"($limit: Int, $nextToken: String, $lastSync: AWSTimestamp, $filter: Model\" + typeName + \"FilterInput)\";\n operationArgs =\n '(limit: $limit, nextToken: $nextToken, lastSync: $lastSync, filter: $filter)';\n selectionSet = \"items {\\n\\t\\t\\t\\t\\t\\t\\t\" + selectionSet + \"\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\tnextToken\\n\\t\\t\\t\\t\\t\\tstartedAt\";\n break;\n case 'CREATE':\n operation = \"create\" + typeName;\n documentArgs = \"($input: Create\" + typeName + \"Input!)\";\n operationArgs = '(input: $input)';\n transformerMutationType = TransformerMutationType.CREATE;\n break;\n case 'UPDATE':\n operation = \"update\" + typeName;\n documentArgs = \"($input: Update\" + typeName + \"Input!, $condition: Model\" + typeName + \"ConditionInput)\";\n operationArgs = '(input: $input, condition: $condition)';\n transformerMutationType = TransformerMutationType.UPDATE;\n break;\n case 'DELETE':\n operation = \"delete\" + typeName;\n documentArgs = \"($input: Delete\" + typeName + \"Input!, $condition: Model\" + typeName + \"ConditionInput)\";\n operationArgs = '(input: $input, condition: $condition)';\n transformerMutationType = TransformerMutationType.DELETE;\n break;\n case 'GET':\n operation = \"get\" + typeName;\n documentArgs = \"($id: ID!)\";\n operationArgs = '(id: $id)';\n transformerMutationType = TransformerMutationType.GET;\n break;\n default:\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"exhaustiveCheck\"])(graphQLOpType);\n }\n return [\n [\n transformerMutationType,\n operation,\n GraphQLOperationType[graphQLOpType] + \" operation\" + documentArgs + \"{\\n\\t\\t\" + operation + operationArgs + \"{\\n\\t\\t\\t\" + selectionSet + \"\\n\\t\\t}\\n\\t}\",\n ],\n ];\n}\nfunction createMutationInstanceFromModelOperation(relationships, modelDefinition, opType, model, element, condition, MutationEventConstructor, modelInstanceCreator, id) {\n var operation;\n switch (opType) {\n case _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].INSERT:\n operation = TransformerMutationType.CREATE;\n break;\n case _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].UPDATE:\n operation = TransformerMutationType.UPDATE;\n break;\n case _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].DELETE:\n operation = TransformerMutationType.DELETE;\n break;\n default:\n Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"exhaustiveCheck\"])(opType);\n }\n // stringify nested objects of type AWSJSON\n // this allows us to return parsed JSON to users (see `castInstanceType()` in datastore.ts),\n // but still send the object correctly over the wire\n var replacer = function (k, v) {\n var isAWSJSON = k &&\n v !== null &&\n typeof v === 'object' &&\n modelDefinition.fields[k] &&\n modelDefinition.fields[k].type === 'AWSJSON';\n if (isAWSJSON) {\n return JSON.stringify(v);\n }\n return v;\n };\n var modelId = getIdentifierValue(modelDefinition, element);\n var optionalId = _types__WEBPACK_IMPORTED_MODULE_3__[\"OpType\"].INSERT && id ? { id: id } : {};\n var mutationEvent = modelInstanceCreator(MutationEventConstructor, __assign(__assign({}, optionalId), { data: JSON.stringify(element, replacer), modelId: modelId, model: model.name, operation: operation, condition: JSON.stringify(condition) }));\n return mutationEvent;\n}\nfunction predicateToGraphQLCondition(predicate, modelDefinition) {\n var result = {};\n if (!predicate || !Array.isArray(predicate.predicates)) {\n return result;\n }\n var keyFields = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n predicate.predicates.forEach(function (p) {\n var _a;\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isPredicateObj\"])(p)) {\n var field = p.field, operator = p.operator, operand = p.operand;\n // This is compatible with how the GQL Transform currently generates the Condition Input,\n // i.e. any PK and SK fields are omitted and can't be used as conditions.\n // However, I think this limits usability.\n // What if we want to delete all records where SK > some value\n // Or all records where PK = some value but SKs are different values\n // TODO: if the Transform gets updated ^ we'll need to modify this logic to only omit\n // key fields from the predicate/condition when ALL of the keyFields are present and using `eq` operators\n if (keyFields.includes(field)) {\n return;\n }\n result[field] = (_a = {}, _a[operator] = operand, _a);\n }\n else {\n result[p.type] = predicateToGraphQLCondition(p, modelDefinition);\n }\n });\n return result;\n}\nfunction predicateToGraphQLFilter(predicatesGroup) {\n var result = {};\n if (!predicatesGroup || !Array.isArray(predicatesGroup.predicates)) {\n return result;\n }\n var type = predicatesGroup.type, predicates = predicatesGroup.predicates;\n var isList = type === 'and' || type === 'or';\n result[type] = isList ? [] : {};\n var appendToFilter = function (value) {\n return isList ? result[type].push(value) : (result[type] = value);\n };\n predicates.forEach(function (predicate) {\n var _a, _b;\n if (Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isPredicateObj\"])(predicate)) {\n var field = predicate.field, operator = predicate.operator, operand = predicate.operand;\n var gqlField = (_a = {},\n _a[field] = (_b = {}, _b[operator] = operand, _b),\n _a);\n appendToFilter(gqlField);\n return;\n }\n appendToFilter(predicateToGraphQLFilter(predicate));\n });\n return result;\n}\nfunction getUserGroupsFromToken(token, rule) {\n // validate token against groupClaim\n var userGroups = token[rule.groupClaim] || [];\n if (typeof userGroups === 'string') {\n var parsedGroups = void 0;\n try {\n parsedGroups = JSON.parse(userGroups);\n }\n catch (e) {\n parsedGroups = userGroups;\n }\n userGroups = [].concat(parsedGroups);\n }\n return userGroups;\n}\nfunction getModelAuthModes(_a) {\n var authModeStrategy = _a.authModeStrategy, defaultAuthMode = _a.defaultAuthMode, modelName = _a.modelName, schema = _a.schema;\n return __awaiter(this, void 0, void 0, function () {\n var operations, modelAuthModes, error_1;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n operations = Object.values(_types__WEBPACK_IMPORTED_MODULE_3__[\"ModelOperation\"]);\n modelAuthModes = {\n CREATE: [],\n READ: [],\n UPDATE: [],\n DELETE: [],\n };\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 4]);\n return [4 /*yield*/, Promise.all(operations.map(function (operation) { return __awaiter(_this, void 0, void 0, function () {\n var authModes;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, authModeStrategy({\n schema: schema,\n modelName: modelName,\n operation: operation,\n })];\n case 1:\n authModes = _a.sent();\n if (typeof authModes === 'string') {\n modelAuthModes[operation] = [authModes];\n }\n else if (Array.isArray(authModes) && authModes.length) {\n modelAuthModes[operation] = authModes;\n }\n else {\n // Use default auth mode if nothing is returned from authModeStrategy\n modelAuthModes[operation] = [defaultAuthMode];\n }\n return [2 /*return*/];\n }\n });\n }); }))];\n case 2:\n _b.sent();\n return [3 /*break*/, 4];\n case 3:\n error_1 = _b.sent();\n logger.debug(\"Error getting auth modes for model: \" + modelName, error_1);\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/, modelAuthModes];\n }\n });\n });\n}\nfunction getForbiddenError(error) {\n var forbiddenErrorMessages = [\n 'Request failed with status code 401',\n 'Request failed with status code 403',\n ];\n var forbiddenError;\n if (error && error.errors) {\n forbiddenError = error.errors.find(function (err) {\n return forbiddenErrorMessages.includes(err.message);\n });\n }\n else if (error && error.message) {\n forbiddenError = error;\n }\n if (forbiddenError) {\n return forbiddenError.message;\n }\n return null;\n}\nfunction getClientSideAuthError(error) {\n var clientSideAuthErrors = Object.values(_aws_amplify_api__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLAuthError\"]);\n var clientSideError = error &&\n error.message &&\n clientSideAuthErrors.find(function (clientError) {\n return error.message.includes(clientError);\n });\n return clientSideError || null;\n}\nfunction getTokenForCustomAuth(authMode, amplifyConfig) {\n if (amplifyConfig === void 0) { amplifyConfig = {}; }\n return __awaiter(this, void 0, void 0, function () {\n var _a, functionAuthProvider, token, error_2;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!(authMode === _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"].AWS_LAMBDA)) return [3 /*break*/, 6];\n _a = amplifyConfig.authProviders, functionAuthProvider = (_a === void 0 ? { functionAuthProvider: null } : _a).functionAuthProvider;\n if (!(functionAuthProvider && typeof functionAuthProvider === 'function')) return [3 /*break*/, 5];\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 4]);\n return [4 /*yield*/, functionAuthProvider()];\n case 2:\n token = (_b.sent()).token;\n return [2 /*return*/, token];\n case 3:\n error_2 = _b.sent();\n throw new Error(\"Error retrieving token from `functionAuthProvider`: \" + error_2);\n case 4: return [3 /*break*/, 6];\n case 5: \n // TODO: add docs link once available\n throw new Error(\"You must provide a `functionAuthProvider` function to `DataStore.configure` when using \" + _aws_amplify_api_graphql__WEBPACK_IMPORTED_MODULE_0__[\"GRAPHQL_AUTH_MODE\"].AWS_LAMBDA);\n case 6: return [2 /*return*/];\n }\n });\n });\n}\n// Util that takes a modelDefinition and model and returns either the id value(s) or the custom primary key value(s)\nfunction getIdentifierValue(modelDefinition, model) {\n var pkFieldNames = Object(_util__WEBPACK_IMPORTED_MODULE_4__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n var idOrPk = pkFieldNames.map(function (f) { return model[f]; }).join(_util__WEBPACK_IMPORTED_MODULE_4__[\"IDENTIFIER_KEY_SEPARATOR\"]);\n return idOrPk;\n}\n//# sourceMappingURL=utils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/sync/utils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/types.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/types.js ***! \**************************************************************/ /*! exports provided: isSchemaModel, isSchemaModelWithAttributes, isAssociatedWith, isTargetNameAssociation, isModelAttributeAuth, isModelAttributeKey, isModelAttributePrimaryKey, isModelAttributeCompositeKey, ModelAttributeAuthAllow, ModelAttributeAuthProvider, GraphQLScalarType, isGraphQLScalarType, isModelFieldType, isNonModelFieldType, isEnumFieldType, isIdentifierObject, OpType, isPredicateObj, isPredicateGroup, QueryOne, SortDirection, AuthModeStrategyType, ModelOperation, syncExpression, ProcessName, DISCARD, LimitTimerRaceResolvedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSchemaModel\", function() { return isSchemaModel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSchemaModelWithAttributes\", function() { return isSchemaModelWithAttributes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAssociatedWith\", function() { return isAssociatedWith; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTargetNameAssociation\", function() { return isTargetNameAssociation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isModelAttributeAuth\", function() { return isModelAttributeAuth; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isModelAttributeKey\", function() { return isModelAttributeKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isModelAttributePrimaryKey\", function() { return isModelAttributePrimaryKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isModelAttributeCompositeKey\", function() { return isModelAttributeCompositeKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ModelAttributeAuthAllow\", function() { return ModelAttributeAuthAllow; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ModelAttributeAuthProvider\", function() { return ModelAttributeAuthProvider; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLScalarType\", function() { return GraphQLScalarType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isGraphQLScalarType\", function() { return isGraphQLScalarType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isModelFieldType\", function() { return isModelFieldType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isNonModelFieldType\", function() { return isNonModelFieldType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isEnumFieldType\", function() { return isEnumFieldType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIdentifierObject\", function() { return isIdentifierObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OpType\", function() { return OpType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isPredicateObj\", function() { return isPredicateObj; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isPredicateGroup\", function() { return isPredicateGroup; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QueryOne\", function() { return QueryOne; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SortDirection\", function() { return SortDirection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AuthModeStrategyType\", function() { return AuthModeStrategyType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ModelOperation\", function() { return ModelOperation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"syncExpression\", function() { return syncExpression; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProcessName\", function() { return ProcessName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DISCARD\", function() { return DISCARD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LimitTimerRaceResolvedValues\", function() { return LimitTimerRaceResolvedValues; });\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util */ \"./node_modules/@aws-amplify/datastore/lib-esm/util.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\nfunction isSchemaModel(obj) {\n return obj && obj.pluralName !== undefined;\n}\nfunction isSchemaModelWithAttributes(m) {\n return isSchemaModel(m) && m.attributes !== undefined;\n}\nfunction isAssociatedWith(obj) {\n return obj && obj.associatedWith;\n}\nfunction isTargetNameAssociation(obj) {\n return (obj === null || obj === void 0 ? void 0 : obj.targetName) || (obj === null || obj === void 0 ? void 0 : obj.targetNames);\n}\nfunction isModelAttributeAuth(attr) {\n return (attr.type === 'auth' &&\n attr.properties &&\n attr.properties.rules &&\n attr.properties.rules.length > 0);\n}\nfunction isModelAttributeKey(attr) {\n return (attr.type === 'key' &&\n attr.properties &&\n attr.properties.fields &&\n attr.properties.fields.length > 0);\n}\nfunction isModelAttributePrimaryKey(attr) {\n return isModelAttributeKey(attr) && attr.properties.name === undefined;\n}\nfunction isModelAttributeCompositeKey(attr) {\n return (isModelAttributeKey(attr) &&\n attr.properties.name !== undefined &&\n attr.properties.fields.length > 2);\n}\nvar ModelAttributeAuthAllow;\n(function (ModelAttributeAuthAllow) {\n ModelAttributeAuthAllow[\"CUSTOM\"] = \"custom\";\n ModelAttributeAuthAllow[\"OWNER\"] = \"owner\";\n ModelAttributeAuthAllow[\"GROUPS\"] = \"groups\";\n ModelAttributeAuthAllow[\"PRIVATE\"] = \"private\";\n ModelAttributeAuthAllow[\"PUBLIC\"] = \"public\";\n})(ModelAttributeAuthAllow || (ModelAttributeAuthAllow = {}));\nvar ModelAttributeAuthProvider;\n(function (ModelAttributeAuthProvider) {\n ModelAttributeAuthProvider[\"FUNCTION\"] = \"function\";\n ModelAttributeAuthProvider[\"USER_POOLS\"] = \"userPools\";\n ModelAttributeAuthProvider[\"OIDC\"] = \"oidc\";\n ModelAttributeAuthProvider[\"IAM\"] = \"iam\";\n ModelAttributeAuthProvider[\"API_KEY\"] = \"apiKey\";\n})(ModelAttributeAuthProvider || (ModelAttributeAuthProvider = {}));\nvar GraphQLScalarType;\n(function (GraphQLScalarType) {\n GraphQLScalarType[GraphQLScalarType[\"ID\"] = 0] = \"ID\";\n GraphQLScalarType[GraphQLScalarType[\"String\"] = 1] = \"String\";\n GraphQLScalarType[GraphQLScalarType[\"Int\"] = 2] = \"Int\";\n GraphQLScalarType[GraphQLScalarType[\"Float\"] = 3] = \"Float\";\n GraphQLScalarType[GraphQLScalarType[\"Boolean\"] = 4] = \"Boolean\";\n GraphQLScalarType[GraphQLScalarType[\"AWSDate\"] = 5] = \"AWSDate\";\n GraphQLScalarType[GraphQLScalarType[\"AWSTime\"] = 6] = \"AWSTime\";\n GraphQLScalarType[GraphQLScalarType[\"AWSDateTime\"] = 7] = \"AWSDateTime\";\n GraphQLScalarType[GraphQLScalarType[\"AWSTimestamp\"] = 8] = \"AWSTimestamp\";\n GraphQLScalarType[GraphQLScalarType[\"AWSEmail\"] = 9] = \"AWSEmail\";\n GraphQLScalarType[GraphQLScalarType[\"AWSJSON\"] = 10] = \"AWSJSON\";\n GraphQLScalarType[GraphQLScalarType[\"AWSURL\"] = 11] = \"AWSURL\";\n GraphQLScalarType[GraphQLScalarType[\"AWSPhone\"] = 12] = \"AWSPhone\";\n GraphQLScalarType[GraphQLScalarType[\"AWSIPAddress\"] = 13] = \"AWSIPAddress\";\n})(GraphQLScalarType || (GraphQLScalarType = {}));\n(function (GraphQLScalarType) {\n function getJSType(scalar) {\n switch (scalar) {\n case 'Boolean':\n return 'boolean';\n case 'ID':\n case 'String':\n case 'AWSDate':\n case 'AWSTime':\n case 'AWSDateTime':\n case 'AWSEmail':\n case 'AWSURL':\n case 'AWSPhone':\n case 'AWSIPAddress':\n return 'string';\n case 'Int':\n case 'Float':\n case 'AWSTimestamp':\n return 'number';\n case 'AWSJSON':\n return 'object';\n default:\n Object(_util__WEBPACK_IMPORTED_MODULE_0__[\"exhaustiveCheck\"])(scalar);\n }\n }\n GraphQLScalarType.getJSType = getJSType;\n function getValidationFunction(scalar) {\n switch (scalar) {\n case 'AWSDate':\n return _util__WEBPACK_IMPORTED_MODULE_0__[\"isAWSDate\"];\n case 'AWSTime':\n return _util__WEBPACK_IMPORTED_MODULE_0__[\"isAWSTime\"];\n case 'AWSDateTime':\n return _util__WEBPACK_IMPORTED_MODULE_0__[\"isAWSDateTime\"];\n case 'AWSTimestamp':\n return _util__WEBPACK_IMPORTED_MODULE_0__[\"isAWSTimestamp\"];\n case 'AWSEmail':\n return _util__WEBPACK_IMPORTED_MODULE_0__[\"isAWSEmail\"];\n case 'AWSJSON':\n return _util__WEBPACK_IMPORTED_MODULE_0__[\"isAWSJSON\"];\n case 'AWSURL':\n return _util__WEBPACK_IMPORTED_MODULE_0__[\"isAWSURL\"];\n case 'AWSPhone':\n return _util__WEBPACK_IMPORTED_MODULE_0__[\"isAWSPhone\"];\n case 'AWSIPAddress':\n return _util__WEBPACK_IMPORTED_MODULE_0__[\"isAWSIPAddress\"];\n default:\n return undefined;\n }\n }\n GraphQLScalarType.getValidationFunction = getValidationFunction;\n})(GraphQLScalarType || (GraphQLScalarType = {}));\nfunction isGraphQLScalarType(obj) {\n return obj && GraphQLScalarType[obj] !== undefined;\n}\nfunction isModelFieldType(obj) {\n var modelField = 'model';\n if (obj && obj[modelField])\n return true;\n return false;\n}\nfunction isNonModelFieldType(obj) {\n var typeField = 'nonModel';\n if (obj && obj[typeField])\n return true;\n return false;\n}\nfunction isEnumFieldType(obj) {\n var modelField = 'enum';\n if (obj && obj[modelField])\n return true;\n return false;\n}\nfunction isIdentifierObject(obj, modelDefinition) {\n var keys = Object(_util__WEBPACK_IMPORTED_MODULE_0__[\"extractPrimaryKeyFieldNames\"])(modelDefinition);\n return (typeof obj === 'object' && obj && keys.every(function (k) { return obj[k] !== undefined; }));\n}\n//#endregion\n//#region Subscription messages\nvar OpType;\n(function (OpType) {\n OpType[\"INSERT\"] = \"INSERT\";\n OpType[\"UPDATE\"] = \"UPDATE\";\n OpType[\"DELETE\"] = \"DELETE\";\n})(OpType || (OpType = {}));\nfunction isPredicateObj(obj) {\n return obj && obj.field !== undefined;\n}\nfunction isPredicateGroup(obj) {\n return obj && obj.type !== undefined;\n}\nvar QueryOne;\n(function (QueryOne) {\n QueryOne[QueryOne[\"FIRST\"] = 0] = \"FIRST\";\n QueryOne[QueryOne[\"LAST\"] = 1] = \"LAST\";\n})(QueryOne || (QueryOne = {}));\nvar SortDirection;\n(function (SortDirection) {\n SortDirection[\"ASCENDING\"] = \"ASCENDING\";\n SortDirection[\"DESCENDING\"] = \"DESCENDING\";\n})(SortDirection || (SortDirection = {}));\nvar AuthModeStrategyType;\n(function (AuthModeStrategyType) {\n AuthModeStrategyType[\"DEFAULT\"] = \"DEFAULT\";\n AuthModeStrategyType[\"MULTI_AUTH\"] = \"MULTI_AUTH\";\n})(AuthModeStrategyType || (AuthModeStrategyType = {}));\nvar ModelOperation;\n(function (ModelOperation) {\n ModelOperation[\"CREATE\"] = \"CREATE\";\n ModelOperation[\"READ\"] = \"READ\";\n ModelOperation[\"UPDATE\"] = \"UPDATE\";\n ModelOperation[\"DELETE\"] = \"DELETE\";\n})(ModelOperation || (ModelOperation = {}));\nfunction syncExpression(modelConstructor, conditionProducer) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, {\n modelConstructor: modelConstructor,\n conditionProducer: conditionProducer,\n }];\n });\n });\n}\nvar ProcessName;\n(function (ProcessName) {\n ProcessName[\"sync\"] = \"sync\";\n ProcessName[\"mutate\"] = \"mutate\";\n ProcessName[\"subscribe\"] = \"subscribe\";\n})(ProcessName || (ProcessName = {}));\nvar DISCARD = Symbol('DISCARD');\nvar LimitTimerRaceResolvedValues;\n(function (LimitTimerRaceResolvedValues) {\n LimitTimerRaceResolvedValues[\"LIMIT\"] = \"LIMIT\";\n LimitTimerRaceResolvedValues[\"TIMER\"] = \"TIMER\";\n})(LimitTimerRaceResolvedValues || (LimitTimerRaceResolvedValues = {}));\n//# sourceMappingURL=types.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/types.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/lib-esm/util.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/lib-esm/util.js ***! \*************************************************************/ /*! exports provided: ID, DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR, IDENTIFIER_KEY_SEPARATOR, errorMessages, NAMESPACES, USER, SYNC, STORAGE, DATASTORE, USER_AGENT_SUFFIX_DATASTORE, exhaustiveCheck, isNullOrUndefined, validatePredicate, validatePredicateField, isModelConstructor, registerNonModelClass, isNonModelConstructor, traverseModel, isPrivateMode, isSafariCompatabilityMode, monotonicUlidFactory, getNow, sortCompareFunction, valuesEqual, isAWSDate, isAWSTime, isAWSDateTime, isAWSTimestamp, isAWSEmail, isAWSJSON, isAWSURL, isAWSPhone, isAWSIPAddress, DeferredPromise, DeferredCallbackResolver, mergePatches, getStorename, processCompositeKeys, extractKeyIfExists, extractPrimaryKeyFieldNames, extractPrimaryKeyValues, extractPrimaryKeysAndValues, isIdManaged, isIdOptionallyManaged, establishRelationAndKeys, getIndex, getIndexFromAssociation, extractTargetNamesFromSrc, indexNameFromKeys, keysEqual, getIndexKeys */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ID\", function() { return ID; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR\", function() { return DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IDENTIFIER_KEY_SEPARATOR\", function() { return IDENTIFIER_KEY_SEPARATOR; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"errorMessages\", function() { return errorMessages; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NAMESPACES\", function() { return NAMESPACES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"USER\", function() { return USER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SYNC\", function() { return SYNC; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"STORAGE\", function() { return STORAGE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DATASTORE\", function() { return DATASTORE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"USER_AGENT_SUFFIX_DATASTORE\", function() { return USER_AGENT_SUFFIX_DATASTORE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"exhaustiveCheck\", function() { return exhaustiveCheck; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isNullOrUndefined\", function() { return isNullOrUndefined; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validatePredicate\", function() { return validatePredicate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validatePredicateField\", function() { return validatePredicateField; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isModelConstructor\", function() { return isModelConstructor; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"registerNonModelClass\", function() { return registerNonModelClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isNonModelConstructor\", function() { return isNonModelConstructor; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"traverseModel\", function() { return traverseModel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isPrivateMode\", function() { return isPrivateMode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSafariCompatabilityMode\", function() { return isSafariCompatabilityMode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"monotonicUlidFactory\", function() { return monotonicUlidFactory; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getNow\", function() { return getNow; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"sortCompareFunction\", function() { return sortCompareFunction; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"valuesEqual\", function() { return valuesEqual; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAWSDate\", function() { return isAWSDate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAWSTime\", function() { return isAWSTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAWSDateTime\", function() { return isAWSDateTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAWSTimestamp\", function() { return isAWSTimestamp; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAWSEmail\", function() { return isAWSEmail; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAWSJSON\", function() { return isAWSJSON; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAWSURL\", function() { return isAWSURL; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAWSPhone\", function() { return isAWSPhone; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAWSIPAddress\", function() { return isAWSIPAddress; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeferredPromise\", function() { return DeferredPromise; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeferredCallbackResolver\", function() { return DeferredCallbackResolver; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mergePatches\", function() { return mergePatches; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getStorename\", function() { return getStorename; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"processCompositeKeys\", function() { return processCompositeKeys; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extractKeyIfExists\", function() { return extractKeyIfExists; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extractPrimaryKeyFieldNames\", function() { return extractPrimaryKeyFieldNames; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extractPrimaryKeyValues\", function() { return extractPrimaryKeyValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extractPrimaryKeysAndValues\", function() { return extractPrimaryKeysAndValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIdManaged\", function() { return isIdManaged; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIdOptionallyManaged\", function() { return isIdOptionallyManaged; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"establishRelationAndKeys\", function() { return establishRelationAndKeys; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getIndex\", function() { return getIndex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getIndexFromAssociation\", function() { return getIndexFromAssociation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extractTargetNamesFromSrc\", function() { return extractTargetNamesFromSrc; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"indexNameFromKeys\", function() { return indexNameFromKeys; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"keysEqual\", function() { return keysEqual; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getIndexKeys\", function() { return getIndexKeys; });\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! buffer */ \"./node_modules/buffer/index.js\");\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(buffer__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var ulid__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ulid */ \"./node_modules/ulid/dist/index.esm.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! uuid */ \"./node_modules/@aws-amplify/datastore/node_modules/uuid/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var immer__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! immer */ \"./node_modules/immer/dist/immer.esm.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-amplify/datastore/lib-esm/types.js\");\n/* harmony import */ var amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! amazon-cognito-identity-js */ \"./node_modules/amazon-cognito-identity-js/es/index.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\n\n\n\nvar ID = 'id';\n/**\n * Used by the Async Storage Adapter to concatenate key values\n * for a record. For instance, if a model has the following keys:\n * `customId: ID! @primaryKey(sortKeyFields: [\"createdAt\"])`,\n * we concatenate the `customId` and `createdAt` as:\n * `12-234-5#2022-09-28T00:00:00.000Z`\n */\nvar DEFAULT_PRIMARY_KEY_VALUE_SEPARATOR = '#';\n/**\n * Used for generating spinal-cased index name from an array of\n * key field names.\n * E.g. for keys `[id, title]` => 'id-title'\n */\nvar IDENTIFIER_KEY_SEPARATOR = '-';\nvar errorMessages = {\n idEmptyString: 'An index field cannot contain an empty string value',\n queryByPkWithCompositeKeyPresent: 'Models with composite primary keys cannot be queried by a single key value. Use object literal syntax for composite keys instead: https://docs.amplify.aws/lib/datastore/advanced-workflows/q/platform/js/#querying-records-with-custom-primary-keys',\n deleteByPkWithCompositeKeyPresent: 'Models with composite primary keys cannot be deleted by a single key value, unless using a predicate. Use object literal syntax for composite keys instead: https://docs.amplify.aws/lib/datastore/advanced-workflows/q/platform/js/#querying-records-with-custom-primary-keys',\n observeWithObjectLiteral: 'Object literal syntax cannot be used with observe. Use a predicate instead: https://docs.amplify.aws/lib/datastore/data-access/q/platform/js/#predicates',\n};\nvar NAMESPACES;\n(function (NAMESPACES) {\n NAMESPACES[\"DATASTORE\"] = \"datastore\";\n NAMESPACES[\"USER\"] = \"user\";\n NAMESPACES[\"SYNC\"] = \"sync\";\n NAMESPACES[\"STORAGE\"] = \"storage\";\n})(NAMESPACES || (NAMESPACES = {}));\nvar DATASTORE = NAMESPACES.DATASTORE;\nvar USER = NAMESPACES.USER;\nvar SYNC = NAMESPACES.SYNC;\nvar STORAGE = NAMESPACES.STORAGE;\n\nvar USER_AGENT_SUFFIX_DATASTORE = '/DataStore';\nvar exhaustiveCheck = function (obj, throwOnError) {\n if (throwOnError === void 0) { throwOnError = true; }\n if (throwOnError) {\n throw new Error(\"Invalid \" + obj);\n }\n};\nvar isNullOrUndefined = function (val) {\n return typeof val === 'undefined' || val === undefined || val === null;\n};\nvar validatePredicate = function (model, groupType, predicatesOrGroups) {\n var filterType;\n var isNegation = false;\n if (predicatesOrGroups.length === 0) {\n return true;\n }\n switch (groupType) {\n case 'not':\n filterType = 'every';\n isNegation = true;\n break;\n case 'and':\n filterType = 'every';\n break;\n case 'or':\n filterType = 'some';\n break;\n default:\n exhaustiveCheck(groupType);\n }\n var result = predicatesOrGroups[filterType](function (predicateOrGroup) {\n if (Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isPredicateObj\"])(predicateOrGroup)) {\n var field = predicateOrGroup.field, operator = predicateOrGroup.operator, operand = predicateOrGroup.operand;\n var value = model[field];\n return validatePredicateField(value, operator, operand);\n }\n if (Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isPredicateGroup\"])(predicateOrGroup)) {\n var type = predicateOrGroup.type, predicates = predicateOrGroup.predicates;\n return validatePredicate(model, type, predicates);\n }\n throw new Error('Not a predicate or group');\n });\n return isNegation ? !result : result;\n};\nvar validatePredicateField = function (value, operator, operand) {\n switch (operator) {\n case 'ne':\n return value !== operand;\n case 'eq':\n return value === operand;\n case 'le':\n return value <= operand;\n case 'lt':\n return value < operand;\n case 'ge':\n return value >= operand;\n case 'gt':\n return value > operand;\n case 'between':\n var _c = __read(operand, 2), min = _c[0], max = _c[1];\n return value >= min && value <= max;\n case 'beginsWith':\n return (!isNullOrUndefined(value) &&\n value.startsWith(operand));\n case 'contains':\n return (!isNullOrUndefined(value) &&\n value.indexOf(operand) > -1);\n case 'notContains':\n return (isNullOrUndefined(value) ||\n value.indexOf(operand) === -1);\n default:\n exhaustiveCheck(operator, false);\n return false;\n }\n};\nvar isModelConstructor = function (obj) {\n return (obj && typeof obj.copyOf === 'function');\n};\nvar nonModelClasses = new WeakSet();\nfunction registerNonModelClass(clazz) {\n nonModelClasses.add(clazz);\n}\nvar isNonModelConstructor = function (obj) {\n return nonModelClasses.has(obj);\n};\nvar topologicallySortedModels = new WeakMap();\nvar traverseModel = function (srcModelName, instance, namespace, modelInstanceCreator, getModelConstructorByModelName) {\n var relationships = namespace.relationships;\n var modelConstructor = getModelConstructorByModelName(namespace.name, srcModelName);\n var relation = relationships[srcModelName];\n var result = [];\n var newInstance = modelConstructor.copyOf(instance, function (draftInstance) {\n relation.relationTypes.forEach(function (rItem) {\n var modelConstructor = getModelConstructorByModelName(namespace.name, rItem.modelName);\n switch (rItem.relationType) {\n case 'HAS_ONE':\n if (instance[rItem.fieldName]) {\n var modelInstance = void 0;\n try {\n modelInstance = modelInstanceCreator(modelConstructor, instance[rItem.fieldName]);\n }\n catch (error) {\n // Do nothing\n console.log(error);\n }\n result.push({\n modelName: rItem.modelName,\n item: instance[rItem.fieldName],\n instance: modelInstance,\n });\n var targetNames = extractTargetNamesFromSrc(rItem);\n // `targetName` will be defined for Has One if feature flag\n // https://docs.amplify.aws/cli/reference/feature-flags/#useAppsyncModelgenPlugin\n // is true (default as of 5/7/21)\n // Making this conditional for backward-compatibility\n if (targetNames) {\n targetNames.forEach(function (targetName, idx) {\n // Get the connected record\n var relatedRecordInProxy = (draftInstance[rItem.fieldName]);\n // Previously, we used the hardcoded 'id' as they key,\n // now we need the value of the key to get the PK (and SK)\n // values from the related record\n var primaryKey = namespace.keys[modelConstructor.name].primaryKey;\n var keyField = primaryKey && primaryKey[idx];\n // Get the value\n var relatedRecordInProxyPkValue = relatedRecordInProxy[keyField];\n // Set the targetName value\n draftInstance[targetName] = relatedRecordInProxyPkValue;\n });\n // Delete the instance from the proxy\n delete draftInstance[rItem.fieldName];\n }\n else {\n draftInstance[rItem.fieldName] = (draftInstance[rItem.fieldName]).id;\n }\n }\n break;\n case 'BELONGS_TO':\n if (instance[rItem.fieldName]) {\n var modelInstance = void 0;\n try {\n modelInstance = modelInstanceCreator(modelConstructor, instance[rItem.fieldName]);\n }\n catch (error) {\n // Do nothing\n }\n var isDeleted = (draftInstance[rItem.fieldName])._deleted;\n if (!isDeleted) {\n result.push({\n modelName: rItem.modelName,\n item: instance[rItem.fieldName],\n instance: modelInstance,\n });\n }\n }\n if (draftInstance[rItem.fieldName]) {\n var targetNames = extractTargetNamesFromSrc(rItem);\n if (targetNames) {\n targetNames.forEach(function (targetName, idx) {\n // Get the connected record\n var relatedRecordInProxy = (draftInstance[rItem.fieldName]);\n // Previously, we used the hardcoded `id` for the key.\n // Now, we need the value of the key to get the PK (and SK)\n // values from the related record\n var primaryKey = namespace.keys[modelConstructor.name].primaryKey;\n // fall back to ID if\n var keyField = primaryKey && primaryKey[idx];\n // Get the value\n var relatedRecordInProxyPkValue = relatedRecordInProxy[keyField];\n // Set the targetName value\n draftInstance[targetName] = relatedRecordInProxyPkValue;\n });\n // Delete the instance from the proxy\n delete draftInstance[rItem.fieldName];\n }\n }\n break;\n case 'HAS_MANY':\n // Intentionally blank\n break;\n default:\n exhaustiveCheck(rItem.relationType);\n break;\n }\n });\n });\n result.unshift({\n modelName: srcModelName,\n item: newInstance,\n instance: newInstance,\n });\n if (!topologicallySortedModels.has(namespace)) {\n topologicallySortedModels.set(namespace, Array.from(namespace.modelTopologicalOrdering.keys()));\n }\n var sortedModels = topologicallySortedModels.get(namespace);\n result.sort(function (a, b) {\n return (sortedModels.indexOf(a.modelName) - sortedModels.indexOf(b.modelName));\n });\n return result;\n};\nvar privateModeCheckResult;\nvar isPrivateMode = function () {\n return new Promise(function (resolve) {\n var dbname = Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])();\n var db;\n var isPrivate = function () {\n privateModeCheckResult = false;\n resolve(true);\n };\n var isNotPrivate = function () { return __awaiter(void 0, void 0, void 0, function () {\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (!(db && db.result && typeof db.result.close === 'function')) return [3 /*break*/, 2];\n return [4 /*yield*/, db.result.close()];\n case 1:\n _c.sent();\n _c.label = 2;\n case 2: return [4 /*yield*/, indexedDB.deleteDatabase(dbname)];\n case 3:\n _c.sent();\n privateModeCheckResult = true;\n return [2 /*return*/, resolve(false)];\n }\n });\n }); };\n if (privateModeCheckResult === true) {\n return isNotPrivate();\n }\n if (privateModeCheckResult === false) {\n return isPrivate();\n }\n if (indexedDB === null)\n return isPrivate();\n db = indexedDB.open(dbname);\n db.onerror = isPrivate;\n db.onsuccess = isNotPrivate;\n });\n};\nvar safariCompatabilityModeResult;\n/**\n * Whether the browser's implementation of IndexedDB breaks on array lookups\n * against composite indexes whose keypath contains a single column.\n *\n * E.g., Whether `store.createIndex(indexName, ['id'])` followed by\n * `store.index(indexName).get([1])` will *ever* return records.\n *\n * In all known, modern Safari browsers as of Q4 2022, the query against an index like\n * this will *always* return `undefined`. So, the index needs to be created as a scalar.\n */\nvar isSafariCompatabilityMode = function () { return __awaiter(void 0, void 0, void 0, function () {\n var dbName_1, storeName_1, indexName_1, db_1, rwTx, rwStore, result, error_1;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _c.trys.push([0, 6, , 7]);\n dbName_1 = Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])();\n storeName_1 = 'indexedDBFeatureProbeStore';\n indexName_1 = 'idx';\n if (indexedDB === null)\n return [2 /*return*/, false];\n if (safariCompatabilityModeResult !== undefined) {\n return [2 /*return*/, safariCompatabilityModeResult];\n }\n return [4 /*yield*/, new Promise(function (resolve) {\n var dbOpenRequest = indexedDB.open(dbName_1);\n dbOpenRequest.onerror = function () { return resolve(false); };\n dbOpenRequest.onsuccess = function () {\n var db = dbOpenRequest.result;\n resolve(db);\n };\n dbOpenRequest.onupgradeneeded = function (event) {\n var _c;\n var db = (_c = event === null || event === void 0 ? void 0 : event.target) === null || _c === void 0 ? void 0 : _c.result;\n db.onerror = function () { return resolve(false); };\n var store = db.createObjectStore(storeName_1, {\n autoIncrement: true,\n });\n store.createIndex(indexName_1, ['id']);\n };\n })];\n case 1:\n db_1 = _c.sent();\n if (!db_1) {\n throw new Error('Could not open probe DB');\n }\n rwTx = db_1.transaction(storeName_1, 'readwrite');\n rwStore = rwTx.objectStore(storeName_1);\n rwStore.add({\n id: 1,\n });\n rwTx.commit();\n return [4 /*yield*/, new Promise(function (resolve) {\n var tx = db_1.transaction(storeName_1, 'readonly');\n var store = tx.objectStore(storeName_1);\n var index = store.index(indexName_1);\n var getRequest = index.get([1]);\n getRequest.onerror = function () { return resolve(false); };\n getRequest.onsuccess = function (event) {\n var _c;\n resolve((_c = event === null || event === void 0 ? void 0 : event.target) === null || _c === void 0 ? void 0 : _c.result);\n };\n })];\n case 2:\n result = _c.sent();\n if (!(db_1 && typeof db_1.close === 'function')) return [3 /*break*/, 4];\n return [4 /*yield*/, db_1.close()];\n case 3:\n _c.sent();\n _c.label = 4;\n case 4: return [4 /*yield*/, indexedDB.deleteDatabase(dbName_1)];\n case 5:\n _c.sent();\n if (result === undefined) {\n safariCompatabilityModeResult = true;\n }\n else {\n safariCompatabilityModeResult = false;\n }\n return [3 /*break*/, 7];\n case 6:\n error_1 = _c.sent();\n safariCompatabilityModeResult = false;\n return [3 /*break*/, 7];\n case 7: return [2 /*return*/, safariCompatabilityModeResult];\n }\n });\n}); };\nvar randomBytes = function (nBytes) {\n return buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(new amazon_cognito_identity_js__WEBPACK_IMPORTED_MODULE_5__[\"WordArray\"]().random(nBytes).toString(), 'hex');\n};\nvar prng = function () { return randomBytes(1).readUInt8(0) / 0xff; };\nfunction monotonicUlidFactory(seed) {\n var ulid = Object(ulid__WEBPACK_IMPORTED_MODULE_1__[\"monotonicFactory\"])(prng);\n return function () {\n return ulid(seed);\n };\n}\n/**\n * Uses performance.now() if available, otherwise, uses Date.now() (e.g. react native without a polyfill)\n *\n * The values returned by performance.now() always increase at a constant rate,\n * independent of the system clock (which might be adjusted manually or skewed\n * by software like NTP).\n *\n * Otherwise, performance.timing.navigationStart + performance.now() will be\n * approximately equal to Date.now()\n *\n * See: https://developer.mozilla.org/en-US/docs/Web/API/Performance/now#Example\n */\nfunction getNow() {\n if (typeof performance !== 'undefined' &&\n performance &&\n typeof performance.now === 'function') {\n return performance.now() | 0; // convert to integer\n }\n else {\n return Date.now();\n }\n}\nfunction sortCompareFunction(sortPredicates) {\n return function compareFunction(a, b) {\n var e_1, _c;\n try {\n // enable multi-field sort by iterating over predicates until\n // a comparison returns -1 or 1\n for (var sortPredicates_1 = __values(sortPredicates), sortPredicates_1_1 = sortPredicates_1.next(); !sortPredicates_1_1.done; sortPredicates_1_1 = sortPredicates_1.next()) {\n var predicate = sortPredicates_1_1.value;\n var field = predicate.field, sortDirection = predicate.sortDirection;\n // reverse result when direction is descending\n var sortMultiplier = sortDirection === _types__WEBPACK_IMPORTED_MODULE_4__[\"SortDirection\"].ASCENDING ? 1 : -1;\n if (a[field] < b[field]) {\n return -1 * sortMultiplier;\n }\n if (a[field] > b[field]) {\n return 1 * sortMultiplier;\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (sortPredicates_1_1 && !sortPredicates_1_1.done && (_c = sortPredicates_1.return)) _c.call(sortPredicates_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return 0;\n };\n}\n// deep compare any 2 values\n// primitives or object types (including arrays, Sets, and Maps)\n// returns true if equal by value\n// if nullish is true, treat undefined and null values as equal\n// to normalize for GQL response values for undefined fields\nfunction valuesEqual(valA, valB, nullish) {\n var e_2, _c;\n if (nullish === void 0) { nullish = false; }\n var a = valA;\n var b = valB;\n var nullishCompare = function (_a, _b) {\n return ((_a === undefined || _a === null) && (_b === undefined || _b === null));\n };\n // if one of the values is a primitive and the other is an object\n if ((a instanceof Object && !(b instanceof Object)) ||\n (!(a instanceof Object) && b instanceof Object)) {\n return false;\n }\n // compare primitive types\n if (!(a instanceof Object)) {\n if (nullish && nullishCompare(a, b)) {\n return true;\n }\n return a === b;\n }\n // make sure object types match\n if ((Array.isArray(a) && !Array.isArray(b)) ||\n (Array.isArray(b) && !Array.isArray(a))) {\n return false;\n }\n if (a instanceof Set && b instanceof Set) {\n a = __spread(a);\n b = __spread(b);\n }\n if (a instanceof Map && b instanceof Map) {\n a = Object.fromEntries(a);\n b = Object.fromEntries(b);\n }\n var aKeys = Object.keys(a);\n var bKeys = Object.keys(b);\n // last condition is to ensure that [] !== [null] even if nullish. However [undefined] === [null] when nullish\n if (aKeys.length !== bKeys.length && (!nullish || Array.isArray(a))) {\n return false;\n }\n // iterate through the longer set of keys\n // e.g., for a nullish comparison of a={ a: 1 } and b={ a: 1, b: null }\n // we want to iterate through bKeys\n var keys = aKeys.length >= bKeys.length ? aKeys : bKeys;\n try {\n for (var keys_1 = __values(keys), keys_1_1 = keys_1.next(); !keys_1_1.done; keys_1_1 = keys_1.next()) {\n var key = keys_1_1.value;\n var aVal = a[key];\n var bVal = b[key];\n if (!valuesEqual(aVal, bVal, nullish)) {\n return false;\n }\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (keys_1_1 && !keys_1_1.done && (_c = keys_1.return)) _c.call(keys_1);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return true;\n}\nvar isAWSDate = function (val) {\n return !!/^\\d{4}-\\d{2}-\\d{2}(Z|[+-]\\d{2}:\\d{2}($|:\\d{2}))?$/.exec(val);\n};\nvar isAWSTime = function (val) {\n return !!/^\\d{2}:\\d{2}(:\\d{2}(.\\d+)?)?(Z|[+-]\\d{2}:\\d{2}($|:\\d{2}))?$/.exec(val);\n};\nvar isAWSDateTime = function (val) {\n return !!/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}(:\\d{2}(.\\d+)?)?(Z|[+-]\\d{2}:\\d{2}($|:\\d{2}))?$/.exec(val);\n};\nvar isAWSTimestamp = function (val) {\n return !!/^\\d+$/.exec(String(val));\n};\nvar isAWSEmail = function (val) {\n return !!/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.exec(val);\n};\nvar isAWSJSON = function (val) {\n try {\n JSON.parse(val);\n return true;\n }\n catch (_c) {\n return false;\n }\n};\nvar isAWSURL = function (val) {\n try {\n return !!new URL(val);\n }\n catch (_c) {\n return false;\n }\n};\nvar isAWSPhone = function (val) {\n return !!/^\\+?\\d[\\d\\s-]+$/.exec(val);\n};\nvar isAWSIPAddress = function (val) {\n return !!/((^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$)|(^((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))(%.+)?$))$/.exec(val);\n};\nvar DeferredPromise = /** @class */ (function () {\n function DeferredPromise() {\n var self = this;\n this.promise = new Promise(function (resolve, reject) {\n self.resolve = resolve;\n self.reject = reject;\n });\n }\n return DeferredPromise;\n}());\n\nvar DeferredCallbackResolver = /** @class */ (function () {\n function DeferredCallbackResolver(options) {\n this.limitPromise = new DeferredPromise();\n this.raceInFlight = false;\n this.callback = function () { };\n this.defaultErrorHandler = function (msg) {\n if (msg === void 0) { msg = 'DeferredCallbackResolver error'; }\n throw new Error(msg);\n };\n this.callback = options.callback;\n this.errorHandler = options.errorHandler || this.defaultErrorHandler;\n this.maxInterval = options.maxInterval || 2000;\n }\n DeferredCallbackResolver.prototype.startTimer = function () {\n var _this = this;\n this.timerPromise = new Promise(function (resolve, reject) {\n _this.timer = setTimeout(function () {\n resolve(_types__WEBPACK_IMPORTED_MODULE_4__[\"LimitTimerRaceResolvedValues\"].TIMER);\n }, _this.maxInterval);\n });\n };\n DeferredCallbackResolver.prototype.racePromises = function () {\n return __awaiter(this, void 0, void 0, function () {\n var winner, err_1;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _c.trys.push([0, 2, 3, 4]);\n this.raceInFlight = true;\n this.startTimer();\n return [4 /*yield*/, Promise.race([\n this.timerPromise,\n this.limitPromise.promise,\n ])];\n case 1:\n winner = _c.sent();\n this.callback();\n return [3 /*break*/, 4];\n case 2:\n err_1 = _c.sent();\n this.errorHandler(err_1);\n return [3 /*break*/, 4];\n case 3:\n // reset for the next race\n this.clear();\n this.raceInFlight = false;\n this.limitPromise = new DeferredPromise();\n return [2 /*return*/, winner];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n DeferredCallbackResolver.prototype.start = function () {\n if (!this.raceInFlight)\n this.racePromises();\n };\n DeferredCallbackResolver.prototype.clear = function () {\n clearTimeout(this.timer);\n };\n DeferredCallbackResolver.prototype.resolve = function () {\n this.limitPromise.resolve(_types__WEBPACK_IMPORTED_MODULE_4__[\"LimitTimerRaceResolvedValues\"].LIMIT);\n };\n return DeferredCallbackResolver;\n}());\n\n/**\n * merge two sets of patches created by immer produce.\n * newPatches take precedent over oldPatches for patches modifying the same path.\n * In the case many consecutive pathces are merged the original model should\n * always be the root model.\n *\n * Example:\n * A -> B, patches1\n * B -> C, patches2\n *\n * mergePatches(A, patches1, patches2) to get patches for A -> C\n *\n * @param originalSource the original Model the patches should be applied to\n * @param oldPatches immer produce patch list\n * @param newPatches immer produce patch list (will take precedence)\n * @return merged patches\n */\nfunction mergePatches(originalSource, oldPatches, newPatches) {\n var patchesToMerge = oldPatches.concat(newPatches);\n var patches;\n Object(immer__WEBPACK_IMPORTED_MODULE_3__[\"produce\"])(originalSource, function (draft) {\n Object(immer__WEBPACK_IMPORTED_MODULE_3__[\"applyPatches\"])(draft, patchesToMerge);\n }, function (p) {\n patches = p;\n });\n return patches;\n}\nvar getStorename = function (namespace, modelName) {\n var storeName = namespace + \"_\" + modelName;\n return storeName;\n};\n//#region Key Utils\n/*\n When we have GSI(s) with composite sort keys defined on a model\n There are some very particular rules regarding which fields must be included in the update mutation input\n The field selection becomes more complex as the number of GSIs with composite sort keys grows\n\n To summarize: any time we update a field that is part of the composite sort key of a GSI, we must include:\n 1. all of the other fields in that composite sort key\n 2. all of the fields from any other composite sort key that intersect with the fields from 1.\n\n E.g.,\n Model @model\n @key(name: 'key1' fields: ['hk', 'a', 'b', 'c'])\n @key(name: 'key2' fields: ['hk', 'a', 'b', 'd'])\n @key(name: 'key3' fields: ['hk', 'x', 'y', 'z'])\n\n Model.a is updated => include ['a', 'b', 'c', 'd']\n Model.c is updated => include ['a', 'b', 'c', 'd']\n Model.d is updated => include ['a', 'b', 'c', 'd']\n Model.x is updated => include ['x', 'y', 'z']\n\n This function accepts a model's attributes and returns grouped sets of composite key fields\n Using our example Model above, the function will return:\n [\n Set('a', 'b', 'c', 'd'),\n Set('x', 'y', 'z'),\n ]\n\n This gives us the opportunity to correctly include the required fields for composite keys\n When crafting the mutation input in Storage.getUpdateMutationInput\n\n See 'processCompositeKeys' test in util.test.ts for more examples\n*/\nvar processCompositeKeys = function (attributes) {\n var extractCompositeSortKey = function (_c) {\n var \n // ignore the HK (fields[0]) we only need to include the composite sort key fields[1...n]\n _d = __read(_c.properties.fields), sortKeyFields = _d.slice(1);\n return sortKeyFields;\n };\n var compositeKeyFields = attributes\n .filter(_types__WEBPACK_IMPORTED_MODULE_4__[\"isModelAttributeCompositeKey\"])\n .map(extractCompositeSortKey);\n /*\n if 2 sets of fields have any intersecting fields => combine them into 1 union set\n e.g., ['a', 'b', 'c'] and ['a', 'b', 'd'] => ['a', 'b', 'c', 'd']\n */\n var combineIntersecting = function (fields) {\n return fields.reduce(function (combined, sortKeyFields) {\n var sortKeyFieldsSet = new Set(sortKeyFields);\n if (combined.length === 0) {\n combined.push(sortKeyFieldsSet);\n return combined;\n }\n // does the current set share values with another set we've already added to `combined`?\n var intersectingSetIdx = combined.findIndex(function (existingSet) {\n return __spread(existingSet).some(function (f) { return sortKeyFieldsSet.has(f); });\n });\n if (intersectingSetIdx > -1) {\n var union = new Set(__spread(combined[intersectingSetIdx], sortKeyFieldsSet));\n // combine the current set with the intersecting set we found above\n combined[intersectingSetIdx] = union;\n }\n else {\n // none of the sets in `combined` have intersecting values with the current set\n combined.push(sortKeyFieldsSet);\n }\n return combined;\n }, []);\n };\n var initial = combineIntersecting(compositeKeyFields);\n // a single pass pay not be enough to correctly combine all the fields\n // call the function once more to get a final merged list of sets\n var combined = combineIntersecting(initial);\n return combined;\n};\nvar extractKeyIfExists = function (modelDefinition) {\n var _c;\n var keyAttribute = (_c = modelDefinition === null || modelDefinition === void 0 ? void 0 : modelDefinition.attributes) === null || _c === void 0 ? void 0 : _c.find(_types__WEBPACK_IMPORTED_MODULE_4__[\"isModelAttributeKey\"]);\n return keyAttribute;\n};\nvar extractPrimaryKeyFieldNames = function (modelDefinition) {\n var keyAttribute = extractKeyIfExists(modelDefinition);\n if (keyAttribute && Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isModelAttributePrimaryKey\"])(keyAttribute)) {\n return keyAttribute.properties.fields;\n }\n return [ID];\n};\nvar extractPrimaryKeyValues = function (model, keyFields) {\n return keyFields.map(function (key) { return model[key]; });\n};\nvar extractPrimaryKeysAndValues = function (model, keyFields) {\n var primaryKeysAndValues = {};\n keyFields.forEach(function (key) { return (primaryKeysAndValues[key] = model[key]); });\n return primaryKeysAndValues;\n};\n// IdentifierFields\n// Default behavior without explicit @primaryKey defined\nvar isIdManaged = function (modelDefinition) {\n var keyAttribute = extractKeyIfExists(modelDefinition);\n if (keyAttribute && Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isModelAttributePrimaryKey\"])(keyAttribute)) {\n return false;\n }\n return true;\n};\n// IdentifierFields\n// @primaryKey with explicit `id` in the PK. Single key or composite\nvar isIdOptionallyManaged = function (modelDefinition) {\n var keyAttribute = extractKeyIfExists(modelDefinition);\n if (keyAttribute && Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isModelAttributePrimaryKey\"])(keyAttribute)) {\n return keyAttribute.properties.fields[0] === ID;\n }\n return false;\n};\nvar establishRelationAndKeys = function (namespace) {\n var relationship = {};\n var keys = {};\n Object.keys(namespace.models).forEach(function (mKey) {\n var e_3, _c;\n relationship[mKey] = { indexes: [], relationTypes: [] };\n keys[mKey] = {};\n var model = namespace.models[mKey];\n Object.keys(model.fields).forEach(function (attr) {\n var fieldAttribute = model.fields[attr];\n if (typeof fieldAttribute.type === 'object' &&\n 'model' in fieldAttribute.type) {\n var connectionType = fieldAttribute.association.connectionType;\n relationship[mKey].relationTypes.push({\n fieldName: fieldAttribute.name,\n modelName: fieldAttribute.type.model,\n relationType: connectionType,\n targetName: fieldAttribute.association['targetName'],\n targetNames: fieldAttribute.association['targetNames'],\n associatedWith: fieldAttribute.association['associatedWith'],\n });\n if (connectionType === 'BELONGS_TO') {\n var targetNames = extractTargetNamesFromSrc(fieldAttribute.association);\n if (targetNames) {\n var idxName = indexNameFromKeys(targetNames);\n relationship[mKey].indexes.push([idxName, targetNames]);\n }\n }\n }\n });\n if (model.attributes) {\n keys[mKey].compositeKeys = processCompositeKeys(model.attributes);\n var _loop_1 = function (attribute) {\n if (!Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isModelAttributeKey\"])(attribute)) {\n return \"continue\";\n }\n var fields = attribute.properties.fields;\n if (Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isModelAttributePrimaryKey\"])(attribute)) {\n keys[mKey].primaryKey = fields;\n return \"continue\";\n }\n // create indexes for all other keys\n var idxName = indexNameFromKeys(fields);\n var idxExists = relationship[mKey].indexes.find(function (_c) {\n var _d = __read(_c, 1), index = _d[0];\n return index === idxName;\n });\n if (!idxExists) {\n relationship[mKey].indexes.push([idxName, fields]);\n }\n };\n try {\n for (var _d = __values(model.attributes), _e = _d.next(); !_e.done; _e = _d.next()) {\n var attribute = _e.value;\n _loop_1(attribute);\n }\n }\n catch (e_3_1) { e_3 = { error: e_3_1 }; }\n finally {\n try {\n if (_e && !_e.done && (_c = _d.return)) _c.call(_d);\n }\n finally { if (e_3) throw e_3.error; }\n }\n }\n // set 'id' as the PK for models without a custom PK explicitly defined\n if (!keys[mKey].primaryKey) {\n keys[mKey].primaryKey = [ID];\n }\n // create primary index\n relationship[mKey].indexes.push([\n 'byPk',\n keys[mKey].primaryKey,\n { unique: true },\n ]);\n });\n return [relationship, keys];\n};\nvar getIndex = function (rel, src) {\n var indexName;\n rel.some(function (relItem) {\n if (relItem.modelName === src) {\n var targetNames = extractTargetNamesFromSrc(relItem);\n indexName = targetNames && indexNameFromKeys(targetNames);\n return true;\n }\n });\n return indexName;\n};\nvar getIndexFromAssociation = function (indexes, src) {\n var indexName;\n if (Array.isArray(src)) {\n indexName = indexNameFromKeys(src);\n }\n else {\n indexName = src;\n }\n var associationIndex = indexes.find(function (_c) {\n var _d = __read(_c, 1), idxName = _d[0];\n return idxName === indexName;\n });\n return associationIndex && associationIndex[0];\n};\n/**\n * Backwards-compatability for schema generated prior to custom primary key support:\nthe single field `targetName` has been replaced with an array of `targetNames`.\n`targetName` and `targetNames` are exclusive (will never exist on the same schema)\n * @param src {RelationType | ModelAssociation | undefined}\n * @returns array of targetNames, or `undefined`\n */\nvar extractTargetNamesFromSrc = function (src) {\n var targetName = src === null || src === void 0 ? void 0 : src.targetName;\n var targetNames = src === null || src === void 0 ? void 0 : src.targetNames;\n if (Array.isArray(targetNames)) {\n return targetNames;\n }\n else if (typeof targetName === 'string') {\n return [targetName];\n }\n else {\n return undefined;\n }\n};\n// Generates spinal-cased index name from an array of key field names\n// E.g. for keys `[id, title]` => 'id-title'\nvar indexNameFromKeys = function (keys) {\n return keys.reduce(function (prev, cur, idx) {\n if (idx === 0) {\n return cur;\n }\n return \"\" + prev + IDENTIFIER_KEY_SEPARATOR + cur;\n }, '');\n};\nvar keysEqual = function (keysA, keysB) {\n if (keysA.length !== keysB.length) {\n return false;\n }\n return keysA.every(function (key, idx) { return key === keysB[idx]; });\n};\n// Returns primary keys for a model\nvar getIndexKeys = function (namespace, modelName) {\n var _c;\n var keyPath = (_c = namespace === null || namespace === void 0 ? void 0 : namespace.keys[modelName]) === null || _c === void 0 ? void 0 : _c.primaryKey;\n if (keyPath) {\n return keyPath;\n }\n return [ID];\n};\n//#endregion\n//# sourceMappingURL=util.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/lib-esm/util.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/node_modules/uuid/index.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/node_modules/uuid/index.js ***! \************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var v1 = __webpack_require__(/*! ./v1 */ \"./node_modules/@aws-amplify/datastore/node_modules/uuid/v1.js\");\nvar v4 = __webpack_require__(/*! ./v4 */ \"./node_modules/@aws-amplify/datastore/node_modules/uuid/v4.js\");\n\nvar uuid = v4;\nuuid.v1 = v1;\nuuid.v4 = v4;\n\nmodule.exports = uuid;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/node_modules/uuid/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/bytesToUuid.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/bytesToUuid.js ***! \**********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Convert array of 16 byte values to UUID string format of the form:\n * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\n */\nvar byteToHex = [];\nfor (var i = 0; i < 256; ++i) {\n byteToHex[i] = (i + 0x100).toString(16).substr(1);\n}\n\nfunction bytesToUuid(buf, offset) {\n var i = offset || 0;\n var bth = byteToHex;\n // join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4\n return ([bth[buf[i++]], bth[buf[i++]], \n\tbth[buf[i++]], bth[buf[i++]], '-',\n\tbth[buf[i++]], bth[buf[i++]], '-',\n\tbth[buf[i++]], bth[buf[i++]], '-',\n\tbth[buf[i++]], bth[buf[i++]], '-',\n\tbth[buf[i++]], bth[buf[i++]],\n\tbth[buf[i++]], bth[buf[i++]],\n\tbth[buf[i++]], bth[buf[i++]]]).join('');\n}\n\nmodule.exports = bytesToUuid;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/bytesToUuid.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/rng-browser.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/rng-browser.js ***! \**********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("// Unique ID creation requires a high quality random # generator. In the\n// browser this is a little complicated due to unknown quality of Math.random()\n// and inconsistent support for the `crypto` API. We do the best we can via\n// feature-detection\n\n// getRandomValues needs to be invoked in a context where \"this\" is a Crypto\n// implementation. Also, find the complete implementation of crypto on IE11.\nvar getRandomValues = (typeof(crypto) != 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto)) ||\n (typeof(msCrypto) != 'undefined' && typeof window.msCrypto.getRandomValues == 'function' && msCrypto.getRandomValues.bind(msCrypto));\n\nif (getRandomValues) {\n // WHATWG crypto RNG - http://wiki.whatwg.org/wiki/Crypto\n var rnds8 = new Uint8Array(16); // eslint-disable-line no-undef\n\n module.exports = function whatwgRNG() {\n getRandomValues(rnds8);\n return rnds8;\n };\n} else {\n // Math.random()-based (RNG)\n //\n // If all else fails, use Math.random(). It's fast, but is of unspecified\n // quality.\n var rnds = new Array(16);\n\n module.exports = function mathRNG() {\n for (var i = 0, r; i < 16; i++) {\n if ((i & 0x03) === 0) r = Math.random() * 0x100000000;\n rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;\n }\n\n return rnds;\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/rng-browser.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/node_modules/uuid/v1.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/node_modules/uuid/v1.js ***! \*********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var rng = __webpack_require__(/*! ./lib/rng */ \"./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/rng-browser.js\");\nvar bytesToUuid = __webpack_require__(/*! ./lib/bytesToUuid */ \"./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/bytesToUuid.js\");\n\n// **`v1()` - Generate time-based UUID**\n//\n// Inspired by https://github.com/LiosK/UUID.js\n// and http://docs.python.org/library/uuid.html\n\nvar _nodeId;\nvar _clockseq;\n\n// Previous uuid creation time\nvar _lastMSecs = 0;\nvar _lastNSecs = 0;\n\n// See https://github.com/broofa/node-uuid for API details\nfunction v1(options, buf, offset) {\n var i = buf && offset || 0;\n var b = buf || [];\n\n options = options || {};\n var node = options.node || _nodeId;\n var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq;\n\n // node and clockseq need to be initialized to random values if they're not\n // specified. We do this lazily to minimize issues related to insufficient\n // system entropy. See #189\n if (node == null || clockseq == null) {\n var seedBytes = rng();\n if (node == null) {\n // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)\n node = _nodeId = [\n seedBytes[0] | 0x01,\n seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]\n ];\n }\n if (clockseq == null) {\n // Per 4.2.2, randomize (14 bit) clockseq\n clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;\n }\n }\n\n // UUID timestamps are 100 nano-second units since the Gregorian epoch,\n // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so\n // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'\n // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.\n var msecs = options.msecs !== undefined ? options.msecs : new Date().getTime();\n\n // Per 4.2.1.2, use count of uuid's generated during the current clock\n // cycle to simulate higher resolution clock\n var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1;\n\n // Time since last uuid creation (in msecs)\n var dt = (msecs - _lastMSecs) + (nsecs - _lastNSecs)/10000;\n\n // Per 4.2.1.2, Bump clockseq on clock regression\n if (dt < 0 && options.clockseq === undefined) {\n clockseq = clockseq + 1 & 0x3fff;\n }\n\n // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new\n // time interval\n if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {\n nsecs = 0;\n }\n\n // Per 4.2.1.2 Throw error if too many uuids are requested\n if (nsecs >= 10000) {\n throw new Error('uuid.v1(): Can\\'t create more than 10M uuids/sec');\n }\n\n _lastMSecs = msecs;\n _lastNSecs = nsecs;\n _clockseq = clockseq;\n\n // Per 4.1.4 - Convert from unix epoch to Gregorian epoch\n msecs += 12219292800000;\n\n // `time_low`\n var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;\n b[i++] = tl >>> 24 & 0xff;\n b[i++] = tl >>> 16 & 0xff;\n b[i++] = tl >>> 8 & 0xff;\n b[i++] = tl & 0xff;\n\n // `time_mid`\n var tmh = (msecs / 0x100000000 * 10000) & 0xfffffff;\n b[i++] = tmh >>> 8 & 0xff;\n b[i++] = tmh & 0xff;\n\n // `time_high_and_version`\n b[i++] = tmh >>> 24 & 0xf | 0x10; // include version\n b[i++] = tmh >>> 16 & 0xff;\n\n // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)\n b[i++] = clockseq >>> 8 | 0x80;\n\n // `clock_seq_low`\n b[i++] = clockseq & 0xff;\n\n // `node`\n for (var n = 0; n < 6; ++n) {\n b[i + n] = node[n];\n }\n\n return buf ? buf : bytesToUuid(b);\n}\n\nmodule.exports = v1;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/node_modules/uuid/v1.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/datastore/node_modules/uuid/v4.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-amplify/datastore/node_modules/uuid/v4.js ***! \*********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var rng = __webpack_require__(/*! ./lib/rng */ \"./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/rng-browser.js\");\nvar bytesToUuid = __webpack_require__(/*! ./lib/bytesToUuid */ \"./node_modules/@aws-amplify/datastore/node_modules/uuid/lib/bytesToUuid.js\");\n\nfunction v4(options, buf, offset) {\n var i = buf && offset || 0;\n\n if (typeof(options) == 'string') {\n buf = options === 'binary' ? new Array(16) : null;\n options = null;\n }\n options = options || {};\n\n var rnds = options.random || (options.rng || rng)();\n\n // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`\n rnds[6] = (rnds[6] & 0x0f) | 0x40;\n rnds[8] = (rnds[8] & 0x3f) | 0x80;\n\n // Copy bytes to buffer, if provided\n if (buf) {\n for (var ii = 0; ii < 16; ++ii) {\n buf[i + ii] = rnds[ii];\n }\n }\n\n return buf || bytesToUuid(rnds);\n}\n\nmodule.exports = v4;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/datastore/node_modules/uuid/v4.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/geo/lib-esm/Geo.js": /*!******************************************************!*\ !*** ./node_modules/@aws-amplify/geo/lib-esm/Geo.js ***! \******************************************************/ /*! exports provided: GeoClass, Geo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GeoClass\", function() { return GeoClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Geo\", function() { return Geo; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _Providers_AmazonLocationServiceProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Providers/AmazonLocationServiceProvider */ \"./node_modules/@aws-amplify/geo/lib-esm/Providers/AmazonLocationServiceProvider.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util */ \"./node_modules/@aws-amplify/geo/lib-esm/util.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n/*\n * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Geo');\nvar DEFAULT_PROVIDER = 'AmazonLocationService';\nvar GeoClass = /** @class */ (function () {\n function GeoClass() {\n this._config = {};\n this._pluggables = [];\n logger.debug('Geo Options', this._config);\n }\n /**\n * get the name of the module category\n * @returns {string} name of the module category\n */\n GeoClass.prototype.getModuleName = function () {\n return GeoClass.MODULE;\n };\n /**\n * add plugin into Geo category\n * @param {Object} pluggable - an instance of the plugin\n */\n GeoClass.prototype.addPluggable = function (pluggable) {\n if (pluggable && pluggable.getCategory() === 'Geo') {\n this._pluggables.push(pluggable);\n var config = pluggable.configure(this._config[pluggable.getProviderName()]);\n return config;\n }\n };\n /**\n * Get the plugin object\n * @param providerName - the name of the plugin\n */\n GeoClass.prototype.getPluggable = function (providerName) {\n var pluggable = this._pluggables.find(function (pluggable) { return pluggable.getProviderName() === providerName; });\n if (pluggable === undefined) {\n logger.debug('No plugin found with providerName', providerName);\n throw new Error('No plugin found in Geo for the provider');\n }\n else\n return pluggable;\n };\n /**\n * Remove the plugin object\n * @param providerName - the name of the plugin\n */\n GeoClass.prototype.removePluggable = function (providerName) {\n this._pluggables = this._pluggables.filter(function (pluggable) { return pluggable.getProviderName() !== providerName; });\n return;\n };\n /**\n * Configure Geo\n * @param {Object} config - Configuration object for Geo\n * @return {Object} - Current configuration\n */\n GeoClass.prototype.configure = function (config) {\n var _this = this;\n logger.debug('configure Geo');\n if (!config)\n return this._config;\n var amplifyConfig = Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"parseMobileHubConfig\"])(config);\n this._config = Object.assign({}, this._config, amplifyConfig.Geo, config);\n this._pluggables.forEach(function (pluggable) {\n pluggable.configure(_this._config[pluggable.getProviderName()]);\n });\n if (this._pluggables.length === 0) {\n this.addPluggable(new _Providers_AmazonLocationServiceProvider__WEBPACK_IMPORTED_MODULE_1__[\"AmazonLocationServiceProvider\"]());\n }\n return this._config;\n };\n /**\n * Get the map resources that are currently available through the provider\n * @param {string} provider\n * @returns - Array of available map resources\n */\n GeoClass.prototype.getAvailableMaps = function (provider) {\n if (provider === void 0) { provider = DEFAULT_PROVIDER; }\n var prov = this.getPluggable(provider);\n return prov.getAvailableMaps();\n };\n /**\n * Get the map resource set as default in amplify config\n * @param {string} provider\n * @returns - Map resource set as the default in amplify config\n */\n GeoClass.prototype.getDefaultMap = function (provider) {\n if (provider === void 0) { provider = DEFAULT_PROVIDER; }\n var prov = this.getPluggable(provider);\n return prov.getDefaultMap();\n };\n /**\n * Search by text input with optional parameters\n * @param {string} text - The text string that is to be searched for\n * @param {SearchByTextOptions} options? - Optional parameters to the search\n * @returns {Promise} - Promise resolves to a list of Places that match search parameters\n */\n GeoClass.prototype.searchByText = function (text, options) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, providerName, prov, error_1;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;\n prov = this.getPluggable(providerName);\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 4]);\n return [4 /*yield*/, prov.searchByText(text, options)];\n case 2: return [2 /*return*/, _b.sent()];\n case 3:\n error_1 = _b.sent();\n logger.debug(error_1);\n throw error_1;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Search for search term suggestions based on input text\n * @param {string} text - The text string that is to be search for\n * @param {SearchByTextOptions} options? - Optional parameters to the search\n * @returns {Promise} - Resolves to an array of search suggestion strings\n */\n GeoClass.prototype.searchForSuggestions = function (text, options) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, providerName, prov, error_2;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;\n prov = this.getPluggable(providerName);\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 4]);\n return [4 /*yield*/, prov.searchForSuggestions(text, options)];\n case 2: return [2 /*return*/, _b.sent()];\n case 3:\n error_2 = _b.sent();\n logger.debug(error_2);\n throw error_2;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Search for location by unique ID\n * @param {string} placeId - Unique ID of the location that is to be searched for\n * @param {searchByPlaceIdOptions} options? - Optional parameters to the search\n * @returns {Promise} - Resolves to a place with the given placeId\n */\n GeoClass.prototype.searchByPlaceId = function (placeId, options) {\n return __awaiter(this, void 0, void 0, function () {\n var providerName, prov, error_3;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n providerName = DEFAULT_PROVIDER;\n prov = this.getPluggable(providerName);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, prov.searchByPlaceId(placeId, options)];\n case 2: return [2 /*return*/, _a.sent()];\n case 3:\n error_3 = _a.sent();\n logger.debug(error_3);\n throw error_3;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Reverse geocoding search via a coordinate point on the map\n * @param coordinates - Coordinates array for the search input\n * @param options - Options parameters for the search\n * @returns {Promise} - Promise that resolves to a place matching search coordinates\n */\n GeoClass.prototype.searchByCoordinates = function (coordinates, options) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, providerName, prov, _b, lng, lat, error_4;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;\n prov = this.getPluggable(providerName);\n _b = __read(coordinates, 2), lng = _b[0], lat = _b[1];\n _c.label = 1;\n case 1:\n _c.trys.push([1, 3, , 4]);\n Object(_util__WEBPACK_IMPORTED_MODULE_2__[\"validateCoordinates\"])(lng, lat);\n return [4 /*yield*/, prov.searchByCoordinates(coordinates, options)];\n case 2: return [2 /*return*/, _c.sent()];\n case 3:\n error_4 = _c.sent();\n logger.debug(error_4);\n throw error_4;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Create geofences\n * @param geofences - Single or array of geofence objects to create\n * @param options? - Optional parameters for creating geofences\n * @returns {Promise} - Promise that resolves to an object with:\n * successes: list of geofences successfully created\n * errors: list of geofences that failed to create\n */\n GeoClass.prototype.saveGeofences = function (geofences, options) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, providerName, prov, geofenceInputArray, error_5;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;\n prov = this.getPluggable(providerName);\n if (!Array.isArray(geofences)) {\n geofenceInputArray = [geofences];\n }\n else {\n geofenceInputArray = geofences;\n }\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 4]);\n return [4 /*yield*/, prov.saveGeofences(geofenceInputArray, options)];\n case 2: return [2 /*return*/, _b.sent()];\n case 3:\n error_5 = _b.sent();\n logger.debug(error_5);\n throw error_5;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Get a single geofence by geofenceId\n * @param geofenceId: GeofenceId - The string id of the geofence to get\n * @param options?: GeofenceOptions - Optional parameters for getting a geofence\n * @returns Promise - Promise that resolves to a geofence object\n */\n GeoClass.prototype.getGeofence = function (geofenceId, options) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, providerName, prov, error_6;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;\n prov = this.getPluggable(providerName);\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 4]);\n return [4 /*yield*/, prov.getGeofence(geofenceId, options)];\n case 2: return [2 /*return*/, _b.sent()];\n case 3:\n error_6 = _b.sent();\n logger.debug(error_6);\n throw error_6;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * List geofences\n * @param options?: ListGeofenceOptions\n * @returns {Promise} - Promise that resolves to an object with:\n * entries: list of geofences - 100 geofences are listed per page\n * nextToken: token for next page of geofences\n */\n GeoClass.prototype.listGeofences = function (options) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, providerName, prov, error_7;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;\n prov = this.getPluggable(providerName);\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 4]);\n return [4 /*yield*/, prov.listGeofences(options)];\n case 2: return [2 /*return*/, _b.sent()];\n case 3:\n error_7 = _b.sent();\n logger.debug(error_7);\n throw error_7;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Delete geofences\n * @param geofenceIds: string|string[]\n * @param options?: GeofenceOptions\n * @returns {Promise} - Promise that resolves to an object with:\n * successes: list of geofences successfully deleted\n * errors: list of geofences that failed to delete\n */\n GeoClass.prototype.deleteGeofences = function (geofenceIds, options) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, providerName, prov, geofenceIdsInputArray, error_8;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;\n prov = this.getPluggable(providerName);\n if (!Array.isArray(geofenceIds)) {\n geofenceIdsInputArray = [geofenceIds];\n }\n else {\n geofenceIdsInputArray = geofenceIds;\n }\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, , 4]);\n return [4 /*yield*/, prov.deleteGeofences(geofenceIdsInputArray, options)];\n case 2: return [2 /*return*/, _b.sent()];\n case 3:\n error_8 = _b.sent();\n logger.debug(error_8);\n throw error_8;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n GeoClass.MODULE = 'Geo';\n return GeoClass;\n}());\n\nvar Geo = new GeoClass();\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"].register(Geo);\n//# sourceMappingURL=Geo.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/geo/lib-esm/Geo.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/geo/lib-esm/Providers/AmazonLocationServiceProvider.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/geo/lib-esm/Providers/AmazonLocationServiceProvider.js ***! \******************************************************************************************/ /*! exports provided: AmazonLocationServiceProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AmazonLocationServiceProvider\", function() { return AmazonLocationServiceProvider; });\n/* harmony import */ var camelcase_keys__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! camelcase-keys */ \"./node_modules/camelcase-keys/index.js\");\n/* harmony import */ var camelcase_keys__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(camelcase_keys__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* 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\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util */ \"./node_modules/@aws-amplify/geo/lib-esm/util.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n/*\n * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('AmazonLocationServiceProvider');\nvar AmazonLocationServiceProvider = /** @class */ (function () {\n /**\n * Initialize Geo with AWS configurations\n * @param {Object} config - Configuration object for Geo\n */\n function AmazonLocationServiceProvider(config) {\n this._config = config ? config : {};\n logger.debug('Geo Options', this._config);\n }\n /**\n * get the category of the plugin\n * @returns {string} name of the category\n */\n AmazonLocationServiceProvider.prototype.getCategory = function () {\n return AmazonLocationServiceProvider.CATEGORY;\n };\n /**\n * get provider name of the plugin\n * @returns {string} name of the provider\n */\n AmazonLocationServiceProvider.prototype.getProviderName = function () {\n return AmazonLocationServiceProvider.PROVIDER_NAME;\n };\n /**\n * Configure Geo part with aws configuration\n * @param {Object} config - Configuration of the Geo\n * @return {Object} - Current configuration\n */\n AmazonLocationServiceProvider.prototype.configure = function (config) {\n logger.debug('configure Amazon Location Service Provider', config);\n if (!config)\n return this._config;\n this._config = Object.assign({}, this._config, config);\n return this._config;\n };\n /**\n * Get the map resources that are currently available through the provider\n * @returns {AmazonLocationServiceMapStyle[]}- Array of available map resources\n */\n AmazonLocationServiceProvider.prototype.getAvailableMaps = function () {\n this._verifyMapResources();\n var mapStyles = [];\n var availableMaps = this._config.maps.items;\n var region = this._config.region;\n for (var mapName in availableMaps) {\n var style = availableMaps[mapName].style;\n mapStyles.push({ mapName: mapName, style: style, region: region });\n }\n return mapStyles;\n };\n /**\n * Get the map resource set as default in amplify config\n * @returns {AmazonLocationServiceMapStyle} - Map resource set as the default in amplify config\n */\n AmazonLocationServiceProvider.prototype.getDefaultMap = function () {\n this._verifyMapResources();\n var mapName = this._config.maps.default;\n var style = this._config.maps.items[mapName].style;\n var region = this._config.region;\n return { mapName: mapName, style: style, region: region };\n };\n /**\n * Search by text input with optional parameters\n * @param {string} text - The text string that is to be searched for\n * @param {SearchByTextOptions} options? - Optional parameters to the search\n * @returns {Promise} - Promise resolves to a list of Places that match search parameters\n */\n AmazonLocationServiceProvider.prototype.searchByText = function (text, options) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, locationServiceInput, client, command, response, error_1, PascalResults, results;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error('No credentials');\n }\n this._verifySearchIndex(options === null || options === void 0 ? void 0 : options.searchIndexName);\n locationServiceInput = {\n Text: text,\n IndexName: this._config.search_indices.default,\n };\n /**\n * Map search options to Amazon Location Service input object\n */\n if (options) {\n locationServiceInput = __assign(__assign({}, locationServiceInput), Object(_util__WEBPACK_IMPORTED_MODULE_3__[\"mapSearchOptions\"])(options, locationServiceInput));\n }\n client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"LocationClient\"]({\n credentials: this._config.credentials,\n region: this._config.region,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(),\n });\n command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"SearchPlaceIndexForTextCommand\"](locationServiceInput);\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4 /*yield*/, client.send(command)];\n case 3:\n response = _a.sent();\n return [3 /*break*/, 5];\n case 4:\n error_1 = _a.sent();\n logger.debug(error_1);\n throw error_1;\n case 5:\n PascalResults = response.Results.map(function (result) { return result.Place; });\n results = camelcase_keys__WEBPACK_IMPORTED_MODULE_0___default()(PascalResults, {\n deep: true,\n });\n return [2 /*return*/, results];\n }\n });\n });\n };\n /**\n * Search for suggestions based on the input text\n * @param {string} text - The text string that is to be searched for\n * @param {SearchByTextOptions} options? - Optional parameters to the search\n * @returns {Promise} - Resolves to an array of search suggestion strings\n */\n AmazonLocationServiceProvider.prototype.searchForSuggestions = function (text, options) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, locationServiceInput, client, command, response, error_2, results;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error('No credentials');\n }\n this._verifySearchIndex(options === null || options === void 0 ? void 0 : options.searchIndexName);\n locationServiceInput = {\n Text: text,\n IndexName: this._config.search_indices.default,\n };\n /**\n * Map search options to Amazon Location Service input object\n */\n if (options) {\n locationServiceInput = __assign(__assign({}, locationServiceInput), Object(_util__WEBPACK_IMPORTED_MODULE_3__[\"mapSearchOptions\"])(options, locationServiceInput));\n }\n client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"LocationClient\"]({\n credentials: this._config.credentials,\n region: this._config.region,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(),\n });\n command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"SearchPlaceIndexForSuggestionsCommand\"](locationServiceInput);\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4 /*yield*/, client.send(command)];\n case 3:\n response = _a.sent();\n return [3 /*break*/, 5];\n case 4:\n error_2 = _a.sent();\n logger.debug(error_2);\n throw error_2;\n case 5:\n results = response.Results.map(function (result) { return ({\n text: result.Text,\n placeId: result.PlaceId,\n }); });\n return [2 /*return*/, results];\n }\n });\n });\n };\n AmazonLocationServiceProvider.prototype._verifyPlaceId = function (placeId) {\n if (placeId.length === 0) {\n var errorString = 'PlaceId cannot be an empty string.';\n logger.debug(errorString);\n throw new Error(errorString);\n }\n };\n AmazonLocationServiceProvider.prototype.searchByPlaceId = function (placeId, options) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, client, searchByPlaceIdInput, command, response, error_3, place;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error('No credentials');\n }\n this._verifySearchIndex(options === null || options === void 0 ? void 0 : options.searchIndexName);\n this._verifyPlaceId(placeId);\n client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"LocationClient\"]({\n credentials: this._config.credentials,\n region: this._config.region,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(),\n });\n searchByPlaceIdInput = {\n PlaceId: placeId,\n IndexName: (options === null || options === void 0 ? void 0 : options.searchIndexName) || this._config.search_indices.default,\n };\n command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"GetPlaceCommand\"](searchByPlaceIdInput);\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4 /*yield*/, client.send(command)];\n case 3:\n response = _a.sent();\n return [3 /*break*/, 5];\n case 4:\n error_3 = _a.sent();\n logger.debug(error_3);\n throw error_3;\n case 5:\n place = response.Place;\n if (place) {\n return [2 /*return*/, camelcase_keys__WEBPACK_IMPORTED_MODULE_0___default()(place, { deep: true })];\n }\n return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Reverse geocoding search via a coordinate point on the map\n * @param coordinates - Coordinates array for the search input\n * @param options - Options parameters for the search\n * @returns {Promise} - Promise that resolves to a place matching search coordinates\n */\n AmazonLocationServiceProvider.prototype.searchByCoordinates = function (coordinates, options) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, locationServiceInput, client, command, response, error_4, PascalResults, results;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error('No credentials');\n }\n this._verifySearchIndex(options === null || options === void 0 ? void 0 : options.searchIndexName);\n locationServiceInput = {\n Position: coordinates,\n IndexName: this._config.search_indices.default,\n };\n if (options) {\n if (options.searchIndexName) {\n locationServiceInput.IndexName = options.searchIndexName;\n }\n locationServiceInput.MaxResults = options.maxResults;\n }\n client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"LocationClient\"]({\n credentials: this._config.credentials,\n region: this._config.region,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(),\n });\n command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"SearchPlaceIndexForPositionCommand\"](locationServiceInput);\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4 /*yield*/, client.send(command)];\n case 3:\n response = _a.sent();\n return [3 /*break*/, 5];\n case 4:\n error_4 = _a.sent();\n logger.debug(error_4);\n throw error_4;\n case 5:\n PascalResults = response.Results.map(function (result) { return result.Place; });\n results = camelcase_keys__WEBPACK_IMPORTED_MODULE_0___default()(PascalResults[0], {\n deep: true,\n });\n return [2 /*return*/, results];\n }\n });\n });\n };\n /**\n * Create geofences inside of a geofence collection\n * @param geofences - Array of geofence objects to create\n * @param options? - Optional parameters for creating geofences\n * @returns {Promise} - Promise that resolves to an object with:\n * successes: list of geofences successfully created\n * errors: list of geofences that failed to create\n */\n AmazonLocationServiceProvider.prototype.saveGeofences = function (geofences, options) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, PascalGeofences, results, geofenceBatches, apiLimit;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (geofences.length < 1) {\n throw new Error('Geofence input array is empty');\n }\n return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error('No credentials');\n }\n // Verify geofence collection exists in aws-config.js\n try {\n this._verifyGeofenceCollections(options === null || options === void 0 ? void 0 : options.collectionName);\n }\n catch (error) {\n logger.debug(error);\n throw error;\n }\n Object(_util__WEBPACK_IMPORTED_MODULE_3__[\"validateGeofencesInput\"])(geofences);\n PascalGeofences = geofences.map(function (_a) {\n var geofenceId = _a.geofenceId, polygon = _a.geometry.polygon;\n return {\n GeofenceId: geofenceId,\n Geometry: {\n Polygon: polygon,\n },\n };\n });\n results = {\n successes: [],\n errors: [],\n };\n geofenceBatches = [];\n while (PascalGeofences.length > 0) {\n apiLimit = 10;\n geofenceBatches.push(PascalGeofences.splice(0, apiLimit));\n }\n return [4 /*yield*/, Promise.all(geofenceBatches.map(function (batch) { return __awaiter(_this, void 0, void 0, function () {\n var response, error_5;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this._AmazonLocationServiceBatchPutGeofenceCall(batch, (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections.default)];\n case 1:\n response = _a.sent();\n return [3 /*break*/, 3];\n case 2:\n error_5 = _a.sent();\n // If the API call fails, add the geofences to the errors array and move to next batch\n batch.forEach(function (geofence) {\n results.errors.push({\n geofenceId: geofence.GeofenceId,\n error: {\n code: 'APIConnectionError',\n message: error_5.message,\n },\n });\n });\n return [2 /*return*/];\n case 3:\n // Push all successes to results\n response.Successes.forEach(function (success) {\n var GeofenceId = success.GeofenceId, CreateTime = success.CreateTime, UpdateTime = success.UpdateTime;\n results.successes.push({\n geofenceId: GeofenceId,\n createTime: CreateTime,\n updateTime: UpdateTime,\n });\n });\n // Push all errors to results\n response.Errors.forEach(function (error) {\n var _a = error.Error, Code = _a.Code, Message = _a.Message, GeofenceId = error.GeofenceId;\n results.errors.push({\n error: {\n code: Code,\n message: Message,\n },\n geofenceId: GeofenceId,\n });\n });\n return [2 /*return*/];\n }\n });\n }); }))];\n case 2:\n _a.sent();\n return [2 /*return*/, results];\n }\n });\n });\n };\n /**\n * Get geofence from a geofence collection\n * @param geofenceId:string\n * @param options?: Optional parameters for getGeofence\n * @returns {Promise} - Promise that resolves to a geofence object\n */\n AmazonLocationServiceProvider.prototype.getGeofence = function (geofenceId, options) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, client, commandInput, command, response, error_6, GeofenceId, CreateTime, UpdateTime, Status, Geometry, geofence;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error('No credentials');\n }\n // Verify geofence collection exists in aws-config.js\n try {\n this._verifyGeofenceCollections(options === null || options === void 0 ? void 0 : options.collectionName);\n }\n catch (error) {\n logger.debug(error);\n throw error;\n }\n Object(_util__WEBPACK_IMPORTED_MODULE_3__[\"validateGeofenceId\"])(geofenceId);\n client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"LocationClient\"]({\n credentials: this._config.credentials,\n region: this._config.region,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(),\n });\n commandInput = {\n GeofenceId: geofenceId,\n CollectionName: (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections.default,\n };\n command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"GetGeofenceCommand\"](commandInput);\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4 /*yield*/, client.send(command)];\n case 3:\n response = _a.sent();\n return [3 /*break*/, 5];\n case 4:\n error_6 = _a.sent();\n logger.debug(error_6);\n throw error_6;\n case 5:\n GeofenceId = response.GeofenceId, CreateTime = response.CreateTime, UpdateTime = response.UpdateTime, Status = response.Status, Geometry = response.Geometry;\n geofence = {\n createTime: CreateTime,\n geofenceId: GeofenceId,\n geometry: {\n polygon: Geometry.Polygon,\n },\n status: Status,\n updateTime: UpdateTime,\n };\n return [2 /*return*/, geofence];\n }\n });\n });\n };\n /**\n * List geofences from a geofence collection\n * @param options?: ListGeofenceOptions\n * @returns {Promise} - Promise that resolves to an object with:\n * entries: list of geofences - 100 geofences are listed per page\n * nextToken: token for next page of geofences\n */\n AmazonLocationServiceProvider.prototype.listGeofences = function (options) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, client, listGeofencesInput, command, response, error_7, NextToken, Entries, results;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error('No credentials');\n }\n // Verify geofence collection exists in aws-config.js\n try {\n this._verifyGeofenceCollections(options === null || options === void 0 ? void 0 : options.collectionName);\n }\n catch (error) {\n logger.debug(error);\n throw error;\n }\n client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"LocationClient\"]({\n credentials: this._config.credentials,\n region: this._config.region,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(),\n });\n listGeofencesInput = {\n NextToken: options === null || options === void 0 ? void 0 : options.nextToken,\n CollectionName: (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections.default,\n };\n command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"ListGeofencesCommand\"](listGeofencesInput);\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4 /*yield*/, client.send(command)];\n case 3:\n response = _a.sent();\n return [3 /*break*/, 5];\n case 4:\n error_7 = _a.sent();\n logger.debug(error_7);\n throw error_7;\n case 5:\n NextToken = response.NextToken, Entries = response.Entries;\n results = {\n entries: Entries.map(function (_a) {\n var GeofenceId = _a.GeofenceId, CreateTime = _a.CreateTime, UpdateTime = _a.UpdateTime, Status = _a.Status, Polygon = _a.Geometry.Polygon;\n return {\n geofenceId: GeofenceId,\n createTime: CreateTime,\n updateTime: UpdateTime,\n status: Status,\n geometry: {\n polygon: Polygon,\n },\n };\n }),\n nextToken: NextToken,\n };\n return [2 /*return*/, results];\n }\n });\n });\n };\n /**\n * Delete geofences from a geofence collection\n * @param geofenceIds: string|string[]\n * @param options?: GeofenceOptions\n * @returns {Promise} - Promise that resolves to an object with:\n * successes: list of geofences successfully deleted\n * errors: list of geofences that failed to delete\n */\n AmazonLocationServiceProvider.prototype.deleteGeofences = function (geofenceIds, options) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, badGeofenceIds, results, geofenceIdBatches, count;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (geofenceIds.length < 1) {\n throw new Error('GeofenceId input array is empty');\n }\n return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK) {\n throw new Error('No credentials');\n }\n this._verifyGeofenceCollections(options === null || options === void 0 ? void 0 : options.collectionName);\n badGeofenceIds = geofenceIds.filter(function (geofenceId) {\n try {\n Object(_util__WEBPACK_IMPORTED_MODULE_3__[\"validateGeofenceId\"])(geofenceId);\n }\n catch (error) {\n return true;\n }\n });\n if (badGeofenceIds.length > 0) {\n throw new Error(\"Invalid geofence ids: \" + badGeofenceIds.join(', '));\n }\n results = {\n successes: [],\n errors: [],\n };\n geofenceIdBatches = [];\n count = 0;\n while (count < geofenceIds.length) {\n geofenceIdBatches.push(geofenceIds.slice(count, (count += 10)));\n }\n return [4 /*yield*/, Promise.all(geofenceIdBatches.map(function (batch) { return __awaiter(_this, void 0, void 0, function () {\n var response, error_8, badGeofenceIds;\n var _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _b.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this._AmazonLocationServiceBatchDeleteGeofenceCall(batch, (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections.default)];\n case 1:\n response = _b.sent();\n return [3 /*break*/, 3];\n case 2:\n error_8 = _b.sent();\n // If the API call fails, add the geofences to the errors array and move to next batch\n batch.forEach(function (geofenceId) {\n var errorObject = {\n geofenceId: geofenceId,\n error: {\n code: error_8.message,\n message: error_8.message,\n },\n };\n results.errors.push(errorObject);\n });\n return [2 /*return*/];\n case 3:\n badGeofenceIds = response.Errors.map(function (_a) {\n var geofenceId = _a.geofenceId;\n return geofenceId;\n });\n (_a = results.successes).push.apply(_a, __spread(batch.filter(function (Id) { return !badGeofenceIds.includes(Id); })));\n return [2 /*return*/];\n }\n });\n }); }))];\n case 2:\n _a.sent();\n return [2 /*return*/, results];\n }\n });\n });\n };\n /**\n * @private\n */\n AmazonLocationServiceProvider.prototype._ensureCredentials = function () {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, cred, error_9;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Credentials\"].get()];\n case 1:\n credentials = _a.sent();\n if (!credentials)\n return [2 /*return*/, false];\n cred = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Credentials\"].shear(credentials);\n logger.debug('Set credentials for storage. Credentials are:', cred);\n this._config.credentials = cred;\n return [2 /*return*/, true];\n case 2:\n error_9 = _a.sent();\n logger.debug('Ensure credentials error. Credentials are:', error_9);\n return [2 /*return*/, false];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n AmazonLocationServiceProvider.prototype._verifyMapResources = function () {\n if (!this._config.maps) {\n var errorString = \"No map resources found in amplify config, run 'amplify add geo' to create one and run `amplify push` after\";\n logger.debug(errorString);\n throw new Error(errorString);\n }\n if (!this._config.maps.default) {\n var errorString = \"No default map resource found in amplify config, run 'amplify add geo' to create one and run `amplify push` after\";\n logger.debug(errorString);\n throw new Error(errorString);\n }\n };\n AmazonLocationServiceProvider.prototype._verifySearchIndex = function (optionalSearchIndex) {\n if ((!this._config.search_indices || !this._config.search_indices.default) &&\n !optionalSearchIndex) {\n var errorString = 'No Search Index found in amplify config, please run `amplify add geo` to create one and run `amplify push` after.';\n logger.debug(errorString);\n throw new Error(errorString);\n }\n };\n AmazonLocationServiceProvider.prototype._verifyGeofenceCollections = function (optionalGeofenceCollectionName) {\n if ((!this._config.geofenceCollections ||\n !this._config.geofenceCollections.default) &&\n !optionalGeofenceCollectionName) {\n var errorString = 'No Geofence Collections found, please run `amplify add geo` to create one and run `amplify push` after.';\n logger.debug(errorString);\n throw new Error(errorString);\n }\n };\n AmazonLocationServiceProvider.prototype._AmazonLocationServiceBatchPutGeofenceCall = function (PascalGeofences, collectionName) {\n return __awaiter(this, void 0, void 0, function () {\n var geofenceInput, client, command, response, error_10;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n geofenceInput = {\n Entries: PascalGeofences,\n CollectionName: collectionName || this._config.geofenceCollections.default,\n };\n client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"LocationClient\"]({\n credentials: this._config.credentials,\n region: this._config.region,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(),\n });\n command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"BatchPutGeofenceCommand\"](geofenceInput);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, client.send(command)];\n case 2:\n response = _a.sent();\n return [3 /*break*/, 4];\n case 3:\n error_10 = _a.sent();\n throw error_10;\n case 4: return [2 /*return*/, response];\n }\n });\n });\n };\n AmazonLocationServiceProvider.prototype._AmazonLocationServiceBatchDeleteGeofenceCall = function (geofenceIds, collectionName) {\n return __awaiter(this, void 0, void 0, function () {\n var deleteGeofencesInput, client, command, response, error_11;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n deleteGeofencesInput = {\n GeofenceIds: geofenceIds,\n CollectionName: collectionName || this._config.geofenceCollections.default,\n };\n client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"LocationClient\"]({\n credentials: this._config.credentials,\n region: this._config.region,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"getAmplifyUserAgent\"])(),\n });\n command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__[\"BatchDeleteGeofenceCommand\"](deleteGeofencesInput);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, client.send(command)];\n case 2:\n response = _a.sent();\n return [3 /*break*/, 4];\n case 3:\n error_11 = _a.sent();\n throw error_11;\n case 4: return [2 /*return*/, response];\n }\n });\n });\n };\n AmazonLocationServiceProvider.CATEGORY = 'Geo';\n AmazonLocationServiceProvider.PROVIDER_NAME = 'AmazonLocationService';\n return AmazonLocationServiceProvider;\n}());\n\n//# sourceMappingURL=AmazonLocationServiceProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/geo/lib-esm/Providers/AmazonLocationServiceProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/geo/lib-esm/index.js": /*!********************************************************!*\ !*** ./node_modules/@aws-amplify/geo/lib-esm/index.js ***! \********************************************************/ /*! exports provided: Geo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Geo__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Geo */ \"./node_modules/@aws-amplify/geo/lib-esm/Geo.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Geo\", function() { return _Geo__WEBPACK_IMPORTED_MODULE_0__[\"Geo\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/geo/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/geo/lib-esm/util.js": /*!*******************************************************!*\ !*** ./node_modules/@aws-amplify/geo/lib-esm/util.js ***! \*******************************************************/ /*! exports provided: validateCoordinates, validateGeofenceId, validateLinearRing, validatePolygon, validateGeofencesInput, mapSearchOptions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateCoordinates\", function() { return validateCoordinates; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateGeofenceId\", function() { return validateGeofenceId; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateLinearRing\", function() { return validateLinearRing; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validatePolygon\", function() { return validatePolygon; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateGeofencesInput\", function() { return validateGeofencesInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mapSearchOptions\", function() { return mapSearchOptions; });\n/* harmony import */ var _turf_boolean_clockwise__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @turf/boolean-clockwise */ \"./node_modules/@turf/boolean-clockwise/dist/es/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n/*\n * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\nfunction validateCoordinates(lng, lat) {\n if (!Number.isFinite(lng) || !Number.isFinite(lat)) {\n throw new Error(\"Invalid coordinates: [\" + lng + \",\" + lat + \"]\");\n }\n if (lat < -90 || 90 < lat) {\n throw new Error('Latitude must be between -90 and 90 degrees inclusive.');\n }\n else if (lng < -180 || 180 < lng) {\n throw new Error('Longitude must be between -180 and 180 degrees inclusive.');\n }\n}\nfunction validateGeofenceId(geofenceId) {\n var geofenceIdRegex = /^[-._\\p{L}\\p{N}]+$/iu;\n // Check if geofenceId is valid\n if (!geofenceIdRegex.test(geofenceId)) {\n throw new Error(\"Invalid geofenceId: '\" + geofenceId + \"' - IDs can only contain alphanumeric characters, hyphens, underscores and periods.\");\n }\n}\nfunction validateLinearRing(linearRing, geofenceId) {\n var errorPrefix = geofenceId ? geofenceId + \": \" : '';\n // Validate LinearRing size, must be at least 4 points\n if (linearRing.length < 4) {\n throw new Error(errorPrefix + \"LinearRing must contain 4 or more coordinates.\");\n }\n // Validate all coordinates are valid, error with which ones are bad\n var badCoordinates = [];\n linearRing.forEach(function (coordinates) {\n try {\n validateCoordinates(coordinates[0], coordinates[1]);\n }\n catch (error) {\n badCoordinates.push({ coordinates: coordinates, error: error.message });\n }\n });\n if (badCoordinates.length > 0) {\n throw new Error(errorPrefix + \"One or more of the coordinates in the Polygon LinearRing are not valid: \" + JSON.stringify(badCoordinates));\n }\n // Validate first and last coordinates are the same\n var _a = __read(linearRing[0], 2), lngA = _a[0], latA = _a[1];\n var _b = __read(linearRing[linearRing.length - 1], 2), lngB = _b[0], latB = _b[1];\n if (lngA !== lngB || latA !== latB) {\n throw new Error(errorPrefix + \"LinearRing's first and last coordinates are not the same\");\n }\n if (Object(_turf_boolean_clockwise__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(linearRing)) {\n throw new Error(errorPrefix + \"LinearRing coordinates must be wound counterclockwise\");\n }\n}\nfunction validatePolygon(polygon, geofenceId) {\n var errorPrefix = geofenceId ? geofenceId + \": \" : '';\n if (!Array.isArray(polygon)) {\n throw new Error(errorPrefix + \"Polygon is of incorrect structure. It should be an array of LinearRings\");\n }\n if (polygon.length < 1) {\n throw new Error(errorPrefix + \"Polygon must have a single LinearRing array.\");\n }\n if (polygon.length > 1) {\n 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.\");\n }\n var verticesCount = polygon.reduce(function (prev, linearRing) { return prev + linearRing.length; }, 0);\n if (verticesCount > 1000) {\n throw new Error(errorPrefix + \"Polygon has more than the maximum 1000 vertices.\");\n }\n polygon.forEach(function (linearRing) {\n validateLinearRing(linearRing, geofenceId);\n });\n}\nfunction validateGeofencesInput(geofences) {\n var geofenceIds = {};\n geofences.forEach(function (geofence) {\n // verify all required properties are present\n // Validate geofenceId exists\n if (!geofence.geofenceId) {\n throw new Error(\"Geofence '\" + geofence + \"' is missing geofenceId\");\n }\n var geofenceId = geofence.geofenceId;\n validateGeofenceId(geofenceId);\n // Validate geofenceId is unique\n if (geofenceIds[geofenceId]) {\n throw new Error(\"Duplicate geofenceId: \" + geofenceId);\n }\n else {\n geofenceIds[geofenceId] = true;\n }\n // Validate geometry exists\n if (!geofence.geometry) {\n throw new Error(\"Geofence '\" + geofenceId + \"' is missing geometry\");\n }\n var geometry = geofence.geometry;\n // Validate polygon exists\n if (!geometry.polygon) {\n throw new Error(\"Geofence '\" + geofenceId + \"' is missing geometry.polygon\");\n }\n var polygon = geometry.polygon;\n // Validate polygon length and structure\n try {\n validatePolygon(polygon, geofenceId);\n }\n catch (error) {\n if (error.message.includes('Polygon has more than the maximum 1000 vertices.')) {\n throw new Error(\"Geofence '\" + geofenceId + \"' has more than the maximum of 1000 vertices\");\n }\n }\n // Validate LinearRing length, structure, and coordinates\n var _a = __read(polygon, 1), linearRing = _a[0];\n validateLinearRing(linearRing, geofenceId);\n });\n}\nfunction mapSearchOptions(options, locationServiceInput) {\n var locationServiceModifiedInput = __assign({}, locationServiceInput);\n locationServiceModifiedInput.FilterCountries = options.countries;\n locationServiceModifiedInput.MaxResults = options.maxResults;\n if (options.searchIndexName) {\n locationServiceModifiedInput.IndexName = options.searchIndexName;\n }\n if (options['biasPosition'] && options['searchAreaConstraints']) {\n throw new Error('BiasPosition and SearchAreaConstraints are mutually exclusive, please remove one or the other from the options object');\n }\n if (options['biasPosition']) {\n locationServiceModifiedInput.BiasPosition = options['biasPosition'];\n }\n if (options['searchAreaConstraints']) {\n locationServiceModifiedInput.FilterBBox = options['searchAreaConstraints'];\n }\n return locationServiceModifiedInput;\n}\n//# sourceMappingURL=util.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/geo/lib-esm/util.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/interactions/lib-esm/Interactions.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-amplify/interactions/lib-esm/Interactions.js ***! \************************************************************************/ /*! exports provided: InteractionsClass, Interactions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InteractionsClass\", function() { return InteractionsClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Interactions\", function() { return Interactions; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _Providers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Providers */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Interactions');\nvar InteractionsClass = /** @class */ (function () {\n /**\n * Initialize PubSub with AWS configurations\n *\n * @param {InteractionsOptions} options - Configuration object for Interactions\n */\n function InteractionsClass(options) {\n if (options === void 0) { options = {}; }\n this._options = options;\n logger.debug('Interactions Options', this._options);\n this._pluggables = {};\n }\n InteractionsClass.prototype.getModuleName = function () {\n return 'Interactions';\n };\n /**\n *\n * @param {InteractionsOptions} options - Configuration object for Interactions\n * @return {InteractionsOptions} - The current configuration\n */\n InteractionsClass.prototype.configure = function (options) {\n var _this = this;\n var opt = options ? options.Interactions || options : {};\n logger.debug('configure Interactions', { opt: opt });\n this._options = __assign(__assign({ bots: {} }, opt), opt.Interactions);\n var aws_bots_config = this._options.aws_bots_config;\n var bots_config = this._options.bots;\n if (!Object.keys(bots_config).length && aws_bots_config) {\n // Convert aws_bots_config to bots object\n if (Array.isArray(aws_bots_config)) {\n aws_bots_config.forEach(function (bot) {\n _this._options.bots[bot.name] = bot;\n });\n }\n }\n // configure bots to their specific providers\n Object.keys(bots_config).forEach(function (botKey) {\n var _a;\n var bot = bots_config[botKey];\n var providerName = bot.providerName || 'AWSLexProvider';\n // add default provider if required\n if (!_this._pluggables.AWSLexProvider &&\n providerName === 'AWSLexProvider') {\n _this._pluggables.AWSLexProvider = new _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AWSLexProvider\"]();\n }\n // configure bot with it's respective provider\n if (_this._pluggables[providerName]) {\n _this._pluggables[providerName].configure((_a = {}, _a[bot.name] = bot, _a));\n }\n else {\n logger.debug(\"bot \" + bot.name + \" was not configured as \" + providerName + \" provider was not found\");\n }\n });\n return this._options;\n };\n InteractionsClass.prototype.addPluggable = function (pluggable) {\n var _this = this;\n if (pluggable && pluggable.getCategory() === 'Interactions') {\n if (!this._pluggables[pluggable.getProviderName()]) {\n // configure bots for the new plugin\n Object.keys(this._options.bots)\n .filter(function (botKey) {\n return _this._options.bots[botKey].providerName ===\n pluggable.getProviderName();\n })\n .forEach(function (botKey) {\n var _a;\n var bot = _this._options.bots[botKey];\n pluggable.configure((_a = {}, _a[bot.name] = bot, _a));\n });\n this._pluggables[pluggable.getProviderName()] = pluggable;\n return;\n }\n else {\n throw new Error('Pluggable ' + pluggable.getProviderName() + ' already plugged');\n }\n }\n };\n InteractionsClass.prototype.send = function (botname, message) {\n return __awaiter(this, void 0, void 0, function () {\n var botProvider;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!this._options.bots || !this._options.bots[botname]) {\n return [2 /*return*/, Promise.reject('Bot ' + botname + ' does not exist')];\n }\n botProvider = this._options.bots[botname].providerName || 'AWSLexProvider';\n if (!this._pluggables[botProvider]) {\n return [2 /*return*/, Promise.reject('Bot ' +\n botProvider +\n ' does not have valid pluggin did you try addPluggable first?')];\n }\n return [4 /*yield*/, this._pluggables[botProvider].sendMessage(botname, message)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n InteractionsClass.prototype.onComplete = function (botname, callback) {\n if (!this._options.bots || !this._options.bots[botname]) {\n throw new Error('Bot ' + botname + ' does not exist');\n }\n var botProvider = this._options.bots[botname].providerName || 'AWSLexProvider';\n if (!this._pluggables[botProvider]) {\n throw new Error('Bot ' +\n botProvider +\n ' does not have valid pluggin did you try addPluggable first?');\n }\n this._pluggables[botProvider].onComplete(botname, callback);\n };\n return InteractionsClass;\n}());\n\nvar Interactions = new InteractionsClass();\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"].register(Interactions);\n//# sourceMappingURL=Interactions.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/interactions/lib-esm/Interactions.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProvider.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProvider.js ***! \************************************************************************************/ /*! exports provided: AWSLexProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSLexProvider\", function() { return AWSLexProvider; });\n/* harmony import */ var _InteractionsProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./InteractionsProvider */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/InteractionsProvider.js\");\n/* harmony import */ var _aws_sdk_client_lex_runtime_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-lex-runtime-service */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _AWSLexProviderHelper_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AWSLexProviderHelper/utils */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/utils.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"ConsoleLogger\"]('AWSLexProvider');\nvar AWSLexProvider = /** @class */ (function (_super) {\n __extends(AWSLexProvider, _super);\n function AWSLexProvider(options) {\n if (options === void 0) { options = {}; }\n var _this = _super.call(this, options) || this;\n _this._botsCompleteCallback = {};\n return _this;\n }\n AWSLexProvider.prototype.getProviderName = function () {\n return 'AWSLexProvider';\n };\n AWSLexProvider.prototype.configure = function (config) {\n if (config === void 0) { config = {}; }\n var propertiesToTest = ['name', 'alias', 'region'];\n Object.keys(config).forEach(function (botKey) {\n var botConfig = config[botKey];\n // is bot config correct\n if (!propertiesToTest.every(function (x) { return x in botConfig; })) {\n throw new Error('invalid bot configuration');\n }\n });\n return _super.prototype.configure.call(this, config);\n };\n /**\n * @private\n * @deprecated\n * This is used internally by 'sendMessage' to call onComplete callback\n * for a bot if configured\n */\n AWSLexProvider.prototype.reportBotStatus = function (data, botname) {\n var _this = this;\n // Check if state is fulfilled to resolve onFullfilment promise\n logger.debug('postContent state', data.dialogState);\n if (data.dialogState === 'ReadyForFulfillment' ||\n data.dialogState === 'Fulfilled') {\n if (typeof this._botsCompleteCallback[botname] === 'function') {\n setTimeout(function () { return _this._botsCompleteCallback[botname](null, data); }, 0);\n }\n if (this._config &&\n typeof this._config[botname].onComplete === 'function') {\n setTimeout(function () { return _this._config[botname].onComplete(null, data); }, 0);\n }\n }\n if (data.dialogState === 'Failed') {\n if (typeof this._botsCompleteCallback[botname] === 'function') {\n setTimeout(function () { return _this._botsCompleteCallback[botname]('Bot conversation failed'); }, 0);\n }\n if (this._config &&\n typeof this._config[botname].onComplete === 'function') {\n setTimeout(function () { return _this._config[botname].onComplete('Bot conversation failed'); }, 0);\n }\n }\n };\n AWSLexProvider.prototype.sendMessage = function (botname, message) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, error_1, params, postTextCommand, data, err_1, content, messageType, inputStream, _a, postContentCommand, data, audioArray, _b, response, err_2;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n // check if bot exists\n if (!this._config[botname]) {\n return [2 /*return*/, Promise.reject('Bot ' + botname + ' does not exist')];\n }\n _c.label = 1;\n case 1:\n _c.trys.push([1, 3, , 4]);\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"Credentials\"].get()];\n case 2:\n credentials = _c.sent();\n return [3 /*break*/, 4];\n case 3:\n error_1 = _c.sent();\n return [2 /*return*/, Promise.reject('No credentials')];\n case 4:\n this.lexRuntimeServiceClient = new _aws_sdk_client_lex_runtime_service__WEBPACK_IMPORTED_MODULE_1__[\"LexRuntimeServiceClient\"]({\n region: this._config[botname].region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"getAmplifyUserAgent\"])(),\n });\n if (!(typeof message === 'string')) return [3 /*break*/, 9];\n params = {\n botAlias: this._config[botname].alias,\n botName: botname,\n inputText: message,\n userId: credentials.identityId,\n };\n logger.debug('postText to lex', message);\n _c.label = 5;\n case 5:\n _c.trys.push([5, 7, , 8]);\n postTextCommand = new _aws_sdk_client_lex_runtime_service__WEBPACK_IMPORTED_MODULE_1__[\"PostTextCommand\"](params);\n return [4 /*yield*/, this.lexRuntimeServiceClient.send(postTextCommand)];\n case 6:\n data = _c.sent();\n this.reportBotStatus(data, botname);\n return [2 /*return*/, data];\n case 7:\n err_1 = _c.sent();\n return [2 /*return*/, Promise.reject(err_1)];\n case 8: return [3 /*break*/, 21];\n case 9:\n content = message.content, messageType = message.options.messageType;\n if (!(messageType === 'voice')) return [3 /*break*/, 13];\n if (typeof content !== 'object') {\n return [2 /*return*/, Promise.reject('invalid content type')];\n }\n if (!(content instanceof Uint8Array)) return [3 /*break*/, 10];\n _a = content;\n return [3 /*break*/, 12];\n case 10: return [4 /*yield*/, Object(_AWSLexProviderHelper_utils__WEBPACK_IMPORTED_MODULE_3__[\"convert\"])(content)];\n case 11:\n _a = _c.sent();\n _c.label = 12;\n case 12:\n inputStream = _a;\n params = {\n botAlias: this._config[botname].alias,\n botName: botname,\n contentType: 'audio/x-l16; sample-rate=16000; channel-count=1',\n userId: credentials.identityId,\n accept: 'audio/mpeg',\n inputStream: inputStream,\n };\n return [3 /*break*/, 14];\n case 13:\n if (typeof content !== 'string')\n return [2 /*return*/, Promise.reject('invalid content type')];\n params = {\n botAlias: this._config[botname].alias,\n botName: botname,\n contentType: 'text/plain; charset=utf-8',\n inputStream: content,\n userId: credentials.identityId,\n accept: 'audio/mpeg',\n };\n _c.label = 14;\n case 14:\n logger.debug('postContent to lex', message);\n _c.label = 15;\n case 15:\n _c.trys.push([15, 20, , 21]);\n postContentCommand = new _aws_sdk_client_lex_runtime_service__WEBPACK_IMPORTED_MODULE_1__[\"PostContentCommand\"](params);\n return [4 /*yield*/, this.lexRuntimeServiceClient.send(postContentCommand)];\n case 16:\n data = _c.sent();\n if (!data.audioStream) return [3 /*break*/, 18];\n return [4 /*yield*/, Object(_AWSLexProviderHelper_utils__WEBPACK_IMPORTED_MODULE_3__[\"convert\"])(data.audioStream)];\n case 17:\n _b = _c.sent();\n return [3 /*break*/, 19];\n case 18:\n _b = undefined;\n _c.label = 19;\n case 19:\n audioArray = _b;\n response = __assign(__assign({}, data), { audioStream: audioArray });\n this.reportBotStatus(response, botname);\n return [2 /*return*/, response];\n case 20:\n err_2 = _c.sent();\n return [2 /*return*/, Promise.reject(err_2)];\n case 21: return [2 /*return*/];\n }\n });\n });\n };\n AWSLexProvider.prototype.onComplete = function (botname, callback) {\n // does bot exist\n if (!this._config[botname]) {\n throw new Error('Bot ' + botname + ' does not exist');\n }\n this._botsCompleteCallback[botname] = callback;\n };\n return AWSLexProvider;\n}(_InteractionsProvider__WEBPACK_IMPORTED_MODULE_0__[\"AbstractInteractionsProvider\"]));\n\n//# sourceMappingURL=AWSLexProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/commonUtils.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/commonUtils.js ***! \******************************************************************************************************/ /*! exports provided: unGzipBase64AsJson */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unGzipBase64AsJson\", function() { return unGzipBase64AsJson; });\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/utils.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n/*\n * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\nvar unGzipBase64AsJson = function (gzipBase64) { return __awaiter(void 0, void 0, void 0, function () {\n var decodedArrayBuffer, objString, error_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (typeof gzipBase64 === 'undefined')\n return [2 /*return*/, undefined];\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n decodedArrayBuffer = Object(_utils__WEBPACK_IMPORTED_MODULE_0__[\"base64ToArrayBuffer\"])(gzipBase64);\n return [4 /*yield*/, Object(_utils__WEBPACK_IMPORTED_MODULE_0__[\"gzipDecompressToString\"])(decodedArrayBuffer)];\n case 2:\n objString = _a.sent();\n return [2 /*return*/, JSON.parse(objString)];\n case 3:\n error_1 = _a.sent();\n return [2 /*return*/, Promise.reject('unable to decode and decompress ' + error_1)];\n case 4: return [2 /*return*/];\n }\n });\n}); };\n//# sourceMappingURL=commonUtils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/commonUtils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/utils.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/utils.js ***! \************************************************************************************************/ /*! exports provided: convert, base64ToArrayBuffer, gzipDecompressToString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"convert\", function() { return convert; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"base64ToArrayBuffer\", function() { return base64ToArrayBuffer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"gzipDecompressToString\", function() { return gzipDecompressToString; });\n/* harmony import */ var fflate__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fflate */ \"./node_modules/fflate/esm/browser.js\");\n/*\n * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\nvar convert = function (stream) { return __awaiter(void 0, void 0, void 0, function () {\n return __generator(this, function (_a) {\n if (stream instanceof Blob || stream instanceof ReadableStream) {\n return [2 /*return*/, new Response(stream)\n .arrayBuffer()\n .then(function (buffer) { return new Uint8Array(buffer); })];\n }\n else {\n return [2 /*return*/, Promise.reject('Invalid content type')];\n }\n return [2 /*return*/];\n });\n}); };\nvar base64ToArrayBuffer = function (base64) {\n return Uint8Array.from(window.atob(base64), function (c) { return c.charCodeAt(0); });\n};\nvar gzipDecompressToString = function (data) { return __awaiter(void 0, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, new Promise(function (resolve, reject) {\n Object(fflate__WEBPACK_IMPORTED_MODULE_0__[\"gunzip\"])(data, function (err, resp) {\n if (err)\n reject(err);\n else\n resolve(Object(fflate__WEBPACK_IMPORTED_MODULE_0__[\"strFromU8\"])(resp));\n });\n })];\n case 1: return [2 /*return*/, _a.sent()];\n }\n });\n}); };\n//# sourceMappingURL=utils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/utils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexV2Provider.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexV2Provider.js ***! \**************************************************************************************/ /*! exports provided: AWSLexV2Provider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSLexV2Provider\", function() { return AWSLexV2Provider; });\n/* harmony import */ var _InteractionsProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./InteractionsProvider */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/InteractionsProvider.js\");\n/* harmony import */ var _aws_sdk_client_lex_runtime_v2__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-lex-runtime-v2 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _AWSLexProviderHelper_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AWSLexProviderHelper/utils */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/utils.js\");\n/* harmony import */ var _AWSLexProviderHelper_commonUtils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./AWSLexProviderHelper/commonUtils */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProviderHelper/commonUtils.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n/*\n * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"ConsoleLogger\"]('AWSLexV2Provider');\nvar AWSLexV2Provider = /** @class */ (function (_super) {\n __extends(AWSLexV2Provider, _super);\n /**\n * Initialize Interactions with AWS configurations\n * @param {InteractionsOptions} options - Configuration object for Interactions\n */\n function AWSLexV2Provider(options) {\n if (options === void 0) { options = {}; }\n var _this = _super.call(this, options) || this;\n _this._botsCompleteCallback = {};\n return _this;\n }\n /**\n * get provider name of the plugin\n * @returns {string} name of the provider\n */\n AWSLexV2Provider.prototype.getProviderName = function () {\n return 'AWSLexV2Provider';\n };\n /**\n * Configure Interactions part with aws configuration\n * @param {AWSLexV2ProviderOptions} config - Configuration of the Interactions\n * @return {AWSLexV2ProviderOptions} - Current configuration\n */\n AWSLexV2Provider.prototype.configure = function (config) {\n if (config === void 0) { config = {}; }\n var propertiesToTest = [\n 'name',\n 'botId',\n 'aliasId',\n 'localeId',\n 'providerName',\n 'region',\n ];\n Object.keys(config).forEach(function (botKey) {\n var botConfig = config[botKey];\n // is bot config correct\n if (!propertiesToTest.every(function (x) { return x in botConfig; })) {\n throw new Error('invalid bot configuration');\n }\n });\n return _super.prototype.configure.call(this, config);\n };\n /**\n * Send a message to a bot\n * @async\n * @param {string} botname - Bot name to send the message\n * @param {string | InteractionsMessage} message - message to send to the bot\n * @return {Promise} A promise resolves to the response from the bot\n */\n AWSLexV2Provider.prototype.sendMessage = function (botname, message) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, error_1, response, reqBaseParams;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n // check if bot exists\n if (!this._config[botname]) {\n return [2 /*return*/, Promise.reject('Bot ' + botname + ' does not exist')];\n }\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"Credentials\"].get()];\n case 2:\n credentials = _a.sent();\n return [3 /*break*/, 4];\n case 3:\n error_1 = _a.sent();\n return [2 /*return*/, Promise.reject('No credentials')];\n case 4:\n this._lexRuntimeServiceV2Client = new _aws_sdk_client_lex_runtime_v2__WEBPACK_IMPORTED_MODULE_1__[\"LexRuntimeV2Client\"]({\n region: this._config[botname].region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"getAmplifyUserAgent\"])(),\n });\n reqBaseParams = {\n botAliasId: this._config[botname].aliasId,\n botId: this._config[botname].botId,\n localeId: this._config[botname].localeId,\n sessionId: credentials.identityId,\n };\n if (!(typeof message === 'string')) return [3 /*break*/, 6];\n return [4 /*yield*/, this._handleRecognizeTextCommand(botname, message, reqBaseParams)];\n case 5:\n response = _a.sent();\n return [3 /*break*/, 8];\n case 6: return [4 /*yield*/, this._handleRecognizeUtteranceCommand(botname, message, reqBaseParams)];\n case 7:\n response = _a.sent();\n _a.label = 8;\n case 8: return [2 /*return*/, response];\n }\n });\n });\n };\n /**\n * Attach a onComplete callback function to a bot.\n * The callback is called once the bot's intent is fulfilled\n * @param {string} botname - Bot name to attach the onComplete callback\n * @param {(err: Error | null, confirmation: InteractionsResponse) => void} callback - called when Intent Fulfilled\n */\n AWSLexV2Provider.prototype.onComplete = function (botname, callback) {\n // does bot exist\n if (!this._config[botname]) {\n throw new Error('Bot ' + botname + ' does not exist');\n }\n this._botsCompleteCallback[botname] = callback;\n };\n /**\n * @private\n * call onComplete callback for a bot if configured\n */\n AWSLexV2Provider.prototype._reportBotStatus = function (data, botname) {\n var _this = this;\n var _a, _b, _c, _d, _e, _f;\n var sessionState = data === null || data === void 0 ? void 0 : data.sessionState;\n // Check if state is fulfilled to resolve onFullfilment promise\n logger.debug('postContent state', (_a = sessionState === null || sessionState === void 0 ? void 0 : sessionState.intent) === null || _a === void 0 ? void 0 : _a.state);\n var isConfigOnCompleteAttached = typeof ((_b = this._config) === null || _b === void 0 ? void 0 : _b[botname].onComplete) === 'function';\n var isApiOnCompleteAttached = typeof ((_c = this._botsCompleteCallback) === null || _c === void 0 ? void 0 : _c[botname]) === 'function';\n // no onComplete callbacks added\n if (!isConfigOnCompleteAttached && !isApiOnCompleteAttached)\n return;\n if (((_d = sessionState === null || sessionState === void 0 ? void 0 : sessionState.intent) === null || _d === void 0 ? void 0 : _d.state) === 'ReadyForFulfillment' ||\n ((_e = sessionState === null || sessionState === void 0 ? void 0 : sessionState.intent) === null || _e === void 0 ? void 0 : _e.state) === 'Fulfilled') {\n if (isApiOnCompleteAttached) {\n setTimeout(function () { var _a; return (_a = _this._botsCompleteCallback) === null || _a === void 0 ? void 0 : _a[botname](null, data); }, 0);\n }\n if (isConfigOnCompleteAttached) {\n setTimeout(function () { return _this._config[botname].onComplete(null, data); }, 0);\n }\n }\n if (((_f = sessionState === null || sessionState === void 0 ? void 0 : sessionState.intent) === null || _f === void 0 ? void 0 : _f.state) === 'Failed') {\n var error_2 = new Error('Bot conversation failed');\n if (isApiOnCompleteAttached) {\n setTimeout(function () { return _this._botsCompleteCallback[botname](error_2); }, 0);\n }\n if (isConfigOnCompleteAttached) {\n setTimeout(function () { return _this._config[botname].onComplete(error_2); }, 0);\n }\n }\n };\n /**\n * Format UtteranceCommandOutput's response\n * decompress attributes\n * update audioStream format\n */\n AWSLexV2Provider.prototype._formatUtteranceCommandOutput = function (data) {\n return __awaiter(this, void 0, void 0, function () {\n var response, _a, _b, _c;\n return __generator(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [__assign({}, data)];\n _b = {};\n return [4 /*yield*/, Object(_AWSLexProviderHelper_commonUtils__WEBPACK_IMPORTED_MODULE_4__[\"unGzipBase64AsJson\"])(data.messages)];\n case 1:\n _b.messages = _d.sent();\n return [4 /*yield*/, Object(_AWSLexProviderHelper_commonUtils__WEBPACK_IMPORTED_MODULE_4__[\"unGzipBase64AsJson\"])(data.sessionState)];\n case 2:\n _b.sessionState = _d.sent();\n return [4 /*yield*/, Object(_AWSLexProviderHelper_commonUtils__WEBPACK_IMPORTED_MODULE_4__[\"unGzipBase64AsJson\"])(data.interpretations)];\n case 3:\n _b.interpretations = _d.sent();\n return [4 /*yield*/, Object(_AWSLexProviderHelper_commonUtils__WEBPACK_IMPORTED_MODULE_4__[\"unGzipBase64AsJson\"])(data.requestAttributes)];\n case 4:\n _b.requestAttributes = _d.sent();\n return [4 /*yield*/, Object(_AWSLexProviderHelper_commonUtils__WEBPACK_IMPORTED_MODULE_4__[\"unGzipBase64AsJson\"])(data.inputTranscript)];\n case 5:\n _b.inputTranscript = _d.sent();\n if (!data.audioStream) return [3 /*break*/, 7];\n return [4 /*yield*/, Object(_AWSLexProviderHelper_utils__WEBPACK_IMPORTED_MODULE_3__[\"convert\"])(data.audioStream)];\n case 6:\n _c = _d.sent();\n return [3 /*break*/, 8];\n case 7:\n _c = undefined;\n _d.label = 8;\n case 8:\n response = __assign.apply(void 0, _a.concat([(_b.audioStream = _c, _b)]));\n return [2 /*return*/, response];\n }\n });\n });\n };\n /**\n * handle client's `RecognizeTextCommand`\n * used for sending simple text message\n */\n AWSLexV2Provider.prototype._handleRecognizeTextCommand = function (botname, data, baseParams) {\n return __awaiter(this, void 0, void 0, function () {\n var params, recognizeTextCommand, data_1, err_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug('postText to lex2', data);\n params = __assign(__assign({}, baseParams), { text: data });\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n recognizeTextCommand = new _aws_sdk_client_lex_runtime_v2__WEBPACK_IMPORTED_MODULE_1__[\"RecognizeTextCommand\"](params);\n return [4 /*yield*/, this._lexRuntimeServiceV2Client.send(recognizeTextCommand)];\n case 2:\n data_1 = _a.sent();\n this._reportBotStatus(data_1, botname);\n return [2 /*return*/, data_1];\n case 3:\n err_1 = _a.sent();\n return [2 /*return*/, Promise.reject(err_1)];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * handle client's `RecognizeUtteranceCommand`\n * used for obj text or obj voice message\n */\n AWSLexV2Provider.prototype._handleRecognizeUtteranceCommand = function (botname, data, baseParams) {\n return __awaiter(this, void 0, void 0, function () {\n var content, messageType, params, inputStream, _a, recognizeUtteranceCommand, data_2, response, err_2;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n content = data.content, messageType = data.options.messageType;\n logger.debug('postContent to lex2', data);\n if (!(messageType === 'voice')) return [3 /*break*/, 4];\n if (typeof content !== 'object') {\n return [2 /*return*/, Promise.reject('invalid content type')];\n }\n if (!(content instanceof Uint8Array)) return [3 /*break*/, 1];\n _a = content;\n return [3 /*break*/, 3];\n case 1: return [4 /*yield*/, Object(_AWSLexProviderHelper_utils__WEBPACK_IMPORTED_MODULE_3__[\"convert\"])(content)];\n case 2:\n _a = _b.sent();\n _b.label = 3;\n case 3:\n inputStream = _a;\n params = __assign(__assign({}, baseParams), { requestContentType: 'audio/x-l16; sample-rate=16000; channel-count=1', inputStream: inputStream });\n return [3 /*break*/, 5];\n case 4:\n // text input\n if (typeof content !== 'string')\n return [2 /*return*/, Promise.reject('invalid content type')];\n params = __assign(__assign({}, baseParams), { requestContentType: 'text/plain; charset=utf-8', inputStream: content });\n _b.label = 5;\n case 5:\n _b.trys.push([5, 8, , 9]);\n recognizeUtteranceCommand = new _aws_sdk_client_lex_runtime_v2__WEBPACK_IMPORTED_MODULE_1__[\"RecognizeUtteranceCommand\"](params);\n return [4 /*yield*/, this._lexRuntimeServiceV2Client.send(recognizeUtteranceCommand)];\n case 6:\n data_2 = _b.sent();\n return [4 /*yield*/, this._formatUtteranceCommandOutput(data_2)];\n case 7:\n response = _b.sent();\n this._reportBotStatus(response, botname);\n return [2 /*return*/, response];\n case 8:\n err_2 = _b.sent();\n return [2 /*return*/, Promise.reject(err_2)];\n case 9: return [2 /*return*/];\n }\n });\n });\n };\n return AWSLexV2Provider;\n}(_InteractionsProvider__WEBPACK_IMPORTED_MODULE_0__[\"AbstractInteractionsProvider\"]));\n\n//# sourceMappingURL=AWSLexV2Provider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexV2Provider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/interactions/lib-esm/Providers/InteractionsProvider.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/interactions/lib-esm/Providers/InteractionsProvider.js ***! \******************************************************************************************/ /*! exports provided: AbstractInteractionsProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbstractInteractionsProvider\", function() { return AbstractInteractionsProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AbstractInteractionsProvider');\nvar AbstractInteractionsProvider = /** @class */ (function () {\n function AbstractInteractionsProvider(options) {\n if (options === void 0) { options = {}; }\n this._config = options;\n }\n AbstractInteractionsProvider.prototype.configure = function (config) {\n if (config === void 0) { config = {}; }\n this._config = __assign(__assign({}, this._config), config);\n logger.debug(\"configure \" + this.getProviderName(), this._config);\n return this.options;\n };\n AbstractInteractionsProvider.prototype.getCategory = function () {\n return 'Interactions';\n };\n Object.defineProperty(AbstractInteractionsProvider.prototype, \"options\", {\n get: function () {\n return __assign({}, this._config);\n },\n enumerable: true,\n configurable: true\n });\n return AbstractInteractionsProvider;\n}());\n\n//# sourceMappingURL=InteractionsProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/interactions/lib-esm/Providers/InteractionsProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/interactions/lib-esm/Providers/index.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-amplify/interactions/lib-esm/Providers/index.js ***! \***************************************************************************/ /*! exports provided: AWSLexProvider, AWSLexV2Provider, AbstractInteractionsProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AWSLexProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AWSLexProvider */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSLexProvider\", function() { return _AWSLexProvider__WEBPACK_IMPORTED_MODULE_0__[\"AWSLexProvider\"]; });\n\n/* harmony import */ var _AWSLexV2Provider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AWSLexV2Provider */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexV2Provider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSLexV2Provider\", function() { return _AWSLexV2Provider__WEBPACK_IMPORTED_MODULE_1__[\"AWSLexV2Provider\"]; });\n\n/* harmony import */ var _InteractionsProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./InteractionsProvider */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/InteractionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbstractInteractionsProvider\", function() { return _InteractionsProvider__WEBPACK_IMPORTED_MODULE_2__[\"AbstractInteractionsProvider\"]; });\n\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/interactions/lib-esm/Providers/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/interactions/lib-esm/index.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-amplify/interactions/lib-esm/index.js ***! \*****************************************************************/ /*! exports provided: default, AbstractInteractionsProvider, AWSLexProvider, AWSLexV2Provider, Interactions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Interactions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Interactions */ \"./node_modules/@aws-amplify/interactions/lib-esm/Interactions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Interactions\", function() { return _Interactions__WEBPACK_IMPORTED_MODULE_0__[\"Interactions\"]; });\n\n/* harmony import */ var _Providers_InteractionsProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Providers/InteractionsProvider */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/InteractionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbstractInteractionsProvider\", function() { return _Providers_InteractionsProvider__WEBPACK_IMPORTED_MODULE_1__[\"AbstractInteractionsProvider\"]; });\n\n/* harmony import */ var _Providers_AWSLexProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Providers/AWSLexProvider */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSLexProvider\", function() { return _Providers_AWSLexProvider__WEBPACK_IMPORTED_MODULE_2__[\"AWSLexProvider\"]; });\n\n/* harmony import */ var _Providers_AWSLexV2Provider__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Providers/AWSLexV2Provider */ \"./node_modules/@aws-amplify/interactions/lib-esm/Providers/AWSLexV2Provider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSLexV2Provider\", function() { return _Providers_AWSLexV2Provider__WEBPACK_IMPORTED_MODULE_3__[\"AWSLexV2Provider\"]; });\n\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_Interactions__WEBPACK_IMPORTED_MODULE_0__[\"Interactions\"]);\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/interactions/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/Predictions.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/Predictions.js ***! \**********************************************************************/ /*! exports provided: PredictionsClass, Predictions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PredictionsClass\", function() { return PredictionsClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Predictions\", function() { return Predictions; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Predictions');\nvar PredictionsClass = /** @class */ (function () {\n /**\n * Initialize Predictions with AWS configurations\n * @param {PredictionsOptions} options - Configuration object for Predictions\n */\n function PredictionsClass(options) {\n this._options = options;\n this._convertPluggables = [];\n this._identifyPluggables = [];\n this._interpretPluggables = [];\n }\n PredictionsClass.prototype.getModuleName = function () {\n return 'Predictions';\n };\n /**\n * add plugin/pluggable into Predictions category\n * @param {Object} pluggable - an instance of the plugin/pluggable\n **/\n PredictionsClass.prototype.addPluggable = function (pluggable) {\n if (this.getPluggable(pluggable.getProviderName())) {\n throw new Error(\"Pluggable with name \" + pluggable.getProviderName() + \" has already been added.\");\n }\n var pluggableAdded = false;\n if (this.implementsConvertPluggable(pluggable)) {\n this._convertPluggables.push(pluggable);\n pluggableAdded = true;\n }\n if (this.implementsIdentifyPluggable(pluggable)) {\n this._identifyPluggables.push(pluggable);\n pluggableAdded = true;\n }\n if (this.implementsInterpretPluggable(pluggable)) {\n this._interpretPluggables.push(pluggable);\n pluggableAdded = true;\n }\n if (pluggableAdded) {\n this.configurePluggable(pluggable);\n }\n };\n /**\n * Get the plugin object\n * @param providerName - the name of the plugin\n */\n PredictionsClass.prototype.getPluggable = function (providerName) {\n var pluggable = this.getAllProviders().find(function (pluggable) { return pluggable.getProviderName() === providerName; });\n if (pluggable === undefined) {\n logger.debug('No plugin found with providerName=>', providerName);\n return null;\n }\n else\n return pluggable;\n };\n /**\n * Remove the plugin object\n * @param providerName - the name of the plugin\n */\n PredictionsClass.prototype.removePluggable = function (providerName) {\n this._convertPluggables = this._convertPluggables.filter(function (pluggable) { return pluggable.getProviderName() !== providerName; });\n this._identifyPluggables = this._identifyPluggables.filter(function (pluggable) { return pluggable.getProviderName() !== providerName; });\n this._interpretPluggables = this._interpretPluggables.filter(function (pluggable) { return pluggable.getProviderName() !== providerName; });\n return;\n };\n /**\n * To make both top level providers and category level providers work with same interface and configuration\n * this method duplicates Predictions config into parent level config (for top level provider) and\n * category level config (such as convert, identify etc) and pass both to each provider.\n */\n PredictionsClass.prototype.configure = function (options) {\n var _this = this;\n var predictionsConfig = options ? options.predictions || options : {};\n predictionsConfig = __assign(__assign({}, predictionsConfig), options);\n this._options = Object.assign({}, this._options, predictionsConfig);\n logger.debug('configure Predictions', this._options);\n this.getAllProviders().forEach(function (pluggable) {\n return _this.configurePluggable(pluggable);\n });\n };\n PredictionsClass.prototype.interpret = function (input, options) {\n var pluggableToExecute = this.getPluggableToExecute(this._interpretPluggables, options);\n return pluggableToExecute.interpret(input);\n };\n PredictionsClass.prototype.convert = function (input, options) {\n var pluggableToExecute = this.getPluggableToExecute(this._convertPluggables, options);\n return pluggableToExecute.convert(input);\n };\n PredictionsClass.prototype.identify = function (input, options) {\n var pluggableToExecute = this.getPluggableToExecute(this._identifyPluggables, options);\n return pluggableToExecute.identify(input);\n };\n // tslint:disable-next-line: max-line-length\n PredictionsClass.prototype.getPluggableToExecute = function (pluggables, providerOptions) {\n // Give preference to provider name first since it is more specific to this call, even if\n // there is only one provider configured to error out if the name provided is not the one matched.\n if (providerOptions && providerOptions.providerName) {\n return __spread(pluggables).find(function (pluggable) {\n return pluggable.getProviderName() === providerOptions.providerName;\n });\n }\n else {\n if (pluggables.length === 1) {\n return pluggables[0];\n }\n else {\n throw new Error('More than one or no providers are configured, ' +\n 'Either specify a provider name or configure exactly one provider');\n }\n }\n };\n PredictionsClass.prototype.getAllProviders = function () {\n return __spread(this._convertPluggables, this._identifyPluggables, this._interpretPluggables);\n };\n PredictionsClass.prototype.configurePluggable = function (pluggable) {\n var categoryConfig = Object.assign({}, this._options['predictions'], // Parent predictions config for the top level provider\n this._options[pluggable.getCategory().toLowerCase()] // Actual category level config\n );\n pluggable.configure(categoryConfig);\n };\n PredictionsClass.prototype.implementsConvertPluggable = function (obj) {\n return obj && typeof obj.convert === 'function';\n };\n PredictionsClass.prototype.implementsIdentifyPluggable = function (obj) {\n return obj && typeof obj.identify === 'function';\n };\n PredictionsClass.prototype.implementsInterpretPluggable = function (obj) {\n return obj && typeof obj.interpret === 'function';\n };\n return PredictionsClass;\n}());\n\nvar Predictions = new PredictionsClass({});\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"].register(Predictions);\n//# sourceMappingURL=Predictions.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/Predictions.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIConvertPredictionsProvider.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIConvertPredictionsProvider.js ***! \*******************************************************************************************************/ /*! exports provided: AmazonAIConvertPredictionsProvider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(Buffer) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIConvertPredictionsProvider\", function() { return AmazonAIConvertPredictionsProvider; });\n/* harmony import */ var _types_Providers_AbstractConvertPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../types/Providers/AbstractConvertPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractConvertPredictionsProvider.js\");\n/* harmony import */ var _aws_sdk_client_translate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-translate */ \"./node_modules/@aws-sdk/client-translate/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_client_polly__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/client-polly */ \"./node_modules/@aws-sdk/client-polly/dist/es/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_sdk_eventstream_marshaller__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/eventstream-marshaller */ \"./node_modules/@aws-sdk/eventstream-marshaller/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_node__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-utf8-node */ \"./node_modules/@aws-sdk/util-utf8-node/dist/es/index.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"ConsoleLogger\"]('AmazonAIConvertPredictionsProvider');\nvar eventBuilder = new _aws_sdk_eventstream_marshaller__WEBPACK_IMPORTED_MODULE_5__[\"EventStreamMarshaller\"](_aws_sdk_util_utf8_node__WEBPACK_IMPORTED_MODULE_6__[\"toUtf8\"], _aws_sdk_util_utf8_node__WEBPACK_IMPORTED_MODULE_6__[\"fromUtf8\"]);\nvar LANGUAGES_CODE_IN_8KHZ = ['fr-FR', 'en-AU', 'en-GB', 'fr-CA'];\nvar AmazonAIConvertPredictionsProvider = /** @class */ (function (_super) {\n __extends(AmazonAIConvertPredictionsProvider, _super);\n function AmazonAIConvertPredictionsProvider() {\n var _this = _super.call(this) || this;\n _this.inputSampleRate = 44100;\n return _this;\n }\n AmazonAIConvertPredictionsProvider.prototype.getProviderName = function () {\n return 'AmazonAIConvertPredictionsProvider';\n };\n AmazonAIConvertPredictionsProvider.prototype.translateText = function (input) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, _b, _c, _d, _e, sourceLanguage, _f, targetLanguage, _g, region, credentials, sourceLanguageCode, targetLanguageCode, translateTextCommand, data, err_1;\n return __generator(this, function (_h) {\n switch (_h.label) {\n case 0:\n logger.debug('Starting translation');\n _a = this._config.translateText, _b = _a === void 0 ? {} : _a, _c = _b.defaults, _d = _c === void 0 ? {} : _c, _e = _d.sourceLanguage, sourceLanguage = _e === void 0 ? '' : _e, _f = _d.targetLanguage, targetLanguage = _f === void 0 ? '' : _f, _g = _b.region, region = _g === void 0 ? '' : _g;\n if (!region) {\n return [2 /*return*/, Promise.reject('region not configured for transcription')];\n }\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"Credentials\"].get()];\n case 1:\n credentials = _h.sent();\n if (!credentials) {\n return [2 /*return*/, Promise.reject('No credentials')];\n }\n sourceLanguageCode = input.translateText.source.language || sourceLanguage;\n targetLanguageCode = input.translateText.targetLanguage || targetLanguage;\n if (!sourceLanguageCode || !targetLanguageCode) {\n return [2 /*return*/, Promise.reject('Please provide both source and target language')];\n }\n this.translateClient = new _aws_sdk_client_translate__WEBPACK_IMPORTED_MODULE_1__[\"TranslateClient\"]({\n region: region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"getAmplifyUserAgent\"])(),\n });\n translateTextCommand = new _aws_sdk_client_translate__WEBPACK_IMPORTED_MODULE_1__[\"TranslateTextCommand\"]({\n SourceLanguageCode: sourceLanguageCode,\n TargetLanguageCode: targetLanguageCode,\n Text: input.translateText.source.text,\n });\n _h.label = 2;\n case 2:\n _h.trys.push([2, 4, , 5]);\n return [4 /*yield*/, this.translateClient.send(translateTextCommand)];\n case 3:\n data = _h.sent();\n return [2 /*return*/, {\n text: data.TranslatedText,\n language: data.TargetLanguageCode,\n }];\n case 4:\n err_1 = _h.sent();\n return [2 /*return*/, Promise.reject(err_1)];\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AmazonAIConvertPredictionsProvider.prototype.convertTextToSpeech = function (input) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, _a, _b, _c, _d, VoiceId, _e, region, voiceId, synthesizeSpeechCommand, data, response, arrayBuffer, blob, url, err_2;\n return __generator(this, function (_f) {\n switch (_f.label) {\n case 0: return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"Credentials\"].get()];\n case 1:\n credentials = _f.sent();\n if (!credentials) {\n return [2 /*return*/, Promise.reject('No credentials')];\n }\n _a = this._config.speechGenerator, _b = _a === void 0 ? {} : _a, _c = _b.defaults, _d = (_c === void 0 ? {} : _c).VoiceId, VoiceId = _d === void 0 ? '' : _d, _e = _b.region, region = _e === void 0 ? '' : _e;\n if (!input.textToSpeech.source) {\n return [2 /*return*/, Promise.reject('Source needs to be provided in the input')];\n }\n voiceId = input.textToSpeech.voiceId || VoiceId;\n if (!region) {\n return [2 /*return*/, Promise.reject('Region was undefined. Did you enable speech generator using amplify CLI?')];\n }\n if (!voiceId) {\n return [2 /*return*/, Promise.reject('VoiceId was undefined.')];\n }\n this.pollyClient = new _aws_sdk_client_polly__WEBPACK_IMPORTED_MODULE_2__[\"PollyClient\"]({\n region: region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"getAmplifyUserAgent\"])(),\n });\n synthesizeSpeechCommand = new _aws_sdk_client_polly__WEBPACK_IMPORTED_MODULE_2__[\"SynthesizeSpeechCommand\"]({\n OutputFormat: 'mp3',\n Text: input.textToSpeech.source.text,\n VoiceId: voiceId,\n TextType: 'text',\n SampleRate: '24000',\n });\n _f.label = 2;\n case 2:\n _f.trys.push([2, 5, , 6]);\n return [4 /*yield*/, this.pollyClient.send(synthesizeSpeechCommand)];\n case 3:\n data = _f.sent();\n response = new Response(data.AudioStream);\n return [4 /*yield*/, response.arrayBuffer()];\n case 4:\n arrayBuffer = _f.sent();\n blob = new Blob([arrayBuffer], {\n type: data.ContentType,\n });\n url = URL.createObjectURL(blob);\n return [2 /*return*/, {\n speech: { url: url },\n audioStream: arrayBuffer,\n text: input.textToSpeech.source.text,\n }];\n case 5:\n err_2 = _f.sent();\n return [2 /*return*/, Promise.reject(err_2)];\n case 6: return [2 /*return*/];\n }\n });\n });\n };\n AmazonAIConvertPredictionsProvider.prototype.convertSpeechToText = function (input) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, _a, _b, _c, _d, languageCode, _e, region, _f, source, _g, language, connection, fullText, err_3, err_4;\n return __generator(this, function (_h) {\n switch (_h.label) {\n case 0:\n _h.trys.push([0, 7, , 8]);\n logger.debug('starting transcription..');\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"Credentials\"].get()];\n case 1:\n credentials = _h.sent();\n if (!credentials) {\n return [2 /*return*/, Promise.reject('No credentials')];\n }\n _a = this._config.transcription, _b = _a === void 0 ? {} : _a, _c = _b.defaults, _d = (_c === void 0 ? {} : _c).language, languageCode = _d === void 0 ? '' : _d, _e = _b.region, region = _e === void 0 ? '' : _e;\n if (!region) {\n return [2 /*return*/, Promise.reject('region not configured for transcription')];\n }\n if (!languageCode) {\n return [2 /*return*/, Promise.reject('languageCode not configured or provided for transcription')];\n }\n _f = input.transcription, source = _f.source, _g = _f.language, language = _g === void 0 ? languageCode : _g;\n if (!Object(_types__WEBPACK_IMPORTED_MODULE_3__[\"isBytesSource\"])(source)) return [3 /*break*/, 6];\n return [4 /*yield*/, this.openConnectionWithTranscribe({\n credentials: credentials,\n region: region,\n languageCode: language,\n })];\n case 2:\n connection = _h.sent();\n _h.label = 3;\n case 3:\n _h.trys.push([3, 5, , 6]);\n return [4 /*yield*/, this.sendDataToTranscribe({\n connection: connection,\n raw: source.bytes,\n languageCode: language,\n })];\n case 4:\n fullText = _h.sent();\n return [2 /*return*/, {\n transcription: {\n fullText: fullText,\n },\n }];\n case 5:\n err_3 = _h.sent();\n return [2 /*return*/, Promise.reject(err_3)];\n case 6: return [2 /*return*/, Promise.reject('Source types other than byte source are not supported.')];\n case 7:\n err_4 = _h.sent();\n return [2 /*return*/, Promise.reject(err_4.name + ': ' + err_4.message)];\n case 8: return [2 /*return*/];\n }\n });\n });\n };\n AmazonAIConvertPredictionsProvider.serializeDataFromTranscribe = function (message) {\n var decodedMessage = '';\n var transcribeMessage = eventBuilder.unmarshall(Buffer.from(message.data));\n var transcribeMessageJson = JSON.parse(Object(_aws_sdk_util_utf8_node__WEBPACK_IMPORTED_MODULE_6__[\"toUtf8\"])(transcribeMessage.body));\n if (transcribeMessage.headers[':message-type'].value === 'exception') {\n logger.debug('exception', JSON.stringify(transcribeMessageJson.Message, null, 2));\n throw new Error(transcribeMessageJson.Message);\n }\n else if (transcribeMessage.headers[':message-type'].value === 'event') {\n if (transcribeMessageJson.Transcript.Results.length > 0) {\n if (transcribeMessageJson.Transcript.Results[0].Alternatives.length > 0) {\n if (transcribeMessageJson.Transcript.Results[0].Alternatives[0]\n .Transcript.length > 0) {\n if (transcribeMessageJson.Transcript.Results[0].IsPartial === false) {\n decodedMessage =\n transcribeMessageJson.Transcript.Results[0].Alternatives[0]\n .Transcript + '\\n';\n logger.debug({ decodedMessage: decodedMessage });\n }\n else {\n logger.debug({\n transcript: transcribeMessageJson.Transcript.Results[0].Alternatives[0],\n });\n }\n }\n }\n }\n }\n return decodedMessage;\n };\n AmazonAIConvertPredictionsProvider.prototype.sendDataToTranscribe = function (_a) {\n var _this = this;\n var connection = _a.connection, raw = _a.raw, languageCode = _a.languageCode;\n return new Promise(function (res, rej) {\n var fullText = '';\n connection.onmessage = function (message) {\n try {\n var decodedMessage = AmazonAIConvertPredictionsProvider.serializeDataFromTranscribe(message);\n if (decodedMessage) {\n fullText += decodedMessage + ' ';\n }\n }\n catch (err) {\n logger.debug(err);\n rej(err.message);\n }\n };\n connection.onerror = function (errorEvent) {\n logger.debug({ errorEvent: errorEvent });\n rej('failed to transcribe, network error');\n };\n connection.onclose = function (closeEvent) {\n logger.debug({ closeEvent: closeEvent });\n return res(fullText.trim());\n };\n logger.debug({ raw: raw });\n if (Array.isArray(raw)) {\n for (var i = 0; i < raw.length - 1023; i += 1024) {\n var data = raw.slice(i, i + 1024);\n _this.sendEncodedDataToTranscribe(connection, data, languageCode);\n }\n }\n else {\n // If Buffer\n _this.sendEncodedDataToTranscribe(connection, raw, languageCode);\n }\n // sending end frame\n var endFrameEventMessage = _this.getAudioEventMessage(Buffer.from([]));\n var endFrameBinary = eventBuilder.marshall(endFrameEventMessage);\n connection.send(endFrameBinary);\n });\n };\n AmazonAIConvertPredictionsProvider.prototype.sendEncodedDataToTranscribe = function (connection, data, languageCode) {\n var downsampledBuffer = this.downsampleBuffer({\n buffer: data,\n outputSampleRate: LANGUAGES_CODE_IN_8KHZ.includes(languageCode)\n ? 8000\n : 16000,\n });\n var pcmEncodedBuffer = this.pcmEncode(downsampledBuffer);\n var audioEventMessage = this.getAudioEventMessage(Buffer.from(pcmEncodedBuffer));\n var binary = eventBuilder.marshall(audioEventMessage);\n connection.send(binary);\n };\n AmazonAIConvertPredictionsProvider.prototype.getAudioEventMessage = function (buffer) {\n var audioEventMessage = {\n body: buffer,\n headers: {\n ':message-type': {\n type: 'string',\n value: 'event',\n },\n ':event-type': {\n type: 'string',\n value: 'AudioEvent',\n },\n },\n };\n return audioEventMessage;\n };\n AmazonAIConvertPredictionsProvider.prototype.pcmEncode = function (input) {\n var offset = 0;\n var buffer = new ArrayBuffer(input.length * 2);\n var view = new DataView(buffer);\n for (var i = 0; i < input.length; i++, offset += 2) {\n var s = Math.max(-1, Math.min(1, input[i]));\n view.setInt16(offset, s < 0 ? s * 0x8000 : s * 0x7fff, true);\n }\n return buffer;\n };\n AmazonAIConvertPredictionsProvider.prototype.downsampleBuffer = function (_a) {\n var buffer = _a.buffer, _b = _a.outputSampleRate, outputSampleRate = _b === void 0 ? 16000 : _b;\n if (outputSampleRate === this.inputSampleRate) {\n return buffer;\n }\n var sampleRateRatio = this.inputSampleRate / outputSampleRate;\n var newLength = Math.round(buffer.length / sampleRateRatio);\n var result = new Float32Array(newLength);\n var offsetResult = 0;\n var offsetBuffer = 0;\n while (offsetResult < result.length) {\n var nextOffsetBuffer = Math.round((offsetResult + 1) * sampleRateRatio);\n var accum = 0, count = 0;\n for (var i = offsetBuffer; i < nextOffsetBuffer && i < buffer.length; i++) {\n accum += buffer[i];\n count++;\n }\n result[offsetResult] = accum / count;\n offsetResult++;\n offsetBuffer = nextOffsetBuffer;\n }\n return result;\n };\n AmazonAIConvertPredictionsProvider.prototype.openConnectionWithTranscribe = function (_a) {\n var _this = this;\n var userCredentials = _a.credentials, region = _a.region, languageCode = _a.languageCode;\n return new Promise(function (res, rej) { return __awaiter(_this, void 0, void 0, function () {\n var access_key, secret_key, session_token, credentials, signedUrl, connection;\n return __generator(this, function (_a) {\n access_key = userCredentials.accessKeyId, secret_key = userCredentials.secretAccessKey, session_token = userCredentials.sessionToken;\n credentials = {\n access_key: access_key,\n secret_key: secret_key,\n session_token: session_token,\n };\n signedUrl = this.generateTranscribeUrl({\n credentials: credentials,\n region: region,\n languageCode: languageCode,\n });\n logger.debug('connecting...');\n connection = new WebSocket(signedUrl);\n connection.binaryType = 'arraybuffer';\n connection.onopen = function () {\n logger.debug('connected');\n res(connection);\n };\n return [2 /*return*/];\n });\n }); });\n };\n AmazonAIConvertPredictionsProvider.prototype.generateTranscribeUrl = function (_a) {\n var credentials = _a.credentials, region = _a.region, languageCode = _a.languageCode;\n var url = [\n \"wss://transcribestreaming.\" + region + \".amazonaws.com:8443\",\n '/stream-transcription-websocket?',\n \"media-encoding=pcm&\",\n \"sample-rate=\" + (LANGUAGES_CODE_IN_8KHZ.includes(languageCode) ? '8000' : '16000') + \"&\",\n \"language-code=\" + languageCode,\n ].join('');\n var signedUrl = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"Signer\"].signUrl(url, credentials, { region: region, service: 'transcribe' }, 300);\n return signedUrl;\n };\n return AmazonAIConvertPredictionsProvider;\n}(_types_Providers_AbstractConvertPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__[\"AbstractConvertPredictionsProvider\"]));\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (AmazonAIConvertPredictionsProvider);\n//# sourceMappingURL=AmazonAIConvertPredictionsProvider.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIConvertPredictionsProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIIdentifyPredictionsProvider.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIIdentifyPredictionsProvider.js ***! \********************************************************************************************************/ /*! exports provided: AmazonAIIdentifyPredictionsProvider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(Buffer) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIIdentifyPredictionsProvider\", function() { return AmazonAIIdentifyPredictionsProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_storage__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/storage */ \"./node_modules/@aws-amplify/storage/lib-esm/index.js\");\n/* harmony import */ var _types_Providers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../types/Providers */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/index.js\");\n/* harmony import */ var _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/client-rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/index.js\");\n/* harmony import */ var _aws_sdk_client_textract__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/client-textract */ \"./node_modules/@aws-sdk/client-textract/dist/es/index.js\");\n/* harmony import */ var _Utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./Utils */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/Utils.js\");\n/* harmony import */ var _IdentifyTextUtils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./IdentifyTextUtils */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/IdentifyTextUtils.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\n\n\n\n\n\nvar AmazonAIIdentifyPredictionsProvider = /** @class */ (function (_super) {\n __extends(AmazonAIIdentifyPredictionsProvider, _super);\n function AmazonAIIdentifyPredictionsProvider() {\n return _super.call(this) || this;\n }\n AmazonAIIdentifyPredictionsProvider.prototype.getProviderName = function () {\n return 'AmazonAIIdentifyPredictionsProvider';\n };\n /**\n * Verify user input source and converts it into source object readable by Rekognition and Textract.\n * Note that Rekognition and Textract use the same source interface, so we need not worry about types.\n * @param {IdentifySource} source - User input source that directs to the object user wants\n * to identify (storage, file, or bytes).\n * @return {Promise} - Promise resolving to the converted source object.\n */\n AmazonAIIdentifyPredictionsProvider.prototype.configureSource = function (source) {\n return new Promise(function (res, rej) {\n if (Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isStorageSource\"])(source)) {\n var storageConfig = {\n level: source.level,\n identityId: source.identityId,\n };\n _aws_amplify_storage__WEBPACK_IMPORTED_MODULE_1__[\"default\"].get(source.key, storageConfig)\n .then(function (url) {\n var parser = /https:\\/\\/([a-zA-Z0-9%-_.]+)\\.s3\\.[A-Za-z0-9%-._~]+\\/([a-zA-Z0-9%-._~/]+)\\?/;\n var parsedURL = url.match(parser);\n if (parsedURL.length < 3)\n rej('Invalid S3 key was given.');\n res({\n S3Object: {\n Bucket: parsedURL[1],\n Name: decodeURIComponent(parsedURL[2]),\n },\n });\n })\n .catch(function (err) { return rej(err); });\n }\n else if (Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isFileSource\"])(source)) {\n Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"blobToArrayBuffer\"])(source.file)\n .then(function (buffer) {\n res({ Bytes: new Uint8Array(buffer) });\n })\n .catch(function (err) { return rej(err); });\n }\n else if (Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isBytesSource\"])(source)) {\n var bytes = source.bytes;\n if (bytes instanceof Blob) {\n Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"blobToArrayBuffer\"])(bytes)\n .then(function (buffer) {\n res({ Bytes: new Uint8Array(buffer) });\n })\n .catch(function (err) { return rej(err); });\n }\n if (bytes instanceof ArrayBuffer || bytes instanceof Buffer) {\n res({ Bytes: new Uint8Array(bytes) });\n }\n // everything else can be directly passed to Rekognition / Textract.\n res({ Bytes: bytes });\n }\n else {\n rej('Input source is not configured correctly.');\n }\n });\n };\n /**\n * Recognize text from real-world images and documents (plain text, forms and tables). Detects text in the input\n * image and converts it into machine-readable text.\n * @param {IdentifySource} source - Object containing the source image and feature types to analyze.\n * @return {Promise} - Promise resolving to object containing identified texts.\n */\n AmazonAIIdentifyPredictionsProvider.prototype.identifyText = function (input) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, _a, _b, _c, region, _d, _e, configFormat, inputDocument, err_1, format, featureTypes, textractParam, rekognitionParam, detectTextCommand, rekognitionData, rekognitionResponse, detectDocumentTextCommand, Blocks, err_2, param, analyzeDocumentCommand, Blocks, err_3;\n return __generator(this, function (_f) {\n switch (_f.label) {\n case 0: return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()];\n case 1:\n credentials = _f.sent();\n if (!credentials)\n return [2 /*return*/, Promise.reject('No credentials')];\n _a = this._config.identifyText, _b = _a === void 0 ? {} : _a, _c = _b.region, region = _c === void 0 ? '' : _c, _d = _b.defaults, _e = (_d === void 0 ? {} : _d).format, configFormat = _e === void 0 ? 'PLAIN' : _e;\n this.rekognitionClient = new _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__[\"RekognitionClient\"]({\n region: region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"getAmplifyUserAgent\"])(),\n });\n this.textractClient = new _aws_sdk_client_textract__WEBPACK_IMPORTED_MODULE_5__[\"TextractClient\"]({\n region: region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"getAmplifyUserAgent\"])(),\n });\n _f.label = 2;\n case 2:\n _f.trys.push([2, 4, , 5]);\n return [4 /*yield*/, this.configureSource(input.text.source)];\n case 3:\n inputDocument = _f.sent();\n return [3 /*break*/, 5];\n case 4:\n err_1 = _f.sent();\n return [2 /*return*/, Promise.reject(err_1)];\n case 5:\n format = input.text.format || configFormat;\n featureTypes = [];\n if (format === 'FORM' || format === 'ALL')\n featureTypes.push('FORMS');\n if (format === 'TABLE' || format === 'ALL')\n featureTypes.push('TABLES');\n if (!(featureTypes.length === 0)) return [3 /*break*/, 11];\n textractParam = {\n Document: inputDocument,\n };\n rekognitionParam = {\n Image: inputDocument,\n };\n _f.label = 6;\n case 6:\n _f.trys.push([6, 9, , 10]);\n detectTextCommand = new _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__[\"DetectTextCommand\"](rekognitionParam);\n return [4 /*yield*/, this.rekognitionClient.send(detectTextCommand)];\n case 7:\n rekognitionData = _f.sent();\n rekognitionResponse = Object(_IdentifyTextUtils__WEBPACK_IMPORTED_MODULE_7__[\"categorizeRekognitionBlocks\"])(rekognitionData.TextDetections);\n if (rekognitionResponse.text.words.length < 50) {\n // did not hit the word limit, return the data\n return [2 /*return*/, rekognitionResponse];\n }\n detectDocumentTextCommand = new _aws_sdk_client_textract__WEBPACK_IMPORTED_MODULE_5__[\"DetectDocumentTextCommand\"](textractParam);\n return [4 /*yield*/, this.textractClient.send(detectDocumentTextCommand)];\n case 8:\n Blocks = (_f.sent()).Blocks;\n if (rekognitionData.TextDetections.length > Blocks.length) {\n return [2 /*return*/, rekognitionResponse];\n }\n return [2 /*return*/, Object(_IdentifyTextUtils__WEBPACK_IMPORTED_MODULE_7__[\"categorizeTextractBlocks\"])(Blocks)];\n case 9:\n err_2 = _f.sent();\n Promise.reject(err_2);\n return [3 /*break*/, 10];\n case 10: return [3 /*break*/, 15];\n case 11:\n param = {\n Document: inputDocument,\n FeatureTypes: featureTypes,\n };\n _f.label = 12;\n case 12:\n _f.trys.push([12, 14, , 15]);\n analyzeDocumentCommand = new _aws_sdk_client_textract__WEBPACK_IMPORTED_MODULE_5__[\"AnalyzeDocumentCommand\"](param);\n return [4 /*yield*/, this.textractClient.send(analyzeDocumentCommand)];\n case 13:\n Blocks = (_f.sent()).Blocks;\n return [2 /*return*/, Object(_IdentifyTextUtils__WEBPACK_IMPORTED_MODULE_7__[\"categorizeTextractBlocks\"])(Blocks)];\n case 14:\n err_3 = _f.sent();\n return [2 /*return*/, Promise.reject(err_3)];\n case 15: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Identify instances of real world entities from an image and if it contains unsafe content.\n * @param {IdentifyLabelsInput} input - Object containing the source image and entity type to identify.\n * @return {Promise} - Promise resolving to an array of identified entities.\n */\n AmazonAIIdentifyPredictionsProvider.prototype.identifyLabels = function (input) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, _a, _b, _c, region, _d, _e, type, inputImage_1, param, servicePromises, entityType, err_4;\n return __generator(this, function (_f) {\n switch (_f.label) {\n case 0:\n _f.trys.push([0, 3, , 4]);\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()];\n case 1:\n credentials = _f.sent();\n if (!credentials)\n return [2 /*return*/, Promise.reject('No credentials')];\n _a = this._config.identifyLabels, _b = _a === void 0 ? {} : _a, _c = _b.region, region = _c === void 0 ? '' : _c, _d = _b.defaults, _e = (_d === void 0 ? {} : _d).type, type = _e === void 0 ? 'LABELS' : _e;\n this.rekognitionClient = new _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__[\"RekognitionClient\"]({\n region: region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"getAmplifyUserAgent\"])(),\n });\n return [4 /*yield*/, this.configureSource(input.labels.source)\n .then(function (data) {\n inputImage_1 = data;\n })\n .catch(function (err) {\n return Promise.reject(err);\n })];\n case 2:\n _f.sent();\n param = { Image: inputImage_1 };\n servicePromises = [];\n entityType = input.labels.type || type;\n if (entityType === 'LABELS' || entityType === 'ALL') {\n servicePromises.push(this.detectLabels(param));\n }\n if (entityType === 'UNSAFE' || entityType === 'ALL') {\n servicePromises.push(this.detectModerationLabels(param));\n }\n return [2 /*return*/, Promise.all(servicePromises)\n .then(function (data) {\n var identifyResult = {};\n // concatenate resolved promises to a single object\n data.forEach(function (val) {\n identifyResult = __assign(__assign({}, identifyResult), val);\n });\n return identifyResult;\n })\n .catch(function (err) { return Promise.reject(err); })];\n case 3:\n err_4 = _f.sent();\n return [2 /*return*/, Promise.reject(err_4)];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Calls Rekognition.detectLabels and organizes the returned data.\n * @param {DetectLabelsInput} param - parameter to be passed onto Rekognition\n * @return {Promise} - Promise resolving to organized detectLabels response.\n */\n AmazonAIIdentifyPredictionsProvider.prototype.detectLabels = function (param) {\n return __awaiter(this, void 0, void 0, function () {\n var detectLabelsCommand, data, detectLabelData, err_5;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n detectLabelsCommand = new _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__[\"DetectLabelsCommand\"](param);\n return [4 /*yield*/, this.rekognitionClient.send(detectLabelsCommand)];\n case 1:\n data = _a.sent();\n if (!data.Labels)\n return [2 /*return*/, { labels: null }]; // no image was detected\n detectLabelData = data.Labels.map(function (val) {\n var boxes = val.Instances\n ? val.Instances.map(function (val) { return Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCase\"])(val.BoundingBox); })\n : undefined;\n return {\n name: val.Name,\n boundingBoxes: boxes,\n metadata: {\n confidence: val.Confidence,\n parents: Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCaseArray\"])(val.Parents),\n },\n };\n });\n return [2 /*return*/, { labels: detectLabelData }];\n case 2:\n err_5 = _a.sent();\n return [2 /*return*/, Promise.reject(err_5)];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Calls Rekognition.detectModerationLabels and organizes the returned data.\n * @param {Rekognition.DetectLabelsRequest} param - Parameter to be passed onto Rekognition\n * @return {Promise} - Promise resolving to organized detectModerationLabels response.\n */\n AmazonAIIdentifyPredictionsProvider.prototype.detectModerationLabels = function (param) {\n return __awaiter(this, void 0, void 0, function () {\n var detectModerationLabelsCommand, data, err_6;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n detectModerationLabelsCommand = new _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__[\"DetectModerationLabelsCommand\"](param);\n return [4 /*yield*/, this.rekognitionClient.send(detectModerationLabelsCommand)];\n case 1:\n data = _a.sent();\n if (data.ModerationLabels.length !== 0) {\n return [2 /*return*/, { unsafe: 'YES' }];\n }\n else {\n return [2 /*return*/, { unsafe: 'NO' }];\n }\n return [3 /*break*/, 3];\n case 2:\n err_6 = _a.sent();\n return [2 /*return*/, Promise.reject(err_6)];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Identify faces within an image that is provided as input, and match faces from a collection\n * or identify celebrities.\n * @param {IdentifyEntityInput} input - object containing the source image and face match options.\n * @return {Promise} Promise resolving to identify results.\n */\n AmazonAIIdentifyPredictionsProvider.prototype.identifyEntities = function (input) {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, _a, _b, _c, region, _d, celebrityDetectionEnabled, _e, _f, _g, collectionIdConfig, _h, maxFacesConfig, inputImage, param, recognizeCelebritiesCommand, data, faces, err_7, _j, _k, collectionId, _l, maxFaces, updatedParam, searchFacesByImageCommand, data, faces, err_8, detectFacesCommand, data, faces, err_9;\n var _this = this;\n return __generator(this, function (_m) {\n switch (_m.label) {\n case 0: return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()];\n case 1:\n credentials = _m.sent();\n if (!credentials)\n return [2 /*return*/, Promise.reject('No credentials')];\n _a = this._config.identifyEntities, _b = _a === void 0 ? {} : _a, _c = _b.region, region = _c === void 0 ? '' : _c, _d = _b.celebrityDetectionEnabled, celebrityDetectionEnabled = _d === void 0 ? false : _d, _e = _b.defaults, _f = _e === void 0 ? {} : _e, _g = _f.collectionId, collectionIdConfig = _g === void 0 ? '' : _g, _h = _f.maxEntities, maxFacesConfig = _h === void 0 ? 50 : _h;\n // default arguments\n this.rekognitionClient = new _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__[\"RekognitionClient\"]({\n region: region,\n credentials: credentials,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"getAmplifyUserAgent\"])(),\n });\n return [4 /*yield*/, this.configureSource(input.entities.source)\n .then(function (data) { return (inputImage = data); })\n .catch(function (err) {\n return Promise.reject(err);\n })];\n case 2:\n _m.sent();\n param = { Attributes: ['ALL'], Image: inputImage };\n if (!(Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isIdentifyCelebrities\"])(input.entities) &&\n input.entities.celebrityDetection)) return [3 /*break*/, 7];\n if (!celebrityDetectionEnabled) {\n return [2 /*return*/, Promise.reject('Error: You have to enable celebrity detection first')];\n }\n _m.label = 3;\n case 3:\n _m.trys.push([3, 5, , 6]);\n recognizeCelebritiesCommand = new _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeCelebritiesCommand\"](param);\n return [4 /*yield*/, this.rekognitionClient.send(recognizeCelebritiesCommand)];\n case 4:\n data = _m.sent();\n faces = data.CelebrityFaces.map(function (celebrity) {\n return {\n boundingBox: Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCase\"])(celebrity.Face.BoundingBox),\n landmarks: Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCaseArray\"])(celebrity.Face.Landmarks),\n metadata: __assign(__assign({}, Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCase\"])(celebrity, ['Id', 'Name', 'Urls'])), { pose: Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCase\"])(celebrity.Face.Pose) }),\n };\n });\n return [2 /*return*/, { entities: faces }];\n case 5:\n err_7 = _m.sent();\n return [2 /*return*/, Promise.reject(err_7)];\n case 6: return [3 /*break*/, 15];\n case 7:\n if (!(Object(_types__WEBPACK_IMPORTED_MODULE_4__[\"isIdentifyFromCollection\"])(input.entities) &&\n input.entities.collection)) return [3 /*break*/, 12];\n _j = input.entities, _k = _j.collectionId, collectionId = _k === void 0 ? collectionIdConfig : _k, _l = _j.maxEntities, maxFaces = _l === void 0 ? maxFacesConfig : _l;\n updatedParam = __assign(__assign({}, param), { CollectionId: collectionId, MaxFaces: maxFaces });\n _m.label = 8;\n case 8:\n _m.trys.push([8, 10, , 11]);\n searchFacesByImageCommand = new _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__[\"SearchFacesByImageCommand\"](updatedParam);\n return [4 /*yield*/, this.rekognitionClient.send(searchFacesByImageCommand)];\n case 9:\n data = _m.sent();\n faces = data.FaceMatches.map(function (val) {\n return {\n boundingBox: Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCase\"])(val.Face.BoundingBox),\n metadata: {\n externalImageId: _this.decodeExternalImageId(val.Face.ExternalImageId),\n similarity: val.Similarity,\n },\n };\n });\n return [2 /*return*/, { entities: faces }];\n case 10:\n err_8 = _m.sent();\n return [2 /*return*/, Promise.reject(err_8)];\n case 11: return [3 /*break*/, 15];\n case 12:\n _m.trys.push([12, 14, , 15]);\n detectFacesCommand = new _aws_sdk_client_rekognition__WEBPACK_IMPORTED_MODULE_3__[\"DetectFacesCommand\"](param);\n return [4 /*yield*/, this.rekognitionClient.send(detectFacesCommand)];\n case 13:\n data = _m.sent();\n faces = data.FaceDetails.map(function (detail) {\n // face attributes keys we want to extract from Rekognition's response\n var attributeKeys = [\n 'Smile',\n 'Eyeglasses',\n 'Sunglasses',\n 'Gender',\n 'Beard',\n 'Mustache',\n 'EyesOpen',\n 'MouthOpen'\n ];\n var faceAttributes = Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCase\"])(detail, attributeKeys);\n if (detail.Emotions) {\n faceAttributes['emotions'] = detail.Emotions.map(function (emotion) { return emotion.Type; });\n }\n return {\n boundingBox: Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCase\"])(detail.BoundingBox),\n landmarks: Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCaseArray\"])(detail.Landmarks),\n ageRange: Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCase\"])(detail.AgeRange),\n attributes: faceAttributes,\n metadata: {\n confidence: detail.Confidence,\n pose: Object(_Utils__WEBPACK_IMPORTED_MODULE_6__[\"makeCamelCase\"])(detail.Pose),\n },\n };\n });\n return [2 /*return*/, { entities: faces }];\n case 14:\n err_9 = _m.sent();\n return [2 /*return*/, Promise.reject(err_9)];\n case 15: return [2 /*return*/];\n }\n });\n });\n };\n AmazonAIIdentifyPredictionsProvider.prototype.decodeExternalImageId = function (externalImageId) {\n return ('' + externalImageId).replace(/::/g, '/');\n };\n return AmazonAIIdentifyPredictionsProvider;\n}(_types_Providers__WEBPACK_IMPORTED_MODULE_2__[\"AbstractIdentifyPredictionsProvider\"]));\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (AmazonAIIdentifyPredictionsProvider);\n//# sourceMappingURL=AmazonAIIdentifyPredictionsProvider.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIIdentifyPredictionsProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIInterpretPredictionsProvider.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIInterpretPredictionsProvider.js ***! \*********************************************************************************************************/ /*! exports provided: AmazonAIInterpretPredictionsProvider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIInterpretPredictionsProvider\", function() { return AmazonAIInterpretPredictionsProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _types_Providers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../types/Providers */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/index.js\");\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../types */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/index.js\");\n/* harmony import */ var _aws_sdk_client_comprehend__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/client-comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/index.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n\n\n\n\nvar AmazonAIInterpretPredictionsProvider = /** @class */ (function (_super) {\n __extends(AmazonAIInterpretPredictionsProvider, _super);\n function AmazonAIInterpretPredictionsProvider() {\n return _super.call(this) || this;\n }\n AmazonAIInterpretPredictionsProvider.prototype.getProviderName = function () {\n return 'AmazonAIInterpretPredictionsProvider';\n };\n AmazonAIInterpretPredictionsProvider.prototype.interpretText = function (input) {\n var _this = this;\n return new Promise(function (res, rej) { return __awaiter(_this, void 0, void 0, function () {\n var credentials, _a, _b, _c, region, _d, _e, interpretTypeConfig, _f, _g, _h, _j, text, _k, interpretType, _l, _m, _o, language, comprehendClient, doAll, languagePromise, languageDetectionParams, entitiesPromise, LanguageCode, _p, entitiesDetectionParams, sentimentPromise, LanguageCode, _q, sentimentParams, syntaxPromise, LanguageCode, _r, syntaxParams, keyPhrasesPromise, LanguageCode, _s, keyPhrasesParams, results, err_1;\n return __generator(this, function (_t) {\n switch (_t.label) {\n case 0: return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()];\n case 1:\n credentials = _t.sent();\n if (!credentials)\n return [2 /*return*/, rej('No credentials')];\n _a = this._config.interpretText, _b = _a === void 0 ? {} : _a, _c = _b.region, region = _c === void 0 ? '' : _c, _d = _b.defaults, _e = (_d === void 0 ? {} : _d).type, interpretTypeConfig = _e === void 0 ? '' : _e;\n _f = (input).text, _g = _f === void 0 ? {} : _f, _h = _g.source, _j = (_h === void 0 ? {} : _h).text, text = _j === void 0 ? '' : _j, _k = _g.type, interpretType = _k === void 0 ? interpretTypeConfig : _k;\n _l = (input).text, _m = (_l === void 0 ? {} : _l).source, _o = (_m === void 0 ? {} : _m).language, language = _o === void 0 ? undefined : _o;\n comprehendClient = new _aws_sdk_client_comprehend__WEBPACK_IMPORTED_MODULE_3__[\"ComprehendClient\"]({\n credentials: credentials,\n region: region,\n customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"getAmplifyUserAgent\"])(),\n });\n doAll = interpretType === _types__WEBPACK_IMPORTED_MODULE_2__[\"InterpretTextCategories\"].ALL;\n if (doAll || interpretType === _types__WEBPACK_IMPORTED_MODULE_2__[\"InterpretTextCategories\"].LANGUAGE) {\n languageDetectionParams = {\n Text: text,\n };\n languagePromise = this.detectLanguage(languageDetectionParams, comprehendClient);\n }\n if (!(doAll || interpretType === _types__WEBPACK_IMPORTED_MODULE_2__[\"InterpretTextCategories\"].ENTITIES)) return [3 /*break*/, 4];\n _p = language;\n if (_p) return [3 /*break*/, 3];\n return [4 /*yield*/, languagePromise];\n case 2:\n _p = (_t.sent());\n _t.label = 3;\n case 3:\n LanguageCode = _p;\n if (!LanguageCode) {\n return [2 /*return*/, rej('language code is required on source for this selection')];\n }\n entitiesDetectionParams = {\n Text: text,\n LanguageCode: LanguageCode,\n };\n entitiesPromise = this.detectEntities(entitiesDetectionParams, comprehendClient);\n _t.label = 4;\n case 4:\n if (!(doAll || interpretType === _types__WEBPACK_IMPORTED_MODULE_2__[\"InterpretTextCategories\"].SENTIMENT)) return [3 /*break*/, 7];\n _q = language;\n if (_q) return [3 /*break*/, 6];\n return [4 /*yield*/, languagePromise];\n case 5:\n _q = (_t.sent());\n _t.label = 6;\n case 6:\n LanguageCode = _q;\n if (!LanguageCode) {\n return [2 /*return*/, rej('language code is required on source for this selection')];\n }\n sentimentParams = {\n Text: text,\n LanguageCode: LanguageCode,\n };\n sentimentPromise = this.detectSentiment(sentimentParams, comprehendClient);\n _t.label = 7;\n case 7:\n if (!(doAll || interpretType === _types__WEBPACK_IMPORTED_MODULE_2__[\"InterpretTextCategories\"].SYNTAX)) return [3 /*break*/, 10];\n _r = language;\n if (_r) return [3 /*break*/, 9];\n return [4 /*yield*/, languagePromise];\n case 8:\n _r = (_t.sent());\n _t.label = 9;\n case 9:\n LanguageCode = _r;\n if (!LanguageCode) {\n return [2 /*return*/, rej('language code is required on source for this selection')];\n }\n syntaxParams = {\n Text: text,\n LanguageCode: LanguageCode,\n };\n syntaxPromise = this.detectSyntax(syntaxParams, comprehendClient);\n _t.label = 10;\n case 10:\n if (!(doAll || interpretType === _types__WEBPACK_IMPORTED_MODULE_2__[\"InterpretTextCategories\"].KEY_PHRASES)) return [3 /*break*/, 13];\n _s = language;\n if (_s) return [3 /*break*/, 12];\n return [4 /*yield*/, languagePromise];\n case 11:\n _s = (_t.sent());\n _t.label = 12;\n case 12:\n LanguageCode = _s;\n if (!LanguageCode) {\n return [2 /*return*/, rej('language code is required on source for this selection')];\n }\n keyPhrasesParams = {\n Text: text,\n LanguageCode: LanguageCode,\n };\n keyPhrasesPromise = this.detectKeyPhrases(keyPhrasesParams, comprehendClient);\n _t.label = 13;\n case 13:\n _t.trys.push([13, 15, , 16]);\n return [4 /*yield*/, Promise.all([\n languagePromise,\n entitiesPromise,\n sentimentPromise,\n syntaxPromise,\n keyPhrasesPromise,\n ])];\n case 14:\n results = _t.sent();\n res({\n textInterpretation: {\n keyPhrases: results[4] || [],\n language: results[0] || '',\n sentiment: results[2],\n syntax: results[3] || [],\n textEntities: results[1] || [],\n },\n });\n return [3 /*break*/, 16];\n case 15:\n err_1 = _t.sent();\n rej(err_1);\n return [3 /*break*/, 16];\n case 16: return [2 /*return*/];\n }\n });\n }); });\n };\n AmazonAIInterpretPredictionsProvider.prototype.detectKeyPhrases = function (params, comprehend) {\n return __awaiter(this, void 0, void 0, function () {\n var detectKeyPhrasesCommand, data, _a, KeyPhrases, err_2;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _b.trys.push([0, 2, , 3]);\n detectKeyPhrasesCommand = new _aws_sdk_client_comprehend__WEBPACK_IMPORTED_MODULE_3__[\"DetectKeyPhrasesCommand\"](params);\n return [4 /*yield*/, comprehend.send(detectKeyPhrasesCommand)];\n case 1:\n data = _b.sent();\n _a = (data || {}).KeyPhrases, KeyPhrases = _a === void 0 ? [] : _a;\n return [2 /*return*/, KeyPhrases.map(function (_a) {\n var text = _a.Text;\n return { text: text };\n })];\n case 2:\n err_2 = _b.sent();\n if (err_2.code === 'AccessDeniedException') {\n Promise.reject('Not authorized, did you enable Interpret Text on predictions category Amplify CLI? try: ' +\n 'amplify predictions add');\n }\n else {\n Promise.reject(err_2.message);\n }\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n AmazonAIInterpretPredictionsProvider.prototype.detectSyntax = function (params, comprehend) {\n return __awaiter(this, void 0, void 0, function () {\n var detectSyntaxCommand, data, _a, SyntaxTokens, err_3;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _b.trys.push([0, 2, , 3]);\n detectSyntaxCommand = new _aws_sdk_client_comprehend__WEBPACK_IMPORTED_MODULE_3__[\"DetectSyntaxCommand\"](params);\n return [4 /*yield*/, comprehend.send(detectSyntaxCommand)];\n case 1:\n data = _b.sent();\n _a = (data || {}).SyntaxTokens, SyntaxTokens = _a === void 0 ? [] : _a;\n return [2 /*return*/, this.serializeSyntaxFromComprehend(SyntaxTokens)];\n case 2:\n err_3 = _b.sent();\n if (err_3.code === 'AccessDeniedException') {\n Promise.reject('Not authorized, did you enable Interpret Text on predictions category Amplify CLI? try: ' +\n 'amplify predictions add');\n }\n else {\n Promise.reject(err_3.message);\n }\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n AmazonAIInterpretPredictionsProvider.prototype.serializeSyntaxFromComprehend = function (tokens) {\n var response = [];\n if (tokens && Array.isArray(tokens)) {\n response = tokens.map(function (_a) {\n var _b = _a.Text, text = _b === void 0 ? '' : _b, _c = _a.PartOfSpeech, _d = (_c === void 0 ? {} : _c).Tag, syntax = _d === void 0 ? '' : _d;\n return { text: text, syntax: syntax };\n });\n }\n return response;\n };\n AmazonAIInterpretPredictionsProvider.prototype.detectSentiment = function (params, comprehend) {\n return __awaiter(this, void 0, void 0, function () {\n var detectSentimentCommand, data, _a, _b, predominant, _c, _d, _e, positive, _f, negative, _g, neutral, _h, mixed, err_4;\n return __generator(this, function (_j) {\n switch (_j.label) {\n case 0:\n _j.trys.push([0, 2, , 3]);\n detectSentimentCommand = new _aws_sdk_client_comprehend__WEBPACK_IMPORTED_MODULE_3__[\"DetectSentimentCommand\"](params);\n return [4 /*yield*/, comprehend.send(detectSentimentCommand)];\n case 1:\n data = _j.sent();\n _a = (data), _b = _a.Sentiment, predominant = _b === void 0 ? '' : _b, _c = _a.SentimentScore, _d = _c === void 0 ? {} : _c, _e = _d.Positive, positive = _e === void 0 ? 0 : _e, _f = _d.Negative, negative = _f === void 0 ? 0 : _f, _g = _d.Neutral, neutral = _g === void 0 ? 0 : _g, _h = _d.Mixed, mixed = _h === void 0 ? 0 : _h;\n return [2 /*return*/, { predominant: predominant, positive: positive, negative: negative, neutral: neutral, mixed: mixed }];\n case 2:\n err_4 = _j.sent();\n if (err_4.code === 'AccessDeniedException') {\n Promise.reject('Not authorized, did you enable Interpret Text on predictions category Amplify CLI? try: ' +\n 'amplify predictions add');\n }\n else {\n Promise.reject(err_4.message);\n }\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n AmazonAIInterpretPredictionsProvider.prototype.detectEntities = function (params, comprehend) {\n return __awaiter(this, void 0, void 0, function () {\n var detectEntitiesCommand, data, _a, Entities, err_5;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _b.trys.push([0, 2, , 3]);\n detectEntitiesCommand = new _aws_sdk_client_comprehend__WEBPACK_IMPORTED_MODULE_3__[\"DetectEntitiesCommand\"](params);\n return [4 /*yield*/, comprehend.send(detectEntitiesCommand)];\n case 1:\n data = _b.sent();\n _a = (data || {}).Entities, Entities = _a === void 0 ? [] : _a;\n return [2 /*return*/, this.serializeEntitiesFromComprehend(Entities)];\n case 2:\n err_5 = _b.sent();\n if (err_5.code === 'AccessDeniedException') {\n Promise.reject('Not authorized, did you enable Interpret Text on predictions category Amplify CLI? try: ' +\n 'amplify predictions add');\n }\n else {\n Promise.reject(err_5.message);\n }\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n AmazonAIInterpretPredictionsProvider.prototype.serializeEntitiesFromComprehend = function (data) {\n var response = [];\n if (data && Array.isArray(data)) {\n response = data.map(function (_a) {\n var type = _a.Type, text = _a.Text;\n return { type: type, text: text };\n });\n }\n return response;\n };\n AmazonAIInterpretPredictionsProvider.prototype.detectLanguage = function (params, comprehend) {\n return __awaiter(this, void 0, void 0, function () {\n var detectDominantLanguageCommand, data, _a, _b, LanguageCode, err_6;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _c.trys.push([0, 2, , 3]);\n detectDominantLanguageCommand = new _aws_sdk_client_comprehend__WEBPACK_IMPORTED_MODULE_3__[\"DetectDominantLanguageCommand\"](params);\n return [4 /*yield*/, comprehend.send(detectDominantLanguageCommand)];\n case 1:\n data = _c.sent();\n _a = (data || {}).Languages, _b = __read(_a === void 0 ? [''] : _a, 1), LanguageCode = _b[0].LanguageCode;\n if (!LanguageCode) {\n Promise.reject('Language not detected');\n }\n return [2 /*return*/, data.Languages[0].LanguageCode];\n case 2:\n err_6 = _c.sent();\n if (err_6.code === 'AccessDeniedException') {\n Promise.reject('Not authorized, did you enable Interpret Text on predictions category Amplify CLI? try: ' +\n 'amplify predictions add');\n }\n else {\n Promise.reject(err_6.message);\n }\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n return AmazonAIInterpretPredictionsProvider;\n}(_types_Providers__WEBPACK_IMPORTED_MODULE_1__[\"AbstractInterpretPredictionsProvider\"]));\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (AmazonAIInterpretPredictionsProvider);\n//# sourceMappingURL=AmazonAIInterpretPredictionsProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIInterpretPredictionsProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIPredictionsProvider.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIPredictionsProvider.js ***! \************************************************************************************************/ /*! exports provided: AmazonAIPredictionsProvider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIPredictionsProvider\", function() { return AmazonAIPredictionsProvider; });\n/* harmony import */ var _types_Providers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../types/Providers */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/index.js\");\n/* harmony import */ var _AmazonAIConvertPredictionsProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AmazonAIConvertPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIConvertPredictionsProvider.js\");\n/* harmony import */ var _AmazonAIInterpretPredictionsProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AmazonAIInterpretPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIInterpretPredictionsProvider.js\");\n/* harmony import */ var _AmazonAIIdentifyPredictionsProvider__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AmazonAIIdentifyPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIIdentifyPredictionsProvider.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n\n\n\n\nvar AmazonAIPredictionsProvider = /** @class */ (function (_super) {\n __extends(AmazonAIPredictionsProvider, _super);\n function AmazonAIPredictionsProvider() {\n var _this = _super.call(this) || this;\n _this.convertProvider = new _AmazonAIConvertPredictionsProvider__WEBPACK_IMPORTED_MODULE_1__[\"AmazonAIConvertPredictionsProvider\"]();\n _this.identifyProvider = new _AmazonAIIdentifyPredictionsProvider__WEBPACK_IMPORTED_MODULE_3__[\"AmazonAIIdentifyPredictionsProvider\"]();\n _this.interpretProvider = new _AmazonAIInterpretPredictionsProvider__WEBPACK_IMPORTED_MODULE_2__[\"AmazonAIInterpretPredictionsProvider\"]();\n return _this;\n }\n AmazonAIPredictionsProvider.prototype.getCategory = function () {\n return 'Predictions';\n };\n AmazonAIPredictionsProvider.prototype.getProviderName = function () {\n return 'AmazonAIPredictionsProvider';\n };\n AmazonAIPredictionsProvider.prototype.configure = function (config) {\n this.convertProvider.configure(config.convert);\n this.identifyProvider.configure(config.identify);\n this.interpretProvider.configure(config.interpret);\n return config;\n };\n AmazonAIPredictionsProvider.prototype.interpret = function (input) {\n return this.interpretProvider.interpret(input);\n };\n AmazonAIPredictionsProvider.prototype.convert = function (input) {\n return this.convertProvider.convert(input);\n };\n AmazonAIPredictionsProvider.prototype.identify = function (input) {\n return this.identifyProvider.identify(input);\n };\n return AmazonAIPredictionsProvider;\n}(_types_Providers__WEBPACK_IMPORTED_MODULE_0__[\"AbstractPredictionsProvider\"]));\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (AmazonAIPredictionsProvider);\n//# sourceMappingURL=AmazonAIPredictionsProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIPredictionsProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/Providers/IdentifyTextUtils.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/Providers/IdentifyTextUtils.js ***! \**************************************************************************************/ /*! exports provided: categorizeRekognitionBlocks, categorizeTextractBlocks, constructTable, constructKeyValue, extractContentsFromBlock */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"categorizeRekognitionBlocks\", function() { return categorizeRekognitionBlocks; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"categorizeTextractBlocks\", function() { return categorizeTextractBlocks; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"constructTable\", function() { return constructTable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"constructKeyValue\", function() { return constructKeyValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extractContentsFromBlock\", function() { return extractContentsFromBlock; });\n/* harmony import */ var _Utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utils */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/Utils.js\");\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\n\nfunction getBoundingBox(geometry) {\n if (!geometry)\n return undefined;\n return Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"makeCamelCase\"])(geometry.BoundingBox);\n}\nfunction getPolygon(geometry) {\n if (!geometry)\n return undefined;\n return Object(_Utils__WEBPACK_IMPORTED_MODULE_0__[\"makeCamelCaseArray\"])(Array.from(geometry.Polygon));\n}\n/**\n * Organizes blocks from Rekognition API to each of the categories and and structures\n * their data accordingly.\n * @param {BlockList} source - Array containing blocks returned from Textract API.\n * @return {IdentifyTextOutput} - Object that categorizes each block and its information.\n */\nfunction categorizeRekognitionBlocks(blocks) {\n // Skeleton IdentifyText API response. We will populate it as we iterate through blocks.\n var response = {\n text: {\n fullText: '',\n words: [],\n lines: [],\n linesDetailed: [],\n },\n };\n // We categorize each block by running a forEach loop through them.\n blocks.forEach(function (block) {\n switch (block.Type) {\n case 'LINE':\n response.text.lines.push(block.DetectedText);\n response.text.linesDetailed.push({\n text: block.DetectedText,\n polygon: getPolygon(block.Geometry),\n boundingBox: getBoundingBox(block.Geometry),\n page: null,\n });\n break;\n case 'WORD':\n response.text.fullText += block.DetectedText + ' ';\n response.text.words.push({\n text: block.DetectedText,\n polygon: getPolygon(block.Geometry),\n boundingBox: getBoundingBox(block.Geometry),\n });\n break;\n }\n });\n // remove trailing space of fullText\n response.text.fullText = response.text.fullText.substr(0, response.text.fullText.length - 1);\n return response;\n}\n/**\n * Organizes blocks from Textract API to each of the categories and and structures\n * their data accordingly.\n * @param {BlockList} source - Array containing blocks returned from Textract API.\n * @return {IdentifyTextOutput} - Object that categorizes each block and its information.\n */\nfunction categorizeTextractBlocks(blocks) {\n // Skeleton IdentifyText API response. We will populate it as we iterate through blocks.\n var response = {\n text: {\n fullText: '',\n words: [],\n lines: [],\n linesDetailed: [],\n },\n };\n // if blocks is an empty array, ie. textract did not detect anything, return empty response.\n if (blocks.length === 0)\n return response;\n /**\n * We categorize each of the blocks by running a forEach loop through them.\n *\n * For complex structures such as Tables and KeyValue, we need to trasverse through their children. To do so,\n * we will post-process them after the for each loop. We do this by storing table and keyvalues in arrays and\n * mapping other blocks in `blockMap` (id to block) so we can reference them easily later.\n *\n * Note that we do not map `WORD` and `TABLE` in `blockMap` because they will not be referenced by any other\n * block except the Page block.\n */\n var tableBlocks = Array();\n var keyValueBlocks = Array();\n var blockMap = {};\n blocks.forEach(function (block) {\n switch (block.BlockType) {\n case 'LINE':\n response.text.lines.push(block.Text);\n response.text.linesDetailed.push({\n text: block.Text,\n polygon: getPolygon(block.Geometry),\n boundingBox: getBoundingBox(block.Geometry),\n page: block.Page,\n });\n break;\n case 'WORD':\n response.text.fullText += block.Text + ' ';\n response.text.words.push({\n text: block.Text,\n polygon: getPolygon(block.Geometry),\n boundingBox: getBoundingBox(block.Geometry),\n });\n blockMap[block.Id] = block;\n break;\n case 'SELECTION_ELEMENT':\n var selectionStatus = block.SelectionStatus === 'SELECTED' ? true : false;\n if (!response.text.selections)\n response.text.selections = [];\n response.text.selections.push({\n selected: selectionStatus,\n polygon: getPolygon(block.Geometry),\n boundingBox: getBoundingBox(block.Geometry),\n });\n blockMap[block.Id] = block;\n break;\n case 'TABLE':\n tableBlocks.push(block);\n break;\n case 'KEY_VALUE_SET':\n keyValueBlocks.push(block);\n blockMap[block.Id] = block;\n break;\n default:\n blockMap[block.Id] = block;\n }\n });\n // remove trailing space in fullText\n response.text.fullText = response.text.fullText.substr(0, response.text.fullText.length - 1);\n // Post-process complex structures if they exist.\n if (tableBlocks.length !== 0) {\n var tableResponse_1 = Array();\n tableBlocks.forEach(function (table) {\n tableResponse_1.push(constructTable(table, blockMap));\n });\n response.text.tables = tableResponse_1;\n }\n if (keyValueBlocks.length !== 0) {\n var keyValueResponse_1 = Array();\n keyValueBlocks.forEach(function (keyValue) {\n // We need the KeyValue blocks of EntityType = `KEY`, which has both key and value references.\n var entityTypes = Array.from(keyValue.EntityTypes);\n if (entityTypes.indexOf('KEY') !== -1) {\n keyValueResponse_1.push(constructKeyValue(keyValue, blockMap));\n }\n });\n response.text.keyValues = keyValueResponse_1;\n }\n return response;\n}\n/**\n * Constructs a table object using data from its children cells.\n * @param {Block} table - Table block that has references (`Relationships`) to its cells\n * @param {[id: string]: Block} blockMap - Maps block Ids to blocks.\n */\nfunction constructTable(table, blockMap) {\n var e_1, _a, e_2, _b;\n var tableMatrix;\n tableMatrix = [];\n try {\n // visit each of the cell associated with the table's relationship.\n for (var _c = __values(table.Relationships), _d = _c.next(); !_d.done; _d = _c.next()) {\n var tableRelation = _d.value;\n try {\n for (var _e = (e_2 = void 0, __values(tableRelation.Ids)), _f = _e.next(); !_f.done; _f = _e.next()) {\n var cellId = _f.value;\n var cellBlock = blockMap[cellId];\n var row = cellBlock.RowIndex - 1; // textract starts indexing at 1, so subtract it by 1.\n var col = cellBlock.ColumnIndex - 1; // textract starts indexing at 1, so subtract it by 1.\n // extract data contained inside the cell.\n var content = extractContentsFromBlock(cellBlock, blockMap);\n var cell = {\n text: content.text,\n boundingBox: getBoundingBox(cellBlock.Geometry),\n polygon: getPolygon(cellBlock.Geometry),\n selected: content.selected,\n rowSpan: cellBlock.RowSpan,\n columnSpan: cellBlock.ColumnSpan,\n };\n if (!tableMatrix[row])\n tableMatrix[row] = [];\n tableMatrix[row][col] = cell;\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_f && !_f.done && (_b = _e.return)) _b.call(_e);\n }\n finally { if (e_2) throw e_2.error; }\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_a = _c.return)) _a.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var rowSize = tableMatrix.length;\n var columnSize = tableMatrix[0].length;\n // Note that we leave spanned cells undefined for distinction\n return {\n size: { rows: rowSize, columns: columnSize },\n table: tableMatrix,\n boundingBox: getBoundingBox(table.Geometry),\n polygon: getPolygon(table.Geometry),\n };\n}\n/**\n * Constructs a key value object from its children key and value blocks.\n * @param {Block} KeyValue - KeyValue block that has references (`Relationships`) to its children.\n * @param {[id: string]: Block} blockMap - Maps block Ids to blocks.\n */\nfunction constructKeyValue(keyBlock, blockMap) {\n var e_3, _a, e_4, _b;\n var keyText = '';\n var valueText = '';\n var valueSelected;\n try {\n for (var _c = __values(keyBlock.Relationships), _d = _c.next(); !_d.done; _d = _c.next()) {\n var keyValueRelation = _d.value;\n if (keyValueRelation.Type === 'CHILD') {\n // relation refers to key\n var contents = extractContentsFromBlock(keyBlock, blockMap);\n keyText = contents.text;\n }\n else if (keyValueRelation.Type === 'VALUE') {\n try {\n // relation refers to value\n for (var _e = (e_4 = void 0, __values(keyValueRelation.Ids)), _f = _e.next(); !_f.done; _f = _e.next()) {\n var valueId = _f.value;\n var valueBlock = blockMap[valueId];\n var contents = extractContentsFromBlock(valueBlock, blockMap);\n valueText = contents.text;\n if (contents.selected != null)\n valueSelected = contents.selected;\n }\n }\n catch (e_4_1) { e_4 = { error: e_4_1 }; }\n finally {\n try {\n if (_f && !_f.done && (_b = _e.return)) _b.call(_e);\n }\n finally { if (e_4) throw e_4.error; }\n }\n }\n }\n }\n catch (e_3_1) { e_3 = { error: e_3_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_a = _c.return)) _a.call(_c);\n }\n finally { if (e_3) throw e_3.error; }\n }\n return {\n key: keyText,\n value: { text: valueText, selected: valueSelected },\n polygon: getPolygon(keyBlock.Geometry),\n boundingBox: getBoundingBox(keyBlock.Geometry),\n };\n}\n/**\n * Extracts text and selection from input block's children.\n * @param {Block}} block - Block that we want to extract contents from.\n * @param {[id: string]: Block} blockMap - Maps block Ids to blocks.\n */\nfunction extractContentsFromBlock(block, blockMap) {\n var e_5, _a, e_6, _b;\n var words = '';\n var isSelected;\n if (!block.Relationships) {\n // some block might have no content\n return { text: '', selected: undefined };\n }\n try {\n for (var _c = __values(block.Relationships), _d = _c.next(); !_d.done; _d = _c.next()) {\n var relation = _d.value;\n try {\n for (var _e = (e_6 = void 0, __values(relation.Ids)), _f = _e.next(); !_f.done; _f = _e.next()) {\n var contentId = _f.value;\n var contentBlock = blockMap[contentId];\n if (contentBlock.BlockType === 'WORD') {\n words += contentBlock.Text + ' ';\n }\n else if (contentBlock.BlockType === 'SELECTION_ELEMENT') {\n isSelected = contentBlock.SelectionStatus === 'SELECTED' ? true : false;\n }\n }\n }\n catch (e_6_1) { e_6 = { error: e_6_1 }; }\n finally {\n try {\n if (_f && !_f.done && (_b = _e.return)) _b.call(_e);\n }\n finally { if (e_6) throw e_6.error; }\n }\n }\n }\n catch (e_5_1) { e_5 = { error: e_5_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_a = _c.return)) _a.call(_c);\n }\n finally { if (e_5) throw e_5.error; }\n }\n words = words.substr(0, words.length - 1); // remove trailing space.\n return { text: words, selected: isSelected };\n}\n//# sourceMappingURL=IdentifyTextUtils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/Providers/IdentifyTextUtils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/Providers/Utils.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/Providers/Utils.js ***! \**************************************************************************/ /*! exports provided: makeCamelCase, makeCamelCaseArray, blobToArrayBuffer */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"makeCamelCase\", function() { return makeCamelCase; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"makeCamelCaseArray\", function() { return makeCamelCaseArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"blobToArrayBuffer\", function() { return blobToArrayBuffer; });\n/**\n * Changes object keys to camel case. If optional parameter `keys` is given, then we extract only the\n * keys specified in `keys`.\n */\nfunction makeCamelCase(obj, keys) {\n if (!obj)\n return undefined;\n var newObj = {};\n var keysToRename = keys ? keys : Object.keys(obj);\n keysToRename.forEach(function (key) {\n var _a;\n if (obj.hasOwnProperty(key)) {\n // change the key to camelcase.\n var camelCaseKey = key.charAt(0).toLowerCase() + key.substr(1);\n Object.assign(newObj, (_a = {}, _a[camelCaseKey] = obj[key], _a));\n }\n });\n return newObj;\n}\n/**\n * Given an array of object, call makeCamelCase(...) on each option.\n */\nfunction makeCamelCaseArray(objArr, keys) {\n if (!objArr)\n return undefined;\n return objArr.map(function (obj) { return makeCamelCase(obj, keys); });\n}\n/**\n * Converts blob to array buffer\n */\nfunction blobToArrayBuffer(blob) {\n return new Promise(function (res, rej) {\n var reader = new FileReader();\n reader.onload = function (_event) {\n res(reader.result);\n };\n reader.onerror = function (err) {\n rej(err);\n };\n try {\n reader.readAsArrayBuffer(blob);\n }\n catch (err) {\n rej(err); // in case user gives invalid type\n }\n });\n}\n//# sourceMappingURL=Utils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/Providers/Utils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/Providers/index.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/Providers/index.js ***! \**************************************************************************/ /*! exports provided: AmazonAIConvertPredictionsProvider, AmazonAIIdentifyPredictionsProvider, AmazonAIInterpretPredictionsProvider, AmazonAIPredictionsProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AmazonAIConvertPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmazonAIConvertPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIConvertPredictionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIConvertPredictionsProvider\", function() { return _AmazonAIConvertPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__[\"AmazonAIConvertPredictionsProvider\"]; });\n\n/* harmony import */ var _AmazonAIIdentifyPredictionsProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AmazonAIIdentifyPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIIdentifyPredictionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIIdentifyPredictionsProvider\", function() { return _AmazonAIIdentifyPredictionsProvider__WEBPACK_IMPORTED_MODULE_1__[\"AmazonAIIdentifyPredictionsProvider\"]; });\n\n/* harmony import */ var _AmazonAIInterpretPredictionsProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AmazonAIInterpretPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIInterpretPredictionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIInterpretPredictionsProvider\", function() { return _AmazonAIInterpretPredictionsProvider__WEBPACK_IMPORTED_MODULE_2__[\"AmazonAIInterpretPredictionsProvider\"]; });\n\n/* harmony import */ var _AmazonAIPredictionsProvider__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AmazonAIPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/AmazonAIPredictionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIPredictionsProvider\", function() { return _AmazonAIPredictionsProvider__WEBPACK_IMPORTED_MODULE_3__[\"AmazonAIPredictionsProvider\"]; });\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/Providers/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/index.js ***! \****************************************************************/ /*! exports provided: InterpretTextCategories, isIdentifyFromCollection, isIdentifyCelebrities, isTranslateTextInput, isTextToSpeechInput, isSpeechToTextInput, isStorageSource, isFileSource, isBytesSource, isIdentifyTextInput, isIdentifyLabelsInput, isIdentifyEntitiesInput, isInterpretTextInput, Predictions, AmazonAIIdentifyPredictionsProvider, AmazonAIConvertPredictionsProvider, AmazonAIPredictionsProvider, AmazonAIInterpretPredictionsProvider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Predictions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Predictions */ \"./node_modules/@aws-amplify/predictions/lib-esm/Predictions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Predictions\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"Predictions\"]; });\n\n/* harmony import */ var _Providers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Providers */ \"./node_modules/@aws-amplify/predictions/lib-esm/Providers/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIIdentifyPredictionsProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AmazonAIIdentifyPredictionsProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIConvertPredictionsProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AmazonAIConvertPredictionsProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIPredictionsProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AmazonAIPredictionsProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonAIInterpretPredictionsProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AmazonAIInterpretPredictionsProvider\"]; });\n\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InterpretTextCategories\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"InterpretTextCategories\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyFromCollection\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isIdentifyFromCollection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyCelebrities\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isIdentifyCelebrities\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTranslateTextInput\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isTranslateTextInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTextToSpeechInput\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isTextToSpeechInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSpeechToTextInput\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isSpeechToTextInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isStorageSource\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isStorageSource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isFileSource\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isFileSource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isBytesSource\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isBytesSource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyTextInput\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isIdentifyTextInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyLabelsInput\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isIdentifyLabelsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyEntitiesInput\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isIdentifyEntitiesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isInterpretTextInput\", function() { return _types__WEBPACK_IMPORTED_MODULE_2__[\"isInterpretTextInput\"]; });\n\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_Predictions__WEBPACK_IMPORTED_MODULE_0__[\"Predictions\"]);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/types/Predictions.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/types/Predictions.js ***! \****************************************************************************/ /*! exports provided: InterpretTextCategories, isIdentifyFromCollection, isIdentifyCelebrities, isTranslateTextInput, isTextToSpeechInput, isSpeechToTextInput, isStorageSource, isFileSource, isBytesSource, isIdentifyTextInput, isIdentifyLabelsInput, isIdentifyEntitiesInput, isInterpretTextInput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InterpretTextCategories\", function() { return InterpretTextCategories; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyFromCollection\", function() { return isIdentifyFromCollection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyCelebrities\", function() { return isIdentifyCelebrities; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTranslateTextInput\", function() { return isTranslateTextInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTextToSpeechInput\", function() { return isTextToSpeechInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSpeechToTextInput\", function() { return isSpeechToTextInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isStorageSource\", function() { return isStorageSource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isFileSource\", function() { return isFileSource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isBytesSource\", function() { return isBytesSource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyTextInput\", function() { return isIdentifyTextInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyLabelsInput\", function() { return isIdentifyLabelsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyEntitiesInput\", function() { return isIdentifyEntitiesInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isInterpretTextInput\", function() { return isInterpretTextInput; });\n/**\n * Convert types\n */\nvar InterpretTextCategories;\n(function (InterpretTextCategories) {\n InterpretTextCategories[\"ALL\"] = \"ALL\";\n InterpretTextCategories[\"LANGUAGE\"] = \"LANGUAGE\";\n InterpretTextCategories[\"ENTITIES\"] = \"ENTITIES\";\n InterpretTextCategories[\"SENTIMENT\"] = \"SENTIMENT\";\n InterpretTextCategories[\"SYNTAX\"] = \"SYNTAX\";\n InterpretTextCategories[\"KEY_PHRASES\"] = \"KEY_PHRASES\";\n})(InterpretTextCategories || (InterpretTextCategories = {}));\nfunction isIdentifyFromCollection(obj) {\n var key = 'collection';\n var keyId = 'collectionId';\n return obj && (obj.hasOwnProperty(key) || obj.hasOwnProperty(keyId));\n}\nfunction isIdentifyCelebrities(obj) {\n var key = 'celebrityDetection';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isTranslateTextInput(obj) {\n var key = 'translateText';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isTextToSpeechInput(obj) {\n var key = 'textToSpeech';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isSpeechToTextInput(obj) {\n var key = 'transcription';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isStorageSource(obj) {\n var key = 'key';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isFileSource(obj) {\n var key = 'file';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isBytesSource(obj) {\n var key = 'bytes';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isIdentifyTextInput(obj) {\n var key = 'text';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isIdentifyLabelsInput(obj) {\n var key = 'labels';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isIdentifyEntitiesInput(obj) {\n var key = 'entities';\n return obj && obj.hasOwnProperty(key);\n}\nfunction isInterpretTextInput(obj) {\n var key = 'text';\n return obj && obj.hasOwnProperty(key);\n}\n//# sourceMappingURL=Predictions.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/types/Predictions.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractConvertPredictionsProvider.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractConvertPredictionsProvider.js ***! \*************************************************************************************************************/ /*! exports provided: AbstractConvertPredictionsProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbstractConvertPredictionsProvider\", function() { return AbstractConvertPredictionsProvider; });\n/* harmony import */ var _Predictions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Predictions */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Predictions.js\");\n/* harmony import */ var _AbstractPredictionsProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AbstractPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractPredictionsProvider.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"ConsoleLogger\"]('AbstractConvertPredictionsProvider');\nvar AbstractConvertPredictionsProvider = /** @class */ (function (_super) {\n __extends(AbstractConvertPredictionsProvider, _super);\n function AbstractConvertPredictionsProvider() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n AbstractConvertPredictionsProvider.prototype.getCategory = function () {\n return 'Convert';\n };\n AbstractConvertPredictionsProvider.prototype.convert = function (input) {\n if (Object(_Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isTranslateTextInput\"])(input)) {\n logger.debug('translateText');\n return this.translateText(input);\n }\n else if (Object(_Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isTextToSpeechInput\"])(input)) {\n logger.debug('textToSpeech');\n return this.convertTextToSpeech(input);\n }\n else if (Object(_Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isSpeechToTextInput\"])(input)) {\n logger.debug('textToSpeech');\n return this.convertSpeechToText(input);\n }\n };\n AbstractConvertPredictionsProvider.prototype.translateText = function (translateTextInput) {\n throw new Error('convertText is not implemented by this provider');\n };\n AbstractConvertPredictionsProvider.prototype.convertTextToSpeech = function (textToSpeechInput) {\n throw new Error('convertTextToSpeech is not implemented by this provider');\n };\n AbstractConvertPredictionsProvider.prototype.convertSpeechToText = function (speechToTextInput) {\n throw new Error('convertSpeechToText is not implemented by this provider');\n };\n return AbstractConvertPredictionsProvider;\n}(_AbstractPredictionsProvider__WEBPACK_IMPORTED_MODULE_1__[\"AbstractPredictionsProvider\"]));\n\n//# sourceMappingURL=AbstractConvertPredictionsProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractConvertPredictionsProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractIdentifyPredictionsProvider.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractIdentifyPredictionsProvider.js ***! \**************************************************************************************************************/ /*! exports provided: AbstractIdentifyPredictionsProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbstractIdentifyPredictionsProvider\", function() { return AbstractIdentifyPredictionsProvider; });\n/* harmony import */ var _AbstractPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AbstractPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractPredictionsProvider.js\");\n/* harmony import */ var _Predictions__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Predictions */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Predictions.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"Logger\"]('AbstractIdentifyPredictionsProvider');\nvar AbstractIdentifyPredictionsProvider = /** @class */ (function (_super) {\n __extends(AbstractIdentifyPredictionsProvider, _super);\n function AbstractIdentifyPredictionsProvider() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n AbstractIdentifyPredictionsProvider.prototype.getCategory = function () {\n return 'Identify';\n };\n AbstractIdentifyPredictionsProvider.prototype.identify = function (input) {\n if (Object(_Predictions__WEBPACK_IMPORTED_MODULE_1__[\"isIdentifyTextInput\"])(input)) {\n logger.debug('identifyText');\n return this.identifyText(input);\n }\n else if (Object(_Predictions__WEBPACK_IMPORTED_MODULE_1__[\"isIdentifyLabelsInput\"])(input)) {\n logger.debug('identifyLabels');\n return this.identifyLabels(input);\n }\n else if (Object(_Predictions__WEBPACK_IMPORTED_MODULE_1__[\"isIdentifyEntitiesInput\"])(input)) {\n logger.debug('identifyEntities');\n return this.identifyEntities(input);\n }\n };\n AbstractIdentifyPredictionsProvider.prototype.identifyText = function (input) {\n throw new Error('identifyText is not implemented by this provider.');\n };\n AbstractIdentifyPredictionsProvider.prototype.identifyLabels = function (input) {\n throw new Error('identifyLabels is not implemented by this provider');\n };\n AbstractIdentifyPredictionsProvider.prototype.identifyEntities = function (input) {\n throw new Error('identifyEntities is not implemented by this provider');\n };\n return AbstractIdentifyPredictionsProvider;\n}(_AbstractPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__[\"AbstractPredictionsProvider\"]));\n\n//# sourceMappingURL=AbstractIdentifyPredictionsProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractIdentifyPredictionsProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractInterpretPredictionsProvider.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractInterpretPredictionsProvider.js ***! \***************************************************************************************************************/ /*! exports provided: AbstractInterpretPredictionsProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbstractInterpretPredictionsProvider\", function() { return AbstractInterpretPredictionsProvider; });\n/* harmony import */ var _AbstractPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AbstractPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractPredictionsProvider.js\");\n/* harmony import */ var _Predictions__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Predictions */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Predictions.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n\n\nvar AbstractInterpretPredictionsProvider = /** @class */ (function (_super) {\n __extends(AbstractInterpretPredictionsProvider, _super);\n function AbstractInterpretPredictionsProvider() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n AbstractInterpretPredictionsProvider.prototype.getCategory = function () {\n return 'Interpret';\n };\n AbstractInterpretPredictionsProvider.prototype.interpret = function (input) {\n if (Object(_Predictions__WEBPACK_IMPORTED_MODULE_1__[\"isInterpretTextInput\"])(input)) {\n return this.interpretText(input);\n }\n };\n AbstractInterpretPredictionsProvider.prototype.interpretText = function (input) {\n throw new Error('interpretText is not implement by this provider');\n };\n return AbstractInterpretPredictionsProvider;\n}(_AbstractPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__[\"AbstractPredictionsProvider\"]));\n\n//# sourceMappingURL=AbstractInterpretPredictionsProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractInterpretPredictionsProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractPredictionsProvider.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractPredictionsProvider.js ***! \******************************************************************************************************/ /*! exports provided: AbstractPredictionsProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbstractPredictionsProvider\", function() { return AbstractPredictionsProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('Amplify');\nvar AbstractPredictionsProvider = /** @class */ (function () {\n function AbstractPredictionsProvider() {\n }\n AbstractPredictionsProvider.prototype.configure = function (config) {\n logger.debug('configure AbstractPredictionsProvider', { config: config });\n this._config = config;\n return config;\n };\n return AbstractPredictionsProvider;\n}());\n\n//# sourceMappingURL=AbstractPredictionsProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractPredictionsProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/index.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/index.js ***! \********************************************************************************/ /*! exports provided: AbstractPredictionsProvider, AbstractConvertPredictionsProvider, AbstractIdentifyPredictionsProvider, AbstractInterpretPredictionsProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AbstractPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AbstractPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractPredictionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbstractPredictionsProvider\", function() { return _AbstractPredictionsProvider__WEBPACK_IMPORTED_MODULE_0__[\"AbstractPredictionsProvider\"]; });\n\n/* harmony import */ var _AbstractConvertPredictionsProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AbstractConvertPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractConvertPredictionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbstractConvertPredictionsProvider\", function() { return _AbstractConvertPredictionsProvider__WEBPACK_IMPORTED_MODULE_1__[\"AbstractConvertPredictionsProvider\"]; });\n\n/* harmony import */ var _AbstractIdentifyPredictionsProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AbstractIdentifyPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractIdentifyPredictionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbstractIdentifyPredictionsProvider\", function() { return _AbstractIdentifyPredictionsProvider__WEBPACK_IMPORTED_MODULE_2__[\"AbstractIdentifyPredictionsProvider\"]; });\n\n/* harmony import */ var _AbstractInterpretPredictionsProvider__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AbstractInterpretPredictionsProvider */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/AbstractInterpretPredictionsProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbstractInterpretPredictionsProvider\", function() { return _AbstractInterpretPredictionsProvider__WEBPACK_IMPORTED_MODULE_3__[\"AbstractInterpretPredictionsProvider\"]; });\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/types/Providers/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/predictions/lib-esm/types/index.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-amplify/predictions/lib-esm/types/index.js ***! \**********************************************************************/ /*! exports provided: InterpretTextCategories, isIdentifyFromCollection, isIdentifyCelebrities, isTranslateTextInput, isTextToSpeechInput, isSpeechToTextInput, isStorageSource, isFileSource, isBytesSource, isIdentifyTextInput, isIdentifyLabelsInput, isIdentifyEntitiesInput, isInterpretTextInput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Predictions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Predictions */ \"./node_modules/@aws-amplify/predictions/lib-esm/types/Predictions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InterpretTextCategories\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"InterpretTextCategories\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyFromCollection\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isIdentifyFromCollection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyCelebrities\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isIdentifyCelebrities\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTranslateTextInput\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isTranslateTextInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTextToSpeechInput\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isTextToSpeechInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSpeechToTextInput\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isSpeechToTextInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isStorageSource\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isStorageSource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isFileSource\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isFileSource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isBytesSource\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isBytesSource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyTextInput\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isIdentifyTextInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyLabelsInput\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isIdentifyLabelsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIdentifyEntitiesInput\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isIdentifyEntitiesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isInterpretTextInput\", function() { return _Predictions__WEBPACK_IMPORTED_MODULE_0__[\"isInterpretTextInput\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/predictions/lib-esm/types/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSAppSyncProvider.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSAppSyncProvider.js ***! \**********************************************************************************/ /*! exports provided: AWSAppSyncProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSAppSyncProvider\", function() { return AWSAppSyncProvider; });\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _MqttOverWSProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./MqttOverWSProvider */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/MqttOverWSProvider.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('AWSAppSyncProvider');\n/**\n * @deprecated Unused, all usecases have migrated to AWSAppSyncRealtimeProvider\n */\nvar AWSAppSyncProvider = /** @class */ (function (_super) {\n __extends(AWSAppSyncProvider, _super);\n function AWSAppSyncProvider() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._topicClient = new Map();\n _this._topicAlias = new Map();\n return _this;\n }\n Object.defineProperty(AWSAppSyncProvider.prototype, \"endpoint\", {\n get: function () {\n throw new Error('Not supported');\n },\n enumerable: true,\n configurable: true\n });\n AWSAppSyncProvider.prototype.getProviderName = function () {\n return 'AWSAppSyncProvider';\n };\n AWSAppSyncProvider.prototype.publish = function (topics, msg, options) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n throw new Error('Operation not supported');\n });\n });\n };\n AWSAppSyncProvider.prototype._cleanUp = function (clientId) {\n var _this = this;\n var topicsForClient = Array.from(this._topicClient.entries())\n .filter(function (_a) {\n var _b = __read(_a, 2), c = _b[1];\n return c.clientId === clientId;\n })\n .map(function (_a) {\n var _b = __read(_a, 1), t = _b[0];\n return t;\n });\n topicsForClient.forEach(function (t) { return _this._cleanUpForTopic(t); });\n };\n AWSAppSyncProvider.prototype._cleanUpForTopic = function (topic) {\n this._topicClient.delete(topic);\n this._topicAlias.delete(topic);\n };\n AWSAppSyncProvider.prototype.onDisconnect = function (_a) {\n var _this = this;\n var clientId = _a.clientId, errorCode = _a.errorCode, args = __rest(_a, [\"clientId\", \"errorCode\"]);\n if (errorCode !== 0) {\n var topicsForClient = Array.from(this._topicClient.entries())\n .filter(function (_a) {\n var _b = __read(_a, 2), c = _b[1];\n return c.clientId === clientId;\n })\n .map(function (_a) {\n var _b = __read(_a, 1), t = _b[0];\n return t;\n });\n topicsForClient.forEach(function (topic) {\n if (_this._topicObservers.has(topic)) {\n _this._topicObservers.get(topic).forEach(function (obs) {\n if (!obs.closed) {\n obs.error(args);\n }\n });\n _this._topicObservers.delete(topic);\n }\n });\n this._cleanUp(clientId);\n }\n };\n AWSAppSyncProvider.prototype.disconnect = function (clientId) {\n return __awaiter(this, void 0, void 0, function () {\n var client;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.clientsQueue.get(clientId, function () { return null; })];\n case 1:\n client = _a.sent();\n return [4 /*yield*/, _super.prototype.disconnect.call(this, clientId)];\n case 2:\n _a.sent();\n this._cleanUp(clientId);\n return [2 /*return*/];\n }\n });\n });\n };\n AWSAppSyncProvider.prototype.subscribe = function (topics, options) {\n var _this = this;\n if (options === void 0) { options = {}; }\n var result = new zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__[\"default\"](function (observer) {\n var targetTopics = [].concat(topics);\n logger.debug('Subscribing to topic(s)', targetTopics.join(','));\n (function () { return __awaiter(_this, void 0, void 0, function () {\n var _a, mqttConnections, newSubscriptions, newAliases, map;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n // Add these topics to map\n targetTopics.forEach(function (t) {\n if (!_this._topicObservers.has(t)) {\n _this._topicObservers.set(t, new Set());\n }\n _this._topicObservers.get(t).add(observer);\n });\n _a = options.mqttConnections, mqttConnections = _a === void 0 ? [] : _a, newSubscriptions = options.newSubscriptions;\n newAliases = Object.entries(newSubscriptions).map(function (_a) {\n var _b = __read(_a, 2), alias = _b[0], v = _b[1];\n return [v.topic, alias];\n });\n // Merge new aliases with old ones\n this._topicAlias = new Map(__spread(Array.from(this._topicAlias.entries()), newAliases));\n map = Object.entries(targetTopics.reduce(function (acc, elem) {\n var connectionInfoForTopic = mqttConnections.find(function (c) { return c.topics.indexOf(elem) > -1; });\n if (connectionInfoForTopic) {\n var clientId = connectionInfoForTopic.client, url = connectionInfoForTopic.url;\n if (!acc[clientId]) {\n acc[clientId] = {\n url: url,\n topics: new Set(),\n };\n }\n acc[clientId].topics.add(elem);\n }\n return acc;\n }, {}));\n // reconnect everything we have in the map\n return [4 /*yield*/, Promise.all(map.map(function (_a) {\n var _b = __read(_a, 2), clientId = _b[0], _c = _b[1], url = _c.url, topics = _c.topics;\n return __awaiter(_this, void 0, void 0, function () {\n var client, err_1;\n var _this = this;\n return __generator(this, function (_d) {\n switch (_d.label) {\n case 0:\n client = null;\n _d.label = 1;\n case 1:\n _d.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.connect(clientId, {\n clientId: clientId,\n url: url,\n })];\n case 2:\n client = _d.sent();\n return [3 /*break*/, 4];\n case 3:\n err_1 = _d.sent();\n observer.error({ message: 'Failed to connect', error: err_1 });\n observer.complete();\n return [2 /*return*/, undefined];\n case 4:\n // subscribe to all topics for this client\n // store topic-client mapping\n topics.forEach(function (topic) {\n if (client.isConnected()) {\n client.subscribe(topic);\n _this._topicClient.set(topic, client);\n }\n });\n return [2 /*return*/, client];\n }\n });\n });\n }))];\n case 1:\n // reconnect everything we have in the map\n _b.sent();\n return [2 /*return*/];\n }\n });\n }); })();\n return function () {\n logger.debug('Unsubscribing from topic(s)', targetTopics.join(','));\n targetTopics.forEach(function (t) {\n var client = _this._topicClient.get(t);\n if (client && client.isConnected()) {\n client.unsubscribe(t);\n _this._topicClient.delete(t);\n if (!Array.from(_this._topicClient.values()).some(function (c) { return c === client; })) {\n _this.disconnect(client.clientId);\n }\n }\n _this._topicObservers.delete(t);\n });\n };\n });\n return zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__[\"default\"].from(result).map(function (value) {\n var topic = _this.getTopicForValue(value);\n var alias = _this._topicAlias.get(topic);\n value.data = Object.entries(value.data).reduce(function (obj, _a) {\n var _b = __read(_a, 2), origKey = _b[0], val = _b[1];\n return ((obj[(alias || origKey)] = val), obj);\n }, {});\n return value;\n });\n };\n return AWSAppSyncProvider;\n}(_MqttOverWSProvider__WEBPACK_IMPORTED_MODULE_2__[\"MqttOverWSProvider\"]));\n\n//# sourceMappingURL=AWSAppSyncProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSAppSyncProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSAppSyncRealTimeProvider/index.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSAppSyncRealTimeProvider/index.js ***! \************************************************************************************************/ /*! exports provided: AWSAppSyncRealTimeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSAppSyncRealTimeProvider\", function() { return AWSAppSyncRealTimeProvider; });\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var graphql__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! graphql */ \"./node_modules/graphql/index.mjs\");\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! url */ \"./node_modules/url/url.js\");\n/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(url__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! uuid */ \"./node_modules/uuid/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! buffer */ \"./node_modules/buffer/index.js\");\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(buffer__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-amplify/cache */ \"./node_modules/@aws-amplify/cache/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-amplify/auth */ \"./node_modules/@aws-amplify/auth/lib-esm/index.js\");\n/* harmony import */ var _PubSubProvider__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../PubSubProvider */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/PubSubProvider.js\");\n/* harmony import */ var _types_PubSub__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../types/PubSub */ \"./node_modules/@aws-amplify/pubsub/lib-esm/types/PubSub.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../constants */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/constants.js\");\n/* harmony import */ var _utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../../utils/ConnectionStateMonitor */ \"./node_modules/@aws-amplify/pubsub/lib-esm/utils/ConnectionStateMonitor.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n/*\n * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\n\n\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"Logger\"]('AWSAppSyncRealTimeProvider');\nvar dispatchApiEvent = function (event, data, message) {\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"Hub\"].dispatch('api', { event: event, data: data, message: message }, 'PubSub', _constants__WEBPACK_IMPORTED_MODULE_10__[\"AMPLIFY_SYMBOL\"]);\n};\nvar standardDomainPattern = /^https:\\/\\/\\w{26}\\.appsync\\-api\\.\\w{2}(?:(?:\\-\\w{2,})+)\\-\\d\\.amazonaws.com\\/graphql$/i;\nvar customDomainPath = '/realtime';\nvar AWSAppSyncRealTimeProvider = /** @class */ (function (_super) {\n __extends(AWSAppSyncRealTimeProvider, _super);\n function AWSAppSyncRealTimeProvider(options) {\n if (options === void 0) { options = {}; }\n var _this = _super.call(this, options) || this;\n _this.socketStatus = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].CLOSED;\n _this.keepAliveTimeout = _constants__WEBPACK_IMPORTED_MODULE_10__[\"DEFAULT_KEEP_ALIVE_TIMEOUT\"];\n _this.subscriptionObserverMap = new Map();\n _this.promiseArray = [];\n _this.connectionStateMonitor = new _utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"ConnectionStateMonitor\"]();\n // Monitor the connection state and pass changes along to Hub\n _this.connectionStateMonitor.connectionStateObservable.subscribe(function (ConnectionState) {\n dispatchApiEvent(_constants__WEBPACK_IMPORTED_MODULE_10__[\"CONNECTION_STATE_CHANGE\"], {\n provider: _this,\n connectionState: ConnectionState,\n }, \"Connection state is \" + ConnectionState);\n });\n return _this;\n }\n AWSAppSyncRealTimeProvider.prototype.getNewWebSocket = function (url, protocol) {\n return new WebSocket(url, protocol);\n };\n AWSAppSyncRealTimeProvider.prototype.getProviderName = function () {\n return 'AWSAppSyncRealTimeProvider';\n };\n AWSAppSyncRealTimeProvider.prototype.newClient = function () {\n throw new Error('Not used here');\n };\n AWSAppSyncRealTimeProvider.prototype.publish = function (_topics, _msg, _options) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n throw new Error('Operation not supported');\n });\n });\n };\n // Check if url matches standard domain pattern\n AWSAppSyncRealTimeProvider.prototype.isCustomDomain = function (url) {\n return url.match(standardDomainPattern) === null;\n };\n AWSAppSyncRealTimeProvider.prototype.subscribe = function (_topics, options) {\n var _this = this;\n var appSyncGraphqlEndpoint = options === null || options === void 0 ? void 0 : options.appSyncGraphqlEndpoint;\n return new zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__[\"default\"](function (observer) {\n if (!options || !appSyncGraphqlEndpoint) {\n observer.error({\n errors: [\n __assign({}, new graphql__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Subscribe only available for AWS AppSync endpoint\")),\n ],\n });\n observer.complete();\n }\n else {\n var subscriptionId_1 = Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v4\"])();\n _this._startSubscriptionWithAWSAppSyncRealTime({\n options: options,\n observer: observer,\n subscriptionId: subscriptionId_1,\n }).catch(function (err) {\n observer.error({\n errors: [\n __assign({}, new graphql__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](_types_PubSub__WEBPACK_IMPORTED_MODULE_9__[\"CONTROL_MSG\"].REALTIME_SUBSCRIPTION_INIT_ERROR + \": \" + err)),\n ],\n });\n _this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].CLOSED);\n observer.complete();\n });\n return function () { return __awaiter(_this, void 0, void 0, function () {\n var subscriptionState, err_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, 3, 4]);\n // Waiting that subscription has been connected before trying to unsubscribe\n return [4 /*yield*/, this._waitForSubscriptionToBeConnected(subscriptionId_1)];\n case 1:\n // Waiting that subscription has been connected before trying to unsubscribe\n _a.sent();\n subscriptionState = (this.subscriptionObserverMap.get(subscriptionId_1) || {}).subscriptionState;\n if (!subscriptionState) {\n // subscription already unsubscribed\n return [2 /*return*/];\n }\n if (subscriptionState === _constants__WEBPACK_IMPORTED_MODULE_10__[\"SUBSCRIPTION_STATUS\"].CONNECTED) {\n this._sendUnsubscriptionMessage(subscriptionId_1);\n }\n else {\n throw new Error('Subscription never connected');\n }\n return [3 /*break*/, 4];\n case 2:\n err_1 = _a.sent();\n logger.debug(\"Error while unsubscribing \" + err_1);\n return [3 /*break*/, 4];\n case 3:\n this._removeSubscriptionObserver(subscriptionId_1);\n return [7 /*endfinally*/];\n case 4: return [2 /*return*/];\n }\n });\n }); };\n }\n });\n };\n Object.defineProperty(AWSAppSyncRealTimeProvider.prototype, \"isSSLEnabled\", {\n get: function () {\n return !this.options\n .aws_appsync_dangerously_connect_to_http_endpoint_for_testing;\n },\n enumerable: true,\n configurable: true\n });\n AWSAppSyncRealTimeProvider.prototype._startSubscriptionWithAWSAppSyncRealTime = function (_a) {\n var options = _a.options, observer = _a.observer, subscriptionId = _a.subscriptionId;\n var _b, _c;\n return __awaiter(this, void 0, void 0, function () {\n var appSyncGraphqlEndpoint, authenticationType, query, variables, apiKey, region, _d, graphql_headers, _e, additionalHeaders, subscriptionState, data, dataString, headerObj, _f, _g, subscriptionMessage, stringToAWSRealTime, err_2, message, subscriptionFailedCallback_1, _h, subscriptionFailedCallback, subscriptionReadyCallback;\n var _j;\n var _this = this;\n return __generator(this, function (_k) {\n switch (_k.label) {\n case 0:\n appSyncGraphqlEndpoint = options.appSyncGraphqlEndpoint, authenticationType = options.authenticationType, query = options.query, variables = options.variables, apiKey = options.apiKey, region = options.region, _d = options.graphql_headers, graphql_headers = _d === void 0 ? function () { return ({}); } : _d, _e = options.additionalHeaders, additionalHeaders = _e === void 0 ? {} : _e;\n subscriptionState = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SUBSCRIPTION_STATUS\"].PENDING;\n data = {\n query: query,\n variables: variables,\n };\n // Having a subscription id map will make it simple to forward messages received\n this.subscriptionObserverMap.set(subscriptionId, {\n observer: observer,\n query: query !== null && query !== void 0 ? query : '',\n variables: variables !== null && variables !== void 0 ? variables : {},\n subscriptionState: subscriptionState,\n startAckTimeoutId: undefined,\n });\n dataString = JSON.stringify(data);\n _f = [{}];\n return [4 /*yield*/, this._awsRealTimeHeaderBasedAuth({\n apiKey: apiKey,\n appSyncGraphqlEndpoint: appSyncGraphqlEndpoint,\n authenticationType: authenticationType,\n payload: dataString,\n canonicalUri: '',\n region: region,\n additionalHeaders: additionalHeaders,\n })];\n case 1:\n _g = [__assign.apply(void 0, _f.concat([(_k.sent())]))];\n return [4 /*yield*/, graphql_headers()];\n case 2:\n headerObj = __assign.apply(void 0, [__assign.apply(void 0, [__assign.apply(void 0, _g.concat([(_k.sent())])), additionalHeaders]), (_j = {}, _j[_aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"USER_AGENT_HEADER\"]] = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"Constants\"].userAgent, _j)]);\n subscriptionMessage = {\n id: subscriptionId,\n payload: {\n data: dataString,\n extensions: {\n authorization: __assign({}, headerObj),\n },\n },\n type: _constants__WEBPACK_IMPORTED_MODULE_10__[\"MESSAGE_TYPES\"].GQL_START,\n };\n stringToAWSRealTime = JSON.stringify(subscriptionMessage);\n _k.label = 3;\n case 3:\n _k.trys.push([3, 5, , 6]);\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].OPENING_CONNECTION);\n return [4 /*yield*/, this._initializeWebSocketConnection({\n apiKey: apiKey,\n appSyncGraphqlEndpoint: appSyncGraphqlEndpoint,\n authenticationType: authenticationType,\n region: region,\n additionalHeaders: additionalHeaders,\n })];\n case 4:\n _k.sent();\n return [3 /*break*/, 6];\n case 5:\n err_2 = _k.sent();\n logger.debug({ err: err_2 });\n message = (_b = err_2['message']) !== null && _b !== void 0 ? _b : '';\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].CLOSED);\n observer.error({\n errors: [\n __assign({}, new graphql__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](_types_PubSub__WEBPACK_IMPORTED_MODULE_9__[\"CONTROL_MSG\"].CONNECTION_FAILED + \": \" + message)),\n ],\n });\n observer.complete();\n subscriptionFailedCallback_1 = (this.subscriptionObserverMap.get(subscriptionId) || {}).subscriptionFailedCallback;\n // Notify concurrent unsubscription\n if (typeof subscriptionFailedCallback_1 === 'function') {\n subscriptionFailedCallback_1();\n }\n return [2 /*return*/];\n case 6:\n _h = (_c = this.subscriptionObserverMap.get(subscriptionId)) !== null && _c !== void 0 ? _c : {}, subscriptionFailedCallback = _h.subscriptionFailedCallback, subscriptionReadyCallback = _h.subscriptionReadyCallback;\n // This must be done before sending the message in order to be listening immediately\n this.subscriptionObserverMap.set(subscriptionId, {\n observer: observer,\n subscriptionState: subscriptionState,\n query: query !== null && query !== void 0 ? query : '',\n variables: variables !== null && variables !== void 0 ? variables : {},\n subscriptionReadyCallback: subscriptionReadyCallback,\n subscriptionFailedCallback: subscriptionFailedCallback,\n startAckTimeoutId: setTimeout(function () {\n _this._timeoutStartSubscriptionAck.call(_this, subscriptionId);\n }, _constants__WEBPACK_IMPORTED_MODULE_10__[\"START_ACK_TIMEOUT\"]),\n });\n if (this.awsRealTimeSocket) {\n this.awsRealTimeSocket.send(stringToAWSRealTime);\n }\n return [2 /*return*/];\n }\n });\n });\n };\n // Waiting that subscription has been connected before trying to unsubscribe\n AWSAppSyncRealTimeProvider.prototype._waitForSubscriptionToBeConnected = function (subscriptionId) {\n return __awaiter(this, void 0, void 0, function () {\n var subscriptionObserver, subscriptionState;\n var _this = this;\n return __generator(this, function (_a) {\n subscriptionObserver = this.subscriptionObserverMap.get(subscriptionId);\n if (subscriptionObserver) {\n subscriptionState = subscriptionObserver.subscriptionState;\n // This in case unsubscribe is invoked before sending start subscription message\n if (subscriptionState === _constants__WEBPACK_IMPORTED_MODULE_10__[\"SUBSCRIPTION_STATUS\"].PENDING) {\n return [2 /*return*/, new Promise(function (res, rej) {\n var observer = subscriptionObserver.observer, subscriptionState = subscriptionObserver.subscriptionState, variables = subscriptionObserver.variables, query = subscriptionObserver.query;\n _this.subscriptionObserverMap.set(subscriptionId, {\n observer: observer,\n subscriptionState: subscriptionState,\n variables: variables,\n query: query,\n subscriptionReadyCallback: res,\n subscriptionFailedCallback: rej,\n });\n })];\n }\n }\n return [2 /*return*/];\n });\n });\n };\n AWSAppSyncRealTimeProvider.prototype._sendUnsubscriptionMessage = function (subscriptionId) {\n try {\n if (this.awsRealTimeSocket &&\n this.awsRealTimeSocket.readyState === WebSocket.OPEN &&\n this.socketStatus === _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].READY) {\n // Preparing unsubscribe message to stop receiving messages for that subscription\n var unsubscribeMessage = {\n id: subscriptionId,\n type: _constants__WEBPACK_IMPORTED_MODULE_10__[\"MESSAGE_TYPES\"].GQL_STOP,\n };\n var stringToAWSRealTime = JSON.stringify(unsubscribeMessage);\n this.awsRealTimeSocket.send(stringToAWSRealTime);\n }\n }\n catch (err) {\n // If GQL_STOP is not sent because of disconnection issue, then there is nothing the client can do\n logger.debug({ err: err });\n }\n };\n AWSAppSyncRealTimeProvider.prototype._removeSubscriptionObserver = function (subscriptionId) {\n this.subscriptionObserverMap.delete(subscriptionId);\n // Verifying 1000ms after removing subscription in case there are new subscription unmount/mount\n setTimeout(this._closeSocketIfRequired.bind(this), 1000);\n };\n AWSAppSyncRealTimeProvider.prototype._closeSocketIfRequired = function () {\n if (this.subscriptionObserverMap.size > 0) {\n // Active subscriptions on the WebSocket\n return;\n }\n if (!this.awsRealTimeSocket) {\n this.socketStatus = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].CLOSED;\n return;\n }\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].CLOSING_CONNECTION);\n if (this.awsRealTimeSocket.bufferedAmount > 0) {\n // Still data on the WebSocket\n setTimeout(this._closeSocketIfRequired.bind(this), 1000);\n }\n else {\n logger.debug('closing WebSocket...');\n if (this.keepAliveTimeoutId) {\n clearTimeout(this.keepAliveTimeoutId);\n }\n if (this.keepAliveAlertTimeoutId) {\n clearTimeout(this.keepAliveAlertTimeoutId);\n }\n var tempSocket = this.awsRealTimeSocket;\n // Cleaning callbacks to avoid race condition, socket still exists\n tempSocket.onclose = null;\n tempSocket.onerror = null;\n tempSocket.close(1000);\n this.awsRealTimeSocket = undefined;\n this.socketStatus = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].CLOSED;\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].CLOSED);\n }\n };\n AWSAppSyncRealTimeProvider.prototype._handleIncomingSubscriptionMessage = function (message) {\n var _this = this;\n logger.debug(\"subscription message from AWS AppSync RealTime: \" + message.data);\n var _a = JSON.parse(message.data), _b = _a.id, id = _b === void 0 ? '' : _b, payload = _a.payload, type = _a.type;\n var _c = this.subscriptionObserverMap.get(id) || {}, _d = _c.observer, observer = _d === void 0 ? null : _d, _e = _c.query, query = _e === void 0 ? '' : _e, _f = _c.variables, variables = _f === void 0 ? {} : _f, startAckTimeoutId = _c.startAckTimeoutId, subscriptionReadyCallback = _c.subscriptionReadyCallback, subscriptionFailedCallback = _c.subscriptionFailedCallback;\n logger.debug({ id: id, observer: observer, query: query, variables: variables });\n if (type === _constants__WEBPACK_IMPORTED_MODULE_10__[\"MESSAGE_TYPES\"].GQL_DATA && payload && payload.data) {\n if (observer) {\n observer.next(payload);\n }\n else {\n logger.debug(\"observer not found for id: \" + id);\n }\n return;\n }\n if (type === _constants__WEBPACK_IMPORTED_MODULE_10__[\"MESSAGE_TYPES\"].GQL_START_ACK) {\n logger.debug(\"subscription ready for \" + JSON.stringify({ query: query, variables: variables }));\n if (typeof subscriptionReadyCallback === 'function') {\n subscriptionReadyCallback();\n }\n if (startAckTimeoutId)\n clearTimeout(startAckTimeoutId);\n dispatchApiEvent(_types_PubSub__WEBPACK_IMPORTED_MODULE_9__[\"CONTROL_MSG\"].SUBSCRIPTION_ACK, { query: query, variables: variables }, 'Connection established for subscription');\n var subscriptionState = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SUBSCRIPTION_STATUS\"].CONNECTED;\n if (observer) {\n this.subscriptionObserverMap.set(id, {\n observer: observer,\n query: query,\n variables: variables,\n startAckTimeoutId: undefined,\n subscriptionState: subscriptionState,\n subscriptionReadyCallback: subscriptionReadyCallback,\n subscriptionFailedCallback: subscriptionFailedCallback,\n });\n }\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].CONNECTION_ESTABLISHED);\n return;\n }\n if (type === _constants__WEBPACK_IMPORTED_MODULE_10__[\"MESSAGE_TYPES\"].GQL_CONNECTION_KEEP_ALIVE) {\n if (this.keepAliveTimeoutId)\n clearTimeout(this.keepAliveTimeoutId);\n if (this.keepAliveAlertTimeoutId)\n clearTimeout(this.keepAliveAlertTimeoutId);\n this.keepAliveTimeoutId = setTimeout(function () { return _this._errorDisconnect(_types_PubSub__WEBPACK_IMPORTED_MODULE_9__[\"CONTROL_MSG\"].TIMEOUT_DISCONNECT); }, this.keepAliveTimeout);\n this.keepAliveAlertTimeoutId = setTimeout(function () {\n _this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].KEEP_ALIVE_MISSED);\n }, _constants__WEBPACK_IMPORTED_MODULE_10__[\"DEFAULT_KEEP_ALIVE_ALERT_TIMEOUT\"]);\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].KEEP_ALIVE);\n return;\n }\n if (type === _constants__WEBPACK_IMPORTED_MODULE_10__[\"MESSAGE_TYPES\"].GQL_ERROR) {\n var subscriptionState = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SUBSCRIPTION_STATUS\"].FAILED;\n if (observer) {\n this.subscriptionObserverMap.set(id, {\n observer: observer,\n query: query,\n variables: variables,\n startAckTimeoutId: startAckTimeoutId,\n subscriptionReadyCallback: subscriptionReadyCallback,\n subscriptionFailedCallback: subscriptionFailedCallback,\n subscriptionState: subscriptionState,\n });\n observer.error({\n errors: [\n __assign({}, new graphql__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](_types_PubSub__WEBPACK_IMPORTED_MODULE_9__[\"CONTROL_MSG\"].CONNECTION_FAILED + \": \" + JSON.stringify(payload))),\n ],\n });\n if (startAckTimeoutId)\n clearTimeout(startAckTimeoutId);\n observer.complete();\n if (typeof subscriptionFailedCallback === 'function') {\n subscriptionFailedCallback();\n }\n }\n }\n };\n AWSAppSyncRealTimeProvider.prototype._errorDisconnect = function (msg) {\n logger.debug(\"Disconnect error: \" + msg);\n this.subscriptionObserverMap.forEach(function (_a) {\n var observer = _a.observer;\n if (observer && !observer.closed) {\n observer.error({\n errors: [__assign({}, new graphql__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](msg))],\n });\n }\n });\n this.subscriptionObserverMap.clear();\n if (this.awsRealTimeSocket) {\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].CLOSED);\n this.awsRealTimeSocket.close();\n }\n this.socketStatus = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].CLOSED;\n };\n AWSAppSyncRealTimeProvider.prototype._timeoutStartSubscriptionAck = function (subscriptionId) {\n var subscriptionObserver = this.subscriptionObserverMap.get(subscriptionId);\n if (subscriptionObserver) {\n var observer = subscriptionObserver.observer, query = subscriptionObserver.query, variables = subscriptionObserver.variables;\n if (!observer) {\n return;\n }\n this.subscriptionObserverMap.set(subscriptionId, {\n observer: observer,\n query: query,\n variables: variables,\n subscriptionState: _constants__WEBPACK_IMPORTED_MODULE_10__[\"SUBSCRIPTION_STATUS\"].FAILED,\n });\n if (observer && !observer.closed) {\n observer.error({\n errors: [\n __assign({}, new graphql__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Subscription timeout \" + JSON.stringify({\n query: query,\n variables: variables,\n }))),\n ],\n });\n // Cleanup will be automatically executed\n observer.complete();\n }\n logger.debug('timeoutStartSubscription', JSON.stringify({ query: query, variables: variables }));\n }\n };\n AWSAppSyncRealTimeProvider.prototype._initializeWebSocketConnection = function (_a) {\n var _this = this;\n var appSyncGraphqlEndpoint = _a.appSyncGraphqlEndpoint, authenticationType = _a.authenticationType, apiKey = _a.apiKey, region = _a.region, additionalHeaders = _a.additionalHeaders;\n if (this.socketStatus === _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].READY) {\n return;\n }\n return new Promise(function (res, rej) { return __awaiter(_this, void 0, void 0, function () {\n var payloadString, headerString, _a, _b, headerQs, payloadQs, discoverableEndpoint, protocol, awsRealTimeUrl, err_3;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n this.promiseArray.push({ res: res, rej: rej });\n if (!(this.socketStatus === _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].CLOSED)) return [3 /*break*/, 5];\n _c.label = 1;\n case 1:\n _c.trys.push([1, 4, , 5]);\n this.socketStatus = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].CONNECTING;\n payloadString = '{}';\n _b = (_a = JSON).stringify;\n return [4 /*yield*/, this._awsRealTimeHeaderBasedAuth({\n authenticationType: authenticationType,\n payload: payloadString,\n canonicalUri: '/connect',\n apiKey: apiKey,\n appSyncGraphqlEndpoint: appSyncGraphqlEndpoint,\n region: region,\n additionalHeaders: additionalHeaders,\n })];\n case 2:\n headerString = _b.apply(_a, [_c.sent()]);\n headerQs = buffer__WEBPACK_IMPORTED_MODULE_4__[\"Buffer\"].from(headerString).toString('base64');\n payloadQs = buffer__WEBPACK_IMPORTED_MODULE_4__[\"Buffer\"].from(payloadString).toString('base64');\n discoverableEndpoint = appSyncGraphqlEndpoint !== null && appSyncGraphqlEndpoint !== void 0 ? appSyncGraphqlEndpoint : '';\n if (this.isCustomDomain(discoverableEndpoint)) {\n discoverableEndpoint =\n discoverableEndpoint.concat(customDomainPath);\n }\n else {\n discoverableEndpoint = discoverableEndpoint\n .replace('appsync-api', 'appsync-realtime-api')\n .replace('gogi-beta', 'grt-beta');\n }\n protocol = this.isSSLEnabled ? 'wss://' : 'ws://';\n discoverableEndpoint = discoverableEndpoint\n .replace('https://', protocol)\n .replace('http://', protocol);\n awsRealTimeUrl = discoverableEndpoint + \"?header=\" + headerQs + \"&payload=\" + payloadQs;\n return [4 /*yield*/, this._initializeRetryableHandshake(awsRealTimeUrl)];\n case 3:\n _c.sent();\n this.promiseArray.forEach(function (_a) {\n var res = _a.res;\n logger.debug('Notifying connection successful');\n res();\n });\n this.socketStatus = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].READY;\n this.promiseArray = [];\n return [3 /*break*/, 5];\n case 4:\n err_3 = _c.sent();\n this.promiseArray.forEach(function (_a) {\n var rej = _a.rej;\n return rej(err_3);\n });\n this.promiseArray = [];\n if (this.awsRealTimeSocket &&\n this.awsRealTimeSocket.readyState === WebSocket.OPEN) {\n this.awsRealTimeSocket.close(3001);\n }\n this.awsRealTimeSocket = undefined;\n this.socketStatus = _constants__WEBPACK_IMPORTED_MODULE_10__[\"SOCKET_STATUS\"].CLOSED;\n return [3 /*break*/, 5];\n case 5: return [2 /*return*/];\n }\n });\n }); });\n };\n AWSAppSyncRealTimeProvider.prototype._initializeRetryableHandshake = function (awsRealTimeUrl) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n logger.debug(\"Initializaling retryable Handshake\");\n return [4 /*yield*/, Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"jitteredExponentialRetry\"])(this._initializeHandshake.bind(this), [awsRealTimeUrl], _constants__WEBPACK_IMPORTED_MODULE_10__[\"MAX_DELAY_MS\"])];\n case 1:\n _a.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n AWSAppSyncRealTimeProvider.prototype._initializeHandshake = function (awsRealTimeUrl) {\n return __awaiter(this, void 0, void 0, function () {\n var err_4, _a, errorType, errorCode;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n logger.debug(\"Initializing handshake \" + awsRealTimeUrl);\n _b.label = 1;\n case 1:\n _b.trys.push([1, 4, , 5]);\n return [4 /*yield*/, (function () {\n return new Promise(function (res, rej) {\n var newSocket = _this.getNewWebSocket(awsRealTimeUrl, 'graphql-ws');\n newSocket.onerror = function () {\n logger.debug(\"WebSocket connection error\");\n };\n newSocket.onclose = function () {\n _this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].CONNECTION_FAILED);\n rej(new Error('Connection handshake error'));\n };\n newSocket.onopen = function () {\n _this.awsRealTimeSocket = newSocket;\n return res();\n };\n });\n })()];\n case 2:\n _b.sent();\n // Step 2: wait for ack from AWS AppSyncReaTime after sending init\n return [4 /*yield*/, (function () {\n return new Promise(function (res, rej) {\n if (_this.awsRealTimeSocket) {\n var ackOk_1 = false;\n _this.awsRealTimeSocket.onerror = function (error) {\n logger.debug(\"WebSocket error \" + JSON.stringify(error));\n };\n _this.awsRealTimeSocket.onclose = function (event) {\n logger.debug(\"WebSocket closed \" + event.reason);\n rej(new Error(JSON.stringify(event)));\n };\n _this.awsRealTimeSocket.onmessage = function (message) {\n logger.debug(\"subscription message from AWS AppSyncRealTime: \" + message.data + \" \");\n var data = JSON.parse(message.data);\n var type = data.type, _a = data.payload, _b = (_a === void 0 ? {} : _a).connectionTimeoutMs, connectionTimeoutMs = _b === void 0 ? _constants__WEBPACK_IMPORTED_MODULE_10__[\"DEFAULT_KEEP_ALIVE_TIMEOUT\"] : _b;\n if (type === _constants__WEBPACK_IMPORTED_MODULE_10__[\"MESSAGE_TYPES\"].GQL_CONNECTION_ACK) {\n ackOk_1 = true;\n if (_this.awsRealTimeSocket) {\n _this.keepAliveTimeout = connectionTimeoutMs;\n _this.awsRealTimeSocket.onmessage =\n _this._handleIncomingSubscriptionMessage.bind(_this);\n _this.awsRealTimeSocket.onerror = function (err) {\n logger.debug(err);\n _this._errorDisconnect(_types_PubSub__WEBPACK_IMPORTED_MODULE_9__[\"CONTROL_MSG\"].CONNECTION_CLOSED);\n };\n _this.awsRealTimeSocket.onclose = function (event) {\n logger.debug(\"WebSocket closed \" + event.reason);\n _this._errorDisconnect(_types_PubSub__WEBPACK_IMPORTED_MODULE_9__[\"CONTROL_MSG\"].CONNECTION_CLOSED);\n };\n }\n res('Cool, connected to AWS AppSyncRealTime');\n return;\n }\n if (type === _constants__WEBPACK_IMPORTED_MODULE_10__[\"MESSAGE_TYPES\"].GQL_CONNECTION_ERROR) {\n var _c = data.payload, _d = (_c === void 0 ? {} : _c).errors, _e = __read(_d === void 0 ? [] : _d, 1), _f = _e[0], _g = _f === void 0 ? {} : _f, _h = _g.errorType, errorType = _h === void 0 ? '' : _h, _j = _g.errorCode, errorCode = _j === void 0 ? 0 : _j;\n rej({ errorType: errorType, errorCode: errorCode });\n }\n };\n var gqlInit = {\n type: _constants__WEBPACK_IMPORTED_MODULE_10__[\"MESSAGE_TYPES\"].GQL_CONNECTION_INIT,\n };\n _this.awsRealTimeSocket.send(JSON.stringify(gqlInit));\n var checkAckOk_1 = function (ackOk) {\n if (!ackOk) {\n _this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_11__[\"CONNECTION_CHANGE\"].CONNECTION_FAILED);\n rej(new Error(\"Connection timeout: ack from AWSAppSyncRealTime was not received after \" + _constants__WEBPACK_IMPORTED_MODULE_10__[\"CONNECTION_INIT_TIMEOUT\"] + \" ms\"));\n }\n };\n setTimeout(function () { return checkAckOk_1(ackOk_1); }, _constants__WEBPACK_IMPORTED_MODULE_10__[\"CONNECTION_INIT_TIMEOUT\"]);\n }\n });\n })()];\n case 3:\n // Step 2: wait for ack from AWS AppSyncReaTime after sending init\n _b.sent();\n return [3 /*break*/, 5];\n case 4:\n err_4 = _b.sent();\n _a = err_4, errorType = _a.errorType, errorCode = _a.errorCode;\n if (_constants__WEBPACK_IMPORTED_MODULE_10__[\"NON_RETRYABLE_CODES\"].includes(errorCode)) {\n throw new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"NonRetryableError\"](errorType);\n }\n else if (errorType) {\n throw new Error(errorType);\n }\n else {\n throw err_4;\n }\n return [3 /*break*/, 5];\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSAppSyncRealTimeProvider.prototype._awsRealTimeHeaderBasedAuth = function (_a) {\n var authenticationType = _a.authenticationType, payload = _a.payload, canonicalUri = _a.canonicalUri, appSyncGraphqlEndpoint = _a.appSyncGraphqlEndpoint, apiKey = _a.apiKey, region = _a.region, additionalHeaders = _a.additionalHeaders;\n return __awaiter(this, void 0, void 0, function () {\n var headerHandler, handler, host, result;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n headerHandler = {\n API_KEY: this._awsRealTimeApiKeyHeader.bind(this),\n AWS_IAM: this._awsRealTimeIAMHeader.bind(this),\n OPENID_CONNECT: this._awsRealTimeOPENIDHeader.bind(this),\n AMAZON_COGNITO_USER_POOLS: this._awsRealTimeCUPHeader.bind(this),\n AWS_LAMBDA: this._customAuthHeader,\n };\n if (!(!authenticationType || !headerHandler[authenticationType])) return [3 /*break*/, 1];\n logger.debug(\"Authentication type \" + authenticationType + \" not supported\");\n return [2 /*return*/, ''];\n case 1:\n handler = headerHandler[authenticationType];\n host = url__WEBPACK_IMPORTED_MODULE_2__[\"parse\"](appSyncGraphqlEndpoint !== null && appSyncGraphqlEndpoint !== void 0 ? appSyncGraphqlEndpoint : '').host;\n logger.debug(\"Authenticating with \" + authenticationType);\n return [4 /*yield*/, handler({\n payload: payload,\n canonicalUri: canonicalUri,\n appSyncGraphqlEndpoint: appSyncGraphqlEndpoint,\n apiKey: apiKey,\n region: region,\n host: host,\n additionalHeaders: additionalHeaders,\n })];\n case 2:\n result = _b.sent();\n return [2 /*return*/, result];\n }\n });\n });\n };\n AWSAppSyncRealTimeProvider.prototype._awsRealTimeCUPHeader = function (_a) {\n var host = _a.host;\n return __awaiter(this, void 0, void 0, function () {\n var session;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_7__[\"default\"].currentSession()];\n case 1:\n session = _b.sent();\n return [2 /*return*/, {\n Authorization: session.getAccessToken().getJwtToken(),\n host: host,\n }];\n }\n });\n });\n };\n AWSAppSyncRealTimeProvider.prototype._awsRealTimeOPENIDHeader = function (_a) {\n var host = _a.host;\n return __awaiter(this, void 0, void 0, function () {\n var token, federatedInfo, currentUser;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_6__[\"default\"].getItem('federatedInfo')];\n case 1:\n federatedInfo = _b.sent();\n if (!federatedInfo) return [3 /*break*/, 2];\n token = federatedInfo.token;\n return [3 /*break*/, 4];\n case 2: return [4 /*yield*/, _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_7__[\"default\"].currentAuthenticatedUser()];\n case 3:\n currentUser = _b.sent();\n if (currentUser) {\n token = currentUser.token;\n }\n _b.label = 4;\n case 4:\n if (!token) {\n throw new Error('No federated jwt');\n }\n return [2 /*return*/, {\n Authorization: token,\n host: host,\n }];\n }\n });\n });\n };\n AWSAppSyncRealTimeProvider.prototype._awsRealTimeApiKeyHeader = function (_a) {\n var apiKey = _a.apiKey, host = _a.host;\n return __awaiter(this, void 0, void 0, function () {\n var dt, dtStr;\n return __generator(this, function (_b) {\n dt = new Date();\n dtStr = dt.toISOString().replace(/[:\\-]|\\.\\d{3}/g, '');\n return [2 /*return*/, {\n host: host,\n 'x-amz-date': dtStr,\n 'x-api-key': apiKey,\n }];\n });\n });\n };\n AWSAppSyncRealTimeProvider.prototype._awsRealTimeIAMHeader = function (_a) {\n var payload = _a.payload, canonicalUri = _a.canonicalUri, appSyncGraphqlEndpoint = _a.appSyncGraphqlEndpoint, region = _a.region;\n return __awaiter(this, void 0, void 0, function () {\n var endpointInfo, credentialsOK, creds, request, signed_params;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n endpointInfo = {\n region: region,\n service: 'appsync',\n };\n return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _b.sent();\n if (!credentialsOK) {\n throw new Error('No credentials');\n }\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"Credentials\"].get().then(function (credentials) {\n var _a = credentials, secretAccessKey = _a.secretAccessKey, accessKeyId = _a.accessKeyId, sessionToken = _a.sessionToken;\n return {\n secret_key: secretAccessKey,\n access_key: accessKeyId,\n session_token: sessionToken,\n };\n })];\n case 2:\n creds = _b.sent();\n request = {\n url: \"\" + appSyncGraphqlEndpoint + canonicalUri,\n data: payload,\n method: 'POST',\n headers: __assign({}, _constants__WEBPACK_IMPORTED_MODULE_10__[\"AWS_APPSYNC_REALTIME_HEADERS\"]),\n };\n signed_params = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"Signer\"].sign(request, creds, endpointInfo);\n return [2 /*return*/, signed_params.headers];\n }\n });\n });\n };\n AWSAppSyncRealTimeProvider.prototype._customAuthHeader = function (_a) {\n var host = _a.host, additionalHeaders = _a.additionalHeaders;\n if (!additionalHeaders || !additionalHeaders['Authorization']) {\n throw new Error('No auth token specified');\n }\n return {\n Authorization: additionalHeaders.Authorization,\n host: host,\n };\n };\n /**\n * @private\n */\n AWSAppSyncRealTimeProvider.prototype._ensureCredentials = function () {\n return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"Credentials\"].get()\n .then(function (credentials) {\n if (!credentials)\n return false;\n var cred = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_5__[\"Credentials\"].shear(credentials);\n logger.debug('set credentials for AWSAppSyncRealTimeProvider', cred);\n return true;\n })\n .catch(function (err) {\n logger.warn('ensure credentials error', err);\n return false;\n });\n };\n return AWSAppSyncRealTimeProvider;\n}(_PubSubProvider__WEBPACK_IMPORTED_MODULE_8__[\"AbstractPubSubProvider\"]));\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSAppSyncRealTimeProvider/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSIotProvider.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSIotProvider.js ***! \******************************************************************************/ /*! exports provided: AWSIoTProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSIoTProvider\", function() { return AWSIoTProvider; });\n/* harmony import */ var _MqttOverWSProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./MqttOverWSProvider */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/MqttOverWSProvider.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\nvar SERVICE_NAME = 'iotdevicegateway';\nvar AWSIoTProvider = /** @class */ (function (_super) {\n __extends(AWSIoTProvider, _super);\n function AWSIoTProvider(options) {\n if (options === void 0) { options = {}; }\n return _super.call(this, options) || this;\n }\n Object.defineProperty(AWSIoTProvider.prototype, \"region\", {\n get: function () {\n return this.options.aws_pubsub_region;\n },\n enumerable: true,\n configurable: true\n });\n AWSIoTProvider.prototype.getProviderName = function () {\n return 'AWSIoTProvider';\n };\n Object.defineProperty(AWSIoTProvider.prototype, \"endpoint\", {\n get: function () {\n var _this = this;\n return (function () { return __awaiter(_this, void 0, void 0, function () {\n var endpoint, serviceInfo, _a, access_key, secret_key, session_token, result;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n endpoint = this.options.aws_pubsub_endpoint;\n serviceInfo = {\n service: SERVICE_NAME,\n region: this.region,\n };\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Credentials\"].get()];\n case 1:\n _a = _b.sent(), access_key = _a.accessKeyId, secret_key = _a.secretAccessKey, session_token = _a.sessionToken;\n result = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Signer\"].signUrl(endpoint, { access_key: access_key, secret_key: secret_key, session_token: session_token }, serviceInfo);\n return [2 /*return*/, result];\n }\n });\n }); })();\n },\n enumerable: true,\n configurable: true\n });\n return AWSIoTProvider;\n}(_MqttOverWSProvider__WEBPACK_IMPORTED_MODULE_0__[\"MqttOverWSProvider\"]));\n\n//# sourceMappingURL=AWSIotProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSIotProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/Providers/MqttOverWSProvider.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/Providers/MqttOverWSProvider.js ***! \**********************************************************************************/ /*! exports provided: mqttTopicMatch, MqttOverWSProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mqttTopicMatch\", function() { return mqttTopicMatch; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MqttOverWSProvider\", function() { return MqttOverWSProvider; });\n/* harmony import */ var paho_mqtt__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! paho-mqtt */ \"./node_modules/paho-mqtt/paho-mqtt.js\");\n/* harmony import */ var paho_mqtt__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(paho_mqtt__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! uuid */ \"./node_modules/uuid/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _PubSubProvider__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./PubSubProvider */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/PubSubProvider.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utils/ConnectionStateMonitor */ \"./node_modules/@aws-amplify/pubsub/lib-esm/utils/ConnectionStateMonitor.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/constants.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __rest = (undefined && undefined.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"ConsoleLogger\"]('MqttOverWSProvider');\nfunction mqttTopicMatch(filter, topic) {\n var filterArray = filter.split('/');\n var length = filterArray.length;\n var topicArray = topic.split('/');\n for (var i = 0; i < length; ++i) {\n var left = filterArray[i];\n var right = topicArray[i];\n if (left === '#')\n return topicArray.length >= length;\n if (left !== '+' && left !== right)\n return false;\n }\n return length === topicArray.length;\n}\nvar ClientsQueue = /** @class */ (function () {\n function ClientsQueue() {\n this.promises = new Map();\n }\n ClientsQueue.prototype.get = function (clientId, clientFactory) {\n return __awaiter(this, void 0, void 0, function () {\n var cachedPromise, newPromise;\n return __generator(this, function (_a) {\n cachedPromise = this.promises.get(clientId);\n if (cachedPromise) {\n return [2 /*return*/, cachedPromise];\n }\n if (clientFactory) {\n newPromise = clientFactory(clientId);\n this.promises.set(clientId, newPromise);\n return [2 /*return*/, newPromise];\n }\n return [2 /*return*/, undefined];\n });\n });\n };\n Object.defineProperty(ClientsQueue.prototype, \"allClients\", {\n get: function () {\n return Array.from(this.promises.keys());\n },\n enumerable: true,\n configurable: true\n });\n ClientsQueue.prototype.remove = function (clientId) {\n this.promises.delete(clientId);\n };\n return ClientsQueue;\n}());\nvar dispatchPubSubEvent = function (event, data, message) {\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_4__[\"Hub\"].dispatch('pubsub', { event: event, data: data, message: message }, 'PubSub', _constants__WEBPACK_IMPORTED_MODULE_6__[\"AMPLIFY_SYMBOL\"]);\n};\nvar topicSymbol = typeof Symbol !== 'undefined' ? Symbol('topic') : '@@topic';\nvar MqttOverWSProvider = /** @class */ (function (_super) {\n __extends(MqttOverWSProvider, _super);\n function MqttOverWSProvider(options) {\n if (options === void 0) { options = {}; }\n var _this = _super.call(this, __assign(__assign({}, options), { clientId: options.clientId || Object(uuid__WEBPACK_IMPORTED_MODULE_1__[\"v4\"])() })) || this;\n _this._clientsQueue = new ClientsQueue();\n _this.connectionStateMonitor = new _utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_5__[\"ConnectionStateMonitor\"]();\n _this._topicObservers = new Map();\n _this._clientIdObservers = new Map();\n // Monitor the connection health state and pass changes along to Hub\n _this.connectionStateMonitor.connectionStateObservable.subscribe(function (connectionStateChange) {\n dispatchPubSubEvent(_constants__WEBPACK_IMPORTED_MODULE_6__[\"CONNECTION_STATE_CHANGE\"], {\n provider: _this,\n connectionState: connectionStateChange,\n }, \"Connection state is \" + connectionStateChange);\n });\n return _this;\n }\n Object.defineProperty(MqttOverWSProvider.prototype, \"clientId\", {\n get: function () {\n return this.options.clientId;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MqttOverWSProvider.prototype, \"endpoint\", {\n get: function () {\n return this.options.aws_pubsub_endpoint;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MqttOverWSProvider.prototype, \"clientsQueue\", {\n get: function () {\n return this._clientsQueue;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MqttOverWSProvider.prototype, \"isSSLEnabled\", {\n get: function () {\n return !this.options\n .aws_appsync_dangerously_connect_to_http_endpoint_for_testing;\n },\n enumerable: true,\n configurable: true\n });\n MqttOverWSProvider.prototype.getTopicForValue = function (value) {\n return typeof value === 'object' && value[topicSymbol];\n };\n MqttOverWSProvider.prototype.getProviderName = function () {\n return 'MqttOverWSProvider';\n };\n MqttOverWSProvider.prototype.onDisconnect = function (_a) {\n var _this = this;\n var clientId = _a.clientId, errorCode = _a.errorCode, args = __rest(_a, [\"clientId\", \"errorCode\"]);\n if (errorCode !== 0) {\n logger.warn(clientId, JSON.stringify(__assign({ errorCode: errorCode }, args), null, 2));\n var topicsToDelete_1 = [];\n if (!clientId) {\n return;\n }\n var clientIdObservers = this._clientIdObservers.get(clientId);\n if (!clientIdObservers) {\n return;\n }\n clientIdObservers.forEach(function (observer) {\n observer.error('Disconnected, error code: ' + errorCode);\n // removing observers for disconnected clientId\n _this._topicObservers.forEach(function (observerForTopic, observerTopic) {\n observerForTopic.delete(observer);\n if (observerForTopic.size === 0) {\n topicsToDelete_1.push(observerTopic);\n }\n });\n });\n // forgiving any trace of clientId\n this._clientIdObservers.delete(clientId);\n // Removing topics that are not listen by an observer\n topicsToDelete_1.forEach(function (topic) {\n _this._topicObservers.delete(topic);\n });\n }\n };\n MqttOverWSProvider.prototype.newClient = function (_a) {\n var url = _a.url, clientId = _a.clientId;\n return __awaiter(this, void 0, void 0, function () {\n var client;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n logger.debug('Creating new MQTT client', clientId);\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_5__[\"CONNECTION_CHANGE\"].OPENING_CONNECTION);\n client = new paho_mqtt__WEBPACK_IMPORTED_MODULE_0__[\"Client\"](url, clientId);\n // client.trace = (args) => logger.debug(clientId, JSON.stringify(args, null, 2));\n client.onMessageArrived = function (_a) {\n var topic = _a.destinationName, msg = _a.payloadString;\n _this._onMessage(topic, msg);\n };\n client.onConnectionLost = function (_a) {\n var errorCode = _a.errorCode, args = __rest(_a, [\"errorCode\"]);\n _this.onDisconnect(__assign({ clientId: clientId, errorCode: errorCode }, args));\n _this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_5__[\"CONNECTION_CHANGE\"].CLOSED);\n };\n return [4 /*yield*/, new Promise(function (resolve, reject) {\n client.connect({\n useSSL: _this.isSSLEnabled,\n mqttVersion: 3,\n onSuccess: function () { return resolve(client); },\n onFailure: function () {\n reject();\n _this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_5__[\"CONNECTION_CHANGE\"].CONNECTION_FAILED);\n },\n });\n })];\n case 1:\n _b.sent();\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_5__[\"CONNECTION_CHANGE\"].CONNECTION_ESTABLISHED);\n return [2 /*return*/, client];\n }\n });\n });\n };\n MqttOverWSProvider.prototype.connect = function (clientId, options) {\n if (options === void 0) { options = {}; }\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.clientsQueue.get(clientId, function (clientId) {\n return _this.newClient(__assign(__assign({}, options), { clientId: clientId }));\n })];\n case 1: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n MqttOverWSProvider.prototype.disconnect = function (clientId) {\n return __awaiter(this, void 0, void 0, function () {\n var client;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.clientsQueue.get(clientId)];\n case 1:\n client = _a.sent();\n if (client && client.isConnected()) {\n client.disconnect();\n this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_5__[\"CONNECTION_CHANGE\"].CLOSED);\n }\n this.clientsQueue.remove(clientId);\n return [2 /*return*/];\n }\n });\n });\n };\n MqttOverWSProvider.prototype.publish = function (topics, msg) {\n return __awaiter(this, void 0, void 0, function () {\n var targetTopics, message, url, client;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n targetTopics = [].concat(topics);\n message = JSON.stringify(msg);\n return [4 /*yield*/, this.endpoint];\n case 1:\n url = _a.sent();\n return [4 /*yield*/, this.connect(this.clientId, { url: url })];\n case 2:\n client = _a.sent();\n logger.debug('Publishing to topic(s)', targetTopics.join(','), message);\n targetTopics.forEach(function (topic) { return client.send(topic, message); });\n return [2 /*return*/];\n }\n });\n });\n };\n MqttOverWSProvider.prototype._onMessage = function (topic, msg) {\n try {\n var matchedTopicObservers_1 = [];\n this._topicObservers.forEach(function (observerForTopic, observerTopic) {\n if (mqttTopicMatch(observerTopic, topic)) {\n matchedTopicObservers_1.push(observerForTopic);\n }\n });\n var parsedMessage_1 = JSON.parse(msg);\n if (typeof parsedMessage_1 === 'object') {\n parsedMessage_1[topicSymbol] = topic;\n }\n matchedTopicObservers_1.forEach(function (observersForTopic) {\n observersForTopic.forEach(function (observer) { return observer.next(parsedMessage_1); });\n });\n }\n catch (error) {\n logger.warn('Error handling message', error, msg);\n }\n };\n MqttOverWSProvider.prototype.subscribe = function (topics, options) {\n var _this = this;\n if (options === void 0) { options = {}; }\n var targetTopics = [].concat(topics);\n logger.debug('Subscribing to topic(s)', targetTopics.join(','));\n return new zen_observable_ts__WEBPACK_IMPORTED_MODULE_2__[\"default\"](function (observer) {\n targetTopics.forEach(function (topic) {\n // this._topicObservers is used to notify the observers according to the topic received on the message\n var observersForTopic = _this._topicObservers.get(topic);\n if (!observersForTopic) {\n observersForTopic = new Set();\n _this._topicObservers.set(topic, observersForTopic);\n }\n observersForTopic.add(observer);\n });\n // @ts-ignore\n var client;\n var _a = options.clientId, clientId = _a === void 0 ? _this.clientId : _a;\n // this._clientIdObservers is used to close observers when client gets disconnected\n var observersForClientId = _this._clientIdObservers.get(clientId);\n if (!observersForClientId) {\n observersForClientId = new Set();\n }\n observersForClientId.add(observer);\n _this._clientIdObservers.set(clientId, observersForClientId);\n (function () { return __awaiter(_this, void 0, void 0, function () {\n var _a, url, _b, e_1;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = options.url;\n if (!(_a === void 0)) return [3 /*break*/, 2];\n return [4 /*yield*/, this.endpoint];\n case 1:\n _b = _c.sent();\n return [3 /*break*/, 3];\n case 2:\n _b = _a;\n _c.label = 3;\n case 3:\n url = _b;\n _c.label = 4;\n case 4:\n _c.trys.push([4, 6, , 7]);\n return [4 /*yield*/, this.connect(clientId, { url: url })];\n case 5:\n client = _c.sent();\n targetTopics.forEach(function (topic) {\n client.subscribe(topic);\n });\n return [3 /*break*/, 7];\n case 6:\n e_1 = _c.sent();\n observer.error(e_1);\n return [3 /*break*/, 7];\n case 7: return [2 /*return*/];\n }\n });\n }); })();\n return function () {\n var _a, _b;\n logger.debug('Unsubscribing from topic(s)', targetTopics.join(','));\n if (client) {\n (_a = _this._clientIdObservers.get(clientId)) === null || _a === void 0 ? void 0 : _a.delete(observer);\n // No more observers per client => client not needed anymore\n if (((_b = _this._clientIdObservers.get(clientId)) === null || _b === void 0 ? void 0 : _b.size) === 0) {\n _this.connectionStateMonitor.record(_utils_ConnectionStateMonitor__WEBPACK_IMPORTED_MODULE_5__[\"CONNECTION_CHANGE\"].CLOSING_CONNECTION);\n _this.disconnect(clientId);\n _this._clientIdObservers.delete(clientId);\n }\n targetTopics.forEach(function (topic) {\n var observersForTopic = _this._topicObservers.get(topic) ||\n new Set();\n observersForTopic.delete(observer);\n // if no observers exists for the topic, topic should be removed\n if (observersForTopic.size === 0) {\n _this._topicObservers.delete(topic);\n if (client.isConnected()) {\n client.unsubscribe(topic);\n }\n }\n });\n }\n return null;\n };\n });\n };\n return MqttOverWSProvider;\n}(_PubSubProvider__WEBPACK_IMPORTED_MODULE_3__[\"AbstractPubSubProvider\"]));\n\n//# sourceMappingURL=MqttOverWSProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/Providers/MqttOverWSProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/Providers/PubSubProvider.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/Providers/PubSubProvider.js ***! \******************************************************************************/ /*! exports provided: AbstractPubSubProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbstractPubSubProvider\", function() { return AbstractPubSubProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AbstractPubSubProvider');\nvar AbstractPubSubProvider = /** @class */ (function () {\n function AbstractPubSubProvider(options) {\n if (options === void 0) { options = {}; }\n this._config = options;\n }\n AbstractPubSubProvider.prototype.configure = function (config) {\n if (config === void 0) { config = {}; }\n this._config = __assign(__assign({}, config), this._config);\n logger.debug(\"configure \" + this.getProviderName(), this._config);\n return this.options;\n };\n AbstractPubSubProvider.prototype.getCategory = function () {\n return 'PubSub';\n };\n Object.defineProperty(AbstractPubSubProvider.prototype, \"options\", {\n get: function () {\n return __assign({}, this._config);\n },\n enumerable: true,\n configurable: true\n });\n return AbstractPubSubProvider;\n}());\n\n//# sourceMappingURL=PubSubProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/Providers/PubSubProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/Providers/constants.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/Providers/constants.js ***! \*************************************************************************/ /*! exports provided: MAX_DELAY_MS, NON_RETRYABLE_CODES, CONNECTION_STATE_CHANGE, MESSAGE_TYPES, SUBSCRIPTION_STATUS, SOCKET_STATUS, AMPLIFY_SYMBOL, AWS_APPSYNC_REALTIME_HEADERS, CONNECTION_INIT_TIMEOUT, START_ACK_TIMEOUT, DEFAULT_KEEP_ALIVE_TIMEOUT, DEFAULT_KEEP_ALIVE_ALERT_TIMEOUT */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAX_DELAY_MS\", function() { return MAX_DELAY_MS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NON_RETRYABLE_CODES\", function() { return NON_RETRYABLE_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONNECTION_STATE_CHANGE\", function() { return CONNECTION_STATE_CHANGE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MESSAGE_TYPES\", function() { return MESSAGE_TYPES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SUBSCRIPTION_STATUS\", function() { return SUBSCRIPTION_STATUS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SOCKET_STATUS\", function() { return SOCKET_STATUS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMPLIFY_SYMBOL\", function() { return AMPLIFY_SYMBOL; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWS_APPSYNC_REALTIME_HEADERS\", function() { return AWS_APPSYNC_REALTIME_HEADERS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONNECTION_INIT_TIMEOUT\", function() { return CONNECTION_INIT_TIMEOUT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"START_ACK_TIMEOUT\", function() { return START_ACK_TIMEOUT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_KEEP_ALIVE_TIMEOUT\", function() { return DEFAULT_KEEP_ALIVE_TIMEOUT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_KEEP_ALIVE_ALERT_TIMEOUT\", function() { return DEFAULT_KEEP_ALIVE_ALERT_TIMEOUT; });\nvar MAX_DELAY_MS = 5000;\nvar NON_RETRYABLE_CODES = [400, 401, 403];\nvar CONNECTION_STATE_CHANGE = 'ConnectionStateChange';\nvar MESSAGE_TYPES;\n(function (MESSAGE_TYPES) {\n /**\n * Client -> Server message.\n * This message type is the first message after handshake and this will initialize AWS AppSync RealTime communication\n */\n MESSAGE_TYPES[\"GQL_CONNECTION_INIT\"] = \"connection_init\";\n /**\n * Server -> Client message\n * This message type is in case there is an issue with AWS AppSync RealTime when establishing connection\n */\n MESSAGE_TYPES[\"GQL_CONNECTION_ERROR\"] = \"connection_error\";\n /**\n * Server -> Client message.\n * This message type is for the ack response from AWS AppSync RealTime for GQL_CONNECTION_INIT message\n */\n MESSAGE_TYPES[\"GQL_CONNECTION_ACK\"] = \"connection_ack\";\n /**\n * Client -> Server message.\n * This message type is for register subscriptions with AWS AppSync RealTime\n */\n MESSAGE_TYPES[\"GQL_START\"] = \"start\";\n /**\n * Server -> Client message.\n * This message type is for the ack response from AWS AppSync RealTime for GQL_START message\n */\n MESSAGE_TYPES[\"GQL_START_ACK\"] = \"start_ack\";\n /**\n * Server -> Client message.\n * This message type is for subscription message from AWS AppSync RealTime\n */\n MESSAGE_TYPES[\"GQL_DATA\"] = \"data\";\n /**\n * Server -> Client message.\n * This message type helps the client to know is still receiving messages from AWS AppSync RealTime\n */\n MESSAGE_TYPES[\"GQL_CONNECTION_KEEP_ALIVE\"] = \"ka\";\n /**\n * Client -> Server message.\n * This message type is for unregister subscriptions with AWS AppSync RealTime\n */\n MESSAGE_TYPES[\"GQL_STOP\"] = \"stop\";\n /**\n * Server -> Client message.\n * This message type is for the ack response from AWS AppSync RealTime for GQL_STOP message\n */\n MESSAGE_TYPES[\"GQL_COMPLETE\"] = \"complete\";\n /**\n * Server -> Client message.\n * This message type is for sending error messages from AWS AppSync RealTime to the client\n */\n MESSAGE_TYPES[\"GQL_ERROR\"] = \"error\";\n})(MESSAGE_TYPES || (MESSAGE_TYPES = {}));\nvar SUBSCRIPTION_STATUS;\n(function (SUBSCRIPTION_STATUS) {\n SUBSCRIPTION_STATUS[SUBSCRIPTION_STATUS[\"PENDING\"] = 0] = \"PENDING\";\n SUBSCRIPTION_STATUS[SUBSCRIPTION_STATUS[\"CONNECTED\"] = 1] = \"CONNECTED\";\n SUBSCRIPTION_STATUS[SUBSCRIPTION_STATUS[\"FAILED\"] = 2] = \"FAILED\";\n})(SUBSCRIPTION_STATUS || (SUBSCRIPTION_STATUS = {}));\nvar SOCKET_STATUS;\n(function (SOCKET_STATUS) {\n SOCKET_STATUS[SOCKET_STATUS[\"CLOSED\"] = 0] = \"CLOSED\";\n SOCKET_STATUS[SOCKET_STATUS[\"READY\"] = 1] = \"READY\";\n SOCKET_STATUS[SOCKET_STATUS[\"CONNECTING\"] = 2] = \"CONNECTING\";\n})(SOCKET_STATUS || (SOCKET_STATUS = {}));\nvar AMPLIFY_SYMBOL = (typeof Symbol !== 'undefined' && typeof Symbol.for === 'function'\n ? Symbol.for('amplify_default')\n : '@@amplify_default');\nvar AWS_APPSYNC_REALTIME_HEADERS = {\n accept: 'application/json, text/javascript',\n 'content-encoding': 'amz-1.0',\n 'content-type': 'application/json; charset=UTF-8',\n};\n/**\n * Time in milleseconds to wait for GQL_CONNECTION_INIT message\n */\nvar CONNECTION_INIT_TIMEOUT = 15000;\n/**\n * Time in milleseconds to wait for GQL_START_ACK message\n */\nvar START_ACK_TIMEOUT = 15000;\n/**\n * Default Time in milleseconds to wait for GQL_CONNECTION_KEEP_ALIVE message\n */\nvar DEFAULT_KEEP_ALIVE_TIMEOUT = 5 * 60 * 1000;\n/**\n * Default Time in milleseconds to alert for missed GQL_CONNECTION_KEEP_ALIVE message\n */\nvar DEFAULT_KEEP_ALIVE_ALERT_TIMEOUT = 65 * 1000;\n//# sourceMappingURL=constants.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/Providers/constants.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/Providers/index.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/Providers/index.js ***! \*********************************************************************/ /*! exports provided: AbstractPubSubProvider, AWSAppSyncProvider, AWSAppSyncRealTimeProvider, AWSIoTProvider, mqttTopicMatch, MqttOverWSProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PubSubProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PubSubProvider */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/PubSubProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbstractPubSubProvider\", function() { return _PubSubProvider__WEBPACK_IMPORTED_MODULE_0__[\"AbstractPubSubProvider\"]; });\n\n/* harmony import */ var _AWSAppSyncProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AWSAppSyncProvider */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSAppSyncProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSAppSyncProvider\", function() { return _AWSAppSyncProvider__WEBPACK_IMPORTED_MODULE_1__[\"AWSAppSyncProvider\"]; });\n\n/* harmony import */ var _AWSAppSyncRealTimeProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AWSAppSyncRealTimeProvider */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSAppSyncRealTimeProvider/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSAppSyncRealTimeProvider\", function() { return _AWSAppSyncRealTimeProvider__WEBPACK_IMPORTED_MODULE_2__[\"AWSAppSyncRealTimeProvider\"]; });\n\n/* harmony import */ var _AWSIotProvider__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AWSIotProvider */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/AWSIotProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSIoTProvider\", function() { return _AWSIotProvider__WEBPACK_IMPORTED_MODULE_3__[\"AWSIoTProvider\"]; });\n\n/* harmony import */ var _MqttOverWSProvider__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./MqttOverWSProvider */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/MqttOverWSProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mqttTopicMatch\", function() { return _MqttOverWSProvider__WEBPACK_IMPORTED_MODULE_4__[\"mqttTopicMatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MqttOverWSProvider\", function() { return _MqttOverWSProvider__WEBPACK_IMPORTED_MODULE_4__[\"MqttOverWSProvider\"]; });\n\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/Providers/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/PubSub.js": /*!************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/PubSub.js ***! \************************************************************/ /*! exports provided: PubSubClass, PubSub */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PubSubClass\", function() { return PubSubClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PubSub\", function() { return PubSub; });\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _Providers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Providers */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/index.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n// import '../Common/Polyfills';\n\n\n\nvar isNode = Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"browserOrNode\"])().isNode;\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('PubSub');\nvar PubSubClass = /** @class */ (function () {\n /**\n * Initialize PubSub with AWS configurations\n *\n * @param {PubSubOptions} options - Configuration object for PubSub\n */\n function PubSubClass(options) {\n this._options = options !== null && options !== void 0 ? options : {};\n logger.debug('PubSub Options', this._options);\n this._pluggables = [];\n this.subscribe = this.subscribe.bind(this);\n }\n Object.defineProperty(PubSubClass.prototype, \"awsAppSyncProvider\", {\n /**\n * Lazy instantiate AWSAppSyncProvider when it is required by the API category\n */\n get: function () {\n if (!this._awsAppSyncProvider) {\n this._awsAppSyncProvider = new _Providers__WEBPACK_IMPORTED_MODULE_2__[\"AWSAppSyncProvider\"](this._options);\n }\n return this._awsAppSyncProvider;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PubSubClass.prototype, \"awsAppSyncRealTimeProvider\", {\n /**\n * Lazy instantiate AWSAppSyncRealTimeProvider when it is required by the API category\n */\n get: function () {\n if (!this._awsAppSyncRealTimeProvider) {\n this._awsAppSyncRealTimeProvider = new _Providers__WEBPACK_IMPORTED_MODULE_2__[\"AWSAppSyncRealTimeProvider\"](this._options);\n }\n return this._awsAppSyncRealTimeProvider;\n },\n enumerable: true,\n configurable: true\n });\n PubSubClass.prototype.getModuleName = function () {\n return 'PubSub';\n };\n /**\n * Configure PubSub part with configurations\n *\n * @param {PubSubOptions} config - Configuration for PubSub\n * @return {Object} - The current configuration\n */\n PubSubClass.prototype.configure = function (options) {\n var _this = this;\n var opt = options ? options.PubSub || options : {};\n logger.debug('configure PubSub', { opt: opt });\n this._options = Object.assign({}, this._options, opt);\n this._pluggables.map(function (pluggable) { return pluggable.configure(_this._options); });\n return this._options;\n };\n /**\n * add plugin into Analytics category\n * @param {Object} pluggable - an instance of the plugin\n */\n PubSubClass.prototype.addPluggable = function (pluggable) {\n return __awaiter(this, void 0, void 0, function () {\n var config;\n return __generator(this, function (_a) {\n if (pluggable && pluggable.getCategory() === 'PubSub') {\n this._pluggables.push(pluggable);\n config = pluggable.configure(this._options);\n return [2 /*return*/, config];\n }\n return [2 /*return*/];\n });\n });\n };\n /**\n * remove plugin from PubSub category\n * @param providerName - the name of the plugin\n */\n PubSubClass.prototype.removePluggable = function (providerName) {\n this._pluggables = this._pluggables.filter(function (pluggable) { return pluggable.getProviderName() !== providerName; });\n };\n PubSubClass.prototype.getProviderByName = function (providerName) {\n if (providerName === _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER\"]) {\n return this.awsAppSyncProvider;\n }\n if (providerName === _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER\"]) {\n return this.awsAppSyncRealTimeProvider;\n }\n return this._pluggables.find(function (pluggable) { return pluggable.getProviderName() === providerName; });\n };\n PubSubClass.prototype.getProviders = function (options) {\n if (options === void 0) { options = {}; }\n var providerName = options.provider;\n if (!providerName) {\n return this._pluggables;\n }\n var provider = this.getProviderByName(providerName);\n if (!provider) {\n throw new Error(\"Could not find provider named \" + providerName);\n }\n return [provider];\n };\n PubSubClass.prototype.publish = function (topics, msg, options) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, Promise.all(this.getProviders(options).map(function (provider) {\n return provider.publish(topics, msg, options);\n }))];\n });\n });\n };\n PubSubClass.prototype.subscribe = function (topics, options) {\n if (isNode && this._options && this._options.ssr) {\n throw new Error('Subscriptions are not supported for Server-Side Rendering (SSR)');\n }\n logger.debug('subscribe options', options);\n var providers = this.getProviders(options);\n return new zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__[\"default\"](function (observer) {\n var observables = providers.map(function (provider) { return ({\n provider: provider,\n observable: provider.subscribe(topics, options),\n }); });\n var subscriptions = observables.map(function (_a) {\n var provider = _a.provider, observable = _a.observable;\n return observable.subscribe({\n start: console.error,\n next: function (value) { return observer.next({ provider: provider, value: value }); },\n error: function (error) { return observer.error({ provider: provider, error: error }); },\n });\n });\n return function () {\n return subscriptions.forEach(function (subscription) { return subscription.unsubscribe(); });\n };\n });\n };\n return PubSubClass;\n}());\n\nvar PubSub = new PubSubClass();\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Amplify\"].register(PubSub);\n//# sourceMappingURL=PubSub.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/PubSub.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/index.js": /*!***********************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/index.js ***! \***********************************************************/ /*! exports provided: AbstractPubSubProvider, AWSAppSyncProvider, AWSAppSyncRealTimeProvider, AWSIoTProvider, mqttTopicMatch, MqttOverWSProvider, CONNECTION_STATE_CHANGE, ConnectionState, CONTROL_MSG, PubSub, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PubSub__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PubSub */ \"./node_modules/@aws-amplify/pubsub/lib-esm/PubSub.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PubSub\", function() { return _PubSub__WEBPACK_IMPORTED_MODULE_0__[\"PubSub\"]; });\n\n/* harmony import */ var _Providers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Providers */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbstractPubSubProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AbstractPubSubProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSAppSyncProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AWSAppSyncProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSAppSyncRealTimeProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AWSAppSyncRealTimeProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSIoTProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"AWSIoTProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mqttTopicMatch\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"mqttTopicMatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MqttOverWSProvider\", function() { return _Providers__WEBPACK_IMPORTED_MODULE_1__[\"MqttOverWSProvider\"]; });\n\n/* harmony import */ var _Providers_constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Providers/constants */ \"./node_modules/@aws-amplify/pubsub/lib-esm/Providers/constants.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONNECTION_STATE_CHANGE\", function() { return _Providers_constants__WEBPACK_IMPORTED_MODULE_2__[\"CONNECTION_STATE_CHANGE\"]; });\n\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-amplify/pubsub/lib-esm/types/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConnectionState\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"ConnectionState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONTROL_MSG\", function() { return _types__WEBPACK_IMPORTED_MODULE_3__[\"CONTROL_MSG\"]; });\n\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_PubSub__WEBPACK_IMPORTED_MODULE_0__[\"PubSub\"]);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/types/PubSub.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/types/PubSub.js ***! \******************************************************************/ /*! exports provided: CONTROL_MSG, ConnectionState */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONTROL_MSG\", function() { return CONTROL_MSG; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConnectionState\", function() { return ConnectionState; });\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar CONTROL_MSG;\n(function (CONTROL_MSG) {\n CONTROL_MSG[\"CONNECTION_CLOSED\"] = \"Connection closed\";\n CONTROL_MSG[\"CONNECTION_FAILED\"] = \"Connection failed\";\n CONTROL_MSG[\"REALTIME_SUBSCRIPTION_INIT_ERROR\"] = \"AppSync Realtime subscription init error\";\n CONTROL_MSG[\"SUBSCRIPTION_ACK\"] = \"Subscription ack\";\n CONTROL_MSG[\"TIMEOUT_DISCONNECT\"] = \"Timeout disconnect\";\n})(CONTROL_MSG || (CONTROL_MSG = {}));\n/** @enum {string} */\nvar ConnectionState;\n(function (ConnectionState) {\n /*\n * The connection is alive and healthy\n */\n ConnectionState[\"Connected\"] = \"Connected\";\n /*\n * The connection is alive, but the connection is offline\n */\n ConnectionState[\"ConnectedPendingNetwork\"] = \"ConnectedPendingNetwork\";\n /*\n * The connection has been disconnected while in use\n */\n ConnectionState[\"ConnectionDisrupted\"] = \"ConnectionDisrupted\";\n /*\n * The connection has been disconnected and the network is offline\n */\n ConnectionState[\"ConnectionDisruptedPendingNetwork\"] = \"ConnectionDisruptedPendingNetwork\";\n /*\n * The connection is in the process of connecting\n */\n ConnectionState[\"Connecting\"] = \"Connecting\";\n /*\n * The connection is not in use and is being disconnected\n */\n ConnectionState[\"ConnectedPendingDisconnect\"] = \"ConnectedPendingDisconnect\";\n /*\n * The connection is not in use and has been disconnected\n */\n ConnectionState[\"Disconnected\"] = \"Disconnected\";\n /*\n * The connection is alive, but a keep alive message has been missed\n */\n ConnectionState[\"ConnectedPendingKeepAlive\"] = \"ConnectedPendingKeepAlive\";\n})(ConnectionState || (ConnectionState = {}));\n//# sourceMappingURL=PubSub.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/types/PubSub.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/types/index.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/types/index.js ***! \*****************************************************************/ /*! exports provided: CONTROL_MSG, ConnectionState */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PubSub__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PubSub */ \"./node_modules/@aws-amplify/pubsub/lib-esm/types/PubSub.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONTROL_MSG\", function() { return _PubSub__WEBPACK_IMPORTED_MODULE_0__[\"CONTROL_MSG\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConnectionState\", function() { return _PubSub__WEBPACK_IMPORTED_MODULE_0__[\"ConnectionState\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/types/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/utils/ConnectionStateMonitor.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/utils/ConnectionStateMonitor.js ***! \**********************************************************************************/ /*! exports provided: CONNECTION_CHANGE, ConnectionStateMonitor */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONNECTION_CHANGE\", function() { return CONNECTION_CHANGE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConnectionStateMonitor\", function() { return ConnectionStateMonitor; });\n/* harmony import */ var zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! zen-observable-ts */ \"./node_modules/zen-observable-ts/lib/bundle.esm.js\");\n/* harmony import */ var _types_PubSub__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../types/PubSub */ \"./node_modules/@aws-amplify/pubsub/lib-esm/types/PubSub.js\");\n/* harmony import */ var _ReachabilityMonitor__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ReachabilityMonitor */ \"./node_modules/@aws-amplify/pubsub/lib-esm/utils/ReachabilityMonitor/index.js\");\n/*\n * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n\n\n\nvar CONNECTION_CHANGE = {\n KEEP_ALIVE_MISSED: { keepAliveState: 'unhealthy' },\n KEEP_ALIVE: { keepAliveState: 'healthy' },\n CONNECTION_ESTABLISHED: { connectionState: 'connected' },\n CONNECTION_FAILED: {\n intendedConnectionState: 'disconnected',\n connectionState: 'disconnected',\n },\n CLOSING_CONNECTION: { intendedConnectionState: 'disconnected' },\n OPENING_CONNECTION: {\n intendedConnectionState: 'connected',\n connectionState: 'connecting',\n },\n CLOSED: { connectionState: 'disconnected' },\n ONLINE: { networkState: 'connected' },\n OFFLINE: { networkState: 'disconnected' },\n};\nvar ConnectionStateMonitor = /** @class */ (function () {\n function ConnectionStateMonitor() {\n var _this = this;\n this._networkMonitoringSubscription = undefined;\n this._linkedConnectionState = {\n networkState: 'connected',\n connectionState: 'disconnected',\n intendedConnectionState: 'disconnected',\n keepAliveState: 'healthy',\n };\n this._linkedConnectionStateObservable =\n new zen_observable_ts__WEBPACK_IMPORTED_MODULE_0__[\"default\"](function (connectionStateObserver) {\n connectionStateObserver.next(_this._linkedConnectionState);\n _this._linkedConnectionStateObserver = connectionStateObserver;\n });\n }\n /**\n * Turn network state monitoring on if it isn't on already\n */\n ConnectionStateMonitor.prototype.enableNetworkMonitoring = function () {\n var _this = this;\n // Maintain the network state based on the reachability monitor\n if (this._networkMonitoringSubscription === undefined) {\n this._networkMonitoringSubscription = Object(_ReachabilityMonitor__WEBPACK_IMPORTED_MODULE_2__[\"ReachabilityMonitor\"])().subscribe(function (_a) {\n var online = _a.online;\n _this.record(online ? CONNECTION_CHANGE.ONLINE : CONNECTION_CHANGE.OFFLINE);\n });\n }\n };\n /**\n * Turn network state monitoring off if it isn't off already\n */\n ConnectionStateMonitor.prototype.disableNetworkMonitoring = function () {\n var _a;\n (_a = this._networkMonitoringSubscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();\n this._networkMonitoringSubscription = undefined;\n };\n Object.defineProperty(ConnectionStateMonitor.prototype, \"connectionStateObservable\", {\n /**\n * Get the observable that allows us to monitor the connection state\n *\n * @returns {Observable} - The observable that emits ConnectionState updates\n */\n get: function () {\n var _this = this;\n var previous;\n // The linked state aggregates state changes to any of the network, connection,\n // intendedConnection and keepAliveHealth. Some states will change these independent\n // states without changing the overall connection state.\n // After translating from linked states to ConnectionState, then remove any duplicates\n return this._linkedConnectionStateObservable\n .map(function (value) {\n return _this.connectionStatesTranslator(value);\n })\n .filter(function (current) {\n var toInclude = current !== previous;\n previous = current;\n return toInclude;\n });\n },\n enumerable: true,\n configurable: true\n });\n /*\n * Updates local connection state and emits the full state to the observer.\n */\n ConnectionStateMonitor.prototype.record = function (statusUpdates) {\n // Maintain the network monitor\n if (statusUpdates.intendedConnectionState === 'connected') {\n this.enableNetworkMonitoring();\n }\n else if (statusUpdates.intendedConnectionState === 'disconnected') {\n this.disableNetworkMonitoring();\n }\n // Maintain the socket state\n var newSocketStatus = __assign(__assign({}, this._linkedConnectionState), statusUpdates);\n this._linkedConnectionState = __assign({}, newSocketStatus);\n this._linkedConnectionStateObserver.next(this._linkedConnectionState);\n };\n /*\n * Translate the ConnectionState structure into a specific ConnectionState string literal union\n */\n ConnectionStateMonitor.prototype.connectionStatesTranslator = function (_a) {\n var connectionState = _a.connectionState, networkState = _a.networkState, intendedConnectionState = _a.intendedConnectionState, keepAliveState = _a.keepAliveState;\n if (connectionState === 'connected' && networkState === 'disconnected')\n return _types_PubSub__WEBPACK_IMPORTED_MODULE_1__[\"ConnectionState\"].ConnectedPendingNetwork;\n if (connectionState === 'connected' &&\n intendedConnectionState === 'disconnected')\n return _types_PubSub__WEBPACK_IMPORTED_MODULE_1__[\"ConnectionState\"].ConnectedPendingDisconnect;\n if (connectionState === 'disconnected' &&\n intendedConnectionState === 'connected' &&\n networkState === 'disconnected')\n return _types_PubSub__WEBPACK_IMPORTED_MODULE_1__[\"ConnectionState\"].ConnectionDisruptedPendingNetwork;\n if (connectionState === 'disconnected' &&\n intendedConnectionState === 'connected')\n return _types_PubSub__WEBPACK_IMPORTED_MODULE_1__[\"ConnectionState\"].ConnectionDisrupted;\n if (connectionState === 'connected' && keepAliveState === 'unhealthy')\n return _types_PubSub__WEBPACK_IMPORTED_MODULE_1__[\"ConnectionState\"].ConnectedPendingKeepAlive;\n // All remaining states directly correspond to the connection state\n if (connectionState === 'connecting')\n return _types_PubSub__WEBPACK_IMPORTED_MODULE_1__[\"ConnectionState\"].Connecting;\n if (connectionState === 'disconnected')\n return _types_PubSub__WEBPACK_IMPORTED_MODULE_1__[\"ConnectionState\"].Disconnected;\n return _types_PubSub__WEBPACK_IMPORTED_MODULE_1__[\"ConnectionState\"].Connected;\n };\n return ConnectionStateMonitor;\n}());\n\n//# sourceMappingURL=ConnectionStateMonitor.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/utils/ConnectionStateMonitor.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/pubsub/lib-esm/utils/ReachabilityMonitor/index.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-amplify/pubsub/lib-esm/utils/ReachabilityMonitor/index.js ***! \*************************************************************************************/ /*! exports provided: ReachabilityMonitor */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReachabilityMonitor\", function() { return ReachabilityMonitor; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n\nvar ReachabilityMonitor = function () { return new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Reachability\"]().networkMonitor(); };\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/pubsub/lib-esm/utils/ReachabilityMonitor/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/Storage.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/Storage.js ***! \**************************************************************/ /*! exports provided: Storage, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Storage\", function() { return Storage; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _providers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./providers */ \"./node_modules/@aws-amplify/storage/lib-esm/providers/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! axios */ \"./node_modules/@aws-amplify/storage/node_modules/axios/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _providers_AWSS3UploadTask__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./providers/AWSS3UploadTask */ \"./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3UploadTask.js\");\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('StorageClass');\nvar DEFAULT_PROVIDER = 'AWSS3';\n/**\n * Provide storage methods to use AWS S3\n */\nvar Storage = /** @class */ (function () {\n /**\n * Initialize Storage\n * @param {Object} config - Configuration object for storage\n */\n function Storage() {\n this._config = {};\n this._pluggables = [];\n this._cancelTokenSourceMap = new WeakMap();\n logger.debug('Storage Options', this._config);\n this.get = this.get.bind(this);\n this.put = this.put.bind(this);\n this.remove = this.remove.bind(this);\n this.list = this.list.bind(this);\n }\n Storage.prototype.getModuleName = function () {\n return 'Storage';\n };\n /**\n * add plugin into Storage category\n * @param {Object} pluggable - an instance of the plugin\n */\n Storage.prototype.addPluggable = function (pluggable) {\n if (pluggable && pluggable.getCategory() === 'Storage') {\n this._pluggables.push(pluggable);\n var config = {};\n config = pluggable.configure(this._config[pluggable.getProviderName()]);\n return config;\n }\n };\n /**\n * Get the plugin object\n * @param providerName - the name of the plugin\n */\n Storage.prototype.getPluggable = function (providerName) {\n var pluggable = this._pluggables.find(function (pluggable) { return pluggable.getProviderName() === providerName; });\n if (pluggable === undefined) {\n logger.debug('No plugin found with providerName', providerName);\n return null;\n }\n else\n return pluggable;\n };\n /**\n * Remove the plugin object\n * @param providerName - the name of the plugin\n */\n Storage.prototype.removePluggable = function (providerName) {\n this._pluggables = this._pluggables.filter(function (pluggable) { return pluggable.getProviderName() !== providerName; });\n return;\n };\n /**\n * Configure Storage\n * @param {Object} config - Configuration object for storage\n * @return {Object} - Current configuration\n */\n Storage.prototype.configure = function (config) {\n var _this = this;\n logger.debug('configure Storage');\n if (!config)\n return this._config;\n var amplifyConfig = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Parser\"].parseMobilehubConfig(config);\n var storageKeysFromConfig = Object.keys(amplifyConfig.Storage);\n var storageArrayKeys = [\n 'bucket',\n 'region',\n 'level',\n 'track',\n 'customPrefix',\n 'serverSideEncryption',\n 'SSECustomerAlgorithm',\n 'SSECustomerKey',\n 'SSECustomerKeyMD5',\n 'SSEKMSKeyId',\n ];\n var isInStorageArrayKeys = function (k) {\n return storageArrayKeys.some(function (x) { return x === k; });\n };\n var checkConfigKeysFromArray = function (k) {\n return k.find(function (k) { return isInStorageArrayKeys(k); });\n };\n if (storageKeysFromConfig &&\n checkConfigKeysFromArray(storageKeysFromConfig) &&\n !amplifyConfig.Storage[DEFAULT_PROVIDER]) {\n amplifyConfig.Storage[DEFAULT_PROVIDER] = {};\n }\n Object.entries(amplifyConfig.Storage).map(function (_a) {\n var _b = __read(_a, 2), key = _b[0], value = _b[1];\n if (key && isInStorageArrayKeys(key) && value !== undefined) {\n amplifyConfig.Storage[DEFAULT_PROVIDER][key] = value;\n delete amplifyConfig.Storage[key];\n }\n });\n // only update new values for each provider\n Object.keys(amplifyConfig.Storage).forEach(function (providerName) {\n if (typeof amplifyConfig.Storage[providerName] !== 'string') {\n _this._config[providerName] = __assign(__assign({}, _this._config[providerName]), amplifyConfig.Storage[providerName]);\n }\n });\n this._pluggables.forEach(function (pluggable) {\n pluggable.configure(_this._config[pluggable.getProviderName()]);\n });\n if (this._pluggables.length === 0) {\n this.addPluggable(new _providers__WEBPACK_IMPORTED_MODULE_1__[\"AWSS3Provider\"]());\n }\n return this._config;\n };\n Storage.prototype.getCancellableTokenSource = function () {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.CancelToken.source();\n };\n Storage.prototype.updateRequestToBeCancellable = function (request, cancelTokenSource) {\n this._cancelTokenSourceMap.set(request, cancelTokenSource);\n };\n Storage.prototype.isUploadTask = function (x) {\n return (typeof x !== 'undefined' &&\n typeof x['pause'] === 'function' &&\n typeof x['resume'] === 'function');\n };\n Storage.prototype.cancel = function (request, message) {\n if (request instanceof _providers_AWSS3UploadTask__WEBPACK_IMPORTED_MODULE_3__[\"AWSS3UploadTask\"]) {\n return request._cancel();\n }\n var cancelTokenSource = this._cancelTokenSourceMap.get(request);\n if (cancelTokenSource) {\n cancelTokenSource.cancel(message);\n }\n else {\n logger.debug('The request does not map to any cancel token');\n }\n };\n Storage.prototype.copy = function (src, dest, config) {\n var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;\n var prov = this._pluggables.find(function (pluggable) { return pluggable.getProviderName() === provider; });\n if (prov === undefined) {\n logger.debug('No plugin found with providerName', provider);\n return Promise.reject('No plugin found in Storage for the provider');\n }\n var cancelTokenSource = this.getCancellableTokenSource();\n if (typeof prov.copy !== 'function') {\n return Promise.reject(\".copy is not implemented on provider \" + prov.getProviderName());\n }\n var responsePromise = prov.copy(src, dest, __assign(__assign({}, config), { cancelTokenSource: cancelTokenSource }));\n this.updateRequestToBeCancellable(responsePromise, cancelTokenSource);\n return responsePromise;\n };\n Storage.prototype.get = function (key, config) {\n var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;\n var prov = this._pluggables.find(function (pluggable) { return pluggable.getProviderName() === provider; });\n if (prov === undefined) {\n logger.debug('No plugin found with providerName', provider);\n return Promise.reject('No plugin found in Storage for the provider');\n }\n var cancelTokenSource = this.getCancellableTokenSource();\n var responsePromise = prov.get(key, __assign(__assign({}, config), { cancelTokenSource: cancelTokenSource }));\n this.updateRequestToBeCancellable(responsePromise, cancelTokenSource);\n return responsePromise;\n };\n Storage.prototype.isCancelError = function (error) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.isCancel(error);\n };\n Storage.prototype.put = function (key, object, config) {\n var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;\n var prov = this._pluggables.find(function (pluggable) { return pluggable.getProviderName() === provider; });\n if (prov === undefined) {\n logger.debug('No plugin found with providerName', provider);\n return Promise.reject('No plugin found in Storage for the provider');\n }\n var cancelTokenSource = this.getCancellableTokenSource();\n var response = prov.put(key, object, __assign(__assign({}, config), { cancelTokenSource: cancelTokenSource }));\n if (!this.isUploadTask(response)) {\n this.updateRequestToBeCancellable(response, cancelTokenSource);\n }\n return response;\n };\n Storage.prototype.remove = function (key, config) {\n var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;\n var prov = this._pluggables.find(function (pluggable) { return pluggable.getProviderName() === provider; });\n if (prov === undefined) {\n logger.debug('No plugin found with providerName', provider);\n return Promise.reject('No plugin found in Storage for the provider');\n }\n return prov.remove(key, config);\n };\n Storage.prototype.list = function (path, config) {\n var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;\n var prov = this._pluggables.find(function (pluggable) { return pluggable.getProviderName() === provider; });\n if (prov === undefined) {\n logger.debug('No plugin found with providerName', provider);\n return Promise.reject('No plugin found in Storage for the provider');\n }\n return prov.list(path, config);\n };\n return Storage;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (Storage);\n//# sourceMappingURL=Storage.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/Storage.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/common/S3ClientUtils.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/common/S3ClientUtils.js ***! \***************************************************************************/ /*! exports provided: getPrefix, createPrefixMiddleware, autoAdjustClockskewMiddleware, autoAdjustClockskewMiddlewareOptions, prefixMiddlewareOptions, credentialsProvider, createS3Client */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPrefix\", function() { return getPrefix; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createPrefixMiddleware\", function() { return createPrefixMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"autoAdjustClockskewMiddleware\", function() { return autoAdjustClockskewMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"autoAdjustClockskewMiddlewareOptions\", function() { return autoAdjustClockskewMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"prefixMiddlewareOptions\", function() { return prefixMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"credentialsProvider\", function() { return credentialsProvider; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createS3Client\", function() { return createS3Client; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-s3 */ \"./node_modules/@aws-sdk/client-s3/dist/es/index.js\");\n/* harmony import */ var _providers_axios_http_handler__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../providers/axios-http-handler */ \"./node_modules/@aws-amplify/storage/lib-esm/providers/axios-http-handler.js\");\n/* harmony import */ var _StorageConstants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./StorageConstants */ \"./node_modules/@aws-amplify/storage/lib-esm/common/StorageConstants.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Logger\"]('S3ClientUtils');\n// placeholder credentials in order to satisfy type requirement, always results in 403 when used\nvar INVALID_CRED = { accessKeyId: '', secretAccessKey: '' };\nvar getPrefix = function (config) {\n var credentials = config.credentials, level = config.level, customPrefix = config.customPrefix, identityId = config.identityId;\n var resolvedCustomPrefix = customPrefix || {};\n var resolvedIdentityId = identityId || credentials.identityId;\n var privatePath = (resolvedCustomPrefix.private !== undefined\n ? resolvedCustomPrefix.private\n : 'private/') +\n resolvedIdentityId +\n '/';\n var protectedPath = (resolvedCustomPrefix.protected !== undefined\n ? resolvedCustomPrefix.protected\n : 'protected/') +\n resolvedIdentityId +\n '/';\n var publicPath = resolvedCustomPrefix.public !== undefined\n ? resolvedCustomPrefix.public\n : 'public/';\n switch (level) {\n case 'private':\n return privatePath;\n case 'protected':\n return protectedPath;\n default:\n return publicPath;\n }\n};\nvar createPrefixMiddleware = function (opt, key) { return function (next, _context) { return function (args) { return __awaiter(void 0, void 0, void 0, function () {\n var credentials, cred, prefix, clonedInput, result;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()];\n case 1:\n credentials = _a.sent();\n cred = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].shear(credentials);\n prefix = getPrefix(__assign(__assign({}, opt), { credentials: cred }));\n clonedInput = Object.assign({}, args.input);\n if (Object.prototype.hasOwnProperty.call(args.input, 'Key')) {\n clonedInput.Key = prefix + key;\n args.input = clonedInput;\n }\n else if (Object.prototype.hasOwnProperty.call(args.input, 'Prefix')) {\n clonedInput.Prefix = prefix + key;\n args.input = clonedInput;\n }\n result = next(args);\n return [2 /*return*/, result];\n }\n });\n}); }; }; };\nvar isTimeSkewedError = function (err) {\n return err.ServerTime &&\n typeof err.Code === 'string' &&\n err.Code === 'RequestTimeTooSkewed';\n};\n// we want to take the S3Client config in parameter so we can modify it's systemClockOffset\nvar autoAdjustClockskewMiddleware = function (config) { return function (next, _context) { return function (args) { return __awaiter(void 0, void 0, void 0, function () {\n var err_1, serverDate;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, next(args)];\n case 1: return [2 /*return*/, _a.sent()];\n case 2:\n err_1 = _a.sent();\n if (isTimeSkewedError(err_1)) {\n serverDate = new Date(err_1.ServerTime);\n config.systemClockOffset = serverDate.getTime() - Date.now();\n }\n throw err_1;\n case 3: return [2 /*return*/];\n }\n });\n}); }; }; };\nvar autoAdjustClockskewMiddlewareOptions = {\n step: 'finalizeRequest',\n name: 'autoAdjustClockskewMiddleware',\n};\nvar prefixMiddlewareOptions = {\n step: 'initialize',\n name: 'addPrefixMiddleware',\n};\nvar credentialsProvider = function () { return __awaiter(void 0, void 0, void 0, function () {\n var credentials, cred, error_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()];\n case 1:\n credentials = _a.sent();\n if (!credentials)\n return [2 /*return*/, INVALID_CRED];\n cred = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].shear(credentials);\n logger.debug('credentials provider get credentials', cred);\n return [2 /*return*/, cred];\n case 2:\n error_1 = _a.sent();\n logger.warn('credentials provider error', error_1);\n return [2 /*return*/, INVALID_CRED];\n case 3: return [2 /*return*/];\n }\n });\n}); };\nvar createS3Client = function (config, emitter) {\n var region = config.region, cancelTokenSource = config.cancelTokenSource, dangerouslyConnectToHttpEndpointForTesting = config.dangerouslyConnectToHttpEndpointForTesting, useAccelerateEndpoint = config.useAccelerateEndpoint;\n var localTestingConfig = {};\n if (dangerouslyConnectToHttpEndpointForTesting) {\n localTestingConfig = {\n endpoint: _StorageConstants__WEBPACK_IMPORTED_MODULE_3__[\"localTestingStorageEndpoint\"],\n tls: false,\n bucketEndpoint: false,\n forcePathStyle: true,\n };\n }\n var s3client = new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"S3Client\"](__assign(__assign({ region: region, \n // Using provider instead of a static credentials, so that if an upload task was in progress, but credentials gets\n // changed or invalidated (e.g user signed out), the subsequent requests will fail.\n credentials: credentialsProvider, customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"getAmplifyUserAgent\"])() }, localTestingConfig), { requestHandler: new _providers_axios_http_handler__WEBPACK_IMPORTED_MODULE_2__[\"AxiosHttpHandler\"]({}, emitter, cancelTokenSource), useAccelerateEndpoint: useAccelerateEndpoint }));\n s3client.middlewareStack.remove(_StorageConstants__WEBPACK_IMPORTED_MODULE_3__[\"SET_CONTENT_LENGTH_HEADER\"]);\n return s3client;\n};\n//# sourceMappingURL=S3ClientUtils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/common/S3ClientUtils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/common/StorageConstants.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/common/StorageConstants.js ***! \******************************************************************************/ /*! exports provided: AMPLIFY_SYMBOL, SET_CONTENT_LENGTH_HEADER, localTestingStorageEndpoint, UPLOADS_STORAGE_KEY */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMPLIFY_SYMBOL\", function() { return AMPLIFY_SYMBOL; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SET_CONTENT_LENGTH_HEADER\", function() { return SET_CONTENT_LENGTH_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"localTestingStorageEndpoint\", function() { return localTestingStorageEndpoint; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UPLOADS_STORAGE_KEY\", function() { return UPLOADS_STORAGE_KEY; });\nvar AMPLIFY_SYMBOL = (typeof Symbol !== 'undefined' &&\n typeof Symbol.for === 'function'\n ? Symbol.for('amplify_default')\n : '@@amplify_default');\nvar SET_CONTENT_LENGTH_HEADER = 'contentLengthMiddleware';\nvar localTestingStorageEndpoint = 'http://localhost:20005';\nvar UPLOADS_STORAGE_KEY = '__uploadInProgress';\n//# sourceMappingURL=StorageConstants.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/common/StorageConstants.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/common/StorageErrorStrings.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/common/StorageErrorStrings.js ***! \*********************************************************************************/ /*! exports provided: StorageErrorStrings, AWSS3ProviderMultipartCopierErrors, AWSS3ProviderUploadErrorStrings */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StorageErrorStrings\", function() { return StorageErrorStrings; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSS3ProviderMultipartCopierErrors\", function() { return AWSS3ProviderMultipartCopierErrors; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSS3ProviderUploadErrorStrings\", function() { return AWSS3ProviderUploadErrorStrings; });\nvar StorageErrorStrings;\n(function (StorageErrorStrings) {\n StorageErrorStrings[\"NO_CREDENTIALS\"] = \"No credentials\";\n StorageErrorStrings[\"NO_SRC_KEY\"] = \"source param should be an object with the property \\\"key\\\" with value of type string\";\n StorageErrorStrings[\"NO_DEST_KEY\"] = \"destination param should be an object with the property \\\"key\\\" with value of type string\";\n StorageErrorStrings[\"INVALID_BLOB\"] = \"Object must be an instance of Blob\";\n})(StorageErrorStrings || (StorageErrorStrings = {}));\nvar AWSS3ProviderMultipartCopierErrors;\n(function (AWSS3ProviderMultipartCopierErrors) {\n AWSS3ProviderMultipartCopierErrors[\"CLEANUP_FAILED\"] = \"Multipart copy clean up failed\";\n AWSS3ProviderMultipartCopierErrors[\"NO_OBJECT_FOUND\"] = \"Object does not exist\";\n AWSS3ProviderMultipartCopierErrors[\"INVALID_QUEUESIZE\"] = \"Queue size must be a positive number\";\n AWSS3ProviderMultipartCopierErrors[\"NO_COPYSOURCE\"] = \"You must specify a copy source\";\n AWSS3ProviderMultipartCopierErrors[\"MAX_NUM_PARTS_EXCEEDED\"] = \"Only a maximum of 10000 parts are allowed\";\n})(AWSS3ProviderMultipartCopierErrors || (AWSS3ProviderMultipartCopierErrors = {}));\nvar AWSS3ProviderUploadErrorStrings;\n(function (AWSS3ProviderUploadErrorStrings) {\n AWSS3ProviderUploadErrorStrings[\"UPLOAD_PAUSED_MESSAGE\"] = \"paused\";\n})(AWSS3ProviderUploadErrorStrings || (AWSS3ProviderUploadErrorStrings = {}));\n//# sourceMappingURL=StorageErrorStrings.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/common/StorageErrorStrings.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/common/StorageUtils.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/common/StorageUtils.js ***! \**************************************************************************/ /*! exports provided: byteLength, dispatchStorageEvent, isFile, isBlob */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"byteLength\", function() { return byteLength; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"dispatchStorageEvent\", function() { return dispatchStorageEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isFile\", function() { return isFile; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isBlob\", function() { return isBlob; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _StorageConstants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./StorageConstants */ \"./node_modules/@aws-amplify/storage/lib-esm/common/StorageConstants.js\");\n\n\nvar byteLength = function (x) {\n if (typeof x === 'string') {\n return x.length;\n }\n else if (isArrayBuffer(x)) {\n return x.byteLength;\n }\n else if (isBlob(x)) {\n return x.size;\n }\n else {\n throw new Error('Cannot determine byte length of ' + x);\n }\n};\nvar dispatchStorageEvent = function (track, event, attrs, metrics, message) {\n if (track) {\n var data = { attrs: attrs };\n if (metrics) {\n data['metrics'] = metrics;\n }\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Hub\"].dispatch('storage', {\n event: event,\n data: data,\n message: message,\n }, 'Storage', _StorageConstants__WEBPACK_IMPORTED_MODULE_1__[\"AMPLIFY_SYMBOL\"]);\n }\n};\nvar isFile = function (x) {\n return typeof x !== 'undefined' && x instanceof File;\n};\nvar isBlob = function (x) {\n return typeof x !== 'undefined' && x instanceof Blob;\n};\nvar isArrayBuffer = function (x) {\n return typeof x !== 'undefined' && x instanceof ArrayBuffer;\n};\n//# sourceMappingURL=StorageUtils.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/common/StorageUtils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/index.js": /*!************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/index.js ***! \************************************************************/ /*! exports provided: Storage, default, StorageClass, AWSS3Provider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Storage\", function() { return Storage; });\n/* harmony import */ var _Storage__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Storage */ \"./node_modules/@aws-amplify/storage/lib-esm/Storage.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StorageClass\", function() { return _Storage__WEBPACK_IMPORTED_MODULE_0__[\"Storage\"]; });\n\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _providers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./providers */ \"./node_modules/@aws-amplify/storage/lib-esm/providers/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSS3Provider\", function() { return _providers__WEBPACK_IMPORTED_MODULE_2__[\"AWSS3Provider\"]; });\n\n/*\n * Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"ConsoleLogger\"]('Storage');\nvar _instance = null;\nvar getInstance = function () {\n if (_instance) {\n return _instance;\n }\n logger.debug('Create Storage Instance, debug');\n _instance = new _Storage__WEBPACK_IMPORTED_MODULE_0__[\"Storage\"]();\n _instance.vault = new _Storage__WEBPACK_IMPORTED_MODULE_0__[\"Storage\"]();\n var old_configure = _instance.configure;\n _instance.configure = function (options) {\n logger.debug('storage configure called');\n var vaultConfig = __assign({}, old_configure.call(_instance, options));\n // set level private for each provider for the vault\n Object.keys(vaultConfig).forEach(function (providerName) {\n if (typeof vaultConfig[providerName] !== 'string') {\n vaultConfig[providerName] = __assign(__assign({}, vaultConfig[providerName]), { level: 'private' });\n }\n });\n logger.debug('storage vault configure called');\n _instance.vault.configure(vaultConfig);\n };\n return _instance;\n};\nvar Storage = getInstance();\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__[\"Amplify\"].register(Storage);\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (Storage);\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3Provider.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3Provider.js ***! \******************************************************************************/ /*! exports provided: AWSS3Provider, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSS3Provider\", function() { return AWSS3Provider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-s3 */ \"./node_modules/@aws-sdk/client-s3/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_format_url__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-format-url */ \"./node_modules/@aws-sdk/util-format-url/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_create_request__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/util-create-request */ \"./node_modules/@aws-sdk/util-create-request/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_s3_request_presigner__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/s3-request-presigner */ \"./node_modules/@aws-sdk/s3-request-presigner/dist/es/index.js\");\n/* harmony import */ var _axios_http_handler__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./axios-http-handler */ \"./node_modules/@aws-amplify/storage/lib-esm/providers/axios-http-handler.js\");\n/* harmony import */ var _common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../common/StorageErrorStrings */ \"./node_modules/@aws-amplify/storage/lib-esm/common/StorageErrorStrings.js\");\n/* harmony import */ var _common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../common/StorageUtils */ \"./node_modules/@aws-amplify/storage/lib-esm/common/StorageUtils.js\");\n/* harmony import */ var _common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../common/S3ClientUtils */ \"./node_modules/@aws-amplify/storage/lib-esm/common/S3ClientUtils.js\");\n/* harmony import */ var _AWSS3ProviderManagedUpload__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./AWSS3ProviderManagedUpload */ \"./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3ProviderManagedUpload.js\");\n/* harmony import */ var _AWSS3UploadTask__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./AWSS3UploadTask */ \"./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3UploadTask.js\");\n/* harmony import */ var _common_StorageConstants__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../common/StorageConstants */ \"./node_modules/@aws-amplify/storage/lib-esm/common/StorageConstants.js\");\n/* harmony import */ var events__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! events */ \"./node_modules/events/events.js\");\n/* harmony import */ var events__WEBPACK_IMPORTED_MODULE_12___default = /*#__PURE__*/__webpack_require__.n(events__WEBPACK_IMPORTED_MODULE_12__);\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AWSS3Provider');\nvar DEFAULT_STORAGE_LEVEL = 'public';\nvar DEFAULT_PRESIGN_EXPIRATION = 900;\n/**\n * Provide storage methods to use AWS S3\n */\nvar AWSS3Provider = /** @class */ (function () {\n /**\n * Initialize Storage with AWS configurations\n * @param {Object} config - Configuration object for storage\n */\n function AWSS3Provider(config) {\n var _this = this;\n this._config = config ? config : {};\n this._storage = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"StorageHelper\"]().getStorage();\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Hub\"].listen('auth', function (data) {\n var payload = data.payload;\n if (payload.event === 'signOut' || payload.event === 'signIn') {\n _this._storage.removeItem(_common_StorageConstants__WEBPACK_IMPORTED_MODULE_11__[\"UPLOADS_STORAGE_KEY\"]);\n }\n });\n logger.debug('Storage Options', this._config);\n }\n /**\n * get the category of the plugin\n */\n AWSS3Provider.prototype.getCategory = function () {\n return AWSS3Provider.CATEGORY;\n };\n /**\n * get provider name of the plugin\n */\n AWSS3Provider.prototype.getProviderName = function () {\n return AWSS3Provider.PROVIDER_NAME;\n };\n /**\n * Configure Storage part with aws configuration\n * @param {Object} config - Configuration of the Storage\n * @return {Object} - Current configuration\n */\n AWSS3Provider.prototype.configure = function (config) {\n logger.debug('configure Storage', config);\n if (!config)\n return this._config;\n var amplifyConfig = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Parser\"].parseMobilehubConfig(config);\n this._config = Object.assign({}, this._config, amplifyConfig.Storage);\n if (!this._config.bucket) {\n logger.debug('Do not have bucket yet');\n }\n return this._config;\n };\n AWSS3Provider.prototype.startResumableUpload = function (addTaskInput, config) {\n var s3Client = addTaskInput.s3Client, emitter = addTaskInput.emitter, key = addTaskInput.key, file = addTaskInput.file, params = addTaskInput.params;\n var progressCallback = config.progressCallback, completeCallback = config.completeCallback, errorCallback = config.errorCallback, _a = config.track, track = _a === void 0 ? false : _a;\n if (!(file instanceof Blob)) {\n throw new Error(_common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_6__[\"StorageErrorStrings\"].INVALID_BLOB);\n }\n emitter.on(_AWSS3UploadTask__WEBPACK_IMPORTED_MODULE_10__[\"TaskEvents\"].UPLOAD_PROGRESS, function (event) {\n if (progressCallback) {\n if (typeof progressCallback === 'function') {\n progressCallback(event);\n }\n else {\n logger.warn('progressCallback should be a function, not a ' +\n typeof progressCallback);\n }\n }\n });\n emitter.on(_AWSS3UploadTask__WEBPACK_IMPORTED_MODULE_10__[\"TaskEvents\"].UPLOAD_COMPLETE, function (event) {\n if (completeCallback) {\n if (typeof completeCallback === 'function') {\n completeCallback(event);\n }\n else {\n logger.warn('completeCallback should be a function, not a ' +\n typeof completeCallback);\n }\n }\n });\n emitter.on(_AWSS3UploadTask__WEBPACK_IMPORTED_MODULE_10__[\"TaskEvents\"].ERROR, function (err) {\n if (errorCallback) {\n if (typeof errorCallback === 'function') {\n errorCallback(err);\n }\n else {\n logger.warn('errorCallback should be a function, not a ' + typeof errorCallback);\n }\n }\n });\n // we want to keep this function sync so we defer this promise to AWSS3UploadTask to resolve when it's needed\n // when its doing a final check with _listSingleFile function\n var prefixPromise = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get().then(function (credentials) {\n var cred = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].shear(credentials);\n return Object(_common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_8__[\"getPrefix\"])(__assign(__assign({}, config), { credentials: cred }));\n });\n var task = new _AWSS3UploadTask__WEBPACK_IMPORTED_MODULE_10__[\"AWSS3UploadTask\"]({\n s3Client: s3Client,\n file: file,\n emitter: emitter,\n level: config.level,\n storage: this._storage,\n params: params,\n prefixPromise: prefixPromise,\n });\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'upload', { method: 'put', result: 'success' }, null, \"Upload Task created successfully for \" + key);\n // automatically start the upload task\n task.resume();\n return task;\n };\n /**\n * Copy an object from a source object to a new object within the same bucket. Can optionally copy files across\n * different level or identityId (if source object's level is 'protected').\n *\n * @async\n * @param {S3CopySource} src - Key and optionally access level and identityId of the source object.\n * @param {S3CopyDestination} dest - Key and optionally access level of the destination object.\n * @param {S3ProviderCopyConfig} [config] - Optional configuration for s3 commands.\n * @return {Promise} The key of the copied object.\n */\n AWSS3Provider.prototype.copy = function (src, dest, config) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, opt, acl, bucket, cacheControl, expires, track, serverSideEncryption, SSECustomerAlgorithm, SSECustomerKey, SSECustomerKeyMD5, SSEKMSKeyId, _a, srcLevel, srcIdentityId, srcKey, _b, destLevel, destKey, srcPrefix, destPrefix, finalSrcKey, finalDestKey, params, s3, error_1;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _c.sent();\n if (!credentialsOK || !this._isWithCredentials(this._config)) {\n throw new Error(_common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_6__[\"StorageErrorStrings\"].NO_CREDENTIALS);\n }\n opt = Object.assign({}, this._config, config);\n acl = opt.acl, bucket = opt.bucket, cacheControl = opt.cacheControl, expires = opt.expires, track = opt.track, serverSideEncryption = opt.serverSideEncryption, SSECustomerAlgorithm = opt.SSECustomerAlgorithm, SSECustomerKey = opt.SSECustomerKey, SSECustomerKeyMD5 = opt.SSECustomerKeyMD5, SSEKMSKeyId = opt.SSEKMSKeyId;\n _a = src.level, srcLevel = _a === void 0 ? DEFAULT_STORAGE_LEVEL : _a, srcIdentityId = src.identityId, srcKey = src.key;\n _b = dest.level, destLevel = _b === void 0 ? DEFAULT_STORAGE_LEVEL : _b, destKey = dest.key;\n if (!srcKey || typeof srcKey !== 'string') {\n throw new Error(_common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_6__[\"StorageErrorStrings\"].NO_SRC_KEY);\n }\n if (!destKey || typeof destKey !== 'string') {\n throw new Error(_common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_6__[\"StorageErrorStrings\"].NO_DEST_KEY);\n }\n if (srcLevel !== 'protected' && srcIdentityId) {\n logger.warn(\"You may copy files from another user if the source level is \\\"protected\\\", currently it's \" + srcLevel);\n }\n srcPrefix = this._prefix(__assign(__assign(__assign({}, opt), { level: srcLevel }), (srcIdentityId && { identityId: srcIdentityId })));\n destPrefix = this._prefix(__assign(__assign({}, opt), { level: destLevel }));\n finalSrcKey = bucket + \"/\" + srcPrefix + srcKey;\n finalDestKey = \"\" + destPrefix + destKey;\n logger.debug(\"copying \" + finalSrcKey + \" to \" + finalDestKey);\n params = {\n Bucket: bucket,\n CopySource: finalSrcKey,\n Key: finalDestKey,\n // Copies over metadata like contentType as well\n MetadataDirective: 'COPY',\n };\n if (cacheControl)\n params.CacheControl = cacheControl;\n if (expires)\n params.Expires = expires;\n if (serverSideEncryption) {\n params.ServerSideEncryption = serverSideEncryption;\n }\n if (SSECustomerAlgorithm) {\n params.SSECustomerAlgorithm = SSECustomerAlgorithm;\n }\n if (SSECustomerKey) {\n params.SSECustomerKey = SSECustomerKey;\n }\n if (SSECustomerKeyMD5) {\n params.SSECustomerKeyMD5 = SSECustomerKeyMD5;\n }\n if (SSEKMSKeyId) {\n params.SSEKMSKeyId = SSEKMSKeyId;\n }\n if (acl)\n params.ACL = acl;\n s3 = this._createNewS3Client(opt);\n _c.label = 2;\n case 2:\n _c.trys.push([2, 4, , 5]);\n return [4 /*yield*/, s3.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"CopyObjectCommand\"](params))];\n case 3:\n _c.sent();\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'copy', {\n method: 'copy',\n result: 'success',\n }, null, \"Copy success from \" + srcKey + \" to \" + destKey);\n return [2 /*return*/, {\n key: destKey,\n }];\n case 4:\n error_1 = _c.sent();\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'copy', {\n method: 'copy',\n result: 'failed',\n }, null, \"Copy failed from \" + srcKey + \" to \" + destKey);\n throw error_1;\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3Provider.prototype.get = function (key, config) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, opt, bucket, download, cacheControl, contentDisposition, contentEncoding, contentLanguage, contentType, expires, track, SSECustomerAlgorithm, SSECustomerKey, SSECustomerKeyMD5, progressCallback, prefix, final_key, emitter, s3, params, getObjectCommand, response, error_2, signer, request, url, _a, error_3;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _b.sent();\n if (!credentialsOK || !this._isWithCredentials(this._config)) {\n throw new Error(_common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_6__[\"StorageErrorStrings\"].NO_CREDENTIALS);\n }\n opt = Object.assign({}, this._config, config);\n bucket = opt.bucket, download = opt.download, cacheControl = opt.cacheControl, contentDisposition = opt.contentDisposition, contentEncoding = opt.contentEncoding, contentLanguage = opt.contentLanguage, contentType = opt.contentType, expires = opt.expires, track = opt.track, SSECustomerAlgorithm = opt.SSECustomerAlgorithm, SSECustomerKey = opt.SSECustomerKey, SSECustomerKeyMD5 = opt.SSECustomerKeyMD5, progressCallback = opt.progressCallback;\n prefix = this._prefix(opt);\n final_key = prefix + key;\n emitter = new events__WEBPACK_IMPORTED_MODULE_12__[\"EventEmitter\"]();\n s3 = this._createNewS3Client(opt, emitter);\n logger.debug('get ' + key + ' from ' + final_key);\n params = {\n Bucket: bucket,\n Key: final_key,\n };\n // See: https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/S3.html#getObject-property\n if (cacheControl)\n params.ResponseCacheControl = cacheControl;\n if (contentDisposition)\n params.ResponseContentDisposition = contentDisposition;\n if (contentEncoding)\n params.ResponseContentEncoding = contentEncoding;\n if (contentLanguage)\n params.ResponseContentLanguage = contentLanguage;\n if (contentType)\n params.ResponseContentType = contentType;\n if (SSECustomerAlgorithm) {\n params.SSECustomerAlgorithm = SSECustomerAlgorithm;\n }\n if (SSECustomerKey) {\n params.SSECustomerKey = SSECustomerKey;\n }\n if (SSECustomerKeyMD5) {\n params.SSECustomerKeyMD5 = SSECustomerKeyMD5;\n }\n if (!(download === true)) return [3 /*break*/, 5];\n getObjectCommand = new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectCommand\"](params);\n _b.label = 2;\n case 2:\n _b.trys.push([2, 4, , 5]);\n if (progressCallback) {\n if (typeof progressCallback === 'function') {\n emitter.on(_axios_http_handler__WEBPACK_IMPORTED_MODULE_5__[\"SEND_DOWNLOAD_PROGRESS_EVENT\"], function (progress) {\n progressCallback(progress);\n });\n }\n else {\n logger.warn('progressCallback should be a function, not a ' +\n typeof progressCallback);\n }\n }\n return [4 /*yield*/, s3.send(getObjectCommand)];\n case 3:\n response = _b.sent();\n emitter.removeAllListeners(_axios_http_handler__WEBPACK_IMPORTED_MODULE_5__[\"SEND_DOWNLOAD_PROGRESS_EVENT\"]);\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'download', { method: 'get', result: 'success' }, {\n fileSize: Number(response.Body['size'] || response.Body['length']),\n }, \"Download success for \" + key);\n return [2 /*return*/, response];\n case 4:\n error_2 = _b.sent();\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'download', {\n method: 'get',\n result: 'failed',\n }, null, \"Download failed with \" + error_2.message);\n throw error_2;\n case 5:\n _b.trys.push([5, 8, , 9]);\n signer = new _aws_sdk_s3_request_presigner__WEBPACK_IMPORTED_MODULE_4__[\"S3RequestPresigner\"](__assign({}, s3.config));\n return [4 /*yield*/, Object(_aws_sdk_util_create_request__WEBPACK_IMPORTED_MODULE_3__[\"createRequest\"])(s3, new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectCommand\"](params))];\n case 6:\n request = _b.sent();\n _a = _aws_sdk_util_format_url__WEBPACK_IMPORTED_MODULE_2__[\"formatUrl\"];\n return [4 /*yield*/, signer.presign(request, {\n expiresIn: expires || DEFAULT_PRESIGN_EXPIRATION,\n })];\n case 7:\n url = _a.apply(void 0, [_b.sent()]);\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'getSignedUrl', { method: 'get', result: 'success' }, null, \"Signed URL: \" + url);\n return [2 /*return*/, url];\n case 8:\n error_3 = _b.sent();\n logger.warn('get signed url error', error_3);\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'getSignedUrl', { method: 'get', result: 'failed' }, null, \"Could not get a signed URL for \" + key);\n throw error_3;\n case 9: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Put a file in S3 bucket specified to configure method\n * @param key - key of the object\n * @param object - File to be put in Amazon S3 bucket\n * @param [config] - Optional configuration for the underlying S3 command\n * @return an instance of AWSS3UploadTask or a promise that resolves to an object with the new object's key on\n * success.\n */\n AWSS3Provider.prototype.put = function (key, object, config) {\n var opt = Object.assign({}, this._config, config);\n var bucket = opt.bucket, track = opt.track, progressCallback = opt.progressCallback, level = opt.level, resumable = opt.resumable;\n var contentType = opt.contentType, contentDisposition = opt.contentDisposition, contentEncoding = opt.contentEncoding, cacheControl = opt.cacheControl, expires = opt.expires, metadata = opt.metadata, tagging = opt.tagging, acl = opt.acl;\n var serverSideEncryption = opt.serverSideEncryption, SSECustomerAlgorithm = opt.SSECustomerAlgorithm, SSECustomerKey = opt.SSECustomerKey, SSECustomerKeyMD5 = opt.SSECustomerKeyMD5, SSEKMSKeyId = opt.SSEKMSKeyId;\n var type = contentType ? contentType : 'binary/octet-stream';\n var params = {\n Bucket: bucket,\n Key: key,\n Body: object,\n ContentType: type,\n };\n if (cacheControl) {\n params.CacheControl = cacheControl;\n }\n if (contentDisposition) {\n params.ContentDisposition = contentDisposition;\n }\n if (contentEncoding) {\n params.ContentEncoding = contentEncoding;\n }\n if (expires) {\n params.Expires = expires;\n }\n if (metadata) {\n params.Metadata = metadata;\n }\n if (tagging) {\n params.Tagging = tagging;\n }\n if (serverSideEncryption) {\n params.ServerSideEncryption = serverSideEncryption;\n }\n if (SSECustomerAlgorithm) {\n params.SSECustomerAlgorithm = SSECustomerAlgorithm;\n }\n if (SSECustomerKey) {\n params.SSECustomerKey = SSECustomerKey;\n }\n if (SSECustomerKeyMD5) {\n params.SSECustomerKeyMD5 = SSECustomerKeyMD5;\n }\n if (SSEKMSKeyId) {\n params.SSEKMSKeyId = SSEKMSKeyId;\n }\n var emitter = new events__WEBPACK_IMPORTED_MODULE_12__[\"EventEmitter\"]();\n var uploader = new _AWSS3ProviderManagedUpload__WEBPACK_IMPORTED_MODULE_9__[\"AWSS3ProviderManagedUpload\"](params, opt, emitter);\n if (acl) {\n params.ACL = acl;\n }\n if (resumable === true) {\n var s3Client = this._createNewS3Client(opt);\n // we are using aws sdk middleware to inject the prefix to key, this way we don't have to call\n // this._ensureCredentials() which allows us to make this function sync so we can return non-Promise like UploadTask\n s3Client.middlewareStack.add(Object(_common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_8__[\"createPrefixMiddleware\"])(opt, key), _common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_8__[\"prefixMiddlewareOptions\"]);\n var addTaskInput = {\n bucket: bucket,\n key: key,\n s3Client: s3Client,\n file: object,\n emitter: emitter,\n accessLevel: level,\n params: params,\n };\n // explicitly asserting the type here as Typescript could not infer that resumable is of type true\n return this.startResumableUpload(addTaskInput, config);\n }\n try {\n if (progressCallback) {\n if (typeof progressCallback === 'function') {\n emitter.on(_axios_http_handler__WEBPACK_IMPORTED_MODULE_5__[\"SEND_UPLOAD_PROGRESS_EVENT\"], function (progress) {\n progressCallback(progress);\n });\n }\n else {\n logger.warn('progressCallback should be a function, not a ' +\n typeof progressCallback);\n }\n }\n return uploader.upload().then(function (response) {\n logger.debug('upload result', response);\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'upload', { method: 'put', result: 'success' }, null, \"Upload success for \" + key);\n return { key: key };\n });\n }\n catch (error) {\n logger.warn('error uploading', error);\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'upload', { method: 'put', result: 'failed' }, null, \"Error uploading \" + key);\n throw error;\n }\n };\n /**\n * Remove the object for specified key\n * @param {string} key - key of the object\n * @param {S3ProviderRemoveConfig} [config] - Optional configuration for the underlying S3 command\n * @return {Promise} - Promise resolves upon successful removal of the object\n */\n AWSS3Provider.prototype.remove = function (key, config) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, opt, bucket, track, prefix, final_key, s3, params, deleteObjectCommand, response, error_4;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK || !this._isWithCredentials(this._config)) {\n throw new Error(_common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_6__[\"StorageErrorStrings\"].NO_CREDENTIALS);\n }\n opt = Object.assign({}, this._config, config);\n bucket = opt.bucket, track = opt.track;\n prefix = this._prefix(opt);\n final_key = prefix + key;\n s3 = this._createNewS3Client(opt);\n logger.debug('remove ' + key + ' from ' + final_key);\n params = {\n Bucket: bucket,\n Key: final_key,\n };\n deleteObjectCommand = new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"DeleteObjectCommand\"](params);\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4 /*yield*/, s3.send(deleteObjectCommand)];\n case 3:\n response = _a.sent();\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'delete', { method: 'remove', result: 'success' }, null, \"Deleted \" + key + \" successfully\");\n return [2 /*return*/, response];\n case 4:\n error_4 = _a.sent();\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'delete', { method: 'remove', result: 'failed' }, null, \"Deletion of \" + key + \" failed with \" + error_4);\n throw error_4;\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3Provider.prototype._list = function (params, opt, prefix) {\n return __awaiter(this, void 0, void 0, function () {\n var result, s3, listObjectsV2Command, response;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n result = {\n contents: [],\n nextToken: '',\n };\n s3 = this._createNewS3Client(opt);\n listObjectsV2Command = new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"ListObjectsV2Command\"](__assign({}, params));\n return [4 /*yield*/, s3.send(listObjectsV2Command)];\n case 1:\n response = _a.sent();\n if (response && response.Contents) {\n result.contents = response.Contents.map(function (item) {\n return {\n key: item.Key.substr(prefix.length),\n eTag: item.ETag,\n lastModified: item.LastModified,\n size: item.Size,\n };\n });\n result.nextToken = response.NextContinuationToken;\n }\n return [2 /*return*/, result];\n }\n });\n });\n };\n /**\n * List bucket objects relative to the level and prefix specified\n * @param {string} path - the path that contains objects\n * @param {S3ProviderListConfig} [config] - Optional configuration for the underlying S3 command\n * @return {Promise} - Promise resolves to list of keys, eTags, lastModified and file size for\n * all objects in path\n */\n AWSS3Provider.prototype.list = function (path, config) {\n return __awaiter(this, void 0, void 0, function () {\n var credentialsOK, opt, bucket, track, maxKeys, prefix, final_path, list, token, listResult, params, error_5;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._ensureCredentials()];\n case 1:\n credentialsOK = _a.sent();\n if (!credentialsOK || !this._isWithCredentials(this._config)) {\n throw new Error(_common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_6__[\"StorageErrorStrings\"].NO_CREDENTIALS);\n }\n opt = Object.assign({}, this._config, config);\n bucket = opt.bucket, track = opt.track, maxKeys = opt.maxKeys;\n prefix = this._prefix(opt);\n final_path = prefix + path;\n logger.debug('list ' + path + ' from ' + final_path);\n _a.label = 2;\n case 2:\n _a.trys.push([2, 10, , 11]);\n list = [];\n token = void 0;\n listResult = void 0;\n params = {\n Bucket: bucket,\n Prefix: final_path,\n MaxKeys: 1000,\n };\n if (!(maxKeys === 'ALL')) return [3 /*break*/, 7];\n _a.label = 3;\n case 3:\n params.ContinuationToken = token;\n params.MaxKeys = 1000;\n return [4 /*yield*/, this._list(params, opt, prefix)];\n case 4:\n listResult = _a.sent();\n list.push.apply(list, __spread(listResult.contents));\n if (listResult.nextToken)\n token = listResult.nextToken;\n _a.label = 5;\n case 5:\n if (listResult.nextToken) return [3 /*break*/, 3];\n _a.label = 6;\n case 6: return [3 /*break*/, 9];\n case 7:\n maxKeys < 1000 || typeof maxKeys === 'string'\n ? (params.MaxKeys = maxKeys)\n : (params.MaxKeys = 1000);\n return [4 /*yield*/, this._list(params, opt, prefix)];\n case 8:\n listResult = _a.sent();\n list.push.apply(list, __spread(listResult.contents));\n if (maxKeys > 1000)\n logger.warn(\"maxkeys can be from 0 - 1000 or 'ALL'. To list all files you can set maxKeys to 'ALL'.\");\n _a.label = 9;\n case 9:\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'list', { method: 'list', result: 'success' }, null, list.length + \" items returned from list operation\");\n logger.debug('list', list);\n return [2 /*return*/, list];\n case 10:\n error_5 = _a.sent();\n logger.warn('list error', error_5);\n Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_7__[\"dispatchStorageEvent\"])(track, 'list', { method: 'list', result: 'failed' }, null, \"Listing items failed: \" + error_5.message);\n throw error_5;\n case 11: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3Provider.prototype._ensureCredentials = function () {\n return __awaiter(this, void 0, void 0, function () {\n var credentials, cred, error_6;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()];\n case 1:\n credentials = _a.sent();\n if (!credentials)\n return [2 /*return*/, false];\n cred = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].shear(credentials);\n logger.debug('set credentials for storage', cred);\n this._config.credentials = cred;\n return [2 /*return*/, true];\n case 2:\n error_6 = _a.sent();\n logger.warn('ensure credentials error', error_6);\n return [2 /*return*/, false];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3Provider.prototype._isWithCredentials = function (config) {\n return typeof config === 'object' && config.hasOwnProperty('credentials');\n };\n AWSS3Provider.prototype._prefix = function (config) {\n var credentials = config.credentials, level = config.level;\n var customPrefix = config.customPrefix || {};\n var identityId = config.identityId || credentials.identityId;\n var privatePath = (customPrefix.private !== undefined ? customPrefix.private : 'private/') +\n identityId +\n '/';\n var protectedPath = (customPrefix.protected !== undefined\n ? customPrefix.protected\n : 'protected/') +\n identityId +\n '/';\n var publicPath = customPrefix.public !== undefined ? customPrefix.public : 'public/';\n switch (level) {\n case 'private':\n return privatePath;\n case 'protected':\n return protectedPath;\n default:\n return publicPath;\n }\n };\n /**\n * Creates an S3 client with new V3 aws sdk\n */\n AWSS3Provider.prototype._createNewS3Client = function (config, emitter) {\n var s3client = Object(_common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_8__[\"createS3Client\"])(config, emitter);\n s3client.middlewareStack.add(Object(_common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_8__[\"autoAdjustClockskewMiddleware\"])(s3client.config), _common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_8__[\"autoAdjustClockskewMiddlewareOptions\"]);\n return s3client;\n };\n AWSS3Provider.CATEGORY = 'Storage';\n AWSS3Provider.PROVIDER_NAME = 'AWSS3';\n return AWSS3Provider;\n}());\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (AWSS3Provider);\n//# sourceMappingURL=AWSS3Provider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3Provider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3ProviderManagedUpload.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3ProviderManagedUpload.js ***! \*******************************************************************************************/ /*! exports provided: AWSS3ProviderManagedUpload */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSS3ProviderManagedUpload\", function() { return AWSS3ProviderManagedUpload; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-s3 */ \"./node_modules/@aws-sdk/client-s3/dist/es/index.js\");\n/* harmony import */ var _axios_http_handler__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./axios-http-handler */ \"./node_modules/@aws-amplify/storage/lib-esm/providers/axios-http-handler.js\");\n/* harmony import */ var events__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! events */ \"./node_modules/events/events.js\");\n/* harmony import */ var events__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(events__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../common/S3ClientUtils */ \"./node_modules/@aws-amplify/storage/lib-esm/common/S3ClientUtils.js\");\n/*\n * Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AWSS3ProviderManagedUpload');\nvar AWSS3ProviderManagedUpload = /** @class */ (function () {\n function AWSS3ProviderManagedUpload(params, opts, emitter) {\n // Defaults\n this.minPartSize = 5 * 1024 * 1024; // in MB\n this.queueSize = 4;\n // Data for current upload\n this.body = null;\n this.params = null;\n this.opts = null;\n this.completedParts = [];\n this.uploadId = null;\n // Progress reporting\n this.bytesUploaded = 0;\n this.totalBytesToUpload = 0;\n this.emitter = null;\n this.params = params;\n this.opts = opts;\n this.emitter = emitter;\n this.s3client = this._createNewS3Client(opts, emitter);\n }\n AWSS3ProviderManagedUpload.prototype.upload = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _a, putObjectCommand, _b, numberOfPartsToUpload, parts, start, error_1;\n var _this = this;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _c.trys.push([0, 10, , 12]);\n _a = this;\n return [4 /*yield*/, this.validateAndSanitizeBody(this.params.Body)];\n case 1:\n _a.body = _c.sent();\n this.totalBytesToUpload = this.byteLength(this.body);\n if (!(this.totalBytesToUpload <= this.minPartSize)) return [3 /*break*/, 2];\n // Multipart upload is not required. Upload the sanitized body as is\n this.params.Body = this.body;\n putObjectCommand = new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectCommand\"](this.params);\n return [2 /*return*/, this.s3client.send(putObjectCommand)];\n case 2:\n // Step 1: Initiate the multi part upload\n _b = this;\n return [4 /*yield*/, this.createMultiPartUpload()];\n case 3:\n // Step 1: Initiate the multi part upload\n _b.uploadId = _c.sent();\n numberOfPartsToUpload = Math.ceil(this.totalBytesToUpload / this.minPartSize);\n parts = this.createParts();\n start = 0;\n _c.label = 4;\n case 4:\n if (!(start < numberOfPartsToUpload)) return [3 /*break*/, 7];\n // Upload as many as `queueSize` parts simultaneously\n return [4 /*yield*/, this.uploadParts(this.uploadId, parts.slice(start, start + this.queueSize))];\n case 5:\n // Upload as many as `queueSize` parts simultaneously\n _c.sent();\n _c.label = 6;\n case 6:\n start += this.queueSize;\n return [3 /*break*/, 4];\n case 7:\n parts.map(function (part) {\n _this.removeEventListener(part);\n });\n return [4 /*yield*/, this.finishMultiPartUpload(this.uploadId)];\n case 8: \n // Step 3: Finalize the upload such that S3 can recreate the file\n return [2 /*return*/, _c.sent()];\n case 9: return [3 /*break*/, 12];\n case 10:\n error_1 = _c.sent();\n // if any error is thrown, call cleanup\n return [4 /*yield*/, this.cleanup(this.uploadId)];\n case 11:\n // if any error is thrown, call cleanup\n _c.sent();\n logger.error('Error. Cancelling the multipart upload.');\n throw error_1;\n case 12: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3ProviderManagedUpload.prototype.createParts = function () {\n try {\n var parts = [];\n for (var bodyStart = 0; bodyStart < this.totalBytesToUpload;) {\n var bodyEnd = Math.min(bodyStart + this.minPartSize, this.totalBytesToUpload);\n parts.push({\n bodyPart: this.body.slice(bodyStart, bodyEnd),\n partNumber: parts.length + 1,\n emitter: new events__WEBPACK_IMPORTED_MODULE_3__[\"EventEmitter\"](),\n _lastUploadedBytes: 0,\n });\n bodyStart += this.minPartSize;\n }\n return parts;\n }\n catch (error) {\n logger.error(error);\n throw error;\n }\n };\n AWSS3ProviderManagedUpload.prototype.createMultiPartUpload = function () {\n return __awaiter(this, void 0, void 0, function () {\n var createMultiPartUploadCommand, response, error_2;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n createMultiPartUploadCommand = new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"CreateMultipartUploadCommand\"](this.params);\n return [4 /*yield*/, this.s3client.send(createMultiPartUploadCommand)];\n case 1:\n response = _a.sent();\n logger.debug(response.UploadId);\n return [2 /*return*/, response.UploadId];\n case 2:\n error_2 = _a.sent();\n logger.error(error_2);\n throw error_2;\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * @private Not to be extended outside of tests\n * @VisibleFotTesting\n */\n AWSS3ProviderManagedUpload.prototype.uploadParts = function (uploadId, parts) {\n return __awaiter(this, void 0, void 0, function () {\n var allResults, i, error_3;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, Promise.all(parts.map(function (part) { return __awaiter(_this, void 0, void 0, function () {\n var options, _a, Key, Bucket, SSECustomerAlgorithm, SSECustomerKey, SSECustomerKeyMD5, res;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n this.setupEventListener(part);\n options = { emitter: part.emitter };\n _a = this.params, Key = _a.Key, Bucket = _a.Bucket, SSECustomerAlgorithm = _a.SSECustomerAlgorithm, SSECustomerKey = _a.SSECustomerKey, SSECustomerKeyMD5 = _a.SSECustomerKeyMD5;\n return [4 /*yield*/, this.s3client.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"UploadPartCommand\"](__assign(__assign(__assign({ PartNumber: part.partNumber, Body: part.bodyPart, UploadId: uploadId, Key: Key,\n Bucket: Bucket }, (SSECustomerAlgorithm && { SSECustomerAlgorithm: SSECustomerAlgorithm })), (SSECustomerKey && { SSECustomerKey: SSECustomerKey })), (SSECustomerKeyMD5 && { SSECustomerKeyMD5: SSECustomerKeyMD5 }))), options)];\n case 1:\n res = _b.sent();\n return [2 /*return*/, res];\n }\n });\n }); }))];\n case 1:\n allResults = _a.sent();\n // The order of resolved promises is the same as input promise order.\n for (i = 0; i < allResults.length; i++) {\n this.completedParts.push({\n PartNumber: parts[i].partNumber,\n ETag: allResults[i].ETag,\n });\n }\n return [3 /*break*/, 3];\n case 2:\n error_3 = _a.sent();\n logger.error('Error happened while uploading a part. Cancelling the multipart upload');\n throw error_3;\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3ProviderManagedUpload.prototype.finishMultiPartUpload = function (uploadId) {\n return __awaiter(this, void 0, void 0, function () {\n var input, completeUploadCommand, data, error_4;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n input = {\n Bucket: this.params.Bucket,\n Key: this.params.Key,\n UploadId: uploadId,\n MultipartUpload: { Parts: this.completedParts },\n };\n completeUploadCommand = new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"CompleteMultipartUploadCommand\"](input);\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.s3client.send(completeUploadCommand)];\n case 2:\n data = _a.sent();\n return [2 /*return*/, data.Key];\n case 3:\n error_4 = _a.sent();\n logger.error('Error happened while finishing the upload.');\n throw error_4;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3ProviderManagedUpload.prototype.cleanup = function (uploadId) {\n return __awaiter(this, void 0, void 0, function () {\n var input, data;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n // Reset this's state\n this.body = null;\n this.completedParts = [];\n this.bytesUploaded = 0;\n this.totalBytesToUpload = 0;\n input = {\n Bucket: this.params.Bucket,\n Key: this.params.Key,\n UploadId: uploadId,\n };\n return [4 /*yield*/, this.s3client.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"AbortMultipartUploadCommand\"](input))];\n case 1:\n _a.sent();\n return [4 /*yield*/, this.s3client.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_1__[\"ListPartsCommand\"](input))];\n case 2:\n data = _a.sent();\n if (data && data.Parts && data.Parts.length > 0) {\n throw new Error('Multipart upload clean up failed.');\n }\n return [2 /*return*/];\n }\n });\n });\n };\n AWSS3ProviderManagedUpload.prototype.removeEventListener = function (part) {\n part.emitter.removeAllListeners(_axios_http_handler__WEBPACK_IMPORTED_MODULE_2__[\"SEND_UPLOAD_PROGRESS_EVENT\"]);\n part.emitter.removeAllListeners(_axios_http_handler__WEBPACK_IMPORTED_MODULE_2__[\"SEND_DOWNLOAD_PROGRESS_EVENT\"]);\n };\n AWSS3ProviderManagedUpload.prototype.setupEventListener = function (part) {\n var _this = this;\n part.emitter.on(_axios_http_handler__WEBPACK_IMPORTED_MODULE_2__[\"SEND_UPLOAD_PROGRESS_EVENT\"], function (progress) {\n _this.progressChanged(part.partNumber, progress.loaded - part._lastUploadedBytes);\n part._lastUploadedBytes = progress.loaded;\n });\n };\n AWSS3ProviderManagedUpload.prototype.progressChanged = function (partNumber, incrementalUpdate) {\n this.bytesUploaded += incrementalUpdate;\n this.emitter.emit(_axios_http_handler__WEBPACK_IMPORTED_MODULE_2__[\"SEND_UPLOAD_PROGRESS_EVENT\"], {\n loaded: this.bytesUploaded,\n total: this.totalBytesToUpload,\n part: partNumber,\n key: this.params.Key,\n });\n };\n AWSS3ProviderManagedUpload.prototype.byteLength = function (input) {\n if (input === null || input === undefined)\n return 0;\n if (typeof input.byteLength === 'number') {\n return input.byteLength;\n }\n else if (typeof input.length === 'number') {\n return input.length;\n }\n else if (typeof input.size === 'number') {\n return input.size;\n }\n else if (typeof input.path === 'string') {\n /* NodeJs Support\n return require('fs').lstatSync(input.path).size;\n */\n }\n else {\n throw new Error('Cannot determine length of ' + input);\n }\n };\n AWSS3ProviderManagedUpload.prototype.validateAndSanitizeBody = function (body) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n if (this.isGenericObject(body)) {\n // Any javascript object\n return [2 /*return*/, JSON.stringify(body)];\n }\n else {\n // Files, arrayBuffer etc\n return [2 /*return*/, body];\n }\n return [2 /*return*/];\n });\n });\n };\n AWSS3ProviderManagedUpload.prototype.isGenericObject = function (body) {\n if (body !== null && typeof body === 'object') {\n try {\n return !(this.byteLength(body) >= 0);\n }\n catch (error) {\n // If we cannot determine the length of the body, consider it\n // as a generic object and upload a stringified version of it\n return true;\n }\n }\n return false;\n };\n AWSS3ProviderManagedUpload.prototype._createNewS3Client = function (config, emitter) {\n var s3client = Object(_common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_4__[\"createS3Client\"])(config, emitter);\n s3client.middlewareStack.add(Object(_common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_4__[\"createPrefixMiddleware\"])(this.opts, this.params.Key), _common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_4__[\"prefixMiddlewareOptions\"]);\n s3client.middlewareStack.add(Object(_common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_4__[\"autoAdjustClockskewMiddleware\"])(s3client.config), _common_S3ClientUtils__WEBPACK_IMPORTED_MODULE_4__[\"autoAdjustClockskewMiddlewareOptions\"]);\n return s3client;\n };\n return AWSS3ProviderManagedUpload;\n}());\n\n//# sourceMappingURL=AWSS3ProviderManagedUpload.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3ProviderManagedUpload.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3UploadTask.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3UploadTask.js ***! \********************************************************************************/ /*! exports provided: AWSS3UploadTaskState, TaskEvents, AWSS3UploadTask */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSS3UploadTaskState\", function() { return AWSS3UploadTaskState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TaskEvents\", function() { return TaskEvents; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AWSS3UploadTask\", function() { return AWSS3UploadTask; });\n/* harmony import */ var _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/client-s3 */ \"./node_modules/@aws-sdk/client-s3/dist/es/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! axios */ \"./node_modules/@aws-amplify/storage/node_modules/axios/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _common_StorageUtils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../common/StorageUtils */ \"./node_modules/@aws-amplify/storage/lib-esm/common/StorageUtils.js\");\n/* harmony import */ var _common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../common/StorageErrorStrings */ \"./node_modules/@aws-amplify/storage/lib-esm/common/StorageErrorStrings.js\");\n/* harmony import */ var _common_StorageConstants__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../common/StorageConstants */ \"./node_modules/@aws-amplify/storage/lib-esm/common/StorageConstants.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\nvar __spread = (undefined && undefined.__spread) || function () {\n for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));\n return ar;\n};\n\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"Logger\"]('AWSS3UploadTask');\nvar AWSS3UploadTaskState;\n(function (AWSS3UploadTaskState) {\n AWSS3UploadTaskState[AWSS3UploadTaskState[\"INIT\"] = 0] = \"INIT\";\n AWSS3UploadTaskState[AWSS3UploadTaskState[\"IN_PROGRESS\"] = 1] = \"IN_PROGRESS\";\n AWSS3UploadTaskState[AWSS3UploadTaskState[\"PAUSED\"] = 2] = \"PAUSED\";\n AWSS3UploadTaskState[AWSS3UploadTaskState[\"CANCELLED\"] = 3] = \"CANCELLED\";\n AWSS3UploadTaskState[AWSS3UploadTaskState[\"COMPLETED\"] = 4] = \"COMPLETED\";\n})(AWSS3UploadTaskState || (AWSS3UploadTaskState = {}));\nvar TaskEvents;\n(function (TaskEvents) {\n TaskEvents[\"CANCEL\"] = \"cancel\";\n TaskEvents[\"UPLOAD_COMPLETE\"] = \"uploadComplete\";\n TaskEvents[\"UPLOAD_PROGRESS\"] = \"uploadPartProgress\";\n TaskEvents[\"ERROR\"] = \"error\";\n})(TaskEvents || (TaskEvents = {}));\n// maximum number of parts per upload request according the S3 spec,\n// see: https://docs.aws.amazon.com/AmazonS3/latest/userguide/qfacts.html\nvar MAX_PARTS = 10000;\n// 5MB in bytes\nvar PART_SIZE = 5 * 1024 * 1024;\nvar DEFAULT_QUEUE_SIZE = 4;\nfunction comparePartNumber(a, b) {\n return a.PartNumber - b.PartNumber;\n}\nvar AWSS3UploadTask = /** @class */ (function () {\n function AWSS3UploadTask(_a) {\n var s3Client = _a.s3Client, file = _a.file, emitter = _a.emitter, storage = _a.storage, params = _a.params, level = _a.level, prefixPromise = _a.prefixPromise;\n this.partSize = PART_SIZE;\n this.queueSize = DEFAULT_QUEUE_SIZE;\n this.inProgress = [];\n this.completedParts = [];\n this.queued = [];\n this.bytesUploaded = 0;\n this.totalBytes = 0;\n this.state = AWSS3UploadTaskState.INIT;\n this.prefixPromise = prefixPromise;\n this.s3client = s3Client;\n this.s3client.middlewareStack.remove(_common_StorageConstants__WEBPACK_IMPORTED_MODULE_5__[\"SET_CONTENT_LENGTH_HEADER\"]);\n this.storage = storage;\n this.storageSync = Promise.resolve();\n if (typeof this.storage['sync'] === 'function') {\n this.storageSync = this.storage['sync']();\n }\n this.params = params;\n this.file = file;\n this.totalBytes = this.file.size;\n this.bytesUploaded = 0;\n this.emitter = emitter;\n this.queued = [];\n this.fileId = this._getFileId(level);\n this._validateParams();\n // event emitter will re-throw an error if an event emits an error unless there's a listener, attaching a no-op\n // function to it unless user adds their own onError callback\n this.emitter.on(TaskEvents.ERROR, function () { });\n }\n Object.defineProperty(AWSS3UploadTask.prototype, \"percent\", {\n get: function () {\n return (this.bytesUploaded / this.totalBytes) * 100;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(AWSS3UploadTask.prototype, \"isInProgress\", {\n get: function () {\n return this.state === AWSS3UploadTaskState.IN_PROGRESS;\n },\n enumerable: true,\n configurable: true\n });\n AWSS3UploadTask.prototype._listSingleFile = function (_a) {\n var key = _a.key, bucket = _a.bucket;\n return __awaiter(this, void 0, void 0, function () {\n var listObjectRes, _b, Contents, prefix, obj;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, this.s3client.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_0__[\"ListObjectsV2Command\"]({\n Bucket: bucket,\n Prefix: key,\n }))];\n case 1:\n listObjectRes = _c.sent();\n _b = listObjectRes.Contents, Contents = _b === void 0 ? [] : _b;\n return [4 /*yield*/, this.prefixPromise];\n case 2:\n prefix = _c.sent();\n obj = Contents.find(function (o) { return o.Key === \"\" + prefix + key; });\n return [2 /*return*/, obj];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._getFileId = function (level) {\n // We should check if it's a File first because File is also instance of a Blob\n if (Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_3__[\"isFile\"])(this.file)) {\n return [\n this.file.name,\n this.file.lastModified,\n this.file.size,\n this.file.type,\n this.params.Bucket,\n level,\n this.params.Key,\n ].join('-');\n }\n else {\n return [\n this.file.size,\n this.file.type,\n this.params.Bucket,\n level,\n this.params.Key,\n ].join('-');\n }\n };\n AWSS3UploadTask.prototype._findCachedUploadParts = function () {\n return __awaiter(this, void 0, void 0, function () {\n var uploadRequests, cachedUploadFileData, listPartsOutput;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._listCachedUploadTasks()];\n case 1:\n uploadRequests = _a.sent();\n if (Object.keys(uploadRequests).length === 0 ||\n !Object.prototype.hasOwnProperty.call(uploadRequests, this.fileId)) {\n return [2 /*return*/, { parts: [], uploadId: null }];\n }\n cachedUploadFileData = uploadRequests[this.fileId];\n cachedUploadFileData.lastTouched = Date.now();\n this.storage.setItem(_common_StorageConstants__WEBPACK_IMPORTED_MODULE_5__[\"UPLOADS_STORAGE_KEY\"], JSON.stringify(uploadRequests));\n return [4 /*yield*/, this.s3client.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_0__[\"ListPartsCommand\"]({\n Bucket: this.params.Bucket,\n Key: this.params.Key,\n UploadId: cachedUploadFileData.uploadId,\n }))];\n case 2:\n listPartsOutput = _a.sent();\n return [2 /*return*/, {\n parts: listPartsOutput.Parts || [],\n uploadId: cachedUploadFileData.uploadId,\n }];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._emitEvent = function (event, payload) {\n this.emitter.emit(event, payload);\n };\n AWSS3UploadTask.prototype._validateParams = function () {\n if (this.file.size / this.partSize > MAX_PARTS) {\n throw new Error(\"Too many parts. Number of parts is \" + this.file.size /\n this.partSize + \", maximum is \" + MAX_PARTS + \".\");\n }\n };\n AWSS3UploadTask.prototype._listCachedUploadTasks = function () {\n return __awaiter(this, void 0, void 0, function () {\n var tasks;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.storageSync];\n case 1:\n _a.sent();\n tasks = this.storage.getItem(_common_StorageConstants__WEBPACK_IMPORTED_MODULE_5__[\"UPLOADS_STORAGE_KEY\"]) || '{}';\n return [2 /*return*/, JSON.parse(tasks)];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._cache = function (fileMetadata) {\n return __awaiter(this, void 0, void 0, function () {\n var uploadRequests;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._listCachedUploadTasks()];\n case 1:\n uploadRequests = _a.sent();\n uploadRequests[this.fileId] = fileMetadata;\n this.storage.setItem(_common_StorageConstants__WEBPACK_IMPORTED_MODULE_5__[\"UPLOADS_STORAGE_KEY\"], JSON.stringify(uploadRequests));\n return [2 /*return*/];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._isCached = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _a, _b;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n _b = (_a = Object.prototype.hasOwnProperty).call;\n return [4 /*yield*/, this._listCachedUploadTasks()];\n case 1: return [2 /*return*/, _b.apply(_a, [_c.sent(),\n this.fileId])];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._removeFromCache = function () {\n return __awaiter(this, void 0, void 0, function () {\n var uploadRequests;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._listCachedUploadTasks()];\n case 1:\n uploadRequests = _a.sent();\n delete uploadRequests[this.fileId];\n this.storage.setItem(_common_StorageConstants__WEBPACK_IMPORTED_MODULE_5__[\"UPLOADS_STORAGE_KEY\"], JSON.stringify(uploadRequests));\n return [2 /*return*/];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._onPartUploadCompletion = function (_a) {\n var eTag = _a.eTag, partNumber = _a.partNumber, chunk = _a.chunk;\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_b) {\n this.completedParts.push({\n ETag: eTag,\n PartNumber: partNumber,\n });\n this.bytesUploaded += Object(_common_StorageUtils__WEBPACK_IMPORTED_MODULE_3__[\"byteLength\"])(chunk);\n this._emitEvent(TaskEvents.UPLOAD_PROGRESS, {\n loaded: this.bytesUploaded,\n total: this.totalBytes,\n });\n // Remove the completed item from the inProgress array\n this.inProgress = this.inProgress.filter(function (job) { return job.uploadPartInput.PartNumber !== partNumber; });\n if (this.queued.length && this.state !== AWSS3UploadTaskState.PAUSED)\n this._startNextPart();\n if (this._isDone())\n this._completeUpload();\n return [2 /*return*/];\n });\n });\n };\n AWSS3UploadTask.prototype._completeUpload = function () {\n return __awaiter(this, void 0, void 0, function () {\n var err_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.s3client.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_0__[\"CompleteMultipartUploadCommand\"]({\n Bucket: this.params.Bucket,\n Key: this.params.Key,\n UploadId: this.uploadId,\n MultipartUpload: {\n // Parts are not always completed in order, we need to manually sort them\n Parts: this.completedParts.sort(comparePartNumber),\n },\n }))];\n case 1:\n _a.sent();\n this._verifyFileSize();\n this._emitEvent(TaskEvents.UPLOAD_COMPLETE, {\n key: this.params.Bucket + \"/\" + this.params.Key,\n });\n this._removeFromCache();\n this.state = AWSS3UploadTaskState.COMPLETED;\n return [3 /*break*/, 3];\n case 2:\n err_1 = _a.sent();\n logger.error('error completing upload', err_1);\n this._emitEvent(TaskEvents.ERROR, err_1);\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._makeUploadPartRequest = function (input, cancelTokenSource) {\n return __awaiter(this, void 0, void 0, function () {\n var res, err_2;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 3, , 4]);\n return [4 /*yield*/, this.s3client.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_0__[\"UploadPartCommand\"](input), {\n cancelTokenSource: cancelTokenSource,\n })];\n case 1:\n res = _a.sent();\n return [4 /*yield*/, this._onPartUploadCompletion({\n eTag: res.ETag,\n partNumber: input.PartNumber,\n chunk: input.Body,\n })];\n case 2:\n _a.sent();\n return [3 /*break*/, 4];\n case 3:\n err_2 = _a.sent();\n if (this.state === AWSS3UploadTaskState.PAUSED) {\n logger.log('upload paused');\n }\n else if (this.state === AWSS3UploadTaskState.CANCELLED) {\n logger.log('upload aborted');\n }\n else {\n logger.error('error starting next part of upload: ', err_2);\n }\n // axios' cancel will also throw an error, however we don't need to emit an event in that case as it's an\n // expected behavior\n if (!axios__WEBPACK_IMPORTED_MODULE_1___default.a.isCancel(err_2) &&\n err_2.message !== _common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_4__[\"AWSS3ProviderUploadErrorStrings\"].UPLOAD_PAUSED_MESSAGE) {\n this._emitEvent(TaskEvents.ERROR, err_2);\n this.pause();\n }\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._startNextPart = function () {\n if (this.queued.length > 0 && this.state !== AWSS3UploadTaskState.PAUSED) {\n var cancelTokenSource = axios__WEBPACK_IMPORTED_MODULE_1___default.a.CancelToken.source();\n var nextPart = this.queued.shift();\n this.inProgress.push({\n uploadPartInput: nextPart,\n s3Request: this._makeUploadPartRequest(nextPart, cancelTokenSource),\n cancel: cancelTokenSource.cancel,\n });\n }\n };\n /**\n * Verify on S3 side that the file size matches the one on the client side.\n *\n * @async\n * @throws throws an error if the file size does not match between local copy of the file and the file on s3.\n */\n AWSS3UploadTask.prototype._verifyFileSize = function () {\n return __awaiter(this, void 0, void 0, function () {\n var obj, valid;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this._listSingleFile({\n key: this.params.Key,\n bucket: this.params.Bucket,\n })];\n case 1:\n obj = _a.sent();\n valid = Boolean(obj && obj.Size === this.file.size);\n if (!valid) {\n throw new Error('File size does not match between local file and file on s3');\n }\n return [2 /*return*/, valid];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._isDone = function () {\n return (!this.queued.length &&\n !this.inProgress.length &&\n this.bytesUploaded === this.totalBytes);\n };\n AWSS3UploadTask.prototype._createParts = function () {\n var size = this.file.size;\n var parts = [];\n for (var bodyStart = 0; bodyStart < size;) {\n var bodyEnd = Math.min(bodyStart + this.partSize, size);\n parts.push({\n Body: this.file.slice(bodyStart, bodyEnd),\n Key: this.params.Key,\n Bucket: this.params.Bucket,\n PartNumber: parts.length + 1,\n UploadId: this.uploadId,\n });\n bodyStart += this.partSize;\n }\n return parts;\n };\n AWSS3UploadTask.prototype._initCachedUploadParts = function (cachedParts) {\n this.bytesUploaded += cachedParts.reduce(function (acc, part) { return acc + part.Size; }, 0);\n // Find the set of part numbers that have already been uploaded\n var uploadedPartNumSet = new Set(cachedParts.map(function (part) { return part.PartNumber; }));\n this.queued = this.queued.filter(function (part) { return !uploadedPartNumSet.has(part.PartNumber); });\n this.completedParts = cachedParts.map(function (part) { return ({\n PartNumber: part.PartNumber,\n ETag: part.ETag,\n }); });\n this._emitEvent(TaskEvents.UPLOAD_PROGRESS, {\n loaded: this.bytesUploaded,\n total: this.totalBytes,\n });\n };\n AWSS3UploadTask.prototype._initMultipartUpload = function () {\n return __awaiter(this, void 0, void 0, function () {\n var res;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.s3client.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_0__[\"CreateMultipartUploadCommand\"](this.params))];\n case 1:\n res = _a.sent();\n this._cache({\n uploadId: res.UploadId,\n lastTouched: Date.now(),\n bucket: this.params.Bucket,\n key: this.params.Key,\n fileName: this.file instanceof File ? this.file.name : '',\n });\n return [2 /*return*/, res.UploadId];\n }\n });\n });\n };\n AWSS3UploadTask.prototype._initializeUploadTask = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _a, parts, uploadId, uploadId, err_3;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n this.state = AWSS3UploadTaskState.IN_PROGRESS;\n _b.label = 1;\n case 1:\n _b.trys.push([1, 7, , 8]);\n return [4 /*yield*/, this._isCached()];\n case 2:\n if (!_b.sent()) return [3 /*break*/, 4];\n return [4 /*yield*/, this._findCachedUploadParts()];\n case 3:\n _a = _b.sent(), parts = _a.parts, uploadId = _a.uploadId;\n this.uploadId = uploadId;\n this.queued = this._createParts();\n this._initCachedUploadParts(parts);\n this._startUpload();\n return [3 /*break*/, 6];\n case 4:\n if (!!this.uploadId) return [3 /*break*/, 6];\n return [4 /*yield*/, this._initMultipartUpload()];\n case 5:\n uploadId = _b.sent();\n this.uploadId = uploadId;\n this.queued = this._createParts();\n this._startUpload();\n _b.label = 6;\n case 6: return [3 /*break*/, 8];\n case 7:\n err_3 = _b.sent();\n if (!axios__WEBPACK_IMPORTED_MODULE_1___default.a.isCancel(err_3)) {\n logger.error('Error initializing the upload task', err_3);\n }\n return [3 /*break*/, 8];\n case 8: return [2 /*return*/];\n }\n });\n });\n };\n AWSS3UploadTask.prototype.resume = function () {\n if (this.state === AWSS3UploadTaskState.CANCELLED) {\n logger.warn('This task has already been cancelled');\n }\n else if (this.state === AWSS3UploadTaskState.COMPLETED) {\n logger.warn('This task has already been completed');\n }\n else if (this.state === AWSS3UploadTaskState.IN_PROGRESS) {\n logger.warn('Upload task already in progress');\n // first time running resume, find any cached parts on s3 or start a new multipart upload request before\n // starting the upload\n }\n else if (!this.uploadId) {\n this._initializeUploadTask();\n }\n else {\n this._startUpload();\n }\n };\n AWSS3UploadTask.prototype._startUpload = function () {\n this.state = AWSS3UploadTaskState.IN_PROGRESS;\n for (var i = 0; i < this.queueSize; i++) {\n this._startNextPart();\n }\n };\n AWSS3UploadTask.prototype._cancel = function () {\n return __awaiter(this, void 0, void 0, function () {\n var err_4;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(this.state === AWSS3UploadTaskState.CANCELLED)) return [3 /*break*/, 1];\n logger.warn('This task has already been cancelled');\n return [2 /*return*/, false];\n case 1:\n if (!(this.state === AWSS3UploadTaskState.COMPLETED)) return [3 /*break*/, 2];\n logger.warn('This task has already been completed');\n return [2 /*return*/, false];\n case 2:\n this.pause();\n this.queued = [];\n this.completedParts = [];\n this.bytesUploaded = 0;\n this.state = AWSS3UploadTaskState.CANCELLED;\n _a.label = 3;\n case 3:\n _a.trys.push([3, 6, , 7]);\n return [4 /*yield*/, this.s3client.send(new _aws_sdk_client_s3__WEBPACK_IMPORTED_MODULE_0__[\"AbortMultipartUploadCommand\"]({\n Bucket: this.params.Bucket,\n Key: this.params.Key,\n UploadId: this.uploadId,\n }))];\n case 4:\n _a.sent();\n return [4 /*yield*/, this._removeFromCache()];\n case 5:\n _a.sent();\n return [2 /*return*/, true];\n case 6:\n err_4 = _a.sent();\n logger.error('Error cancelling upload task', err_4);\n return [2 /*return*/, false];\n case 7: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * pause this particular upload task\n **/\n AWSS3UploadTask.prototype.pause = function () {\n var _a;\n if (this.state === AWSS3UploadTaskState.CANCELLED) {\n logger.warn('This task has already been cancelled');\n }\n else if (this.state === AWSS3UploadTaskState.COMPLETED) {\n logger.warn('This task has already been completed');\n }\n else if (this.state === AWSS3UploadTaskState.PAUSED) {\n logger.warn('This task is already paused');\n }\n this.state = AWSS3UploadTaskState.PAUSED;\n // Use axios cancel token to abort the part request immediately\n // Add the inProgress parts back to pending\n var removedInProgressReq = this.inProgress.splice(0, this.inProgress.length);\n removedInProgressReq.forEach(function (req) {\n req.cancel(_common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_4__[\"AWSS3ProviderUploadErrorStrings\"].UPLOAD_PAUSED_MESSAGE);\n });\n // Put all removed in progress parts back into the queue\n (_a = this.queued).unshift.apply(_a, __spread(removedInProgressReq.map(function (req) { return req.uploadPartInput; })));\n };\n return AWSS3UploadTask;\n}());\n\n//# sourceMappingURL=AWSS3UploadTask.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3UploadTask.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/providers/axios-http-handler.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/providers/axios-http-handler.js ***! \***********************************************************************************/ /*! exports provided: SEND_UPLOAD_PROGRESS_EVENT, SEND_DOWNLOAD_PROGRESS_EVENT, reactNativeRequestTransformer, AxiosHttpHandler */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SEND_UPLOAD_PROGRESS_EVENT\", function() { return SEND_UPLOAD_PROGRESS_EVENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SEND_DOWNLOAD_PROGRESS_EVENT\", function() { return SEND_DOWNLOAD_PROGRESS_EVENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"reactNativeRequestTransformer\", function() { return reactNativeRequestTransformer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AxiosHttpHandler\", function() { return AxiosHttpHandler; });\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/querystring-builder */ \"./node_modules/@aws-sdk/querystring-builder/dist/es/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! axios */ \"./node_modules/@aws-amplify/storage/node_modules/axios/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../common/StorageErrorStrings */ \"./node_modules/@aws-amplify/storage/lib-esm/common/StorageErrorStrings.js\");\n/*\n * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n\n\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"ConsoleLogger\"]('axios-http-handler');\nvar SEND_UPLOAD_PROGRESS_EVENT = 'sendUploadProgress';\nvar SEND_DOWNLOAD_PROGRESS_EVENT = 'sendDownloadProgress';\nfunction isBlob(body) {\n return typeof Blob !== 'undefined' && body instanceof Blob;\n}\nfunction hasErrorResponse(error) {\n return (typeof error !== 'undefined' &&\n Object.prototype.hasOwnProperty.call(error, 'response') &&\n typeof error.response !== 'undefined' &&\n Object.prototype.hasOwnProperty.call(error.response, 'status') &&\n typeof error.response.status === 'number');\n}\nvar normalizeHeaders = function (headers, normalizedName) {\n var e_1, _a;\n try {\n for (var _b = __values(Object.entries(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var _d = __read(_c.value, 2), k = _d[0], v = _d[1];\n if (k !== normalizedName &&\n k.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = v;\n delete headers[k];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n};\nvar reactNativeRequestTransformer = [\n function (data, headers) {\n if (isBlob(data)) {\n normalizeHeaders(headers, 'Content-Type');\n normalizeHeaders(headers, 'Accept');\n return data;\n }\n // Axios' default transformRequest is an array\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.defaults.transformRequest[0].call(null, data, headers);\n },\n];\nvar AxiosHttpHandler = /** @class */ (function () {\n function AxiosHttpHandler(httpOptions, emitter, cancelTokenSource) {\n if (httpOptions === void 0) { httpOptions = {}; }\n this.httpOptions = httpOptions;\n this.emitter = emitter;\n this.cancelTokenSource = cancelTokenSource;\n }\n AxiosHttpHandler.prototype.destroy = function () {\n // Do nothing. TLS and HTTP/2 connection pooling is handled by the\n // browser.\n };\n AxiosHttpHandler.prototype.handle = function (request, options) {\n var requestTimeoutInMs = this.httpOptions.requestTimeout;\n // prioritize the call specific event emitter, this is useful for multipart upload as each individual parts has\n // their own event emitter, without having to create s3client for every individual calls.\n var emitter = options.emitter || this.emitter;\n var path = request.path;\n if (request.query) {\n var queryString = Object(_aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_1__[\"buildQueryString\"])(request.query);\n if (queryString) {\n path += \"?\" + queryString;\n }\n }\n var port = request.port;\n var url = request.protocol + \"//\" + request.hostname + (port ? \":\" + port : '') + path;\n var axiosRequest = {};\n axiosRequest.url = url;\n axiosRequest.method = request.method;\n axiosRequest.headers = request.headers;\n // The host header is automatically added by the browser and adding it explicitly in the\n // axios request throws an error https://github.com/aws-amplify/amplify-js/issues/5376\n // This is because the host header is a forbidden header for the http client to set\n // see https://developer.mozilla.org/en-US/docs/Glossary/Forbidden_header_name and\n // https://fetch.spec.whatwg.org/#forbidden-header-name\n // The reason we are removing this header here instead of in the aws-sdk's client\n // middleware is that the host header is required to be in the request signature and if\n // we remove it from the middlewares, then the request fails because the header is added\n // by the browser but is absent from the signature.\n delete axiosRequest.headers['host'];\n if (request.body) {\n axiosRequest.data = request.body;\n }\n else {\n // Fix for https://github.com/aws-amplify/amplify-js/issues/5432\n // If the POST request body is empty but content-type header is set, axios is forcibly removing it\n // See https://github.com/axios/axios/issues/1535 and refusing to fix it https://github.com/axios/axios/issues/755\n // This change is a workaround to set the data as null (instead of undefined) to prevent axios from\n // removing the content-type header. Link for the source code\n // https://github.com/axios/axios/blob/dc4bc49673943e35280e5df831f5c3d0347a9393/lib/adapters/xhr.js#L121-L123\n if (axiosRequest.headers[Object.keys(axiosRequest.headers).find(function (key) { return key.toLowerCase() === 'content-type'; })]) {\n axiosRequest.data = null;\n }\n }\n if (emitter) {\n // TODO: Unify linting rules across JS repo\n axiosRequest.onUploadProgress = function (event) {\n emitter.emit(SEND_UPLOAD_PROGRESS_EVENT, event);\n logger.debug(event);\n };\n // TODO: Unify linting rules across JS repo\n axiosRequest.onDownloadProgress = function (event) {\n emitter.emit(SEND_DOWNLOAD_PROGRESS_EVENT, event);\n logger.debug(event);\n };\n }\n // If a cancel token source is passed down from the provider, allows cancellation of in-flight requests\n if (this.cancelTokenSource) {\n axiosRequest.cancelToken = this.cancelTokenSource.token;\n }\n if (options.cancelTokenSource) {\n axiosRequest.cancelToken = options.cancelTokenSource.token;\n }\n // From gamma release, aws-sdk now expects all response type to be of blob or streams\n axiosRequest.responseType = 'blob';\n // In Axios, Blobs are identified by calling Object.prototype.toString on the object. However, on React Native,\n // calling Object.prototype.toString on a Blob returns '[object Object]' instead of '[object Blob]', which causes\n // Axios to treat Blobs as generic Javascript objects. Therefore we need a to use a custom request transformer\n // to correctly handle Blob in React Native.\n if (_aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__[\"Platform\"].isReactNative) {\n axiosRequest.transformRequest = reactNativeRequestTransformer;\n }\n var raceOfPromises = [\n axios__WEBPACK_IMPORTED_MODULE_2___default.a\n .request(axiosRequest)\n .then(function (response) {\n return {\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_0__[\"HttpResponse\"]({\n headers: response.headers,\n statusCode: response.status,\n body: response.data,\n }),\n };\n })\n .catch(function (error) {\n var _a, _b;\n // Error\n if (error.message !==\n _common_StorageErrorStrings__WEBPACK_IMPORTED_MODULE_4__[\"AWSS3ProviderUploadErrorStrings\"].UPLOAD_PAUSED_MESSAGE) {\n logger.error(error.message);\n }\n // for axios' cancel error, we should re-throw it back so it's not considered an s3client error\n // if we return empty, or an abitrary error HttpResponse, it will be hard to debug down the line.\n //\n // for errors that does not have a 'response' object, it's very likely that it is an unexpected error for\n // example a disconnect. Without it we cannot meaningfully reconstruct a HttpResponse, and the AWS SDK might\n // consider the request successful by mistake. In this case we should also re-throw the error.\n if (axios__WEBPACK_IMPORTED_MODULE_2___default.a.isCancel(error) || !hasErrorResponse(error)) {\n throw error;\n }\n // otherwise, we should re-construct an HttpResponse from the error, so that it can be passed down to other\n // aws sdk middleware (e.g retry, clock skew correction, error message serializing)\n return {\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_0__[\"HttpResponse\"]({\n statusCode: error.response.status,\n body: (_a = error.response) === null || _a === void 0 ? void 0 : _a.data,\n headers: (_b = error.response) === null || _b === void 0 ? void 0 : _b.headers,\n }),\n };\n }),\n requestTimeout(requestTimeoutInMs),\n ];\n return Promise.race(raceOfPromises);\n };\n return AxiosHttpHandler;\n}());\n\nfunction requestTimeout(timeoutInMs) {\n if (timeoutInMs === void 0) { timeoutInMs = 0; }\n return new Promise(function (resolve, reject) {\n if (timeoutInMs) {\n setTimeout(function () {\n var timeoutError = new Error(\"Request did not complete within \" + timeoutInMs + \" ms\");\n timeoutError.name = 'TimeoutError';\n reject(timeoutError);\n }, timeoutInMs);\n }\n });\n}\n//# sourceMappingURL=axios-http-handler.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/providers/axios-http-handler.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/lib-esm/providers/index.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/lib-esm/providers/index.js ***! \**********************************************************************/ /*! exports provided: AWSS3Provider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AWSS3Provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AWSS3Provider */ \"./node_modules/@aws-amplify/storage/lib-esm/providers/AWSS3Provider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSS3Provider\", function() { return _AWSS3Provider__WEBPACK_IMPORTED_MODULE_0__[\"AWSS3Provider\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/lib-esm/providers/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/index.js ***! \***********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("module.exports = __webpack_require__(/*! ./lib/axios */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/axios.js\");\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/index.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/adapters/xhr.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/adapters/xhr.js ***! \**********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\nvar settle = __webpack_require__(/*! ./../core/settle */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/settle.js\");\nvar cookies = __webpack_require__(/*! ./../helpers/cookies */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/cookies.js\");\nvar buildURL = __webpack_require__(/*! ./../helpers/buildURL */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/buildURL.js\");\nvar buildFullPath = __webpack_require__(/*! ../core/buildFullPath */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/buildFullPath.js\");\nvar parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/parseHeaders.js\");\nvar isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isURLSameOrigin.js\");\nvar createError = __webpack_require__(/*! ../core/createError */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/createError.js\");\nvar defaults = __webpack_require__(/*! ../defaults */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/defaults.js\");\nvar Cancel = __webpack_require__(/*! ../cancel/Cancel */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/Cancel.js\");\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n var responseType = config.responseType;\n var onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n var fullPath = buildFullPath(config.baseURL, config.url);\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n var response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(createError('Request aborted', config, 'ECONNABORTED', request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n var timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n var transitional = config.transitional || defaults.transitional;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(createError(\n timeoutErrorMessage,\n config,\n transitional.clarifyTimeoutError ? 'ETIMEDOUT' : 'ECONNABORTED',\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = function(cancel) {\n if (!request) {\n return;\n }\n reject(!cancel || (cancel && cancel.type) ? new Cancel('canceled') : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n if (!requestData) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/adapters/xhr.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/axios.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/axios.js ***! \***************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\nvar bind = __webpack_require__(/*! ./helpers/bind */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/bind.js\");\nvar Axios = __webpack_require__(/*! ./core/Axios */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/Axios.js\");\nvar mergeConfig = __webpack_require__(/*! ./core/mergeConfig */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/mergeConfig.js\");\nvar defaults = __webpack_require__(/*! ./defaults */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/defaults.js\");\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Expose Cancel & CancelToken\naxios.Cancel = __webpack_require__(/*! ./cancel/Cancel */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/Cancel.js\");\naxios.CancelToken = __webpack_require__(/*! ./cancel/CancelToken */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/CancelToken.js\");\naxios.isCancel = __webpack_require__(/*! ./cancel/isCancel */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/isCancel.js\");\naxios.VERSION = __webpack_require__(/*! ./env/data */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/env/data.js\").version;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = __webpack_require__(/*! ./helpers/spread */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/spread.js\");\n\n// Expose isAxiosError\naxios.isAxiosError = __webpack_require__(/*! ./helpers/isAxiosError */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isAxiosError.js\");\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/axios.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/Cancel.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/Cancel.js ***! \***********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/Cancel.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/CancelToken.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/CancelToken.js ***! \****************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar Cancel = __webpack_require__(/*! ./Cancel */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/Cancel.js\");\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n\n // eslint-disable-next-line func-names\n this.promise.then(function(cancel) {\n if (!token._listeners) return;\n\n var i;\n var l = token._listeners.length;\n\n for (i = 0; i < l; i++) {\n token._listeners[i](cancel);\n }\n token._listeners = null;\n });\n\n // eslint-disable-next-line func-names\n this.promise.then = function(onfulfilled) {\n var _resolve;\n // eslint-disable-next-line func-names\n var promise = new Promise(function(resolve) {\n token.subscribe(resolve);\n _resolve = resolve;\n }).then(onfulfilled);\n\n promise.cancel = function reject() {\n token.unsubscribe(_resolve);\n };\n\n return promise;\n };\n\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Subscribe to the cancel signal\n */\n\nCancelToken.prototype.subscribe = function subscribe(listener) {\n if (this.reason) {\n listener(this.reason);\n return;\n }\n\n if (this._listeners) {\n this._listeners.push(listener);\n } else {\n this._listeners = [listener];\n }\n};\n\n/**\n * Unsubscribe from the cancel signal\n */\n\nCancelToken.prototype.unsubscribe = function unsubscribe(listener) {\n if (!this._listeners) {\n return;\n }\n var index = this._listeners.indexOf(listener);\n if (index !== -1) {\n this._listeners.splice(index, 1);\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/CancelToken.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/isCancel.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/isCancel.js ***! \*************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/isCancel.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/Axios.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/Axios.js ***! \********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\nvar buildURL = __webpack_require__(/*! ../helpers/buildURL */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/buildURL.js\");\nvar InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/InterceptorManager.js\");\nvar dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/dispatchRequest.js\");\nvar mergeConfig = __webpack_require__(/*! ./mergeConfig */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/mergeConfig.js\");\nvar validator = __webpack_require__(/*! ../helpers/validator */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/validator.js\");\n\nvar validators = validator.validators;\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(configOrUrl, config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof configOrUrl === 'string') {\n config = config || {};\n config.url = configOrUrl;\n } else {\n config = configOrUrl || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n // Set config.method\n if (config.method) {\n config.method = config.method.toLowerCase();\n } else if (this.defaults.method) {\n config.method = this.defaults.method.toLowerCase();\n } else {\n config.method = 'get';\n }\n\n var transitional = config.transitional;\n\n if (transitional !== undefined) {\n validator.assertOptions(transitional, {\n silentJSONParsing: validators.transitional(validators.boolean),\n forcedJSONParsing: validators.transitional(validators.boolean),\n clarifyTimeoutError: validators.transitional(validators.boolean)\n }, false);\n }\n\n // filter out skipped interceptors\n var requestInterceptorChain = [];\n var synchronousRequestInterceptors = true;\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {\n return;\n }\n\n synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;\n\n requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n var responseInterceptorChain = [];\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n var promise;\n\n if (!synchronousRequestInterceptors) {\n var chain = [dispatchRequest, undefined];\n\n Array.prototype.unshift.apply(chain, requestInterceptorChain);\n chain = chain.concat(responseInterceptorChain);\n\n promise = Promise.resolve(config);\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n }\n\n\n var newConfig = config;\n while (requestInterceptorChain.length) {\n var onFulfilled = requestInterceptorChain.shift();\n var onRejected = requestInterceptorChain.shift();\n try {\n newConfig = onFulfilled(newConfig);\n } catch (error) {\n onRejected(error);\n break;\n }\n }\n\n try {\n promise = dispatchRequest(newConfig);\n } catch (error) {\n return Promise.reject(error);\n }\n\n while (responseInterceptorChain.length) {\n promise = promise.then(responseInterceptorChain.shift(), responseInterceptorChain.shift());\n }\n\n return promise;\n};\n\nAxios.prototype.getUri = function getUri(config) {\n config = mergeConfig(this.defaults, config);\n return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\\?/, '');\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/Axios.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/InterceptorManager.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/InterceptorManager.js ***! \*********************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected, options) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected,\n synchronous: options ? options.synchronous : false,\n runWhen: options ? options.runWhen : null\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/InterceptorManager.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/buildFullPath.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/buildFullPath.js ***! \****************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar isAbsoluteURL = __webpack_require__(/*! ../helpers/isAbsoluteURL */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isAbsoluteURL.js\");\nvar combineURLs = __webpack_require__(/*! ../helpers/combineURLs */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/combineURLs.js\");\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n * @returns {string} The combined full path\n */\nmodule.exports = function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/buildFullPath.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/createError.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/createError.js ***! \**************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar enhanceError = __webpack_require__(/*! ./enhanceError */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/enhanceError.js\");\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/createError.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/dispatchRequest.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/dispatchRequest.js ***! \******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\nvar transformData = __webpack_require__(/*! ./transformData */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/transformData.js\");\nvar isCancel = __webpack_require__(/*! ../cancel/isCancel */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/isCancel.js\");\nvar defaults = __webpack_require__(/*! ../defaults */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/defaults.js\");\nvar Cancel = __webpack_require__(/*! ../cancel/Cancel */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/cancel/Cancel.js\");\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new Cancel('canceled');\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData.call(\n config,\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData.call(\n config,\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData.call(\n config,\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/dispatchRequest.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/enhanceError.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/enhanceError.js ***! \***************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n\n error.request = request;\n error.response = response;\n error.isAxiosError = true;\n\n error.toJSON = function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n };\n return error;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/enhanceError.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/mergeConfig.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/mergeConfig.js ***! \**************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n * @returns {Object} New object resulting from merging config2 to config1\n */\nmodule.exports = function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n var config = {};\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDirectKeys(prop) {\n if (prop in config2) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n var mergeMap = {\n 'url': valueFromConfig2,\n 'method': valueFromConfig2,\n 'data': valueFromConfig2,\n 'baseURL': defaultToConfig2,\n 'transformRequest': defaultToConfig2,\n 'transformResponse': defaultToConfig2,\n 'paramsSerializer': defaultToConfig2,\n 'timeout': defaultToConfig2,\n 'timeoutMessage': defaultToConfig2,\n 'withCredentials': defaultToConfig2,\n 'adapter': defaultToConfig2,\n 'responseType': defaultToConfig2,\n 'xsrfCookieName': defaultToConfig2,\n 'xsrfHeaderName': defaultToConfig2,\n 'onUploadProgress': defaultToConfig2,\n 'onDownloadProgress': defaultToConfig2,\n 'decompress': defaultToConfig2,\n 'maxContentLength': defaultToConfig2,\n 'maxBodyLength': defaultToConfig2,\n 'transport': defaultToConfig2,\n 'httpAgent': defaultToConfig2,\n 'httpsAgent': defaultToConfig2,\n 'cancelToken': defaultToConfig2,\n 'socketPath': defaultToConfig2,\n 'responseEncoding': defaultToConfig2,\n 'validateStatus': mergeDirectKeys\n };\n\n utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {\n var merge = mergeMap[prop] || mergeDeepProperties;\n var configValue = merge(prop);\n (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);\n });\n\n return config;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/mergeConfig.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/settle.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/settle.js ***! \*********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar createError = __webpack_require__(/*! ./createError */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/createError.js\");\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/settle.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/transformData.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/transformData.js ***! \****************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\nvar defaults = __webpack_require__(/*! ./../defaults */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/defaults.js\");\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n var context = this || defaults;\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn.call(context, data, headers);\n });\n\n return data;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/transformData.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/defaults.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/defaults.js ***! \******************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/* WEBPACK VAR INJECTION */(function(process) {\n\nvar utils = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\nvar normalizeHeaderName = __webpack_require__(/*! ./helpers/normalizeHeaderName */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/normalizeHeaderName.js\");\nvar enhanceError = __webpack_require__(/*! ./core/enhanceError */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/core/enhanceError.js\");\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = __webpack_require__(/*! ./adapters/xhr */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/adapters/xhr.js\");\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = __webpack_require__(/*! ./adapters/http */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/adapters/xhr.js\");\n }\n return adapter;\n}\n\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nvar defaults = {\n\n transitional: {\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n },\n\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data) || (headers && headers['Content-Type'] === 'application/json')) {\n setContentTypeIfUnset(headers, 'application/json');\n return stringifySafely(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n var transitional = this.transitional || defaults.transitional;\n var silentJSONParsing = transitional && transitional.silentJSONParsing;\n var forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n var strictJSONParsing = !silentJSONParsing && this.responseType === 'json';\n\n if (strictJSONParsing || (forcedJSONParsing && utils.isString(data) && data.length)) {\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw enhanceError(e, this, 'E_JSON_PARSE');\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../node-libs-browser/mock/process.js */ \"./node_modules/node-libs-browser/mock/process.js\")))\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/defaults.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/env/data.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/env/data.js ***! \******************************************************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("module.exports = {\n \"version\": \"0.26.0\"\n};\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/env/data.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/bind.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/bind.js ***! \**********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/bind.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/buildURL.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/buildURL.js ***! \**************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n var hashmarkIndex = url.indexOf('#');\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/buildURL.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/combineURLs.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/combineURLs.js ***! \*****************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/combineURLs.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/cookies.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/cookies.js ***! \*************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/cookies.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isAbsoluteURL.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isAbsoluteURL.js ***! \*******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isAbsoluteURL.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isAxiosError.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isAxiosError.js ***! \******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nmodule.exports = function isAxiosError(payload) {\n return utils.isObject(payload) && (payload.isAxiosError === true);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isAxiosError.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isURLSameOrigin.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isURLSameOrigin.js ***! \*********************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/isURLSameOrigin.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/normalizeHeaderName.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/normalizeHeaderName.js ***! \*************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/normalizeHeaderName.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/parseHeaders.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/parseHeaders.js ***! \******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./../utils */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js\");\n\n// Headers whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nvar ignoreDuplicateOf = [\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n];\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {\n return;\n }\n if (key === 'set-cookie') {\n parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n }\n });\n\n return parsed;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/parseHeaders.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/spread.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/spread.js ***! \************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/spread.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/validator.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/validator.js ***! \***************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar VERSION = __webpack_require__(/*! ../env/data */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/env/data.js\").version;\n\nvar validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach(function(type, i) {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nvar deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return function(value, opt, opts) {\n if (validator === false) {\n throw new Error(formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')));\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new TypeError('options must be an object');\n }\n var keys = Object.keys(options);\n var i = keys.length;\n while (i-- > 0) {\n var opt = keys[i];\n var validator = schema[opt];\n if (validator) {\n var value = options[opt];\n var result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new TypeError('option ' + opt + ' must be ' + result);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw Error('Unknown option ' + opt);\n }\n }\n}\n\nmodule.exports = {\n assertOptions: assertOptions,\n validators: validators\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/validator.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js ***! \***************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar bind = __webpack_require__(/*! ./helpers/bind */ \"./node_modules/@aws-amplify/storage/node_modules/axios/lib/helpers/bind.js\");\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return Array.isArray(val);\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return toString.call(val) === '[object FormData]';\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {Object} val The value to test\n * @return {boolean} True if value is a plain Object, otherwise false\n */\nfunction isPlainObject(val) {\n if (toString.call(val) !== '[object Object]') {\n return false;\n }\n\n var prototype = Object.getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return toString.call(val) === '[object URLSearchParams]';\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.trim ? str.trim() : str.replace(/^\\s+|\\s+$/g, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||\n navigator.product === 'NativeScript' ||\n navigator.product === 'NS')) {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n * @return {string} content value without BOM\n */\nfunction stripBOM(content) {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isPlainObject: isPlainObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim,\n stripBOM: stripBOM\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/storage/node_modules/axios/lib/utils.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/ui/dist/aws-amplify-ui.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-amplify/ui/dist/aws-amplify-ui.js ***! \*************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("!function(t,_){ true?module.exports=_():undefined}(this,(function(){return function(t){var _={};function n(o){if(_[o])return _[o].exports;var e=_[o]={i:o,l:!1,exports:{}};return t[o].call(e.exports,e,e.exports,n),e.l=!0,e.exports}return n.m=t,n.c=_,n.d=function(t,_,o){n.o(t,_)||Object.defineProperty(t,_,{enumerable:!0,get:o})},n.r=function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})},n.t=function(t,_){if(1&_&&(t=n(t)),8&_)return t;if(4&_&&\"object\"==typeof t&&t&&t.__esModule)return t;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,\"default\",{enumerable:!0,value:t}),2&_&&\"string\"!=typeof t)for(var e in t)n.d(o,e,function(_){return t[_]}.bind(null,e));return o},n.n=function(t){var _=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(_,\"a\",_),_},n.o=function(t,_){return Object.prototype.hasOwnProperty.call(t,_)},n.p=\"\",n(n.s=0)}([function(t,_,n){\"use strict\";function o(t){for(var n in t)_.hasOwnProperty(n)||(_[n]=t[n])}Object.defineProperty(_,\"__esModule\",{value:!0}),o(n(1)),o(n(2)),o(n(3)),o(n(4)),o(n(5)),o(n(6)),o(n(7)),o(n(8)),o(n(9)),o(n(10)),o(n(11)),o(n(12)),o(n(13))},function(t,_,n){t.exports={a:\"Anchor__a___1_Iz8\"}},function(t,_,n){t.exports={button:\"Button__button___vS7Mv\",signInButton:\"Button__signInButton___3bUH-\",googleSignInButton:\"Button__googleSignInButton___1YiCu\",signInButtonIcon:\"Button__signInButtonIcon___ihN75\",auth0SignInButton:\"Button__auth0SignInButton___znnCj\",facebookSignInButton:\"Button__facebookSignInButton___34Txh\",amazonSignInButton:\"Button__amazonSignInButton___2EMtl\",oAuthSignInButton:\"Button__oAuthSignInButton___3UGOl\",signInButtonContent:\"Button__signInButtonContent___xqTXJ\"}},function(t,_,n){t.exports={formContainer:\"Form__formContainer___1GA3x\",formSection:\"Form__formSection___1PPvW\",formField:\"Form__formField___38Ikl\",formRow:\"Form__formRow___2mwRs\"}},function(t,_,n){t.exports={hint:\"Hint__hint___2XngB\"}},function(t,_,n){t.exports={input:\"Input__input___3e_bf\",inputLabel:\"Input__inputLabel___3VF0S\",label:\"Input__label___23sO8\",radio:\"Input__radio___2hllK\"}},function(t,_,n){t.exports={navBar:\"Nav__navBar___xtCFA\",navRight:\"Nav__navRight___1QG2J\",nav:\"Nav__nav___2Dx2Y\",navItem:\"Nav__navItem___1LtFQ\"}},function(t,_,n){t.exports={photoPickerButton:\"PhotoPicker__photoPickerButton___2XdVn\",photoPlaceholder:\"PhotoPicker__photoPlaceholder___2JXO4\",photoPlaceholderIcon:\"PhotoPicker__photoPlaceholderIcon___3Et71\"}},function(t,_,n){t.exports={container:\"Section__container___3YYTG\",actionRow:\"Section__actionRow___2LWSU\",sectionHeader:\"Section__sectionHeader___2djyg\",sectionHeaderHint:\"Section__sectionHeaderHint___3Wxdc\",sectionBody:\"Section__sectionBody___ihqqd\",sectionHeaderContent:\"Section__sectionHeaderContent___1UCqa\",sectionFooter:\"Section__sectionFooter___1T54C\",sectionFooterPrimaryContent:\"Section__sectionFooterPrimaryContent___2r9ZX\",sectionFooterSecondaryContent:\"Section__sectionFooterSecondaryContent___Nj41Q\"}},function(t,_,n){t.exports={selectInput:\"SelectInput__selectInput___3efO4\"}},function(t,_,n){t.exports={strike:\"Strike__strike___1XV1b\",strikeContent:\"Strike__strikeContent___10gLb\"}},function(t,_,n){t.exports={toast:\"Toast__toast___XXr3v\",toastClose:\"Toast__toastClose___18lU4\"}},function(t,_,n){t.exports={totpQrcode:\"Totp__totpQrcode___1crLx\"}},function(t,_,n){t.exports={sumerianSceneContainer:\"XR__sumerianSceneContainer___3nVMt\",sumerianScene:\"XR__sumerianScene___2Tt7-\",loadingOverlay:\"XR__loadingOverlay___IbqcI\",loadingContainer:\"XR__loadingContainer___2Itxb\",loadingLogo:\"XR__loadingLogo___Ub7xQ\",loadingSceneName:\"XR__loadingSceneName___3__ne\",loadingBar:\"XR__loadingBar___2vcke\",loadingBarFill:\"XR__loadingBarFill___3M-D9\",sceneErrorText:\"XR__sceneErrorText___2y0tp\",sceneBar:\"XR__sceneBar___2ShrP\",sceneName:\"XR__sceneName___1ApHr\",sceneActions:\"XR__sceneActions___7plGs\",actionButton:\"XR__actionButton___2poIM\",tooltip:\"XR__tooltip___UYyhn\",actionIcon:\"XR__actionIcon___2qnd2\",autoShowTooltip:\"XR__autoShowTooltip___V1QH7\"}}])}));\n//# sourceMappingURL=aws-amplify-ui.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/ui/dist/aws-amplify-ui.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/xr/lib-esm/Errors.js": /*!********************************************************!*\ !*** ./node_modules/@aws-amplify/xr/lib-esm/Errors.js ***! \********************************************************/ /*! exports provided: XRError, XRNoSceneConfiguredError, XRSceneNotFoundError, XRSceneNotLoadedError, XRNoDomElement, XRSceneLoadFailure, XRProviderNotConfigured */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XRError\", function() { return XRError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XRNoSceneConfiguredError\", function() { return XRNoSceneConfiguredError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XRSceneNotFoundError\", function() { return XRSceneNotFoundError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XRSceneNotLoadedError\", function() { return XRSceneNotLoadedError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XRNoDomElement\", function() { return XRNoDomElement; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XRSceneLoadFailure\", function() { return XRSceneLoadFailure; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XRProviderNotConfigured\", function() { return XRProviderNotConfigured; });\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar XRError = /** @class */ (function (_super) {\n __extends(XRError, _super);\n function XRError() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return XRError;\n}(Error));\n\nvar XRNoSceneConfiguredError = /** @class */ (function (_super) {\n __extends(XRNoSceneConfiguredError, _super);\n function XRNoSceneConfiguredError() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return XRNoSceneConfiguredError;\n}(XRError));\n\nvar XRSceneNotFoundError = /** @class */ (function (_super) {\n __extends(XRSceneNotFoundError, _super);\n function XRSceneNotFoundError() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return XRSceneNotFoundError;\n}(XRError));\n\nvar XRSceneNotLoadedError = /** @class */ (function (_super) {\n __extends(XRSceneNotLoadedError, _super);\n function XRSceneNotLoadedError() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return XRSceneNotLoadedError;\n}(XRError));\n\nvar XRNoDomElement = /** @class */ (function (_super) {\n __extends(XRNoDomElement, _super);\n function XRNoDomElement() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return XRNoDomElement;\n}(XRError));\n\nvar XRSceneLoadFailure = /** @class */ (function (_super) {\n __extends(XRSceneLoadFailure, _super);\n function XRSceneLoadFailure() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return XRSceneLoadFailure;\n}(XRError));\n\nvar XRProviderNotConfigured = /** @class */ (function (_super) {\n __extends(XRProviderNotConfigured, _super);\n function XRProviderNotConfigured() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return XRProviderNotConfigured;\n}(XRError));\n\n//# sourceMappingURL=Errors.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/xr/lib-esm/Errors.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/xr/lib-esm/Providers/SumerianProvider.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-amplify/xr/lib-esm/Providers/SumerianProvider.js ***! \****************************************************************************/ /*! exports provided: SumerianProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SumerianProvider\", function() { return SumerianProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _XRProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./XRProvider */ \"./node_modules/@aws-amplify/xr/lib-esm/Providers/XRProvider.js\");\n/* harmony import */ var _Errors__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Errors */ \"./node_modules/@aws-amplify/xr/lib-esm/Errors.js\");\nvar __extends = (undefined && undefined.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __values = (undefined && undefined.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n};\n/*\n * Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\nvar SUMERIAN_SERVICE_NAME = 'sumerian';\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('SumerianProvider');\nvar SumerianProvider = /** @class */ (function (_super) {\n __extends(SumerianProvider, _super);\n function SumerianProvider(options) {\n if (options === void 0) { options = {}; }\n return _super.call(this, options) || this;\n }\n SumerianProvider.prototype.getProviderName = function () {\n return 'SumerianProvider';\n };\n SumerianProvider.prototype.loadScript = function (url) {\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n return [2 /*return*/, new Promise(function (resolve, reject) {\n var scriptElement = document.createElement('script');\n scriptElement.src = url;\n scriptElement.addEventListener('load', function (event) {\n resolve();\n });\n scriptElement.addEventListener('error', function (event) {\n reject(new Error(\"Failed to load script: \" + url));\n });\n document.head.appendChild(scriptElement);\n })];\n });\n });\n };\n SumerianProvider.prototype.loadScene = function (sceneName, domElementId, sceneOptions) {\n return __awaiter(this, void 0, void 0, function () {\n var errorMsg, errorMsg, element, errorMsg, scene, errorMsg, sceneUrl, sceneId, sceneRegion, errorMsg, awsSDKConfigOverride, fetchOptions, url, credentials, accessInfo, serviceInfo, request, e_1, apiResponse, apiResponseJson, sceneBundleData, sceneBundle, sceneBundleJson, error_1, progressCallback, publishParamOverrides, sceneLoadParams, sceneController, _a, _b, warning;\n var e_2, _c;\n return __generator(this, function (_d) {\n switch (_d.label) {\n case 0:\n if (!sceneName) {\n errorMsg = 'No scene name passed into loadScene';\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneLoadFailure\"](errorMsg);\n }\n if (!domElementId) {\n errorMsg = 'No dom element id passed into loadScene';\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRNoDomElement\"](errorMsg);\n }\n element = document.getElementById(domElementId);\n if (!element) {\n errorMsg = \"DOM element id, \" + domElementId + \" not found\";\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRNoDomElement\"](errorMsg);\n }\n scene = this.getScene(sceneName);\n if (!scene.sceneConfig) {\n errorMsg = \"No scene config configured for scene: \" + sceneName;\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneLoadFailure\"](errorMsg);\n }\n sceneUrl = scene.sceneConfig.url;\n sceneId = scene.sceneConfig.sceneId;\n if (scene.sceneConfig.hasOwnProperty('region')) {\n // Use the scene region on the Sumerian scene configuration\n sceneRegion = scene.sceneConfig.region;\n }\n else if (this.options.hasOwnProperty('region')) {\n // Use the scene region on the XR category configuration\n sceneRegion = this.options.region;\n }\n else {\n errorMsg = \"No region configured for scene: \" + sceneName;\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneLoadFailure\"](errorMsg);\n }\n awsSDKConfigOverride = {\n region: sceneRegion,\n // This is passed to the AWS clients created in\n // Sumerian's AwsSystem\n // This helps other services(like Lex and Polly) to track\n // traffic coming from Sumerian scenes embedded with Amplify\n customUserAgent: _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Constants\"].userAgent + \"-SumerianScene\",\n };\n fetchOptions = {\n headers: {\n // This sets the AWS user agent string\n // So the Sumerian service knows this request is\n // from Amplify\n 'X-Amz-User-Agent': _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Constants\"].userAgent,\n },\n };\n url = sceneUrl;\n _d.label = 1;\n case 1:\n _d.trys.push([1, 3, , 4]);\n return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"].get()];\n case 2:\n credentials = _d.sent();\n awsSDKConfigOverride['credentials'] = credentials;\n accessInfo = {\n secret_key: credentials.secretAccessKey,\n access_key: credentials.accessKeyId,\n session_token: credentials.sessionToken,\n };\n serviceInfo = {\n region: sceneRegion,\n service: SUMERIAN_SERVICE_NAME,\n };\n request = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Signer\"].sign({ method: 'GET', url: sceneUrl }, accessInfo, serviceInfo);\n fetchOptions.headers = __assign(__assign({}, fetchOptions.headers), request.headers);\n url = request.url;\n return [3 /*break*/, 4];\n case 3:\n e_1 = _d.sent();\n logger.debug('No credentials available, the request will be unsigned');\n return [3 /*break*/, 4];\n case 4: return [4 /*yield*/, fetch(url, fetchOptions)];\n case 5:\n apiResponse = _d.sent();\n return [4 /*yield*/, apiResponse.json()];\n case 6:\n apiResponseJson = _d.sent();\n if (apiResponse.status === 403) {\n if (apiResponseJson.message) {\n logger.error(\"Failure to authenticate user: \" + apiResponseJson.message);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneLoadFailure\"](\"Failure to authenticate user: \" + apiResponseJson.message);\n }\n else {\n logger.error(\"Failure to authenticate user\");\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneLoadFailure\"](\"Failure to authenticate user\");\n }\n }\n sceneBundleData = apiResponseJson.bundleData[sceneId];\n return [4 /*yield*/, fetch(sceneBundleData.url, {\n headers: sceneBundleData.headers,\n })];\n case 7:\n sceneBundle = _d.sent();\n return [4 /*yield*/, sceneBundle.json()];\n case 8:\n sceneBundleJson = _d.sent();\n _d.label = 9;\n case 9:\n _d.trys.push([9, 11, , 12]);\n // Load the Sumerian bootstrapper script into the DOM\n return [4 /*yield*/, this.loadScript(sceneBundleJson[sceneId].bootstrapperUrl)];\n case 10:\n // Load the Sumerian bootstrapper script into the DOM\n _d.sent();\n return [3 /*break*/, 12];\n case 11:\n error_1 = _d.sent();\n logger.error(error_1);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneLoadFailure\"](error_1);\n case 12:\n progressCallback = sceneOptions.progressCallback\n ? sceneOptions.progressCallback\n : undefined;\n publishParamOverrides = scene.publishParamOverrides\n ? scene.publishParamOverrides\n : undefined;\n sceneLoadParams = {\n element: element,\n sceneId: sceneId,\n sceneBundle: sceneBundleJson,\n apiResponse: apiResponseJson,\n progressCallback: progressCallback,\n publishParamOverrides: publishParamOverrides,\n awsSDKConfigOverride: awsSDKConfigOverride,\n };\n return [4 /*yield*/, window.SumerianBootstrapper.loadScene(sceneLoadParams)];\n case 13:\n sceneController = _d.sent();\n scene.sceneController = sceneController;\n scene.isLoaded = true;\n try {\n // Log scene warnings\n for (_a = __values(sceneController.sceneLoadWarnings), _b = _a.next(); !_b.done; _b = _a.next()) {\n warning = _b.value;\n logger.warn(\"loadScene warning: \" + warning);\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_b && !_b.done && (_c = _a.return)) _c.call(_a);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return [2 /*return*/];\n }\n });\n });\n };\n SumerianProvider.prototype.isSceneLoaded = function (sceneName) {\n var scene = this.getScene(sceneName);\n return scene.isLoaded || false;\n };\n SumerianProvider.prototype.getScene = function (sceneName) {\n if (!this.options.scenes) {\n var errorMsg = 'No scenes were defined in the configuration';\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRNoSceneConfiguredError\"](errorMsg);\n }\n if (!sceneName) {\n var errorMsg = 'No scene name was passed';\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneNotFoundError\"](errorMsg);\n }\n if (!this.options.scenes[sceneName]) {\n var errorMsg = \"Scene '\" + sceneName + \"' is not configured\";\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneNotFoundError\"](errorMsg);\n }\n return this.options.scenes[sceneName];\n };\n SumerianProvider.prototype.getSceneController = function (sceneName) {\n if (!this.options.scenes) {\n var errorMsg = 'No scenes were defined in the configuration';\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRNoSceneConfiguredError\"](errorMsg);\n }\n var scene = this.options.scenes[sceneName];\n if (!scene) {\n var errorMsg = \"Scene '\" + sceneName + \"' is not configured\";\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneNotFoundError\"](errorMsg);\n }\n var sceneController = scene.sceneController;\n if (!sceneController) {\n var errorMsg = \"Scene controller for '\" + sceneName + \"' has not been loaded\";\n logger.error(errorMsg);\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneNotLoadedError\"](errorMsg);\n }\n return sceneController;\n };\n SumerianProvider.prototype.isVRCapable = function (sceneName) {\n var sceneController = this.getSceneController(sceneName);\n return sceneController.vrCapable;\n };\n SumerianProvider.prototype.isVRPresentationActive = function (sceneName) {\n var sceneController = this.getSceneController(sceneName);\n return sceneController.vrPresentationActive;\n };\n SumerianProvider.prototype.start = function (sceneName) {\n var sceneController = this.getSceneController(sceneName);\n sceneController.start();\n };\n SumerianProvider.prototype.enterVR = function (sceneName) {\n var sceneController = this.getSceneController(sceneName);\n sceneController.enterVR();\n };\n SumerianProvider.prototype.exitVR = function (sceneName) {\n var sceneController = this.getSceneController(sceneName);\n sceneController.exitVR();\n };\n SumerianProvider.prototype.isMuted = function (sceneName) {\n var sceneController = this.getSceneController(sceneName);\n return sceneController.muted;\n };\n SumerianProvider.prototype.setMuted = function (sceneName, muted) {\n var sceneController = this.getSceneController(sceneName);\n sceneController.muted = muted;\n };\n SumerianProvider.prototype.onSceneEvent = function (sceneName, eventName, eventHandler) {\n var sceneController = this.getSceneController(sceneName);\n sceneController.on(eventName, eventHandler);\n };\n SumerianProvider.prototype.enableAudio = function (sceneName) {\n var sceneController = this.getSceneController(sceneName);\n sceneController.enableAudio();\n };\n return SumerianProvider;\n}(_XRProvider__WEBPACK_IMPORTED_MODULE_1__[\"AbstractXRProvider\"]));\n\n//# sourceMappingURL=SumerianProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/xr/lib-esm/Providers/SumerianProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/xr/lib-esm/Providers/XRProvider.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-amplify/xr/lib-esm/Providers/XRProvider.js ***! \**********************************************************************/ /*! exports provided: AbstractXRProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbstractXRProvider\", function() { return AbstractXRProvider; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('AbstractXRProvider');\nvar AbstractXRProvider = /** @class */ (function () {\n function AbstractXRProvider(options) {\n if (options === void 0) { options = {}; }\n this._config = options;\n }\n AbstractXRProvider.prototype.configure = function (config) {\n if (config === void 0) { config = {}; }\n this._config = __assign(__assign({}, config), this._config);\n logger.debug(\"configure \" + this.getProviderName(), this._config);\n return this.options;\n };\n AbstractXRProvider.prototype.getCategory = function () {\n return 'XR';\n };\n Object.defineProperty(AbstractXRProvider.prototype, \"options\", {\n get: function () {\n return __assign({}, this._config);\n },\n enumerable: true,\n configurable: true\n });\n return AbstractXRProvider;\n}());\n\n//# sourceMappingURL=XRProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/xr/lib-esm/Providers/XRProvider.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/xr/lib-esm/XR.js": /*!****************************************************!*\ !*** ./node_modules/@aws-amplify/xr/lib-esm/XR.js ***! \****************************************************/ /*! exports provided: XRClass, XR */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XRClass\", function() { return XRClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XR\", function() { return XR; });\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _Providers_SumerianProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Providers/SumerianProvider */ \"./node_modules/@aws-amplify/xr/lib-esm/Providers/SumerianProvider.js\");\n/* harmony import */ var _Errors__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Errors */ \"./node_modules/@aws-amplify/xr/lib-esm/Errors.js\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n 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;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __read = (undefined && undefined.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n};\n/*\n * Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\nvar logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]('XR');\nvar DEFAULT_PROVIDER_NAME = 'SumerianProvider';\nvar XRClass = /** @class */ (function () {\n /**\n * Initialize XR with AWS configurations\n *\n * @param {XROptions} options - Configuration object for XR\n */\n function XRClass(options) {\n this._options = options;\n logger.debug('XR Options', this._options);\n this._defaultProvider = DEFAULT_PROVIDER_NAME;\n this._pluggables = {};\n // Add default provider\n this.addPluggable(new _Providers_SumerianProvider__WEBPACK_IMPORTED_MODULE_1__[\"SumerianProvider\"]());\n }\n /**\n * Configure XR part with configurations\n *\n * @param {XROptions} config - Configuration for XR\n * @return {Object} - The current configuration\n */\n XRClass.prototype.configure = function (options) {\n var _this = this;\n var opt = options ? options.XR || options : {};\n logger.debug('configure XR', { opt: opt });\n this._options = Object.assign({}, this._options, opt);\n Object.entries(this._pluggables).map(function (_a) {\n var _b = __read(_a, 2), name = _b[0], provider = _b[1];\n if (name === _this._defaultProvider && !opt[_this._defaultProvider]) {\n provider.configure(_this._options);\n }\n else {\n provider.configure(_this._options[name]);\n }\n });\n return this._options;\n };\n /**\n * add plugin into XR category\n * @param {Object} pluggable - an instance of the plugin\n */\n XRClass.prototype.addPluggable = function (pluggable) {\n return __awaiter(this, void 0, void 0, function () {\n var config;\n return __generator(this, function (_a) {\n if (pluggable && pluggable.getCategory() === 'XR') {\n this._pluggables[pluggable.getProviderName()] = pluggable;\n config = pluggable.configure(this._options);\n return [2 /*return*/, config];\n }\n return [2 /*return*/];\n });\n });\n };\n XRClass.prototype.loadScene = function (sceneName, domElementId, sceneOptions, provider) {\n if (sceneOptions === void 0) { sceneOptions = {}; }\n if (provider === void 0) { provider = this._defaultProvider; }\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return [4 /*yield*/, this._pluggables[provider].loadScene(sceneName, domElementId, sceneOptions)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n XRClass.prototype.isSceneLoaded = function (sceneName, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].isSceneLoaded(sceneName);\n };\n XRClass.prototype.getSceneController = function (sceneName, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].getSceneController(sceneName);\n };\n XRClass.prototype.isVRCapable = function (sceneName, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].isVRCapable(sceneName);\n };\n XRClass.prototype.isVRPresentationActive = function (sceneName, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].isVRPresentationActive(sceneName);\n };\n XRClass.prototype.start = function (sceneName, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].start(sceneName);\n };\n XRClass.prototype.enterVR = function (sceneName, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].enterVR(sceneName);\n };\n XRClass.prototype.exitVR = function (sceneName, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].exitVR(sceneName);\n };\n XRClass.prototype.isMuted = function (sceneName, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].isMuted(sceneName);\n };\n XRClass.prototype.setMuted = function (sceneName, muted, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].setMuted(sceneName, muted);\n };\n XRClass.prototype.onSceneEvent = function (sceneName, eventName, eventHandler, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].onSceneEvent(sceneName, eventName, eventHandler);\n };\n XRClass.prototype.enableAudio = function (sceneName, provider) {\n if (provider === void 0) { provider = this._defaultProvider; }\n if (!this._pluggables[provider])\n throw new _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"](\"Provider '\" + provider + \"' not configured\");\n return this._pluggables[provider].enableAudio(sceneName);\n };\n return XRClass;\n}());\n\nvar XR = new XRClass(null);\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"].register(XR);\n//# sourceMappingURL=XR.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/xr/lib-esm/XR.js?"); /***/ }), /***/ "./node_modules/@aws-amplify/xr/lib-esm/index.js": /*!*******************************************************!*\ !*** ./node_modules/@aws-amplify/xr/lib-esm/index.js ***! \*******************************************************/ /*! exports provided: XR, default, SumerianProvider, XRError, XRNoSceneConfiguredError, XRSceneNotFoundError, XRSceneNotLoadedError, XRNoDomElement, XRSceneLoadFailure, XRProviderNotConfigured */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _XR__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./XR */ \"./node_modules/@aws-amplify/xr/lib-esm/XR.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XR\", function() { return _XR__WEBPACK_IMPORTED_MODULE_0__[\"XR\"]; });\n\n/* harmony import */ var _Providers_SumerianProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Providers/SumerianProvider */ \"./node_modules/@aws-amplify/xr/lib-esm/Providers/SumerianProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SumerianProvider\", function() { return _Providers_SumerianProvider__WEBPACK_IMPORTED_MODULE_1__[\"SumerianProvider\"]; });\n\n/* harmony import */ var _Errors__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Errors */ \"./node_modules/@aws-amplify/xr/lib-esm/Errors.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XRError\", function() { return _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XRNoSceneConfiguredError\", function() { return _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRNoSceneConfiguredError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XRSceneNotFoundError\", function() { return _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneNotFoundError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XRSceneNotLoadedError\", function() { return _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneNotLoadedError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XRNoDomElement\", function() { return _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRNoDomElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XRSceneLoadFailure\", function() { return _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRSceneLoadFailure\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XRProviderNotConfigured\", function() { return _Errors__WEBPACK_IMPORTED_MODULE_2__[\"XRProviderNotConfigured\"]; });\n\n/*\n * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_XR__WEBPACK_IMPORTED_MODULE_0__[\"XR\"]);\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-amplify/xr/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/crc32/build/aws_crc32.js": /*!***********************************************************!*\ !*** ./node_modules/@aws-crypto/crc32/build/aws_crc32.js ***! \***********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.AwsCrc32 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/index.js\");\nvar index_1 = __webpack_require__(/*! ./index */ \"./node_modules/@aws-crypto/crc32/build/index.js\");\nvar AwsCrc32 = /** @class */ (function () {\n function AwsCrc32() {\n this.crc32 = new index_1.Crc32();\n }\n AwsCrc32.prototype.update = function (toHash) {\n if ((0, util_1.isEmptyData)(toHash))\n return;\n this.crc32.update((0, util_1.convertToBuffer)(toHash));\n };\n AwsCrc32.prototype.digest = function () {\n return (0, tslib_1.__awaiter)(this, void 0, void 0, function () {\n return (0, tslib_1.__generator)(this, function (_a) {\n return [2 /*return*/, (0, util_1.numToUint8)(this.crc32.digest())];\n });\n });\n };\n return AwsCrc32;\n}());\nexports.AwsCrc32 = AwsCrc32;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXdzX2NyYzMyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2F3c19jcmMzMi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0VBQW9FO0FBQ3BFLHNDQUFzQzs7OztBQUd0Qyx5Q0FBNEU7QUFDNUUsaUNBQWdDO0FBRWhDO0lBQUE7UUFDbUIsVUFBSyxHQUFHLElBQUksYUFBSyxFQUFFLENBQUM7SUFXdkMsQ0FBQztJQVRDLHlCQUFNLEdBQU4sVUFBTyxNQUFrQjtRQUN2QixJQUFJLElBQUEsa0JBQVcsRUFBQyxNQUFNLENBQUM7WUFBRSxPQUFPO1FBRWhDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLElBQUEsc0JBQWUsRUFBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO0lBQzdDLENBQUM7SUFFSyx5QkFBTSxHQUFaOzs7Z0JBQ0Usc0JBQU8sSUFBQSxpQkFBVSxFQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLENBQUMsRUFBQzs7O0tBQ3hDO0lBQ0gsZUFBQztBQUFELENBQUMsQUFaRCxJQVlDO0FBWlksNEJBQVEiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBDb3B5cmlnaHQgQW1hem9uLmNvbSBJbmMuIG9yIGl0cyBhZmZpbGlhdGVzLiBBbGwgUmlnaHRzIFJlc2VydmVkLlxuLy8gU1BEWC1MaWNlbnNlLUlkZW50aWZpZXI6IEFwYWNoZS0yLjBcblxuaW1wb3J0IHsgSGFzaCwgU291cmNlRGF0YSB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuaW1wb3J0IHsgY29udmVydFRvQnVmZmVyLCBpc0VtcHR5RGF0YSwgbnVtVG9VaW50OCB9IGZyb20gXCJAYXdzLWNyeXB0by91dGlsXCI7XG5pbXBvcnQgeyBDcmMzMiB9IGZyb20gXCIuL2luZGV4XCI7XG5cbmV4cG9ydCBjbGFzcyBBd3NDcmMzMiBpbXBsZW1lbnRzIEhhc2gge1xuICBwcml2YXRlIHJlYWRvbmx5IGNyYzMyID0gbmV3IENyYzMyKCk7XG5cbiAgdXBkYXRlKHRvSGFzaDogU291cmNlRGF0YSkge1xuICAgIGlmIChpc0VtcHR5RGF0YSh0b0hhc2gpKSByZXR1cm47XG5cbiAgICB0aGlzLmNyYzMyLnVwZGF0ZShjb252ZXJ0VG9CdWZmZXIodG9IYXNoKSk7XG4gIH1cblxuICBhc3luYyBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIG51bVRvVWludDgodGhpcy5jcmMzMi5kaWdlc3QoKSk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/crc32/build/aws_crc32.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/crc32/build/index.js": /*!*******************************************************!*\ !*** ./node_modules/@aws-crypto/crc32/build/index.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.AwsCrc32 = exports.Crc32 = exports.crc32 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/index.js\");\nfunction crc32(data) {\n return new Crc32().update(data).digest();\n}\nexports.crc32 = crc32;\nvar Crc32 = /** @class */ (function () {\n function Crc32() {\n this.checksum = 0xffffffff;\n }\n Crc32.prototype.update = function (data) {\n var e_1, _a;\n try {\n for (var data_1 = (0, tslib_1.__values)(data), data_1_1 = data_1.next(); !data_1_1.done; data_1_1 = data_1.next()) {\n var byte = data_1_1.value;\n this.checksum =\n (this.checksum >>> 8) ^ lookupTable[(this.checksum ^ byte) & 0xff];\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (data_1_1 && !data_1_1.done && (_a = data_1.return)) _a.call(data_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return this;\n };\n Crc32.prototype.digest = function () {\n return (this.checksum ^ 0xffffffff) >>> 0;\n };\n return Crc32;\n}());\nexports.Crc32 = Crc32;\n// prettier-ignore\nvar a_lookUpTable = [\n 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA,\n 0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3,\n 0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988,\n 0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91,\n 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE,\n 0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7,\n 0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC,\n 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5,\n 0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172,\n 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B,\n 0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940,\n 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59,\n 0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116,\n 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F,\n 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924,\n 0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D,\n 0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A,\n 0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433,\n 0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818,\n 0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01,\n 0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E,\n 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457,\n 0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C,\n 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65,\n 0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2,\n 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB,\n 0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0,\n 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9,\n 0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086,\n 0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F,\n 0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4,\n 0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD,\n 0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A,\n 0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683,\n 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8,\n 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1,\n 0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE,\n 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7,\n 0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC,\n 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5,\n 0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252,\n 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B,\n 0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60,\n 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79,\n 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236,\n 0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F,\n 0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04,\n 0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D,\n 0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A,\n 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713,\n 0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38,\n 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21,\n 0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E,\n 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777,\n 0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C,\n 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45,\n 0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2,\n 0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB,\n 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0,\n 0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9,\n 0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6,\n 0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF,\n 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94,\n 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D,\n];\nvar lookupTable = (0, util_1.uint32ArrayFrom)(a_lookUpTable);\nvar aws_crc32_1 = __webpack_require__(/*! ./aws_crc32 */ \"./node_modules/@aws-crypto/crc32/build/aws_crc32.js\");\nObject.defineProperty(exports, \"AwsCrc32\", { enumerable: true, get: function () { return aws_crc32_1.AwsCrc32; } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHlDQUFpRDtBQUVqRCxTQUFnQixLQUFLLENBQUMsSUFBZ0I7SUFDcEMsT0FBTyxJQUFJLEtBQUssRUFBRSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxNQUFNLEVBQUUsQ0FBQztBQUMzQyxDQUFDO0FBRkQsc0JBRUM7QUFFRDtJQUFBO1FBQ1UsYUFBUSxHQUFHLFVBQVUsQ0FBQztJQWNoQyxDQUFDO0lBWkMsc0JBQU0sR0FBTixVQUFPLElBQWdCOzs7WUFDckIsS0FBbUIsSUFBQSxTQUFBLHNCQUFBLElBQUksQ0FBQSwwQkFBQSw0Q0FBRTtnQkFBcEIsSUFBTSxJQUFJLGlCQUFBO2dCQUNiLElBQUksQ0FBQyxRQUFRO29CQUNYLENBQUMsSUFBSSxDQUFDLFFBQVEsS0FBSyxDQUFDLENBQUMsR0FBRyxXQUFXLENBQUMsQ0FBQyxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDO2FBQ3RFOzs7Ozs7Ozs7UUFFRCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFFRCxzQkFBTSxHQUFOO1FBQ0UsT0FBTyxDQUFDLElBQUksQ0FBQyxRQUFRLEdBQUcsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzVDLENBQUM7SUFDSCxZQUFDO0FBQUQsQ0FBQyxBQWZELElBZUM7QUFmWSxzQkFBSztBQWlCbEIsa0JBQWtCO0FBQ2xCLElBQU0sYUFBYSxHQUFHO0lBQ3BCLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7Q0FDL0MsQ0FBQztBQUNGLElBQU0sV0FBVyxHQUFnQixJQUFBLHNCQUFlLEVBQUMsYUFBYSxDQUFDLENBQUE7QUFDL0QseUNBQXVDO0FBQTlCLHFHQUFBLFFBQVEsT0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7dWludDMyQXJyYXlGcm9tfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuXG5leHBvcnQgZnVuY3Rpb24gY3JjMzIoZGF0YTogVWludDhBcnJheSk6IG51bWJlciB7XG4gIHJldHVybiBuZXcgQ3JjMzIoKS51cGRhdGUoZGF0YSkuZGlnZXN0KCk7XG59XG5cbmV4cG9ydCBjbGFzcyBDcmMzMiB7XG4gIHByaXZhdGUgY2hlY2tzdW0gPSAweGZmZmZmZmZmO1xuXG4gIHVwZGF0ZShkYXRhOiBVaW50OEFycmF5KTogdGhpcyB7XG4gICAgZm9yIChjb25zdCBieXRlIG9mIGRhdGEpIHtcbiAgICAgIHRoaXMuY2hlY2tzdW0gPVxuICAgICAgICAodGhpcy5jaGVja3N1bSA+Pj4gOCkgXiBsb29rdXBUYWJsZVsodGhpcy5jaGVja3N1bSBeIGJ5dGUpICYgMHhmZl07XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXM7XG4gIH1cblxuICBkaWdlc3QoKTogbnVtYmVyIHtcbiAgICByZXR1cm4gKHRoaXMuY2hlY2tzdW0gXiAweGZmZmZmZmZmKSA+Pj4gMDtcbiAgfVxufVxuXG4vLyBwcmV0dGllci1pZ25vcmVcbmNvbnN0IGFfbG9va1VwVGFibGUgPSBbXG4gIDB4MDAwMDAwMDAsIDB4NzcwNzMwOTYsIDB4RUUwRTYxMkMsIDB4OTkwOTUxQkEsXG4gIDB4MDc2REM0MTksIDB4NzA2QUY0OEYsIDB4RTk2M0E1MzUsIDB4OUU2NDk1QTMsXG4gIDB4MEVEQjg4MzIsIDB4NzlEQ0I4QTQsIDB4RTBENUU5MUUsIDB4OTdEMkQ5ODgsXG4gIDB4MDlCNjRDMkIsIDB4N0VCMTdDQkQsIDB4RTdCODJEMDcsIDB4OTBCRjFEOTEsXG4gIDB4MURCNzEwNjQsIDB4NkFCMDIwRjIsIDB4RjNCOTcxNDgsIDB4ODRCRTQxREUsXG4gIDB4MUFEQUQ0N0QsIDB4NkREREU0RUIsIDB4RjRENEI1NTEsIDB4ODNEMzg1QzcsXG4gIDB4MTM2Qzk4NTYsIDB4NjQ2QkE4QzAsIDB4RkQ2MkY5N0EsIDB4OEE2NUM5RUMsXG4gIDB4MTQwMTVDNEYsIDB4NjMwNjZDRDksIDB4RkEwRjNENjMsIDB4OEQwODBERjUsXG4gIDB4M0I2RTIwQzgsIDB4NEM2OTEwNUUsIDB4RDU2MDQxRTQsIDB4QTI2NzcxNzIsXG4gIDB4M0MwM0U0RDEsIDB4NEIwNEQ0NDcsIDB4RDIwRDg1RkQsIDB4QTUwQUI1NkIsXG4gIDB4MzVCNUE4RkEsIDB4NDJCMjk4NkMsIDB4REJCQkM5RDYsIDB4QUNCQ0Y5NDAsXG4gIDB4MzJEODZDRTMsIDB4NDVERjVDNzUsIDB4RENENjBEQ0YsIDB4QUJEMTNENTksXG4gIDB4MjZEOTMwQUMsIDB4NTFERTAwM0EsIDB4QzhENzUxODAsIDB4QkZEMDYxMTYsXG4gIDB4MjFCNEY0QjUsIDB4NTZCM0M0MjMsIDB4Q0ZCQTk1OTksIDB4QjhCREE1MEYsXG4gIDB4MjgwMkI4OUUsIDB4NUYwNTg4MDgsIDB4QzYwQ0Q5QjIsIDB4QjEwQkU5MjQsXG4gIDB4MkY2RjdDODcsIDB4NTg2ODRDMTEsIDB4QzE2MTFEQUIsIDB4QjY2NjJEM0QsXG4gIDB4NzZEQzQxOTAsIDB4MDFEQjcxMDYsIDB4OThEMjIwQkMsIDB4RUZENTEwMkEsXG4gIDB4NzFCMTg1ODksIDB4MDZCNkI1MUYsIDB4OUZCRkU0QTUsIDB4RThCOEQ0MzMsXG4gIDB4NzgwN0M5QTIsIDB4MEYwMEY5MzQsIDB4OTYwOUE4OEUsIDB4RTEwRTk4MTgsXG4gIDB4N0Y2QTBEQkIsIDB4MDg2RDNEMkQsIDB4OTE2NDZDOTcsIDB4RTY2MzVDMDEsXG4gIDB4NkI2QjUxRjQsIDB4MUM2QzYxNjIsIDB4ODU2NTMwRDgsIDB4RjI2MjAwNEUsXG4gIDB4NkMwNjk1RUQsIDB4MUIwMUE1N0IsIDB4ODIwOEY0QzEsIDB4RjUwRkM0NTcsXG4gIDB4NjVCMEQ5QzYsIDB4MTJCN0U5NTAsIDB4OEJCRUI4RUEsIDB4RkNCOTg4N0MsXG4gIDB4NjJERDFEREYsIDB4MTVEQTJENDksIDB4OENEMzdDRjMsIDB4RkJENDRDNjUsXG4gIDB4NERCMjYxNTgsIDB4M0FCNTUxQ0UsIDB4QTNCQzAwNzQsIDB4RDRCQjMwRTIsXG4gIDB4NEFERkE1NDEsIDB4M0REODk1RDcsIDB4QTREMUM0NkQsIDB4RDNENkY0RkIsXG4gIDB4NDM2OUU5NkEsIDB4MzQ2RUQ5RkMsIDB4QUQ2Nzg4NDYsIDB4REE2MEI4RDAsXG4gIDB4NDQwNDJENzMsIDB4MzMwMzFERTUsIDB4QUEwQTRDNUYsIDB4REQwRDdDQzksXG4gIDB4NTAwNTcxM0MsIDB4MjcwMjQxQUEsIDB4QkUwQjEwMTAsIDB4QzkwQzIwODYsXG4gIDB4NTc2OEI1MjUsIDB4MjA2Rjg1QjMsIDB4Qjk2NkQ0MDksIDB4Q0U2MUU0OUYsXG4gIDB4NUVERUY5MEUsIDB4MjlEOUM5OTgsIDB4QjBEMDk4MjIsIDB4QzdEN0E4QjQsXG4gIDB4NTlCMzNEMTcsIDB4MkVCNDBEODEsIDB4QjdCRDVDM0IsIDB4QzBCQTZDQUQsXG4gIDB4RURCODgzMjAsIDB4OUFCRkIzQjYsIDB4MDNCNkUyMEMsIDB4NzRCMUQyOUEsXG4gIDB4RUFENTQ3MzksIDB4OUREMjc3QUYsIDB4MDREQjI2MTUsIDB4NzNEQzE2ODMsXG4gIDB4RTM2MzBCMTIsIDB4OTQ2NDNCODQsIDB4MEQ2RDZBM0UsIDB4N0E2QTVBQTgsXG4gIDB4RTQwRUNGMEIsIDB4OTMwOUZGOUQsIDB4MEEwMEFFMjcsIDB4N0QwNzlFQjEsXG4gIDB4RjAwRjkzNDQsIDB4ODcwOEEzRDIsIDB4MUUwMUYyNjgsIDB4NjkwNkMyRkUsXG4gIDB4Rjc2MjU3NUQsIDB4ODA2NTY3Q0IsIDB4MTk2QzM2NzEsIDB4NkU2QjA2RTcsXG4gIDB4RkVENDFCNzYsIDB4ODlEMzJCRTAsIDB4MTBEQTdBNUEsIDB4NjdERDRBQ0MsXG4gIDB4RjlCOURGNkYsIDB4OEVCRUVGRjksIDB4MTdCN0JFNDMsIDB4NjBCMDhFRDUsXG4gIDB4RDZENkEzRTgsIDB4QTFEMTkzN0UsIDB4MzhEOEMyQzQsIDB4NEZERkYyNTIsXG4gIDB4RDFCQjY3RjEsIDB4QTZCQzU3NjcsIDB4M0ZCNTA2REQsIDB4NDhCMjM2NEIsXG4gIDB4RDgwRDJCREEsIDB4QUYwQTFCNEMsIDB4MzYwMzRBRjYsIDB4NDEwNDdBNjAsXG4gIDB4REY2MEVGQzMsIDB4QTg2N0RGNTUsIDB4MzE2RThFRUYsIDB4NDY2OUJFNzksXG4gIDB4Q0I2MUIzOEMsIDB4QkM2NjgzMUEsIDB4MjU2RkQyQTAsIDB4NTI2OEUyMzYsXG4gIDB4Q0MwQzc3OTUsIDB4QkIwQjQ3MDMsIDB4MjIwMjE2QjksIDB4NTUwNTI2MkYsXG4gIDB4QzVCQTNCQkUsIDB4QjJCRDBCMjgsIDB4MkJCNDVBOTIsIDB4NUNCMzZBMDQsXG4gIDB4QzJEN0ZGQTcsIDB4QjVEMENGMzEsIDB4MkNEOTlFOEIsIDB4NUJERUFFMUQsXG4gIDB4OUI2NEMyQjAsIDB4RUM2M0YyMjYsIDB4NzU2QUEzOUMsIDB4MDI2RDkzMEEsXG4gIDB4OUMwOTA2QTksIDB4RUIwRTM2M0YsIDB4NzIwNzY3ODUsIDB4MDUwMDU3MTMsXG4gIDB4OTVCRjRBODIsIDB4RTJCODdBMTQsIDB4N0JCMTJCQUUsIDB4MENCNjFCMzgsXG4gIDB4OTJEMjhFOUIsIDB4RTVENUJFMEQsIDB4N0NEQ0VGQjcsIDB4MEJEQkRGMjEsXG4gIDB4ODZEM0QyRDQsIDB4RjFENEUyNDIsIDB4NjhEREIzRjgsIDB4MUZEQTgzNkUsXG4gIDB4ODFCRTE2Q0QsIDB4RjZCOTI2NUIsIDB4NkZCMDc3RTEsIDB4MThCNzQ3NzcsXG4gIDB4ODgwODVBRTYsIDB4RkYwRjZBNzAsIDB4NjYwNjNCQ0EsIDB4MTEwMTBCNUMsXG4gIDB4OEY2NTlFRkYsIDB4Rjg2MkFFNjksIDB4NjE2QkZGRDMsIDB4MTY2Q0NGNDUsXG4gIDB4QTAwQUUyNzgsIDB4RDcwREQyRUUsIDB4NEUwNDgzNTQsIDB4MzkwM0IzQzIsXG4gIDB4QTc2NzI2NjEsIDB4RDA2MDE2RjcsIDB4NDk2OTQ3NEQsIDB4M0U2RTc3REIsXG4gIDB4QUVEMTZBNEEsIDB4RDlENjVBREMsIDB4NDBERjBCNjYsIDB4MzdEODNCRjAsXG4gIDB4QTlCQ0FFNTMsIDB4REVCQjlFQzUsIDB4NDdCMkNGN0YsIDB4MzBCNUZGRTksXG4gIDB4QkRCREYyMUMsIDB4Q0FCQUMyOEEsIDB4NTNCMzkzMzAsIDB4MjRCNEEzQTYsXG4gIDB4QkFEMDM2MDUsIDB4Q0RENzA2OTMsIDB4NTRERTU3MjksIDB4MjNEOTY3QkYsXG4gIDB4QjM2NjdBMkUsIDB4QzQ2MTRBQjgsIDB4NUQ2ODFCMDIsIDB4MkE2RjJCOTQsXG4gIDB4QjQwQkJFMzcsIDB4QzMwQzhFQTEsIDB4NUEwNURGMUIsIDB4MkQwMkVGOEQsXG5dO1xuY29uc3QgbG9va3VwVGFibGU6IFVpbnQzMkFycmF5ID0gdWludDMyQXJyYXlGcm9tKGFfbG9va1VwVGFibGUpXG5leHBvcnQgeyBBd3NDcmMzMiB9IGZyb20gXCIuL2F3c19jcmMzMlwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/crc32/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/convertToBuffer.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/convertToBuffer.js ***! \***********************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/* WEBPACK VAR INJECTION */(function(Buffer) {\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.convertToBuffer = void 0;\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n// Quick polyfill\nvar fromUtf8 = typeof Buffer !== \"undefined\" && Buffer.from\n ? function (input) { return Buffer.from(input, \"utf8\"); }\n : util_utf8_browser_1.fromUtf8;\nfunction convertToBuffer(data) {\n // Already a Uint8, do nothing\n if (data instanceof Uint8Array)\n return data;\n if (typeof data === \"string\") {\n return fromUtf8(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\nexports.convertToBuffer = convertToBuffer;\n//# sourceMappingURL=convertToBuffer.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/convertToBuffer.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/index.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/index.js ***! \*************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = exports.numToUint8 = exports.isEmptyData = exports.convertToBuffer = void 0;\nvar convertToBuffer_1 = __webpack_require__(/*! ./convertToBuffer */ \"./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/convertToBuffer.js\");\nObject.defineProperty(exports, \"convertToBuffer\", { enumerable: true, get: function () { return convertToBuffer_1.convertToBuffer; } });\nvar isEmptyData_1 = __webpack_require__(/*! ./isEmptyData */ \"./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/isEmptyData.js\");\nObject.defineProperty(exports, \"isEmptyData\", { enumerable: true, get: function () { return isEmptyData_1.isEmptyData; } });\nvar numToUint8_1 = __webpack_require__(/*! ./numToUint8 */ \"./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/numToUint8.js\");\nObject.defineProperty(exports, \"numToUint8\", { enumerable: true, get: function () { return numToUint8_1.numToUint8; } });\nvar uint32ArrayFrom_1 = __webpack_require__(/*! ./uint32ArrayFrom */ \"./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js\");\nObject.defineProperty(exports, \"uint32ArrayFrom\", { enumerable: true, get: function () { return uint32ArrayFrom_1.uint32ArrayFrom; } });\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/isEmptyData.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/isEmptyData.js ***! \*******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isEmptyData = void 0;\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nexports.isEmptyData = isEmptyData;\n//# sourceMappingURL=isEmptyData.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/isEmptyData.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/numToUint8.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/numToUint8.js ***! \******************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.numToUint8 = void 0;\nfunction numToUint8(num) {\n return new Uint8Array([\n (num & 0xff000000) >> 24,\n (num & 0x00ff0000) >> 16,\n (num & 0x0000ff00) >> 8,\n num & 0x000000ff,\n ]);\n}\nexports.numToUint8 = numToUint8;\n//# sourceMappingURL=numToUint8.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/numToUint8.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js ***! \***********************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = void 0;\n// IE 11 does not support Array.from, so we do it manually\nfunction uint32ArrayFrom(a_lookUpTable) {\n if (!Uint32Array.from) {\n var return_array = new Uint32Array(a_lookUpTable.length);\n var a_index = 0;\n while (a_index < a_lookUpTable.length) {\n return_array[a_index] = a_lookUpTable[a_index];\n a_index += 1;\n }\n return return_array;\n }\n return Uint32Array.from(a_lookUpTable);\n}\nexports.uint32ArrayFrom = uint32ArrayFrom;\n//# sourceMappingURL=uint32ArrayFrom.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/crc32/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js ***! \**************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=CryptoOperation.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/ie11-detection/build/Key.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-crypto/ie11-detection/build/Key.js ***! \**************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=Key.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/ie11-detection/build/Key.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js ***! \***********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=KeyOperation.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js ***! \*************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=MsSubtleCrypto.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/ie11-detection/build/MsWindow.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-crypto/ie11-detection/build/MsWindow.js ***! \*******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isMsWindow = void 0;\nvar msSubtleCryptoMethods = [\n \"decrypt\",\n \"digest\",\n \"encrypt\",\n \"exportKey\",\n \"generateKey\",\n \"importKey\",\n \"sign\",\n \"verify\"\n];\nfunction quacksLikeAnMsWindow(window) {\n return \"MSInputMethodContext\" in window && \"msCrypto\" in window;\n}\n/**\n * Determines if the provided window is (or is like) the window object one would\n * expect to encounter in Internet Explorer 11.\n */\nfunction isMsWindow(window) {\n if (quacksLikeAnMsWindow(window) && window.msCrypto.subtle !== undefined) {\n var _a = window.msCrypto, getRandomValues = _a.getRandomValues, subtle_1 = _a.subtle;\n return msSubtleCryptoMethods\n .map(function (methodName) { return subtle_1[methodName]; })\n .concat(getRandomValues)\n .every(function (method) { return typeof method === \"function\"; });\n }\n return false;\n}\nexports.isMsWindow = isMsWindow;\n//# sourceMappingURL=MsWindow.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/ie11-detection/build/MsWindow.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/ie11-detection/build/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-crypto/ie11-detection/build/index.js ***! \****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\ntslib_1.__exportStar(__webpack_require__(/*! ./CryptoOperation */ \"./node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./Key */ \"./node_modules/@aws-crypto/ie11-detection/build/Key.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./KeyOperation */ \"./node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./MsSubtleCrypto */ \"./node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./MsWindow */ \"./node_modules/@aws-crypto/ie11-detection/build/MsWindow.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/ie11-detection/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/build/constants.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/build/constants.js ***! \********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EMPTY_DATA_SHA_256 = exports.SHA_256_HMAC_ALGO = exports.SHA_256_HASH = void 0;\nexports.SHA_256_HASH = { name: \"SHA-256\" };\nexports.SHA_256_HMAC_ALGO = {\n name: \"HMAC\",\n hash: exports.SHA_256_HASH\n};\nexports.EMPTY_DATA_SHA_256 = new Uint8Array([\n 227,\n 176,\n 196,\n 66,\n 152,\n 252,\n 28,\n 20,\n 154,\n 251,\n 244,\n 200,\n 153,\n 111,\n 185,\n 36,\n 39,\n 174,\n 65,\n 228,\n 100,\n 155,\n 147,\n 76,\n 164,\n 149,\n 153,\n 27,\n 120,\n 82,\n 184,\n 85\n]);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBYSxRQUFBLFlBQVksR0FBd0IsRUFBRSxJQUFJLEVBQUUsU0FBUyxFQUFFLENBQUM7QUFFeEQsUUFBQSxpQkFBaUIsR0FBZ0Q7SUFDNUUsSUFBSSxFQUFFLE1BQU07SUFDWixJQUFJLEVBQUUsb0JBQVk7Q0FDbkIsQ0FBQztBQUVXLFFBQUEsa0JBQWtCLEdBQUcsSUFBSSxVQUFVLENBQUM7SUFDL0MsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEVBQUU7SUFDRixHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEVBQUU7SUFDRixHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxFQUFFO0lBQ0YsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxFQUFFO0lBQ0YsR0FBRztJQUNILEVBQUU7Q0FDSCxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgU0hBXzI1Nl9IQVNIOiB7IG5hbWU6IFwiU0hBLTI1NlwiIH0gPSB7IG5hbWU6IFwiU0hBLTI1NlwiIH07XG5cbmV4cG9ydCBjb25zdCBTSEFfMjU2X0hNQUNfQUxHTzogeyBuYW1lOiBcIkhNQUNcIjsgaGFzaDogeyBuYW1lOiBcIlNIQS0yNTZcIiB9IH0gPSB7XG4gIG5hbWU6IFwiSE1BQ1wiLFxuICBoYXNoOiBTSEFfMjU2X0hBU0hcbn07XG5cbmV4cG9ydCBjb25zdCBFTVBUWV9EQVRBX1NIQV8yNTYgPSBuZXcgVWludDhBcnJheShbXG4gIDIyNyxcbiAgMTc2LFxuICAxOTYsXG4gIDY2LFxuICAxNTIsXG4gIDI1MixcbiAgMjgsXG4gIDIwLFxuICAxNTQsXG4gIDI1MSxcbiAgMjQ0LFxuICAyMDAsXG4gIDE1MyxcbiAgMTExLFxuICAxODUsXG4gIDM2LFxuICAzOSxcbiAgMTc0LFxuICA2NSxcbiAgMjI4LFxuICAxMDAsXG4gIDE1NSxcbiAgMTQ3LFxuICA3NixcbiAgMTY0LFxuICAxNDksXG4gIDE1MyxcbiAgMjcsXG4gIDEyMCxcbiAgODIsXG4gIDE4NCxcbiAgODVcbl0pO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/build/constants.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js ***! \******************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar ie11Sha256_1 = __webpack_require__(/*! ./ie11Sha256 */ \"./node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js\");\nvar webCryptoSha256_1 = __webpack_require__(/*! ./webCryptoSha256 */ \"./node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js\");\nvar sha256_js_1 = __webpack_require__(/*! @aws-crypto/sha256-js */ \"./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/index.js\");\nvar supports_web_crypto_1 = __webpack_require__(/*! @aws-crypto/supports-web-crypto */ \"./node_modules/@aws-crypto/supports-web-crypto/build/index.js\");\nvar ie11_detection_1 = __webpack_require__(/*! @aws-crypto/ie11-detection */ \"./node_modules/@aws-crypto/ie11-detection/build/index.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n if ((0, supports_web_crypto_1.supportsWebCrypto)((0, util_locate_window_1.locateWindow)())) {\n this.hash = new webCryptoSha256_1.Sha256(secret);\n }\n else if ((0, ie11_detection_1.isMsWindow)((0, util_locate_window_1.locateWindow)())) {\n this.hash = new ie11Sha256_1.Sha256(secret);\n }\n else {\n this.hash = new sha256_js_1.Sha256(secret);\n }\n }\n Sha256.prototype.update = function (data, encoding) {\n this.hash.update(data, encoding);\n };\n Sha256.prototype.digest = function () {\n return this.hash.digest();\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3Jvc3NQbGF0Zm9ybVNoYTI1Ni5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9jcm9zc1BsYXRmb3JtU2hhMjU2LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDJDQUFvRDtBQUNwRCxxREFBOEQ7QUFDOUQsbURBQTJEO0FBRTNELHVFQUFvRTtBQUNwRSw2REFBd0Q7QUFDeEQsa0VBQTJEO0FBRTNEO0lBR0UsZ0JBQVksTUFBbUI7UUFDN0IsSUFBSSxJQUFBLHVDQUFpQixFQUFDLElBQUEsaUNBQVksR0FBRSxDQUFDLEVBQUU7WUFDckMsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLHdCQUFlLENBQUMsTUFBTSxDQUFDLENBQUM7U0FDekM7YUFBTSxJQUFJLElBQUEsMkJBQVUsRUFBQyxJQUFBLGlDQUFZLEdBQUUsQ0FBQyxFQUFFO1lBQ3JDLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxtQkFBVSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1NBQ3BDO2FBQU07WUFDTCxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksa0JBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQztTQUNsQztJQUNILENBQUM7SUFFRCx1QkFBTSxHQUFOLFVBQU8sSUFBZ0IsRUFBRSxRQUFzQztRQUM3RCxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsUUFBUSxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVELHVCQUFNLEdBQU47UUFDRSxPQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDNUIsQ0FBQztJQUNILGFBQUM7QUFBRCxDQUFDLEFBcEJELElBb0JDO0FBcEJZLHdCQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2hhMjU2IGFzIEllMTFTaGEyNTYgfSBmcm9tIFwiLi9pZTExU2hhMjU2XCI7XG5pbXBvcnQgeyBTaGEyNTYgYXMgV2ViQ3J5cHRvU2hhMjU2IH0gZnJvbSBcIi4vd2ViQ3J5cHRvU2hhMjU2XCI7XG5pbXBvcnQgeyBTaGEyNTYgYXMgSnNTaGEyNTYgfSBmcm9tIFwiQGF3cy1jcnlwdG8vc2hhMjU2LWpzXCI7XG5pbXBvcnQgeyBIYXNoLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBzdXBwb3J0c1dlYkNyeXB0byB9IGZyb20gXCJAYXdzLWNyeXB0by9zdXBwb3J0cy13ZWItY3J5cHRvXCI7XG5pbXBvcnQgeyBpc01zV2luZG93IH0gZnJvbSBcIkBhd3MtY3J5cHRvL2llMTEtZGV0ZWN0aW9uXCI7XG5pbXBvcnQgeyBsb2NhdGVXaW5kb3cgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC1sb2NhdGUtd2luZG93XCI7XG5cbmV4cG9ydCBjbGFzcyBTaGEyNTYgaW1wbGVtZW50cyBIYXNoIHtcbiAgcHJpdmF0ZSByZWFkb25seSBoYXNoOiBIYXNoO1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc3VwcG9ydHNXZWJDcnlwdG8obG9jYXRlV2luZG93KCkpKSB7XG4gICAgICB0aGlzLmhhc2ggPSBuZXcgV2ViQ3J5cHRvU2hhMjU2KHNlY3JldCk7XG4gICAgfSBlbHNlIGlmIChpc01zV2luZG93KGxvY2F0ZVdpbmRvdygpKSkge1xuICAgICAgdGhpcy5oYXNoID0gbmV3IEllMTFTaGEyNTYoc2VjcmV0KTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5oYXNoID0gbmV3IEpzU2hhMjU2KHNlY3JldCk7XG4gICAgfVxuICB9XG5cbiAgdXBkYXRlKGRhdGE6IFNvdXJjZURhdGEsIGVuY29kaW5nPzogXCJ1dGY4XCIgfCBcImFzY2lpXCIgfCBcImxhdGluMVwiKTogdm9pZCB7XG4gICAgdGhpcy5oYXNoLnVwZGF0ZShkYXRhLCBlbmNvZGluZyk7XG4gIH1cblxuICBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMuaGFzaC5kaWdlc3QoKTtcbiAgfVxufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js ***! \*********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar isEmptyData_1 = __webpack_require__(/*! ./isEmptyData */ \"./node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-crypto/sha256-browser/build/constants.js\");\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n if (secret) {\n this.operation = getKeyPromise(secret).then(function (keyData) {\n return (0, util_locate_window_1.locateWindow)().msCrypto.subtle.sign(constants_1.SHA_256_HMAC_ALGO, keyData);\n });\n this.operation.catch(function () { });\n }\n else {\n this.operation = Promise.resolve((0, util_locate_window_1.locateWindow)().msCrypto.subtle.digest(\"SHA-256\"));\n }\n }\n Sha256.prototype.update = function (toHash) {\n var _this = this;\n if ((0, isEmptyData_1.isEmptyData)(toHash)) {\n return;\n }\n this.operation = this.operation.then(function (operation) {\n operation.onerror = function () {\n _this.operation = Promise.reject(new Error(\"Error encountered updating hash\"));\n };\n operation.process(toArrayBufferView(toHash));\n return operation;\n });\n this.operation.catch(function () { });\n };\n Sha256.prototype.digest = function () {\n return this.operation.then(function (operation) {\n return new Promise(function (resolve, reject) {\n operation.onerror = function () {\n reject(new Error(\"Error encountered finalizing hash\"));\n };\n operation.oncomplete = function () {\n if (operation.result) {\n resolve(new Uint8Array(operation.result));\n }\n reject(new Error(\"Error encountered finalizing hash\"));\n };\n operation.finish();\n });\n });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\nfunction getKeyPromise(secret) {\n return new Promise(function (resolve, reject) {\n var keyOperation = (0, util_locate_window_1.locateWindow)().msCrypto.subtle.importKey(\"raw\", toArrayBufferView(secret), constants_1.SHA_256_HMAC_ALGO, false, [\"sign\"]);\n keyOperation.oncomplete = function () {\n if (keyOperation.result) {\n resolve(keyOperation.result);\n }\n reject(new Error(\"ImportKey completed without importing key.\"));\n };\n keyOperation.onerror = function () {\n reject(new Error(\"ImportKey failed to import key.\"));\n };\n });\n}\nfunction toArrayBufferView(data) {\n if (typeof data === \"string\") {\n return (0, util_utf8_browser_1.fromUtf8)(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWUxMVNoYTI1Ni5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9pZTExU2hhMjU2LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDZDQUE0QztBQUM1Qyx5Q0FBZ0Q7QUFFaEQsZ0VBQXNEO0FBRXRELGtFQUEyRDtBQUUzRDtJQUdFLGdCQUFZLE1BQW1CO1FBQzdCLElBQUksTUFBTSxFQUFFO1lBQ1YsSUFBSSxDQUFDLFNBQVMsR0FBRyxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQUEsT0FBTztnQkFDakQsT0FBQyxJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksQ0FDL0MsNkJBQWlCLEVBQ2pCLE9BQU8sQ0FDUjtZQUhELENBR0MsQ0FDRixDQUFDO1lBQ0YsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsY0FBTyxDQUFDLENBQUMsQ0FBQztTQUNoQzthQUFNO1lBQ0wsSUFBSSxDQUFDLFNBQVMsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUM3QixJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FDL0QsQ0FBQztTQUNIO0lBQ0gsQ0FBQztJQUVELHVCQUFNLEdBQU4sVUFBTyxNQUFrQjtRQUF6QixpQkFnQkM7UUFmQyxJQUFJLElBQUEseUJBQVcsRUFBQyxNQUFNLENBQUMsRUFBRTtZQUN2QixPQUFPO1NBQ1I7UUFFRCxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFVBQUEsU0FBUztZQUM1QyxTQUFTLENBQUMsT0FBTyxHQUFHO2dCQUNsQixLQUFJLENBQUMsU0FBUyxHQUFHLE9BQU8sQ0FBQyxNQUFNLENBQzdCLElBQUksS0FBSyxDQUFDLGlDQUFpQyxDQUFDLENBQzdDLENBQUM7WUFDSixDQUFDLENBQUM7WUFDRixTQUFTLENBQUMsT0FBTyxDQUFDLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7WUFFN0MsT0FBTyxTQUFTLENBQUM7UUFDbkIsQ0FBQyxDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxjQUFPLENBQUMsQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFFRCx1QkFBTSxHQUFOO1FBQ0UsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FDeEIsVUFBQSxTQUFTO1lBQ1AsT0FBQSxJQUFJLE9BQU8sQ0FBQyxVQUFDLE9BQU8sRUFBRSxNQUFNO2dCQUMxQixTQUFTLENBQUMsT0FBTyxHQUFHO29CQUNsQixNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsbUNBQW1DLENBQUMsQ0FBQyxDQUFDO2dCQUN6RCxDQUFDLENBQUM7Z0JBQ0YsU0FBUyxDQUFDLFVBQVUsR0FBRztvQkFDckIsSUFBSSxTQUFTLENBQUMsTUFBTSxFQUFFO3dCQUNwQixPQUFPLENBQUMsSUFBSSxVQUFVLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7cUJBQzNDO29CQUNELE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxtQ0FBbUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ3pELENBQUMsQ0FBQztnQkFFRixTQUFTLENBQUMsTUFBTSxFQUFFLENBQUM7WUFDckIsQ0FBQyxDQUFDO1FBWkYsQ0FZRSxDQUNMLENBQUM7SUFDSixDQUFDO0lBQ0gsYUFBQztBQUFELENBQUMsQUF2REQsSUF1REM7QUF2RFksd0JBQU07QUF5RG5CLFNBQVMsYUFBYSxDQUFDLE1BQWtCO0lBQ3ZDLE9BQU8sSUFBSSxPQUFPLENBQUMsVUFBQyxPQUFPLEVBQUUsTUFBTTtRQUNqQyxJQUFNLFlBQVksR0FBSSxJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FDekUsS0FBSyxFQUNMLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxFQUN6Qiw2QkFBaUIsRUFDakIsS0FBSyxFQUNMLENBQUMsTUFBTSxDQUFDLENBQ1QsQ0FBQztRQUVGLFlBQVksQ0FBQyxVQUFVLEdBQUc7WUFDeEIsSUFBSSxZQUFZLENBQUMsTUFBTSxFQUFFO2dCQUN2QixPQUFPLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQyxDQUFDO2FBQzlCO1lBRUQsTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLDRDQUE0QyxDQUFDLENBQUMsQ0FBQztRQUNsRSxDQUFDLENBQUM7UUFDRixZQUFZLENBQUMsT0FBTyxHQUFHO1lBQ3JCLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxpQ0FBaUMsQ0FBQyxDQUFDLENBQUM7UUFDdkQsQ0FBQyxDQUFDO0lBQ0osQ0FBQyxDQUFDLENBQUM7QUFDTCxDQUFDO0FBRUQsU0FBUyxpQkFBaUIsQ0FBQyxJQUFnQjtJQUN6QyxJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVEsRUFBRTtRQUM1QixPQUFPLElBQUEsNEJBQVEsRUFBQyxJQUFJLENBQUMsQ0FBQztLQUN2QjtJQUVELElBQUksV0FBVyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsRUFBRTtRQUM1QixPQUFPLElBQUksVUFBVSxDQUNuQixJQUFJLENBQUMsTUFBTSxFQUNYLElBQUksQ0FBQyxVQUFVLEVBQ2YsSUFBSSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUMsaUJBQWlCLENBQy9DLENBQUM7S0FDSDtJQUVELE9BQU8sSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUM7QUFDOUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGlzRW1wdHlEYXRhIH0gZnJvbSBcIi4vaXNFbXB0eURhdGFcIjtcbmltcG9ydCB7IFNIQV8yNTZfSE1BQ19BTEdPIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5pbXBvcnQgeyBIYXNoLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBmcm9tVXRmOCB9IGZyb20gXCJAYXdzLXNkay91dGlsLXV0ZjgtYnJvd3NlclwiO1xuaW1wb3J0IHsgQ3J5cHRvT3BlcmF0aW9uLCBLZXksIE1zV2luZG93IH0gZnJvbSBcIkBhd3MtY3J5cHRvL2llMTEtZGV0ZWN0aW9uXCI7XG5pbXBvcnQgeyBsb2NhdGVXaW5kb3cgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC1sb2NhdGUtd2luZG93XCI7XG5cbmV4cG9ydCBjbGFzcyBTaGEyNTYgaW1wbGVtZW50cyBIYXNoIHtcbiAgcHJpdmF0ZSBvcGVyYXRpb246IFByb21pc2U8Q3J5cHRvT3BlcmF0aW9uPjtcblxuICBjb25zdHJ1Y3RvcihzZWNyZXQ/OiBTb3VyY2VEYXRhKSB7XG4gICAgaWYgKHNlY3JldCkge1xuICAgICAgdGhpcy5vcGVyYXRpb24gPSBnZXRLZXlQcm9taXNlKHNlY3JldCkudGhlbihrZXlEYXRhID0+XG4gICAgICAgIChsb2NhdGVXaW5kb3coKSBhcyBNc1dpbmRvdykubXNDcnlwdG8uc3VidGxlLnNpZ24oXG4gICAgICAgICAgU0hBXzI1Nl9ITUFDX0FMR08sXG4gICAgICAgICAga2V5RGF0YVxuICAgICAgICApXG4gICAgICApO1xuICAgICAgdGhpcy5vcGVyYXRpb24uY2F0Y2goKCkgPT4ge30pO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLm9wZXJhdGlvbiA9IFByb21pc2UucmVzb2x2ZShcbiAgICAgICAgKGxvY2F0ZVdpbmRvdygpIGFzIE1zV2luZG93KS5tc0NyeXB0by5zdWJ0bGUuZGlnZXN0KFwiU0hBLTI1NlwiKVxuICAgICAgKTtcbiAgICB9XG4gIH1cblxuICB1cGRhdGUodG9IYXNoOiBTb3VyY2VEYXRhKTogdm9pZCB7XG4gICAgaWYgKGlzRW1wdHlEYXRhKHRvSGFzaCkpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICB0aGlzLm9wZXJhdGlvbiA9IHRoaXMub3BlcmF0aW9uLnRoZW4ob3BlcmF0aW9uID0+IHtcbiAgICAgIG9wZXJhdGlvbi5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICB0aGlzLm9wZXJhdGlvbiA9IFByb21pc2UucmVqZWN0KFxuICAgICAgICAgIG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIHVwZGF0aW5nIGhhc2hcIilcbiAgICAgICAgKTtcbiAgICAgIH07XG4gICAgICBvcGVyYXRpb24ucHJvY2Vzcyh0b0FycmF5QnVmZmVyVmlldyh0b0hhc2gpKTtcblxuICAgICAgcmV0dXJuIG9wZXJhdGlvbjtcbiAgICB9KTtcbiAgICB0aGlzLm9wZXJhdGlvbi5jYXRjaCgoKSA9PiB7fSk7XG4gIH1cblxuICBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMub3BlcmF0aW9uLnRoZW48VWludDhBcnJheT4oXG4gICAgICBvcGVyYXRpb24gPT5cbiAgICAgICAgbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICAgIG9wZXJhdGlvbi5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIGZpbmFsaXppbmcgaGFzaFwiKSk7XG4gICAgICAgICAgfTtcbiAgICAgICAgICBvcGVyYXRpb24ub25jb21wbGV0ZSA9ICgpID0+IHtcbiAgICAgICAgICAgIGlmIChvcGVyYXRpb24ucmVzdWx0KSB7XG4gICAgICAgICAgICAgIHJlc29sdmUobmV3IFVpbnQ4QXJyYXkob3BlcmF0aW9uLnJlc3VsdCkpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIGZpbmFsaXppbmcgaGFzaFwiKSk7XG4gICAgICAgICAgfTtcblxuICAgICAgICAgIG9wZXJhdGlvbi5maW5pc2goKTtcbiAgICAgICAgfSlcbiAgICApO1xuICB9XG59XG5cbmZ1bmN0aW9uIGdldEtleVByb21pc2Uoc2VjcmV0OiBTb3VyY2VEYXRhKTogUHJvbWlzZTxLZXk+IHtcbiAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlLCByZWplY3QpID0+IHtcbiAgICBjb25zdCBrZXlPcGVyYXRpb24gPSAobG9jYXRlV2luZG93KCkgYXMgTXNXaW5kb3cpLm1zQ3J5cHRvLnN1YnRsZS5pbXBvcnRLZXkoXG4gICAgICBcInJhd1wiLFxuICAgICAgdG9BcnJheUJ1ZmZlclZpZXcoc2VjcmV0KSxcbiAgICAgIFNIQV8yNTZfSE1BQ19BTEdPLFxuICAgICAgZmFsc2UsXG4gICAgICBbXCJzaWduXCJdXG4gICAgKTtcblxuICAgIGtleU9wZXJhdGlvbi5vbmNvbXBsZXRlID0gKCkgPT4ge1xuICAgICAgaWYgKGtleU9wZXJhdGlvbi5yZXN1bHQpIHtcbiAgICAgICAgcmVzb2x2ZShrZXlPcGVyYXRpb24ucmVzdWx0KTtcbiAgICAgIH1cblxuICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkltcG9ydEtleSBjb21wbGV0ZWQgd2l0aG91dCBpbXBvcnRpbmcga2V5LlwiKSk7XG4gICAgfTtcbiAgICBrZXlPcGVyYXRpb24ub25lcnJvciA9ICgpID0+IHtcbiAgICAgIHJlamVjdChuZXcgRXJyb3IoXCJJbXBvcnRLZXkgZmFpbGVkIHRvIGltcG9ydCBrZXkuXCIpKTtcbiAgICB9O1xuICB9KTtcbn1cblxuZnVuY3Rpb24gdG9BcnJheUJ1ZmZlclZpZXcoZGF0YTogU291cmNlRGF0YSk6IFVpbnQ4QXJyYXkge1xuICBpZiAodHlwZW9mIGRhdGEgPT09IFwic3RyaW5nXCIpIHtcbiAgICByZXR1cm4gZnJvbVV0ZjgoZGF0YSk7XG4gIH1cblxuICBpZiAoQXJyYXlCdWZmZXIuaXNWaWV3KGRhdGEpKSB7XG4gICAgcmV0dXJuIG5ldyBVaW50OEFycmF5KFxuICAgICAgZGF0YS5idWZmZXIsXG4gICAgICBkYXRhLmJ5dGVPZmZzZXQsXG4gICAgICBkYXRhLmJ5dGVMZW5ndGggLyBVaW50OEFycmF5LkJZVEVTX1BFUl9FTEVNRU5UXG4gICAgKTtcbiAgfVxuXG4gIHJldHVybiBuZXcgVWludDhBcnJheShkYXRhKTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/build/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/build/index.js ***! \****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.WebCryptoSha256 = exports.Ie11Sha256 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n(0, tslib_1.__exportStar)(__webpack_require__(/*! ./crossPlatformSha256 */ \"./node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js\"), exports);\nvar ie11Sha256_1 = __webpack_require__(/*! ./ie11Sha256 */ \"./node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js\");\nObject.defineProperty(exports, \"Ie11Sha256\", { enumerable: true, get: function () { return ie11Sha256_1.Sha256; } });\nvar webCryptoSha256_1 = __webpack_require__(/*! ./webCryptoSha256 */ \"./node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js\");\nObject.defineProperty(exports, \"WebCryptoSha256\", { enumerable: true, get: function () { return webCryptoSha256_1.Sha256; } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHFFQUFzQztBQUN0QywyQ0FBb0Q7QUFBM0Msd0dBQUEsTUFBTSxPQUFjO0FBQzdCLHFEQUE4RDtBQUFyRCxrSEFBQSxNQUFNLE9BQW1CIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vY3Jvc3NQbGF0Zm9ybVNoYTI1NlwiO1xuZXhwb3J0IHsgU2hhMjU2IGFzIEllMTFTaGEyNTYgfSBmcm9tIFwiLi9pZTExU2hhMjU2XCI7XG5leHBvcnQgeyBTaGEyNTYgYXMgV2ViQ3J5cHRvU2hhMjU2IH0gZnJvbSBcIi4vd2ViQ3J5cHRvU2hhMjU2XCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js ***! \**********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isEmptyData = void 0;\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nexports.isEmptyData = isEmptyData;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNFbXB0eURhdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaXNFbXB0eURhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUEsU0FBZ0IsV0FBVyxDQUFDLElBQWdCO0lBQzFDLElBQUksT0FBTyxJQUFJLEtBQUssUUFBUSxFQUFFO1FBQzVCLE9BQU8sSUFBSSxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUM7S0FDMUI7SUFFRCxPQUFPLElBQUksQ0FBQyxVQUFVLEtBQUssQ0FBQyxDQUFDO0FBQy9CLENBQUM7QUFORCxrQ0FNQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGZ1bmN0aW9uIGlzRW1wdHlEYXRhKGRhdGE6IFNvdXJjZURhdGEpOiBib29sZWFuIHtcbiAgaWYgKHR5cGVvZiBkYXRhID09PSBcInN0cmluZ1wiKSB7XG4gICAgcmV0dXJuIGRhdGEubGVuZ3RoID09PSAwO1xuICB9XG5cbiAgcmV0dXJuIGRhdGEuYnl0ZUxlbmd0aCA9PT0gMDtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js ***! \**************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-crypto/util/build/index.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-crypto/sha256-browser/build/constants.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n this.toHash = new Uint8Array(0);\n if (secret !== void 0) {\n this.key = new Promise(function (resolve, reject) {\n (0, util_locate_window_1.locateWindow)()\n .crypto.subtle.importKey(\"raw\", (0, util_1.convertToBuffer)(secret), constants_1.SHA_256_HMAC_ALGO, false, [\"sign\"])\n .then(resolve, reject);\n });\n this.key.catch(function () { });\n }\n }\n Sha256.prototype.update = function (data) {\n if ((0, util_1.isEmptyData)(data)) {\n return;\n }\n var update = (0, util_1.convertToBuffer)(data);\n var typedArray = new Uint8Array(this.toHash.byteLength + update.byteLength);\n typedArray.set(this.toHash, 0);\n typedArray.set(update, this.toHash.byteLength);\n this.toHash = typedArray;\n };\n Sha256.prototype.digest = function () {\n var _this = this;\n if (this.key) {\n return this.key.then(function (key) {\n return (0, util_locate_window_1.locateWindow)()\n .crypto.subtle.sign(constants_1.SHA_256_HMAC_ALGO, key, _this.toHash)\n .then(function (data) { return new Uint8Array(data); });\n });\n }\n if ((0, util_1.isEmptyData)(this.toHash)) {\n return Promise.resolve(constants_1.EMPTY_DATA_SHA_256);\n }\n return Promise.resolve()\n .then(function () {\n return (0, util_locate_window_1.locateWindow)().crypto.subtle.digest(constants_1.SHA_256_HASH, _this.toHash);\n })\n .then(function (data) { return Promise.resolve(new Uint8Array(data)); });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2ViQ3J5cHRvU2hhMjU2LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3dlYkNyeXB0b1NoYTI1Ni50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFDQSx5Q0FBZ0U7QUFDaEUseUNBSXFCO0FBQ3JCLGtFQUEyRDtBQUUzRDtJQUlFLGdCQUFZLE1BQW1CO1FBRnZCLFdBQU0sR0FBZSxJQUFJLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUc3QyxJQUFJLE1BQU0sS0FBSyxLQUFLLENBQUMsRUFBRTtZQUNyQixJQUFJLENBQUMsR0FBRyxHQUFHLElBQUksT0FBTyxDQUFDLFVBQUMsT0FBTyxFQUFFLE1BQU07Z0JBQ3JDLElBQUEsaUNBQVksR0FBRTtxQkFDWCxNQUFNLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FDdEIsS0FBSyxFQUNMLElBQUEsc0JBQWUsRUFBQyxNQUFNLENBQUMsRUFDdkIsNkJBQWlCLEVBQ2pCLEtBQUssRUFDTCxDQUFDLE1BQU0sQ0FBQyxDQUNUO3FCQUNBLElBQUksQ0FBQyxPQUFPLEVBQUUsTUFBTSxDQUFDLENBQUM7WUFDM0IsQ0FBQyxDQUFDLENBQUM7WUFDSCxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxjQUFPLENBQUMsQ0FBQyxDQUFDO1NBQzFCO0lBQ0gsQ0FBQztJQUVELHVCQUFNLEdBQU4sVUFBTyxJQUFnQjtRQUNyQixJQUFJLElBQUEsa0JBQVcsRUFBQyxJQUFJLENBQUMsRUFBRTtZQUNyQixPQUFPO1NBQ1I7UUFFRCxJQUFNLE1BQU0sR0FBRyxJQUFBLHNCQUFlLEVBQUMsSUFBSSxDQUFDLENBQUM7UUFDckMsSUFBTSxVQUFVLEdBQUcsSUFBSSxVQUFVLENBQy9CLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQzNDLENBQUM7UUFDRixVQUFVLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDL0IsVUFBVSxDQUFDLEdBQUcsQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUMvQyxJQUFJLENBQUMsTUFBTSxHQUFHLFVBQVUsQ0FBQztJQUMzQixDQUFDO0lBRUQsdUJBQU0sR0FBTjtRQUFBLGlCQWtCQztRQWpCQyxJQUFJLElBQUksQ0FBQyxHQUFHLEVBQUU7WUFDWixPQUFPLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFVBQUMsR0FBRztnQkFDdkIsT0FBQSxJQUFBLGlDQUFZLEdBQUU7cUJBQ1gsTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsNkJBQWlCLEVBQUUsR0FBRyxFQUFFLEtBQUksQ0FBQyxNQUFNLENBQUM7cUJBQ3ZELElBQUksQ0FBQyxVQUFDLElBQUksSUFBSyxPQUFBLElBQUksVUFBVSxDQUFDLElBQUksQ0FBQyxFQUFwQixDQUFvQixDQUFDO1lBRnZDLENBRXVDLENBQ3hDLENBQUM7U0FDSDtRQUVELElBQUksSUFBQSxrQkFBVyxFQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBRTtZQUM1QixPQUFPLE9BQU8sQ0FBQyxPQUFPLENBQUMsOEJBQWtCLENBQUMsQ0FBQztTQUM1QztRQUVELE9BQU8sT0FBTyxDQUFDLE9BQU8sRUFBRTthQUNyQixJQUFJLENBQUM7WUFDSixPQUFBLElBQUEsaUNBQVksR0FBRSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLHdCQUFZLEVBQUUsS0FBSSxDQUFDLE1BQU0sQ0FBQztRQUE5RCxDQUE4RCxDQUMvRDthQUNBLElBQUksQ0FBQyxVQUFDLElBQUksSUFBSyxPQUFBLE9BQU8sQ0FBQyxPQUFPLENBQUMsSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUMsRUFBckMsQ0FBcUMsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFDSCxhQUFDO0FBQUQsQ0FBQyxBQXRERCxJQXNEQztBQXREWSx3QkFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEhhc2gsIFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IGlzRW1wdHlEYXRhLCBjb252ZXJ0VG9CdWZmZXIgfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuaW1wb3J0IHtcbiAgRU1QVFlfREFUQV9TSEFfMjU2LFxuICBTSEFfMjU2X0hBU0gsXG4gIFNIQV8yNTZfSE1BQ19BTEdPLFxufSBmcm9tIFwiLi9jb25zdGFudHNcIjtcbmltcG9ydCB7IGxvY2F0ZVdpbmRvdyB9IGZyb20gXCJAYXdzLXNkay91dGlsLWxvY2F0ZS13aW5kb3dcIjtcblxuZXhwb3J0IGNsYXNzIFNoYTI1NiBpbXBsZW1lbnRzIEhhc2gge1xuICBwcml2YXRlIHJlYWRvbmx5IGtleTogUHJvbWlzZTxDcnlwdG9LZXk+IHwgdW5kZWZpbmVkO1xuICBwcml2YXRlIHRvSGFzaDogVWludDhBcnJheSA9IG5ldyBVaW50OEFycmF5KDApO1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc2VjcmV0ICE9PSB2b2lkIDApIHtcbiAgICAgIHRoaXMua2V5ID0gbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICBsb2NhdGVXaW5kb3coKVxuICAgICAgICAgIC5jcnlwdG8uc3VidGxlLmltcG9ydEtleShcbiAgICAgICAgICAgIFwicmF3XCIsXG4gICAgICAgICAgICBjb252ZXJ0VG9CdWZmZXIoc2VjcmV0KSxcbiAgICAgICAgICAgIFNIQV8yNTZfSE1BQ19BTEdPLFxuICAgICAgICAgICAgZmFsc2UsXG4gICAgICAgICAgICBbXCJzaWduXCJdXG4gICAgICAgICAgKVxuICAgICAgICAgIC50aGVuKHJlc29sdmUsIHJlamVjdCk7XG4gICAgICB9KTtcbiAgICAgIHRoaXMua2V5LmNhdGNoKCgpID0+IHt9KTtcbiAgICB9XG4gIH1cblxuICB1cGRhdGUoZGF0YTogU291cmNlRGF0YSk6IHZvaWQge1xuICAgIGlmIChpc0VtcHR5RGF0YShkYXRhKSkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGNvbnN0IHVwZGF0ZSA9IGNvbnZlcnRUb0J1ZmZlcihkYXRhKTtcbiAgICBjb25zdCB0eXBlZEFycmF5ID0gbmV3IFVpbnQ4QXJyYXkoXG4gICAgICB0aGlzLnRvSGFzaC5ieXRlTGVuZ3RoICsgdXBkYXRlLmJ5dGVMZW5ndGhcbiAgICApO1xuICAgIHR5cGVkQXJyYXkuc2V0KHRoaXMudG9IYXNoLCAwKTtcbiAgICB0eXBlZEFycmF5LnNldCh1cGRhdGUsIHRoaXMudG9IYXNoLmJ5dGVMZW5ndGgpO1xuICAgIHRoaXMudG9IYXNoID0gdHlwZWRBcnJheTtcbiAgfVxuXG4gIGRpZ2VzdCgpOiBQcm9taXNlPFVpbnQ4QXJyYXk+IHtcbiAgICBpZiAodGhpcy5rZXkpIHtcbiAgICAgIHJldHVybiB0aGlzLmtleS50aGVuKChrZXkpID0+XG4gICAgICAgIGxvY2F0ZVdpbmRvdygpXG4gICAgICAgICAgLmNyeXB0by5zdWJ0bGUuc2lnbihTSEFfMjU2X0hNQUNfQUxHTywga2V5LCB0aGlzLnRvSGFzaClcbiAgICAgICAgICAudGhlbigoZGF0YSkgPT4gbmV3IFVpbnQ4QXJyYXkoZGF0YSkpXG4gICAgICApO1xuICAgIH1cblxuICAgIGlmIChpc0VtcHR5RGF0YSh0aGlzLnRvSGFzaCkpIHtcbiAgICAgIHJldHVybiBQcm9taXNlLnJlc29sdmUoRU1QVFlfREFUQV9TSEFfMjU2KTtcbiAgICB9XG5cbiAgICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKClcbiAgICAgIC50aGVuKCgpID0+XG4gICAgICAgIGxvY2F0ZVdpbmRvdygpLmNyeXB0by5zdWJ0bGUuZGlnZXN0KFNIQV8yNTZfSEFTSCwgdGhpcy50b0hhc2gpXG4gICAgICApXG4gICAgICAudGhlbigoZGF0YSkgPT4gUHJvbWlzZS5yZXNvbHZlKG5ldyBVaW50OEFycmF5KGRhdGEpKSk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/RawSha256.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/RawSha256.js ***! \*******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.RawSha256 = void 0;\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/constants.js\");\n/**\n * @internal\n */\nvar RawSha256 = /** @class */ (function () {\n function RawSha256() {\n this.state = Int32Array.from(constants_1.INIT);\n this.temp = new Int32Array(64);\n this.buffer = new Uint8Array(64);\n this.bufferLength = 0;\n this.bytesHashed = 0;\n /**\n * @internal\n */\n this.finished = false;\n }\n RawSha256.prototype.update = function (data) {\n if (this.finished) {\n throw new Error(\"Attempted to update an already finished hash.\");\n }\n var position = 0;\n var byteLength = data.byteLength;\n this.bytesHashed += byteLength;\n if (this.bytesHashed * 8 > constants_1.MAX_HASHABLE_LENGTH) {\n throw new Error(\"Cannot hash more than 2^53 - 1 bits\");\n }\n while (byteLength > 0) {\n this.buffer[this.bufferLength++] = data[position++];\n byteLength--;\n if (this.bufferLength === constants_1.BLOCK_SIZE) {\n this.hashBuffer();\n this.bufferLength = 0;\n }\n }\n };\n RawSha256.prototype.digest = function () {\n if (!this.finished) {\n var bitsHashed = this.bytesHashed * 8;\n var bufferView = new DataView(this.buffer.buffer, this.buffer.byteOffset, this.buffer.byteLength);\n var undecoratedLength = this.bufferLength;\n bufferView.setUint8(this.bufferLength++, 0x80);\n // Ensure the final block has enough room for the hashed length\n if (undecoratedLength % constants_1.BLOCK_SIZE >= constants_1.BLOCK_SIZE - 8) {\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE; i++) {\n bufferView.setUint8(i, 0);\n }\n this.hashBuffer();\n this.bufferLength = 0;\n }\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE - 8; i++) {\n bufferView.setUint8(i, 0);\n }\n bufferView.setUint32(constants_1.BLOCK_SIZE - 8, Math.floor(bitsHashed / 0x100000000), true);\n bufferView.setUint32(constants_1.BLOCK_SIZE - 4, bitsHashed);\n this.hashBuffer();\n this.finished = true;\n }\n // The value in state is little-endian rather than big-endian, so flip\n // each word into a new Uint8Array\n var out = new Uint8Array(constants_1.DIGEST_LENGTH);\n for (var i = 0; i < 8; i++) {\n out[i * 4] = (this.state[i] >>> 24) & 0xff;\n out[i * 4 + 1] = (this.state[i] >>> 16) & 0xff;\n out[i * 4 + 2] = (this.state[i] >>> 8) & 0xff;\n out[i * 4 + 3] = (this.state[i] >>> 0) & 0xff;\n }\n return out;\n };\n RawSha256.prototype.hashBuffer = function () {\n var _a = this, buffer = _a.buffer, state = _a.state;\n var state0 = state[0], state1 = state[1], state2 = state[2], state3 = state[3], state4 = state[4], state5 = state[5], state6 = state[6], state7 = state[7];\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n if (i < 16) {\n this.temp[i] =\n ((buffer[i * 4] & 0xff) << 24) |\n ((buffer[i * 4 + 1] & 0xff) << 16) |\n ((buffer[i * 4 + 2] & 0xff) << 8) |\n (buffer[i * 4 + 3] & 0xff);\n }\n else {\n var u = this.temp[i - 2];\n var t1_1 = ((u >>> 17) | (u << 15)) ^ ((u >>> 19) | (u << 13)) ^ (u >>> 10);\n u = this.temp[i - 15];\n var t2_1 = ((u >>> 7) | (u << 25)) ^ ((u >>> 18) | (u << 14)) ^ (u >>> 3);\n this.temp[i] =\n ((t1_1 + this.temp[i - 7]) | 0) + ((t2_1 + this.temp[i - 16]) | 0);\n }\n var t1 = ((((((state4 >>> 6) | (state4 << 26)) ^\n ((state4 >>> 11) | (state4 << 21)) ^\n ((state4 >>> 25) | (state4 << 7))) +\n ((state4 & state5) ^ (~state4 & state6))) |\n 0) +\n ((state7 + ((constants_1.KEY[i] + this.temp[i]) | 0)) | 0)) |\n 0;\n var t2 = ((((state0 >>> 2) | (state0 << 30)) ^\n ((state0 >>> 13) | (state0 << 19)) ^\n ((state0 >>> 22) | (state0 << 10))) +\n ((state0 & state1) ^ (state0 & state2) ^ (state1 & state2))) |\n 0;\n state7 = state6;\n state6 = state5;\n state5 = state4;\n state4 = (state3 + t1) | 0;\n state3 = state2;\n state2 = state1;\n state1 = state0;\n state0 = (t1 + t2) | 0;\n }\n state[0] += state0;\n state[1] += state1;\n state[2] += state2;\n state[3] += state3;\n state[4] += state4;\n state[5] += state5;\n state[6] += state6;\n state[7] += state7;\n };\n return RawSha256;\n}());\nexports.RawSha256 = RawSha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUmF3U2hhMjU2LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL1Jhd1NoYTI1Ni50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FNcUI7QUFFckI7O0dBRUc7QUFDSDtJQUFBO1FBQ1UsVUFBSyxHQUFlLFVBQVUsQ0FBQyxJQUFJLENBQUMsZ0JBQUksQ0FBQyxDQUFDO1FBQzFDLFNBQUksR0FBZSxJQUFJLFVBQVUsQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUN0QyxXQUFNLEdBQWUsSUFBSSxVQUFVLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDeEMsaUJBQVksR0FBVyxDQUFDLENBQUM7UUFDekIsZ0JBQVcsR0FBVyxDQUFDLENBQUM7UUFFaEM7O1dBRUc7UUFDSCxhQUFRLEdBQVksS0FBSyxDQUFDO0lBOEk1QixDQUFDO0lBNUlDLDBCQUFNLEdBQU4sVUFBTyxJQUFnQjtRQUNyQixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDakIsTUFBTSxJQUFJLEtBQUssQ0FBQywrQ0FBK0MsQ0FBQyxDQUFDO1NBQ2xFO1FBRUQsSUFBSSxRQUFRLEdBQUcsQ0FBQyxDQUFDO1FBQ1gsSUFBQSxVQUFVLEdBQUssSUFBSSxXQUFULENBQVU7UUFDMUIsSUFBSSxDQUFDLFdBQVcsSUFBSSxVQUFVLENBQUM7UUFFL0IsSUFBSSxJQUFJLENBQUMsV0FBVyxHQUFHLENBQUMsR0FBRywrQkFBbUIsRUFBRTtZQUM5QyxNQUFNLElBQUksS0FBSyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7U0FDeEQ7UUFFRCxPQUFPLFVBQVUsR0FBRyxDQUFDLEVBQUU7WUFDckIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQztZQUNwRCxVQUFVLEVBQUUsQ0FBQztZQUViLElBQUksSUFBSSxDQUFDLFlBQVksS0FBSyxzQkFBVSxFQUFFO2dCQUNwQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7Z0JBQ2xCLElBQUksQ0FBQyxZQUFZLEdBQUcsQ0FBQyxDQUFDO2FBQ3ZCO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsMEJBQU0sR0FBTjtRQUNFLElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2xCLElBQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxDQUFDO1lBQ3hDLElBQU0sVUFBVSxHQUFHLElBQUksUUFBUSxDQUM3QixJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sRUFDbEIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLEVBQ3RCLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUN2QixDQUFDO1lBRUYsSUFBTSxpQkFBaUIsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDO1lBQzVDLFVBQVUsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO1lBRS9DLCtEQUErRDtZQUMvRCxJQUFJLGlCQUFpQixHQUFHLHNCQUFVLElBQUksc0JBQVUsR0FBRyxDQUFDLEVBQUU7Z0JBQ3BELEtBQUssSUFBSSxDQUFDLEdBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDLEdBQUcsc0JBQVUsRUFBRSxDQUFDLEVBQUUsRUFBRTtvQkFDbkQsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7aUJBQzNCO2dCQUNELElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztnQkFDbEIsSUFBSSxDQUFDLFlBQVksR0FBRyxDQUFDLENBQUM7YUFDdkI7WUFFRCxLQUFLLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQyxHQUFHLHNCQUFVLEdBQUcsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUN2RCxVQUFVLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQzthQUMzQjtZQUNELFVBQVUsQ0FBQyxTQUFTLENBQ2xCLHNCQUFVLEdBQUcsQ0FBQyxFQUNkLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxHQUFHLFdBQVcsQ0FBQyxFQUNwQyxJQUFJLENBQ0wsQ0FBQztZQUNGLFVBQVUsQ0FBQyxTQUFTLENBQUMsc0JBQVUsR0FBRyxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7WUFFakQsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBRWxCLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDO1NBQ3RCO1FBRUQsc0VBQXNFO1FBQ3RFLGtDQUFrQztRQUNsQyxJQUFNLEdBQUcsR0FBRyxJQUFJLFVBQVUsQ0FBQyx5QkFBYSxDQUFDLENBQUM7UUFDMUMsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRTtZQUMxQixHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUM7WUFDM0MsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxHQUFHLElBQUksQ0FBQztZQUMvQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDO1lBQzlDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUM7U0FDL0M7UUFFRCxPQUFPLEdBQUcsQ0FBQztJQUNiLENBQUM7SUFFTyw4QkFBVSxHQUFsQjtRQUNRLElBQUEsS0FBb0IsSUFBSSxFQUF0QixNQUFNLFlBQUEsRUFBRSxLQUFLLFdBQVMsQ0FBQztRQUUvQixJQUFJLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ25CLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFFcEIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLHNCQUFVLEVBQUUsQ0FBQyxFQUFFLEVBQUU7WUFDbkMsSUFBSSxDQUFDLEdBQUcsRUFBRSxFQUFFO2dCQUNWLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDO29CQUNWLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQzt3QkFDOUIsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQzt3QkFDbEMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQzt3QkFDakMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQzthQUM5QjtpQkFBTTtnQkFDTCxJQUFJLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztnQkFDekIsSUFBTSxJQUFFLEdBQ04sQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztnQkFFbkUsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDO2dCQUN0QixJQUFNLElBQUUsR0FDTixDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO2dCQUVqRSxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztvQkFDVixDQUFDLENBQUMsSUFBRSxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUUsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO2FBQ2xFO1lBRUQsSUFBTSxFQUFFLEdBQ04sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUNuQyxDQUFDLENBQUMsTUFBTSxLQUFLLEVBQUUsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUNsQyxDQUFDLENBQUMsTUFBTSxLQUFLLEVBQUUsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ2xDLENBQUMsQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUMsQ0FBQyxDQUFDO2dCQUN6QyxDQUFDLENBQUM7Z0JBQ0YsQ0FBQyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsZUFBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO2dCQUNqRCxDQUFDLENBQUM7WUFFSixJQUFNLEVBQUUsR0FDTixDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQztnQkFDakMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQztnQkFDbEMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDO2dCQUNuQyxDQUFDLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxDQUFDLENBQUM7Z0JBQzlELENBQUMsQ0FBQztZQUVKLE1BQU0sR0FBRyxNQUFNLENBQUM7WUFDaEIsTUFBTSxHQUFHLE1BQU0sQ0FBQztZQUNoQixNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQ2hCLE1BQU0sR0FBRyxDQUFDLE1BQU0sR0FBRyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDM0IsTUFBTSxHQUFHLE1BQU0sQ0FBQztZQUNoQixNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQ2hCLE1BQU0sR0FBRyxNQUFNLENBQUM7WUFDaEIsTUFBTSxHQUFHLENBQUMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQztTQUN4QjtRQUVELEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztRQUNuQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksTUFBTSxDQUFDO1FBQ25CLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztRQUNuQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksTUFBTSxDQUFDO1FBQ25CLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBQ0gsZ0JBQUM7QUFBRCxDQUFDLEFBeEpELElBd0pDO0FBeEpZLDhCQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQkxPQ0tfU0laRSxcbiAgRElHRVNUX0xFTkdUSCxcbiAgSU5JVCxcbiAgS0VZLFxuICBNQVhfSEFTSEFCTEVfTEVOR1RIXG59IGZyb20gXCIuL2NvbnN0YW50c1wiO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY2xhc3MgUmF3U2hhMjU2IHtcbiAgcHJpdmF0ZSBzdGF0ZTogSW50MzJBcnJheSA9IEludDMyQXJyYXkuZnJvbShJTklUKTtcbiAgcHJpdmF0ZSB0ZW1wOiBJbnQzMkFycmF5ID0gbmV3IEludDMyQXJyYXkoNjQpO1xuICBwcml2YXRlIGJ1ZmZlcjogVWludDhBcnJheSA9IG5ldyBVaW50OEFycmF5KDY0KTtcbiAgcHJpdmF0ZSBidWZmZXJMZW5ndGg6IG51bWJlciA9IDA7XG4gIHByaXZhdGUgYnl0ZXNIYXNoZWQ6IG51bWJlciA9IDA7XG5cbiAgLyoqXG4gICAqIEBpbnRlcm5hbFxuICAgKi9cbiAgZmluaXNoZWQ6IGJvb2xlYW4gPSBmYWxzZTtcblxuICB1cGRhdGUoZGF0YTogVWludDhBcnJheSk6IHZvaWQge1xuICAgIGlmICh0aGlzLmZpbmlzaGVkKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXCJBdHRlbXB0ZWQgdG8gdXBkYXRlIGFuIGFscmVhZHkgZmluaXNoZWQgaGFzaC5cIik7XG4gICAgfVxuXG4gICAgbGV0IHBvc2l0aW9uID0gMDtcbiAgICBsZXQgeyBieXRlTGVuZ3RoIH0gPSBkYXRhO1xuICAgIHRoaXMuYnl0ZXNIYXNoZWQgKz0gYnl0ZUxlbmd0aDtcblxuICAgIGlmICh0aGlzLmJ5dGVzSGFzaGVkICogOCA+IE1BWF9IQVNIQUJMRV9MRU5HVEgpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIkNhbm5vdCBoYXNoIG1vcmUgdGhhbiAyXjUzIC0gMSBiaXRzXCIpO1xuICAgIH1cblxuICAgIHdoaWxlIChieXRlTGVuZ3RoID4gMCkge1xuICAgICAgdGhpcy5idWZmZXJbdGhpcy5idWZmZXJMZW5ndGgrK10gPSBkYXRhW3Bvc2l0aW9uKytdO1xuICAgICAgYnl0ZUxlbmd0aC0tO1xuXG4gICAgICBpZiAodGhpcy5idWZmZXJMZW5ndGggPT09IEJMT0NLX1NJWkUpIHtcbiAgICAgICAgdGhpcy5oYXNoQnVmZmVyKCk7XG4gICAgICAgIHRoaXMuYnVmZmVyTGVuZ3RoID0gMDtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICBkaWdlc3QoKTogVWludDhBcnJheSB7XG4gICAgaWYgKCF0aGlzLmZpbmlzaGVkKSB7XG4gICAgICBjb25zdCBiaXRzSGFzaGVkID0gdGhpcy5ieXRlc0hhc2hlZCAqIDg7XG4gICAgICBjb25zdCBidWZmZXJWaWV3ID0gbmV3IERhdGFWaWV3KFxuICAgICAgICB0aGlzLmJ1ZmZlci5idWZmZXIsXG4gICAgICAgIHRoaXMuYnVmZmVyLmJ5dGVPZmZzZXQsXG4gICAgICAgIHRoaXMuYnVmZmVyLmJ5dGVMZW5ndGhcbiAgICAgICk7XG5cbiAgICAgIGNvbnN0IHVuZGVjb3JhdGVkTGVuZ3RoID0gdGhpcy5idWZmZXJMZW5ndGg7XG4gICAgICBidWZmZXJWaWV3LnNldFVpbnQ4KHRoaXMuYnVmZmVyTGVuZ3RoKyssIDB4ODApO1xuXG4gICAgICAvLyBFbnN1cmUgdGhlIGZpbmFsIGJsb2NrIGhhcyBlbm91Z2ggcm9vbSBmb3IgdGhlIGhhc2hlZCBsZW5ndGhcbiAgICAgIGlmICh1bmRlY29yYXRlZExlbmd0aCAlIEJMT0NLX1NJWkUgPj0gQkxPQ0tfU0laRSAtIDgpIHtcbiAgICAgICAgZm9yIChsZXQgaSA9IHRoaXMuYnVmZmVyTGVuZ3RoOyBpIDwgQkxPQ0tfU0laRTsgaSsrKSB7XG4gICAgICAgICAgYnVmZmVyVmlldy5zZXRVaW50OChpLCAwKTtcbiAgICAgICAgfVxuICAgICAgICB0aGlzLmhhc2hCdWZmZXIoKTtcbiAgICAgICAgdGhpcy5idWZmZXJMZW5ndGggPSAwO1xuICAgICAgfVxuXG4gICAgICBmb3IgKGxldCBpID0gdGhpcy5idWZmZXJMZW5ndGg7IGkgPCBCTE9DS19TSVpFIC0gODsgaSsrKSB7XG4gICAgICAgIGJ1ZmZlclZpZXcuc2V0VWludDgoaSwgMCk7XG4gICAgICB9XG4gICAgICBidWZmZXJWaWV3LnNldFVpbnQzMihcbiAgICAgICAgQkxPQ0tfU0laRSAtIDgsXG4gICAgICAgIE1hdGguZmxvb3IoYml0c0hhc2hlZCAvIDB4MTAwMDAwMDAwKSxcbiAgICAgICAgdHJ1ZVxuICAgICAgKTtcbiAgICAgIGJ1ZmZlclZpZXcuc2V0VWludDMyKEJMT0NLX1NJWkUgLSA0LCBiaXRzSGFzaGVkKTtcblxuICAgICAgdGhpcy5oYXNoQnVmZmVyKCk7XG5cbiAgICAgIHRoaXMuZmluaXNoZWQgPSB0cnVlO1xuICAgIH1cblxuICAgIC8vIFRoZSB2YWx1ZSBpbiBzdGF0ZSBpcyBsaXR0bGUtZW5kaWFuIHJhdGhlciB0aGFuIGJpZy1lbmRpYW4sIHNvIGZsaXBcbiAgICAvLyBlYWNoIHdvcmQgaW50byBhIG5ldyBVaW50OEFycmF5XG4gICAgY29uc3Qgb3V0ID0gbmV3IFVpbnQ4QXJyYXkoRElHRVNUX0xFTkdUSCk7XG4gICAgZm9yIChsZXQgaSA9IDA7IGkgPCA4OyBpKyspIHtcbiAgICAgIG91dFtpICogNF0gPSAodGhpcy5zdGF0ZVtpXSA+Pj4gMjQpICYgMHhmZjtcbiAgICAgIG91dFtpICogNCArIDFdID0gKHRoaXMuc3RhdGVbaV0gPj4+IDE2KSAmIDB4ZmY7XG4gICAgICBvdXRbaSAqIDQgKyAyXSA9ICh0aGlzLnN0YXRlW2ldID4+PiA4KSAmIDB4ZmY7XG4gICAgICBvdXRbaSAqIDQgKyAzXSA9ICh0aGlzLnN0YXRlW2ldID4+PiAwKSAmIDB4ZmY7XG4gICAgfVxuXG4gICAgcmV0dXJuIG91dDtcbiAgfVxuXG4gIHByaXZhdGUgaGFzaEJ1ZmZlcigpOiB2b2lkIHtcbiAgICBjb25zdCB7IGJ1ZmZlciwgc3RhdGUgfSA9IHRoaXM7XG5cbiAgICBsZXQgc3RhdGUwID0gc3RhdGVbMF0sXG4gICAgICBzdGF0ZTEgPSBzdGF0ZVsxXSxcbiAgICAgIHN0YXRlMiA9IHN0YXRlWzJdLFxuICAgICAgc3RhdGUzID0gc3RhdGVbM10sXG4gICAgICBzdGF0ZTQgPSBzdGF0ZVs0XSxcbiAgICAgIHN0YXRlNSA9IHN0YXRlWzVdLFxuICAgICAgc3RhdGU2ID0gc3RhdGVbNl0sXG4gICAgICBzdGF0ZTcgPSBzdGF0ZVs3XTtcblxuICAgIGZvciAobGV0IGkgPSAwOyBpIDwgQkxPQ0tfU0laRTsgaSsrKSB7XG4gICAgICBpZiAoaSA8IDE2KSB7XG4gICAgICAgIHRoaXMudGVtcFtpXSA9XG4gICAgICAgICAgKChidWZmZXJbaSAqIDRdICYgMHhmZikgPDwgMjQpIHxcbiAgICAgICAgICAoKGJ1ZmZlcltpICogNCArIDFdICYgMHhmZikgPDwgMTYpIHxcbiAgICAgICAgICAoKGJ1ZmZlcltpICogNCArIDJdICYgMHhmZikgPDwgOCkgfFxuICAgICAgICAgIChidWZmZXJbaSAqIDQgKyAzXSAmIDB4ZmYpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgbGV0IHUgPSB0aGlzLnRlbXBbaSAtIDJdO1xuICAgICAgICBjb25zdCB0MSA9XG4gICAgICAgICAgKCh1ID4+PiAxNykgfCAodSA8PCAxNSkpIF4gKCh1ID4+PiAxOSkgfCAodSA8PCAxMykpIF4gKHUgPj4+IDEwKTtcblxuICAgICAgICB1ID0gdGhpcy50ZW1wW2kgLSAxNV07XG4gICAgICAgIGNvbnN0IHQyID1cbiAgICAgICAgICAoKHUgPj4+IDcpIHwgKHUgPDwgMjUpKSBeICgodSA+Pj4gMTgpIHwgKHUgPDwgMTQpKSBeICh1ID4+PiAzKTtcblxuICAgICAgICB0aGlzLnRlbXBbaV0gPVxuICAgICAgICAgICgodDEgKyB0aGlzLnRlbXBbaSAtIDddKSB8IDApICsgKCh0MiArIHRoaXMudGVtcFtpIC0gMTZdKSB8IDApO1xuICAgICAgfVxuXG4gICAgICBjb25zdCB0MSA9XG4gICAgICAgICgoKCgoKHN0YXRlNCA+Pj4gNikgfCAoc3RhdGU0IDw8IDI2KSkgXlxuICAgICAgICAgICgoc3RhdGU0ID4+PiAxMSkgfCAoc3RhdGU0IDw8IDIxKSkgXlxuICAgICAgICAgICgoc3RhdGU0ID4+PiAyNSkgfCAoc3RhdGU0IDw8IDcpKSkgK1xuICAgICAgICAgICgoc3RhdGU0ICYgc3RhdGU1KSBeICh+c3RhdGU0ICYgc3RhdGU2KSkpIHxcbiAgICAgICAgICAwKSArXG4gICAgICAgICAgKChzdGF0ZTcgKyAoKEtFWVtpXSArIHRoaXMudGVtcFtpXSkgfCAwKSkgfCAwKSkgfFxuICAgICAgICAwO1xuXG4gICAgICBjb25zdCB0MiA9XG4gICAgICAgICgoKChzdGF0ZTAgPj4+IDIpIHwgKHN0YXRlMCA8PCAzMCkpIF5cbiAgICAgICAgICAoKHN0YXRlMCA+Pj4gMTMpIHwgKHN0YXRlMCA8PCAxOSkpIF5cbiAgICAgICAgICAoKHN0YXRlMCA+Pj4gMjIpIHwgKHN0YXRlMCA8PCAxMCkpKSArXG4gICAgICAgICAgKChzdGF0ZTAgJiBzdGF0ZTEpIF4gKHN0YXRlMCAmIHN0YXRlMikgXiAoc3RhdGUxICYgc3RhdGUyKSkpIHxcbiAgICAgICAgMDtcblxuICAgICAgc3RhdGU3ID0gc3RhdGU2O1xuICAgICAgc3RhdGU2ID0gc3RhdGU1O1xuICAgICAgc3RhdGU1ID0gc3RhdGU0O1xuICAgICAgc3RhdGU0ID0gKHN0YXRlMyArIHQxKSB8IDA7XG4gICAgICBzdGF0ZTMgPSBzdGF0ZTI7XG4gICAgICBzdGF0ZTIgPSBzdGF0ZTE7XG4gICAgICBzdGF0ZTEgPSBzdGF0ZTA7XG4gICAgICBzdGF0ZTAgPSAodDEgKyB0MikgfCAwO1xuICAgIH1cblxuICAgIHN0YXRlWzBdICs9IHN0YXRlMDtcbiAgICBzdGF0ZVsxXSArPSBzdGF0ZTE7XG4gICAgc3RhdGVbMl0gKz0gc3RhdGUyO1xuICAgIHN0YXRlWzNdICs9IHN0YXRlMztcbiAgICBzdGF0ZVs0XSArPSBzdGF0ZTQ7XG4gICAgc3RhdGVbNV0gKz0gc3RhdGU1O1xuICAgIHN0YXRlWzZdICs9IHN0YXRlNjtcbiAgICBzdGF0ZVs3XSArPSBzdGF0ZTc7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/RawSha256.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/constants.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/constants.js ***! \*******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.MAX_HASHABLE_LENGTH = exports.INIT = exports.KEY = exports.DIGEST_LENGTH = exports.BLOCK_SIZE = void 0;\n/**\n * @internal\n */\nexports.BLOCK_SIZE = 64;\n/**\n * @internal\n */\nexports.DIGEST_LENGTH = 32;\n/**\n * @internal\n */\nexports.KEY = new Uint32Array([\n 0x428a2f98,\n 0x71374491,\n 0xb5c0fbcf,\n 0xe9b5dba5,\n 0x3956c25b,\n 0x59f111f1,\n 0x923f82a4,\n 0xab1c5ed5,\n 0xd807aa98,\n 0x12835b01,\n 0x243185be,\n 0x550c7dc3,\n 0x72be5d74,\n 0x80deb1fe,\n 0x9bdc06a7,\n 0xc19bf174,\n 0xe49b69c1,\n 0xefbe4786,\n 0x0fc19dc6,\n 0x240ca1cc,\n 0x2de92c6f,\n 0x4a7484aa,\n 0x5cb0a9dc,\n 0x76f988da,\n 0x983e5152,\n 0xa831c66d,\n 0xb00327c8,\n 0xbf597fc7,\n 0xc6e00bf3,\n 0xd5a79147,\n 0x06ca6351,\n 0x14292967,\n 0x27b70a85,\n 0x2e1b2138,\n 0x4d2c6dfc,\n 0x53380d13,\n 0x650a7354,\n 0x766a0abb,\n 0x81c2c92e,\n 0x92722c85,\n 0xa2bfe8a1,\n 0xa81a664b,\n 0xc24b8b70,\n 0xc76c51a3,\n 0xd192e819,\n 0xd6990624,\n 0xf40e3585,\n 0x106aa070,\n 0x19a4c116,\n 0x1e376c08,\n 0x2748774c,\n 0x34b0bcb5,\n 0x391c0cb3,\n 0x4ed8aa4a,\n 0x5b9cca4f,\n 0x682e6ff3,\n 0x748f82ee,\n 0x78a5636f,\n 0x84c87814,\n 0x8cc70208,\n 0x90befffa,\n 0xa4506ceb,\n 0xbef9a3f7,\n 0xc67178f2\n]);\n/**\n * @internal\n */\nexports.INIT = [\n 0x6a09e667,\n 0xbb67ae85,\n 0x3c6ef372,\n 0xa54ff53a,\n 0x510e527f,\n 0x9b05688c,\n 0x1f83d9ab,\n 0x5be0cd19\n];\n/**\n * @internal\n */\nexports.MAX_HASHABLE_LENGTH = Math.pow(2, 53) - 1;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQTs7R0FFRztBQUNVLFFBQUEsVUFBVSxHQUFXLEVBQUUsQ0FBQztBQUVyQzs7R0FFRztBQUNVLFFBQUEsYUFBYSxHQUFXLEVBQUUsQ0FBQztBQUV4Qzs7R0FFRztBQUNVLFFBQUEsR0FBRyxHQUFHLElBQUksV0FBVyxDQUFDO0lBQ2pDLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7Q0FDWCxDQUFDLENBQUM7QUFFSDs7R0FFRztBQUNVLFFBQUEsSUFBSSxHQUFHO0lBQ2xCLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0NBQ1gsQ0FBQztBQUVGOztHQUVHO0FBQ1UsUUFBQSxtQkFBbUIsR0FBRyxTQUFBLENBQUMsRUFBSSxFQUFFLENBQUEsR0FBRyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgQkxPQ0tfU0laRTogbnVtYmVyID0gNjQ7XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCBESUdFU1RfTEVOR1RIOiBudW1iZXIgPSAzMjtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IEtFWSA9IG5ldyBVaW50MzJBcnJheShbXG4gIDB4NDI4YTJmOTgsXG4gIDB4NzEzNzQ0OTEsXG4gIDB4YjVjMGZiY2YsXG4gIDB4ZTliNWRiYTUsXG4gIDB4Mzk1NmMyNWIsXG4gIDB4NTlmMTExZjEsXG4gIDB4OTIzZjgyYTQsXG4gIDB4YWIxYzVlZDUsXG4gIDB4ZDgwN2FhOTgsXG4gIDB4MTI4MzViMDEsXG4gIDB4MjQzMTg1YmUsXG4gIDB4NTUwYzdkYzMsXG4gIDB4NzJiZTVkNzQsXG4gIDB4ODBkZWIxZmUsXG4gIDB4OWJkYzA2YTcsXG4gIDB4YzE5YmYxNzQsXG4gIDB4ZTQ5YjY5YzEsXG4gIDB4ZWZiZTQ3ODYsXG4gIDB4MGZjMTlkYzYsXG4gIDB4MjQwY2ExY2MsXG4gIDB4MmRlOTJjNmYsXG4gIDB4NGE3NDg0YWEsXG4gIDB4NWNiMGE5ZGMsXG4gIDB4NzZmOTg4ZGEsXG4gIDB4OTgzZTUxNTIsXG4gIDB4YTgzMWM2NmQsXG4gIDB4YjAwMzI3YzgsXG4gIDB4YmY1OTdmYzcsXG4gIDB4YzZlMDBiZjMsXG4gIDB4ZDVhNzkxNDcsXG4gIDB4MDZjYTYzNTEsXG4gIDB4MTQyOTI5NjcsXG4gIDB4MjdiNzBhODUsXG4gIDB4MmUxYjIxMzgsXG4gIDB4NGQyYzZkZmMsXG4gIDB4NTMzODBkMTMsXG4gIDB4NjUwYTczNTQsXG4gIDB4NzY2YTBhYmIsXG4gIDB4ODFjMmM5MmUsXG4gIDB4OTI3MjJjODUsXG4gIDB4YTJiZmU4YTEsXG4gIDB4YTgxYTY2NGIsXG4gIDB4YzI0YjhiNzAsXG4gIDB4Yzc2YzUxYTMsXG4gIDB4ZDE5MmU4MTksXG4gIDB4ZDY5OTA2MjQsXG4gIDB4ZjQwZTM1ODUsXG4gIDB4MTA2YWEwNzAsXG4gIDB4MTlhNGMxMTYsXG4gIDB4MWUzNzZjMDgsXG4gIDB4Mjc0ODc3NGMsXG4gIDB4MzRiMGJjYjUsXG4gIDB4MzkxYzBjYjMsXG4gIDB4NGVkOGFhNGEsXG4gIDB4NWI5Y2NhNGYsXG4gIDB4NjgyZTZmZjMsXG4gIDB4NzQ4ZjgyZWUsXG4gIDB4NzhhNTYzNmYsXG4gIDB4ODRjODc4MTQsXG4gIDB4OGNjNzAyMDgsXG4gIDB4OTBiZWZmZmEsXG4gIDB4YTQ1MDZjZWIsXG4gIDB4YmVmOWEzZjcsXG4gIDB4YzY3MTc4ZjJcbl0pO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgSU5JVCA9IFtcbiAgMHg2YTA5ZTY2NyxcbiAgMHhiYjY3YWU4NSxcbiAgMHgzYzZlZjM3MixcbiAgMHhhNTRmZjUzYSxcbiAgMHg1MTBlNTI3ZixcbiAgMHg5YjA1Njg4YyxcbiAgMHgxZjgzZDlhYixcbiAgMHg1YmUwY2QxOVxuXTtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IE1BWF9IQVNIQUJMRV9MRU5HVEggPSAyICoqIDUzIC0gMTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/constants.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/index.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/index.js ***! \***************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n(0, tslib_1.__exportStar)(__webpack_require__(/*! ./jsSha256 */ \"./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/jsSha256.js\"), exports);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsMERBQTJCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vanNTaGEyNTZcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/jsSha256.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/jsSha256.js ***! \******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/constants.js\");\nvar RawSha256_1 = __webpack_require__(/*! ./RawSha256 */ \"./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/RawSha256.js\");\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-crypto/util/build/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n this.hash = new RawSha256_1.RawSha256();\n if (secret) {\n this.outer = new RawSha256_1.RawSha256();\n var inner = bufferFromSecret(secret);\n var outer = new Uint8Array(constants_1.BLOCK_SIZE);\n outer.set(inner);\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n inner[i] ^= 0x36;\n outer[i] ^= 0x5c;\n }\n this.hash.update(inner);\n this.outer.update(outer);\n // overwrite the copied key in memory\n for (var i = 0; i < inner.byteLength; i++) {\n inner[i] = 0;\n }\n }\n }\n Sha256.prototype.update = function (toHash) {\n if ((0, util_1.isEmptyData)(toHash) || this.error) {\n return;\n }\n try {\n this.hash.update((0, util_1.convertToBuffer)(toHash));\n }\n catch (e) {\n this.error = e;\n }\n };\n /* This synchronous method keeps compatibility\n * with the v2 aws-sdk.\n */\n Sha256.prototype.digestSync = function () {\n if (this.error) {\n throw this.error;\n }\n if (this.outer) {\n if (!this.outer.finished) {\n this.outer.update(this.hash.digest());\n }\n return this.outer.digest();\n }\n return this.hash.digest();\n };\n /* The underlying digest method here is synchronous.\n * To keep the same interface with the other hash functions\n * the default is to expose this as an async method.\n * However, it can sometimes be useful to have a sync method.\n */\n Sha256.prototype.digest = function () {\n return (0, tslib_1.__awaiter)(this, void 0, void 0, function () {\n return (0, tslib_1.__generator)(this, function (_a) {\n return [2 /*return*/, this.digestSync()];\n });\n });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\nfunction bufferFromSecret(secret) {\n var input = (0, util_1.convertToBuffer)(secret);\n if (input.byteLength > constants_1.BLOCK_SIZE) {\n var bufferHash = new RawSha256_1.RawSha256();\n bufferHash.update(input);\n input = bufferHash.digest();\n }\n var buffer = new Uint8Array(constants_1.BLOCK_SIZE);\n buffer.set(input);\n return buffer;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianNTaGEyNTYuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvanNTaGEyNTYudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHlDQUF5QztBQUN6Qyx5Q0FBd0M7QUFFeEMseUNBQWdFO0FBRWhFO0lBS0UsZ0JBQVksTUFBbUI7UUFKZCxTQUFJLEdBQUcsSUFBSSxxQkFBUyxFQUFFLENBQUM7UUFLdEMsSUFBSSxNQUFNLEVBQUU7WUFDVixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUkscUJBQVMsRUFBRSxDQUFDO1lBQzdCLElBQU0sS0FBSyxHQUFHLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBQ3ZDLElBQU0sS0FBSyxHQUFHLElBQUksVUFBVSxDQUFDLHNCQUFVLENBQUMsQ0FBQztZQUN6QyxLQUFLLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBRWpCLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxzQkFBVSxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUNuQyxLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDO2dCQUNqQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDO2FBQ2xCO1lBRUQsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDeEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7WUFFekIscUNBQXFDO1lBQ3JDLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxLQUFLLENBQUMsVUFBVSxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUN6QyxLQUFLLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDO2FBQ2Q7U0FDRjtJQUNILENBQUM7SUFFRCx1QkFBTSxHQUFOLFVBQU8sTUFBa0I7UUFDdkIsSUFBSSxJQUFBLGtCQUFXLEVBQUMsTUFBTSxDQUFDLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNyQyxPQUFPO1NBQ1I7UUFFRCxJQUFJO1lBQ0YsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBQSxzQkFBZSxFQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7U0FDM0M7UUFBQyxPQUFPLENBQUMsRUFBRTtZQUNWLElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO1NBQ2hCO0lBQ0gsQ0FBQztJQUVEOztPQUVHO0lBQ0gsMkJBQVUsR0FBVjtRQUNFLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNkLE1BQU0sSUFBSSxDQUFDLEtBQUssQ0FBQztTQUNsQjtRQUVELElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNkLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsRUFBRTtnQkFDeEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDO2FBQ3ZDO1lBRUQsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxDQUFDO1NBQzVCO1FBRUQsT0FBTyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDO0lBQzVCLENBQUM7SUFFRDs7OztPQUlHO0lBQ0csdUJBQU0sR0FBWjs7O2dCQUNFLHNCQUFPLElBQUksQ0FBQyxVQUFVLEVBQUUsRUFBQzs7O0tBQzFCO0lBQ0gsYUFBQztBQUFELENBQUMsQUFsRUQsSUFrRUM7QUFsRVksd0JBQU07QUFvRW5CLFNBQVMsZ0JBQWdCLENBQUMsTUFBa0I7SUFDMUMsSUFBSSxLQUFLLEdBQUcsSUFBQSxzQkFBZSxFQUFDLE1BQU0sQ0FBQyxDQUFDO0lBRXBDLElBQUksS0FBSyxDQUFDLFVBQVUsR0FBRyxzQkFBVSxFQUFFO1FBQ2pDLElBQU0sVUFBVSxHQUFHLElBQUkscUJBQVMsRUFBRSxDQUFDO1FBQ25DLFVBQVUsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDekIsS0FBSyxHQUFHLFVBQVUsQ0FBQyxNQUFNLEVBQUUsQ0FBQztLQUM3QjtJQUVELElBQU0sTUFBTSxHQUFHLElBQUksVUFBVSxDQUFDLHNCQUFVLENBQUMsQ0FBQztJQUMxQyxNQUFNLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2xCLE9BQU8sTUFBTSxDQUFDO0FBQ2hCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCTE9DS19TSVpFIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5pbXBvcnQgeyBSYXdTaGEyNTYgfSBmcm9tIFwiLi9SYXdTaGEyNTZcIjtcbmltcG9ydCB7IEhhc2gsIFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IGlzRW1wdHlEYXRhLCBjb252ZXJ0VG9CdWZmZXIgfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuXG5leHBvcnQgY2xhc3MgU2hhMjU2IGltcGxlbWVudHMgSGFzaCB7XG4gIHByaXZhdGUgcmVhZG9ubHkgaGFzaCA9IG5ldyBSYXdTaGEyNTYoKTtcbiAgcHJpdmF0ZSByZWFkb25seSBvdXRlcj86IFJhd1NoYTI1NjtcbiAgcHJpdmF0ZSBlcnJvcjogYW55O1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc2VjcmV0KSB7XG4gICAgICB0aGlzLm91dGVyID0gbmV3IFJhd1NoYTI1NigpO1xuICAgICAgY29uc3QgaW5uZXIgPSBidWZmZXJGcm9tU2VjcmV0KHNlY3JldCk7XG4gICAgICBjb25zdCBvdXRlciA9IG5ldyBVaW50OEFycmF5KEJMT0NLX1NJWkUpO1xuICAgICAgb3V0ZXIuc2V0KGlubmVyKTtcblxuICAgICAgZm9yIChsZXQgaSA9IDA7IGkgPCBCTE9DS19TSVpFOyBpKyspIHtcbiAgICAgICAgaW5uZXJbaV0gXj0gMHgzNjtcbiAgICAgICAgb3V0ZXJbaV0gXj0gMHg1YztcbiAgICAgIH1cblxuICAgICAgdGhpcy5oYXNoLnVwZGF0ZShpbm5lcik7XG4gICAgICB0aGlzLm91dGVyLnVwZGF0ZShvdXRlcik7XG5cbiAgICAgIC8vIG92ZXJ3cml0ZSB0aGUgY29waWVkIGtleSBpbiBtZW1vcnlcbiAgICAgIGZvciAobGV0IGkgPSAwOyBpIDwgaW5uZXIuYnl0ZUxlbmd0aDsgaSsrKSB7XG4gICAgICAgIGlubmVyW2ldID0gMDtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICB1cGRhdGUodG9IYXNoOiBTb3VyY2VEYXRhKTogdm9pZCB7XG4gICAgaWYgKGlzRW1wdHlEYXRhKHRvSGFzaCkgfHwgdGhpcy5lcnJvcikge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHRyeSB7XG4gICAgICB0aGlzLmhhc2gudXBkYXRlKGNvbnZlcnRUb0J1ZmZlcih0b0hhc2gpKTtcbiAgICB9IGNhdGNoIChlKSB7XG4gICAgICB0aGlzLmVycm9yID0gZTtcbiAgICB9XG4gIH1cblxuICAvKiBUaGlzIHN5bmNocm9ub3VzIG1ldGhvZCBrZWVwcyBjb21wYXRpYmlsaXR5XG4gICAqIHdpdGggdGhlIHYyIGF3cy1zZGsuXG4gICAqL1xuICBkaWdlc3RTeW5jKCk6IFVpbnQ4QXJyYXkge1xuICAgIGlmICh0aGlzLmVycm9yKSB7XG4gICAgICB0aHJvdyB0aGlzLmVycm9yO1xuICAgIH1cblxuICAgIGlmICh0aGlzLm91dGVyKSB7XG4gICAgICBpZiAoIXRoaXMub3V0ZXIuZmluaXNoZWQpIHtcbiAgICAgICAgdGhpcy5vdXRlci51cGRhdGUodGhpcy5oYXNoLmRpZ2VzdCgpKTtcbiAgICAgIH1cblxuICAgICAgcmV0dXJuIHRoaXMub3V0ZXIuZGlnZXN0KCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXMuaGFzaC5kaWdlc3QoKTtcbiAgfVxuXG4gIC8qIFRoZSB1bmRlcmx5aW5nIGRpZ2VzdCBtZXRob2QgaGVyZSBpcyBzeW5jaHJvbm91cy5cbiAgICogVG8ga2VlcCB0aGUgc2FtZSBpbnRlcmZhY2Ugd2l0aCB0aGUgb3RoZXIgaGFzaCBmdW5jdGlvbnNcbiAgICogdGhlIGRlZmF1bHQgaXMgdG8gZXhwb3NlIHRoaXMgYXMgYW4gYXN5bmMgbWV0aG9kLlxuICAgKiBIb3dldmVyLCBpdCBjYW4gc29tZXRpbWVzIGJlIHVzZWZ1bCB0byBoYXZlIGEgc3luYyBtZXRob2QuXG4gICAqL1xuICBhc3luYyBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMuZGlnZXN0U3luYygpO1xuICB9XG59XG5cbmZ1bmN0aW9uIGJ1ZmZlckZyb21TZWNyZXQoc2VjcmV0OiBTb3VyY2VEYXRhKTogVWludDhBcnJheSB7XG4gIGxldCBpbnB1dCA9IGNvbnZlcnRUb0J1ZmZlcihzZWNyZXQpO1xuXG4gIGlmIChpbnB1dC5ieXRlTGVuZ3RoID4gQkxPQ0tfU0laRSkge1xuICAgIGNvbnN0IGJ1ZmZlckhhc2ggPSBuZXcgUmF3U2hhMjU2KCk7XG4gICAgYnVmZmVySGFzaC51cGRhdGUoaW5wdXQpO1xuICAgIGlucHV0ID0gYnVmZmVySGFzaC5kaWdlc3QoKTtcbiAgfVxuXG4gIGNvbnN0IGJ1ZmZlciA9IG5ldyBVaW50OEFycmF5KEJMT0NLX1NJWkUpO1xuICBidWZmZXIuc2V0KGlucHV0KTtcbiAgcmV0dXJuIGJ1ZmZlcjtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-browser/node_modules/@aws-crypto/sha256-js/build/jsSha256.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-js/build/RawSha256.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-js/build/RawSha256.js ***! \***************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-crypto/sha256-js/build/constants.js\");\n/**\n * @internal\n */\nvar RawSha256 = /** @class */ (function () {\n function RawSha256() {\n this.state = Int32Array.from(constants_1.INIT);\n this.temp = new Int32Array(64);\n this.buffer = new Uint8Array(64);\n this.bufferLength = 0;\n this.bytesHashed = 0;\n /**\n * @internal\n */\n this.finished = false;\n }\n RawSha256.prototype.update = function (data) {\n if (this.finished) {\n throw new Error(\"Attempted to update an already finished hash.\");\n }\n var position = 0;\n var byteLength = data.byteLength;\n this.bytesHashed += byteLength;\n if (this.bytesHashed * 8 > constants_1.MAX_HASHABLE_LENGTH) {\n throw new Error(\"Cannot hash more than 2^53 - 1 bits\");\n }\n while (byteLength > 0) {\n this.buffer[this.bufferLength++] = data[position++];\n byteLength--;\n if (this.bufferLength === constants_1.BLOCK_SIZE) {\n this.hashBuffer();\n this.bufferLength = 0;\n }\n }\n };\n RawSha256.prototype.digest = function () {\n if (!this.finished) {\n var bitsHashed = this.bytesHashed * 8;\n var bufferView = new DataView(this.buffer.buffer, this.buffer.byteOffset, this.buffer.byteLength);\n var undecoratedLength = this.bufferLength;\n bufferView.setUint8(this.bufferLength++, 0x80);\n // Ensure the final block has enough room for the hashed length\n if (undecoratedLength % constants_1.BLOCK_SIZE >= constants_1.BLOCK_SIZE - 8) {\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE; i++) {\n bufferView.setUint8(i, 0);\n }\n this.hashBuffer();\n this.bufferLength = 0;\n }\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE - 8; i++) {\n bufferView.setUint8(i, 0);\n }\n bufferView.setUint32(constants_1.BLOCK_SIZE - 8, Math.floor(bitsHashed / 0x100000000), true);\n bufferView.setUint32(constants_1.BLOCK_SIZE - 4, bitsHashed);\n this.hashBuffer();\n this.finished = true;\n }\n // The value in state is little-endian rather than big-endian, so flip\n // each word into a new Uint8Array\n var out = new Uint8Array(constants_1.DIGEST_LENGTH);\n for (var i = 0; i < 8; i++) {\n out[i * 4] = (this.state[i] >>> 24) & 0xff;\n out[i * 4 + 1] = (this.state[i] >>> 16) & 0xff;\n out[i * 4 + 2] = (this.state[i] >>> 8) & 0xff;\n out[i * 4 + 3] = (this.state[i] >>> 0) & 0xff;\n }\n return out;\n };\n RawSha256.prototype.hashBuffer = function () {\n var _a = this, buffer = _a.buffer, state = _a.state;\n var state0 = state[0], state1 = state[1], state2 = state[2], state3 = state[3], state4 = state[4], state5 = state[5], state6 = state[6], state7 = state[7];\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n if (i < 16) {\n this.temp[i] =\n ((buffer[i * 4] & 0xff) << 24) |\n ((buffer[i * 4 + 1] & 0xff) << 16) |\n ((buffer[i * 4 + 2] & 0xff) << 8) |\n (buffer[i * 4 + 3] & 0xff);\n }\n else {\n var u = this.temp[i - 2];\n var t1_1 = ((u >>> 17) | (u << 15)) ^ ((u >>> 19) | (u << 13)) ^ (u >>> 10);\n u = this.temp[i - 15];\n var t2_1 = ((u >>> 7) | (u << 25)) ^ ((u >>> 18) | (u << 14)) ^ (u >>> 3);\n this.temp[i] =\n ((t1_1 + this.temp[i - 7]) | 0) + ((t2_1 + this.temp[i - 16]) | 0);\n }\n var t1 = ((((((state4 >>> 6) | (state4 << 26)) ^\n ((state4 >>> 11) | (state4 << 21)) ^\n ((state4 >>> 25) | (state4 << 7))) +\n ((state4 & state5) ^ (~state4 & state6))) |\n 0) +\n ((state7 + ((constants_1.KEY[i] + this.temp[i]) | 0)) | 0)) |\n 0;\n var t2 = ((((state0 >>> 2) | (state0 << 30)) ^\n ((state0 >>> 13) | (state0 << 19)) ^\n ((state0 >>> 22) | (state0 << 10))) +\n ((state0 & state1) ^ (state0 & state2) ^ (state1 & state2))) |\n 0;\n state7 = state6;\n state6 = state5;\n state5 = state4;\n state4 = (state3 + t1) | 0;\n state3 = state2;\n state2 = state1;\n state1 = state0;\n state0 = (t1 + t2) | 0;\n }\n state[0] += state0;\n state[1] += state1;\n state[2] += state2;\n state[3] += state3;\n state[4] += state4;\n state[5] += state5;\n state[6] += state6;\n state[7] += state7;\n };\n return RawSha256;\n}());\nexports.RawSha256 = RawSha256;\n//# sourceMappingURL=RawSha256.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-js/build/RawSha256.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-js/build/constants.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-js/build/constants.js ***! \***************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n/**\n * @internal\n */\nexports.BLOCK_SIZE = 64;\n/**\n * @internal\n */\nexports.DIGEST_LENGTH = 32;\n/**\n * @internal\n */\nexports.KEY = new Uint32Array([\n 0x428a2f98,\n 0x71374491,\n 0xb5c0fbcf,\n 0xe9b5dba5,\n 0x3956c25b,\n 0x59f111f1,\n 0x923f82a4,\n 0xab1c5ed5,\n 0xd807aa98,\n 0x12835b01,\n 0x243185be,\n 0x550c7dc3,\n 0x72be5d74,\n 0x80deb1fe,\n 0x9bdc06a7,\n 0xc19bf174,\n 0xe49b69c1,\n 0xefbe4786,\n 0x0fc19dc6,\n 0x240ca1cc,\n 0x2de92c6f,\n 0x4a7484aa,\n 0x5cb0a9dc,\n 0x76f988da,\n 0x983e5152,\n 0xa831c66d,\n 0xb00327c8,\n 0xbf597fc7,\n 0xc6e00bf3,\n 0xd5a79147,\n 0x06ca6351,\n 0x14292967,\n 0x27b70a85,\n 0x2e1b2138,\n 0x4d2c6dfc,\n 0x53380d13,\n 0x650a7354,\n 0x766a0abb,\n 0x81c2c92e,\n 0x92722c85,\n 0xa2bfe8a1,\n 0xa81a664b,\n 0xc24b8b70,\n 0xc76c51a3,\n 0xd192e819,\n 0xd6990624,\n 0xf40e3585,\n 0x106aa070,\n 0x19a4c116,\n 0x1e376c08,\n 0x2748774c,\n 0x34b0bcb5,\n 0x391c0cb3,\n 0x4ed8aa4a,\n 0x5b9cca4f,\n 0x682e6ff3,\n 0x748f82ee,\n 0x78a5636f,\n 0x84c87814,\n 0x8cc70208,\n 0x90befffa,\n 0xa4506ceb,\n 0xbef9a3f7,\n 0xc67178f2\n]);\n/**\n * @internal\n */\nexports.INIT = [\n 0x6a09e667,\n 0xbb67ae85,\n 0x3c6ef372,\n 0xa54ff53a,\n 0x510e527f,\n 0x9b05688c,\n 0x1f83d9ab,\n 0x5be0cd19\n];\n/**\n * @internal\n */\nexports.MAX_HASHABLE_LENGTH = Math.pow(2, 53) - 1;\n//# sourceMappingURL=constants.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-js/build/constants.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-js/build/index.js": /*!***********************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-js/build/index.js ***! \***********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\ntslib_1.__exportStar(__webpack_require__(/*! ./jsSha256 */ \"./node_modules/@aws-crypto/sha256-js/build/jsSha256.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-js/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-js/build/jsSha256.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-js/build/jsSha256.js ***! \**************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-crypto/sha256-js/build/constants.js\");\nvar RawSha256_1 = __webpack_require__(/*! ./RawSha256 */ \"./node_modules/@aws-crypto/sha256-js/build/RawSha256.js\");\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n this.hash = new RawSha256_1.RawSha256();\n if (secret) {\n this.outer = new RawSha256_1.RawSha256();\n var inner = bufferFromSecret(secret);\n var outer = new Uint8Array(constants_1.BLOCK_SIZE);\n outer.set(inner);\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n inner[i] ^= 0x36;\n outer[i] ^= 0x5c;\n }\n this.hash.update(inner);\n this.outer.update(outer);\n // overwrite the copied key in memory\n for (var i = 0; i < inner.byteLength; i++) {\n inner[i] = 0;\n }\n }\n }\n Sha256.prototype.update = function (toHash) {\n if (isEmptyData(toHash) || this.error) {\n return;\n }\n try {\n this.hash.update(convertToBuffer(toHash));\n }\n catch (e) {\n this.error = e;\n }\n };\n /* This synchronous method keeps compatibility\n * with the v2 aws-sdk.\n */\n Sha256.prototype.digestSync = function () {\n if (this.error) {\n throw this.error;\n }\n if (this.outer) {\n if (!this.outer.finished) {\n this.outer.update(this.hash.digest());\n }\n return this.outer.digest();\n }\n return this.hash.digest();\n };\n /* The underlying digest method here is synchronous.\n * To keep the same interface with the other hash functions\n * the default is to expose this as an async method.\n * However, it can sometimes be useful to have a sync method.\n */\n Sha256.prototype.digest = function () {\n return tslib_1.__awaiter(this, void 0, void 0, function () {\n return tslib_1.__generator(this, function (_a) {\n return [2 /*return*/, this.digestSync()];\n });\n });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\nfunction bufferFromSecret(secret) {\n var input = convertToBuffer(secret);\n if (input.byteLength > constants_1.BLOCK_SIZE) {\n var bufferHash = new RawSha256_1.RawSha256();\n bufferHash.update(input);\n input = bufferHash.digest();\n }\n var buffer = new Uint8Array(constants_1.BLOCK_SIZE);\n buffer.set(input);\n return buffer;\n}\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nfunction convertToBuffer(data) {\n if (typeof data === \"string\") {\n return util_utf8_browser_1.fromUtf8(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\n//# sourceMappingURL=jsSha256.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-js/build/jsSha256.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js ***! \*****************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\n/* harmony import */ var _pureJs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./pureJs */ \"./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/pureJs.js\");\n/* harmony import */ var _whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./whatwgEncodingApi */ \"./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/whatwgEncodingApi.js\");\n\n\nvar fromUtf8 = function (input) {\n return typeof TextEncoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"fromUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"fromUtf8\"])(input);\n};\nvar toUtf8 = function (input) {\n return typeof TextDecoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"toUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"toUtf8\"])(input);\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsSUFBSSxVQUFVLEVBQUUsTUFBTSxJQUFJLFFBQVEsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUN0RSxPQUFPLEVBQUUsUUFBUSxJQUFJLG1CQUFtQixFQUFFLE1BQU0sSUFBSSxpQkFBaUIsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBS25HLE1BQU0sQ0FBQyxJQUFNLFFBQVEsR0FBRyxVQUFDLEtBQWE7SUFDcEMsT0FBQSxPQUFPLFdBQVcsS0FBSyxVQUFVLENBQUMsQ0FBQyxDQUFDLG1CQUFtQixDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDO0FBQWxGLENBQWtGLENBQUM7QUFFckYsTUFBTSxDQUFDLElBQU0sTUFBTSxHQUFHLFVBQUMsS0FBaUI7SUFDdEMsT0FBQSxPQUFPLFdBQVcsS0FBSyxVQUFVLENBQUMsQ0FBQyxDQUFDLGlCQUFpQixDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDO0FBQTlFLENBQThFLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBmcm9tVXRmOCBhcyBqc0Zyb21VdGY4LCB0b1V0ZjggYXMganNUb1V0ZjggfSBmcm9tIFwiLi9wdXJlSnNcIjtcbmltcG9ydCB7IGZyb21VdGY4IGFzIHRleHRFbmNvZGVyRnJvbVV0ZjgsIHRvVXRmOCBhcyB0ZXh0RW5jb2RlclRvVXRmOCB9IGZyb20gXCIuL3doYXR3Z0VuY29kaW5nQXBpXCI7XG5cbmRlY2xhcmUgY29uc3QgVGV4dERlY29kZXI6IEZ1bmN0aW9uIHwgdW5kZWZpbmVkO1xuZGVjbGFyZSBjb25zdCBUZXh0RW5jb2RlcjogRnVuY3Rpb24gfCB1bmRlZmluZWQ7XG5cbmV4cG9ydCBjb25zdCBmcm9tVXRmOCA9IChpbnB1dDogc3RyaW5nKTogVWludDhBcnJheSA9PlxuICB0eXBlb2YgVGV4dEVuY29kZXIgPT09IFwiZnVuY3Rpb25cIiA/IHRleHRFbmNvZGVyRnJvbVV0ZjgoaW5wdXQpIDoganNGcm9tVXRmOChpbnB1dCk7XG5cbmV4cG9ydCBjb25zdCB0b1V0ZjggPSAoaW5wdXQ6IFVpbnQ4QXJyYXkpOiBzdHJpbmcgPT5cbiAgdHlwZW9mIFRleHREZWNvZGVyID09PSBcImZ1bmN0aW9uXCIgPyB0ZXh0RW5jb2RlclRvVXRmOChpbnB1dCkgOiBqc1RvVXRmOChpbnB1dCk7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/pureJs.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/pureJs.js ***! \******************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\n/**\n * Converts a JS string from its native UCS-2/UTF-16 representation into a\n * Uint8Array of the bytes used to represent the equivalent characters in UTF-8.\n *\n * Cribbed from the `goog.crypt.stringToUtf8ByteArray` function in the Google\n * Closure library, though updated to use typed arrays.\n */\nvar fromUtf8 = function (input) {\n var bytes = [];\n for (var i = 0, len = input.length; i < len; i++) {\n var value = input.charCodeAt(i);\n if (value < 0x80) {\n bytes.push(value);\n }\n else if (value < 0x800) {\n bytes.push((value >> 6) | 192, (value & 63) | 128);\n }\n else if (i + 1 < input.length && (value & 0xfc00) === 0xd800 && (input.charCodeAt(i + 1) & 0xfc00) === 0xdc00) {\n var surrogatePair = 0x10000 + ((value & 1023) << 10) + (input.charCodeAt(++i) & 1023);\n bytes.push((surrogatePair >> 18) | 240, ((surrogatePair >> 12) & 63) | 128, ((surrogatePair >> 6) & 63) | 128, (surrogatePair & 63) | 128);\n }\n else {\n bytes.push((value >> 12) | 224, ((value >> 6) & 63) | 128, (value & 63) | 128);\n }\n }\n return Uint8Array.from(bytes);\n};\n/**\n * Converts a typed array of bytes containing UTF-8 data into a native JS\n * string.\n *\n * Partly cribbed from the `goog.crypt.utf8ByteArrayToString` function in the\n * Google Closure library, though updated to use typed arrays and to better\n * handle astral plane code points.\n */\nvar toUtf8 = function (input) {\n var decoded = \"\";\n for (var i = 0, len = input.length; i < len; i++) {\n var byte = input[i];\n if (byte < 0x80) {\n decoded += String.fromCharCode(byte);\n }\n else if (192 <= byte && byte < 224) {\n var nextByte = input[++i];\n decoded += String.fromCharCode(((byte & 31) << 6) | (nextByte & 63));\n }\n else if (240 <= byte && byte < 365) {\n var surrogatePair = [byte, input[++i], input[++i], input[++i]];\n var encoded = \"%\" + surrogatePair.map(function (byteValue) { return byteValue.toString(16); }).join(\"%\");\n decoded += decodeURIComponent(encoded);\n }\n else {\n decoded += String.fromCharCode(((byte & 15) << 12) | ((input[++i] & 63) << 6) | (input[++i] & 63));\n }\n }\n return decoded;\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyZUpzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3B1cmVKcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFDSCxNQUFNLENBQUMsSUFBTSxRQUFRLEdBQUcsVUFBQyxLQUFhO0lBQ3BDLElBQU0sS0FBSyxHQUFrQixFQUFFLENBQUM7SUFDaEMsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsR0FBRyxHQUFHLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDLEVBQUUsRUFBRTtRQUNoRCxJQUFNLEtBQUssR0FBRyxLQUFLLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ2xDLElBQUksS0FBSyxHQUFHLElBQUksRUFBRTtZQUNoQixLQUFLLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ25CO2FBQU0sSUFBSSxLQUFLLEdBQUcsS0FBSyxFQUFFO1lBQ3hCLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxLQUFLLElBQUksQ0FBQyxDQUFDLEdBQUcsR0FBVSxFQUFFLENBQUMsS0FBSyxHQUFHLEVBQVEsQ0FBQyxHQUFHLEdBQVUsQ0FBQyxDQUFDO1NBQ3hFO2FBQU0sSUFBSSxDQUFDLEdBQUcsQ0FBQyxHQUFHLEtBQUssQ0FBQyxNQUFNLElBQUksQ0FBQyxLQUFLLEdBQUcsTUFBTSxDQUFDLEtBQUssTUFBTSxJQUFJLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsTUFBTSxDQUFDLEtBQUssTUFBTSxFQUFFO1lBQy9HLElBQU0sYUFBYSxHQUFHLE9BQU8sR0FBRyxDQUFDLENBQUMsS0FBSyxHQUFHLElBQVksQ0FBQyxJQUFJLEVBQUUsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxHQUFHLElBQVksQ0FBQyxDQUFDO1lBQ3hHLEtBQUssQ0FBQyxJQUFJLENBQ1IsQ0FBQyxhQUFhLElBQUksRUFBRSxDQUFDLEdBQUcsR0FBVSxFQUNsQyxDQUFDLENBQUMsYUFBYSxJQUFJLEVBQUUsQ0FBQyxHQUFHLEVBQVEsQ0FBQyxHQUFHLEdBQVUsRUFDL0MsQ0FBQyxDQUFDLGFBQWEsSUFBSSxDQUFDLENBQUMsR0FBRyxFQUFRLENBQUMsR0FBRyxHQUFVLEVBQzlDLENBQUMsYUFBYSxHQUFHLEVBQVEsQ0FBQyxHQUFHLEdBQVUsQ0FDeEMsQ0FBQztTQUNIO2FBQU07WUFDTCxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxJQUFJLEVBQUUsQ0FBQyxHQUFHLEdBQVUsRUFBRSxDQUFDLENBQUMsS0FBSyxJQUFJLENBQUMsQ0FBQyxHQUFHLEVBQVEsQ0FBQyxHQUFHLEdBQVUsRUFBRSxDQUFDLEtBQUssR0FBRyxFQUFRLENBQUMsR0FBRyxHQUFVLENBQUMsQ0FBQztTQUNqSDtLQUNGO0lBRUQsT0FBTyxVQUFVLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0FBQ2hDLENBQUMsQ0FBQztBQUVGOzs7Ozs7O0dBT0c7QUFDSCxNQUFNLENBQUMsSUFBTSxNQUFNLEdBQUcsVUFBQyxLQUFpQjtJQUN0QyxJQUFJLE9BQU8sR0FBRyxFQUFFLENBQUM7SUFDakIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsR0FBRyxHQUFHLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDLEVBQUUsRUFBRTtRQUNoRCxJQUFNLElBQUksR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDdEIsSUFBSSxJQUFJLEdBQUcsSUFBSSxFQUFFO1lBQ2YsT0FBTyxJQUFJLE1BQU0sQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDdEM7YUFBTSxJQUFJLEdBQVUsSUFBSSxJQUFJLElBQUksSUFBSSxHQUFHLEdBQVUsRUFBRTtZQUNsRCxJQUFNLFFBQVEsR0FBRyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQztZQUM1QixPQUFPLElBQUksTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDLENBQUMsSUFBSSxHQUFHLEVBQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLENBQUMsUUFBUSxHQUFHLEVBQVEsQ0FBQyxDQUFDLENBQUM7U0FDakY7YUFBTSxJQUFJLEdBQVUsSUFBSSxJQUFJLElBQUksSUFBSSxHQUFHLEdBQVcsRUFBRTtZQUNuRCxJQUFNLGFBQWEsR0FBRyxDQUFDLElBQUksRUFBRSxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ2pFLElBQU0sT0FBTyxHQUFHLEdBQUcsR0FBRyxhQUFhLENBQUMsR0FBRyxDQUFDLFVBQUMsU0FBUyxJQUFLLE9BQUEsU0FBUyxDQUFDLFFBQVEsQ0FBQyxFQUFFLENBQUMsRUFBdEIsQ0FBc0IsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztZQUN6RixPQUFPLElBQUksa0JBQWtCLENBQUMsT0FBTyxDQUFDLENBQUM7U0FDeEM7YUFBTTtZQUNMLE9BQU8sSUFBSSxNQUFNLENBQUMsWUFBWSxDQUM1QixDQUFDLENBQUMsSUFBSSxHQUFHLEVBQU0sQ0FBQyxJQUFJLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsR0FBRyxFQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQyxHQUFHLEVBQVEsQ0FBQyxDQUNuRixDQUFDO1NBQ0g7S0FDRjtJQUVELE9BQU8sT0FBTyxDQUFDO0FBQ2pCLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQ29udmVydHMgYSBKUyBzdHJpbmcgZnJvbSBpdHMgbmF0aXZlIFVDUy0yL1VURi0xNiByZXByZXNlbnRhdGlvbiBpbnRvIGFcbiAqIFVpbnQ4QXJyYXkgb2YgdGhlIGJ5dGVzIHVzZWQgdG8gcmVwcmVzZW50IHRoZSBlcXVpdmFsZW50IGNoYXJhY3RlcnMgaW4gVVRGLTguXG4gKlxuICogQ3JpYmJlZCBmcm9tIHRoZSBgZ29vZy5jcnlwdC5zdHJpbmdUb1V0ZjhCeXRlQXJyYXlgIGZ1bmN0aW9uIGluIHRoZSBHb29nbGVcbiAqIENsb3N1cmUgbGlicmFyeSwgdGhvdWdoIHVwZGF0ZWQgdG8gdXNlIHR5cGVkIGFycmF5cy5cbiAqL1xuZXhwb3J0IGNvbnN0IGZyb21VdGY4ID0gKGlucHV0OiBzdHJpbmcpOiBVaW50OEFycmF5ID0+IHtcbiAgY29uc3QgYnl0ZXM6IEFycmF5PG51bWJlcj4gPSBbXTtcbiAgZm9yIChsZXQgaSA9IDAsIGxlbiA9IGlucHV0Lmxlbmd0aDsgaSA8IGxlbjsgaSsrKSB7XG4gICAgY29uc3QgdmFsdWUgPSBpbnB1dC5jaGFyQ29kZUF0KGkpO1xuICAgIGlmICh2YWx1ZSA8IDB4ODApIHtcbiAgICAgIGJ5dGVzLnB1c2godmFsdWUpO1xuICAgIH0gZWxzZSBpZiAodmFsdWUgPCAweDgwMCkge1xuICAgICAgYnl0ZXMucHVzaCgodmFsdWUgPj4gNikgfCAwYjExMDAwMDAwLCAodmFsdWUgJiAwYjExMTExMSkgfCAwYjEwMDAwMDAwKTtcbiAgICB9IGVsc2UgaWYgKGkgKyAxIDwgaW5wdXQubGVuZ3RoICYmICh2YWx1ZSAmIDB4ZmMwMCkgPT09IDB4ZDgwMCAmJiAoaW5wdXQuY2hhckNvZGVBdChpICsgMSkgJiAweGZjMDApID09PSAweGRjMDApIHtcbiAgICAgIGNvbnN0IHN1cnJvZ2F0ZVBhaXIgPSAweDEwMDAwICsgKCh2YWx1ZSAmIDBiMTExMTExMTExMSkgPDwgMTApICsgKGlucHV0LmNoYXJDb2RlQXQoKytpKSAmIDBiMTExMTExMTExMSk7XG4gICAgICBieXRlcy5wdXNoKFxuICAgICAgICAoc3Vycm9nYXRlUGFpciA+PiAxOCkgfCAwYjExMTEwMDAwLFxuICAgICAgICAoKHN1cnJvZ2F0ZVBhaXIgPj4gMTIpICYgMGIxMTExMTEpIHwgMGIxMDAwMDAwMCxcbiAgICAgICAgKChzdXJyb2dhdGVQYWlyID4+IDYpICYgMGIxMTExMTEpIHwgMGIxMDAwMDAwMCxcbiAgICAgICAgKHN1cnJvZ2F0ZVBhaXIgJiAwYjExMTExMSkgfCAwYjEwMDAwMDAwXG4gICAgICApO1xuICAgIH0gZWxzZSB7XG4gICAgICBieXRlcy5wdXNoKCh2YWx1ZSA+PiAxMikgfCAwYjExMTAwMDAwLCAoKHZhbHVlID4+IDYpICYgMGIxMTExMTEpIHwgMGIxMDAwMDAwMCwgKHZhbHVlICYgMGIxMTExMTEpIHwgMGIxMDAwMDAwMCk7XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIFVpbnQ4QXJyYXkuZnJvbShieXRlcyk7XG59O1xuXG4vKipcbiAqIENvbnZlcnRzIGEgdHlwZWQgYXJyYXkgb2YgYnl0ZXMgY29udGFpbmluZyBVVEYtOCBkYXRhIGludG8gYSBuYXRpdmUgSlNcbiAqIHN0cmluZy5cbiAqXG4gKiBQYXJ0bHkgY3JpYmJlZCBmcm9tIHRoZSBgZ29vZy5jcnlwdC51dGY4Qnl0ZUFycmF5VG9TdHJpbmdgIGZ1bmN0aW9uIGluIHRoZVxuICogR29vZ2xlIENsb3N1cmUgbGlicmFyeSwgdGhvdWdoIHVwZGF0ZWQgdG8gdXNlIHR5cGVkIGFycmF5cyBhbmQgdG8gYmV0dGVyXG4gKiBoYW5kbGUgYXN0cmFsIHBsYW5lIGNvZGUgcG9pbnRzLlxuICovXG5leHBvcnQgY29uc3QgdG9VdGY4ID0gKGlucHV0OiBVaW50OEFycmF5KTogc3RyaW5nID0+IHtcbiAgbGV0IGRlY29kZWQgPSBcIlwiO1xuICBmb3IgKGxldCBpID0gMCwgbGVuID0gaW5wdXQubGVuZ3RoOyBpIDwgbGVuOyBpKyspIHtcbiAgICBjb25zdCBieXRlID0gaW5wdXRbaV07XG4gICAgaWYgKGJ5dGUgPCAweDgwKSB7XG4gICAgICBkZWNvZGVkICs9IFN0cmluZy5mcm9tQ2hhckNvZGUoYnl0ZSk7XG4gICAgfSBlbHNlIGlmICgwYjExMDAwMDAwIDw9IGJ5dGUgJiYgYnl0ZSA8IDBiMTExMDAwMDApIHtcbiAgICAgIGNvbnN0IG5leHRCeXRlID0gaW5wdXRbKytpXTtcbiAgICAgIGRlY29kZWQgKz0gU3RyaW5nLmZyb21DaGFyQ29kZSgoKGJ5dGUgJiAwYjExMTExKSA8PCA2KSB8IChuZXh0Qnl0ZSAmIDBiMTExMTExKSk7XG4gICAgfSBlbHNlIGlmICgwYjExMTEwMDAwIDw9IGJ5dGUgJiYgYnl0ZSA8IDBiMTAxMTAxMTAxKSB7XG4gICAgICBjb25zdCBzdXJyb2dhdGVQYWlyID0gW2J5dGUsIGlucHV0WysraV0sIGlucHV0WysraV0sIGlucHV0WysraV1dO1xuICAgICAgY29uc3QgZW5jb2RlZCA9IFwiJVwiICsgc3Vycm9nYXRlUGFpci5tYXAoKGJ5dGVWYWx1ZSkgPT4gYnl0ZVZhbHVlLnRvU3RyaW5nKDE2KSkuam9pbihcIiVcIik7XG4gICAgICBkZWNvZGVkICs9IGRlY29kZVVSSUNvbXBvbmVudChlbmNvZGVkKTtcbiAgICB9IGVsc2Uge1xuICAgICAgZGVjb2RlZCArPSBTdHJpbmcuZnJvbUNoYXJDb2RlKFxuICAgICAgICAoKGJ5dGUgJiAwYjExMTEpIDw8IDEyKSB8ICgoaW5wdXRbKytpXSAmIDBiMTExMTExKSA8PCA2KSB8IChpbnB1dFsrK2ldICYgMGIxMTExMTEpXG4gICAgICApO1xuICAgIH1cbiAgfVxuXG4gIHJldHVybiBkZWNvZGVkO1xufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/pureJs.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/whatwgEncodingApi.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/whatwgEncodingApi.js ***! \*****************************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\nfunction fromUtf8(input) {\n return new TextEncoder().encode(input);\n}\nfunction toUtf8(input) {\n return new TextDecoder(\"utf-8\").decode(input);\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2hhdHdnRW5jb2RpbmdBcGkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2hhdHdnRW5jb2RpbmdBcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBeUNBLE1BQU0sVUFBVSxRQUFRLENBQUMsS0FBYTtJQUNwQyxPQUFPLElBQUksV0FBVyxFQUFFLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO0FBQ3pDLENBQUM7QUFFRCxNQUFNLFVBQVUsTUFBTSxDQUFDLEtBQWlCO0lBQ3RDLE9BQU8sSUFBSSxXQUFXLENBQUMsT0FBTyxDQUFDLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO0FBQ2hELENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEEgZGVjbGFyYXRpb24gb2YgdGhlIGdsb2JhbCBUZXh0RW5jb2RlciBhbmQgVGV4dERlY29kZXIgY29uc3RydWN0b3JzLlxuICpcbiAqIEBzZWUgaHR0cHM6Ly9lbmNvZGluZy5zcGVjLndoYXR3Zy5vcmcvXG4gKi9cbi8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbm8tbmFtZXNwYWNlXG5uYW1lc3BhY2UgRW5jb2Rpbmcge1xuICBpbnRlcmZhY2UgVGV4dERlY29kZXJPcHRpb25zIHtcbiAgICBmYXRhbD86IGJvb2xlYW47XG4gICAgaWdub3JlQk9NPzogYm9vbGVhbjtcbiAgfVxuXG4gIGludGVyZmFjZSBUZXh0RGVjb2RlT3B0aW9ucyB7XG4gICAgc3RyZWFtPzogYm9vbGVhbjtcbiAgfVxuXG4gIGludGVyZmFjZSBUZXh0RGVjb2RlciB7XG4gICAgcmVhZG9ubHkgZW5jb2Rpbmc6IHN0cmluZztcbiAgICByZWFkb25seSBmYXRhbDogYm9vbGVhbjtcbiAgICByZWFkb25seSBpZ25vcmVCT006IGJvb2xlYW47XG4gICAgZGVjb2RlKGlucHV0PzogQXJyYXlCdWZmZXIgfCBBcnJheUJ1ZmZlclZpZXcsIG9wdGlvbnM/OiBUZXh0RGVjb2RlT3B0aW9ucyk6IHN0cmluZztcbiAgfVxuXG4gIGV4cG9ydCBpbnRlcmZhY2UgVGV4dERlY29kZXJDb25zdHJ1Y3RvciB7XG4gICAgbmV3IChsYWJlbD86IHN0cmluZywgb3B0aW9ucz86IFRleHREZWNvZGVyT3B0aW9ucyk6IFRleHREZWNvZGVyO1xuICB9XG5cbiAgaW50ZXJmYWNlIFRleHRFbmNvZGVyIHtcbiAgICByZWFkb25seSBlbmNvZGluZzogXCJ1dGYtOFwiO1xuICAgIGVuY29kZShpbnB1dD86IHN0cmluZyk6IFVpbnQ4QXJyYXk7XG4gIH1cblxuICBleHBvcnQgaW50ZXJmYWNlIFRleHRFbmNvZGVyQ29uc3RydWN0b3Ige1xuICAgIG5ldyAoKTogVGV4dEVuY29kZXI7XG4gIH1cbn1cblxuZGVjbGFyZSBjb25zdCBUZXh0RGVjb2RlcjogRW5jb2RpbmcuVGV4dERlY29kZXJDb25zdHJ1Y3RvcjtcblxuZGVjbGFyZSBjb25zdCBUZXh0RW5jb2RlcjogRW5jb2RpbmcuVGV4dEVuY29kZXJDb25zdHJ1Y3RvcjtcblxuZXhwb3J0IGZ1bmN0aW9uIGZyb21VdGY4KGlucHV0OiBzdHJpbmcpOiBVaW50OEFycmF5IHtcbiAgcmV0dXJuIG5ldyBUZXh0RW5jb2RlcigpLmVuY29kZShpbnB1dCk7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiB0b1V0ZjgoaW5wdXQ6IFVpbnQ4QXJyYXkpOiBzdHJpbmcge1xuICByZXR1cm4gbmV3IFRleHREZWNvZGVyKFwidXRmLThcIikuZGVjb2RlKGlucHV0KTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/util-utf8-browser/dist/es/whatwgEncodingApi.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/supports-web-crypto/build/index.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-crypto/supports-web-crypto/build/index.js ***! \*********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\ntslib_1.__exportStar(__webpack_require__(/*! ./supportsWebCrypto */ \"./node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js\"), exports);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsOERBQW9DIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vc3VwcG9ydHNXZWJDcnlwdG9cIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/supports-web-crypto/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js ***! \*********************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.supportsZeroByteGCM = exports.supportsSubtleCrypto = exports.supportsSecureRandom = exports.supportsWebCrypto = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\nvar subtleCryptoMethods = [\n \"decrypt\",\n \"digest\",\n \"encrypt\",\n \"exportKey\",\n \"generateKey\",\n \"importKey\",\n \"sign\",\n \"verify\"\n];\nfunction supportsWebCrypto(window) {\n if (supportsSecureRandom(window) &&\n typeof window.crypto.subtle === \"object\") {\n var subtle = window.crypto.subtle;\n return supportsSubtleCrypto(subtle);\n }\n return false;\n}\nexports.supportsWebCrypto = supportsWebCrypto;\nfunction supportsSecureRandom(window) {\n if (typeof window === \"object\" && typeof window.crypto === \"object\") {\n var getRandomValues = window.crypto.getRandomValues;\n return typeof getRandomValues === \"function\";\n }\n return false;\n}\nexports.supportsSecureRandom = supportsSecureRandom;\nfunction supportsSubtleCrypto(subtle) {\n return (subtle &&\n subtleCryptoMethods.every(function (methodName) { return typeof subtle[methodName] === \"function\"; }));\n}\nexports.supportsSubtleCrypto = supportsSubtleCrypto;\nfunction supportsZeroByteGCM(subtle) {\n return tslib_1.__awaiter(this, void 0, void 0, function () {\n var key, zeroByteAuthTag, _a;\n return tslib_1.__generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!supportsSubtleCrypto(subtle))\n return [2 /*return*/, false];\n _b.label = 1;\n case 1:\n _b.trys.push([1, 4, , 5]);\n return [4 /*yield*/, subtle.generateKey({ name: \"AES-GCM\", length: 128 }, false, [\"encrypt\"])];\n case 2:\n key = _b.sent();\n return [4 /*yield*/, subtle.encrypt({\n name: \"AES-GCM\",\n iv: new Uint8Array(Array(12)),\n additionalData: new Uint8Array(Array(16)),\n tagLength: 128\n }, key, new Uint8Array(0))];\n case 3:\n zeroByteAuthTag = _b.sent();\n return [2 /*return*/, zeroByteAuthTag.byteLength === 16];\n case 4:\n _a = _b.sent();\n return [2 /*return*/, false];\n case 5: return [2 /*return*/];\n }\n });\n });\n}\nexports.supportsZeroByteGCM = supportsZeroByteGCM;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwcG9ydHNXZWJDcnlwdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvc3VwcG9ydHNXZWJDcnlwdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQVVBLElBQU0sbUJBQW1CLEdBQThCO0lBQ3JELFNBQVM7SUFDVCxRQUFRO0lBQ1IsU0FBUztJQUNULFdBQVc7SUFDWCxhQUFhO0lBQ2IsV0FBVztJQUNYLE1BQU07SUFDTixRQUFRO0NBQ1QsQ0FBQztBQUVGLFNBQWdCLGlCQUFpQixDQUFDLE1BQWM7SUFDOUMsSUFDRSxvQkFBb0IsQ0FBQyxNQUFNLENBQUM7UUFDNUIsT0FBTyxNQUFNLENBQUMsTUFBTSxDQUFDLE1BQU0sS0FBSyxRQUFRLEVBQ3hDO1FBQ1EsSUFBQSxNQUFNLEdBQUssTUFBTSxDQUFDLE1BQU0sT0FBbEIsQ0FBbUI7UUFFakMsT0FBTyxvQkFBb0IsQ0FBQyxNQUFNLENBQUMsQ0FBQztLQUNyQztJQUVELE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQztBQVhELDhDQVdDO0FBRUQsU0FBZ0Isb0JBQW9CLENBQUMsTUFBYztJQUNqRCxJQUFJLE9BQU8sTUFBTSxLQUFLLFFBQVEsSUFBSSxPQUFPLE1BQU0sQ0FBQyxNQUFNLEtBQUssUUFBUSxFQUFFO1FBQzNELElBQUEsZUFBZSxHQUFLLE1BQU0sQ0FBQyxNQUFNLGdCQUFsQixDQUFtQjtRQUUxQyxPQUFPLE9BQU8sZUFBZSxLQUFLLFVBQVUsQ0FBQztLQUM5QztJQUVELE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQztBQVJELG9EQVFDO0FBRUQsU0FBZ0Isb0JBQW9CLENBQUMsTUFBb0I7SUFDdkQsT0FBTyxDQUNMLE1BQU07UUFDTixtQkFBbUIsQ0FBQyxLQUFLLENBQ3ZCLFVBQUEsVUFBVSxJQUFJLE9BQUEsT0FBTyxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUssVUFBVSxFQUF4QyxDQUF3QyxDQUN2RCxDQUNGLENBQUM7QUFDSixDQUFDO0FBUEQsb0RBT0M7QUFFRCxTQUFzQixtQkFBbUIsQ0FBQyxNQUFvQjs7Ozs7O29CQUM1RCxJQUFJLENBQUMsb0JBQW9CLENBQUMsTUFBTSxDQUFDO3dCQUFFLHNCQUFPLEtBQUssRUFBQzs7OztvQkFFbEMscUJBQU0sTUFBTSxDQUFDLFdBQVcsQ0FDbEMsRUFBRSxJQUFJLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxHQUFHLEVBQUUsRUFDaEMsS0FBSyxFQUNMLENBQUMsU0FBUyxDQUFDLENBQ1osRUFBQTs7b0JBSkssR0FBRyxHQUFHLFNBSVg7b0JBQ3VCLHFCQUFNLE1BQU0sQ0FBQyxPQUFPLENBQzFDOzRCQUNFLElBQUksRUFBRSxTQUFTOzRCQUNmLEVBQUUsRUFBRSxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7NEJBQzdCLGNBQWMsRUFBRSxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7NEJBQ3pDLFNBQVMsRUFBRSxHQUFHO3lCQUNmLEVBQ0QsR0FBRyxFQUNILElBQUksVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUNsQixFQUFBOztvQkFUSyxlQUFlLEdBQUcsU0FTdkI7b0JBQ0Qsc0JBQU8sZUFBZSxDQUFDLFVBQVUsS0FBSyxFQUFFLEVBQUM7OztvQkFFekMsc0JBQU8sS0FBSyxFQUFDOzs7OztDQUVoQjtBQXRCRCxrREFzQkMiLCJzb3VyY2VzQ29udGVudCI6WyJ0eXBlIFN1YnRsZUNyeXB0b01ldGhvZCA9XG4gIHwgXCJkZWNyeXB0XCJcbiAgfCBcImRpZ2VzdFwiXG4gIHwgXCJlbmNyeXB0XCJcbiAgfCBcImV4cG9ydEtleVwiXG4gIHwgXCJnZW5lcmF0ZUtleVwiXG4gIHwgXCJpbXBvcnRLZXlcIlxuICB8IFwic2lnblwiXG4gIHwgXCJ2ZXJpZnlcIjtcblxuY29uc3Qgc3VidGxlQ3J5cHRvTWV0aG9kczogQXJyYXk8U3VidGxlQ3J5cHRvTWV0aG9kPiA9IFtcbiAgXCJkZWNyeXB0XCIsXG4gIFwiZGlnZXN0XCIsXG4gIFwiZW5jcnlwdFwiLFxuICBcImV4cG9ydEtleVwiLFxuICBcImdlbmVyYXRlS2V5XCIsXG4gIFwiaW1wb3J0S2V5XCIsXG4gIFwic2lnblwiLFxuICBcInZlcmlmeVwiXG5dO1xuXG5leHBvcnQgZnVuY3Rpb24gc3VwcG9ydHNXZWJDcnlwdG8od2luZG93OiBXaW5kb3cpOiBib29sZWFuIHtcbiAgaWYgKFxuICAgIHN1cHBvcnRzU2VjdXJlUmFuZG9tKHdpbmRvdykgJiZcbiAgICB0eXBlb2Ygd2luZG93LmNyeXB0by5zdWJ0bGUgPT09IFwib2JqZWN0XCJcbiAgKSB7XG4gICAgY29uc3QgeyBzdWJ0bGUgfSA9IHdpbmRvdy5jcnlwdG87XG5cbiAgICByZXR1cm4gc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlKTtcbiAgfVxuXG4gIHJldHVybiBmYWxzZTtcbn1cblxuZXhwb3J0IGZ1bmN0aW9uIHN1cHBvcnRzU2VjdXJlUmFuZG9tKHdpbmRvdzogV2luZG93KTogYm9vbGVhbiB7XG4gIGlmICh0eXBlb2Ygd2luZG93ID09PSBcIm9iamVjdFwiICYmIHR5cGVvZiB3aW5kb3cuY3J5cHRvID09PSBcIm9iamVjdFwiKSB7XG4gICAgY29uc3QgeyBnZXRSYW5kb21WYWx1ZXMgfSA9IHdpbmRvdy5jcnlwdG87XG5cbiAgICByZXR1cm4gdHlwZW9mIGdldFJhbmRvbVZhbHVlcyA9PT0gXCJmdW5jdGlvblwiO1xuICB9XG5cbiAgcmV0dXJuIGZhbHNlO1xufVxuXG5leHBvcnQgZnVuY3Rpb24gc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlOiBTdWJ0bGVDcnlwdG8pIHtcbiAgcmV0dXJuIChcbiAgICBzdWJ0bGUgJiZcbiAgICBzdWJ0bGVDcnlwdG9NZXRob2RzLmV2ZXJ5KFxuICAgICAgbWV0aG9kTmFtZSA9PiB0eXBlb2Ygc3VidGxlW21ldGhvZE5hbWVdID09PSBcImZ1bmN0aW9uXCJcbiAgICApXG4gICk7XG59XG5cbmV4cG9ydCBhc3luYyBmdW5jdGlvbiBzdXBwb3J0c1plcm9CeXRlR0NNKHN1YnRsZTogU3VidGxlQ3J5cHRvKSB7XG4gIGlmICghc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlKSkgcmV0dXJuIGZhbHNlO1xuICB0cnkge1xuICAgIGNvbnN0IGtleSA9IGF3YWl0IHN1YnRsZS5nZW5lcmF0ZUtleShcbiAgICAgIHsgbmFtZTogXCJBRVMtR0NNXCIsIGxlbmd0aDogMTI4IH0sXG4gICAgICBmYWxzZSxcbiAgICAgIFtcImVuY3J5cHRcIl1cbiAgICApO1xuICAgIGNvbnN0IHplcm9CeXRlQXV0aFRhZyA9IGF3YWl0IHN1YnRsZS5lbmNyeXB0KFxuICAgICAge1xuICAgICAgICBuYW1lOiBcIkFFUy1HQ01cIixcbiAgICAgICAgaXY6IG5ldyBVaW50OEFycmF5KEFycmF5KDEyKSksXG4gICAgICAgIGFkZGl0aW9uYWxEYXRhOiBuZXcgVWludDhBcnJheShBcnJheSgxNikpLFxuICAgICAgICB0YWdMZW5ndGg6IDEyOFxuICAgICAgfSxcbiAgICAgIGtleSxcbiAgICAgIG5ldyBVaW50OEFycmF5KDApXG4gICAgKTtcbiAgICByZXR1cm4gemVyb0J5dGVBdXRoVGFnLmJ5dGVMZW5ndGggPT09IDE2O1xuICB9IGNhdGNoIHtcbiAgICByZXR1cm4gZmFsc2U7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/util/build/convertToBuffer.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-crypto/util/build/convertToBuffer.js ***! \****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/* WEBPACK VAR INJECTION */(function(Buffer) {\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.convertToBuffer = void 0;\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n// Quick polyfill\nvar fromUtf8 = typeof Buffer !== \"undefined\" && Buffer.from\n ? function (input) { return Buffer.from(input, \"utf8\"); }\n : util_utf8_browser_1.fromUtf8;\nfunction convertToBuffer(data) {\n // Already a Uint8, do nothing\n if (data instanceof Uint8Array)\n return data;\n if (typeof data === \"string\") {\n return fromUtf8(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\nexports.convertToBuffer = convertToBuffer;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udmVydFRvQnVmZmVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NvbnZlcnRUb0J1ZmZlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0VBQW9FO0FBQ3BFLHNDQUFzQzs7O0FBR3RDLGdFQUF5RTtBQUV6RSxpQkFBaUI7QUFDakIsSUFBTSxRQUFRLEdBQ1osT0FBTyxNQUFNLEtBQUssV0FBVyxJQUFJLE1BQU0sQ0FBQyxJQUFJO0lBQzFDLENBQUMsQ0FBQyxVQUFDLEtBQWEsSUFBSyxPQUFBLE1BQU0sQ0FBQyxJQUFJLENBQUMsS0FBSyxFQUFFLE1BQU0sQ0FBQyxFQUExQixDQUEwQjtJQUMvQyxDQUFDLENBQUMsNEJBQWUsQ0FBQztBQUV0QixTQUFnQixlQUFlLENBQUMsSUFBZ0I7SUFDOUMsOEJBQThCO0lBQzlCLElBQUksSUFBSSxZQUFZLFVBQVU7UUFBRSxPQUFPLElBQUksQ0FBQztJQUU1QyxJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVEsRUFBRTtRQUM1QixPQUFPLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQztLQUN2QjtJQUVELElBQUksV0FBVyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsRUFBRTtRQUM1QixPQUFPLElBQUksVUFBVSxDQUNuQixJQUFJLENBQUMsTUFBTSxFQUNYLElBQUksQ0FBQyxVQUFVLEVBQ2YsSUFBSSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUMsaUJBQWlCLENBQy9DLENBQUM7S0FDSDtJQUVELE9BQU8sSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUM7QUFDOUIsQ0FBQztBQWpCRCwwQ0FpQkMiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBDb3B5cmlnaHQgQW1hem9uLmNvbSBJbmMuIG9yIGl0cyBhZmZpbGlhdGVzLiBBbGwgUmlnaHRzIFJlc2VydmVkLlxuLy8gU1BEWC1MaWNlbnNlLUlkZW50aWZpZXI6IEFwYWNoZS0yLjBcblxuaW1wb3J0IHsgU291cmNlRGF0YSB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuaW1wb3J0IHsgZnJvbVV0ZjggYXMgZnJvbVV0ZjhCcm93c2VyIH0gZnJvbSBcIkBhd3Mtc2RrL3V0aWwtdXRmOC1icm93c2VyXCI7XG5cbi8vIFF1aWNrIHBvbHlmaWxsXG5jb25zdCBmcm9tVXRmOCA9XG4gIHR5cGVvZiBCdWZmZXIgIT09IFwidW5kZWZpbmVkXCIgJiYgQnVmZmVyLmZyb21cbiAgICA/IChpbnB1dDogc3RyaW5nKSA9PiBCdWZmZXIuZnJvbShpbnB1dCwgXCJ1dGY4XCIpXG4gICAgOiBmcm9tVXRmOEJyb3dzZXI7XG5cbmV4cG9ydCBmdW5jdGlvbiBjb252ZXJ0VG9CdWZmZXIoZGF0YTogU291cmNlRGF0YSk6IFVpbnQ4QXJyYXkge1xuICAvLyBBbHJlYWR5IGEgVWludDgsIGRvIG5vdGhpbmdcbiAgaWYgKGRhdGEgaW5zdGFuY2VvZiBVaW50OEFycmF5KSByZXR1cm4gZGF0YTtcblxuICBpZiAodHlwZW9mIGRhdGEgPT09IFwic3RyaW5nXCIpIHtcbiAgICByZXR1cm4gZnJvbVV0ZjgoZGF0YSk7XG4gIH1cblxuICBpZiAoQXJyYXlCdWZmZXIuaXNWaWV3KGRhdGEpKSB7XG4gICAgcmV0dXJuIG5ldyBVaW50OEFycmF5KFxuICAgICAgZGF0YS5idWZmZXIsXG4gICAgICBkYXRhLmJ5dGVPZmZzZXQsXG4gICAgICBkYXRhLmJ5dGVMZW5ndGggLyBVaW50OEFycmF5LkJZVEVTX1BFUl9FTEVNRU5UXG4gICAgKTtcbiAgfVxuXG4gIHJldHVybiBuZXcgVWludDhBcnJheShkYXRhKTtcbn1cbiJdfQ==\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/util/build/convertToBuffer.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/util/build/index.js": /*!******************************************************!*\ !*** ./node_modules/@aws-crypto/util/build/index.js ***! \******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = exports.numToUint8 = exports.isEmptyData = exports.convertToBuffer = void 0;\nvar convertToBuffer_1 = __webpack_require__(/*! ./convertToBuffer */ \"./node_modules/@aws-crypto/util/build/convertToBuffer.js\");\nObject.defineProperty(exports, \"convertToBuffer\", { enumerable: true, get: function () { return convertToBuffer_1.convertToBuffer; } });\nvar isEmptyData_1 = __webpack_require__(/*! ./isEmptyData */ \"./node_modules/@aws-crypto/util/build/isEmptyData.js\");\nObject.defineProperty(exports, \"isEmptyData\", { enumerable: true, get: function () { return isEmptyData_1.isEmptyData; } });\nvar numToUint8_1 = __webpack_require__(/*! ./numToUint8 */ \"./node_modules/@aws-crypto/util/build/numToUint8.js\");\nObject.defineProperty(exports, \"numToUint8\", { enumerable: true, get: function () { return numToUint8_1.numToUint8; } });\nvar uint32ArrayFrom_1 = __webpack_require__(/*! ./uint32ArrayFrom */ \"./node_modules/@aws-crypto/util/build/uint32ArrayFrom.js\");\nObject.defineProperty(exports, \"uint32ArrayFrom\", { enumerable: true, get: function () { return uint32ArrayFrom_1.uint32ArrayFrom; } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLG9FQUFvRTtBQUNwRSxzQ0FBc0M7OztBQUV0QyxxREFBb0Q7QUFBM0Msa0hBQUEsZUFBZSxPQUFBO0FBQ3hCLDZDQUE0QztBQUFuQywwR0FBQSxXQUFXLE9BQUE7QUFDcEIsMkNBQTBDO0FBQWpDLHdHQUFBLFVBQVUsT0FBQTtBQUNuQixxREFBa0Q7QUFBMUMsa0hBQUEsZUFBZSxPQUFBIiwic291cmNlc0NvbnRlbnQiOlsiLy8gQ29weXJpZ2h0IEFtYXpvbi5jb20gSW5jLiBvciBpdHMgYWZmaWxpYXRlcy4gQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbi8vIFNQRFgtTGljZW5zZS1JZGVudGlmaWVyOiBBcGFjaGUtMi4wXG5cbmV4cG9ydCB7IGNvbnZlcnRUb0J1ZmZlciB9IGZyb20gXCIuL2NvbnZlcnRUb0J1ZmZlclwiO1xuZXhwb3J0IHsgaXNFbXB0eURhdGEgfSBmcm9tIFwiLi9pc0VtcHR5RGF0YVwiO1xuZXhwb3J0IHsgbnVtVG9VaW50OCB9IGZyb20gXCIuL251bVRvVWludDhcIjtcbmV4cG9ydCB7dWludDMyQXJyYXlGcm9tfSBmcm9tICcuL3VpbnQzMkFycmF5RnJvbSc7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/util/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/util/build/isEmptyData.js": /*!************************************************************!*\ !*** ./node_modules/@aws-crypto/util/build/isEmptyData.js ***! \************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isEmptyData = void 0;\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nexports.isEmptyData = isEmptyData;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNFbXB0eURhdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaXNFbXB0eURhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLG9FQUFvRTtBQUNwRSxzQ0FBc0M7OztBQUl0QyxTQUFnQixXQUFXLENBQUMsSUFBZ0I7SUFDMUMsSUFBSSxPQUFPLElBQUksS0FBSyxRQUFRLEVBQUU7UUFDNUIsT0FBTyxJQUFJLENBQUMsTUFBTSxLQUFLLENBQUMsQ0FBQztLQUMxQjtJQUVELE9BQU8sSUFBSSxDQUFDLFVBQVUsS0FBSyxDQUFDLENBQUM7QUFDL0IsQ0FBQztBQU5ELGtDQU1DIiwic291cmNlc0NvbnRlbnQiOlsiLy8gQ29weXJpZ2h0IEFtYXpvbi5jb20gSW5jLiBvciBpdHMgYWZmaWxpYXRlcy4gQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbi8vIFNQRFgtTGljZW5zZS1JZGVudGlmaWVyOiBBcGFjaGUtMi4wXG5cbmltcG9ydCB7IFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGZ1bmN0aW9uIGlzRW1wdHlEYXRhKGRhdGE6IFNvdXJjZURhdGEpOiBib29sZWFuIHtcbiAgaWYgKHR5cGVvZiBkYXRhID09PSBcInN0cmluZ1wiKSB7XG4gICAgcmV0dXJuIGRhdGEubGVuZ3RoID09PSAwO1xuICB9XG5cbiAgcmV0dXJuIGRhdGEuYnl0ZUxlbmd0aCA9PT0gMDtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/util/build/isEmptyData.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/util/build/numToUint8.js": /*!***********************************************************!*\ !*** ./node_modules/@aws-crypto/util/build/numToUint8.js ***! \***********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.numToUint8 = void 0;\nfunction numToUint8(num) {\n return new Uint8Array([\n (num & 0xff000000) >> 24,\n (num & 0x00ff0000) >> 16,\n (num & 0x0000ff00) >> 8,\n num & 0x000000ff,\n ]);\n}\nexports.numToUint8 = numToUint8;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVtVG9VaW50OC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9udW1Ub1VpbnQ4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxvRUFBb0U7QUFDcEUsc0NBQXNDOzs7QUFFdEMsU0FBZ0IsVUFBVSxDQUFDLEdBQVc7SUFDcEMsT0FBTyxJQUFJLFVBQVUsQ0FBQztRQUNwQixDQUFDLEdBQUcsR0FBRyxVQUFVLENBQUMsSUFBSSxFQUFFO1FBQ3hCLENBQUMsR0FBRyxHQUFHLFVBQVUsQ0FBQyxJQUFJLEVBQUU7UUFDeEIsQ0FBQyxHQUFHLEdBQUcsVUFBVSxDQUFDLElBQUksQ0FBQztRQUN2QixHQUFHLEdBQUcsVUFBVTtLQUNqQixDQUFDLENBQUM7QUFDTCxDQUFDO0FBUEQsZ0NBT0MiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBDb3B5cmlnaHQgQW1hem9uLmNvbSBJbmMuIG9yIGl0cyBhZmZpbGlhdGVzLiBBbGwgUmlnaHRzIFJlc2VydmVkLlxuLy8gU1BEWC1MaWNlbnNlLUlkZW50aWZpZXI6IEFwYWNoZS0yLjBcblxuZXhwb3J0IGZ1bmN0aW9uIG51bVRvVWludDgobnVtOiBudW1iZXIpIHtcbiAgcmV0dXJuIG5ldyBVaW50OEFycmF5KFtcbiAgICAobnVtICYgMHhmZjAwMDAwMCkgPj4gMjQsXG4gICAgKG51bSAmIDB4MDBmZjAwMDApID4+IDE2LFxuICAgIChudW0gJiAweDAwMDBmZjAwKSA+PiA4LFxuICAgIG51bSAmIDB4MDAwMDAwZmYsXG4gIF0pO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/util/build/numToUint8.js?"); /***/ }), /***/ "./node_modules/@aws-crypto/util/build/uint32ArrayFrom.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-crypto/util/build/uint32ArrayFrom.js ***! \****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = void 0;\n// IE 11 does not support Array.from, so we do it manually\nfunction uint32ArrayFrom(a_lookUpTable) {\n if (!Array.from) {\n var return_array = new Uint32Array(a_lookUpTable.length);\n var a_index = 0;\n while (a_index < a_lookUpTable.length) {\n return_array[a_index] = a_lookUpTable[a_index];\n }\n return return_array;\n }\n return Uint32Array.from(a_lookUpTable);\n}\nexports.uint32ArrayFrom = uint32ArrayFrom;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidWludDMyQXJyYXlGcm9tLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3VpbnQzMkFycmF5RnJvbS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0VBQW9FO0FBQ3BFLHNDQUFzQzs7O0FBRXRDLDBEQUEwRDtBQUMxRCxTQUFnQixlQUFlLENBQUMsYUFBNEI7SUFDMUQsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLEVBQUU7UUFDZixJQUFNLFlBQVksR0FBRyxJQUFJLFdBQVcsQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUE7UUFDMUQsSUFBSSxPQUFPLEdBQUcsQ0FBQyxDQUFBO1FBQ2YsT0FBTyxPQUFPLEdBQUcsYUFBYSxDQUFDLE1BQU0sRUFBRTtZQUNyQyxZQUFZLENBQUMsT0FBTyxDQUFDLEdBQUcsYUFBYSxDQUFDLE9BQU8sQ0FBQyxDQUFBO1NBQy9DO1FBQ0QsT0FBTyxZQUFZLENBQUE7S0FDcEI7SUFDRCxPQUFPLFdBQVcsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUE7QUFDeEMsQ0FBQztBQVZELDBDQVVDIiwic291cmNlc0NvbnRlbnQiOlsiLy8gQ29weXJpZ2h0IEFtYXpvbi5jb20gSW5jLiBvciBpdHMgYWZmaWxpYXRlcy4gQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbi8vIFNQRFgtTGljZW5zZS1JZGVudGlmaWVyOiBBcGFjaGUtMi4wXG5cbi8vIElFIDExIGRvZXMgbm90IHN1cHBvcnQgQXJyYXkuZnJvbSwgc28gd2UgZG8gaXQgbWFudWFsbHlcbmV4cG9ydCBmdW5jdGlvbiB1aW50MzJBcnJheUZyb20oYV9sb29rVXBUYWJsZTogQXJyYXk8bnVtYmVyPik6IFVpbnQzMkFycmF5IHtcbiAgaWYgKCFBcnJheS5mcm9tKSB7XG4gICAgY29uc3QgcmV0dXJuX2FycmF5ID0gbmV3IFVpbnQzMkFycmF5KGFfbG9va1VwVGFibGUubGVuZ3RoKVxuICAgIGxldCBhX2luZGV4ID0gMFxuICAgIHdoaWxlIChhX2luZGV4IDwgYV9sb29rVXBUYWJsZS5sZW5ndGgpIHtcbiAgICAgIHJldHVybl9hcnJheVthX2luZGV4XSA9IGFfbG9va1VwVGFibGVbYV9pbmRleF1cbiAgICB9XG4gICAgcmV0dXJuIHJldHVybl9hcnJheVxuICB9XG4gIHJldHVybiBVaW50MzJBcnJheS5mcm9tKGFfbG9va1VwVGFibGUpXG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-crypto/util/build/uint32ArrayFrom.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/chunked-blob-reader/dist/es/index.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/chunked-blob-reader/dist/es/index.js ***! \********************************************************************/ /*! exports provided: blobReader */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"blobReader\", function() { return blobReader; });\nfunction blobReader(blob, onChunk, chunkSize) {\n if (chunkSize === void 0) { chunkSize = 1024 * 1024; }\n return new Promise(function (resolve, reject) {\n var fileReader = new FileReader();\n fileReader.addEventListener(\"error\", reject);\n fileReader.addEventListener(\"abort\", reject);\n var size = blob.size;\n var totalBytesRead = 0;\n function read() {\n if (totalBytesRead >= size) {\n resolve();\n return;\n }\n fileReader.readAsArrayBuffer(blob.slice(totalBytesRead, Math.min(size, totalBytesRead + chunkSize)));\n }\n fileReader.addEventListener(\"load\", function (event) {\n var result = event.target.result;\n onChunk(new Uint8Array(result));\n totalBytesRead += result.byteLength;\n // read the next block\n read();\n });\n // kick off the read\n read();\n });\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxVQUFVLFVBQVUsQ0FDeEIsSUFBVSxFQUNWLE9BQW9DLEVBQ3BDLFNBQStCO0lBQS9CLDBCQUFBLEVBQUEsWUFBb0IsSUFBSSxHQUFHLElBQUk7SUFFL0IsT0FBTyxJQUFJLE9BQU8sQ0FBQyxVQUFDLE9BQU8sRUFBRSxNQUFNO1FBQ2pDLElBQU0sVUFBVSxHQUFHLElBQUksVUFBVSxFQUFFLENBQUM7UUFFcEMsVUFBVSxDQUFDLGdCQUFnQixDQUFDLE9BQU8sRUFBRSxNQUFNLENBQUMsQ0FBQztRQUM3QyxVQUFVLENBQUMsZ0JBQWdCLENBQUMsT0FBTyxFQUFFLE1BQU0sQ0FBQyxDQUFDO1FBRTdDLElBQU0sSUFBSSxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUM7UUFDdkIsSUFBSSxjQUFjLEdBQUcsQ0FBQyxDQUFDO1FBRXZCLFNBQVMsSUFBSTtZQUNYLElBQUksY0FBYyxJQUFJLElBQUksRUFBRTtnQkFDMUIsT0FBTyxFQUFFLENBQUM7Z0JBQ1YsT0FBTzthQUNSO1lBQ0QsVUFBVSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxFQUFFLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxFQUFFLGNBQWMsR0FBRyxTQUFTLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDdkcsQ0FBQztRQUVELFVBQVUsQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLEVBQUUsVUFBQyxLQUFLO1lBQ3hDLElBQU0sTUFBTSxHQUFpQixLQUFLLENBQUMsTUFBYyxDQUFDLE1BQU0sQ0FBQztZQUN6RCxPQUFPLENBQUMsSUFBSSxVQUFVLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQztZQUNoQyxjQUFjLElBQUksTUFBTSxDQUFDLFVBQVUsQ0FBQztZQUNwQyxzQkFBc0I7WUFDdEIsSUFBSSxFQUFFLENBQUM7UUFDVCxDQUFDLENBQUMsQ0FBQztRQUVILG9CQUFvQjtRQUNwQixJQUFJLEVBQUUsQ0FBQztJQUNULENBQUMsQ0FBQyxDQUFDO0FBQ0wsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBmdW5jdGlvbiBibG9iUmVhZGVyKFxuICBibG9iOiBCbG9iLFxuICBvbkNodW5rOiAoY2h1bms6IFVpbnQ4QXJyYXkpID0+IHZvaWQsXG4gIGNodW5rU2l6ZTogbnVtYmVyID0gMTAyNCAqIDEwMjRcbik6IFByb21pc2U8dm9pZD4ge1xuICByZXR1cm4gbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgIGNvbnN0IGZpbGVSZWFkZXIgPSBuZXcgRmlsZVJlYWRlcigpO1xuXG4gICAgZmlsZVJlYWRlci5hZGRFdmVudExpc3RlbmVyKFwiZXJyb3JcIiwgcmVqZWN0KTtcbiAgICBmaWxlUmVhZGVyLmFkZEV2ZW50TGlzdGVuZXIoXCJhYm9ydFwiLCByZWplY3QpO1xuXG4gICAgY29uc3Qgc2l6ZSA9IGJsb2Iuc2l6ZTtcbiAgICBsZXQgdG90YWxCeXRlc1JlYWQgPSAwO1xuXG4gICAgZnVuY3Rpb24gcmVhZCgpIHtcbiAgICAgIGlmICh0b3RhbEJ5dGVzUmVhZCA+PSBzaXplKSB7XG4gICAgICAgIHJlc29sdmUoKTtcbiAgICAgICAgcmV0dXJuO1xuICAgICAgfVxuICAgICAgZmlsZVJlYWRlci5yZWFkQXNBcnJheUJ1ZmZlcihibG9iLnNsaWNlKHRvdGFsQnl0ZXNSZWFkLCBNYXRoLm1pbihzaXplLCB0b3RhbEJ5dGVzUmVhZCArIGNodW5rU2l6ZSkpKTtcbiAgICB9XG5cbiAgICBmaWxlUmVhZGVyLmFkZEV2ZW50TGlzdGVuZXIoXCJsb2FkXCIsIChldmVudCkgPT4ge1xuICAgICAgY29uc3QgcmVzdWx0ID0gPEFycmF5QnVmZmVyPihldmVudC50YXJnZXQgYXMgYW55KS5yZXN1bHQ7XG4gICAgICBvbkNodW5rKG5ldyBVaW50OEFycmF5KHJlc3VsdCkpO1xuICAgICAgdG90YWxCeXRlc1JlYWQgKz0gcmVzdWx0LmJ5dGVMZW5ndGg7XG4gICAgICAvLyByZWFkIHRoZSBuZXh0IGJsb2NrXG4gICAgICByZWFkKCk7XG4gICAgfSk7XG5cbiAgICAvLyBraWNrIG9mZiB0aGUgcmVhZFxuICAgIHJlYWQoKTtcbiAgfSk7XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/chunked-blob-reader/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js ***! \********************************************************************************/ /*! exports provided: CloudWatchLogs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CloudWatchLogs\", function() { return CloudWatchLogs; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CloudWatchLogsClient */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js\");\n/* harmony import */ var _commands_AssociateKmsKeyCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/AssociateKmsKeyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/AssociateKmsKeyCommand.js\");\n/* harmony import */ var _commands_CancelExportTaskCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CancelExportTaskCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CancelExportTaskCommand.js\");\n/* harmony import */ var _commands_CreateExportTaskCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/CreateExportTaskCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateExportTaskCommand.js\");\n/* harmony import */ var _commands_CreateLogGroupCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/CreateLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogGroupCommand.js\");\n/* harmony import */ var _commands_CreateLogStreamCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/CreateLogStreamCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogStreamCommand.js\");\n/* harmony import */ var _commands_DeleteDestinationCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/DeleteDestinationCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteDestinationCommand.js\");\n/* harmony import */ var _commands_DeleteLogGroupCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/DeleteLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogGroupCommand.js\");\n/* harmony import */ var _commands_DeleteLogStreamCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/DeleteLogStreamCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogStreamCommand.js\");\n/* harmony import */ var _commands_DeleteMetricFilterCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/DeleteMetricFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteMetricFilterCommand.js\");\n/* harmony import */ var _commands_DeleteQueryDefinitionCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DeleteQueryDefinitionCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteQueryDefinitionCommand.js\");\n/* harmony import */ var _commands_DeleteResourcePolicyCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/DeleteResourcePolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteResourcePolicyCommand.js\");\n/* harmony import */ var _commands_DeleteRetentionPolicyCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DeleteRetentionPolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteRetentionPolicyCommand.js\");\n/* harmony import */ var _commands_DeleteSubscriptionFilterCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/DeleteSubscriptionFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteSubscriptionFilterCommand.js\");\n/* harmony import */ var _commands_DescribeDestinationsCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DescribeDestinationsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeDestinationsCommand.js\");\n/* harmony import */ var _commands_DescribeExportTasksCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/DescribeExportTasksCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeExportTasksCommand.js\");\n/* harmony import */ var _commands_DescribeLogGroupsCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DescribeLogGroupsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogGroupsCommand.js\");\n/* harmony import */ var _commands_DescribeLogStreamsCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DescribeLogStreamsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogStreamsCommand.js\");\n/* harmony import */ var _commands_DescribeMetricFiltersCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DescribeMetricFiltersCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeMetricFiltersCommand.js\");\n/* harmony import */ var _commands_DescribeQueriesCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DescribeQueriesCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueriesCommand.js\");\n/* harmony import */ var _commands_DescribeQueryDefinitionsCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DescribeQueryDefinitionsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueryDefinitionsCommand.js\");\n/* harmony import */ var _commands_DescribeResourcePoliciesCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DescribeResourcePoliciesCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeResourcePoliciesCommand.js\");\n/* harmony import */ var _commands_DescribeSubscriptionFiltersCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/DescribeSubscriptionFiltersCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeSubscriptionFiltersCommand.js\");\n/* harmony import */ var _commands_DisassociateKmsKeyCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/DisassociateKmsKeyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DisassociateKmsKeyCommand.js\");\n/* harmony import */ var _commands_FilterLogEventsCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/FilterLogEventsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/FilterLogEventsCommand.js\");\n/* harmony import */ var _commands_GetLogEventsCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/GetLogEventsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogEventsCommand.js\");\n/* harmony import */ var _commands_GetLogGroupFieldsCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/GetLogGroupFieldsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogGroupFieldsCommand.js\");\n/* harmony import */ var _commands_GetLogRecordCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/GetLogRecordCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogRecordCommand.js\");\n/* harmony import */ var _commands_GetQueryResultsCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/GetQueryResultsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetQueryResultsCommand.js\");\n/* harmony import */ var _commands_ListTagsLogGroupCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/ListTagsLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/ListTagsLogGroupCommand.js\");\n/* harmony import */ var _commands_PutDestinationCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/PutDestinationCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationCommand.js\");\n/* harmony import */ var _commands_PutDestinationPolicyCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/PutDestinationPolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationPolicyCommand.js\");\n/* harmony import */ var _commands_PutLogEventsCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/PutLogEventsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutLogEventsCommand.js\");\n/* harmony import */ var _commands_PutMetricFilterCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./commands/PutMetricFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutMetricFilterCommand.js\");\n/* harmony import */ var _commands_PutQueryDefinitionCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/PutQueryDefinitionCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutQueryDefinitionCommand.js\");\n/* harmony import */ var _commands_PutResourcePolicyCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./commands/PutResourcePolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutResourcePolicyCommand.js\");\n/* harmony import */ var _commands_PutRetentionPolicyCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/PutRetentionPolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutRetentionPolicyCommand.js\");\n/* harmony import */ var _commands_PutSubscriptionFilterCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/PutSubscriptionFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutSubscriptionFilterCommand.js\");\n/* harmony import */ var _commands_StartQueryCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/StartQueryCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StartQueryCommand.js\");\n/* harmony import */ var _commands_StopQueryCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/StopQueryCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StopQueryCommand.js\");\n/* harmony import */ var _commands_TagLogGroupCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/TagLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TagLogGroupCommand.js\");\n/* harmony import */ var _commands_TestMetricFilterCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/TestMetricFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TestMetricFilterCommand.js\");\n/* harmony import */ var _commands_UntagLogGroupCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/UntagLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/UntagLogGroupCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n *

You can use Amazon CloudWatch Logs to monitor, store, and access your log files from\n * EC2 instances, AWS CloudTrail, or other sources. You can then retrieve the associated\n * log data from CloudWatch Logs using the CloudWatch console, CloudWatch Logs commands in the\n * AWS CLI, CloudWatch Logs API, or CloudWatch Logs SDK.

\n *

You can use CloudWatch Logs to:

\n *
    \n *
  • \n *

    \n * Monitor logs from EC2 instances in real-time: You\n * can use CloudWatch Logs to monitor applications and systems using log data. For example,\n * CloudWatch Logs can track the number of errors that occur in your application logs and\n * send you a notification whenever the rate of errors exceeds a threshold that you specify.\n * CloudWatch Logs uses your log data for monitoring so no code changes are required. For\n * example, you can monitor application logs for specific literal terms (such as\n * \"NullReferenceException\") or count the number of occurrences of a literal term at a\n * particular position in log data (such as \"404\" status codes in an Apache access log). When\n * the term you are searching for is found, CloudWatch Logs reports the data to a CloudWatch\n * metric that you specify.

    \n *
  • \n *
  • \n *

    \n * Monitor AWS CloudTrail logged events: You can\n * create alarms in CloudWatch and receive notifications of particular API activity as\n * captured by CloudTrail. You can use the notification to perform troubleshooting.

    \n *
  • \n *
  • \n *

    \n * Archive log data: You can use CloudWatch Logs to\n * store your log data in highly durable storage. You can change the log retention setting so\n * that any log events older than this setting are automatically deleted. The CloudWatch Logs\n * agent makes it easy to quickly send both rotated and non-rotated log data off of a host\n * and into the log service. You can then access the raw log data when you need it.

    \n *
  • \n *
\n */\nvar CloudWatchLogs = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CloudWatchLogs, _super);\n function CloudWatchLogs() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n CloudWatchLogs.prototype.associateKmsKey = function (args, optionsOrCb, cb) {\n var command = new _commands_AssociateKmsKeyCommand__WEBPACK_IMPORTED_MODULE_2__[\"AssociateKmsKeyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.cancelExportTask = function (args, optionsOrCb, cb) {\n var command = new _commands_CancelExportTaskCommand__WEBPACK_IMPORTED_MODULE_3__[\"CancelExportTaskCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.createExportTask = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateExportTaskCommand__WEBPACK_IMPORTED_MODULE_4__[\"CreateExportTaskCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.createLogGroup = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateLogGroupCommand__WEBPACK_IMPORTED_MODULE_5__[\"CreateLogGroupCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.createLogStream = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateLogStreamCommand__WEBPACK_IMPORTED_MODULE_6__[\"CreateLogStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.deleteDestination = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteDestinationCommand__WEBPACK_IMPORTED_MODULE_7__[\"DeleteDestinationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.deleteLogGroup = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteLogGroupCommand__WEBPACK_IMPORTED_MODULE_8__[\"DeleteLogGroupCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.deleteLogStream = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteLogStreamCommand__WEBPACK_IMPORTED_MODULE_9__[\"DeleteLogStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.deleteMetricFilter = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteMetricFilterCommand__WEBPACK_IMPORTED_MODULE_10__[\"DeleteMetricFilterCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.deleteQueryDefinition = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteQueryDefinitionCommand__WEBPACK_IMPORTED_MODULE_11__[\"DeleteQueryDefinitionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.deleteResourcePolicy = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteResourcePolicyCommand__WEBPACK_IMPORTED_MODULE_12__[\"DeleteResourcePolicyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.deleteRetentionPolicy = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteRetentionPolicyCommand__WEBPACK_IMPORTED_MODULE_13__[\"DeleteRetentionPolicyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.deleteSubscriptionFilter = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteSubscriptionFilterCommand__WEBPACK_IMPORTED_MODULE_14__[\"DeleteSubscriptionFilterCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.describeDestinations = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeDestinationsCommand__WEBPACK_IMPORTED_MODULE_15__[\"DescribeDestinationsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.describeExportTasks = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeExportTasksCommand__WEBPACK_IMPORTED_MODULE_16__[\"DescribeExportTasksCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.describeLogGroups = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeLogGroupsCommand__WEBPACK_IMPORTED_MODULE_17__[\"DescribeLogGroupsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.describeLogStreams = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeLogStreamsCommand__WEBPACK_IMPORTED_MODULE_18__[\"DescribeLogStreamsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.describeMetricFilters = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeMetricFiltersCommand__WEBPACK_IMPORTED_MODULE_19__[\"DescribeMetricFiltersCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.describeQueries = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeQueriesCommand__WEBPACK_IMPORTED_MODULE_20__[\"DescribeQueriesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.describeQueryDefinitions = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeQueryDefinitionsCommand__WEBPACK_IMPORTED_MODULE_21__[\"DescribeQueryDefinitionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.describeResourcePolicies = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeResourcePoliciesCommand__WEBPACK_IMPORTED_MODULE_22__[\"DescribeResourcePoliciesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.describeSubscriptionFilters = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeSubscriptionFiltersCommand__WEBPACK_IMPORTED_MODULE_23__[\"DescribeSubscriptionFiltersCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.disassociateKmsKey = function (args, optionsOrCb, cb) {\n var command = new _commands_DisassociateKmsKeyCommand__WEBPACK_IMPORTED_MODULE_24__[\"DisassociateKmsKeyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.filterLogEvents = function (args, optionsOrCb, cb) {\n var command = new _commands_FilterLogEventsCommand__WEBPACK_IMPORTED_MODULE_25__[\"FilterLogEventsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.getLogEvents = function (args, optionsOrCb, cb) {\n var command = new _commands_GetLogEventsCommand__WEBPACK_IMPORTED_MODULE_26__[\"GetLogEventsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.getLogGroupFields = function (args, optionsOrCb, cb) {\n var command = new _commands_GetLogGroupFieldsCommand__WEBPACK_IMPORTED_MODULE_27__[\"GetLogGroupFieldsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.getLogRecord = function (args, optionsOrCb, cb) {\n var command = new _commands_GetLogRecordCommand__WEBPACK_IMPORTED_MODULE_28__[\"GetLogRecordCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.getQueryResults = function (args, optionsOrCb, cb) {\n var command = new _commands_GetQueryResultsCommand__WEBPACK_IMPORTED_MODULE_29__[\"GetQueryResultsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.listTagsLogGroup = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTagsLogGroupCommand__WEBPACK_IMPORTED_MODULE_30__[\"ListTagsLogGroupCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.putDestination = function (args, optionsOrCb, cb) {\n var command = new _commands_PutDestinationCommand__WEBPACK_IMPORTED_MODULE_31__[\"PutDestinationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.putDestinationPolicy = function (args, optionsOrCb, cb) {\n var command = new _commands_PutDestinationPolicyCommand__WEBPACK_IMPORTED_MODULE_32__[\"PutDestinationPolicyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.putLogEvents = function (args, optionsOrCb, cb) {\n var command = new _commands_PutLogEventsCommand__WEBPACK_IMPORTED_MODULE_33__[\"PutLogEventsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.putMetricFilter = function (args, optionsOrCb, cb) {\n var command = new _commands_PutMetricFilterCommand__WEBPACK_IMPORTED_MODULE_34__[\"PutMetricFilterCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.putQueryDefinition = function (args, optionsOrCb, cb) {\n var command = new _commands_PutQueryDefinitionCommand__WEBPACK_IMPORTED_MODULE_35__[\"PutQueryDefinitionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.putResourcePolicy = function (args, optionsOrCb, cb) {\n var command = new _commands_PutResourcePolicyCommand__WEBPACK_IMPORTED_MODULE_36__[\"PutResourcePolicyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.putRetentionPolicy = function (args, optionsOrCb, cb) {\n var command = new _commands_PutRetentionPolicyCommand__WEBPACK_IMPORTED_MODULE_37__[\"PutRetentionPolicyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.putSubscriptionFilter = function (args, optionsOrCb, cb) {\n var command = new _commands_PutSubscriptionFilterCommand__WEBPACK_IMPORTED_MODULE_38__[\"PutSubscriptionFilterCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.startQuery = function (args, optionsOrCb, cb) {\n var command = new _commands_StartQueryCommand__WEBPACK_IMPORTED_MODULE_39__[\"StartQueryCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.stopQuery = function (args, optionsOrCb, cb) {\n var command = new _commands_StopQueryCommand__WEBPACK_IMPORTED_MODULE_40__[\"StopQueryCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.tagLogGroup = function (args, optionsOrCb, cb) {\n var command = new _commands_TagLogGroupCommand__WEBPACK_IMPORTED_MODULE_41__[\"TagLogGroupCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.testMetricFilter = function (args, optionsOrCb, cb) {\n var command = new _commands_TestMetricFilterCommand__WEBPACK_IMPORTED_MODULE_42__[\"TestMetricFilterCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CloudWatchLogs.prototype.untagLogGroup = function (args, optionsOrCb, cb) {\n var command = new _commands_UntagLogGroupCommand__WEBPACK_IMPORTED_MODULE_43__[\"UntagLogGroupCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return CloudWatchLogs;\n}(_CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_1__[\"CloudWatchLogsClient\"]));\n\n//# sourceMappingURL=CloudWatchLogs.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js ***! \**************************************************************************************/ /*! exports provided: CloudWatchLogsClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CloudWatchLogsClient\", function() { return CloudWatchLogsClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n *

You can use Amazon CloudWatch Logs to monitor, store, and access your log files from\n * EC2 instances, AWS CloudTrail, or other sources. You can then retrieve the associated\n * log data from CloudWatch Logs using the CloudWatch console, CloudWatch Logs commands in the\n * AWS CLI, CloudWatch Logs API, or CloudWatch Logs SDK.

\n *

You can use CloudWatch Logs to:

\n *
    \n *
  • \n *

    \n * Monitor logs from EC2 instances in real-time: You\n * can use CloudWatch Logs to monitor applications and systems using log data. For example,\n * CloudWatch Logs can track the number of errors that occur in your application logs and\n * send you a notification whenever the rate of errors exceeds a threshold that you specify.\n * CloudWatch Logs uses your log data for monitoring so no code changes are required. For\n * example, you can monitor application logs for specific literal terms (such as\n * \"NullReferenceException\") or count the number of occurrences of a literal term at a\n * particular position in log data (such as \"404\" status codes in an Apache access log). When\n * the term you are searching for is found, CloudWatch Logs reports the data to a CloudWatch\n * metric that you specify.

    \n *
  • \n *
  • \n *

    \n * Monitor AWS CloudTrail logged events: You can\n * create alarms in CloudWatch and receive notifications of particular API activity as\n * captured by CloudTrail. You can use the notification to perform troubleshooting.

    \n *
  • \n *
  • \n *

    \n * Archive log data: You can use CloudWatch Logs to\n * store your log data in highly durable storage. You can change the log retention setting so\n * that any log events older than this setting are automatically deleted. The CloudWatch Logs\n * agent makes it easy to quickly send both rotated and non-rotated log data off of a host\n * and into the log service. You can then access the raw log data when you need it.

    \n *
  • \n *
\n */\nvar CloudWatchLogsClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CloudWatchLogsClient, _super);\n function CloudWatchLogsClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n CloudWatchLogsClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return CloudWatchLogsClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=CloudWatchLogsClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/AssociateKmsKeyCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/AssociateKmsKeyCommand.js ***! \*************************************************************************************************/ /*! exports provided: AssociateKmsKeyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AssociateKmsKeyCommand\", function() { return AssociateKmsKeyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Associates the specified AWS Key Management Service (AWS KMS) customer master key (CMK) with the specified log group.

\n *

Associating an AWS KMS CMK with a log group overrides any existing associations between the log group and a CMK.\n * After a CMK is associated with a log group, all newly ingested data for the log group is encrypted using the CMK.\n * This association is stored as long as the data encrypted with the CMK is still within Amazon CloudWatch Logs.\n * This enables Amazon CloudWatch Logs to decrypt this data whenever it is requested.

\n * \n *

CloudWatch Logs supports only symmetric CMKs. Do not use an associate an asymmetric CMK\n * with your log group. For more information, see Using Symmetric and Asymmetric\n * Keys.

\n *
\n *

It can take up to 5 minutes for this operation to take effect.

\n *

If you attempt to associate a CMK with a log group but the CMK does not exist or the\n * CMK is disabled, you receive an InvalidParameterException error.

\n */\nvar AssociateKmsKeyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AssociateKmsKeyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function AssociateKmsKeyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n AssociateKmsKeyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"AssociateKmsKeyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"AssociateKmsKeyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n AssociateKmsKeyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1AssociateKmsKeyCommand\"])(input, context);\n };\n AssociateKmsKeyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1AssociateKmsKeyCommand\"])(output, context);\n };\n return AssociateKmsKeyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=AssociateKmsKeyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/AssociateKmsKeyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CancelExportTaskCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CancelExportTaskCommand.js ***! \**************************************************************************************************/ /*! exports provided: CancelExportTaskCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CancelExportTaskCommand\", function() { return CancelExportTaskCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Cancels the specified export task.

\n *

The task must be in the PENDING or RUNNING state.

\n */\nvar CancelExportTaskCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CancelExportTaskCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CancelExportTaskCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CancelExportTaskCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"CancelExportTaskCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CancelExportTaskRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CancelExportTaskCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CancelExportTaskCommand\"])(input, context);\n };\n CancelExportTaskCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CancelExportTaskCommand\"])(output, context);\n };\n return CancelExportTaskCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CancelExportTaskCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CancelExportTaskCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateExportTaskCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateExportTaskCommand.js ***! \**************************************************************************************************/ /*! exports provided: CreateExportTaskCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateExportTaskCommand\", function() { return CreateExportTaskCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates an export task, which allows you to efficiently export data from a\n * log group to an Amazon S3 bucket. When you perform a CreateExportTask\n * operation, you must use credentials that have permission to write to the S3 bucket\n * that you specify as the destination.

\n *

This is an asynchronous call. If all the required information is provided, this\n * operation initiates an export task and responds with the ID of the task. After the task has started,\n * you can use DescribeExportTasks to get the status of the export task. Each account can\n * only have one active (RUNNING or PENDING) export task at a time.\n * To cancel an export task, use CancelExportTask.

\n *

You can export logs from multiple log groups or multiple time ranges to the same S3\n * bucket. To separate out log data for each export task, you can specify a prefix to be used as\n * the Amazon S3 key prefix for all exported objects.

\n *

Exporting to S3 buckets that are encrypted with AES-256 is supported. Exporting to S3 buckets\n * encrypted with SSE-KMS is not supported.

\n */\nvar CreateExportTaskCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateExportTaskCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateExportTaskCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateExportTaskCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"CreateExportTaskCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateExportTaskRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateExportTaskResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateExportTaskCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateExportTaskCommand\"])(input, context);\n };\n CreateExportTaskCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateExportTaskCommand\"])(output, context);\n };\n return CreateExportTaskCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateExportTaskCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateExportTaskCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogGroupCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogGroupCommand.js ***! \************************************************************************************************/ /*! exports provided: CreateLogGroupCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateLogGroupCommand\", function() { return CreateLogGroupCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a log group with the specified name. You can create up to 20,000 log groups per account.

\n *

You must use the following guidelines when naming a log group:

\n *
    \n *
  • \n *

    Log group names must be unique within a region for an AWS account.

    \n *
  • \n *
  • \n *

    Log group names can be between 1 and 512 characters long.

    \n *
  • \n *
  • \n *

    Log group names consist of the following characters: a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen),\n * '/' (forward slash), '.' (period), and '#' (number sign)

    \n *
  • \n *
\n *

When you create a log group, by default the log events in the log group never expire. To set\n * a retention policy so that events expire and are deleted after a specified time, use\n * PutRetentionPolicy.

\n *

If you associate a AWS Key Management Service (AWS KMS) customer master key (CMK) with the log group, ingested data is encrypted using the CMK.\n * This association is stored as long as the data encrypted with the CMK is still within Amazon CloudWatch Logs.\n * This enables Amazon CloudWatch Logs to decrypt this data whenever it is requested.

\n *

If you attempt to associate a CMK with the log group but the CMK does not exist or the\n * CMK is disabled, you receive an InvalidParameterException error.

\n * \n *

CloudWatch Logs supports only symmetric CMKs. Do not associate an asymmetric CMK with\n * your log group. For more information, see Using Symmetric and Asymmetric\n * Keys.

\n *
\n */\nvar CreateLogGroupCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateLogGroupCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateLogGroupCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateLogGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"CreateLogGroupCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateLogGroupRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateLogGroupCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateLogGroupCommand\"])(input, context);\n };\n CreateLogGroupCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateLogGroupCommand\"])(output, context);\n };\n return CreateLogGroupCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateLogGroupCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogGroupCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogStreamCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogStreamCommand.js ***! \*************************************************************************************************/ /*! exports provided: CreateLogStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateLogStreamCommand\", function() { return CreateLogStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a log stream for the specified log group. A log stream is a sequence of log events\n * that originate from a single source, such as an application instance or a resource that is\n * being monitored.

\n *

There is no limit on the number of log streams that you can create for a log group. There is a limit\n * of 50 TPS on CreateLogStream operations, after which transactions are throttled.

\n *

You must use the following guidelines when naming a log stream:

\n *
    \n *
  • \n *

    Log stream names must be unique within the log group.

    \n *
  • \n *
  • \n *

    Log stream names can be between 1 and 512 characters long.

    \n *
  • \n *
  • \n *

    The ':' (colon) and '*' (asterisk) characters are not allowed.

    \n *
  • \n *
\n */\nvar CreateLogStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateLogStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateLogStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateLogStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"CreateLogStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateLogStreamRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateLogStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateLogStreamCommand\"])(input, context);\n };\n CreateLogStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateLogStreamCommand\"])(output, context);\n };\n return CreateLogStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateLogStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteDestinationCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteDestinationCommand.js ***! \***************************************************************************************************/ /*! exports provided: DeleteDestinationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteDestinationCommand\", function() { return DeleteDestinationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the specified destination, and eventually disables all the\n * subscription filters that publish to it. This operation does not delete the\n * physical resource encapsulated by the destination.

\n */\nvar DeleteDestinationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteDestinationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteDestinationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteDestinationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DeleteDestinationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteDestinationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteDestinationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteDestinationCommand\"])(input, context);\n };\n DeleteDestinationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteDestinationCommand\"])(output, context);\n };\n return DeleteDestinationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteDestinationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteDestinationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogGroupCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogGroupCommand.js ***! \************************************************************************************************/ /*! exports provided: DeleteLogGroupCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogGroupCommand\", function() { return DeleteLogGroupCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the specified log group and permanently deletes all the archived\n * log events associated with the log group.

\n */\nvar DeleteLogGroupCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteLogGroupCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteLogGroupCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteLogGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DeleteLogGroupCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteLogGroupRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteLogGroupCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteLogGroupCommand\"])(input, context);\n };\n DeleteLogGroupCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteLogGroupCommand\"])(output, context);\n };\n return DeleteLogGroupCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteLogGroupCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogGroupCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogStreamCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogStreamCommand.js ***! \*************************************************************************************************/ /*! exports provided: DeleteLogStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogStreamCommand\", function() { return DeleteLogStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the specified log stream and permanently deletes all the archived log events associated\n * with the log stream.

\n */\nvar DeleteLogStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteLogStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteLogStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteLogStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DeleteLogStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteLogStreamRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteLogStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteLogStreamCommand\"])(input, context);\n };\n DeleteLogStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteLogStreamCommand\"])(output, context);\n };\n return DeleteLogStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteLogStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteMetricFilterCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteMetricFilterCommand.js ***! \****************************************************************************************************/ /*! exports provided: DeleteMetricFilterCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteMetricFilterCommand\", function() { return DeleteMetricFilterCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the specified metric filter.

\n */\nvar DeleteMetricFilterCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteMetricFilterCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteMetricFilterCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteMetricFilterCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DeleteMetricFilterCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteMetricFilterRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteMetricFilterCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteMetricFilterCommand\"])(input, context);\n };\n DeleteMetricFilterCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteMetricFilterCommand\"])(output, context);\n };\n return DeleteMetricFilterCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteMetricFilterCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteMetricFilterCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteQueryDefinitionCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteQueryDefinitionCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DeleteQueryDefinitionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteQueryDefinitionCommand\", function() { return DeleteQueryDefinitionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a saved CloudWatch Logs Insights query definition.\n * A query definition contains details about a saved CloudWatch Logs Insights query.

\n *

Each DeleteQueryDefinition operation can delete one query definition.

\n *

You must have the logs:DeleteQueryDefinition permission to be able to perform\n * this operation.

\n */\nvar DeleteQueryDefinitionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteQueryDefinitionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteQueryDefinitionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteQueryDefinitionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DeleteQueryDefinitionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteQueryDefinitionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteQueryDefinitionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteQueryDefinitionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteQueryDefinitionCommand\"])(input, context);\n };\n DeleteQueryDefinitionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteQueryDefinitionCommand\"])(output, context);\n };\n return DeleteQueryDefinitionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteQueryDefinitionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteQueryDefinitionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteResourcePolicyCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteResourcePolicyCommand.js ***! \******************************************************************************************************/ /*! exports provided: DeleteResourcePolicyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteResourcePolicyCommand\", function() { return DeleteResourcePolicyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a resource policy from this account. This revokes\n * the access of the identities in that policy to put log events to this account.

\n */\nvar DeleteResourcePolicyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteResourcePolicyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteResourcePolicyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteResourcePolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DeleteResourcePolicyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteResourcePolicyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteResourcePolicyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteResourcePolicyCommand\"])(input, context);\n };\n DeleteResourcePolicyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteResourcePolicyCommand\"])(output, context);\n };\n return DeleteResourcePolicyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteResourcePolicyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteResourcePolicyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteRetentionPolicyCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteRetentionPolicyCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DeleteRetentionPolicyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteRetentionPolicyCommand\", function() { return DeleteRetentionPolicyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the specified retention policy.

\n *

Log events do not expire if they belong to log groups without a retention policy.

\n */\nvar DeleteRetentionPolicyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteRetentionPolicyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteRetentionPolicyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteRetentionPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DeleteRetentionPolicyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteRetentionPolicyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteRetentionPolicyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteRetentionPolicyCommand\"])(input, context);\n };\n DeleteRetentionPolicyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteRetentionPolicyCommand\"])(output, context);\n };\n return DeleteRetentionPolicyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteRetentionPolicyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteRetentionPolicyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteSubscriptionFilterCommand.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteSubscriptionFilterCommand.js ***! \**********************************************************************************************************/ /*! exports provided: DeleteSubscriptionFilterCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSubscriptionFilterCommand\", function() { return DeleteSubscriptionFilterCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the specified subscription filter.

\n */\nvar DeleteSubscriptionFilterCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteSubscriptionFilterCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteSubscriptionFilterCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteSubscriptionFilterCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DeleteSubscriptionFilterCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteSubscriptionFilterRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteSubscriptionFilterCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteSubscriptionFilterCommand\"])(input, context);\n };\n DeleteSubscriptionFilterCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteSubscriptionFilterCommand\"])(output, context);\n };\n return DeleteSubscriptionFilterCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteSubscriptionFilterCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteSubscriptionFilterCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeDestinationsCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeDestinationsCommand.js ***! \******************************************************************************************************/ /*! exports provided: DescribeDestinationsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDestinationsCommand\", function() { return DescribeDestinationsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists all your destinations. The results are ASCII-sorted by destination name.

\n */\nvar DescribeDestinationsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeDestinationsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeDestinationsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeDestinationsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DescribeDestinationsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDestinationsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDestinationsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeDestinationsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeDestinationsCommand\"])(input, context);\n };\n DescribeDestinationsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeDestinationsCommand\"])(output, context);\n };\n return DescribeDestinationsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeDestinationsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeDestinationsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeExportTasksCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeExportTasksCommand.js ***! \*****************************************************************************************************/ /*! exports provided: DescribeExportTasksCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeExportTasksCommand\", function() { return DescribeExportTasksCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the specified export tasks. You can list all your export tasks or filter\n * the results based on task ID or task status.

\n */\nvar DescribeExportTasksCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeExportTasksCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeExportTasksCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeExportTasksCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DescribeExportTasksCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeExportTasksRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeExportTasksResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeExportTasksCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeExportTasksCommand\"])(input, context);\n };\n DescribeExportTasksCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeExportTasksCommand\"])(output, context);\n };\n return DescribeExportTasksCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeExportTasksCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeExportTasksCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogGroupsCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogGroupsCommand.js ***! \***************************************************************************************************/ /*! exports provided: DescribeLogGroupsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogGroupsCommand\", function() { return DescribeLogGroupsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the specified log groups. You can list all your log groups or filter the results by prefix.\n * The results are ASCII-sorted by log group name.

\n */\nvar DescribeLogGroupsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeLogGroupsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeLogGroupsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeLogGroupsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DescribeLogGroupsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeLogGroupsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeLogGroupsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeLogGroupsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeLogGroupsCommand\"])(input, context);\n };\n DescribeLogGroupsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeLogGroupsCommand\"])(output, context);\n };\n return DescribeLogGroupsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeLogGroupsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogGroupsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogStreamsCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogStreamsCommand.js ***! \****************************************************************************************************/ /*! exports provided: DescribeLogStreamsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogStreamsCommand\", function() { return DescribeLogStreamsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the log streams for the specified log group.\n * You can list all the log streams or filter the results by prefix.\n * You can also control how the results are ordered.

\n *

This operation has a limit of five transactions per second, after which transactions are throttled.

\n */\nvar DescribeLogStreamsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeLogStreamsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeLogStreamsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeLogStreamsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DescribeLogStreamsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeLogStreamsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeLogStreamsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeLogStreamsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeLogStreamsCommand\"])(input, context);\n };\n DescribeLogStreamsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeLogStreamsCommand\"])(output, context);\n };\n return DescribeLogStreamsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeLogStreamsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogStreamsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeMetricFiltersCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeMetricFiltersCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DescribeMetricFiltersCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeMetricFiltersCommand\", function() { return DescribeMetricFiltersCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the specified metric filters. You can list all of the metric filters or filter\n * the results by log name, prefix, metric name, or metric namespace. The results are\n * ASCII-sorted by filter name.

\n */\nvar DescribeMetricFiltersCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeMetricFiltersCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeMetricFiltersCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeMetricFiltersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DescribeMetricFiltersCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeMetricFiltersRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeMetricFiltersResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeMetricFiltersCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeMetricFiltersCommand\"])(input, context);\n };\n DescribeMetricFiltersCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeMetricFiltersCommand\"])(output, context);\n };\n return DescribeMetricFiltersCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeMetricFiltersCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeMetricFiltersCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueriesCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueriesCommand.js ***! \*************************************************************************************************/ /*! exports provided: DescribeQueriesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueriesCommand\", function() { return DescribeQueriesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns a list of CloudWatch Logs Insights queries that are scheduled, executing, or have\n * been executed recently in this account. You can request all queries or limit it to queries of\n * a specific log group or queries with a certain status.

\n */\nvar DescribeQueriesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeQueriesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeQueriesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeQueriesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DescribeQueriesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeQueriesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeQueriesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeQueriesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeQueriesCommand\"])(input, context);\n };\n DescribeQueriesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeQueriesCommand\"])(output, context);\n };\n return DescribeQueriesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeQueriesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueriesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueryDefinitionsCommand.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueryDefinitionsCommand.js ***! \**********************************************************************************************************/ /*! exports provided: DescribeQueryDefinitionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueryDefinitionsCommand\", function() { return DescribeQueryDefinitionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

This operation returns a paginated list of your saved CloudWatch Logs Insights query definitions.

\n *

You can use the queryDefinitionNamePrefix parameter to limit the results to only the\n * query definitions that have names that start with a certain string.

\n */\nvar DescribeQueryDefinitionsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeQueryDefinitionsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeQueryDefinitionsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeQueryDefinitionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DescribeQueryDefinitionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeQueryDefinitionsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeQueryDefinitionsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeQueryDefinitionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeQueryDefinitionsCommand\"])(input, context);\n };\n DescribeQueryDefinitionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeQueryDefinitionsCommand\"])(output, context);\n };\n return DescribeQueryDefinitionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeQueryDefinitionsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueryDefinitionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeResourcePoliciesCommand.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeResourcePoliciesCommand.js ***! \**********************************************************************************************************/ /*! exports provided: DescribeResourcePoliciesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeResourcePoliciesCommand\", function() { return DescribeResourcePoliciesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the resource policies in this account.

\n */\nvar DescribeResourcePoliciesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeResourcePoliciesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeResourcePoliciesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeResourcePoliciesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DescribeResourcePoliciesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeResourcePoliciesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeResourcePoliciesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeResourcePoliciesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeResourcePoliciesCommand\"])(input, context);\n };\n DescribeResourcePoliciesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeResourcePoliciesCommand\"])(output, context);\n };\n return DescribeResourcePoliciesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeResourcePoliciesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeResourcePoliciesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeSubscriptionFiltersCommand.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeSubscriptionFiltersCommand.js ***! \*************************************************************************************************************/ /*! exports provided: DescribeSubscriptionFiltersCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeSubscriptionFiltersCommand\", function() { return DescribeSubscriptionFiltersCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the subscription filters for the specified log group. You can list all the subscription filters or filter the results by prefix.\n * The results are ASCII-sorted by filter name.

\n */\nvar DescribeSubscriptionFiltersCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeSubscriptionFiltersCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeSubscriptionFiltersCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeSubscriptionFiltersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DescribeSubscriptionFiltersCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeSubscriptionFiltersRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeSubscriptionFiltersResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeSubscriptionFiltersCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeSubscriptionFiltersCommand\"])(input, context);\n };\n DescribeSubscriptionFiltersCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeSubscriptionFiltersCommand\"])(output, context);\n };\n return DescribeSubscriptionFiltersCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeSubscriptionFiltersCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeSubscriptionFiltersCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DisassociateKmsKeyCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DisassociateKmsKeyCommand.js ***! \****************************************************************************************************/ /*! exports provided: DisassociateKmsKeyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DisassociateKmsKeyCommand\", function() { return DisassociateKmsKeyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disassociates the associated AWS Key Management Service (AWS KMS) customer master key (CMK) from the specified log group.

\n *

After the AWS KMS CMK is disassociated from the log group, AWS CloudWatch Logs stops encrypting newly ingested data for the log group.\n * All previously ingested data remains encrypted, and AWS CloudWatch Logs requires permissions for the CMK whenever the encrypted data is requested.

\n *

Note that it can take up to 5 minutes for this operation to take effect.

\n */\nvar DisassociateKmsKeyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DisassociateKmsKeyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DisassociateKmsKeyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DisassociateKmsKeyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"DisassociateKmsKeyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DisassociateKmsKeyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DisassociateKmsKeyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DisassociateKmsKeyCommand\"])(input, context);\n };\n DisassociateKmsKeyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DisassociateKmsKeyCommand\"])(output, context);\n };\n return DisassociateKmsKeyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DisassociateKmsKeyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DisassociateKmsKeyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/FilterLogEventsCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/FilterLogEventsCommand.js ***! \*************************************************************************************************/ /*! exports provided: FilterLogEventsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FilterLogEventsCommand\", function() { return FilterLogEventsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists log events from the specified log group. You can list all the log events or filter the results\n * using a filter pattern, a time range, and the name of the log stream.

\n *

By default, this operation returns as many log events as can fit in 1 MB (up to 10,000\n * log events) or all the events found within the time range that you specify. If the results\n * include a token, then there are more log events available, and you can get additional results\n * by specifying the token in a subsequent call. This operation can return empty results\n * while there are more log events available through the token.

\n *

The returned log events are sorted by event timestamp, the timestamp when the event was ingested\n * by CloudWatch Logs, and the ID of the PutLogEvents request.

\n */\nvar FilterLogEventsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(FilterLogEventsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function FilterLogEventsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n FilterLogEventsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"FilterLogEventsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"FilterLogEventsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"FilterLogEventsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n FilterLogEventsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1FilterLogEventsCommand\"])(input, context);\n };\n FilterLogEventsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1FilterLogEventsCommand\"])(output, context);\n };\n return FilterLogEventsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=FilterLogEventsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/FilterLogEventsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogEventsCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogEventsCommand.js ***! \**********************************************************************************************/ /*! exports provided: GetLogEventsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLogEventsCommand\", function() { return GetLogEventsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists log events from the specified log stream. You can list all of the log events or\n * filter using a time range.

\n *\n *

By default, this operation returns as many log events as can fit in a response size of 1MB (up to 10,000 log events).\n * You can get additional log events by specifying one of the tokens in a subsequent call.\n * This operation can return empty results while there are more log events available through the token.

\n */\nvar GetLogEventsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetLogEventsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetLogEventsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetLogEventsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"GetLogEventsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLogEventsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLogEventsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetLogEventsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetLogEventsCommand\"])(input, context);\n };\n GetLogEventsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetLogEventsCommand\"])(output, context);\n };\n return GetLogEventsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetLogEventsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogEventsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogGroupFieldsCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogGroupFieldsCommand.js ***! \***************************************************************************************************/ /*! exports provided: GetLogGroupFieldsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLogGroupFieldsCommand\", function() { return GetLogGroupFieldsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns a list of the fields that are included in log events in the specified log group, along with the percentage of log events\n * that contain each field. The search is limited to a time period that you specify.

\n *

In the results, fields that start with @ are fields generated by CloudWatch Logs. For\n * example, @timestamp is the timestamp of each log event. For more information about the fields that are\n * generated by CloudWatch logs, see\n * Supported Logs and Discovered Fields.

\n *

The response results are sorted by the frequency percentage, starting\n * with the highest percentage.

\n */\nvar GetLogGroupFieldsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetLogGroupFieldsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetLogGroupFieldsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetLogGroupFieldsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"GetLogGroupFieldsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLogGroupFieldsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLogGroupFieldsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetLogGroupFieldsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetLogGroupFieldsCommand\"])(input, context);\n };\n GetLogGroupFieldsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetLogGroupFieldsCommand\"])(output, context);\n };\n return GetLogGroupFieldsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetLogGroupFieldsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogGroupFieldsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogRecordCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogRecordCommand.js ***! \**********************************************************************************************/ /*! exports provided: GetLogRecordCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLogRecordCommand\", function() { return GetLogRecordCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves all of the fields and values of a single log event. All fields are retrieved,\n * even if the original query that produced the logRecordPointer retrieved only a\n * subset of fields. Fields are returned as field name/field value pairs.

\n *

The full unparsed log event is returned within @message.

\n */\nvar GetLogRecordCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetLogRecordCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetLogRecordCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetLogRecordCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"GetLogRecordCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLogRecordRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLogRecordResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetLogRecordCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetLogRecordCommand\"])(input, context);\n };\n GetLogRecordCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetLogRecordCommand\"])(output, context);\n };\n return GetLogRecordCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetLogRecordCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogRecordCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetQueryResultsCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetQueryResultsCommand.js ***! \*************************************************************************************************/ /*! exports provided: GetQueryResultsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetQueryResultsCommand\", function() { return GetQueryResultsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns the results from the specified query.

\n *

Only the fields requested in the query are returned, along with a @ptr\n * field, which is the identifier for the log record. You can use the value of @ptr\n * in a GetLogRecord\n * operation to get the full log record.

\n *

\n * GetQueryResults\n * does not start a query execution. To run a query, use StartQuery.

\n *

If the value of the Status field in the output is Running, this operation\n * returns only partial results. If you see a value of Scheduled or Running for the status,\n * you can retry the operation later to see the final results.

\n */\nvar GetQueryResultsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetQueryResultsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetQueryResultsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetQueryResultsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"GetQueryResultsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetQueryResultsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetQueryResultsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetQueryResultsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetQueryResultsCommand\"])(input, context);\n };\n GetQueryResultsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetQueryResultsCommand\"])(output, context);\n };\n return GetQueryResultsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetQueryResultsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetQueryResultsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/ListTagsLogGroupCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/ListTagsLogGroupCommand.js ***! \**************************************************************************************************/ /*! exports provided: ListTagsLogGroupCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsLogGroupCommand\", function() { return ListTagsLogGroupCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the tags for the specified log group.

\n */\nvar ListTagsLogGroupCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTagsLogGroupCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTagsLogGroupCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTagsLogGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"ListTagsLogGroupCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsLogGroupRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsLogGroupResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTagsLogGroupCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListTagsLogGroupCommand\"])(input, context);\n };\n ListTagsLogGroupCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListTagsLogGroupCommand\"])(output, context);\n };\n return ListTagsLogGroupCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTagsLogGroupCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/ListTagsLogGroupCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationCommand.js ***! \************************************************************************************************/ /*! exports provided: PutDestinationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationCommand\", function() { return PutDestinationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates or updates a destination. This operation is used only to create destinations for cross-account subscriptions.

\n *

A destination encapsulates a physical resource (such\n * as an Amazon Kinesis stream) and enables you to subscribe to a real-time stream of log events\n * for a different account, ingested using PutLogEvents.

\n *

Through an access policy, a destination controls what is written to it.\n * By default, PutDestination does not set any access policy with the destination,\n * which means a cross-account user cannot call PutSubscriptionFilter against\n * this destination. To enable this, the destination owner must call PutDestinationPolicy after PutDestination.

\n *

To perform a PutDestination operation, you must also have the\n * iam:PassRole permission.

\n */\nvar PutDestinationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutDestinationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutDestinationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutDestinationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"PutDestinationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutDestinationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutDestinationResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutDestinationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutDestinationCommand\"])(input, context);\n };\n PutDestinationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutDestinationCommand\"])(output, context);\n };\n return PutDestinationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutDestinationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationPolicyCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationPolicyCommand.js ***! \******************************************************************************************************/ /*! exports provided: PutDestinationPolicyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationPolicyCommand\", function() { return PutDestinationPolicyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates or updates an access policy associated with an existing\n * destination. An access policy is an IAM policy document that is used\n * to authorize claims to register a subscription filter against a given destination.

\n */\nvar PutDestinationPolicyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutDestinationPolicyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutDestinationPolicyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutDestinationPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"PutDestinationPolicyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutDestinationPolicyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutDestinationPolicyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutDestinationPolicyCommand\"])(input, context);\n };\n PutDestinationPolicyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutDestinationPolicyCommand\"])(output, context);\n };\n return PutDestinationPolicyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutDestinationPolicyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationPolicyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutLogEventsCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutLogEventsCommand.js ***! \**********************************************************************************************/ /*! exports provided: PutLogEventsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutLogEventsCommand\", function() { return PutLogEventsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Uploads a batch of log events to the specified log stream.

\n *

You must include the sequence token obtained from the response of the previous call. An\n * upload in a newly created log stream does not require a sequence token. You can also get the\n * sequence token in the expectedSequenceToken field from\n * InvalidSequenceTokenException. If you call PutLogEvents twice\n * within a narrow time period using the same value for sequenceToken, both calls\n * might be successful or one might be rejected.

\n *

The batch of events must satisfy the following constraints:

\n *
    \n *
  • \n *

    The maximum batch size is 1,048,576 bytes. This size is calculated as the sum of\n * all event messages in UTF-8, plus 26 bytes for each log event.

    \n *
  • \n *
  • \n *

    None of the log events in the batch can be more than 2 hours in the future.

    \n *
  • \n *
  • \n *

    None of the log events in the batch can be older than 14 days or older than the retention\n * period of the log group.

    \n *
  • \n *
  • \n *

    The log events in the batch must be in chronological order by their timestamp. The\n * timestamp is the time the event occurred, expressed as the number of milliseconds after\n * Jan 1, 1970 00:00:00 UTC. (In AWS Tools for PowerShell and the AWS SDK for .NET, the\n * timestamp is specified in .NET format: yyyy-mm-ddThh:mm:ss. For example,\n * 2017-09-15T13:45:30.)

    \n *
  • \n *
  • \n *

    A batch of log events in a single request cannot span more than 24 hours. Otherwise, the operation fails.

    \n *
  • \n *
  • \n *

    The maximum number of log events in a batch is 10,000.

    \n *
  • \n *
  • \n *

    There is a quota of 5 requests per second per log stream. Additional requests are throttled. This quota can't be changed.

    \n *
  • \n *
\n *

If a call to PutLogEvents returns \"UnrecognizedClientException\" the most likely cause is an invalid AWS access key ID or secret key.

\n */\nvar PutLogEventsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutLogEventsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutLogEventsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutLogEventsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"PutLogEventsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutLogEventsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutLogEventsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutLogEventsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutLogEventsCommand\"])(input, context);\n };\n PutLogEventsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutLogEventsCommand\"])(output, context);\n };\n return PutLogEventsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutLogEventsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutLogEventsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutMetricFilterCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutMetricFilterCommand.js ***! \*************************************************************************************************/ /*! exports provided: PutMetricFilterCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutMetricFilterCommand\", function() { return PutMetricFilterCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates or updates a metric filter and associates it with the specified log group.\n * Metric filters allow you to configure rules to extract metric data from log events ingested\n * through PutLogEvents.

\n *

The maximum number of metric filters that can be associated with a log group is\n * 100.

\n */\nvar PutMetricFilterCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutMetricFilterCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutMetricFilterCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutMetricFilterCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"PutMetricFilterCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutMetricFilterRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutMetricFilterCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutMetricFilterCommand\"])(input, context);\n };\n PutMetricFilterCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutMetricFilterCommand\"])(output, context);\n };\n return PutMetricFilterCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutMetricFilterCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutMetricFilterCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutQueryDefinitionCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutQueryDefinitionCommand.js ***! \****************************************************************************************************/ /*! exports provided: PutQueryDefinitionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutQueryDefinitionCommand\", function() { return PutQueryDefinitionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates or updates a query definition for CloudWatch Logs Insights. For\n * more information, see Analyzing Log Data with CloudWatch Logs Insights.

\n *\n *

To update a query definition, specify its\n * queryDefinitionId in your request. The values of name, queryString,\n * and logGroupNames are changed to the values that you specify in your update\n * operation. No current values are retained from the current query definition. For example, if\n * you update a current query definition that includes log groups, and you don't specify the\n * logGroupNames parameter in your update operation, the query definition changes\n * to contain no log groups.

\n *

You must have the logs:PutQueryDefinition permission to be able to perform\n * this operation.

\n */\nvar PutQueryDefinitionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutQueryDefinitionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutQueryDefinitionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutQueryDefinitionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"PutQueryDefinitionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutQueryDefinitionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutQueryDefinitionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutQueryDefinitionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutQueryDefinitionCommand\"])(input, context);\n };\n PutQueryDefinitionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutQueryDefinitionCommand\"])(output, context);\n };\n return PutQueryDefinitionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutQueryDefinitionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutQueryDefinitionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutResourcePolicyCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutResourcePolicyCommand.js ***! \***************************************************************************************************/ /*! exports provided: PutResourcePolicyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutResourcePolicyCommand\", function() { return PutResourcePolicyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates or updates a resource policy allowing other AWS services to put log events to\n * this account, such as Amazon Route 53. An account can have up to 10 resource policies per AWS\n * Region.

\n */\nvar PutResourcePolicyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutResourcePolicyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutResourcePolicyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutResourcePolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"PutResourcePolicyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutResourcePolicyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutResourcePolicyResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutResourcePolicyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutResourcePolicyCommand\"])(input, context);\n };\n PutResourcePolicyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutResourcePolicyCommand\"])(output, context);\n };\n return PutResourcePolicyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutResourcePolicyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutResourcePolicyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutRetentionPolicyCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutRetentionPolicyCommand.js ***! \****************************************************************************************************/ /*! exports provided: PutRetentionPolicyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRetentionPolicyCommand\", function() { return PutRetentionPolicyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Sets the retention of the specified log group. A retention policy allows you to\n * configure the number of days for which to retain log events in the specified log\n * group.

\n */\nvar PutRetentionPolicyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutRetentionPolicyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutRetentionPolicyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutRetentionPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"PutRetentionPolicyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutRetentionPolicyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutRetentionPolicyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutRetentionPolicyCommand\"])(input, context);\n };\n PutRetentionPolicyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutRetentionPolicyCommand\"])(output, context);\n };\n return PutRetentionPolicyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutRetentionPolicyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutRetentionPolicyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutSubscriptionFilterCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutSubscriptionFilterCommand.js ***! \*******************************************************************************************************/ /*! exports provided: PutSubscriptionFilterCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutSubscriptionFilterCommand\", function() { return PutSubscriptionFilterCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates or updates a subscription filter and associates it with the specified log\n * group. Subscription filters allow you to subscribe to a real-time stream of log events\n * ingested through PutLogEvents and have them delivered to a specific\n * destination. When log events are sent to the\n * receiving service, they are Base64 encoded\n * and compressed with the gzip format.

\n *

The following destinations are supported for subscription filters:

\n *
    \n *
  • \n *

    An Amazon Kinesis stream belonging to the same account as the subscription filter,\n * for same-account delivery.

    \n *
  • \n *
  • \n *

    A logical destination that belongs to a different account, for cross-account delivery.

    \n *
  • \n *
  • \n *

    An Amazon Kinesis Firehose delivery stream that belongs to the same account as the\n * subscription filter, for same-account delivery.

    \n *
  • \n *
  • \n *

    An AWS Lambda function that belongs to the same account as the subscription filter,\n * for same-account delivery.

    \n *
  • \n *
\n *

There can only be one subscription filter associated with a log group. If you are\n * updating an existing filter, you must specify the correct name in filterName.\n * Otherwise, the call fails because you cannot associate a second filter with a log\n * group.

\n *

To perform a PutSubscriptionFilter operation, you must also have the\n * iam:PassRole permission.

\n */\nvar PutSubscriptionFilterCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutSubscriptionFilterCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutSubscriptionFilterCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutSubscriptionFilterCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"PutSubscriptionFilterCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutSubscriptionFilterRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutSubscriptionFilterCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutSubscriptionFilterCommand\"])(input, context);\n };\n PutSubscriptionFilterCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutSubscriptionFilterCommand\"])(output, context);\n };\n return PutSubscriptionFilterCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutSubscriptionFilterCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutSubscriptionFilterCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StartQueryCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StartQueryCommand.js ***! \********************************************************************************************/ /*! exports provided: StartQueryCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartQueryCommand\", function() { return StartQueryCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Schedules a query of a log group using CloudWatch Logs Insights. You specify the log group\n * and time range to query and the query string to use.

\n *

For more information, see CloudWatch Logs Insights Query Syntax.

\n *\n *

Queries time out after 15 minutes of execution. If your queries are timing out, reduce the\n * time range being searched or partition your query into a number of queries.

\n */\nvar StartQueryCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartQueryCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartQueryCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartQueryCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"StartQueryCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartQueryRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartQueryResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartQueryCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartQueryCommand\"])(input, context);\n };\n StartQueryCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartQueryCommand\"])(output, context);\n };\n return StartQueryCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartQueryCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StartQueryCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StopQueryCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StopQueryCommand.js ***! \*******************************************************************************************/ /*! exports provided: StopQueryCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopQueryCommand\", function() { return StopQueryCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops a CloudWatch Logs Insights query that is in progress. If the query has already ended, the operation\n * returns an error indicating that the specified query is not running.

\n */\nvar StopQueryCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopQueryCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopQueryCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopQueryCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"StopQueryCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopQueryRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopQueryResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopQueryCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopQueryCommand\"])(input, context);\n };\n StopQueryCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopQueryCommand\"])(output, context);\n };\n return StopQueryCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopQueryCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StopQueryCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TagLogGroupCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TagLogGroupCommand.js ***! \*********************************************************************************************/ /*! exports provided: TagLogGroupCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagLogGroupCommand\", function() { return TagLogGroupCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Adds or updates the specified tags for the specified log group.

\n *

To list the tags for a log group, use ListTagsLogGroup.\n * To remove tags, use UntagLogGroup.

\n *

For more information about tags, see Tag Log Groups in Amazon CloudWatch Logs\n * in the Amazon CloudWatch Logs User Guide.

\n */\nvar TagLogGroupCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TagLogGroupCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function TagLogGroupCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n TagLogGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"TagLogGroupCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TagLogGroupRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n TagLogGroupCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1TagLogGroupCommand\"])(input, context);\n };\n TagLogGroupCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1TagLogGroupCommand\"])(output, context);\n };\n return TagLogGroupCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=TagLogGroupCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TagLogGroupCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TestMetricFilterCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TestMetricFilterCommand.js ***! \**************************************************************************************************/ /*! exports provided: TestMetricFilterCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TestMetricFilterCommand\", function() { return TestMetricFilterCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Tests the filter pattern of a metric filter against a sample of log event messages. You\n * can use this operation to validate the correctness of a metric filter pattern.

\n */\nvar TestMetricFilterCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TestMetricFilterCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function TestMetricFilterCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n TestMetricFilterCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"TestMetricFilterCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TestMetricFilterRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TestMetricFilterResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n TestMetricFilterCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1TestMetricFilterCommand\"])(input, context);\n };\n TestMetricFilterCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1TestMetricFilterCommand\"])(output, context);\n };\n return TestMetricFilterCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=TestMetricFilterCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TestMetricFilterCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/UntagLogGroupCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/UntagLogGroupCommand.js ***! \***********************************************************************************************/ /*! exports provided: UntagLogGroupCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagLogGroupCommand\", function() { return UntagLogGroupCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Removes the specified tags from the specified log group.

\n *

To list the tags for a log group, use ListTagsLogGroup.\n * To add tags, use TagLogGroup.

\n */\nvar UntagLogGroupCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UntagLogGroupCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UntagLogGroupCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UntagLogGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CloudWatchLogsClient\";\n var commandName = \"UntagLogGroupCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UntagLogGroupRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UntagLogGroupCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UntagLogGroupCommand\"])(input, context);\n };\n UntagLogGroupCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UntagLogGroupCommand\"])(output, context);\n };\n return UntagLogGroupCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UntagLogGroupCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/UntagLogGroupCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/endpoints.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/endpoints.js ***! \***************************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"logs.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"logs.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"logs.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"logs.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"logs.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"af-south-1\":\n regionInfo = {\n hostname: \"logs.af-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-east-1\":\n regionInfo = {\n hostname: \"logs.ap-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"logs.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"logs.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"logs.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"logs.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"logs.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"logs.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"cn-north-1\":\n regionInfo = {\n hostname: \"logs.cn-north-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"cn-northwest-1\":\n regionInfo = {\n hostname: \"logs.cn-northwest-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"logs.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-north-1\":\n regionInfo = {\n hostname: \"logs.eu-north-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-south-1\":\n regionInfo = {\n hostname: \"logs.eu-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"logs.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"logs.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-3\":\n regionInfo = {\n hostname: \"logs.eu-west-3.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"fips-us-east-1\":\n regionInfo = {\n hostname: \"logs-fips.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"fips-us-east-2\":\n regionInfo = {\n hostname: \"logs-fips.us-east-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-2\",\n };\n break;\n case \"fips-us-west-1\":\n regionInfo = {\n hostname: \"logs-fips.us-west-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-1\",\n };\n break;\n case \"fips-us-west-2\":\n regionInfo = {\n hostname: \"logs-fips.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n case \"me-south-1\":\n regionInfo = {\n hostname: \"logs.me-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"sa-east-1\":\n regionInfo = {\n hostname: \"logs.sa-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"logs.us-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-2\":\n regionInfo = {\n hostname: \"logs.us-east-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-gov-east-1\":\n regionInfo = {\n hostname: \"logs.us-gov-east-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-east-1\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"logs.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"us-iso-east-1\":\n regionInfo = {\n hostname: \"logs.us-iso-east-1.c2s.ic.gov\",\n partition: \"aws-iso\",\n };\n break;\n case \"us-isob-east-1\":\n regionInfo = {\n hostname: \"logs.us-isob-east-1.sc2s.sgov.gov\",\n partition: \"aws-iso-b\",\n };\n break;\n case \"us-west-1\":\n regionInfo = {\n hostname: \"logs.us-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"logs.us-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"logs\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/index.js ***! \***********************************************************************/ /*! exports provided: CloudWatchLogsClient, CloudWatchLogs, AssociateKmsKeyCommand, CancelExportTaskCommand, CreateExportTaskCommand, CreateLogGroupCommand, CreateLogStreamCommand, DeleteDestinationCommand, DeleteLogGroupCommand, DeleteLogStreamCommand, DeleteMetricFilterCommand, DeleteQueryDefinitionCommand, DeleteResourcePolicyCommand, DeleteRetentionPolicyCommand, DeleteSubscriptionFilterCommand, DescribeDestinationsCommand, paginateDescribeDestinations, DescribeExportTasksCommand, DescribeLogGroupsCommand, paginateDescribeLogGroups, DescribeLogStreamsCommand, paginateDescribeLogStreams, DescribeMetricFiltersCommand, paginateDescribeMetricFilters, DescribeQueriesCommand, DescribeQueryDefinitionsCommand, DescribeResourcePoliciesCommand, DescribeSubscriptionFiltersCommand, paginateDescribeSubscriptionFilters, DisassociateKmsKeyCommand, FilterLogEventsCommand, paginateFilterLogEvents, GetLogEventsCommand, paginateGetLogEvents, GetLogGroupFieldsCommand, GetLogRecordCommand, GetQueryResultsCommand, ListTagsLogGroupCommand, PutDestinationCommand, PutDestinationPolicyCommand, PutLogEventsCommand, PutMetricFilterCommand, PutQueryDefinitionCommand, PutResourcePolicyCommand, PutRetentionPolicyCommand, PutSubscriptionFilterCommand, StartQueryCommand, StopQueryCommand, TagLogGroupCommand, TestMetricFilterCommand, UntagLogGroupCommand, AssociateKmsKeyRequest, InvalidParameterException, OperationAbortedException, ResourceNotFoundException, ServiceUnavailableException, CancelExportTaskRequest, InvalidOperationException, CreateExportTaskRequest, CreateExportTaskResponse, LimitExceededException, ResourceAlreadyExistsException, CreateLogGroupRequest, CreateLogStreamRequest, DataAlreadyAcceptedException, DeleteDestinationRequest, DeleteLogGroupRequest, DeleteLogStreamRequest, DeleteMetricFilterRequest, DeleteQueryDefinitionRequest, DeleteQueryDefinitionResponse, DeleteResourcePolicyRequest, DeleteRetentionPolicyRequest, DeleteSubscriptionFilterRequest, DescribeDestinationsRequest, Destination, DescribeDestinationsResponse, ExportTaskStatusCode, DescribeExportTasksRequest, ExportTaskExecutionInfo, ExportTaskStatus, ExportTask, DescribeExportTasksResponse, DescribeLogGroupsRequest, LogGroup, DescribeLogGroupsResponse, OrderBy, DescribeLogStreamsRequest, LogStream, DescribeLogStreamsResponse, DescribeMetricFiltersRequest, MetricTransformation, MetricFilter, DescribeMetricFiltersResponse, QueryStatus, DescribeQueriesRequest, QueryInfo, DescribeQueriesResponse, DescribeQueryDefinitionsRequest, QueryDefinition, DescribeQueryDefinitionsResponse, DescribeResourcePoliciesRequest, ResourcePolicy, DescribeResourcePoliciesResponse, DescribeSubscriptionFiltersRequest, Distribution, SubscriptionFilter, DescribeSubscriptionFiltersResponse, DisassociateKmsKeyRequest, FilteredLogEvent, FilterLogEventsRequest, SearchedLogStream, FilterLogEventsResponse, GetLogEventsRequest, OutputLogEvent, GetLogEventsResponse, GetLogGroupFieldsRequest, LogGroupField, GetLogGroupFieldsResponse, GetLogRecordRequest, GetLogRecordResponse, GetQueryResultsRequest, ResultField, QueryStatistics, GetQueryResultsResponse, InputLogEvent, InvalidSequenceTokenException, ListTagsLogGroupRequest, ListTagsLogGroupResponse, PutDestinationRequest, PutDestinationResponse, PutDestinationPolicyRequest, PutLogEventsRequest, RejectedLogEventsInfo, PutLogEventsResponse, UnrecognizedClientException, PutMetricFilterRequest, PutQueryDefinitionRequest, PutQueryDefinitionResponse, PutResourcePolicyRequest, PutResourcePolicyResponse, PutRetentionPolicyRequest, PutSubscriptionFilterRequest, QueryCompileErrorLocation, QueryCompileError, MalformedQueryException, StartQueryRequest, StartQueryResponse, StopQueryRequest, StopQueryResponse, TagLogGroupRequest, TestMetricFilterRequest, MetricFilterMatchRecord, TestMetricFilterResponse, UntagLogGroupRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CloudWatchLogsClient */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CloudWatchLogsClient\", function() { return _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_0__[\"CloudWatchLogsClient\"]; });\n\n/* harmony import */ var _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CloudWatchLogs */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CloudWatchLogs\", function() { return _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__[\"CloudWatchLogs\"]; });\n\n/* harmony import */ var _commands_AssociateKmsKeyCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/AssociateKmsKeyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/AssociateKmsKeyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AssociateKmsKeyCommand\", function() { return _commands_AssociateKmsKeyCommand__WEBPACK_IMPORTED_MODULE_2__[\"AssociateKmsKeyCommand\"]; });\n\n/* harmony import */ var _commands_CancelExportTaskCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CancelExportTaskCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CancelExportTaskCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CancelExportTaskCommand\", function() { return _commands_CancelExportTaskCommand__WEBPACK_IMPORTED_MODULE_3__[\"CancelExportTaskCommand\"]; });\n\n/* harmony import */ var _commands_CreateExportTaskCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/CreateExportTaskCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateExportTaskCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportTaskCommand\", function() { return _commands_CreateExportTaskCommand__WEBPACK_IMPORTED_MODULE_4__[\"CreateExportTaskCommand\"]; });\n\n/* harmony import */ var _commands_CreateLogGroupCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/CreateLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogGroupCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateLogGroupCommand\", function() { return _commands_CreateLogGroupCommand__WEBPACK_IMPORTED_MODULE_5__[\"CreateLogGroupCommand\"]; });\n\n/* harmony import */ var _commands_CreateLogStreamCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/CreateLogStreamCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/CreateLogStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateLogStreamCommand\", function() { return _commands_CreateLogStreamCommand__WEBPACK_IMPORTED_MODULE_6__[\"CreateLogStreamCommand\"]; });\n\n/* harmony import */ var _commands_DeleteDestinationCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/DeleteDestinationCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteDestinationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDestinationCommand\", function() { return _commands_DeleteDestinationCommand__WEBPACK_IMPORTED_MODULE_7__[\"DeleteDestinationCommand\"]; });\n\n/* harmony import */ var _commands_DeleteLogGroupCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/DeleteLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogGroupCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogGroupCommand\", function() { return _commands_DeleteLogGroupCommand__WEBPACK_IMPORTED_MODULE_8__[\"DeleteLogGroupCommand\"]; });\n\n/* harmony import */ var _commands_DeleteLogStreamCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/DeleteLogStreamCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteLogStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogStreamCommand\", function() { return _commands_DeleteLogStreamCommand__WEBPACK_IMPORTED_MODULE_9__[\"DeleteLogStreamCommand\"]; });\n\n/* harmony import */ var _commands_DeleteMetricFilterCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/DeleteMetricFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteMetricFilterCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMetricFilterCommand\", function() { return _commands_DeleteMetricFilterCommand__WEBPACK_IMPORTED_MODULE_10__[\"DeleteMetricFilterCommand\"]; });\n\n/* harmony import */ var _commands_DeleteQueryDefinitionCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DeleteQueryDefinitionCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteQueryDefinitionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteQueryDefinitionCommand\", function() { return _commands_DeleteQueryDefinitionCommand__WEBPACK_IMPORTED_MODULE_11__[\"DeleteQueryDefinitionCommand\"]; });\n\n/* harmony import */ var _commands_DeleteResourcePolicyCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/DeleteResourcePolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteResourcePolicyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteResourcePolicyCommand\", function() { return _commands_DeleteResourcePolicyCommand__WEBPACK_IMPORTED_MODULE_12__[\"DeleteResourcePolicyCommand\"]; });\n\n/* harmony import */ var _commands_DeleteRetentionPolicyCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DeleteRetentionPolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteRetentionPolicyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRetentionPolicyCommand\", function() { return _commands_DeleteRetentionPolicyCommand__WEBPACK_IMPORTED_MODULE_13__[\"DeleteRetentionPolicyCommand\"]; });\n\n/* harmony import */ var _commands_DeleteSubscriptionFilterCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/DeleteSubscriptionFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DeleteSubscriptionFilterCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSubscriptionFilterCommand\", function() { return _commands_DeleteSubscriptionFilterCommand__WEBPACK_IMPORTED_MODULE_14__[\"DeleteSubscriptionFilterCommand\"]; });\n\n/* harmony import */ var _commands_DescribeDestinationsCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DescribeDestinationsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeDestinationsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDestinationsCommand\", function() { return _commands_DescribeDestinationsCommand__WEBPACK_IMPORTED_MODULE_15__[\"DescribeDestinationsCommand\"]; });\n\n/* harmony import */ var _pagination_DescribeDestinationsPaginator__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./pagination/DescribeDestinationsPaginator */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeDestinationsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeDestinations\", function() { return _pagination_DescribeDestinationsPaginator__WEBPACK_IMPORTED_MODULE_16__[\"paginateDescribeDestinations\"]; });\n\n/* harmony import */ var _commands_DescribeExportTasksCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DescribeExportTasksCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeExportTasksCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeExportTasksCommand\", function() { return _commands_DescribeExportTasksCommand__WEBPACK_IMPORTED_MODULE_17__[\"DescribeExportTasksCommand\"]; });\n\n/* harmony import */ var _commands_DescribeLogGroupsCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DescribeLogGroupsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogGroupsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogGroupsCommand\", function() { return _commands_DescribeLogGroupsCommand__WEBPACK_IMPORTED_MODULE_18__[\"DescribeLogGroupsCommand\"]; });\n\n/* harmony import */ var _pagination_DescribeLogGroupsPaginator__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./pagination/DescribeLogGroupsPaginator */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeLogGroupsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeLogGroups\", function() { return _pagination_DescribeLogGroupsPaginator__WEBPACK_IMPORTED_MODULE_19__[\"paginateDescribeLogGroups\"]; });\n\n/* harmony import */ var _commands_DescribeLogStreamsCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DescribeLogStreamsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogStreamsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogStreamsCommand\", function() { return _commands_DescribeLogStreamsCommand__WEBPACK_IMPORTED_MODULE_20__[\"DescribeLogStreamsCommand\"]; });\n\n/* harmony import */ var _pagination_DescribeLogStreamsPaginator__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./pagination/DescribeLogStreamsPaginator */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeLogStreamsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeLogStreams\", function() { return _pagination_DescribeLogStreamsPaginator__WEBPACK_IMPORTED_MODULE_21__[\"paginateDescribeLogStreams\"]; });\n\n/* harmony import */ var _commands_DescribeMetricFiltersCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DescribeMetricFiltersCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeMetricFiltersCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMetricFiltersCommand\", function() { return _commands_DescribeMetricFiltersCommand__WEBPACK_IMPORTED_MODULE_22__[\"DescribeMetricFiltersCommand\"]; });\n\n/* harmony import */ var _pagination_DescribeMetricFiltersPaginator__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./pagination/DescribeMetricFiltersPaginator */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeMetricFiltersPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeMetricFilters\", function() { return _pagination_DescribeMetricFiltersPaginator__WEBPACK_IMPORTED_MODULE_23__[\"paginateDescribeMetricFilters\"]; });\n\n/* harmony import */ var _commands_DescribeQueriesCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/DescribeQueriesCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueriesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueriesCommand\", function() { return _commands_DescribeQueriesCommand__WEBPACK_IMPORTED_MODULE_24__[\"DescribeQueriesCommand\"]; });\n\n/* harmony import */ var _commands_DescribeQueryDefinitionsCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/DescribeQueryDefinitionsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeQueryDefinitionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueryDefinitionsCommand\", function() { return _commands_DescribeQueryDefinitionsCommand__WEBPACK_IMPORTED_MODULE_25__[\"DescribeQueryDefinitionsCommand\"]; });\n\n/* harmony import */ var _commands_DescribeResourcePoliciesCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/DescribeResourcePoliciesCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeResourcePoliciesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeResourcePoliciesCommand\", function() { return _commands_DescribeResourcePoliciesCommand__WEBPACK_IMPORTED_MODULE_26__[\"DescribeResourcePoliciesCommand\"]; });\n\n/* harmony import */ var _commands_DescribeSubscriptionFiltersCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/DescribeSubscriptionFiltersCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeSubscriptionFiltersCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSubscriptionFiltersCommand\", function() { return _commands_DescribeSubscriptionFiltersCommand__WEBPACK_IMPORTED_MODULE_27__[\"DescribeSubscriptionFiltersCommand\"]; });\n\n/* harmony import */ var _pagination_DescribeSubscriptionFiltersPaginator__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./pagination/DescribeSubscriptionFiltersPaginator */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeSubscriptionFiltersPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeSubscriptionFilters\", function() { return _pagination_DescribeSubscriptionFiltersPaginator__WEBPACK_IMPORTED_MODULE_28__[\"paginateDescribeSubscriptionFilters\"]; });\n\n/* harmony import */ var _commands_DisassociateKmsKeyCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/DisassociateKmsKeyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DisassociateKmsKeyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisassociateKmsKeyCommand\", function() { return _commands_DisassociateKmsKeyCommand__WEBPACK_IMPORTED_MODULE_29__[\"DisassociateKmsKeyCommand\"]; });\n\n/* harmony import */ var _commands_FilterLogEventsCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/FilterLogEventsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/FilterLogEventsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilterLogEventsCommand\", function() { return _commands_FilterLogEventsCommand__WEBPACK_IMPORTED_MODULE_30__[\"FilterLogEventsCommand\"]; });\n\n/* harmony import */ var _pagination_FilterLogEventsPaginator__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./pagination/FilterLogEventsPaginator */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/FilterLogEventsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateFilterLogEvents\", function() { return _pagination_FilterLogEventsPaginator__WEBPACK_IMPORTED_MODULE_31__[\"paginateFilterLogEvents\"]; });\n\n/* harmony import */ var _commands_GetLogEventsCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/GetLogEventsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogEventsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogEventsCommand\", function() { return _commands_GetLogEventsCommand__WEBPACK_IMPORTED_MODULE_32__[\"GetLogEventsCommand\"]; });\n\n/* harmony import */ var _pagination_GetLogEventsPaginator__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./pagination/GetLogEventsPaginator */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/GetLogEventsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetLogEvents\", function() { return _pagination_GetLogEventsPaginator__WEBPACK_IMPORTED_MODULE_33__[\"paginateGetLogEvents\"]; });\n\n/* harmony import */ var _commands_GetLogGroupFieldsCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./commands/GetLogGroupFieldsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogGroupFieldsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogGroupFieldsCommand\", function() { return _commands_GetLogGroupFieldsCommand__WEBPACK_IMPORTED_MODULE_34__[\"GetLogGroupFieldsCommand\"]; });\n\n/* harmony import */ var _commands_GetLogRecordCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/GetLogRecordCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogRecordCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogRecordCommand\", function() { return _commands_GetLogRecordCommand__WEBPACK_IMPORTED_MODULE_35__[\"GetLogRecordCommand\"]; });\n\n/* harmony import */ var _commands_GetQueryResultsCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./commands/GetQueryResultsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetQueryResultsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetQueryResultsCommand\", function() { return _commands_GetQueryResultsCommand__WEBPACK_IMPORTED_MODULE_36__[\"GetQueryResultsCommand\"]; });\n\n/* harmony import */ var _commands_ListTagsLogGroupCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/ListTagsLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/ListTagsLogGroupCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsLogGroupCommand\", function() { return _commands_ListTagsLogGroupCommand__WEBPACK_IMPORTED_MODULE_37__[\"ListTagsLogGroupCommand\"]; });\n\n/* harmony import */ var _commands_PutDestinationCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/PutDestinationCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationCommand\", function() { return _commands_PutDestinationCommand__WEBPACK_IMPORTED_MODULE_38__[\"PutDestinationCommand\"]; });\n\n/* harmony import */ var _commands_PutDestinationPolicyCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/PutDestinationPolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutDestinationPolicyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationPolicyCommand\", function() { return _commands_PutDestinationPolicyCommand__WEBPACK_IMPORTED_MODULE_39__[\"PutDestinationPolicyCommand\"]; });\n\n/* harmony import */ var _commands_PutLogEventsCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/PutLogEventsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutLogEventsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLogEventsCommand\", function() { return _commands_PutLogEventsCommand__WEBPACK_IMPORTED_MODULE_40__[\"PutLogEventsCommand\"]; });\n\n/* harmony import */ var _commands_PutMetricFilterCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/PutMetricFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutMetricFilterCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutMetricFilterCommand\", function() { return _commands_PutMetricFilterCommand__WEBPACK_IMPORTED_MODULE_41__[\"PutMetricFilterCommand\"]; });\n\n/* harmony import */ var _commands_PutQueryDefinitionCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/PutQueryDefinitionCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutQueryDefinitionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutQueryDefinitionCommand\", function() { return _commands_PutQueryDefinitionCommand__WEBPACK_IMPORTED_MODULE_42__[\"PutQueryDefinitionCommand\"]; });\n\n/* harmony import */ var _commands_PutResourcePolicyCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/PutResourcePolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutResourcePolicyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutResourcePolicyCommand\", function() { return _commands_PutResourcePolicyCommand__WEBPACK_IMPORTED_MODULE_43__[\"PutResourcePolicyCommand\"]; });\n\n/* harmony import */ var _commands_PutRetentionPolicyCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/PutRetentionPolicyCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutRetentionPolicyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRetentionPolicyCommand\", function() { return _commands_PutRetentionPolicyCommand__WEBPACK_IMPORTED_MODULE_44__[\"PutRetentionPolicyCommand\"]; });\n\n/* harmony import */ var _commands_PutSubscriptionFilterCommand__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./commands/PutSubscriptionFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/PutSubscriptionFilterCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSubscriptionFilterCommand\", function() { return _commands_PutSubscriptionFilterCommand__WEBPACK_IMPORTED_MODULE_45__[\"PutSubscriptionFilterCommand\"]; });\n\n/* harmony import */ var _commands_StartQueryCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/StartQueryCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StartQueryCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartQueryCommand\", function() { return _commands_StartQueryCommand__WEBPACK_IMPORTED_MODULE_46__[\"StartQueryCommand\"]; });\n\n/* harmony import */ var _commands_StopQueryCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./commands/StopQueryCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/StopQueryCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopQueryCommand\", function() { return _commands_StopQueryCommand__WEBPACK_IMPORTED_MODULE_47__[\"StopQueryCommand\"]; });\n\n/* harmony import */ var _commands_TagLogGroupCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./commands/TagLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TagLogGroupCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagLogGroupCommand\", function() { return _commands_TagLogGroupCommand__WEBPACK_IMPORTED_MODULE_48__[\"TagLogGroupCommand\"]; });\n\n/* harmony import */ var _commands_TestMetricFilterCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./commands/TestMetricFilterCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/TestMetricFilterCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TestMetricFilterCommand\", function() { return _commands_TestMetricFilterCommand__WEBPACK_IMPORTED_MODULE_49__[\"TestMetricFilterCommand\"]; });\n\n/* harmony import */ var _commands_UntagLogGroupCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./commands/UntagLogGroupCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/UntagLogGroupCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagLogGroupCommand\", function() { return _commands_UntagLogGroupCommand__WEBPACK_IMPORTED_MODULE_50__[\"UntagLogGroupCommand\"]; });\n\n/* harmony import */ var _pagination_Interfaces__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./pagination/Interfaces */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/Interfaces.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AssociateKmsKeyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"AssociateKmsKeyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"InvalidParameterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OperationAbortedException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"OperationAbortedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceUnavailableException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ServiceUnavailableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CancelExportTaskRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"CancelExportTaskRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidOperationException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"InvalidOperationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportTaskRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"CreateExportTaskRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportTaskResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"CreateExportTaskResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceAlreadyExistsException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ResourceAlreadyExistsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateLogGroupRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"CreateLogGroupRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateLogStreamRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"CreateLogStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DataAlreadyAcceptedException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DataAlreadyAcceptedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDestinationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DeleteDestinationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogGroupRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DeleteLogGroupRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogStreamRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DeleteLogStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMetricFilterRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DeleteMetricFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteQueryDefinitionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DeleteQueryDefinitionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteQueryDefinitionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DeleteQueryDefinitionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteResourcePolicyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DeleteResourcePolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRetentionPolicyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DeleteRetentionPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSubscriptionFilterRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DeleteSubscriptionFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDestinationsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeDestinationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Destination\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"Destination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDestinationsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeDestinationsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportTaskStatusCode\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ExportTaskStatusCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeExportTasksRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeExportTasksRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportTaskExecutionInfo\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ExportTaskExecutionInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportTaskStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ExportTaskStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportTask\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ExportTask\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeExportTasksResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeExportTasksResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogGroupsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeLogGroupsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LogGroup\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"LogGroup\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogGroupsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeLogGroupsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrderBy\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"OrderBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogStreamsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeLogStreamsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LogStream\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"LogStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogStreamsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeLogStreamsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMetricFiltersRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeMetricFiltersRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricTransformation\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"MetricTransformation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"MetricFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMetricFiltersResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeMetricFiltersResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"QueryStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueriesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeQueriesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryInfo\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"QueryInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueriesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeQueriesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueryDefinitionsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeQueryDefinitionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryDefinition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"QueryDefinition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueryDefinitionsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeQueryDefinitionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeResourcePoliciesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeResourcePoliciesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourcePolicy\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ResourcePolicy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeResourcePoliciesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeResourcePoliciesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSubscriptionFiltersRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeSubscriptionFiltersRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Distribution\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"Distribution\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscriptionFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"SubscriptionFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSubscriptionFiltersResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DescribeSubscriptionFiltersResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisassociateKmsKeyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"DisassociateKmsKeyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilteredLogEvent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"FilteredLogEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilterLogEventsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"FilterLogEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchedLogStream\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"SearchedLogStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilterLogEventsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"FilterLogEventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogEventsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"GetLogEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputLogEvent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"OutputLogEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogEventsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"GetLogEventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogGroupFieldsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"GetLogGroupFieldsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LogGroupField\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"LogGroupField\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogGroupFieldsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"GetLogGroupFieldsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogRecordRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"GetLogRecordRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogRecordResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"GetLogRecordResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetQueryResultsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"GetQueryResultsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResultField\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ResultField\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryStatistics\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"QueryStatistics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetQueryResultsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"GetQueryResultsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputLogEvent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"InputLogEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidSequenceTokenException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"InvalidSequenceTokenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsLogGroupRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ListTagsLogGroupRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsLogGroupResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"ListTagsLogGroupResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutDestinationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutDestinationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationPolicyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutDestinationPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLogEventsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutLogEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RejectedLogEventsInfo\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"RejectedLogEventsInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLogEventsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutLogEventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnrecognizedClientException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"UnrecognizedClientException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutMetricFilterRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutMetricFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutQueryDefinitionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutQueryDefinitionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutQueryDefinitionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutQueryDefinitionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutResourcePolicyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutResourcePolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutResourcePolicyResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutResourcePolicyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRetentionPolicyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutRetentionPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSubscriptionFilterRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"PutSubscriptionFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryCompileErrorLocation\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"QueryCompileErrorLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryCompileError\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"QueryCompileError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MalformedQueryException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"MalformedQueryException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartQueryRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"StartQueryRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartQueryResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"StartQueryResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopQueryRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"StopQueryRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopQueryResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"StopQueryResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagLogGroupRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"TagLogGroupRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TestMetricFilterRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"TestMetricFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricFilterMatchRecord\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"MetricFilterMatchRecord\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TestMetricFilterResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"TestMetricFilterResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagLogGroupRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_52__[\"UntagLogGroupRequest\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/index.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/index.js ***! \******************************************************************************/ /*! exports provided: AssociateKmsKeyRequest, InvalidParameterException, OperationAbortedException, ResourceNotFoundException, ServiceUnavailableException, CancelExportTaskRequest, InvalidOperationException, CreateExportTaskRequest, CreateExportTaskResponse, LimitExceededException, ResourceAlreadyExistsException, CreateLogGroupRequest, CreateLogStreamRequest, DataAlreadyAcceptedException, DeleteDestinationRequest, DeleteLogGroupRequest, DeleteLogStreamRequest, DeleteMetricFilterRequest, DeleteQueryDefinitionRequest, DeleteQueryDefinitionResponse, DeleteResourcePolicyRequest, DeleteRetentionPolicyRequest, DeleteSubscriptionFilterRequest, DescribeDestinationsRequest, Destination, DescribeDestinationsResponse, ExportTaskStatusCode, DescribeExportTasksRequest, ExportTaskExecutionInfo, ExportTaskStatus, ExportTask, DescribeExportTasksResponse, DescribeLogGroupsRequest, LogGroup, DescribeLogGroupsResponse, OrderBy, DescribeLogStreamsRequest, LogStream, DescribeLogStreamsResponse, DescribeMetricFiltersRequest, MetricTransformation, MetricFilter, DescribeMetricFiltersResponse, QueryStatus, DescribeQueriesRequest, QueryInfo, DescribeQueriesResponse, DescribeQueryDefinitionsRequest, QueryDefinition, DescribeQueryDefinitionsResponse, DescribeResourcePoliciesRequest, ResourcePolicy, DescribeResourcePoliciesResponse, DescribeSubscriptionFiltersRequest, Distribution, SubscriptionFilter, DescribeSubscriptionFiltersResponse, DisassociateKmsKeyRequest, FilteredLogEvent, FilterLogEventsRequest, SearchedLogStream, FilterLogEventsResponse, GetLogEventsRequest, OutputLogEvent, GetLogEventsResponse, GetLogGroupFieldsRequest, LogGroupField, GetLogGroupFieldsResponse, GetLogRecordRequest, GetLogRecordResponse, GetQueryResultsRequest, ResultField, QueryStatistics, GetQueryResultsResponse, InputLogEvent, InvalidSequenceTokenException, ListTagsLogGroupRequest, ListTagsLogGroupResponse, PutDestinationRequest, PutDestinationResponse, PutDestinationPolicyRequest, PutLogEventsRequest, RejectedLogEventsInfo, PutLogEventsResponse, UnrecognizedClientException, PutMetricFilterRequest, PutQueryDefinitionRequest, PutQueryDefinitionResponse, PutResourcePolicyRequest, PutResourcePolicyResponse, PutRetentionPolicyRequest, PutSubscriptionFilterRequest, QueryCompileErrorLocation, QueryCompileError, MalformedQueryException, StartQueryRequest, StartQueryResponse, StopQueryRequest, StopQueryResponse, TagLogGroupRequest, TestMetricFilterRequest, MetricFilterMatchRecord, TestMetricFilterResponse, UntagLogGroupRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AssociateKmsKeyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AssociateKmsKeyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidParameterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OperationAbortedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OperationAbortedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceUnavailableException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ServiceUnavailableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CancelExportTaskRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CancelExportTaskRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidOperationException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidOperationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportTaskRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateExportTaskRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportTaskResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateExportTaskResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceAlreadyExistsException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceAlreadyExistsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateLogGroupRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateLogGroupRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateLogStreamRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateLogStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DataAlreadyAcceptedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DataAlreadyAcceptedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDestinationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteDestinationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogGroupRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteLogGroupRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogStreamRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteLogStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMetricFilterRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteMetricFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteQueryDefinitionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteQueryDefinitionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteQueryDefinitionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteQueryDefinitionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteResourcePolicyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteResourcePolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRetentionPolicyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteRetentionPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSubscriptionFilterRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSubscriptionFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDestinationsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDestinationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Destination\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Destination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDestinationsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDestinationsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportTaskStatusCode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExportTaskStatusCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeExportTasksRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeExportTasksRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportTaskExecutionInfo\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExportTaskExecutionInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportTaskStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExportTaskStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportTask\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExportTask\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeExportTasksResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeExportTasksResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogGroupsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeLogGroupsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LogGroup\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LogGroup\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogGroupsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeLogGroupsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrderBy\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OrderBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogStreamsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeLogStreamsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LogStream\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LogStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogStreamsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeLogStreamsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMetricFiltersRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeMetricFiltersRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricTransformation\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MetricTransformation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MetricFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMetricFiltersResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeMetricFiltersResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"QueryStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueriesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeQueriesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryInfo\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"QueryInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueriesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeQueriesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueryDefinitionsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeQueryDefinitionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryDefinition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"QueryDefinition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueryDefinitionsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeQueryDefinitionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeResourcePoliciesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeResourcePoliciesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourcePolicy\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourcePolicy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeResourcePoliciesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeResourcePoliciesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSubscriptionFiltersRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeSubscriptionFiltersRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Distribution\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Distribution\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscriptionFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SubscriptionFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSubscriptionFiltersResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeSubscriptionFiltersResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisassociateKmsKeyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DisassociateKmsKeyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilteredLogEvent\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FilteredLogEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilterLogEventsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FilterLogEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchedLogStream\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchedLogStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilterLogEventsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FilterLogEventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogEventsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLogEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputLogEvent\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OutputLogEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogEventsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLogEventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogGroupFieldsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLogGroupFieldsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LogGroupField\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LogGroupField\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogGroupFieldsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLogGroupFieldsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogRecordRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLogRecordRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLogRecordResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLogRecordResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetQueryResultsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetQueryResultsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResultField\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResultField\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryStatistics\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"QueryStatistics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetQueryResultsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetQueryResultsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputLogEvent\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InputLogEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidSequenceTokenException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidSequenceTokenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsLogGroupRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsLogGroupRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsLogGroupResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsLogGroupResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutDestinationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutDestinationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationPolicyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutDestinationPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLogEventsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutLogEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RejectedLogEventsInfo\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RejectedLogEventsInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLogEventsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutLogEventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnrecognizedClientException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnrecognizedClientException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutMetricFilterRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutMetricFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutQueryDefinitionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutQueryDefinitionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutQueryDefinitionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutQueryDefinitionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutResourcePolicyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutResourcePolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutResourcePolicyResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutResourcePolicyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRetentionPolicyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRetentionPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSubscriptionFilterRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutSubscriptionFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryCompileErrorLocation\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"QueryCompileErrorLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueryCompileError\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"QueryCompileError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MalformedQueryException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MalformedQueryException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartQueryRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartQueryRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartQueryResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartQueryResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopQueryRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopQueryRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopQueryResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopQueryResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagLogGroupRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TagLogGroupRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TestMetricFilterRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TestMetricFilterRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricFilterMatchRecord\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MetricFilterMatchRecord\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TestMetricFilterResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TestMetricFilterResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagLogGroupRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UntagLogGroupRequest\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js ***! \*********************************************************************************/ /*! exports provided: AssociateKmsKeyRequest, InvalidParameterException, OperationAbortedException, ResourceNotFoundException, ServiceUnavailableException, CancelExportTaskRequest, InvalidOperationException, CreateExportTaskRequest, CreateExportTaskResponse, LimitExceededException, ResourceAlreadyExistsException, CreateLogGroupRequest, CreateLogStreamRequest, DataAlreadyAcceptedException, DeleteDestinationRequest, DeleteLogGroupRequest, DeleteLogStreamRequest, DeleteMetricFilterRequest, DeleteQueryDefinitionRequest, DeleteQueryDefinitionResponse, DeleteResourcePolicyRequest, DeleteRetentionPolicyRequest, DeleteSubscriptionFilterRequest, DescribeDestinationsRequest, Destination, DescribeDestinationsResponse, ExportTaskStatusCode, DescribeExportTasksRequest, ExportTaskExecutionInfo, ExportTaskStatus, ExportTask, DescribeExportTasksResponse, DescribeLogGroupsRequest, LogGroup, DescribeLogGroupsResponse, OrderBy, DescribeLogStreamsRequest, LogStream, DescribeLogStreamsResponse, DescribeMetricFiltersRequest, MetricTransformation, MetricFilter, DescribeMetricFiltersResponse, QueryStatus, DescribeQueriesRequest, QueryInfo, DescribeQueriesResponse, DescribeQueryDefinitionsRequest, QueryDefinition, DescribeQueryDefinitionsResponse, DescribeResourcePoliciesRequest, ResourcePolicy, DescribeResourcePoliciesResponse, DescribeSubscriptionFiltersRequest, Distribution, SubscriptionFilter, DescribeSubscriptionFiltersResponse, DisassociateKmsKeyRequest, FilteredLogEvent, FilterLogEventsRequest, SearchedLogStream, FilterLogEventsResponse, GetLogEventsRequest, OutputLogEvent, GetLogEventsResponse, GetLogGroupFieldsRequest, LogGroupField, GetLogGroupFieldsResponse, GetLogRecordRequest, GetLogRecordResponse, GetQueryResultsRequest, ResultField, QueryStatistics, GetQueryResultsResponse, InputLogEvent, InvalidSequenceTokenException, ListTagsLogGroupRequest, ListTagsLogGroupResponse, PutDestinationRequest, PutDestinationResponse, PutDestinationPolicyRequest, PutLogEventsRequest, RejectedLogEventsInfo, PutLogEventsResponse, UnrecognizedClientException, PutMetricFilterRequest, PutQueryDefinitionRequest, PutQueryDefinitionResponse, PutResourcePolicyRequest, PutResourcePolicyResponse, PutRetentionPolicyRequest, PutSubscriptionFilterRequest, QueryCompileErrorLocation, QueryCompileError, MalformedQueryException, StartQueryRequest, StartQueryResponse, StopQueryRequest, StopQueryResponse, TagLogGroupRequest, TestMetricFilterRequest, MetricFilterMatchRecord, TestMetricFilterResponse, UntagLogGroupRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AssociateKmsKeyRequest\", function() { return AssociateKmsKeyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return InvalidParameterException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OperationAbortedException\", function() { return OperationAbortedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceUnavailableException\", function() { return ServiceUnavailableException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CancelExportTaskRequest\", function() { return CancelExportTaskRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidOperationException\", function() { return InvalidOperationException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateExportTaskRequest\", function() { return CreateExportTaskRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateExportTaskResponse\", function() { return CreateExportTaskResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return LimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceAlreadyExistsException\", function() { return ResourceAlreadyExistsException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateLogGroupRequest\", function() { return CreateLogGroupRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateLogStreamRequest\", function() { return CreateLogStreamRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DataAlreadyAcceptedException\", function() { return DataAlreadyAcceptedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteDestinationRequest\", function() { return DeleteDestinationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogGroupRequest\", function() { return DeleteLogGroupRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteLogStreamRequest\", function() { return DeleteLogStreamRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteMetricFilterRequest\", function() { return DeleteMetricFilterRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteQueryDefinitionRequest\", function() { return DeleteQueryDefinitionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteQueryDefinitionResponse\", function() { return DeleteQueryDefinitionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteResourcePolicyRequest\", function() { return DeleteResourcePolicyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteRetentionPolicyRequest\", function() { return DeleteRetentionPolicyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSubscriptionFilterRequest\", function() { return DeleteSubscriptionFilterRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDestinationsRequest\", function() { return DescribeDestinationsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Destination\", function() { return Destination; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDestinationsResponse\", function() { return DescribeDestinationsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExportTaskStatusCode\", function() { return ExportTaskStatusCode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeExportTasksRequest\", function() { return DescribeExportTasksRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExportTaskExecutionInfo\", function() { return ExportTaskExecutionInfo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExportTaskStatus\", function() { return ExportTaskStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExportTask\", function() { return ExportTask; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeExportTasksResponse\", function() { return DescribeExportTasksResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogGroupsRequest\", function() { return DescribeLogGroupsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LogGroup\", function() { return LogGroup; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogGroupsResponse\", function() { return DescribeLogGroupsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OrderBy\", function() { return OrderBy; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogStreamsRequest\", function() { return DescribeLogStreamsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LogStream\", function() { return LogStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeLogStreamsResponse\", function() { return DescribeLogStreamsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeMetricFiltersRequest\", function() { return DescribeMetricFiltersRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MetricTransformation\", function() { return MetricTransformation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MetricFilter\", function() { return MetricFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeMetricFiltersResponse\", function() { return DescribeMetricFiltersResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QueryStatus\", function() { return QueryStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueriesRequest\", function() { return DescribeQueriesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QueryInfo\", function() { return QueryInfo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueriesResponse\", function() { return DescribeQueriesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueryDefinitionsRequest\", function() { return DescribeQueryDefinitionsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QueryDefinition\", function() { return QueryDefinition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeQueryDefinitionsResponse\", function() { return DescribeQueryDefinitionsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeResourcePoliciesRequest\", function() { return DescribeResourcePoliciesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourcePolicy\", function() { return ResourcePolicy; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeResourcePoliciesResponse\", function() { return DescribeResourcePoliciesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeSubscriptionFiltersRequest\", function() { return DescribeSubscriptionFiltersRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Distribution\", function() { return Distribution; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SubscriptionFilter\", function() { return SubscriptionFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeSubscriptionFiltersResponse\", function() { return DescribeSubscriptionFiltersResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DisassociateKmsKeyRequest\", function() { return DisassociateKmsKeyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FilteredLogEvent\", function() { return FilteredLogEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FilterLogEventsRequest\", function() { return FilterLogEventsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchedLogStream\", function() { return SearchedLogStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FilterLogEventsResponse\", function() { return FilterLogEventsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLogEventsRequest\", function() { return GetLogEventsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OutputLogEvent\", function() { return OutputLogEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLogEventsResponse\", function() { return GetLogEventsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLogGroupFieldsRequest\", function() { return GetLogGroupFieldsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LogGroupField\", function() { return LogGroupField; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLogGroupFieldsResponse\", function() { return GetLogGroupFieldsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLogRecordRequest\", function() { return GetLogRecordRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLogRecordResponse\", function() { return GetLogRecordResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetQueryResultsRequest\", function() { return GetQueryResultsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResultField\", function() { return ResultField; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QueryStatistics\", function() { return QueryStatistics; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetQueryResultsResponse\", function() { return GetQueryResultsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InputLogEvent\", function() { return InputLogEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidSequenceTokenException\", function() { return InvalidSequenceTokenException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsLogGroupRequest\", function() { return ListTagsLogGroupRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsLogGroupResponse\", function() { return ListTagsLogGroupResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationRequest\", function() { return PutDestinationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationResponse\", function() { return PutDestinationResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutDestinationPolicyRequest\", function() { return PutDestinationPolicyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutLogEventsRequest\", function() { return PutLogEventsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RejectedLogEventsInfo\", function() { return RejectedLogEventsInfo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutLogEventsResponse\", function() { return PutLogEventsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnrecognizedClientException\", function() { return UnrecognizedClientException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutMetricFilterRequest\", function() { return PutMetricFilterRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutQueryDefinitionRequest\", function() { return PutQueryDefinitionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutQueryDefinitionResponse\", function() { return PutQueryDefinitionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutResourcePolicyRequest\", function() { return PutResourcePolicyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutResourcePolicyResponse\", function() { return PutResourcePolicyResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRetentionPolicyRequest\", function() { return PutRetentionPolicyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutSubscriptionFilterRequest\", function() { return PutSubscriptionFilterRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QueryCompileErrorLocation\", function() { return QueryCompileErrorLocation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QueryCompileError\", function() { return QueryCompileError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MalformedQueryException\", function() { return MalformedQueryException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartQueryRequest\", function() { return StartQueryRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartQueryResponse\", function() { return StartQueryResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopQueryRequest\", function() { return StopQueryRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopQueryResponse\", function() { return StopQueryResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagLogGroupRequest\", function() { return TagLogGroupRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TestMetricFilterRequest\", function() { return TestMetricFilterRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MetricFilterMatchRecord\", function() { return MetricFilterMatchRecord; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TestMetricFilterResponse\", function() { return TestMetricFilterResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagLogGroupRequest\", function() { return UntagLogGroupRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n\nvar AssociateKmsKeyRequest;\n(function (AssociateKmsKeyRequest) {\n AssociateKmsKeyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AssociateKmsKeyRequest || (AssociateKmsKeyRequest = {}));\nvar InvalidParameterException;\n(function (InvalidParameterException) {\n InvalidParameterException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidParameterException || (InvalidParameterException = {}));\nvar OperationAbortedException;\n(function (OperationAbortedException) {\n OperationAbortedException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OperationAbortedException || (OperationAbortedException = {}));\nvar ResourceNotFoundException;\n(function (ResourceNotFoundException) {\n ResourceNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceNotFoundException || (ResourceNotFoundException = {}));\nvar ServiceUnavailableException;\n(function (ServiceUnavailableException) {\n ServiceUnavailableException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ServiceUnavailableException || (ServiceUnavailableException = {}));\nvar CancelExportTaskRequest;\n(function (CancelExportTaskRequest) {\n CancelExportTaskRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CancelExportTaskRequest || (CancelExportTaskRequest = {}));\nvar InvalidOperationException;\n(function (InvalidOperationException) {\n InvalidOperationException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidOperationException || (InvalidOperationException = {}));\nvar CreateExportTaskRequest;\n(function (CreateExportTaskRequest) {\n CreateExportTaskRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateExportTaskRequest || (CreateExportTaskRequest = {}));\nvar CreateExportTaskResponse;\n(function (CreateExportTaskResponse) {\n CreateExportTaskResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateExportTaskResponse || (CreateExportTaskResponse = {}));\nvar LimitExceededException;\n(function (LimitExceededException) {\n LimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LimitExceededException || (LimitExceededException = {}));\nvar ResourceAlreadyExistsException;\n(function (ResourceAlreadyExistsException) {\n ResourceAlreadyExistsException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceAlreadyExistsException || (ResourceAlreadyExistsException = {}));\nvar CreateLogGroupRequest;\n(function (CreateLogGroupRequest) {\n CreateLogGroupRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateLogGroupRequest || (CreateLogGroupRequest = {}));\nvar CreateLogStreamRequest;\n(function (CreateLogStreamRequest) {\n CreateLogStreamRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateLogStreamRequest || (CreateLogStreamRequest = {}));\nvar DataAlreadyAcceptedException;\n(function (DataAlreadyAcceptedException) {\n DataAlreadyAcceptedException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DataAlreadyAcceptedException || (DataAlreadyAcceptedException = {}));\nvar DeleteDestinationRequest;\n(function (DeleteDestinationRequest) {\n DeleteDestinationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteDestinationRequest || (DeleteDestinationRequest = {}));\nvar DeleteLogGroupRequest;\n(function (DeleteLogGroupRequest) {\n DeleteLogGroupRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteLogGroupRequest || (DeleteLogGroupRequest = {}));\nvar DeleteLogStreamRequest;\n(function (DeleteLogStreamRequest) {\n DeleteLogStreamRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteLogStreamRequest || (DeleteLogStreamRequest = {}));\nvar DeleteMetricFilterRequest;\n(function (DeleteMetricFilterRequest) {\n DeleteMetricFilterRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteMetricFilterRequest || (DeleteMetricFilterRequest = {}));\nvar DeleteQueryDefinitionRequest;\n(function (DeleteQueryDefinitionRequest) {\n DeleteQueryDefinitionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteQueryDefinitionRequest || (DeleteQueryDefinitionRequest = {}));\nvar DeleteQueryDefinitionResponse;\n(function (DeleteQueryDefinitionResponse) {\n DeleteQueryDefinitionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteQueryDefinitionResponse || (DeleteQueryDefinitionResponse = {}));\nvar DeleteResourcePolicyRequest;\n(function (DeleteResourcePolicyRequest) {\n DeleteResourcePolicyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteResourcePolicyRequest || (DeleteResourcePolicyRequest = {}));\nvar DeleteRetentionPolicyRequest;\n(function (DeleteRetentionPolicyRequest) {\n DeleteRetentionPolicyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteRetentionPolicyRequest || (DeleteRetentionPolicyRequest = {}));\nvar DeleteSubscriptionFilterRequest;\n(function (DeleteSubscriptionFilterRequest) {\n DeleteSubscriptionFilterRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteSubscriptionFilterRequest || (DeleteSubscriptionFilterRequest = {}));\nvar DescribeDestinationsRequest;\n(function (DescribeDestinationsRequest) {\n DescribeDestinationsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeDestinationsRequest || (DescribeDestinationsRequest = {}));\nvar Destination;\n(function (Destination) {\n Destination.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Destination || (Destination = {}));\nvar DescribeDestinationsResponse;\n(function (DescribeDestinationsResponse) {\n DescribeDestinationsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeDestinationsResponse || (DescribeDestinationsResponse = {}));\nvar ExportTaskStatusCode;\n(function (ExportTaskStatusCode) {\n ExportTaskStatusCode[\"CANCELLED\"] = \"CANCELLED\";\n ExportTaskStatusCode[\"COMPLETED\"] = \"COMPLETED\";\n ExportTaskStatusCode[\"FAILED\"] = \"FAILED\";\n ExportTaskStatusCode[\"PENDING\"] = \"PENDING\";\n ExportTaskStatusCode[\"PENDING_CANCEL\"] = \"PENDING_CANCEL\";\n ExportTaskStatusCode[\"RUNNING\"] = \"RUNNING\";\n})(ExportTaskStatusCode || (ExportTaskStatusCode = {}));\nvar DescribeExportTasksRequest;\n(function (DescribeExportTasksRequest) {\n DescribeExportTasksRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeExportTasksRequest || (DescribeExportTasksRequest = {}));\nvar ExportTaskExecutionInfo;\n(function (ExportTaskExecutionInfo) {\n ExportTaskExecutionInfo.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExportTaskExecutionInfo || (ExportTaskExecutionInfo = {}));\nvar ExportTaskStatus;\n(function (ExportTaskStatus) {\n ExportTaskStatus.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExportTaskStatus || (ExportTaskStatus = {}));\nvar ExportTask;\n(function (ExportTask) {\n ExportTask.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExportTask || (ExportTask = {}));\nvar DescribeExportTasksResponse;\n(function (DescribeExportTasksResponse) {\n DescribeExportTasksResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeExportTasksResponse || (DescribeExportTasksResponse = {}));\nvar DescribeLogGroupsRequest;\n(function (DescribeLogGroupsRequest) {\n DescribeLogGroupsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeLogGroupsRequest || (DescribeLogGroupsRequest = {}));\nvar LogGroup;\n(function (LogGroup) {\n LogGroup.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LogGroup || (LogGroup = {}));\nvar DescribeLogGroupsResponse;\n(function (DescribeLogGroupsResponse) {\n DescribeLogGroupsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeLogGroupsResponse || (DescribeLogGroupsResponse = {}));\nvar OrderBy;\n(function (OrderBy) {\n OrderBy[\"LastEventTime\"] = \"LastEventTime\";\n OrderBy[\"LogStreamName\"] = \"LogStreamName\";\n})(OrderBy || (OrderBy = {}));\nvar DescribeLogStreamsRequest;\n(function (DescribeLogStreamsRequest) {\n DescribeLogStreamsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeLogStreamsRequest || (DescribeLogStreamsRequest = {}));\nvar LogStream;\n(function (LogStream) {\n LogStream.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LogStream || (LogStream = {}));\nvar DescribeLogStreamsResponse;\n(function (DescribeLogStreamsResponse) {\n DescribeLogStreamsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeLogStreamsResponse || (DescribeLogStreamsResponse = {}));\nvar DescribeMetricFiltersRequest;\n(function (DescribeMetricFiltersRequest) {\n DescribeMetricFiltersRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeMetricFiltersRequest || (DescribeMetricFiltersRequest = {}));\nvar MetricTransformation;\n(function (MetricTransformation) {\n MetricTransformation.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MetricTransformation || (MetricTransformation = {}));\nvar MetricFilter;\n(function (MetricFilter) {\n MetricFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MetricFilter || (MetricFilter = {}));\nvar DescribeMetricFiltersResponse;\n(function (DescribeMetricFiltersResponse) {\n DescribeMetricFiltersResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeMetricFiltersResponse || (DescribeMetricFiltersResponse = {}));\nvar QueryStatus;\n(function (QueryStatus) {\n QueryStatus[\"Cancelled\"] = \"Cancelled\";\n QueryStatus[\"Complete\"] = \"Complete\";\n QueryStatus[\"Failed\"] = \"Failed\";\n QueryStatus[\"Running\"] = \"Running\";\n QueryStatus[\"Scheduled\"] = \"Scheduled\";\n})(QueryStatus || (QueryStatus = {}));\nvar DescribeQueriesRequest;\n(function (DescribeQueriesRequest) {\n DescribeQueriesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeQueriesRequest || (DescribeQueriesRequest = {}));\nvar QueryInfo;\n(function (QueryInfo) {\n QueryInfo.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(QueryInfo || (QueryInfo = {}));\nvar DescribeQueriesResponse;\n(function (DescribeQueriesResponse) {\n DescribeQueriesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeQueriesResponse || (DescribeQueriesResponse = {}));\nvar DescribeQueryDefinitionsRequest;\n(function (DescribeQueryDefinitionsRequest) {\n DescribeQueryDefinitionsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeQueryDefinitionsRequest || (DescribeQueryDefinitionsRequest = {}));\nvar QueryDefinition;\n(function (QueryDefinition) {\n QueryDefinition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(QueryDefinition || (QueryDefinition = {}));\nvar DescribeQueryDefinitionsResponse;\n(function (DescribeQueryDefinitionsResponse) {\n DescribeQueryDefinitionsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeQueryDefinitionsResponse || (DescribeQueryDefinitionsResponse = {}));\nvar DescribeResourcePoliciesRequest;\n(function (DescribeResourcePoliciesRequest) {\n DescribeResourcePoliciesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeResourcePoliciesRequest || (DescribeResourcePoliciesRequest = {}));\nvar ResourcePolicy;\n(function (ResourcePolicy) {\n ResourcePolicy.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourcePolicy || (ResourcePolicy = {}));\nvar DescribeResourcePoliciesResponse;\n(function (DescribeResourcePoliciesResponse) {\n DescribeResourcePoliciesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeResourcePoliciesResponse || (DescribeResourcePoliciesResponse = {}));\nvar DescribeSubscriptionFiltersRequest;\n(function (DescribeSubscriptionFiltersRequest) {\n DescribeSubscriptionFiltersRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeSubscriptionFiltersRequest || (DescribeSubscriptionFiltersRequest = {}));\nvar Distribution;\n(function (Distribution) {\n Distribution[\"ByLogStream\"] = \"ByLogStream\";\n Distribution[\"Random\"] = \"Random\";\n})(Distribution || (Distribution = {}));\nvar SubscriptionFilter;\n(function (SubscriptionFilter) {\n SubscriptionFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SubscriptionFilter || (SubscriptionFilter = {}));\nvar DescribeSubscriptionFiltersResponse;\n(function (DescribeSubscriptionFiltersResponse) {\n DescribeSubscriptionFiltersResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeSubscriptionFiltersResponse || (DescribeSubscriptionFiltersResponse = {}));\nvar DisassociateKmsKeyRequest;\n(function (DisassociateKmsKeyRequest) {\n DisassociateKmsKeyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DisassociateKmsKeyRequest || (DisassociateKmsKeyRequest = {}));\nvar FilteredLogEvent;\n(function (FilteredLogEvent) {\n FilteredLogEvent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FilteredLogEvent || (FilteredLogEvent = {}));\nvar FilterLogEventsRequest;\n(function (FilterLogEventsRequest) {\n FilterLogEventsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FilterLogEventsRequest || (FilterLogEventsRequest = {}));\nvar SearchedLogStream;\n(function (SearchedLogStream) {\n SearchedLogStream.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SearchedLogStream || (SearchedLogStream = {}));\nvar FilterLogEventsResponse;\n(function (FilterLogEventsResponse) {\n FilterLogEventsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FilterLogEventsResponse || (FilterLogEventsResponse = {}));\nvar GetLogEventsRequest;\n(function (GetLogEventsRequest) {\n GetLogEventsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetLogEventsRequest || (GetLogEventsRequest = {}));\nvar OutputLogEvent;\n(function (OutputLogEvent) {\n OutputLogEvent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OutputLogEvent || (OutputLogEvent = {}));\nvar GetLogEventsResponse;\n(function (GetLogEventsResponse) {\n GetLogEventsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetLogEventsResponse || (GetLogEventsResponse = {}));\nvar GetLogGroupFieldsRequest;\n(function (GetLogGroupFieldsRequest) {\n GetLogGroupFieldsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetLogGroupFieldsRequest || (GetLogGroupFieldsRequest = {}));\nvar LogGroupField;\n(function (LogGroupField) {\n LogGroupField.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LogGroupField || (LogGroupField = {}));\nvar GetLogGroupFieldsResponse;\n(function (GetLogGroupFieldsResponse) {\n GetLogGroupFieldsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetLogGroupFieldsResponse || (GetLogGroupFieldsResponse = {}));\nvar GetLogRecordRequest;\n(function (GetLogRecordRequest) {\n GetLogRecordRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetLogRecordRequest || (GetLogRecordRequest = {}));\nvar GetLogRecordResponse;\n(function (GetLogRecordResponse) {\n GetLogRecordResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetLogRecordResponse || (GetLogRecordResponse = {}));\nvar GetQueryResultsRequest;\n(function (GetQueryResultsRequest) {\n GetQueryResultsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetQueryResultsRequest || (GetQueryResultsRequest = {}));\nvar ResultField;\n(function (ResultField) {\n ResultField.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResultField || (ResultField = {}));\nvar QueryStatistics;\n(function (QueryStatistics) {\n QueryStatistics.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(QueryStatistics || (QueryStatistics = {}));\nvar GetQueryResultsResponse;\n(function (GetQueryResultsResponse) {\n GetQueryResultsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetQueryResultsResponse || (GetQueryResultsResponse = {}));\nvar InputLogEvent;\n(function (InputLogEvent) {\n InputLogEvent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InputLogEvent || (InputLogEvent = {}));\nvar InvalidSequenceTokenException;\n(function (InvalidSequenceTokenException) {\n InvalidSequenceTokenException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidSequenceTokenException || (InvalidSequenceTokenException = {}));\nvar ListTagsLogGroupRequest;\n(function (ListTagsLogGroupRequest) {\n ListTagsLogGroupRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsLogGroupRequest || (ListTagsLogGroupRequest = {}));\nvar ListTagsLogGroupResponse;\n(function (ListTagsLogGroupResponse) {\n ListTagsLogGroupResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsLogGroupResponse || (ListTagsLogGroupResponse = {}));\nvar PutDestinationRequest;\n(function (PutDestinationRequest) {\n PutDestinationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutDestinationRequest || (PutDestinationRequest = {}));\nvar PutDestinationResponse;\n(function (PutDestinationResponse) {\n PutDestinationResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutDestinationResponse || (PutDestinationResponse = {}));\nvar PutDestinationPolicyRequest;\n(function (PutDestinationPolicyRequest) {\n PutDestinationPolicyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutDestinationPolicyRequest || (PutDestinationPolicyRequest = {}));\nvar PutLogEventsRequest;\n(function (PutLogEventsRequest) {\n PutLogEventsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutLogEventsRequest || (PutLogEventsRequest = {}));\nvar RejectedLogEventsInfo;\n(function (RejectedLogEventsInfo) {\n RejectedLogEventsInfo.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RejectedLogEventsInfo || (RejectedLogEventsInfo = {}));\nvar PutLogEventsResponse;\n(function (PutLogEventsResponse) {\n PutLogEventsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutLogEventsResponse || (PutLogEventsResponse = {}));\nvar UnrecognizedClientException;\n(function (UnrecognizedClientException) {\n UnrecognizedClientException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnrecognizedClientException || (UnrecognizedClientException = {}));\nvar PutMetricFilterRequest;\n(function (PutMetricFilterRequest) {\n PutMetricFilterRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutMetricFilterRequest || (PutMetricFilterRequest = {}));\nvar PutQueryDefinitionRequest;\n(function (PutQueryDefinitionRequest) {\n PutQueryDefinitionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutQueryDefinitionRequest || (PutQueryDefinitionRequest = {}));\nvar PutQueryDefinitionResponse;\n(function (PutQueryDefinitionResponse) {\n PutQueryDefinitionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutQueryDefinitionResponse || (PutQueryDefinitionResponse = {}));\nvar PutResourcePolicyRequest;\n(function (PutResourcePolicyRequest) {\n PutResourcePolicyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutResourcePolicyRequest || (PutResourcePolicyRequest = {}));\nvar PutResourcePolicyResponse;\n(function (PutResourcePolicyResponse) {\n PutResourcePolicyResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutResourcePolicyResponse || (PutResourcePolicyResponse = {}));\nvar PutRetentionPolicyRequest;\n(function (PutRetentionPolicyRequest) {\n PutRetentionPolicyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRetentionPolicyRequest || (PutRetentionPolicyRequest = {}));\nvar PutSubscriptionFilterRequest;\n(function (PutSubscriptionFilterRequest) {\n PutSubscriptionFilterRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutSubscriptionFilterRequest || (PutSubscriptionFilterRequest = {}));\nvar QueryCompileErrorLocation;\n(function (QueryCompileErrorLocation) {\n QueryCompileErrorLocation.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(QueryCompileErrorLocation || (QueryCompileErrorLocation = {}));\nvar QueryCompileError;\n(function (QueryCompileError) {\n QueryCompileError.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(QueryCompileError || (QueryCompileError = {}));\nvar MalformedQueryException;\n(function (MalformedQueryException) {\n MalformedQueryException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MalformedQueryException || (MalformedQueryException = {}));\nvar StartQueryRequest;\n(function (StartQueryRequest) {\n StartQueryRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartQueryRequest || (StartQueryRequest = {}));\nvar StartQueryResponse;\n(function (StartQueryResponse) {\n StartQueryResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartQueryResponse || (StartQueryResponse = {}));\nvar StopQueryRequest;\n(function (StopQueryRequest) {\n StopQueryRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopQueryRequest || (StopQueryRequest = {}));\nvar StopQueryResponse;\n(function (StopQueryResponse) {\n StopQueryResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopQueryResponse || (StopQueryResponse = {}));\nvar TagLogGroupRequest;\n(function (TagLogGroupRequest) {\n TagLogGroupRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TagLogGroupRequest || (TagLogGroupRequest = {}));\nvar TestMetricFilterRequest;\n(function (TestMetricFilterRequest) {\n TestMetricFilterRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TestMetricFilterRequest || (TestMetricFilterRequest = {}));\nvar MetricFilterMatchRecord;\n(function (MetricFilterMatchRecord) {\n MetricFilterMatchRecord.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MetricFilterMatchRecord || (MetricFilterMatchRecord = {}));\nvar TestMetricFilterResponse;\n(function (TestMetricFilterResponse) {\n TestMetricFilterResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TestMetricFilterResponse || (TestMetricFilterResponse = {}));\nvar UntagLogGroupRequest;\n(function (UntagLogGroupRequest) {\n UntagLogGroupRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UntagLogGroupRequest || (UntagLogGroupRequest = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/package.json": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/package.json ***! \***************************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-cloudwatch-logs\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Cloudwatch Logs Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cloudwatch-logs\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-cloudwatch-logs\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeDestinationsPaginator.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeDestinationsPaginator.js ***! \**********************************************************************************************************/ /*! exports provided: paginateDescribeDestinations */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeDestinations\", function() { return paginateDescribeDestinations; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../CloudWatchLogs */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js\");\n/* harmony import */ var _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../CloudWatchLogsClient */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js\");\n/* harmony import */ var _commands_DescribeDestinationsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/DescribeDestinationsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeDestinationsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_DescribeDestinationsCommand__WEBPACK_IMPORTED_MODULE_3__[\"DescribeDestinationsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.describeDestinations.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateDescribeDestinations(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateDescribeDestinations_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.nextToken = token;\n input[\"limit\"] = config.pageSize;\n if (!(config.client instanceof _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__[\"CloudWatchLogs\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__[\"CloudWatchLogsClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected CloudWatchLogs | CloudWatchLogsClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.nextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=DescribeDestinationsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeDestinationsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeLogGroupsPaginator.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeLogGroupsPaginator.js ***! \*******************************************************************************************************/ /*! exports provided: paginateDescribeLogGroups */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeLogGroups\", function() { return paginateDescribeLogGroups; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../CloudWatchLogs */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js\");\n/* harmony import */ var _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../CloudWatchLogsClient */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js\");\n/* harmony import */ var _commands_DescribeLogGroupsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/DescribeLogGroupsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogGroupsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_DescribeLogGroupsCommand__WEBPACK_IMPORTED_MODULE_3__[\"DescribeLogGroupsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.describeLogGroups.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateDescribeLogGroups(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateDescribeLogGroups_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.nextToken = token;\n input[\"limit\"] = config.pageSize;\n if (!(config.client instanceof _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__[\"CloudWatchLogs\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__[\"CloudWatchLogsClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected CloudWatchLogs | CloudWatchLogsClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.nextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=DescribeLogGroupsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeLogGroupsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeLogStreamsPaginator.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeLogStreamsPaginator.js ***! \********************************************************************************************************/ /*! exports provided: paginateDescribeLogStreams */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeLogStreams\", function() { return paginateDescribeLogStreams; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../CloudWatchLogs */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js\");\n/* harmony import */ var _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../CloudWatchLogsClient */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js\");\n/* harmony import */ var _commands_DescribeLogStreamsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/DescribeLogStreamsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeLogStreamsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_DescribeLogStreamsCommand__WEBPACK_IMPORTED_MODULE_3__[\"DescribeLogStreamsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.describeLogStreams.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateDescribeLogStreams(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateDescribeLogStreams_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.nextToken = token;\n input[\"limit\"] = config.pageSize;\n if (!(config.client instanceof _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__[\"CloudWatchLogs\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__[\"CloudWatchLogsClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected CloudWatchLogs | CloudWatchLogsClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.nextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=DescribeLogStreamsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeLogStreamsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeMetricFiltersPaginator.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeMetricFiltersPaginator.js ***! \***********************************************************************************************************/ /*! exports provided: paginateDescribeMetricFilters */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeMetricFilters\", function() { return paginateDescribeMetricFilters; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../CloudWatchLogs */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js\");\n/* harmony import */ var _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../CloudWatchLogsClient */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js\");\n/* harmony import */ var _commands_DescribeMetricFiltersCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/DescribeMetricFiltersCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeMetricFiltersCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_DescribeMetricFiltersCommand__WEBPACK_IMPORTED_MODULE_3__[\"DescribeMetricFiltersCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.describeMetricFilters.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateDescribeMetricFilters(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateDescribeMetricFilters_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.nextToken = token;\n input[\"limit\"] = config.pageSize;\n if (!(config.client instanceof _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__[\"CloudWatchLogs\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__[\"CloudWatchLogsClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected CloudWatchLogs | CloudWatchLogsClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.nextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=DescribeMetricFiltersPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeMetricFiltersPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeSubscriptionFiltersPaginator.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeSubscriptionFiltersPaginator.js ***! \*****************************************************************************************************************/ /*! exports provided: paginateDescribeSubscriptionFilters */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeSubscriptionFilters\", function() { return paginateDescribeSubscriptionFilters; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../CloudWatchLogs */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js\");\n/* harmony import */ var _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../CloudWatchLogsClient */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js\");\n/* harmony import */ var _commands_DescribeSubscriptionFiltersCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/DescribeSubscriptionFiltersCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/DescribeSubscriptionFiltersCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_DescribeSubscriptionFiltersCommand__WEBPACK_IMPORTED_MODULE_3__[\"DescribeSubscriptionFiltersCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.describeSubscriptionFilters.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateDescribeSubscriptionFilters(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateDescribeSubscriptionFilters_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.nextToken = token;\n input[\"limit\"] = config.pageSize;\n if (!(config.client instanceof _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__[\"CloudWatchLogs\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__[\"CloudWatchLogsClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected CloudWatchLogs | CloudWatchLogsClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.nextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=DescribeSubscriptionFiltersPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/DescribeSubscriptionFiltersPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/FilterLogEventsPaginator.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/FilterLogEventsPaginator.js ***! \*****************************************************************************************************/ /*! exports provided: paginateFilterLogEvents */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateFilterLogEvents\", function() { return paginateFilterLogEvents; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../CloudWatchLogs */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js\");\n/* harmony import */ var _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../CloudWatchLogsClient */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js\");\n/* harmony import */ var _commands_FilterLogEventsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/FilterLogEventsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/FilterLogEventsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_FilterLogEventsCommand__WEBPACK_IMPORTED_MODULE_3__[\"FilterLogEventsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.filterLogEvents.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateFilterLogEvents(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateFilterLogEvents_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.nextToken = token;\n input[\"limit\"] = config.pageSize;\n if (!(config.client instanceof _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__[\"CloudWatchLogs\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__[\"CloudWatchLogsClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected CloudWatchLogs | CloudWatchLogsClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.nextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=FilterLogEventsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/FilterLogEventsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/GetLogEventsPaginator.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/GetLogEventsPaginator.js ***! \**************************************************************************************************/ /*! exports provided: paginateGetLogEvents */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetLogEvents\", function() { return paginateGetLogEvents; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../CloudWatchLogs */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogs.js\");\n/* harmony import */ var _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../CloudWatchLogsClient */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/CloudWatchLogsClient.js\");\n/* harmony import */ var _commands_GetLogEventsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/GetLogEventsCommand */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/commands/GetLogEventsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_GetLogEventsCommand__WEBPACK_IMPORTED_MODULE_3__[\"GetLogEventsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.getLogEvents.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetLogEvents(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetLogEvents_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.nextToken = token;\n input[\"limit\"] = config.pageSize;\n if (!(config.client instanceof _CloudWatchLogs__WEBPACK_IMPORTED_MODULE_1__[\"CloudWatchLogs\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _CloudWatchLogsClient__WEBPACK_IMPORTED_MODULE_2__[\"CloudWatchLogsClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected CloudWatchLogs | CloudWatchLogsClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.nextForwardToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=GetLogEventsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/GetLogEventsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/Interfaces.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/Interfaces.js ***! \***************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=Interfaces.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/pagination/Interfaces.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js ***! \***************************************************************************************/ /*! exports provided: serializeAws_json1_1AssociateKmsKeyCommand, serializeAws_json1_1CancelExportTaskCommand, serializeAws_json1_1CreateExportTaskCommand, serializeAws_json1_1CreateLogGroupCommand, serializeAws_json1_1CreateLogStreamCommand, serializeAws_json1_1DeleteDestinationCommand, serializeAws_json1_1DeleteLogGroupCommand, serializeAws_json1_1DeleteLogStreamCommand, serializeAws_json1_1DeleteMetricFilterCommand, serializeAws_json1_1DeleteQueryDefinitionCommand, serializeAws_json1_1DeleteResourcePolicyCommand, serializeAws_json1_1DeleteRetentionPolicyCommand, serializeAws_json1_1DeleteSubscriptionFilterCommand, serializeAws_json1_1DescribeDestinationsCommand, serializeAws_json1_1DescribeExportTasksCommand, serializeAws_json1_1DescribeLogGroupsCommand, serializeAws_json1_1DescribeLogStreamsCommand, serializeAws_json1_1DescribeMetricFiltersCommand, serializeAws_json1_1DescribeQueriesCommand, serializeAws_json1_1DescribeQueryDefinitionsCommand, serializeAws_json1_1DescribeResourcePoliciesCommand, serializeAws_json1_1DescribeSubscriptionFiltersCommand, serializeAws_json1_1DisassociateKmsKeyCommand, serializeAws_json1_1FilterLogEventsCommand, serializeAws_json1_1GetLogEventsCommand, serializeAws_json1_1GetLogGroupFieldsCommand, serializeAws_json1_1GetLogRecordCommand, serializeAws_json1_1GetQueryResultsCommand, serializeAws_json1_1ListTagsLogGroupCommand, serializeAws_json1_1PutDestinationCommand, serializeAws_json1_1PutDestinationPolicyCommand, serializeAws_json1_1PutLogEventsCommand, serializeAws_json1_1PutMetricFilterCommand, serializeAws_json1_1PutQueryDefinitionCommand, serializeAws_json1_1PutResourcePolicyCommand, serializeAws_json1_1PutRetentionPolicyCommand, serializeAws_json1_1PutSubscriptionFilterCommand, serializeAws_json1_1StartQueryCommand, serializeAws_json1_1StopQueryCommand, serializeAws_json1_1TagLogGroupCommand, serializeAws_json1_1TestMetricFilterCommand, serializeAws_json1_1UntagLogGroupCommand, deserializeAws_json1_1AssociateKmsKeyCommand, deserializeAws_json1_1CancelExportTaskCommand, deserializeAws_json1_1CreateExportTaskCommand, deserializeAws_json1_1CreateLogGroupCommand, deserializeAws_json1_1CreateLogStreamCommand, deserializeAws_json1_1DeleteDestinationCommand, deserializeAws_json1_1DeleteLogGroupCommand, deserializeAws_json1_1DeleteLogStreamCommand, deserializeAws_json1_1DeleteMetricFilterCommand, deserializeAws_json1_1DeleteQueryDefinitionCommand, deserializeAws_json1_1DeleteResourcePolicyCommand, deserializeAws_json1_1DeleteRetentionPolicyCommand, deserializeAws_json1_1DeleteSubscriptionFilterCommand, deserializeAws_json1_1DescribeDestinationsCommand, deserializeAws_json1_1DescribeExportTasksCommand, deserializeAws_json1_1DescribeLogGroupsCommand, deserializeAws_json1_1DescribeLogStreamsCommand, deserializeAws_json1_1DescribeMetricFiltersCommand, deserializeAws_json1_1DescribeQueriesCommand, deserializeAws_json1_1DescribeQueryDefinitionsCommand, deserializeAws_json1_1DescribeResourcePoliciesCommand, deserializeAws_json1_1DescribeSubscriptionFiltersCommand, deserializeAws_json1_1DisassociateKmsKeyCommand, deserializeAws_json1_1FilterLogEventsCommand, deserializeAws_json1_1GetLogEventsCommand, deserializeAws_json1_1GetLogGroupFieldsCommand, deserializeAws_json1_1GetLogRecordCommand, deserializeAws_json1_1GetQueryResultsCommand, deserializeAws_json1_1ListTagsLogGroupCommand, deserializeAws_json1_1PutDestinationCommand, deserializeAws_json1_1PutDestinationPolicyCommand, deserializeAws_json1_1PutLogEventsCommand, deserializeAws_json1_1PutMetricFilterCommand, deserializeAws_json1_1PutQueryDefinitionCommand, deserializeAws_json1_1PutResourcePolicyCommand, deserializeAws_json1_1PutRetentionPolicyCommand, deserializeAws_json1_1PutSubscriptionFilterCommand, deserializeAws_json1_1StartQueryCommand, deserializeAws_json1_1StopQueryCommand, deserializeAws_json1_1TagLogGroupCommand, deserializeAws_json1_1TestMetricFilterCommand, deserializeAws_json1_1UntagLogGroupCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1AssociateKmsKeyCommand\", function() { return serializeAws_json1_1AssociateKmsKeyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CancelExportTaskCommand\", function() { return serializeAws_json1_1CancelExportTaskCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateExportTaskCommand\", function() { return serializeAws_json1_1CreateExportTaskCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateLogGroupCommand\", function() { return serializeAws_json1_1CreateLogGroupCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateLogStreamCommand\", function() { return serializeAws_json1_1CreateLogStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteDestinationCommand\", function() { return serializeAws_json1_1DeleteDestinationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteLogGroupCommand\", function() { return serializeAws_json1_1DeleteLogGroupCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteLogStreamCommand\", function() { return serializeAws_json1_1DeleteLogStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteMetricFilterCommand\", function() { return serializeAws_json1_1DeleteMetricFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteQueryDefinitionCommand\", function() { return serializeAws_json1_1DeleteQueryDefinitionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteResourcePolicyCommand\", function() { return serializeAws_json1_1DeleteResourcePolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteRetentionPolicyCommand\", function() { return serializeAws_json1_1DeleteRetentionPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteSubscriptionFilterCommand\", function() { return serializeAws_json1_1DeleteSubscriptionFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeDestinationsCommand\", function() { return serializeAws_json1_1DescribeDestinationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeExportTasksCommand\", function() { return serializeAws_json1_1DescribeExportTasksCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeLogGroupsCommand\", function() { return serializeAws_json1_1DescribeLogGroupsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeLogStreamsCommand\", function() { return serializeAws_json1_1DescribeLogStreamsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeMetricFiltersCommand\", function() { return serializeAws_json1_1DescribeMetricFiltersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeQueriesCommand\", function() { return serializeAws_json1_1DescribeQueriesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeQueryDefinitionsCommand\", function() { return serializeAws_json1_1DescribeQueryDefinitionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeResourcePoliciesCommand\", function() { return serializeAws_json1_1DescribeResourcePoliciesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeSubscriptionFiltersCommand\", function() { return serializeAws_json1_1DescribeSubscriptionFiltersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DisassociateKmsKeyCommand\", function() { return serializeAws_json1_1DisassociateKmsKeyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1FilterLogEventsCommand\", function() { return serializeAws_json1_1FilterLogEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetLogEventsCommand\", function() { return serializeAws_json1_1GetLogEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetLogGroupFieldsCommand\", function() { return serializeAws_json1_1GetLogGroupFieldsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetLogRecordCommand\", function() { return serializeAws_json1_1GetLogRecordCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetQueryResultsCommand\", function() { return serializeAws_json1_1GetQueryResultsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListTagsLogGroupCommand\", function() { return serializeAws_json1_1ListTagsLogGroupCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutDestinationCommand\", function() { return serializeAws_json1_1PutDestinationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutDestinationPolicyCommand\", function() { return serializeAws_json1_1PutDestinationPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutLogEventsCommand\", function() { return serializeAws_json1_1PutLogEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutMetricFilterCommand\", function() { return serializeAws_json1_1PutMetricFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutQueryDefinitionCommand\", function() { return serializeAws_json1_1PutQueryDefinitionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutResourcePolicyCommand\", function() { return serializeAws_json1_1PutResourcePolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutRetentionPolicyCommand\", function() { return serializeAws_json1_1PutRetentionPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutSubscriptionFilterCommand\", function() { return serializeAws_json1_1PutSubscriptionFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartQueryCommand\", function() { return serializeAws_json1_1StartQueryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopQueryCommand\", function() { return serializeAws_json1_1StopQueryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1TagLogGroupCommand\", function() { return serializeAws_json1_1TagLogGroupCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1TestMetricFilterCommand\", function() { return serializeAws_json1_1TestMetricFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UntagLogGroupCommand\", function() { return serializeAws_json1_1UntagLogGroupCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1AssociateKmsKeyCommand\", function() { return deserializeAws_json1_1AssociateKmsKeyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CancelExportTaskCommand\", function() { return deserializeAws_json1_1CancelExportTaskCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateExportTaskCommand\", function() { return deserializeAws_json1_1CreateExportTaskCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateLogGroupCommand\", function() { return deserializeAws_json1_1CreateLogGroupCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateLogStreamCommand\", function() { return deserializeAws_json1_1CreateLogStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteDestinationCommand\", function() { return deserializeAws_json1_1DeleteDestinationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteLogGroupCommand\", function() { return deserializeAws_json1_1DeleteLogGroupCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteLogStreamCommand\", function() { return deserializeAws_json1_1DeleteLogStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteMetricFilterCommand\", function() { return deserializeAws_json1_1DeleteMetricFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteQueryDefinitionCommand\", function() { return deserializeAws_json1_1DeleteQueryDefinitionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteResourcePolicyCommand\", function() { return deserializeAws_json1_1DeleteResourcePolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteRetentionPolicyCommand\", function() { return deserializeAws_json1_1DeleteRetentionPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteSubscriptionFilterCommand\", function() { return deserializeAws_json1_1DeleteSubscriptionFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeDestinationsCommand\", function() { return deserializeAws_json1_1DescribeDestinationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeExportTasksCommand\", function() { return deserializeAws_json1_1DescribeExportTasksCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeLogGroupsCommand\", function() { return deserializeAws_json1_1DescribeLogGroupsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeLogStreamsCommand\", function() { return deserializeAws_json1_1DescribeLogStreamsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeMetricFiltersCommand\", function() { return deserializeAws_json1_1DescribeMetricFiltersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeQueriesCommand\", function() { return deserializeAws_json1_1DescribeQueriesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeQueryDefinitionsCommand\", function() { return deserializeAws_json1_1DescribeQueryDefinitionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeResourcePoliciesCommand\", function() { return deserializeAws_json1_1DescribeResourcePoliciesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeSubscriptionFiltersCommand\", function() { return deserializeAws_json1_1DescribeSubscriptionFiltersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DisassociateKmsKeyCommand\", function() { return deserializeAws_json1_1DisassociateKmsKeyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1FilterLogEventsCommand\", function() { return deserializeAws_json1_1FilterLogEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetLogEventsCommand\", function() { return deserializeAws_json1_1GetLogEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetLogGroupFieldsCommand\", function() { return deserializeAws_json1_1GetLogGroupFieldsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetLogRecordCommand\", function() { return deserializeAws_json1_1GetLogRecordCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetQueryResultsCommand\", function() { return deserializeAws_json1_1GetQueryResultsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListTagsLogGroupCommand\", function() { return deserializeAws_json1_1ListTagsLogGroupCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutDestinationCommand\", function() { return deserializeAws_json1_1PutDestinationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutDestinationPolicyCommand\", function() { return deserializeAws_json1_1PutDestinationPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutLogEventsCommand\", function() { return deserializeAws_json1_1PutLogEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutMetricFilterCommand\", function() { return deserializeAws_json1_1PutMetricFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutQueryDefinitionCommand\", function() { return deserializeAws_json1_1PutQueryDefinitionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutResourcePolicyCommand\", function() { return deserializeAws_json1_1PutResourcePolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutRetentionPolicyCommand\", function() { return deserializeAws_json1_1PutRetentionPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutSubscriptionFilterCommand\", function() { return deserializeAws_json1_1PutSubscriptionFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartQueryCommand\", function() { return deserializeAws_json1_1StartQueryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopQueryCommand\", function() { return deserializeAws_json1_1StopQueryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1TagLogGroupCommand\", function() { return deserializeAws_json1_1TagLogGroupCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1TestMetricFilterCommand\", function() { return deserializeAws_json1_1TestMetricFilterCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UntagLogGroupCommand\", function() { return deserializeAws_json1_1UntagLogGroupCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\nvar serializeAws_json1_1AssociateKmsKeyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.AssociateKmsKey\",\n };\n body = JSON.stringify(serializeAws_json1_1AssociateKmsKeyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CancelExportTaskCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.CancelExportTask\",\n };\n body = JSON.stringify(serializeAws_json1_1CancelExportTaskRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateExportTaskCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.CreateExportTask\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateExportTaskRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateLogGroupCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.CreateLogGroup\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateLogGroupRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateLogStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.CreateLogStream\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateLogStreamRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteDestinationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DeleteDestination\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteDestinationRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteLogGroupCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DeleteLogGroup\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteLogGroupRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteLogStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DeleteLogStream\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteLogStreamRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteMetricFilterCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DeleteMetricFilter\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteMetricFilterRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteQueryDefinitionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DeleteQueryDefinition\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteQueryDefinitionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteResourcePolicyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DeleteResourcePolicy\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteResourcePolicyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteRetentionPolicyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DeleteRetentionPolicy\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteRetentionPolicyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteSubscriptionFilterCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DeleteSubscriptionFilter\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteSubscriptionFilterRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeDestinationsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DescribeDestinations\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeDestinationsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeExportTasksCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DescribeExportTasks\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeExportTasksRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeLogGroupsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DescribeLogGroups\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeLogGroupsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeLogStreamsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DescribeLogStreams\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeLogStreamsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeMetricFiltersCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DescribeMetricFilters\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeMetricFiltersRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeQueriesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DescribeQueries\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeQueriesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeQueryDefinitionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DescribeQueryDefinitions\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeQueryDefinitionsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeResourcePoliciesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DescribeResourcePolicies\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeResourcePoliciesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeSubscriptionFiltersCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DescribeSubscriptionFilters\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeSubscriptionFiltersRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DisassociateKmsKeyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.DisassociateKmsKey\",\n };\n body = JSON.stringify(serializeAws_json1_1DisassociateKmsKeyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1FilterLogEventsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.FilterLogEvents\",\n };\n body = JSON.stringify(serializeAws_json1_1FilterLogEventsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetLogEventsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.GetLogEvents\",\n };\n body = JSON.stringify(serializeAws_json1_1GetLogEventsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetLogGroupFieldsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.GetLogGroupFields\",\n };\n body = JSON.stringify(serializeAws_json1_1GetLogGroupFieldsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetLogRecordCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.GetLogRecord\",\n };\n body = JSON.stringify(serializeAws_json1_1GetLogRecordRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetQueryResultsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.GetQueryResults\",\n };\n body = JSON.stringify(serializeAws_json1_1GetQueryResultsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListTagsLogGroupCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.ListTagsLogGroup\",\n };\n body = JSON.stringify(serializeAws_json1_1ListTagsLogGroupRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutDestinationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.PutDestination\",\n };\n body = JSON.stringify(serializeAws_json1_1PutDestinationRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutDestinationPolicyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.PutDestinationPolicy\",\n };\n body = JSON.stringify(serializeAws_json1_1PutDestinationPolicyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutLogEventsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.PutLogEvents\",\n };\n body = JSON.stringify(serializeAws_json1_1PutLogEventsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutMetricFilterCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.PutMetricFilter\",\n };\n body = JSON.stringify(serializeAws_json1_1PutMetricFilterRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutQueryDefinitionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.PutQueryDefinition\",\n };\n body = JSON.stringify(serializeAws_json1_1PutQueryDefinitionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutResourcePolicyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.PutResourcePolicy\",\n };\n body = JSON.stringify(serializeAws_json1_1PutResourcePolicyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutRetentionPolicyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.PutRetentionPolicy\",\n };\n body = JSON.stringify(serializeAws_json1_1PutRetentionPolicyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutSubscriptionFilterCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.PutSubscriptionFilter\",\n };\n body = JSON.stringify(serializeAws_json1_1PutSubscriptionFilterRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartQueryCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.StartQuery\",\n };\n body = JSON.stringify(serializeAws_json1_1StartQueryRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopQueryCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.StopQuery\",\n };\n body = JSON.stringify(serializeAws_json1_1StopQueryRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1TagLogGroupCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.TagLogGroup\",\n };\n body = JSON.stringify(serializeAws_json1_1TagLogGroupRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1TestMetricFilterCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.TestMetricFilter\",\n };\n body = JSON.stringify(serializeAws_json1_1TestMetricFilterRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UntagLogGroupCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Logs_20140328.UntagLogGroup\",\n };\n body = JSON.stringify(serializeAws_json1_1UntagLogGroupRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar deserializeAws_json1_1AssociateKmsKeyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1AssociateKmsKeyCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1AssociateKmsKeyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CancelExportTaskCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CancelExportTaskCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CancelExportTaskCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidOperationException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidOperationException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidOperationExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateExportTaskCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateExportTaskCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateExportTaskResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateExportTaskCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#LimitExceededException\": return [3 /*break*/, 4];\n case \"OperationAbortedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 6];\n case \"ResourceAlreadyExistsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ResourceAlreadyExistsException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"ServiceUnavailableException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceAlreadyExistsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateLogGroupCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateLogGroupCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateLogGroupCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#LimitExceededException\": return [3 /*break*/, 4];\n case \"OperationAbortedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 6];\n case \"ResourceAlreadyExistsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ResourceAlreadyExistsException\": return [3 /*break*/, 8];\n case \"ServiceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceAlreadyExistsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateLogStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateLogStreamCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateLogStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceAlreadyExistsException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceAlreadyExistsException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceAlreadyExistsExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteDestinationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteDestinationCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteDestinationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteLogGroupCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteLogGroupCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteLogGroupCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteLogStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteLogStreamCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteLogStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteMetricFilterCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteMetricFilterCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteMetricFilterCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteQueryDefinitionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteQueryDefinitionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteQueryDefinitionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteQueryDefinitionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteResourcePolicyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteResourcePolicyCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteResourcePolicyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteRetentionPolicyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteRetentionPolicyCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteRetentionPolicyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteSubscriptionFilterCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteSubscriptionFilterCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteSubscriptionFilterCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDestinationsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeDestinationsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeDestinationsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDestinationsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ServiceUnavailableException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeExportTasksCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeExportTasksCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeExportTasksResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeExportTasksCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ServiceUnavailableException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeLogGroupsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeLogGroupsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeLogGroupsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeLogGroupsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ServiceUnavailableException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeLogStreamsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeLogStreamsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeLogStreamsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeLogStreamsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeMetricFiltersCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeMetricFiltersCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeMetricFiltersResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeMetricFiltersCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeQueriesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeQueriesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeQueriesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeQueriesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeQueryDefinitionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeQueryDefinitionsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeQueryDefinitionsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeQueryDefinitionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ServiceUnavailableException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeResourcePoliciesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeResourcePoliciesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeResourcePoliciesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeResourcePoliciesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ServiceUnavailableException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeSubscriptionFiltersCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeSubscriptionFiltersCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeSubscriptionFiltersResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeSubscriptionFiltersCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DisassociateKmsKeyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DisassociateKmsKeyCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DisassociateKmsKeyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1FilterLogEventsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1FilterLogEventsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1FilterLogEventsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1FilterLogEventsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetLogEventsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetLogEventsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetLogEventsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetLogEventsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetLogGroupFieldsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetLogGroupFieldsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetLogGroupFieldsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetLogGroupFieldsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetLogRecordCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetLogRecordCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetLogRecordResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetLogRecordCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetQueryResultsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetQueryResultsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetQueryResultsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetQueryResultsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsLogGroupCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListTagsLogGroupCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListTagsLogGroupResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsLogGroupCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ResourceNotFoundException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 2];\n case \"ServiceUnavailableException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutDestinationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutDestinationCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1PutDestinationResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutDestinationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutDestinationPolicyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutDestinationPolicyCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutDestinationPolicyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutLogEventsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutLogEventsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1PutLogEventsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutLogEventsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"DataAlreadyAcceptedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#DataAlreadyAcceptedException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 4];\n case \"InvalidSequenceTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#InvalidSequenceTokenException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"ServiceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 10];\n case \"UnrecognizedClientException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cloudwatchlogs#UnrecognizedClientException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1DataAlreadyAcceptedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidSequenceTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnrecognizedClientExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutMetricFilterCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutMetricFilterCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutMetricFilterCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#LimitExceededException\": return [3 /*break*/, 4];\n case \"OperationAbortedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"ServiceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutQueryDefinitionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutQueryDefinitionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1PutQueryDefinitionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutQueryDefinitionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutResourcePolicyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutResourcePolicyCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1PutResourcePolicyResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutResourcePolicyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#LimitExceededException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRetentionPolicyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutRetentionPolicyCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRetentionPolicyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"OperationAbortedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutSubscriptionFilterCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutSubscriptionFilterCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutSubscriptionFilterCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#LimitExceededException\": return [3 /*break*/, 4];\n case \"OperationAbortedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#OperationAbortedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"ServiceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1OperationAbortedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartQueryCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartQueryCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartQueryResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartQueryCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#LimitExceededException\": return [3 /*break*/, 4];\n case \"MalformedQueryException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#MalformedQueryException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"ServiceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1MalformedQueryExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopQueryCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopQueryCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopQueryResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopQueryCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"ServiceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1TagLogGroupCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1TagLogGroupCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1TagLogGroupCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1TestMetricFilterCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1TestMetricFilterCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1TestMetricFilterResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1TestMetricFilterCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidParameterException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#InvalidParameterException\": return [3 /*break*/, 2];\n case \"ServiceUnavailableException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cloudwatchlogs#ServiceUnavailableException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UntagLogGroupCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UntagLogGroupCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UntagLogGroupCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ResourceNotFoundException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cloudwatchlogs#ResourceNotFoundException\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DataAlreadyAcceptedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1DataAlreadyAcceptedException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"DataAlreadyAcceptedException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidOperationExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidOperationException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidOperationException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidParameterExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidParameterException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidParameterException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidSequenceTokenExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidSequenceTokenException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidSequenceTokenException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1LimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1LimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"LimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1MalformedQueryExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1MalformedQueryException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"MalformedQueryException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1OperationAbortedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1OperationAbortedException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"OperationAbortedException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceAlreadyExistsExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceAlreadyExistsException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceAlreadyExistsException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceNotFoundException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotFoundException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ServiceUnavailableExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ServiceUnavailableException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ServiceUnavailableException\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1UnrecognizedClientExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1UnrecognizedClientException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"UnrecognizedClientException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_json1_1AssociateKmsKeyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.kmsKeyId !== undefined && input.kmsKeyId !== null && { kmsKeyId: input.kmsKeyId })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName }));\n};\nvar serializeAws_json1_1CancelExportTaskRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.taskId !== undefined && input.taskId !== null && { taskId: input.taskId }));\n};\nvar serializeAws_json1_1CreateExportTaskRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.destination !== undefined && input.destination !== null && { destination: input.destination })), (input.destinationPrefix !== undefined &&\n input.destinationPrefix !== null && { destinationPrefix: input.destinationPrefix })), (input.from !== undefined && input.from !== null && { from: input.from })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.logStreamNamePrefix !== undefined &&\n input.logStreamNamePrefix !== null && { logStreamNamePrefix: input.logStreamNamePrefix })), (input.taskName !== undefined && input.taskName !== null && { taskName: input.taskName })), (input.to !== undefined && input.to !== null && { to: input.to }));\n};\nvar serializeAws_json1_1CreateLogGroupRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.kmsKeyId !== undefined && input.kmsKeyId !== null && { kmsKeyId: input.kmsKeyId })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.tags !== undefined && input.tags !== null && { tags: serializeAws_json1_1Tags(input.tags, context) }));\n};\nvar serializeAws_json1_1CreateLogStreamRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.logStreamName !== undefined && input.logStreamName !== null && { logStreamName: input.logStreamName }));\n};\nvar serializeAws_json1_1DeleteDestinationRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.destinationName !== undefined &&\n input.destinationName !== null && { destinationName: input.destinationName }));\n};\nvar serializeAws_json1_1DeleteLogGroupRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName }));\n};\nvar serializeAws_json1_1DeleteLogStreamRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.logStreamName !== undefined && input.logStreamName !== null && { logStreamName: input.logStreamName }));\n};\nvar serializeAws_json1_1DeleteMetricFilterRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.filterName !== undefined && input.filterName !== null && { filterName: input.filterName })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName }));\n};\nvar serializeAws_json1_1DeleteQueryDefinitionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.queryDefinitionId !== undefined &&\n input.queryDefinitionId !== null && { queryDefinitionId: input.queryDefinitionId }));\n};\nvar serializeAws_json1_1DeleteResourcePolicyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.policyName !== undefined && input.policyName !== null && { policyName: input.policyName }));\n};\nvar serializeAws_json1_1DeleteRetentionPolicyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName }));\n};\nvar serializeAws_json1_1DeleteSubscriptionFilterRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.filterName !== undefined && input.filterName !== null && { filterName: input.filterName })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName }));\n};\nvar serializeAws_json1_1DescribeDestinationsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DestinationNamePrefix !== undefined &&\n input.DestinationNamePrefix !== null && { DestinationNamePrefix: input.DestinationNamePrefix })), (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));\n};\nvar serializeAws_json1_1DescribeExportTasksRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })), (input.statusCode !== undefined && input.statusCode !== null && { statusCode: input.statusCode })), (input.taskId !== undefined && input.taskId !== null && { taskId: input.taskId }));\n};\nvar serializeAws_json1_1DescribeLogGroupsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.logGroupNamePrefix !== undefined &&\n input.logGroupNamePrefix !== null && { logGroupNamePrefix: input.logGroupNamePrefix })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));\n};\nvar serializeAws_json1_1DescribeLogStreamsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.descending !== undefined && input.descending !== null && { descending: input.descending })), (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.logStreamNamePrefix !== undefined &&\n input.logStreamNamePrefix !== null && { logStreamNamePrefix: input.logStreamNamePrefix })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })), (input.orderBy !== undefined && input.orderBy !== null && { orderBy: input.orderBy }));\n};\nvar serializeAws_json1_1DescribeMetricFiltersRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.filterNamePrefix !== undefined &&\n input.filterNamePrefix !== null && { filterNamePrefix: input.filterNamePrefix })), (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.metricName !== undefined && input.metricName !== null && { metricName: input.metricName })), (input.metricNamespace !== undefined &&\n input.metricNamespace !== null && { metricNamespace: input.metricNamespace })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));\n};\nvar serializeAws_json1_1DescribeQueriesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })), (input.status !== undefined && input.status !== null && { status: input.status }));\n};\nvar serializeAws_json1_1DescribeQueryDefinitionsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })), (input.queryDefinitionNamePrefix !== undefined &&\n input.queryDefinitionNamePrefix !== null && { queryDefinitionNamePrefix: input.queryDefinitionNamePrefix }));\n};\nvar serializeAws_json1_1DescribeResourcePoliciesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));\n};\nvar serializeAws_json1_1DescribeSubscriptionFiltersRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.filterNamePrefix !== undefined &&\n input.filterNamePrefix !== null && { filterNamePrefix: input.filterNamePrefix })), (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));\n};\nvar serializeAws_json1_1DisassociateKmsKeyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName }));\n};\nvar serializeAws_json1_1FilterLogEventsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.endTime !== undefined && input.endTime !== null && { endTime: input.endTime })), (input.filterPattern !== undefined && input.filterPattern !== null && { filterPattern: input.filterPattern })), (input.interleaved !== undefined && input.interleaved !== null && { interleaved: input.interleaved })), (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.logStreamNamePrefix !== undefined &&\n input.logStreamNamePrefix !== null && { logStreamNamePrefix: input.logStreamNamePrefix })), (input.logStreamNames !== undefined &&\n input.logStreamNames !== null && {\n logStreamNames: serializeAws_json1_1InputLogStreamNames(input.logStreamNames, context),\n })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })), (input.startTime !== undefined && input.startTime !== null && { startTime: input.startTime }));\n};\nvar serializeAws_json1_1GetLogEventsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.endTime !== undefined && input.endTime !== null && { endTime: input.endTime })), (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.logStreamName !== undefined && input.logStreamName !== null && { logStreamName: input.logStreamName })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })), (input.startFromHead !== undefined && input.startFromHead !== null && { startFromHead: input.startFromHead })), (input.startTime !== undefined && input.startTime !== null && { startTime: input.startTime }));\n};\nvar serializeAws_json1_1GetLogGroupFieldsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.time !== undefined && input.time !== null && { time: input.time }));\n};\nvar serializeAws_json1_1GetLogRecordRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logRecordPointer !== undefined &&\n input.logRecordPointer !== null && { logRecordPointer: input.logRecordPointer }));\n};\nvar serializeAws_json1_1GetQueryResultsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.queryId !== undefined && input.queryId !== null && { queryId: input.queryId }));\n};\nvar serializeAws_json1_1InputLogEvent = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.message !== undefined && input.message !== null && { message: input.message })), (input.timestamp !== undefined && input.timestamp !== null && { timestamp: input.timestamp }));\n};\nvar serializeAws_json1_1InputLogEvents = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1InputLogEvent(entry, context);\n });\n};\nvar serializeAws_json1_1InputLogStreamNames = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1ListTagsLogGroupRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName }));\n};\nvar serializeAws_json1_1LogGroupNames = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1MetricTransformation = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.defaultValue !== undefined && input.defaultValue !== null && { defaultValue: input.defaultValue })), (input.metricName !== undefined && input.metricName !== null && { metricName: input.metricName })), (input.metricNamespace !== undefined &&\n input.metricNamespace !== null && { metricNamespace: input.metricNamespace })), (input.metricValue !== undefined && input.metricValue !== null && { metricValue: input.metricValue }));\n};\nvar serializeAws_json1_1MetricTransformations = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1MetricTransformation(entry, context);\n });\n};\nvar serializeAws_json1_1PutDestinationPolicyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.accessPolicy !== undefined && input.accessPolicy !== null && { accessPolicy: input.accessPolicy })), (input.destinationName !== undefined &&\n input.destinationName !== null && { destinationName: input.destinationName }));\n};\nvar serializeAws_json1_1PutDestinationRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.destinationName !== undefined &&\n input.destinationName !== null && { destinationName: input.destinationName })), (input.roleArn !== undefined && input.roleArn !== null && { roleArn: input.roleArn })), (input.targetArn !== undefined && input.targetArn !== null && { targetArn: input.targetArn }));\n};\nvar serializeAws_json1_1PutLogEventsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logEvents !== undefined &&\n input.logEvents !== null && { logEvents: serializeAws_json1_1InputLogEvents(input.logEvents, context) })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.logStreamName !== undefined && input.logStreamName !== null && { logStreamName: input.logStreamName })), (input.sequenceToken !== undefined && input.sequenceToken !== null && { sequenceToken: input.sequenceToken }));\n};\nvar serializeAws_json1_1PutMetricFilterRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.filterName !== undefined && input.filterName !== null && { filterName: input.filterName })), (input.filterPattern !== undefined && input.filterPattern !== null && { filterPattern: input.filterPattern })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.metricTransformations !== undefined &&\n input.metricTransformations !== null && {\n metricTransformations: serializeAws_json1_1MetricTransformations(input.metricTransformations, context),\n }));\n};\nvar serializeAws_json1_1PutQueryDefinitionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupNames !== undefined &&\n input.logGroupNames !== null && {\n logGroupNames: serializeAws_json1_1LogGroupNames(input.logGroupNames, context),\n })), (input.name !== undefined && input.name !== null && { name: input.name })), (input.queryDefinitionId !== undefined &&\n input.queryDefinitionId !== null && { queryDefinitionId: input.queryDefinitionId })), (input.queryString !== undefined && input.queryString !== null && { queryString: input.queryString }));\n};\nvar serializeAws_json1_1PutResourcePolicyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.policyDocument !== undefined &&\n input.policyDocument !== null && { policyDocument: input.policyDocument })), (input.policyName !== undefined && input.policyName !== null && { policyName: input.policyName }));\n};\nvar serializeAws_json1_1PutRetentionPolicyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.retentionInDays !== undefined &&\n input.retentionInDays !== null && { retentionInDays: input.retentionInDays }));\n};\nvar serializeAws_json1_1PutSubscriptionFilterRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.destinationArn !== undefined &&\n input.destinationArn !== null && { destinationArn: input.destinationArn })), (input.distribution !== undefined && input.distribution !== null && { distribution: input.distribution })), (input.filterName !== undefined && input.filterName !== null && { filterName: input.filterName })), (input.filterPattern !== undefined && input.filterPattern !== null && { filterPattern: input.filterPattern })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.roleArn !== undefined && input.roleArn !== null && { roleArn: input.roleArn }));\n};\nvar serializeAws_json1_1StartQueryRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.endTime !== undefined && input.endTime !== null && { endTime: input.endTime })), (input.limit !== undefined && input.limit !== null && { limit: input.limit })), (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.logGroupNames !== undefined &&\n input.logGroupNames !== null && {\n logGroupNames: serializeAws_json1_1LogGroupNames(input.logGroupNames, context),\n })), (input.queryString !== undefined && input.queryString !== null && { queryString: input.queryString })), (input.startTime !== undefined && input.startTime !== null && { startTime: input.startTime }));\n};\nvar serializeAws_json1_1StopQueryRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.queryId !== undefined && input.queryId !== null && { queryId: input.queryId }));\n};\nvar serializeAws_json1_1TagList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1TagLogGroupRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.tags !== undefined && input.tags !== null && { tags: serializeAws_json1_1Tags(input.tags, context) }));\n};\nvar serializeAws_json1_1Tags = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_json1_1TestEventMessages = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1TestMetricFilterRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.filterPattern !== undefined && input.filterPattern !== null && { filterPattern: input.filterPattern })), (input.logEventMessages !== undefined &&\n input.logEventMessages !== null && {\n logEventMessages: serializeAws_json1_1TestEventMessages(input.logEventMessages, context),\n }));\n};\nvar serializeAws_json1_1UntagLogGroupRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.logGroupName !== undefined && input.logGroupName !== null && { logGroupName: input.logGroupName })), (input.tags !== undefined && input.tags !== null && { tags: serializeAws_json1_1TagList(input.tags, context) }));\n};\nvar deserializeAws_json1_1CreateExportTaskResponse = function (output, context) {\n return {\n taskId: output.taskId !== undefined && output.taskId !== null ? output.taskId : undefined,\n };\n};\nvar deserializeAws_json1_1DataAlreadyAcceptedException = function (output, context) {\n return {\n expectedSequenceToken: output.expectedSequenceToken !== undefined && output.expectedSequenceToken !== null\n ? output.expectedSequenceToken\n : undefined,\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1DeleteQueryDefinitionResponse = function (output, context) {\n return {\n success: output.success !== undefined && output.success !== null ? output.success : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeDestinationsResponse = function (output, context) {\n return {\n destinations: output.destinations !== undefined && output.destinations !== null\n ? deserializeAws_json1_1Destinations(output.destinations, context)\n : undefined,\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeExportTasksResponse = function (output, context) {\n return {\n exportTasks: output.exportTasks !== undefined && output.exportTasks !== null\n ? deserializeAws_json1_1ExportTasks(output.exportTasks, context)\n : undefined,\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeLogGroupsResponse = function (output, context) {\n return {\n logGroups: output.logGroups !== undefined && output.logGroups !== null\n ? deserializeAws_json1_1LogGroups(output.logGroups, context)\n : undefined,\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeLogStreamsResponse = function (output, context) {\n return {\n logStreams: output.logStreams !== undefined && output.logStreams !== null\n ? deserializeAws_json1_1LogStreams(output.logStreams, context)\n : undefined,\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeMetricFiltersResponse = function (output, context) {\n return {\n metricFilters: output.metricFilters !== undefined && output.metricFilters !== null\n ? deserializeAws_json1_1MetricFilters(output.metricFilters, context)\n : undefined,\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeQueriesResponse = function (output, context) {\n return {\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n queries: output.queries !== undefined && output.queries !== null\n ? deserializeAws_json1_1QueryInfoList(output.queries, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeQueryDefinitionsResponse = function (output, context) {\n return {\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n queryDefinitions: output.queryDefinitions !== undefined && output.queryDefinitions !== null\n ? deserializeAws_json1_1QueryDefinitionList(output.queryDefinitions, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeResourcePoliciesResponse = function (output, context) {\n return {\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n resourcePolicies: output.resourcePolicies !== undefined && output.resourcePolicies !== null\n ? deserializeAws_json1_1ResourcePolicies(output.resourcePolicies, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeSubscriptionFiltersResponse = function (output, context) {\n return {\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n subscriptionFilters: output.subscriptionFilters !== undefined && output.subscriptionFilters !== null\n ? deserializeAws_json1_1SubscriptionFilters(output.subscriptionFilters, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Destination = function (output, context) {\n return {\n accessPolicy: output.accessPolicy !== undefined && output.accessPolicy !== null ? output.accessPolicy : undefined,\n arn: output.arn !== undefined && output.arn !== null ? output.arn : undefined,\n creationTime: output.creationTime !== undefined && output.creationTime !== null ? output.creationTime : undefined,\n destinationName: output.destinationName !== undefined && output.destinationName !== null ? output.destinationName : undefined,\n roleArn: output.roleArn !== undefined && output.roleArn !== null ? output.roleArn : undefined,\n targetArn: output.targetArn !== undefined && output.targetArn !== null ? output.targetArn : undefined,\n };\n};\nvar deserializeAws_json1_1Destinations = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Destination(entry, context);\n });\n};\nvar deserializeAws_json1_1ExportTask = function (output, context) {\n return {\n destination: output.destination !== undefined && output.destination !== null ? output.destination : undefined,\n destinationPrefix: output.destinationPrefix !== undefined && output.destinationPrefix !== null\n ? output.destinationPrefix\n : undefined,\n executionInfo: output.executionInfo !== undefined && output.executionInfo !== null\n ? deserializeAws_json1_1ExportTaskExecutionInfo(output.executionInfo, context)\n : undefined,\n from: output.from !== undefined && output.from !== null ? output.from : undefined,\n logGroupName: output.logGroupName !== undefined && output.logGroupName !== null ? output.logGroupName : undefined,\n status: output.status !== undefined && output.status !== null\n ? deserializeAws_json1_1ExportTaskStatus(output.status, context)\n : undefined,\n taskId: output.taskId !== undefined && output.taskId !== null ? output.taskId : undefined,\n taskName: output.taskName !== undefined && output.taskName !== null ? output.taskName : undefined,\n to: output.to !== undefined && output.to !== null ? output.to : undefined,\n };\n};\nvar deserializeAws_json1_1ExportTaskExecutionInfo = function (output, context) {\n return {\n completionTime: output.completionTime !== undefined && output.completionTime !== null ? output.completionTime : undefined,\n creationTime: output.creationTime !== undefined && output.creationTime !== null ? output.creationTime : undefined,\n };\n};\nvar deserializeAws_json1_1ExportTasks = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ExportTask(entry, context);\n });\n};\nvar deserializeAws_json1_1ExportTaskStatus = function (output, context) {\n return {\n code: output.code !== undefined && output.code !== null ? output.code : undefined,\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ExtractedValues = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_json1_1FilteredLogEvent = function (output, context) {\n return {\n eventId: output.eventId !== undefined && output.eventId !== null ? output.eventId : undefined,\n ingestionTime: output.ingestionTime !== undefined && output.ingestionTime !== null ? output.ingestionTime : undefined,\n logStreamName: output.logStreamName !== undefined && output.logStreamName !== null ? output.logStreamName : undefined,\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n timestamp: output.timestamp !== undefined && output.timestamp !== null ? output.timestamp : undefined,\n };\n};\nvar deserializeAws_json1_1FilteredLogEvents = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1FilteredLogEvent(entry, context);\n });\n};\nvar deserializeAws_json1_1FilterLogEventsResponse = function (output, context) {\n return {\n events: output.events !== undefined && output.events !== null\n ? deserializeAws_json1_1FilteredLogEvents(output.events, context)\n : undefined,\n nextToken: output.nextToken !== undefined && output.nextToken !== null ? output.nextToken : undefined,\n searchedLogStreams: output.searchedLogStreams !== undefined && output.searchedLogStreams !== null\n ? deserializeAws_json1_1SearchedLogStreams(output.searchedLogStreams, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetLogEventsResponse = function (output, context) {\n return {\n events: output.events !== undefined && output.events !== null\n ? deserializeAws_json1_1OutputLogEvents(output.events, context)\n : undefined,\n nextBackwardToken: output.nextBackwardToken !== undefined && output.nextBackwardToken !== null\n ? output.nextBackwardToken\n : undefined,\n nextForwardToken: output.nextForwardToken !== undefined && output.nextForwardToken !== null ? output.nextForwardToken : undefined,\n };\n};\nvar deserializeAws_json1_1GetLogGroupFieldsResponse = function (output, context) {\n return {\n logGroupFields: output.logGroupFields !== undefined && output.logGroupFields !== null\n ? deserializeAws_json1_1LogGroupFieldList(output.logGroupFields, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetLogRecordResponse = function (output, context) {\n return {\n logRecord: output.logRecord !== undefined && output.logRecord !== null\n ? deserializeAws_json1_1LogRecord(output.logRecord, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetQueryResultsResponse = function (output, context) {\n return {\n results: output.results !== undefined && output.results !== null\n ? deserializeAws_json1_1QueryResults(output.results, context)\n : undefined,\n statistics: output.statistics !== undefined && output.statistics !== null\n ? deserializeAws_json1_1QueryStatistics(output.statistics, context)\n : undefined,\n status: output.status !== undefined && output.status !== null ? output.status : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidOperationException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidParameterException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidSequenceTokenException = function (output, context) {\n return {\n expectedSequenceToken: output.expectedSequenceToken !== undefined && output.expectedSequenceToken !== null\n ? output.expectedSequenceToken\n : undefined,\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1LimitExceededException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ListTagsLogGroupResponse = function (output, context) {\n return {\n tags: output.tags !== undefined && output.tags !== null ? deserializeAws_json1_1Tags(output.tags, context) : undefined,\n };\n};\nvar deserializeAws_json1_1LogGroup = function (output, context) {\n return {\n arn: output.arn !== undefined && output.arn !== null ? output.arn : undefined,\n creationTime: output.creationTime !== undefined && output.creationTime !== null ? output.creationTime : undefined,\n kmsKeyId: output.kmsKeyId !== undefined && output.kmsKeyId !== null ? output.kmsKeyId : undefined,\n logGroupName: output.logGroupName !== undefined && output.logGroupName !== null ? output.logGroupName : undefined,\n metricFilterCount: output.metricFilterCount !== undefined && output.metricFilterCount !== null\n ? output.metricFilterCount\n : undefined,\n retentionInDays: output.retentionInDays !== undefined && output.retentionInDays !== null ? output.retentionInDays : undefined,\n storedBytes: output.storedBytes !== undefined && output.storedBytes !== null ? output.storedBytes : undefined,\n };\n};\nvar deserializeAws_json1_1LogGroupField = function (output, context) {\n return {\n name: output.name !== undefined && output.name !== null ? output.name : undefined,\n percent: output.percent !== undefined && output.percent !== null ? output.percent : undefined,\n };\n};\nvar deserializeAws_json1_1LogGroupFieldList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1LogGroupField(entry, context);\n });\n};\nvar deserializeAws_json1_1LogGroupNames = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1LogGroups = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1LogGroup(entry, context);\n });\n};\nvar deserializeAws_json1_1LogRecord = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_json1_1LogStream = function (output, context) {\n return {\n arn: output.arn !== undefined && output.arn !== null ? output.arn : undefined,\n creationTime: output.creationTime !== undefined && output.creationTime !== null ? output.creationTime : undefined,\n firstEventTimestamp: output.firstEventTimestamp !== undefined && output.firstEventTimestamp !== null\n ? output.firstEventTimestamp\n : undefined,\n lastEventTimestamp: output.lastEventTimestamp !== undefined && output.lastEventTimestamp !== null\n ? output.lastEventTimestamp\n : undefined,\n lastIngestionTime: output.lastIngestionTime !== undefined && output.lastIngestionTime !== null\n ? output.lastIngestionTime\n : undefined,\n logStreamName: output.logStreamName !== undefined && output.logStreamName !== null ? output.logStreamName : undefined,\n storedBytes: output.storedBytes !== undefined && output.storedBytes !== null ? output.storedBytes : undefined,\n uploadSequenceToken: output.uploadSequenceToken !== undefined && output.uploadSequenceToken !== null\n ? output.uploadSequenceToken\n : undefined,\n };\n};\nvar deserializeAws_json1_1LogStreams = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1LogStream(entry, context);\n });\n};\nvar deserializeAws_json1_1MalformedQueryException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n queryCompileError: output.queryCompileError !== undefined && output.queryCompileError !== null\n ? deserializeAws_json1_1QueryCompileError(output.queryCompileError, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1MetricFilter = function (output, context) {\n return {\n creationTime: output.creationTime !== undefined && output.creationTime !== null ? output.creationTime : undefined,\n filterName: output.filterName !== undefined && output.filterName !== null ? output.filterName : undefined,\n filterPattern: output.filterPattern !== undefined && output.filterPattern !== null ? output.filterPattern : undefined,\n logGroupName: output.logGroupName !== undefined && output.logGroupName !== null ? output.logGroupName : undefined,\n metricTransformations: output.metricTransformations !== undefined && output.metricTransformations !== null\n ? deserializeAws_json1_1MetricTransformations(output.metricTransformations, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1MetricFilterMatches = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1MetricFilterMatchRecord(entry, context);\n });\n};\nvar deserializeAws_json1_1MetricFilterMatchRecord = function (output, context) {\n return {\n eventMessage: output.eventMessage !== undefined && output.eventMessage !== null ? output.eventMessage : undefined,\n eventNumber: output.eventNumber !== undefined && output.eventNumber !== null ? output.eventNumber : undefined,\n extractedValues: output.extractedValues !== undefined && output.extractedValues !== null\n ? deserializeAws_json1_1ExtractedValues(output.extractedValues, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1MetricFilters = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1MetricFilter(entry, context);\n });\n};\nvar deserializeAws_json1_1MetricTransformation = function (output, context) {\n return {\n defaultValue: output.defaultValue !== undefined && output.defaultValue !== null ? output.defaultValue : undefined,\n metricName: output.metricName !== undefined && output.metricName !== null ? output.metricName : undefined,\n metricNamespace: output.metricNamespace !== undefined && output.metricNamespace !== null ? output.metricNamespace : undefined,\n metricValue: output.metricValue !== undefined && output.metricValue !== null ? output.metricValue : undefined,\n };\n};\nvar deserializeAws_json1_1MetricTransformations = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1MetricTransformation(entry, context);\n });\n};\nvar deserializeAws_json1_1OperationAbortedException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1OutputLogEvent = function (output, context) {\n return {\n ingestionTime: output.ingestionTime !== undefined && output.ingestionTime !== null ? output.ingestionTime : undefined,\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n timestamp: output.timestamp !== undefined && output.timestamp !== null ? output.timestamp : undefined,\n };\n};\nvar deserializeAws_json1_1OutputLogEvents = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1OutputLogEvent(entry, context);\n });\n};\nvar deserializeAws_json1_1PutDestinationResponse = function (output, context) {\n return {\n destination: output.destination !== undefined && output.destination !== null\n ? deserializeAws_json1_1Destination(output.destination, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1PutLogEventsResponse = function (output, context) {\n return {\n nextSequenceToken: output.nextSequenceToken !== undefined && output.nextSequenceToken !== null\n ? output.nextSequenceToken\n : undefined,\n rejectedLogEventsInfo: output.rejectedLogEventsInfo !== undefined && output.rejectedLogEventsInfo !== null\n ? deserializeAws_json1_1RejectedLogEventsInfo(output.rejectedLogEventsInfo, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1PutQueryDefinitionResponse = function (output, context) {\n return {\n queryDefinitionId: output.queryDefinitionId !== undefined && output.queryDefinitionId !== null\n ? output.queryDefinitionId\n : undefined,\n };\n};\nvar deserializeAws_json1_1PutResourcePolicyResponse = function (output, context) {\n return {\n resourcePolicy: output.resourcePolicy !== undefined && output.resourcePolicy !== null\n ? deserializeAws_json1_1ResourcePolicy(output.resourcePolicy, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1QueryCompileError = function (output, context) {\n return {\n location: output.location !== undefined && output.location !== null\n ? deserializeAws_json1_1QueryCompileErrorLocation(output.location, context)\n : undefined,\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1QueryCompileErrorLocation = function (output, context) {\n return {\n endCharOffset: output.endCharOffset !== undefined && output.endCharOffset !== null ? output.endCharOffset : undefined,\n startCharOffset: output.startCharOffset !== undefined && output.startCharOffset !== null ? output.startCharOffset : undefined,\n };\n};\nvar deserializeAws_json1_1QueryDefinition = function (output, context) {\n return {\n lastModified: output.lastModified !== undefined && output.lastModified !== null ? output.lastModified : undefined,\n logGroupNames: output.logGroupNames !== undefined && output.logGroupNames !== null\n ? deserializeAws_json1_1LogGroupNames(output.logGroupNames, context)\n : undefined,\n name: output.name !== undefined && output.name !== null ? output.name : undefined,\n queryDefinitionId: output.queryDefinitionId !== undefined && output.queryDefinitionId !== null\n ? output.queryDefinitionId\n : undefined,\n queryString: output.queryString !== undefined && output.queryString !== null ? output.queryString : undefined,\n };\n};\nvar deserializeAws_json1_1QueryDefinitionList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1QueryDefinition(entry, context);\n });\n};\nvar deserializeAws_json1_1QueryInfo = function (output, context) {\n return {\n createTime: output.createTime !== undefined && output.createTime !== null ? output.createTime : undefined,\n logGroupName: output.logGroupName !== undefined && output.logGroupName !== null ? output.logGroupName : undefined,\n queryId: output.queryId !== undefined && output.queryId !== null ? output.queryId : undefined,\n queryString: output.queryString !== undefined && output.queryString !== null ? output.queryString : undefined,\n status: output.status !== undefined && output.status !== null ? output.status : undefined,\n };\n};\nvar deserializeAws_json1_1QueryInfoList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1QueryInfo(entry, context);\n });\n};\nvar deserializeAws_json1_1QueryResults = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ResultRows(entry, context);\n });\n};\nvar deserializeAws_json1_1QueryStatistics = function (output, context) {\n return {\n bytesScanned: output.bytesScanned !== undefined && output.bytesScanned !== null ? output.bytesScanned : undefined,\n recordsMatched: output.recordsMatched !== undefined && output.recordsMatched !== null ? output.recordsMatched : undefined,\n recordsScanned: output.recordsScanned !== undefined && output.recordsScanned !== null ? output.recordsScanned : undefined,\n };\n};\nvar deserializeAws_json1_1RejectedLogEventsInfo = function (output, context) {\n return {\n expiredLogEventEndIndex: output.expiredLogEventEndIndex !== undefined && output.expiredLogEventEndIndex !== null\n ? output.expiredLogEventEndIndex\n : undefined,\n tooNewLogEventStartIndex: output.tooNewLogEventStartIndex !== undefined && output.tooNewLogEventStartIndex !== null\n ? output.tooNewLogEventStartIndex\n : undefined,\n tooOldLogEventEndIndex: output.tooOldLogEventEndIndex !== undefined && output.tooOldLogEventEndIndex !== null\n ? output.tooOldLogEventEndIndex\n : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceAlreadyExistsException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceNotFoundException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourcePolicies = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ResourcePolicy(entry, context);\n });\n};\nvar deserializeAws_json1_1ResourcePolicy = function (output, context) {\n return {\n lastUpdatedTime: output.lastUpdatedTime !== undefined && output.lastUpdatedTime !== null ? output.lastUpdatedTime : undefined,\n policyDocument: output.policyDocument !== undefined && output.policyDocument !== null ? output.policyDocument : undefined,\n policyName: output.policyName !== undefined && output.policyName !== null ? output.policyName : undefined,\n };\n};\nvar deserializeAws_json1_1ResultField = function (output, context) {\n return {\n field: output.field !== undefined && output.field !== null ? output.field : undefined,\n value: output.value !== undefined && output.value !== null ? output.value : undefined,\n };\n};\nvar deserializeAws_json1_1ResultRows = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ResultField(entry, context);\n });\n};\nvar deserializeAws_json1_1SearchedLogStream = function (output, context) {\n return {\n logStreamName: output.logStreamName !== undefined && output.logStreamName !== null ? output.logStreamName : undefined,\n searchedCompletely: output.searchedCompletely !== undefined && output.searchedCompletely !== null\n ? output.searchedCompletely\n : undefined,\n };\n};\nvar deserializeAws_json1_1SearchedLogStreams = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1SearchedLogStream(entry, context);\n });\n};\nvar deserializeAws_json1_1ServiceUnavailableException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1StartQueryResponse = function (output, context) {\n return {\n queryId: output.queryId !== undefined && output.queryId !== null ? output.queryId : undefined,\n };\n};\nvar deserializeAws_json1_1StopQueryResponse = function (output, context) {\n return {\n success: output.success !== undefined && output.success !== null ? output.success : undefined,\n };\n};\nvar deserializeAws_json1_1SubscriptionFilter = function (output, context) {\n return {\n creationTime: output.creationTime !== undefined && output.creationTime !== null ? output.creationTime : undefined,\n destinationArn: output.destinationArn !== undefined && output.destinationArn !== null ? output.destinationArn : undefined,\n distribution: output.distribution !== undefined && output.distribution !== null ? output.distribution : undefined,\n filterName: output.filterName !== undefined && output.filterName !== null ? output.filterName : undefined,\n filterPattern: output.filterPattern !== undefined && output.filterPattern !== null ? output.filterPattern : undefined,\n logGroupName: output.logGroupName !== undefined && output.logGroupName !== null ? output.logGroupName : undefined,\n roleArn: output.roleArn !== undefined && output.roleArn !== null ? output.roleArn : undefined,\n };\n};\nvar deserializeAws_json1_1SubscriptionFilters = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1SubscriptionFilter(entry, context);\n });\n};\nvar deserializeAws_json1_1Tags = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_json1_1TestMetricFilterResponse = function (output, context) {\n return {\n matches: output.matches !== undefined && output.matches !== null\n ? deserializeAws_json1_1MetricFilterMatches(output.matches, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1UnrecognizedClientException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar buildHttpRpcRequest = function (context, headers, path, resolvedHostname, body) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n contents = {\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n path: path,\n headers: headers,\n };\n if (resolvedHostname !== undefined) {\n contents.hostname = resolvedHostname;\n }\n if (body !== undefined) {\n contents.body = body;\n }\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"](contents)];\n }\n });\n}); };\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_json1_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/protocols/Aws_json1_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/runtimeConfig.browser.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/runtimeConfig.browser.js ***! \***************************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/runtimeConfig.shared.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/runtimeConfig.shared.js ***! \**************************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2014-03-28\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"CloudWatch Logs\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js ***! \**************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cloudwatch-logs/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentity.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentity.js ***! \**********************************************************************************/ /*! exports provided: CognitoIdentity */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CognitoIdentity\", function() { return CognitoIdentity; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CognitoIdentityClient */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentityClient.js\");\n/* harmony import */ var _commands_CreateIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CreateIdentityPoolCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/CreateIdentityPoolCommand.js\");\n/* harmony import */ var _commands_DeleteIdentitiesCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DeleteIdentitiesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentitiesCommand.js\");\n/* harmony import */ var _commands_DeleteIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/DeleteIdentityPoolCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentityPoolCommand.js\");\n/* harmony import */ var _commands_DescribeIdentityCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/DescribeIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityCommand.js\");\n/* harmony import */ var _commands_DescribeIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/DescribeIdentityPoolCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityPoolCommand.js\");\n/* harmony import */ var _commands_GetCredentialsForIdentityCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/GetCredentialsForIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetCredentialsForIdentityCommand.js\");\n/* harmony import */ var _commands_GetIdCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/GetIdCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdCommand.js\");\n/* harmony import */ var _commands_GetIdentityPoolRolesCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/GetIdentityPoolRolesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdentityPoolRolesCommand.js\");\n/* harmony import */ var _commands_GetOpenIdTokenCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/GetOpenIdTokenCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenCommand.js\");\n/* harmony import */ var _commands_GetOpenIdTokenForDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/GetOpenIdTokenForDeveloperIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenForDeveloperIdentityCommand.js\");\n/* harmony import */ var _commands_ListIdentitiesCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/ListIdentitiesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentitiesCommand.js\");\n/* harmony import */ var _commands_ListIdentityPoolsCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/ListIdentityPoolsCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentityPoolsCommand.js\");\n/* harmony import */ var _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/ListTagsForResourceCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListTagsForResourceCommand.js\");\n/* harmony import */ var _commands_LookupDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/LookupDeveloperIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/LookupDeveloperIdentityCommand.js\");\n/* harmony import */ var _commands_MergeDeveloperIdentitiesCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/MergeDeveloperIdentitiesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/MergeDeveloperIdentitiesCommand.js\");\n/* harmony import */ var _commands_SetIdentityPoolRolesCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/SetIdentityPoolRolesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/SetIdentityPoolRolesCommand.js\");\n/* harmony import */ var _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/TagResourceCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/TagResourceCommand.js\");\n/* harmony import */ var _commands_UnlinkDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/UnlinkDeveloperIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkDeveloperIdentityCommand.js\");\n/* harmony import */ var _commands_UnlinkIdentityCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/UnlinkIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkIdentityCommand.js\");\n/* harmony import */ var _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/UntagResourceCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UntagResourceCommand.js\");\n/* harmony import */ var _commands_UpdateIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/UpdateIdentityPoolCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UpdateIdentityPoolCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Amazon Cognito Federated Identities\n *

Amazon Cognito Federated Identities is a web service that delivers scoped temporary\n * credentials to mobile devices and other untrusted environments. It uniquely identifies a\n * device and supplies the user with a consistent identity over the lifetime of an\n * application.

\n *

Using Amazon Cognito Federated Identities, you can enable authentication with one or\n * more third-party identity providers (Facebook, Google, or Login with Amazon) or an Amazon\n * Cognito user pool, and you can also choose to support unauthenticated access from your app.\n * Cognito delivers a unique identifier for each user and acts as an OpenID token provider\n * trusted by AWS Security Token Service (STS) to access temporary, limited-privilege AWS\n * credentials.

\n *

For a description of the authentication flow from the Amazon Cognito Developer Guide\n * see Authentication Flow.

\n *

For more information see Amazon Cognito Federated Identities.

\n */\nvar CognitoIdentity = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CognitoIdentity, _super);\n function CognitoIdentity() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n CognitoIdentity.prototype.createIdentityPool = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_2__[\"CreateIdentityPoolCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.deleteIdentities = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteIdentitiesCommand__WEBPACK_IMPORTED_MODULE_3__[\"DeleteIdentitiesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.deleteIdentityPool = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_4__[\"DeleteIdentityPoolCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.describeIdentity = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeIdentityCommand__WEBPACK_IMPORTED_MODULE_5__[\"DescribeIdentityCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.describeIdentityPool = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_6__[\"DescribeIdentityPoolCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.getCredentialsForIdentity = function (args, optionsOrCb, cb) {\n var command = new _commands_GetCredentialsForIdentityCommand__WEBPACK_IMPORTED_MODULE_7__[\"GetCredentialsForIdentityCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.getId = function (args, optionsOrCb, cb) {\n var command = new _commands_GetIdCommand__WEBPACK_IMPORTED_MODULE_8__[\"GetIdCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.getIdentityPoolRoles = function (args, optionsOrCb, cb) {\n var command = new _commands_GetIdentityPoolRolesCommand__WEBPACK_IMPORTED_MODULE_9__[\"GetIdentityPoolRolesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.getOpenIdToken = function (args, optionsOrCb, cb) {\n var command = new _commands_GetOpenIdTokenCommand__WEBPACK_IMPORTED_MODULE_10__[\"GetOpenIdTokenCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.getOpenIdTokenForDeveloperIdentity = function (args, optionsOrCb, cb) {\n var command = new _commands_GetOpenIdTokenForDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_11__[\"GetOpenIdTokenForDeveloperIdentityCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.listIdentities = function (args, optionsOrCb, cb) {\n var command = new _commands_ListIdentitiesCommand__WEBPACK_IMPORTED_MODULE_12__[\"ListIdentitiesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.listIdentityPools = function (args, optionsOrCb, cb) {\n var command = new _commands_ListIdentityPoolsCommand__WEBPACK_IMPORTED_MODULE_13__[\"ListIdentityPoolsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.listTagsForResource = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_14__[\"ListTagsForResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.lookupDeveloperIdentity = function (args, optionsOrCb, cb) {\n var command = new _commands_LookupDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_15__[\"LookupDeveloperIdentityCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.mergeDeveloperIdentities = function (args, optionsOrCb, cb) {\n var command = new _commands_MergeDeveloperIdentitiesCommand__WEBPACK_IMPORTED_MODULE_16__[\"MergeDeveloperIdentitiesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.setIdentityPoolRoles = function (args, optionsOrCb, cb) {\n var command = new _commands_SetIdentityPoolRolesCommand__WEBPACK_IMPORTED_MODULE_17__[\"SetIdentityPoolRolesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.tagResource = function (args, optionsOrCb, cb) {\n var command = new _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_18__[\"TagResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.unlinkDeveloperIdentity = function (args, optionsOrCb, cb) {\n var command = new _commands_UnlinkDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_19__[\"UnlinkDeveloperIdentityCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.unlinkIdentity = function (args, optionsOrCb, cb) {\n var command = new _commands_UnlinkIdentityCommand__WEBPACK_IMPORTED_MODULE_20__[\"UnlinkIdentityCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.untagResource = function (args, optionsOrCb, cb) {\n var command = new _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_21__[\"UntagResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n CognitoIdentity.prototype.updateIdentityPool = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_22__[\"UpdateIdentityPoolCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return CognitoIdentity;\n}(_CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_1__[\"CognitoIdentityClient\"]));\n\n//# sourceMappingURL=CognitoIdentity.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentity.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentityClient.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentityClient.js ***! \****************************************************************************************/ /*! exports provided: CognitoIdentityClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CognitoIdentityClient\", function() { return CognitoIdentityClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n * Amazon Cognito Federated Identities\n *

Amazon Cognito Federated Identities is a web service that delivers scoped temporary\n * credentials to mobile devices and other untrusted environments. It uniquely identifies a\n * device and supplies the user with a consistent identity over the lifetime of an\n * application.

\n *

Using Amazon Cognito Federated Identities, you can enable authentication with one or\n * more third-party identity providers (Facebook, Google, or Login with Amazon) or an Amazon\n * Cognito user pool, and you can also choose to support unauthenticated access from your app.\n * Cognito delivers a unique identifier for each user and acts as an OpenID token provider\n * trusted by AWS Security Token Service (STS) to access temporary, limited-privilege AWS\n * credentials.

\n *

For a description of the authentication flow from the Amazon Cognito Developer Guide\n * see Authentication Flow.

\n *

For more information see Amazon Cognito Federated Identities.

\n */\nvar CognitoIdentityClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CognitoIdentityClient, _super);\n function CognitoIdentityClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n CognitoIdentityClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return CognitoIdentityClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=CognitoIdentityClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentityClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/CreateIdentityPoolCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/CreateIdentityPoolCommand.js ***! \*****************************************************************************************************/ /*! exports provided: CreateIdentityPoolCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateIdentityPoolCommand\", function() { return CreateIdentityPoolCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Creates a new identity pool. The identity pool is a store of user identity\n * information that is specific to your AWS account. The keys for SupportedLoginProviders are as follows:

\n *\n *
    \n *
  • \n *

    Facebook: graph.facebook.com\n *

    \n *
  • \n *
  • \n *

    Google: accounts.google.com\n *

    \n *
  • \n *
  • \n *

    Amazon: www.amazon.com\n *

    \n *
  • \n *
  • \n *

    Twitter: api.twitter.com\n *

    \n *
  • \n *
  • \n *

    Digits: www.digits.com\n *

    \n *
  • \n *
\n *\n *

You must use AWS Developer credentials to call this API.

\n */\nvar CreateIdentityPoolCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateIdentityPoolCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateIdentityPoolCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateIdentityPoolCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"CreateIdentityPoolCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateIdentityPoolInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"IdentityPool\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateIdentityPoolCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateIdentityPoolCommand\"])(input, context);\n };\n CreateIdentityPoolCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateIdentityPoolCommand\"])(output, context);\n };\n return CreateIdentityPoolCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=CreateIdentityPoolCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/CreateIdentityPoolCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentitiesCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentitiesCommand.js ***! \***************************************************************************************************/ /*! exports provided: DeleteIdentitiesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentitiesCommand\", function() { return DeleteIdentitiesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes identities from an identity pool. You can specify a list of 1-60 identities\n * that you want to delete.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar DeleteIdentitiesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteIdentitiesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteIdentitiesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteIdentitiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"DeleteIdentitiesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteIdentitiesInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteIdentitiesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteIdentitiesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteIdentitiesCommand\"])(input, context);\n };\n DeleteIdentitiesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteIdentitiesCommand\"])(output, context);\n };\n return DeleteIdentitiesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteIdentitiesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentitiesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentityPoolCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentityPoolCommand.js ***! \*****************************************************************************************************/ /*! exports provided: DeleteIdentityPoolCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentityPoolCommand\", function() { return DeleteIdentityPoolCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes an identity pool. Once a pool is deleted, users will not be able to\n * authenticate with the pool.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar DeleteIdentityPoolCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteIdentityPoolCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteIdentityPoolCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteIdentityPoolCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"DeleteIdentityPoolCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteIdentityPoolInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteIdentityPoolCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteIdentityPoolCommand\"])(input, context);\n };\n DeleteIdentityPoolCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteIdentityPoolCommand\"])(output, context);\n };\n return DeleteIdentityPoolCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteIdentityPoolCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentityPoolCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityCommand.js ***! \***************************************************************************************************/ /*! exports provided: DescribeIdentityCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityCommand\", function() { return DescribeIdentityCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns metadata related to the given identity, including when the identity was\n * created and any associated linked logins.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar DescribeIdentityCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeIdentityCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeIdentityCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeIdentityCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"DescribeIdentityCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeIdentityInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"IdentityDescription\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeIdentityCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeIdentityCommand\"])(input, context);\n };\n DescribeIdentityCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeIdentityCommand\"])(output, context);\n };\n return DescribeIdentityCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DescribeIdentityCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityPoolCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityPoolCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DescribeIdentityPoolCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityPoolCommand\", function() { return DescribeIdentityPoolCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Gets details about a particular identity pool, including the pool name, ID\n * description, creation date, and current number of users.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar DescribeIdentityPoolCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeIdentityPoolCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeIdentityPoolCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeIdentityPoolCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"DescribeIdentityPoolCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeIdentityPoolInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"IdentityPool\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeIdentityPoolCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeIdentityPoolCommand\"])(input, context);\n };\n DescribeIdentityPoolCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeIdentityPoolCommand\"])(output, context);\n };\n return DescribeIdentityPoolCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DescribeIdentityPoolCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityPoolCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetCredentialsForIdentityCommand.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetCredentialsForIdentityCommand.js ***! \************************************************************************************************************/ /*! exports provided: GetCredentialsForIdentityCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCredentialsForIdentityCommand\", function() { return GetCredentialsForIdentityCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns credentials for the provided identity ID. Any provided logins will be\n * validated against supported login providers. If the token is for\n * cognito-identity.amazonaws.com, it will be passed through to AWS Security Token Service\n * with the appropriate role for the token.

\n *

This is a public API. You do not need any credentials to call this API.

\n */\nvar GetCredentialsForIdentityCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetCredentialsForIdentityCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetCredentialsForIdentityCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetCredentialsForIdentityCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"GetCredentialsForIdentityCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCredentialsForIdentityInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCredentialsForIdentityResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetCredentialsForIdentityCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetCredentialsForIdentityCommand\"])(input, context);\n };\n GetCredentialsForIdentityCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetCredentialsForIdentityCommand\"])(output, context);\n };\n return GetCredentialsForIdentityCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetCredentialsForIdentityCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetCredentialsForIdentityCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdCommand.js ***! \****************************************************************************************/ /*! exports provided: GetIdCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetIdCommand\", function() { return GetIdCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Generates (or retrieves) a Cognito ID. Supplying multiple logins will create an\n * implicit linked account.

\n *

This is a public API. You do not need any credentials to call this API.

\n */\nvar GetIdCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetIdCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetIdCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetIdCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"GetIdCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetIdInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetIdResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetIdCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetIdCommand\"])(input, context);\n };\n GetIdCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetIdCommand\"])(output, context);\n };\n return GetIdCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetIdCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdentityPoolRolesCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdentityPoolRolesCommand.js ***! \*******************************************************************************************************/ /*! exports provided: GetIdentityPoolRolesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetIdentityPoolRolesCommand\", function() { return GetIdentityPoolRolesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Gets the roles for an identity pool.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar GetIdentityPoolRolesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetIdentityPoolRolesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetIdentityPoolRolesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetIdentityPoolRolesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"GetIdentityPoolRolesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetIdentityPoolRolesInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetIdentityPoolRolesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetIdentityPoolRolesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetIdentityPoolRolesCommand\"])(input, context);\n };\n GetIdentityPoolRolesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetIdentityPoolRolesCommand\"])(output, context);\n };\n return GetIdentityPoolRolesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetIdentityPoolRolesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdentityPoolRolesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenCommand.js ***! \*************************************************************************************************/ /*! exports provided: GetOpenIdTokenCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenCommand\", function() { return GetOpenIdTokenCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets an OpenID token, using a known Cognito ID. This known Cognito ID is returned by\n * GetId. You can optionally add additional logins for the identity.\n * Supplying multiple logins creates an implicit link.

\n *

The OpenId token is valid for 10 minutes.

\n *

This is a public API. You do not need any credentials to call this API.

\n */\nvar GetOpenIdTokenCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetOpenIdTokenCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetOpenIdTokenCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetOpenIdTokenCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"GetOpenIdTokenCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetOpenIdTokenInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetOpenIdTokenResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetOpenIdTokenCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetOpenIdTokenCommand\"])(input, context);\n };\n GetOpenIdTokenCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetOpenIdTokenCommand\"])(output, context);\n };\n return GetOpenIdTokenCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetOpenIdTokenCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenForDeveloperIdentityCommand.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenForDeveloperIdentityCommand.js ***! \*********************************************************************************************************************/ /*! exports provided: GetOpenIdTokenForDeveloperIdentityCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenForDeveloperIdentityCommand\", function() { return GetOpenIdTokenForDeveloperIdentityCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Registers (or retrieves) a Cognito IdentityId and an OpenID Connect\n * token for a user authenticated by your backend authentication process. Supplying multiple\n * logins will create an implicit linked account. You can only specify one developer provider\n * as part of the Logins map, which is linked to the identity pool. The developer\n * provider is the \"domain\" by which Cognito will refer to your users.

\n *

You can use GetOpenIdTokenForDeveloperIdentity to create a new identity\n * and to link new logins (that is, user credentials issued by a public provider or developer\n * provider) to an existing identity. When you want to create a new identity, the\n * IdentityId should be null. When you want to associate a new login with an\n * existing authenticated/unauthenticated identity, you can do so by providing the existing\n * IdentityId. This API will create the identity in the specified\n * IdentityPoolId.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar GetOpenIdTokenForDeveloperIdentityCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetOpenIdTokenForDeveloperIdentityCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetOpenIdTokenForDeveloperIdentityCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetOpenIdTokenForDeveloperIdentityCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"GetOpenIdTokenForDeveloperIdentityCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetOpenIdTokenForDeveloperIdentityInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetOpenIdTokenForDeveloperIdentityResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetOpenIdTokenForDeveloperIdentityCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand\"])(input, context);\n };\n GetOpenIdTokenForDeveloperIdentityCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand\"])(output, context);\n };\n return GetOpenIdTokenForDeveloperIdentityCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetOpenIdTokenForDeveloperIdentityCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenForDeveloperIdentityCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentitiesCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentitiesCommand.js ***! \*************************************************************************************************/ /*! exports provided: ListIdentitiesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListIdentitiesCommand\", function() { return ListIdentitiesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Lists the identities in an identity pool.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar ListIdentitiesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListIdentitiesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListIdentitiesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListIdentitiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"ListIdentitiesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListIdentitiesInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListIdentitiesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListIdentitiesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListIdentitiesCommand\"])(input, context);\n };\n ListIdentitiesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListIdentitiesCommand\"])(output, context);\n };\n return ListIdentitiesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListIdentitiesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentitiesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentityPoolsCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentityPoolsCommand.js ***! \****************************************************************************************************/ /*! exports provided: ListIdentityPoolsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListIdentityPoolsCommand\", function() { return ListIdentityPoolsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Lists all of the Cognito identity pools registered for your account.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar ListIdentityPoolsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListIdentityPoolsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListIdentityPoolsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListIdentityPoolsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"ListIdentityPoolsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListIdentityPoolsInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListIdentityPoolsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListIdentityPoolsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListIdentityPoolsCommand\"])(input, context);\n };\n ListIdentityPoolsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListIdentityPoolsCommand\"])(output, context);\n };\n return ListIdentityPoolsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListIdentityPoolsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentityPoolsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListTagsForResourceCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListTagsForResourceCommand.js ***! \******************************************************************************************************/ /*! exports provided: ListTagsForResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceCommand\", function() { return ListTagsForResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Lists the tags that are assigned to an Amazon Cognito identity pool.

\n *

A tag is a label that you can apply to identity pools to categorize and manage them in\n * different ways, such as by purpose, owner, environment, or other criteria.

\n *

You can use this action up to 10 times per second, per account.

\n */\nvar ListTagsForResourceCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTagsForResourceCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTagsForResourceCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"ListTagsForResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForResourceInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForResourceResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTagsForResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListTagsForResourceCommand\"])(input, context);\n };\n ListTagsForResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListTagsForResourceCommand\"])(output, context);\n };\n return ListTagsForResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListTagsForResourceCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListTagsForResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/LookupDeveloperIdentityCommand.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/LookupDeveloperIdentityCommand.js ***! \**********************************************************************************************************/ /*! exports provided: LookupDeveloperIdentityCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LookupDeveloperIdentityCommand\", function() { return LookupDeveloperIdentityCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Retrieves the IdentityID associated with a\n * DeveloperUserIdentifier or the list of DeveloperUserIdentifier\n * values associated with an IdentityId for an existing identity. Either\n * IdentityID or DeveloperUserIdentifier must not be null. If you\n * supply only one of these values, the other value will be searched in the database and\n * returned as a part of the response. If you supply both,\n * DeveloperUserIdentifier will be matched against IdentityID. If\n * the values are verified against the database, the response returns both values and is the\n * same as the request. Otherwise a ResourceConflictException is\n * thrown.

\n *

\n * LookupDeveloperIdentity is intended for low-throughput control plane\n * operations: for example, to enable customer service to locate an identity ID by username.\n * If you are using it for higher-volume operations such as user authentication, your requests\n * are likely to be throttled. GetOpenIdTokenForDeveloperIdentity is a\n * better option for higher-volume operations for user authentication.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar LookupDeveloperIdentityCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LookupDeveloperIdentityCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function LookupDeveloperIdentityCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n LookupDeveloperIdentityCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"LookupDeveloperIdentityCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"LookupDeveloperIdentityInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"LookupDeveloperIdentityResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n LookupDeveloperIdentityCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1LookupDeveloperIdentityCommand\"])(input, context);\n };\n LookupDeveloperIdentityCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1LookupDeveloperIdentityCommand\"])(output, context);\n };\n return LookupDeveloperIdentityCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=LookupDeveloperIdentityCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/LookupDeveloperIdentityCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/MergeDeveloperIdentitiesCommand.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/MergeDeveloperIdentitiesCommand.js ***! \***********************************************************************************************************/ /*! exports provided: MergeDeveloperIdentitiesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MergeDeveloperIdentitiesCommand\", function() { return MergeDeveloperIdentitiesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Merges two users having different IdentityIds, existing in the same\n * identity pool, and identified by the same developer provider. You can use this action to\n * request that discrete users be merged and identified as a single user in the Cognito\n * environment. Cognito associates the given source user (SourceUserIdentifier)\n * with the IdentityId of the DestinationUserIdentifier. Only\n * developer-authenticated users can be merged. If the users to be merged are associated with\n * the same public provider, but as two different users, an exception will be\n * thrown.

\n *

The number of linked logins is limited to 20. So, the number of linked logins for the\n * source user, SourceUserIdentifier, and the destination user,\n * DestinationUserIdentifier, together should not be larger than 20.\n * Otherwise, an exception will be thrown.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar MergeDeveloperIdentitiesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(MergeDeveloperIdentitiesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function MergeDeveloperIdentitiesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n MergeDeveloperIdentitiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"MergeDeveloperIdentitiesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"MergeDeveloperIdentitiesInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"MergeDeveloperIdentitiesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n MergeDeveloperIdentitiesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1MergeDeveloperIdentitiesCommand\"])(input, context);\n };\n MergeDeveloperIdentitiesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1MergeDeveloperIdentitiesCommand\"])(output, context);\n };\n return MergeDeveloperIdentitiesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=MergeDeveloperIdentitiesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/MergeDeveloperIdentitiesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/SetIdentityPoolRolesCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/SetIdentityPoolRolesCommand.js ***! \*******************************************************************************************************/ /*! exports provided: SetIdentityPoolRolesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SetIdentityPoolRolesCommand\", function() { return SetIdentityPoolRolesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Sets the roles for an identity pool. These roles are used when making calls to GetCredentialsForIdentity action.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar SetIdentityPoolRolesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SetIdentityPoolRolesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function SetIdentityPoolRolesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n SetIdentityPoolRolesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"SetIdentityPoolRolesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SetIdentityPoolRolesInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SetIdentityPoolRolesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1SetIdentityPoolRolesCommand\"])(input, context);\n };\n SetIdentityPoolRolesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1SetIdentityPoolRolesCommand\"])(output, context);\n };\n return SetIdentityPoolRolesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=SetIdentityPoolRolesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/SetIdentityPoolRolesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/TagResourceCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/TagResourceCommand.js ***! \**********************************************************************************************/ /*! exports provided: TagResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceCommand\", function() { return TagResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Assigns a set of tags to an Amazon Cognito identity pool. A tag is a label that you can\n * use to categorize and manage identity pools in different ways, such as by purpose, owner,\n * environment, or other criteria.

\n *

Each tag consists of a key and value, both of which you define. A key is a general\n * category for more specific values. For example, if you have two versions of an identity\n * pool, one for testing and another for production, you might assign an\n * Environment tag key to both identity pools. The value of this key might be\n * Test for one identity pool and Production for the\n * other.

\n *

Tags are useful for cost tracking and access control. You can activate your tags so that\n * they appear on the Billing and Cost Management console, where you can track the costs\n * associated with your identity pools. In an IAM policy, you can constrain permissions for\n * identity pools based on specific tags or tag values.

\n *

You can use this action up to 5 times per second, per account. An identity pool can have\n * as many as 50 tags.

\n */\nvar TagResourceCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TagResourceCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function TagResourceCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n TagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"TagResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TagResourceInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TagResourceResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n TagResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1TagResourceCommand\"])(input, context);\n };\n TagResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1TagResourceCommand\"])(output, context);\n };\n return TagResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=TagResourceCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/TagResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkDeveloperIdentityCommand.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkDeveloperIdentityCommand.js ***! \**********************************************************************************************************/ /*! exports provided: UnlinkDeveloperIdentityCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnlinkDeveloperIdentityCommand\", function() { return UnlinkDeveloperIdentityCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Unlinks a DeveloperUserIdentifier from an existing identity. Unlinked\n * developer users will be considered new identities next time they are seen. If, for a given\n * Cognito identity, you remove all federated identities as well as the developer user\n * identifier, the Cognito identity becomes inaccessible.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar UnlinkDeveloperIdentityCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UnlinkDeveloperIdentityCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UnlinkDeveloperIdentityCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UnlinkDeveloperIdentityCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"UnlinkDeveloperIdentityCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UnlinkDeveloperIdentityInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UnlinkDeveloperIdentityCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UnlinkDeveloperIdentityCommand\"])(input, context);\n };\n UnlinkDeveloperIdentityCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UnlinkDeveloperIdentityCommand\"])(output, context);\n };\n return UnlinkDeveloperIdentityCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=UnlinkDeveloperIdentityCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkDeveloperIdentityCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkIdentityCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkIdentityCommand.js ***! \*************************************************************************************************/ /*! exports provided: UnlinkIdentityCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnlinkIdentityCommand\", function() { return UnlinkIdentityCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Unlinks a federated identity from an existing account. Unlinked logins will be\n * considered new identities next time they are seen. Removing the last linked login will make\n * this identity inaccessible.

\n *

This is a public API. You do not need any credentials to call this API.

\n */\nvar UnlinkIdentityCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UnlinkIdentityCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UnlinkIdentityCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UnlinkIdentityCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"UnlinkIdentityCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UnlinkIdentityInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UnlinkIdentityCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UnlinkIdentityCommand\"])(input, context);\n };\n UnlinkIdentityCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UnlinkIdentityCommand\"])(output, context);\n };\n return UnlinkIdentityCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UnlinkIdentityCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkIdentityCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UntagResourceCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UntagResourceCommand.js ***! \************************************************************************************************/ /*! exports provided: UntagResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceCommand\", function() { return UntagResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Removes the specified tags from an Amazon Cognito identity pool. You can use this action\n * up to 5 times per second, per account

\n */\nvar UntagResourceCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UntagResourceCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UntagResourceCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UntagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"UntagResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UntagResourceInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UntagResourceResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UntagResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UntagResourceCommand\"])(input, context);\n };\n UntagResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UntagResourceCommand\"])(output, context);\n };\n return UntagResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=UntagResourceCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UntagResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UpdateIdentityPoolCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UpdateIdentityPoolCommand.js ***! \*****************************************************************************************************/ /*! exports provided: UpdateIdentityPoolCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateIdentityPoolCommand\", function() { return UpdateIdentityPoolCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Updates an identity pool.

\n *

You must use AWS Developer credentials to call this API.

\n */\nvar UpdateIdentityPoolCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateIdentityPoolCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateIdentityPoolCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateIdentityPoolCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_4__[\"getAwsAuthPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"CognitoIdentityClient\";\n var commandName = \"UpdateIdentityPoolCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"IdentityPool\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"IdentityPool\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateIdentityPoolCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UpdateIdentityPoolCommand\"])(input, context);\n };\n UpdateIdentityPoolCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UpdateIdentityPoolCommand\"])(output, context);\n };\n return UpdateIdentityPoolCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=UpdateIdentityPoolCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UpdateIdentityPoolCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/endpoints.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/endpoints.js ***! \****************************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"cognito-identity.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"cognito-identity.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"cognito-identity.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"cognito-identity.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"cognito-identity.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"cognito-identity.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"cognito-identity.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"cognito-identity.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"cognito-identity.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"cognito-identity.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"cognito-identity.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"cn-north-1\":\n regionInfo = {\n hostname: \"cognito-identity.cn-north-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"cognito-identity.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-north-1\":\n regionInfo = {\n hostname: \"cognito-identity.eu-north-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"cognito-identity.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"cognito-identity.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-3\":\n regionInfo = {\n hostname: \"cognito-identity.eu-west-3.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"fips-us-east-1\":\n regionInfo = {\n hostname: \"cognito-identity-fips.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"fips-us-east-2\":\n regionInfo = {\n hostname: \"cognito-identity-fips.us-east-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-2\",\n };\n break;\n case \"fips-us-gov-west-1\":\n regionInfo = {\n hostname: \"cognito-identity-fips.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"fips-us-west-2\":\n regionInfo = {\n hostname: \"cognito-identity-fips.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n case \"sa-east-1\":\n regionInfo = {\n hostname: \"cognito-identity.sa-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"cognito-identity.us-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-2\":\n regionInfo = {\n hostname: \"cognito-identity.us-east-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"cognito-identity.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n };\n break;\n case \"us-west-1\":\n regionInfo = {\n hostname: \"cognito-identity.us-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"cognito-identity.us-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"cognito-identity\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/index.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/index.js ***! \************************************************************************/ /*! exports provided: CognitoIdentityClient, CognitoIdentity, CreateIdentityPoolCommand, DeleteIdentitiesCommand, DeleteIdentityPoolCommand, DescribeIdentityCommand, DescribeIdentityPoolCommand, GetCredentialsForIdentityCommand, GetIdCommand, GetIdentityPoolRolesCommand, GetOpenIdTokenCommand, GetOpenIdTokenForDeveloperIdentityCommand, ListIdentitiesCommand, ListIdentityPoolsCommand, paginateListIdentityPools, ListTagsForResourceCommand, LookupDeveloperIdentityCommand, MergeDeveloperIdentitiesCommand, SetIdentityPoolRolesCommand, TagResourceCommand, UnlinkDeveloperIdentityCommand, UnlinkIdentityCommand, UntagResourceCommand, UpdateIdentityPoolCommand, AmbiguousRoleResolutionType, CognitoIdentityProvider, CreateIdentityPoolInput, IdentityPool, InternalErrorException, InvalidParameterException, LimitExceededException, NotAuthorizedException, ResourceConflictException, TooManyRequestsException, DeleteIdentitiesInput, ErrorCode, UnprocessedIdentityId, DeleteIdentitiesResponse, DeleteIdentityPoolInput, ResourceNotFoundException, DescribeIdentityInput, IdentityDescription, DescribeIdentityPoolInput, ExternalServiceException, GetCredentialsForIdentityInput, Credentials, GetCredentialsForIdentityResponse, InvalidIdentityPoolConfigurationException, GetIdInput, GetIdResponse, GetIdentityPoolRolesInput, MappingRuleMatchType, MappingRule, RulesConfigurationType, RoleMappingType, RoleMapping, GetIdentityPoolRolesResponse, GetOpenIdTokenInput, GetOpenIdTokenResponse, DeveloperUserAlreadyRegisteredException, GetOpenIdTokenForDeveloperIdentityInput, GetOpenIdTokenForDeveloperIdentityResponse, ListIdentitiesInput, ListIdentitiesResponse, ListIdentityPoolsInput, IdentityPoolShortDescription, ListIdentityPoolsResponse, ListTagsForResourceInput, ListTagsForResourceResponse, LookupDeveloperIdentityInput, LookupDeveloperIdentityResponse, MergeDeveloperIdentitiesInput, MergeDeveloperIdentitiesResponse, ConcurrentModificationException, SetIdentityPoolRolesInput, TagResourceInput, TagResourceResponse, UnlinkDeveloperIdentityInput, UnlinkIdentityInput, UntagResourceInput, UntagResourceResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CognitoIdentityClient */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentityClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoIdentityClient\", function() { return _CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_0__[\"CognitoIdentityClient\"]; });\n\n/* harmony import */ var _CognitoIdentity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CognitoIdentity */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentity.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoIdentity\", function() { return _CognitoIdentity__WEBPACK_IMPORTED_MODULE_1__[\"CognitoIdentity\"]; });\n\n/* harmony import */ var _commands_CreateIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CreateIdentityPoolCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/CreateIdentityPoolCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateIdentityPoolCommand\", function() { return _commands_CreateIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_2__[\"CreateIdentityPoolCommand\"]; });\n\n/* harmony import */ var _commands_DeleteIdentitiesCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DeleteIdentitiesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentitiesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentitiesCommand\", function() { return _commands_DeleteIdentitiesCommand__WEBPACK_IMPORTED_MODULE_3__[\"DeleteIdentitiesCommand\"]; });\n\n/* harmony import */ var _commands_DeleteIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/DeleteIdentityPoolCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DeleteIdentityPoolCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentityPoolCommand\", function() { return _commands_DeleteIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_4__[\"DeleteIdentityPoolCommand\"]; });\n\n/* harmony import */ var _commands_DescribeIdentityCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/DescribeIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityCommand\", function() { return _commands_DescribeIdentityCommand__WEBPACK_IMPORTED_MODULE_5__[\"DescribeIdentityCommand\"]; });\n\n/* harmony import */ var _commands_DescribeIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/DescribeIdentityPoolCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/DescribeIdentityPoolCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityPoolCommand\", function() { return _commands_DescribeIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_6__[\"DescribeIdentityPoolCommand\"]; });\n\n/* harmony import */ var _commands_GetCredentialsForIdentityCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/GetCredentialsForIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetCredentialsForIdentityCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCredentialsForIdentityCommand\", function() { return _commands_GetCredentialsForIdentityCommand__WEBPACK_IMPORTED_MODULE_7__[\"GetCredentialsForIdentityCommand\"]; });\n\n/* harmony import */ var _commands_GetIdCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/GetIdCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdCommand\", function() { return _commands_GetIdCommand__WEBPACK_IMPORTED_MODULE_8__[\"GetIdCommand\"]; });\n\n/* harmony import */ var _commands_GetIdentityPoolRolesCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/GetIdentityPoolRolesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetIdentityPoolRolesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdentityPoolRolesCommand\", function() { return _commands_GetIdentityPoolRolesCommand__WEBPACK_IMPORTED_MODULE_9__[\"GetIdentityPoolRolesCommand\"]; });\n\n/* harmony import */ var _commands_GetOpenIdTokenCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/GetOpenIdTokenCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenCommand\", function() { return _commands_GetOpenIdTokenCommand__WEBPACK_IMPORTED_MODULE_10__[\"GetOpenIdTokenCommand\"]; });\n\n/* harmony import */ var _commands_GetOpenIdTokenForDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/GetOpenIdTokenForDeveloperIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/GetOpenIdTokenForDeveloperIdentityCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenForDeveloperIdentityCommand\", function() { return _commands_GetOpenIdTokenForDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_11__[\"GetOpenIdTokenForDeveloperIdentityCommand\"]; });\n\n/* harmony import */ var _commands_ListIdentitiesCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/ListIdentitiesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentitiesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentitiesCommand\", function() { return _commands_ListIdentitiesCommand__WEBPACK_IMPORTED_MODULE_12__[\"ListIdentitiesCommand\"]; });\n\n/* harmony import */ var _commands_ListIdentityPoolsCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/ListIdentityPoolsCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentityPoolsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentityPoolsCommand\", function() { return _commands_ListIdentityPoolsCommand__WEBPACK_IMPORTED_MODULE_13__[\"ListIdentityPoolsCommand\"]; });\n\n/* harmony import */ var _pagination_ListIdentityPoolsPaginator__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./pagination/ListIdentityPoolsPaginator */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/pagination/ListIdentityPoolsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListIdentityPools\", function() { return _pagination_ListIdentityPoolsPaginator__WEBPACK_IMPORTED_MODULE_14__[\"paginateListIdentityPools\"]; });\n\n/* harmony import */ var _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/ListTagsForResourceCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListTagsForResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceCommand\", function() { return _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_15__[\"ListTagsForResourceCommand\"]; });\n\n/* harmony import */ var _commands_LookupDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/LookupDeveloperIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/LookupDeveloperIdentityCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LookupDeveloperIdentityCommand\", function() { return _commands_LookupDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_16__[\"LookupDeveloperIdentityCommand\"]; });\n\n/* harmony import */ var _commands_MergeDeveloperIdentitiesCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/MergeDeveloperIdentitiesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/MergeDeveloperIdentitiesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeDeveloperIdentitiesCommand\", function() { return _commands_MergeDeveloperIdentitiesCommand__WEBPACK_IMPORTED_MODULE_17__[\"MergeDeveloperIdentitiesCommand\"]; });\n\n/* harmony import */ var _commands_SetIdentityPoolRolesCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/SetIdentityPoolRolesCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/SetIdentityPoolRolesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SetIdentityPoolRolesCommand\", function() { return _commands_SetIdentityPoolRolesCommand__WEBPACK_IMPORTED_MODULE_18__[\"SetIdentityPoolRolesCommand\"]; });\n\n/* harmony import */ var _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/TagResourceCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/TagResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceCommand\", function() { return _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_19__[\"TagResourceCommand\"]; });\n\n/* harmony import */ var _commands_UnlinkDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/UnlinkDeveloperIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkDeveloperIdentityCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnlinkDeveloperIdentityCommand\", function() { return _commands_UnlinkDeveloperIdentityCommand__WEBPACK_IMPORTED_MODULE_20__[\"UnlinkDeveloperIdentityCommand\"]; });\n\n/* harmony import */ var _commands_UnlinkIdentityCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/UnlinkIdentityCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UnlinkIdentityCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnlinkIdentityCommand\", function() { return _commands_UnlinkIdentityCommand__WEBPACK_IMPORTED_MODULE_21__[\"UnlinkIdentityCommand\"]; });\n\n/* harmony import */ var _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/UntagResourceCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UntagResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceCommand\", function() { return _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_22__[\"UntagResourceCommand\"]; });\n\n/* harmony import */ var _commands_UpdateIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/UpdateIdentityPoolCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/UpdateIdentityPoolCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateIdentityPoolCommand\", function() { return _commands_UpdateIdentityPoolCommand__WEBPACK_IMPORTED_MODULE_23__[\"UpdateIdentityPoolCommand\"]; });\n\n/* harmony import */ var _pagination_Interfaces__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./pagination/Interfaces */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/pagination/Interfaces.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmbiguousRoleResolutionType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"AmbiguousRoleResolutionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoIdentityProvider\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"CognitoIdentityProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateIdentityPoolInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"CreateIdentityPoolInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdentityPool\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"IdentityPool\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalErrorException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"InternalErrorException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"InvalidParameterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotAuthorizedException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"NotAuthorizedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceConflictException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ResourceConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"TooManyRequestsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentitiesInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"DeleteIdentitiesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ErrorCode\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ErrorCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnprocessedIdentityId\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"UnprocessedIdentityId\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentitiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"DeleteIdentitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentityPoolInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"DeleteIdentityPoolInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"DescribeIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdentityDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"IdentityDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityPoolInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"DescribeIdentityPoolInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExternalServiceException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ExternalServiceException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCredentialsForIdentityInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetCredentialsForIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Credentials\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"Credentials\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCredentialsForIdentityResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetCredentialsForIdentityResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidIdentityPoolConfigurationException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"InvalidIdentityPoolConfigurationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetIdInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetIdResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdentityPoolRolesInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetIdentityPoolRolesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MappingRuleMatchType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"MappingRuleMatchType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MappingRule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"MappingRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RulesConfigurationType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"RulesConfigurationType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RoleMappingType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"RoleMappingType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RoleMapping\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"RoleMapping\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdentityPoolRolesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetIdentityPoolRolesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetOpenIdTokenInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetOpenIdTokenResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeveloperUserAlreadyRegisteredException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"DeveloperUserAlreadyRegisteredException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenForDeveloperIdentityInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetOpenIdTokenForDeveloperIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenForDeveloperIdentityResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"GetOpenIdTokenForDeveloperIdentityResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentitiesInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ListIdentitiesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentitiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ListIdentitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentityPoolsInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ListIdentityPoolsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdentityPoolShortDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"IdentityPoolShortDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentityPoolsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ListIdentityPoolsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ListTagsForResourceInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ListTagsForResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LookupDeveloperIdentityInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"LookupDeveloperIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LookupDeveloperIdentityResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"LookupDeveloperIdentityResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeDeveloperIdentitiesInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"MergeDeveloperIdentitiesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeDeveloperIdentitiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"MergeDeveloperIdentitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"ConcurrentModificationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SetIdentityPoolRolesInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"SetIdentityPoolRolesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"TagResourceInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"TagResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnlinkDeveloperIdentityInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"UnlinkDeveloperIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnlinkIdentityInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"UnlinkIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"UntagResourceInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_25__[\"UntagResourceResponse\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/index.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/index.js ***! \*******************************************************************************/ /*! exports provided: AmbiguousRoleResolutionType, CognitoIdentityProvider, CreateIdentityPoolInput, IdentityPool, InternalErrorException, InvalidParameterException, LimitExceededException, NotAuthorizedException, ResourceConflictException, TooManyRequestsException, DeleteIdentitiesInput, ErrorCode, UnprocessedIdentityId, DeleteIdentitiesResponse, DeleteIdentityPoolInput, ResourceNotFoundException, DescribeIdentityInput, IdentityDescription, DescribeIdentityPoolInput, ExternalServiceException, GetCredentialsForIdentityInput, Credentials, GetCredentialsForIdentityResponse, InvalidIdentityPoolConfigurationException, GetIdInput, GetIdResponse, GetIdentityPoolRolesInput, MappingRuleMatchType, MappingRule, RulesConfigurationType, RoleMappingType, RoleMapping, GetIdentityPoolRolesResponse, GetOpenIdTokenInput, GetOpenIdTokenResponse, DeveloperUserAlreadyRegisteredException, GetOpenIdTokenForDeveloperIdentityInput, GetOpenIdTokenForDeveloperIdentityResponse, ListIdentitiesInput, ListIdentitiesResponse, ListIdentityPoolsInput, IdentityPoolShortDescription, ListIdentityPoolsResponse, ListTagsForResourceInput, ListTagsForResourceResponse, LookupDeveloperIdentityInput, LookupDeveloperIdentityResponse, MergeDeveloperIdentitiesInput, MergeDeveloperIdentitiesResponse, ConcurrentModificationException, SetIdentityPoolRolesInput, TagResourceInput, TagResourceResponse, UnlinkDeveloperIdentityInput, UnlinkIdentityInput, UntagResourceInput, UntagResourceResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmbiguousRoleResolutionType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AmbiguousRoleResolutionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoIdentityProvider\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CognitoIdentityProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateIdentityPoolInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateIdentityPoolInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdentityPool\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IdentityPool\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalErrorException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalErrorException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidParameterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotAuthorizedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NotAuthorizedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceConflictException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TooManyRequestsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentitiesInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteIdentitiesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ErrorCode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ErrorCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnprocessedIdentityId\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnprocessedIdentityId\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentitiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteIdentitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentityPoolInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteIdentityPoolInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdentityDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IdentityDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityPoolInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeIdentityPoolInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExternalServiceException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExternalServiceException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCredentialsForIdentityInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCredentialsForIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Credentials\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Credentials\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCredentialsForIdentityResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCredentialsForIdentityResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidIdentityPoolConfigurationException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidIdentityPoolConfigurationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetIdInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetIdResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdentityPoolRolesInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetIdentityPoolRolesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MappingRuleMatchType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MappingRuleMatchType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MappingRule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MappingRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RulesConfigurationType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RulesConfigurationType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RoleMappingType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RoleMappingType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RoleMapping\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RoleMapping\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetIdentityPoolRolesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetIdentityPoolRolesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetOpenIdTokenInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetOpenIdTokenResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeveloperUserAlreadyRegisteredException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeveloperUserAlreadyRegisteredException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenForDeveloperIdentityInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetOpenIdTokenForDeveloperIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenForDeveloperIdentityResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetOpenIdTokenForDeveloperIdentityResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentitiesInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListIdentitiesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentitiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListIdentitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentityPoolsInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListIdentityPoolsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdentityPoolShortDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IdentityPoolShortDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListIdentityPoolsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListIdentityPoolsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForResourceInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LookupDeveloperIdentityInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LookupDeveloperIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LookupDeveloperIdentityResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LookupDeveloperIdentityResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeDeveloperIdentitiesInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MergeDeveloperIdentitiesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeDeveloperIdentitiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MergeDeveloperIdentitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConcurrentModificationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SetIdentityPoolRolesInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SetIdentityPoolRolesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TagResourceInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TagResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnlinkDeveloperIdentityInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnlinkDeveloperIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnlinkIdentityInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnlinkIdentityInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UntagResourceInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UntagResourceResponse\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js ***! \**********************************************************************************/ /*! exports provided: AmbiguousRoleResolutionType, CognitoIdentityProvider, CreateIdentityPoolInput, IdentityPool, InternalErrorException, InvalidParameterException, LimitExceededException, NotAuthorizedException, ResourceConflictException, TooManyRequestsException, DeleteIdentitiesInput, ErrorCode, UnprocessedIdentityId, DeleteIdentitiesResponse, DeleteIdentityPoolInput, ResourceNotFoundException, DescribeIdentityInput, IdentityDescription, DescribeIdentityPoolInput, ExternalServiceException, GetCredentialsForIdentityInput, Credentials, GetCredentialsForIdentityResponse, InvalidIdentityPoolConfigurationException, GetIdInput, GetIdResponse, GetIdentityPoolRolesInput, MappingRuleMatchType, MappingRule, RulesConfigurationType, RoleMappingType, RoleMapping, GetIdentityPoolRolesResponse, GetOpenIdTokenInput, GetOpenIdTokenResponse, DeveloperUserAlreadyRegisteredException, GetOpenIdTokenForDeveloperIdentityInput, GetOpenIdTokenForDeveloperIdentityResponse, ListIdentitiesInput, ListIdentitiesResponse, ListIdentityPoolsInput, IdentityPoolShortDescription, ListIdentityPoolsResponse, ListTagsForResourceInput, ListTagsForResourceResponse, LookupDeveloperIdentityInput, LookupDeveloperIdentityResponse, MergeDeveloperIdentitiesInput, MergeDeveloperIdentitiesResponse, ConcurrentModificationException, SetIdentityPoolRolesInput, TagResourceInput, TagResourceResponse, UnlinkDeveloperIdentityInput, UnlinkIdentityInput, UntagResourceInput, UntagResourceResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AmbiguousRoleResolutionType\", function() { return AmbiguousRoleResolutionType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CognitoIdentityProvider\", function() { return CognitoIdentityProvider; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateIdentityPoolInput\", function() { return CreateIdentityPoolInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IdentityPool\", function() { return IdentityPool; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalErrorException\", function() { return InternalErrorException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return InvalidParameterException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return LimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NotAuthorizedException\", function() { return NotAuthorizedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceConflictException\", function() { return ResourceConflictException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return TooManyRequestsException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentitiesInput\", function() { return DeleteIdentitiesInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ErrorCode\", function() { return ErrorCode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnprocessedIdentityId\", function() { return UnprocessedIdentityId; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentitiesResponse\", function() { return DeleteIdentitiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteIdentityPoolInput\", function() { return DeleteIdentityPoolInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityInput\", function() { return DescribeIdentityInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IdentityDescription\", function() { return IdentityDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeIdentityPoolInput\", function() { return DescribeIdentityPoolInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExternalServiceException\", function() { return ExternalServiceException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCredentialsForIdentityInput\", function() { return GetCredentialsForIdentityInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Credentials\", function() { return Credentials; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCredentialsForIdentityResponse\", function() { return GetCredentialsForIdentityResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidIdentityPoolConfigurationException\", function() { return InvalidIdentityPoolConfigurationException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetIdInput\", function() { return GetIdInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetIdResponse\", function() { return GetIdResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetIdentityPoolRolesInput\", function() { return GetIdentityPoolRolesInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MappingRuleMatchType\", function() { return MappingRuleMatchType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MappingRule\", function() { return MappingRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RulesConfigurationType\", function() { return RulesConfigurationType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RoleMappingType\", function() { return RoleMappingType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RoleMapping\", function() { return RoleMapping; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetIdentityPoolRolesResponse\", function() { return GetIdentityPoolRolesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenInput\", function() { return GetOpenIdTokenInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenResponse\", function() { return GetOpenIdTokenResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeveloperUserAlreadyRegisteredException\", function() { return DeveloperUserAlreadyRegisteredException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenForDeveloperIdentityInput\", function() { return GetOpenIdTokenForDeveloperIdentityInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetOpenIdTokenForDeveloperIdentityResponse\", function() { return GetOpenIdTokenForDeveloperIdentityResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListIdentitiesInput\", function() { return ListIdentitiesInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListIdentitiesResponse\", function() { return ListIdentitiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListIdentityPoolsInput\", function() { return ListIdentityPoolsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IdentityPoolShortDescription\", function() { return IdentityPoolShortDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListIdentityPoolsResponse\", function() { return ListIdentityPoolsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceInput\", function() { return ListTagsForResourceInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponse\", function() { return ListTagsForResourceResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LookupDeveloperIdentityInput\", function() { return LookupDeveloperIdentityInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LookupDeveloperIdentityResponse\", function() { return LookupDeveloperIdentityResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MergeDeveloperIdentitiesInput\", function() { return MergeDeveloperIdentitiesInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MergeDeveloperIdentitiesResponse\", function() { return MergeDeveloperIdentitiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return ConcurrentModificationException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SetIdentityPoolRolesInput\", function() { return SetIdentityPoolRolesInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceInput\", function() { return TagResourceInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceResponse\", function() { return TagResourceResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnlinkDeveloperIdentityInput\", function() { return UnlinkDeveloperIdentityInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnlinkIdentityInput\", function() { return UnlinkIdentityInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceInput\", function() { return UntagResourceInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceResponse\", function() { return UntagResourceResponse; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n\nvar AmbiguousRoleResolutionType;\n(function (AmbiguousRoleResolutionType) {\n AmbiguousRoleResolutionType[\"AUTHENTICATED_ROLE\"] = \"AuthenticatedRole\";\n AmbiguousRoleResolutionType[\"DENY\"] = \"Deny\";\n})(AmbiguousRoleResolutionType || (AmbiguousRoleResolutionType = {}));\nvar CognitoIdentityProvider;\n(function (CognitoIdentityProvider) {\n CognitoIdentityProvider.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CognitoIdentityProvider || (CognitoIdentityProvider = {}));\nvar CreateIdentityPoolInput;\n(function (CreateIdentityPoolInput) {\n CreateIdentityPoolInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateIdentityPoolInput || (CreateIdentityPoolInput = {}));\nvar IdentityPool;\n(function (IdentityPool) {\n IdentityPool.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IdentityPool || (IdentityPool = {}));\nvar InternalErrorException;\n(function (InternalErrorException) {\n InternalErrorException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InternalErrorException || (InternalErrorException = {}));\nvar InvalidParameterException;\n(function (InvalidParameterException) {\n InvalidParameterException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidParameterException || (InvalidParameterException = {}));\nvar LimitExceededException;\n(function (LimitExceededException) {\n LimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LimitExceededException || (LimitExceededException = {}));\nvar NotAuthorizedException;\n(function (NotAuthorizedException) {\n NotAuthorizedException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NotAuthorizedException || (NotAuthorizedException = {}));\nvar ResourceConflictException;\n(function (ResourceConflictException) {\n ResourceConflictException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceConflictException || (ResourceConflictException = {}));\nvar TooManyRequestsException;\n(function (TooManyRequestsException) {\n TooManyRequestsException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TooManyRequestsException || (TooManyRequestsException = {}));\nvar DeleteIdentitiesInput;\n(function (DeleteIdentitiesInput) {\n DeleteIdentitiesInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteIdentitiesInput || (DeleteIdentitiesInput = {}));\nvar ErrorCode;\n(function (ErrorCode) {\n ErrorCode[\"ACCESS_DENIED\"] = \"AccessDenied\";\n ErrorCode[\"INTERNAL_SERVER_ERROR\"] = \"InternalServerError\";\n})(ErrorCode || (ErrorCode = {}));\nvar UnprocessedIdentityId;\n(function (UnprocessedIdentityId) {\n UnprocessedIdentityId.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnprocessedIdentityId || (UnprocessedIdentityId = {}));\nvar DeleteIdentitiesResponse;\n(function (DeleteIdentitiesResponse) {\n DeleteIdentitiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteIdentitiesResponse || (DeleteIdentitiesResponse = {}));\nvar DeleteIdentityPoolInput;\n(function (DeleteIdentityPoolInput) {\n DeleteIdentityPoolInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteIdentityPoolInput || (DeleteIdentityPoolInput = {}));\nvar ResourceNotFoundException;\n(function (ResourceNotFoundException) {\n ResourceNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceNotFoundException || (ResourceNotFoundException = {}));\nvar DescribeIdentityInput;\n(function (DescribeIdentityInput) {\n DescribeIdentityInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeIdentityInput || (DescribeIdentityInput = {}));\nvar IdentityDescription;\n(function (IdentityDescription) {\n IdentityDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IdentityDescription || (IdentityDescription = {}));\nvar DescribeIdentityPoolInput;\n(function (DescribeIdentityPoolInput) {\n DescribeIdentityPoolInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeIdentityPoolInput || (DescribeIdentityPoolInput = {}));\nvar ExternalServiceException;\n(function (ExternalServiceException) {\n ExternalServiceException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExternalServiceException || (ExternalServiceException = {}));\nvar GetCredentialsForIdentityInput;\n(function (GetCredentialsForIdentityInput) {\n GetCredentialsForIdentityInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCredentialsForIdentityInput || (GetCredentialsForIdentityInput = {}));\nvar Credentials;\n(function (Credentials) {\n Credentials.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Credentials || (Credentials = {}));\nvar GetCredentialsForIdentityResponse;\n(function (GetCredentialsForIdentityResponse) {\n GetCredentialsForIdentityResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCredentialsForIdentityResponse || (GetCredentialsForIdentityResponse = {}));\nvar InvalidIdentityPoolConfigurationException;\n(function (InvalidIdentityPoolConfigurationException) {\n InvalidIdentityPoolConfigurationException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidIdentityPoolConfigurationException || (InvalidIdentityPoolConfigurationException = {}));\nvar GetIdInput;\n(function (GetIdInput) {\n GetIdInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetIdInput || (GetIdInput = {}));\nvar GetIdResponse;\n(function (GetIdResponse) {\n GetIdResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetIdResponse || (GetIdResponse = {}));\nvar GetIdentityPoolRolesInput;\n(function (GetIdentityPoolRolesInput) {\n GetIdentityPoolRolesInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetIdentityPoolRolesInput || (GetIdentityPoolRolesInput = {}));\nvar MappingRuleMatchType;\n(function (MappingRuleMatchType) {\n MappingRuleMatchType[\"CONTAINS\"] = \"Contains\";\n MappingRuleMatchType[\"EQUALS\"] = \"Equals\";\n MappingRuleMatchType[\"NOT_EQUAL\"] = \"NotEqual\";\n MappingRuleMatchType[\"STARTS_WITH\"] = \"StartsWith\";\n})(MappingRuleMatchType || (MappingRuleMatchType = {}));\nvar MappingRule;\n(function (MappingRule) {\n MappingRule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MappingRule || (MappingRule = {}));\nvar RulesConfigurationType;\n(function (RulesConfigurationType) {\n RulesConfigurationType.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RulesConfigurationType || (RulesConfigurationType = {}));\nvar RoleMappingType;\n(function (RoleMappingType) {\n RoleMappingType[\"RULES\"] = \"Rules\";\n RoleMappingType[\"TOKEN\"] = \"Token\";\n})(RoleMappingType || (RoleMappingType = {}));\nvar RoleMapping;\n(function (RoleMapping) {\n RoleMapping.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RoleMapping || (RoleMapping = {}));\nvar GetIdentityPoolRolesResponse;\n(function (GetIdentityPoolRolesResponse) {\n GetIdentityPoolRolesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetIdentityPoolRolesResponse || (GetIdentityPoolRolesResponse = {}));\nvar GetOpenIdTokenInput;\n(function (GetOpenIdTokenInput) {\n GetOpenIdTokenInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetOpenIdTokenInput || (GetOpenIdTokenInput = {}));\nvar GetOpenIdTokenResponse;\n(function (GetOpenIdTokenResponse) {\n GetOpenIdTokenResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetOpenIdTokenResponse || (GetOpenIdTokenResponse = {}));\nvar DeveloperUserAlreadyRegisteredException;\n(function (DeveloperUserAlreadyRegisteredException) {\n DeveloperUserAlreadyRegisteredException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeveloperUserAlreadyRegisteredException || (DeveloperUserAlreadyRegisteredException = {}));\nvar GetOpenIdTokenForDeveloperIdentityInput;\n(function (GetOpenIdTokenForDeveloperIdentityInput) {\n GetOpenIdTokenForDeveloperIdentityInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetOpenIdTokenForDeveloperIdentityInput || (GetOpenIdTokenForDeveloperIdentityInput = {}));\nvar GetOpenIdTokenForDeveloperIdentityResponse;\n(function (GetOpenIdTokenForDeveloperIdentityResponse) {\n GetOpenIdTokenForDeveloperIdentityResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetOpenIdTokenForDeveloperIdentityResponse || (GetOpenIdTokenForDeveloperIdentityResponse = {}));\nvar ListIdentitiesInput;\n(function (ListIdentitiesInput) {\n ListIdentitiesInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListIdentitiesInput || (ListIdentitiesInput = {}));\nvar ListIdentitiesResponse;\n(function (ListIdentitiesResponse) {\n ListIdentitiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListIdentitiesResponse || (ListIdentitiesResponse = {}));\nvar ListIdentityPoolsInput;\n(function (ListIdentityPoolsInput) {\n ListIdentityPoolsInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListIdentityPoolsInput || (ListIdentityPoolsInput = {}));\nvar IdentityPoolShortDescription;\n(function (IdentityPoolShortDescription) {\n IdentityPoolShortDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IdentityPoolShortDescription || (IdentityPoolShortDescription = {}));\nvar ListIdentityPoolsResponse;\n(function (ListIdentityPoolsResponse) {\n ListIdentityPoolsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListIdentityPoolsResponse || (ListIdentityPoolsResponse = {}));\nvar ListTagsForResourceInput;\n(function (ListTagsForResourceInput) {\n ListTagsForResourceInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForResourceInput || (ListTagsForResourceInput = {}));\nvar ListTagsForResourceResponse;\n(function (ListTagsForResourceResponse) {\n ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));\nvar LookupDeveloperIdentityInput;\n(function (LookupDeveloperIdentityInput) {\n LookupDeveloperIdentityInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LookupDeveloperIdentityInput || (LookupDeveloperIdentityInput = {}));\nvar LookupDeveloperIdentityResponse;\n(function (LookupDeveloperIdentityResponse) {\n LookupDeveloperIdentityResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LookupDeveloperIdentityResponse || (LookupDeveloperIdentityResponse = {}));\nvar MergeDeveloperIdentitiesInput;\n(function (MergeDeveloperIdentitiesInput) {\n MergeDeveloperIdentitiesInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MergeDeveloperIdentitiesInput || (MergeDeveloperIdentitiesInput = {}));\nvar MergeDeveloperIdentitiesResponse;\n(function (MergeDeveloperIdentitiesResponse) {\n MergeDeveloperIdentitiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MergeDeveloperIdentitiesResponse || (MergeDeveloperIdentitiesResponse = {}));\nvar ConcurrentModificationException;\n(function (ConcurrentModificationException) {\n ConcurrentModificationException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ConcurrentModificationException || (ConcurrentModificationException = {}));\nvar SetIdentityPoolRolesInput;\n(function (SetIdentityPoolRolesInput) {\n SetIdentityPoolRolesInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SetIdentityPoolRolesInput || (SetIdentityPoolRolesInput = {}));\nvar TagResourceInput;\n(function (TagResourceInput) {\n TagResourceInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TagResourceInput || (TagResourceInput = {}));\nvar TagResourceResponse;\n(function (TagResourceResponse) {\n TagResourceResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TagResourceResponse || (TagResourceResponse = {}));\nvar UnlinkDeveloperIdentityInput;\n(function (UnlinkDeveloperIdentityInput) {\n UnlinkDeveloperIdentityInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnlinkDeveloperIdentityInput || (UnlinkDeveloperIdentityInput = {}));\nvar UnlinkIdentityInput;\n(function (UnlinkIdentityInput) {\n UnlinkIdentityInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnlinkIdentityInput || (UnlinkIdentityInput = {}));\nvar UntagResourceInput;\n(function (UntagResourceInput) {\n UntagResourceInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UntagResourceInput || (UntagResourceInput = {}));\nvar UntagResourceResponse;\n(function (UntagResourceResponse) {\n UntagResourceResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UntagResourceResponse || (UntagResourceResponse = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/package.json": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/package.json ***! \****************************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-cognito-identity\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Cognito Identity Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test:unit\\\":\\\"mocha **/cjs/**/*.spec.js\\\",\\\"test:e2e\\\":\\\"mocha **/cjs/**/*.ispec.js && karma start karma.conf.js\\\",\\\"test\\\":\\\"yarn test:unit\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@aws-sdk/client-iam\\\":\\\"3.6.1\\\",\\\"@types/chai\\\":\\\"^4.2.11\\\",\\\"@types/mocha\\\":\\\"^8.0.4\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-cognito-identity\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/pagination/Interfaces.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/pagination/Interfaces.js ***! \****************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=Interfaces.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/pagination/Interfaces.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/pagination/ListIdentityPoolsPaginator.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/pagination/ListIdentityPoolsPaginator.js ***! \********************************************************************************************************/ /*! exports provided: paginateListIdentityPools */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListIdentityPools\", function() { return paginateListIdentityPools; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _CognitoIdentity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../CognitoIdentity */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentity.js\");\n/* harmony import */ var _CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../CognitoIdentityClient */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/CognitoIdentityClient.js\");\n/* harmony import */ var _commands_ListIdentityPoolsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListIdentityPoolsCommand */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/commands/ListIdentityPoolsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListIdentityPoolsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListIdentityPoolsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listIdentityPools.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListIdentityPools(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListIdentityPools_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _CognitoIdentity__WEBPACK_IMPORTED_MODULE_1__[\"CognitoIdentity\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _CognitoIdentityClient__WEBPACK_IMPORTED_MODULE_2__[\"CognitoIdentityClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected CognitoIdentity | CognitoIdentityClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListIdentityPoolsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/pagination/ListIdentityPoolsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js ***! \****************************************************************************************/ /*! exports provided: serializeAws_json1_1CreateIdentityPoolCommand, serializeAws_json1_1DeleteIdentitiesCommand, serializeAws_json1_1DeleteIdentityPoolCommand, serializeAws_json1_1DescribeIdentityCommand, serializeAws_json1_1DescribeIdentityPoolCommand, serializeAws_json1_1GetCredentialsForIdentityCommand, serializeAws_json1_1GetIdCommand, serializeAws_json1_1GetIdentityPoolRolesCommand, serializeAws_json1_1GetOpenIdTokenCommand, serializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand, serializeAws_json1_1ListIdentitiesCommand, serializeAws_json1_1ListIdentityPoolsCommand, serializeAws_json1_1ListTagsForResourceCommand, serializeAws_json1_1LookupDeveloperIdentityCommand, serializeAws_json1_1MergeDeveloperIdentitiesCommand, serializeAws_json1_1SetIdentityPoolRolesCommand, serializeAws_json1_1TagResourceCommand, serializeAws_json1_1UnlinkDeveloperIdentityCommand, serializeAws_json1_1UnlinkIdentityCommand, serializeAws_json1_1UntagResourceCommand, serializeAws_json1_1UpdateIdentityPoolCommand, deserializeAws_json1_1CreateIdentityPoolCommand, deserializeAws_json1_1DeleteIdentitiesCommand, deserializeAws_json1_1DeleteIdentityPoolCommand, deserializeAws_json1_1DescribeIdentityCommand, deserializeAws_json1_1DescribeIdentityPoolCommand, deserializeAws_json1_1GetCredentialsForIdentityCommand, deserializeAws_json1_1GetIdCommand, deserializeAws_json1_1GetIdentityPoolRolesCommand, deserializeAws_json1_1GetOpenIdTokenCommand, deserializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand, deserializeAws_json1_1ListIdentitiesCommand, deserializeAws_json1_1ListIdentityPoolsCommand, deserializeAws_json1_1ListTagsForResourceCommand, deserializeAws_json1_1LookupDeveloperIdentityCommand, deserializeAws_json1_1MergeDeveloperIdentitiesCommand, deserializeAws_json1_1SetIdentityPoolRolesCommand, deserializeAws_json1_1TagResourceCommand, deserializeAws_json1_1UnlinkDeveloperIdentityCommand, deserializeAws_json1_1UnlinkIdentityCommand, deserializeAws_json1_1UntagResourceCommand, deserializeAws_json1_1UpdateIdentityPoolCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateIdentityPoolCommand\", function() { return serializeAws_json1_1CreateIdentityPoolCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteIdentitiesCommand\", function() { return serializeAws_json1_1DeleteIdentitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteIdentityPoolCommand\", function() { return serializeAws_json1_1DeleteIdentityPoolCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeIdentityCommand\", function() { return serializeAws_json1_1DescribeIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeIdentityPoolCommand\", function() { return serializeAws_json1_1DescribeIdentityPoolCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetCredentialsForIdentityCommand\", function() { return serializeAws_json1_1GetCredentialsForIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetIdCommand\", function() { return serializeAws_json1_1GetIdCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetIdentityPoolRolesCommand\", function() { return serializeAws_json1_1GetIdentityPoolRolesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetOpenIdTokenCommand\", function() { return serializeAws_json1_1GetOpenIdTokenCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand\", function() { return serializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListIdentitiesCommand\", function() { return serializeAws_json1_1ListIdentitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListIdentityPoolsCommand\", function() { return serializeAws_json1_1ListIdentityPoolsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListTagsForResourceCommand\", function() { return serializeAws_json1_1ListTagsForResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1LookupDeveloperIdentityCommand\", function() { return serializeAws_json1_1LookupDeveloperIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1MergeDeveloperIdentitiesCommand\", function() { return serializeAws_json1_1MergeDeveloperIdentitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1SetIdentityPoolRolesCommand\", function() { return serializeAws_json1_1SetIdentityPoolRolesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1TagResourceCommand\", function() { return serializeAws_json1_1TagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UnlinkDeveloperIdentityCommand\", function() { return serializeAws_json1_1UnlinkDeveloperIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UnlinkIdentityCommand\", function() { return serializeAws_json1_1UnlinkIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UntagResourceCommand\", function() { return serializeAws_json1_1UntagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UpdateIdentityPoolCommand\", function() { return serializeAws_json1_1UpdateIdentityPoolCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateIdentityPoolCommand\", function() { return deserializeAws_json1_1CreateIdentityPoolCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteIdentitiesCommand\", function() { return deserializeAws_json1_1DeleteIdentitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteIdentityPoolCommand\", function() { return deserializeAws_json1_1DeleteIdentityPoolCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeIdentityCommand\", function() { return deserializeAws_json1_1DescribeIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeIdentityPoolCommand\", function() { return deserializeAws_json1_1DescribeIdentityPoolCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetCredentialsForIdentityCommand\", function() { return deserializeAws_json1_1GetCredentialsForIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetIdCommand\", function() { return deserializeAws_json1_1GetIdCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetIdentityPoolRolesCommand\", function() { return deserializeAws_json1_1GetIdentityPoolRolesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetOpenIdTokenCommand\", function() { return deserializeAws_json1_1GetOpenIdTokenCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand\", function() { return deserializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListIdentitiesCommand\", function() { return deserializeAws_json1_1ListIdentitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListIdentityPoolsCommand\", function() { return deserializeAws_json1_1ListIdentityPoolsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListTagsForResourceCommand\", function() { return deserializeAws_json1_1ListTagsForResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1LookupDeveloperIdentityCommand\", function() { return deserializeAws_json1_1LookupDeveloperIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1MergeDeveloperIdentitiesCommand\", function() { return deserializeAws_json1_1MergeDeveloperIdentitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1SetIdentityPoolRolesCommand\", function() { return deserializeAws_json1_1SetIdentityPoolRolesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1TagResourceCommand\", function() { return deserializeAws_json1_1TagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UnlinkDeveloperIdentityCommand\", function() { return deserializeAws_json1_1UnlinkDeveloperIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UnlinkIdentityCommand\", function() { return deserializeAws_json1_1UnlinkIdentityCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UntagResourceCommand\", function() { return deserializeAws_json1_1UntagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UpdateIdentityPoolCommand\", function() { return deserializeAws_json1_1UpdateIdentityPoolCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\nvar serializeAws_json1_1CreateIdentityPoolCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.CreateIdentityPool\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateIdentityPoolInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteIdentitiesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.DeleteIdentities\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteIdentitiesInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteIdentityPoolCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.DeleteIdentityPool\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteIdentityPoolInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeIdentityCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.DescribeIdentity\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeIdentityInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeIdentityPoolCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.DescribeIdentityPool\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeIdentityPoolInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetCredentialsForIdentityCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.GetCredentialsForIdentity\",\n };\n body = JSON.stringify(serializeAws_json1_1GetCredentialsForIdentityInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetIdCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.GetId\",\n };\n body = JSON.stringify(serializeAws_json1_1GetIdInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetIdentityPoolRolesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.GetIdentityPoolRoles\",\n };\n body = JSON.stringify(serializeAws_json1_1GetIdentityPoolRolesInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetOpenIdTokenCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.GetOpenIdToken\",\n };\n body = JSON.stringify(serializeAws_json1_1GetOpenIdTokenInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.GetOpenIdTokenForDeveloperIdentity\",\n };\n body = JSON.stringify(serializeAws_json1_1GetOpenIdTokenForDeveloperIdentityInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListIdentitiesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.ListIdentities\",\n };\n body = JSON.stringify(serializeAws_json1_1ListIdentitiesInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListIdentityPoolsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.ListIdentityPools\",\n };\n body = JSON.stringify(serializeAws_json1_1ListIdentityPoolsInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListTagsForResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.ListTagsForResource\",\n };\n body = JSON.stringify(serializeAws_json1_1ListTagsForResourceInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1LookupDeveloperIdentityCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.LookupDeveloperIdentity\",\n };\n body = JSON.stringify(serializeAws_json1_1LookupDeveloperIdentityInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1MergeDeveloperIdentitiesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.MergeDeveloperIdentities\",\n };\n body = JSON.stringify(serializeAws_json1_1MergeDeveloperIdentitiesInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1SetIdentityPoolRolesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.SetIdentityPoolRoles\",\n };\n body = JSON.stringify(serializeAws_json1_1SetIdentityPoolRolesInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1TagResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.TagResource\",\n };\n body = JSON.stringify(serializeAws_json1_1TagResourceInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UnlinkDeveloperIdentityCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.UnlinkDeveloperIdentity\",\n };\n body = JSON.stringify(serializeAws_json1_1UnlinkDeveloperIdentityInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UnlinkIdentityCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.UnlinkIdentity\",\n };\n body = JSON.stringify(serializeAws_json1_1UnlinkIdentityInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UntagResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.UntagResource\",\n };\n body = JSON.stringify(serializeAws_json1_1UntagResourceInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UpdateIdentityPoolCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSCognitoIdentityService.UpdateIdentityPool\",\n };\n body = JSON.stringify(serializeAws_json1_1IdentityPool(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar deserializeAws_json1_1CreateIdentityPoolCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateIdentityPoolCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1IdentityPool(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateIdentityPoolCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"LimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#LimitExceededException\": return [3 /*break*/, 6];\n case \"NotAuthorizedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 8];\n case \"ResourceConflictException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteIdentitiesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteIdentitiesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteIdentitiesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteIdentitiesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"TooManyRequestsException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteIdentityPoolCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteIdentityPoolCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteIdentityPoolCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeIdentityCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeIdentityCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1IdentityDescription(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeIdentityCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeIdentityPoolCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeIdentityPoolCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1IdentityPool(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeIdentityPoolCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetCredentialsForIdentityCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetCredentialsForIdentityCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetCredentialsForIdentityResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetCredentialsForIdentityCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ExternalServiceException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#ExternalServiceException\": return [3 /*break*/, 2];\n case \"InternalErrorException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 4];\n case \"InvalidIdentityPoolConfigurationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#InvalidIdentityPoolConfigurationException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 8];\n case \"NotAuthorizedException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 10];\n case \"ResourceConflictException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 12];\n case \"ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"TooManyRequestsException\": return [3 /*break*/, 16];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ExternalServiceExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidIdentityPoolConfigurationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetIdCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetIdCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetIdResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetIdCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ExternalServiceException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#ExternalServiceException\": return [3 /*break*/, 2];\n case \"InternalErrorException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 6];\n case \"LimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#LimitExceededException\": return [3 /*break*/, 8];\n case \"NotAuthorizedException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 10];\n case \"ResourceConflictException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 12];\n case \"ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"TooManyRequestsException\": return [3 /*break*/, 16];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ExternalServiceExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetIdentityPoolRolesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetIdentityPoolRolesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetIdentityPoolRolesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetIdentityPoolRolesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceConflictException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetOpenIdTokenCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetOpenIdTokenCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetOpenIdTokenResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetOpenIdTokenCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ExternalServiceException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#ExternalServiceException\": return [3 /*break*/, 2];\n case \"InternalErrorException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 6];\n case \"NotAuthorizedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 8];\n case \"ResourceConflictException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ExternalServiceExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetOpenIdTokenForDeveloperIdentityResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetOpenIdTokenForDeveloperIdentityCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"DeveloperUserAlreadyRegisteredException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#DeveloperUserAlreadyRegisteredException\": return [3 /*break*/, 2];\n case \"InternalErrorException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 6];\n case \"NotAuthorizedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 8];\n case \"ResourceConflictException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1DeveloperUserAlreadyRegisteredExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListIdentitiesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListIdentitiesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListIdentitiesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListIdentitiesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListIdentityPoolsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListIdentityPoolsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListIdentityPoolsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListIdentityPoolsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsForResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListTagsForResourceCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListTagsForResourceResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsForResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1LookupDeveloperIdentityCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1LookupDeveloperIdentityCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1LookupDeveloperIdentityResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1LookupDeveloperIdentityCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceConflictException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1MergeDeveloperIdentitiesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1MergeDeveloperIdentitiesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1MergeDeveloperIdentitiesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1MergeDeveloperIdentitiesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceConflictException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1SetIdentityPoolRolesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1SetIdentityPoolRolesCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1SetIdentityPoolRolesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"InternalErrorException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 6];\n case \"NotAuthorizedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 8];\n case \"ResourceConflictException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1TagResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1TagResourceCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1TagResourceResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1TagResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UnlinkDeveloperIdentityCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UnlinkDeveloperIdentityCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UnlinkDeveloperIdentityCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceConflictException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UnlinkIdentityCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UnlinkIdentityCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UnlinkIdentityCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ExternalServiceException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#ExternalServiceException\": return [3 /*break*/, 2];\n case \"InternalErrorException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 6];\n case \"NotAuthorizedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 8];\n case \"ResourceConflictException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ExternalServiceExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UntagResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UntagResourceCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1UntagResourceResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UntagResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalErrorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 2];\n case \"InvalidParameterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 4];\n case \"NotAuthorizedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateIdentityPoolCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UpdateIdentityPoolCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1IdentityPool(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateIdentityPoolCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"com.amazonaws.cognitoidentity#ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"InternalErrorException\": return [3 /*break*/, 4];\n case \"com.amazonaws.cognitoidentity#InternalErrorException\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.cognitoidentity#InvalidParameterException\": return [3 /*break*/, 6];\n case \"LimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.cognitoidentity#LimitExceededException\": return [3 /*break*/, 8];\n case \"NotAuthorizedException\": return [3 /*break*/, 10];\n case \"com.amazonaws.cognitoidentity#NotAuthorizedException\": return [3 /*break*/, 10];\n case \"ResourceConflictException\": return [3 /*break*/, 12];\n case \"com.amazonaws.cognitoidentity#ResourceConflictException\": return [3 /*break*/, 12];\n case \"ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"com.amazonaws.cognitoidentity#ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"TooManyRequestsException\": return [3 /*break*/, 16];\n case \"com.amazonaws.cognitoidentity#TooManyRequestsException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalErrorExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1NotAuthorizedExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceConflictExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ConcurrentModificationExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ConcurrentModificationException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ConcurrentModificationException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1DeveloperUserAlreadyRegisteredExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1DeveloperUserAlreadyRegisteredException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"DeveloperUserAlreadyRegisteredException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ExternalServiceExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ExternalServiceException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ExternalServiceException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InternalErrorExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InternalErrorException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InternalErrorException\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidIdentityPoolConfigurationExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidIdentityPoolConfigurationException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidIdentityPoolConfigurationException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidParameterExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidParameterException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidParameterException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1LimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1LimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"LimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1NotAuthorizedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1NotAuthorizedException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"NotAuthorizedException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceConflictExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceConflictException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceConflictException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceNotFoundException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotFoundException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1TooManyRequestsExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1TooManyRequestsException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"TooManyRequestsException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_json1_1CognitoIdentityProvider = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientId !== undefined && input.ClientId !== null && { ClientId: input.ClientId })), (input.ProviderName !== undefined && input.ProviderName !== null && { ProviderName: input.ProviderName })), (input.ServerSideTokenCheck !== undefined &&\n input.ServerSideTokenCheck !== null && { ServerSideTokenCheck: input.ServerSideTokenCheck }));\n};\nvar serializeAws_json1_1CognitoIdentityProviderList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1CognitoIdentityProvider(entry, context);\n });\n};\nvar serializeAws_json1_1CreateIdentityPoolInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AllowClassicFlow !== undefined &&\n input.AllowClassicFlow !== null && { AllowClassicFlow: input.AllowClassicFlow })), (input.AllowUnauthenticatedIdentities !== undefined &&\n input.AllowUnauthenticatedIdentities !== null && {\n AllowUnauthenticatedIdentities: input.AllowUnauthenticatedIdentities,\n })), (input.CognitoIdentityProviders !== undefined &&\n input.CognitoIdentityProviders !== null && {\n CognitoIdentityProviders: serializeAws_json1_1CognitoIdentityProviderList(input.CognitoIdentityProviders, context),\n })), (input.DeveloperProviderName !== undefined &&\n input.DeveloperProviderName !== null && { DeveloperProviderName: input.DeveloperProviderName })), (input.IdentityPoolName !== undefined &&\n input.IdentityPoolName !== null && { IdentityPoolName: input.IdentityPoolName })), (input.IdentityPoolTags !== undefined &&\n input.IdentityPoolTags !== null && {\n IdentityPoolTags: serializeAws_json1_1IdentityPoolTagsType(input.IdentityPoolTags, context),\n })), (input.OpenIdConnectProviderARNs !== undefined &&\n input.OpenIdConnectProviderARNs !== null && {\n OpenIdConnectProviderARNs: serializeAws_json1_1OIDCProviderList(input.OpenIdConnectProviderARNs, context),\n })), (input.SamlProviderARNs !== undefined &&\n input.SamlProviderARNs !== null && {\n SamlProviderARNs: serializeAws_json1_1SAMLProviderList(input.SamlProviderARNs, context),\n })), (input.SupportedLoginProviders !== undefined &&\n input.SupportedLoginProviders !== null && {\n SupportedLoginProviders: serializeAws_json1_1IdentityProviders(input.SupportedLoginProviders, context),\n }));\n};\nvar serializeAws_json1_1DeleteIdentitiesInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IdentityIdsToDelete !== undefined &&\n input.IdentityIdsToDelete !== null && {\n IdentityIdsToDelete: serializeAws_json1_1IdentityIdList(input.IdentityIdsToDelete, context),\n }));\n};\nvar serializeAws_json1_1DeleteIdentityPoolInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId }));\n};\nvar serializeAws_json1_1DescribeIdentityInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IdentityId !== undefined && input.IdentityId !== null && { IdentityId: input.IdentityId }));\n};\nvar serializeAws_json1_1DescribeIdentityPoolInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId }));\n};\nvar serializeAws_json1_1GetCredentialsForIdentityInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CustomRoleArn !== undefined && input.CustomRoleArn !== null && { CustomRoleArn: input.CustomRoleArn })), (input.IdentityId !== undefined && input.IdentityId !== null && { IdentityId: input.IdentityId })), (input.Logins !== undefined &&\n input.Logins !== null && { Logins: serializeAws_json1_1LoginsMap(input.Logins, context) }));\n};\nvar serializeAws_json1_1GetIdentityPoolRolesInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId }));\n};\nvar serializeAws_json1_1GetIdInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AccountId !== undefined && input.AccountId !== null && { AccountId: input.AccountId })), (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId })), (input.Logins !== undefined &&\n input.Logins !== null && { Logins: serializeAws_json1_1LoginsMap(input.Logins, context) }));\n};\nvar serializeAws_json1_1GetOpenIdTokenForDeveloperIdentityInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IdentityId !== undefined && input.IdentityId !== null && { IdentityId: input.IdentityId })), (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId })), (input.Logins !== undefined &&\n input.Logins !== null && { Logins: serializeAws_json1_1LoginsMap(input.Logins, context) })), (input.TokenDuration !== undefined && input.TokenDuration !== null && { TokenDuration: input.TokenDuration }));\n};\nvar serializeAws_json1_1GetOpenIdTokenInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IdentityId !== undefined && input.IdentityId !== null && { IdentityId: input.IdentityId })), (input.Logins !== undefined &&\n input.Logins !== null && { Logins: serializeAws_json1_1LoginsMap(input.Logins, context) }));\n};\nvar serializeAws_json1_1IdentityIdList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1IdentityPool = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AllowClassicFlow !== undefined &&\n input.AllowClassicFlow !== null && { AllowClassicFlow: input.AllowClassicFlow })), (input.AllowUnauthenticatedIdentities !== undefined &&\n input.AllowUnauthenticatedIdentities !== null && {\n AllowUnauthenticatedIdentities: input.AllowUnauthenticatedIdentities,\n })), (input.CognitoIdentityProviders !== undefined &&\n input.CognitoIdentityProviders !== null && {\n CognitoIdentityProviders: serializeAws_json1_1CognitoIdentityProviderList(input.CognitoIdentityProviders, context),\n })), (input.DeveloperProviderName !== undefined &&\n input.DeveloperProviderName !== null && { DeveloperProviderName: input.DeveloperProviderName })), (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId })), (input.IdentityPoolName !== undefined &&\n input.IdentityPoolName !== null && { IdentityPoolName: input.IdentityPoolName })), (input.IdentityPoolTags !== undefined &&\n input.IdentityPoolTags !== null && {\n IdentityPoolTags: serializeAws_json1_1IdentityPoolTagsType(input.IdentityPoolTags, context),\n })), (input.OpenIdConnectProviderARNs !== undefined &&\n input.OpenIdConnectProviderARNs !== null && {\n OpenIdConnectProviderARNs: serializeAws_json1_1OIDCProviderList(input.OpenIdConnectProviderARNs, context),\n })), (input.SamlProviderARNs !== undefined &&\n input.SamlProviderARNs !== null && {\n SamlProviderARNs: serializeAws_json1_1SAMLProviderList(input.SamlProviderARNs, context),\n })), (input.SupportedLoginProviders !== undefined &&\n input.SupportedLoginProviders !== null && {\n SupportedLoginProviders: serializeAws_json1_1IdentityProviders(input.SupportedLoginProviders, context),\n }));\n};\nvar serializeAws_json1_1IdentityPoolTagsListType = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1IdentityPoolTagsType = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_json1_1IdentityProviders = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_json1_1ListIdentitiesInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.HideDisabled !== undefined && input.HideDisabled !== null && { HideDisabled: input.HideDisabled })), (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListIdentityPoolsInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListTagsForResourceInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ResourceArn !== undefined && input.ResourceArn !== null && { ResourceArn: input.ResourceArn }));\n};\nvar serializeAws_json1_1LoginsList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1LoginsMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_json1_1LookupDeveloperIdentityInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeveloperUserIdentifier !== undefined &&\n input.DeveloperUserIdentifier !== null && { DeveloperUserIdentifier: input.DeveloperUserIdentifier })), (input.IdentityId !== undefined && input.IdentityId !== null && { IdentityId: input.IdentityId })), (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1MappingRule = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Claim !== undefined && input.Claim !== null && { Claim: input.Claim })), (input.MatchType !== undefined && input.MatchType !== null && { MatchType: input.MatchType })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.Value !== undefined && input.Value !== null && { Value: input.Value }));\n};\nvar serializeAws_json1_1MappingRulesList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1MappingRule(entry, context);\n });\n};\nvar serializeAws_json1_1MergeDeveloperIdentitiesInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DestinationUserIdentifier !== undefined &&\n input.DestinationUserIdentifier !== null && { DestinationUserIdentifier: input.DestinationUserIdentifier })), (input.DeveloperProviderName !== undefined &&\n input.DeveloperProviderName !== null && { DeveloperProviderName: input.DeveloperProviderName })), (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId })), (input.SourceUserIdentifier !== undefined &&\n input.SourceUserIdentifier !== null && { SourceUserIdentifier: input.SourceUserIdentifier }));\n};\nvar serializeAws_json1_1OIDCProviderList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1RoleMapping = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AmbiguousRoleResolution !== undefined &&\n input.AmbiguousRoleResolution !== null && { AmbiguousRoleResolution: input.AmbiguousRoleResolution })), (input.RulesConfiguration !== undefined &&\n input.RulesConfiguration !== null && {\n RulesConfiguration: serializeAws_json1_1RulesConfigurationType(input.RulesConfiguration, context),\n })), (input.Type !== undefined && input.Type !== null && { Type: input.Type }));\n};\nvar serializeAws_json1_1RoleMappingMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_json1_1RoleMapping(value, context), _b));\n }, {});\n};\nvar serializeAws_json1_1RolesMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_json1_1RulesConfigurationType = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Rules !== undefined &&\n input.Rules !== null && { Rules: serializeAws_json1_1MappingRulesList(input.Rules, context) }));\n};\nvar serializeAws_json1_1SAMLProviderList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1SetIdentityPoolRolesInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId })), (input.RoleMappings !== undefined &&\n input.RoleMappings !== null && { RoleMappings: serializeAws_json1_1RoleMappingMap(input.RoleMappings, context) })), (input.Roles !== undefined &&\n input.Roles !== null && { Roles: serializeAws_json1_1RolesMap(input.Roles, context) }));\n};\nvar serializeAws_json1_1TagResourceInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ResourceArn !== undefined && input.ResourceArn !== null && { ResourceArn: input.ResourceArn })), (input.Tags !== undefined &&\n input.Tags !== null && { Tags: serializeAws_json1_1IdentityPoolTagsType(input.Tags, context) }));\n};\nvar serializeAws_json1_1UnlinkDeveloperIdentityInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeveloperProviderName !== undefined &&\n input.DeveloperProviderName !== null && { DeveloperProviderName: input.DeveloperProviderName })), (input.DeveloperUserIdentifier !== undefined &&\n input.DeveloperUserIdentifier !== null && { DeveloperUserIdentifier: input.DeveloperUserIdentifier })), (input.IdentityId !== undefined && input.IdentityId !== null && { IdentityId: input.IdentityId })), (input.IdentityPoolId !== undefined &&\n input.IdentityPoolId !== null && { IdentityPoolId: input.IdentityPoolId }));\n};\nvar serializeAws_json1_1UnlinkIdentityInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IdentityId !== undefined && input.IdentityId !== null && { IdentityId: input.IdentityId })), (input.Logins !== undefined &&\n input.Logins !== null && { Logins: serializeAws_json1_1LoginsMap(input.Logins, context) })), (input.LoginsToRemove !== undefined &&\n input.LoginsToRemove !== null && {\n LoginsToRemove: serializeAws_json1_1LoginsList(input.LoginsToRemove, context),\n }));\n};\nvar serializeAws_json1_1UntagResourceInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ResourceArn !== undefined && input.ResourceArn !== null && { ResourceArn: input.ResourceArn })), (input.TagKeys !== undefined &&\n input.TagKeys !== null && { TagKeys: serializeAws_json1_1IdentityPoolTagsListType(input.TagKeys, context) }));\n};\nvar deserializeAws_json1_1CognitoIdentityProvider = function (output, context) {\n return {\n ClientId: output.ClientId !== undefined && output.ClientId !== null ? output.ClientId : undefined,\n ProviderName: output.ProviderName !== undefined && output.ProviderName !== null ? output.ProviderName : undefined,\n ServerSideTokenCheck: output.ServerSideTokenCheck !== undefined && output.ServerSideTokenCheck !== null\n ? output.ServerSideTokenCheck\n : undefined,\n };\n};\nvar deserializeAws_json1_1CognitoIdentityProviderList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1CognitoIdentityProvider(entry, context);\n });\n};\nvar deserializeAws_json1_1ConcurrentModificationException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1Credentials = function (output, context) {\n return {\n AccessKeyId: output.AccessKeyId !== undefined && output.AccessKeyId !== null ? output.AccessKeyId : undefined,\n Expiration: output.Expiration !== undefined && output.Expiration !== null\n ? new Date(Math.round(output.Expiration * 1000))\n : undefined,\n SecretKey: output.SecretKey !== undefined && output.SecretKey !== null ? output.SecretKey : undefined,\n SessionToken: output.SessionToken !== undefined && output.SessionToken !== null ? output.SessionToken : undefined,\n };\n};\nvar deserializeAws_json1_1DeleteIdentitiesResponse = function (output, context) {\n return {\n UnprocessedIdentityIds: output.UnprocessedIdentityIds !== undefined && output.UnprocessedIdentityIds !== null\n ? deserializeAws_json1_1UnprocessedIdentityIdList(output.UnprocessedIdentityIds, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DeveloperUserAlreadyRegisteredException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1DeveloperUserIdentifierList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ExternalServiceException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1GetCredentialsForIdentityResponse = function (output, context) {\n return {\n Credentials: output.Credentials !== undefined && output.Credentials !== null\n ? deserializeAws_json1_1Credentials(output.Credentials, context)\n : undefined,\n IdentityId: output.IdentityId !== undefined && output.IdentityId !== null ? output.IdentityId : undefined,\n };\n};\nvar deserializeAws_json1_1GetIdentityPoolRolesResponse = function (output, context) {\n return {\n IdentityPoolId: output.IdentityPoolId !== undefined && output.IdentityPoolId !== null ? output.IdentityPoolId : undefined,\n RoleMappings: output.RoleMappings !== undefined && output.RoleMappings !== null\n ? deserializeAws_json1_1RoleMappingMap(output.RoleMappings, context)\n : undefined,\n Roles: output.Roles !== undefined && output.Roles !== null\n ? deserializeAws_json1_1RolesMap(output.Roles, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetIdResponse = function (output, context) {\n return {\n IdentityId: output.IdentityId !== undefined && output.IdentityId !== null ? output.IdentityId : undefined,\n };\n};\nvar deserializeAws_json1_1GetOpenIdTokenForDeveloperIdentityResponse = function (output, context) {\n return {\n IdentityId: output.IdentityId !== undefined && output.IdentityId !== null ? output.IdentityId : undefined,\n Token: output.Token !== undefined && output.Token !== null ? output.Token : undefined,\n };\n};\nvar deserializeAws_json1_1GetOpenIdTokenResponse = function (output, context) {\n return {\n IdentityId: output.IdentityId !== undefined && output.IdentityId !== null ? output.IdentityId : undefined,\n Token: output.Token !== undefined && output.Token !== null ? output.Token : undefined,\n };\n};\nvar deserializeAws_json1_1IdentitiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1IdentityDescription(entry, context);\n });\n};\nvar deserializeAws_json1_1IdentityDescription = function (output, context) {\n return {\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null\n ? new Date(Math.round(output.CreationDate * 1000))\n : undefined,\n IdentityId: output.IdentityId !== undefined && output.IdentityId !== null ? output.IdentityId : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null\n ? new Date(Math.round(output.LastModifiedDate * 1000))\n : undefined,\n Logins: output.Logins !== undefined && output.Logins !== null\n ? deserializeAws_json1_1LoginsList(output.Logins, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1IdentityPool = function (output, context) {\n return {\n AllowClassicFlow: output.AllowClassicFlow !== undefined && output.AllowClassicFlow !== null ? output.AllowClassicFlow : undefined,\n AllowUnauthenticatedIdentities: output.AllowUnauthenticatedIdentities !== undefined && output.AllowUnauthenticatedIdentities !== null\n ? output.AllowUnauthenticatedIdentities\n : undefined,\n CognitoIdentityProviders: output.CognitoIdentityProviders !== undefined && output.CognitoIdentityProviders !== null\n ? deserializeAws_json1_1CognitoIdentityProviderList(output.CognitoIdentityProviders, context)\n : undefined,\n DeveloperProviderName: output.DeveloperProviderName !== undefined && output.DeveloperProviderName !== null\n ? output.DeveloperProviderName\n : undefined,\n IdentityPoolId: output.IdentityPoolId !== undefined && output.IdentityPoolId !== null ? output.IdentityPoolId : undefined,\n IdentityPoolName: output.IdentityPoolName !== undefined && output.IdentityPoolName !== null ? output.IdentityPoolName : undefined,\n IdentityPoolTags: output.IdentityPoolTags !== undefined && output.IdentityPoolTags !== null\n ? deserializeAws_json1_1IdentityPoolTagsType(output.IdentityPoolTags, context)\n : undefined,\n OpenIdConnectProviderARNs: output.OpenIdConnectProviderARNs !== undefined && output.OpenIdConnectProviderARNs !== null\n ? deserializeAws_json1_1OIDCProviderList(output.OpenIdConnectProviderARNs, context)\n : undefined,\n SamlProviderARNs: output.SamlProviderARNs !== undefined && output.SamlProviderARNs !== null\n ? deserializeAws_json1_1SAMLProviderList(output.SamlProviderARNs, context)\n : undefined,\n SupportedLoginProviders: output.SupportedLoginProviders !== undefined && output.SupportedLoginProviders !== null\n ? deserializeAws_json1_1IdentityProviders(output.SupportedLoginProviders, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1IdentityPoolShortDescription = function (output, context) {\n return {\n IdentityPoolId: output.IdentityPoolId !== undefined && output.IdentityPoolId !== null ? output.IdentityPoolId : undefined,\n IdentityPoolName: output.IdentityPoolName !== undefined && output.IdentityPoolName !== null ? output.IdentityPoolName : undefined,\n };\n};\nvar deserializeAws_json1_1IdentityPoolsList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1IdentityPoolShortDescription(entry, context);\n });\n};\nvar deserializeAws_json1_1IdentityPoolTagsType = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_json1_1IdentityProviders = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_json1_1InternalErrorException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidIdentityPoolConfigurationException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidParameterException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1LimitExceededException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ListIdentitiesResponse = function (output, context) {\n return {\n Identities: output.Identities !== undefined && output.Identities !== null\n ? deserializeAws_json1_1IdentitiesList(output.Identities, context)\n : undefined,\n IdentityPoolId: output.IdentityPoolId !== undefined && output.IdentityPoolId !== null ? output.IdentityPoolId : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListIdentityPoolsResponse = function (output, context) {\n return {\n IdentityPools: output.IdentityPools !== undefined && output.IdentityPools !== null\n ? deserializeAws_json1_1IdentityPoolsList(output.IdentityPools, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListTagsForResourceResponse = function (output, context) {\n return {\n Tags: output.Tags !== undefined && output.Tags !== null\n ? deserializeAws_json1_1IdentityPoolTagsType(output.Tags, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1LoginsList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1LookupDeveloperIdentityResponse = function (output, context) {\n return {\n DeveloperUserIdentifierList: output.DeveloperUserIdentifierList !== undefined && output.DeveloperUserIdentifierList !== null\n ? deserializeAws_json1_1DeveloperUserIdentifierList(output.DeveloperUserIdentifierList, context)\n : undefined,\n IdentityId: output.IdentityId !== undefined && output.IdentityId !== null ? output.IdentityId : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1MappingRule = function (output, context) {\n return {\n Claim: output.Claim !== undefined && output.Claim !== null ? output.Claim : undefined,\n MatchType: output.MatchType !== undefined && output.MatchType !== null ? output.MatchType : undefined,\n RoleARN: output.RoleARN !== undefined && output.RoleARN !== null ? output.RoleARN : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1MappingRulesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1MappingRule(entry, context);\n });\n};\nvar deserializeAws_json1_1MergeDeveloperIdentitiesResponse = function (output, context) {\n return {\n IdentityId: output.IdentityId !== undefined && output.IdentityId !== null ? output.IdentityId : undefined,\n };\n};\nvar deserializeAws_json1_1NotAuthorizedException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1OIDCProviderList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ResourceConflictException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceNotFoundException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1RoleMapping = function (output, context) {\n return {\n AmbiguousRoleResolution: output.AmbiguousRoleResolution !== undefined && output.AmbiguousRoleResolution !== null\n ? output.AmbiguousRoleResolution\n : undefined,\n RulesConfiguration: output.RulesConfiguration !== undefined && output.RulesConfiguration !== null\n ? deserializeAws_json1_1RulesConfigurationType(output.RulesConfiguration, context)\n : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1RoleMappingMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_json1_1RoleMapping(value, context), _b));\n }, {});\n};\nvar deserializeAws_json1_1RolesMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_json1_1RulesConfigurationType = function (output, context) {\n return {\n Rules: output.Rules !== undefined && output.Rules !== null\n ? deserializeAws_json1_1MappingRulesList(output.Rules, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1SAMLProviderList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1TagResourceResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1TooManyRequestsException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1UnprocessedIdentityId = function (output, context) {\n return {\n ErrorCode: output.ErrorCode !== undefined && output.ErrorCode !== null ? output.ErrorCode : undefined,\n IdentityId: output.IdentityId !== undefined && output.IdentityId !== null ? output.IdentityId : undefined,\n };\n};\nvar deserializeAws_json1_1UnprocessedIdentityIdList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1UnprocessedIdentityId(entry, context);\n });\n};\nvar deserializeAws_json1_1UntagResourceResponse = function (output, context) {\n return {};\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar buildHttpRpcRequest = function (context, headers, path, resolvedHostname, body) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n contents = {\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n path: path,\n headers: headers,\n };\n if (resolvedHostname !== undefined) {\n contents.hostname = resolvedHostname;\n }\n if (body !== undefined) {\n contents.body = body;\n }\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"](contents)];\n }\n });\n}); };\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_json1_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/protocols/Aws_json1_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/runtimeConfig.browser.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/runtimeConfig.browser.js ***! \****************************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/dist/es/runtimeConfig.shared.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/dist/es/runtimeConfig.shared.js ***! \***************************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2014-06-30\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Cognito Identity\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js ***! \***************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-cognito-identity/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js ***! \***********************************************************************/ /*! exports provided: Comprehend */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Comprehend\", function() { return Comprehend; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_BatchDetectDominantLanguageCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/BatchDetectDominantLanguageCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectDominantLanguageCommand.js\");\n/* harmony import */ var _commands_BatchDetectEntitiesCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/BatchDetectEntitiesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectEntitiesCommand.js\");\n/* harmony import */ var _commands_BatchDetectKeyPhrasesCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/BatchDetectKeyPhrasesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectKeyPhrasesCommand.js\");\n/* harmony import */ var _commands_BatchDetectSentimentCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/BatchDetectSentimentCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSentimentCommand.js\");\n/* harmony import */ var _commands_BatchDetectSyntaxCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/BatchDetectSyntaxCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSyntaxCommand.js\");\n/* harmony import */ var _commands_ClassifyDocumentCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/ClassifyDocumentCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ClassifyDocumentCommand.js\");\n/* harmony import */ var _commands_CreateDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/CreateDocumentClassifierCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateDocumentClassifierCommand.js\");\n/* harmony import */ var _commands_CreateEndpointCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/CreateEndpointCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEndpointCommand.js\");\n/* harmony import */ var _commands_CreateEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/CreateEntityRecognizerCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEntityRecognizerCommand.js\");\n/* harmony import */ var _commands_DeleteDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DeleteDocumentClassifierCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteDocumentClassifierCommand.js\");\n/* harmony import */ var _commands_DeleteEndpointCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/DeleteEndpointCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEndpointCommand.js\");\n/* harmony import */ var _commands_DeleteEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DeleteEntityRecognizerCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEntityRecognizerCommand.js\");\n/* harmony import */ var _commands_DescribeDocumentClassificationJobCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/DescribeDocumentClassificationJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassificationJobCommand.js\");\n/* harmony import */ var _commands_DescribeDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DescribeDocumentClassifierCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassifierCommand.js\");\n/* harmony import */ var _commands_DescribeDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/DescribeDominantLanguageDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDominantLanguageDetectionJobCommand.js\");\n/* harmony import */ var _commands_DescribeEndpointCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DescribeEndpointCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEndpointCommand.js\");\n/* harmony import */ var _commands_DescribeEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DescribeEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntitiesDetectionJobCommand.js\");\n/* harmony import */ var _commands_DescribeEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DescribeEntityRecognizerCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntityRecognizerCommand.js\");\n/* harmony import */ var _commands_DescribeEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DescribeEventsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEventsDetectionJobCommand.js\");\n/* harmony import */ var _commands_DescribeKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DescribeKeyPhrasesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeKeyPhrasesDetectionJobCommand.js\");\n/* harmony import */ var _commands_DescribePiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DescribePiiEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribePiiEntitiesDetectionJobCommand.js\");\n/* harmony import */ var _commands_DescribeSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/DescribeSentimentDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeSentimentDetectionJobCommand.js\");\n/* harmony import */ var _commands_DescribeTopicsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/DescribeTopicsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeTopicsDetectionJobCommand.js\");\n/* harmony import */ var _commands_DetectDominantLanguageCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/DetectDominantLanguageCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectDominantLanguageCommand.js\");\n/* harmony import */ var _commands_DetectEntitiesCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/DetectEntitiesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectEntitiesCommand.js\");\n/* harmony import */ var _commands_DetectKeyPhrasesCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/DetectKeyPhrasesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectKeyPhrasesCommand.js\");\n/* harmony import */ var _commands_DetectPiiEntitiesCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/DetectPiiEntitiesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectPiiEntitiesCommand.js\");\n/* harmony import */ var _commands_DetectSentimentCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/DetectSentimentCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSentimentCommand.js\");\n/* harmony import */ var _commands_DetectSyntaxCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/DetectSyntaxCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSyntaxCommand.js\");\n/* harmony import */ var _commands_ListDocumentClassificationJobsCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/ListDocumentClassificationJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassificationJobsCommand.js\");\n/* harmony import */ var _commands_ListDocumentClassifiersCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/ListDocumentClassifiersCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassifiersCommand.js\");\n/* harmony import */ var _commands_ListDominantLanguageDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/ListDominantLanguageDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDominantLanguageDetectionJobsCommand.js\");\n/* harmony import */ var _commands_ListEndpointsCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./commands/ListEndpointsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEndpointsCommand.js\");\n/* harmony import */ var _commands_ListEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/ListEntitiesDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntitiesDetectionJobsCommand.js\");\n/* harmony import */ var _commands_ListEntityRecognizersCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./commands/ListEntityRecognizersCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntityRecognizersCommand.js\");\n/* harmony import */ var _commands_ListEventsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/ListEventsDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEventsDetectionJobsCommand.js\");\n/* harmony import */ var _commands_ListKeyPhrasesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/ListKeyPhrasesDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListKeyPhrasesDetectionJobsCommand.js\");\n/* harmony import */ var _commands_ListPiiEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/ListPiiEntitiesDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListPiiEntitiesDetectionJobsCommand.js\");\n/* harmony import */ var _commands_ListSentimentDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/ListSentimentDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListSentimentDetectionJobsCommand.js\");\n/* harmony import */ var _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/ListTagsForResourceCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTagsForResourceCommand.js\");\n/* harmony import */ var _commands_ListTopicsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/ListTopicsDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTopicsDetectionJobsCommand.js\");\n/* harmony import */ var _commands_StartDocumentClassificationJobCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/StartDocumentClassificationJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDocumentClassificationJobCommand.js\");\n/* harmony import */ var _commands_StartDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/StartDominantLanguageDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDominantLanguageDetectionJobCommand.js\");\n/* harmony import */ var _commands_StartEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./commands/StartEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEntitiesDetectionJobCommand.js\");\n/* harmony import */ var _commands_StartEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/StartEventsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEventsDetectionJobCommand.js\");\n/* harmony import */ var _commands_StartKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./commands/StartKeyPhrasesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartKeyPhrasesDetectionJobCommand.js\");\n/* harmony import */ var _commands_StartPiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./commands/StartPiiEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartPiiEntitiesDetectionJobCommand.js\");\n/* harmony import */ var _commands_StartSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./commands/StartSentimentDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartSentimentDetectionJobCommand.js\");\n/* harmony import */ var _commands_StartTopicsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./commands/StartTopicsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartTopicsDetectionJobCommand.js\");\n/* harmony import */ var _commands_StopDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./commands/StopDominantLanguageDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopDominantLanguageDetectionJobCommand.js\");\n/* harmony import */ var _commands_StopEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./commands/StopEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEntitiesDetectionJobCommand.js\");\n/* harmony import */ var _commands_StopEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./commands/StopEventsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEventsDetectionJobCommand.js\");\n/* harmony import */ var _commands_StopKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./commands/StopKeyPhrasesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopKeyPhrasesDetectionJobCommand.js\");\n/* harmony import */ var _commands_StopPiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./commands/StopPiiEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopPiiEntitiesDetectionJobCommand.js\");\n/* harmony import */ var _commands_StopSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./commands/StopSentimentDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopSentimentDetectionJobCommand.js\");\n/* harmony import */ var _commands_StopTrainingDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./commands/StopTrainingDocumentClassifierCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingDocumentClassifierCommand.js\");\n/* harmony import */ var _commands_StopTrainingEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./commands/StopTrainingEntityRecognizerCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingEntityRecognizerCommand.js\");\n/* harmony import */ var _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./commands/TagResourceCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/TagResourceCommand.js\");\n/* harmony import */ var _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./commands/UntagResourceCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UntagResourceCommand.js\");\n/* harmony import */ var _commands_UpdateEndpointCommand__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./commands/UpdateEndpointCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UpdateEndpointCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n *

Amazon Comprehend is an AWS service for gaining insight into the content of documents.\n * Use these actions to determine the topics contained in your documents, the topics they\n * discuss, the predominant sentiment expressed in them, the predominant language used, and\n * more.

\n */\nvar Comprehend = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(Comprehend, _super);\n function Comprehend() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Comprehend.prototype.batchDetectDominantLanguage = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchDetectDominantLanguageCommand__WEBPACK_IMPORTED_MODULE_2__[\"BatchDetectDominantLanguageCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.batchDetectEntities = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchDetectEntitiesCommand__WEBPACK_IMPORTED_MODULE_3__[\"BatchDetectEntitiesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.batchDetectKeyPhrases = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchDetectKeyPhrasesCommand__WEBPACK_IMPORTED_MODULE_4__[\"BatchDetectKeyPhrasesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.batchDetectSentiment = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchDetectSentimentCommand__WEBPACK_IMPORTED_MODULE_5__[\"BatchDetectSentimentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.batchDetectSyntax = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchDetectSyntaxCommand__WEBPACK_IMPORTED_MODULE_6__[\"BatchDetectSyntaxCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.classifyDocument = function (args, optionsOrCb, cb) {\n var command = new _commands_ClassifyDocumentCommand__WEBPACK_IMPORTED_MODULE_7__[\"ClassifyDocumentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.createDocumentClassifier = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_8__[\"CreateDocumentClassifierCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.createEndpoint = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateEndpointCommand__WEBPACK_IMPORTED_MODULE_9__[\"CreateEndpointCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.createEntityRecognizer = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_10__[\"CreateEntityRecognizerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.deleteDocumentClassifier = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_11__[\"DeleteDocumentClassifierCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.deleteEndpoint = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteEndpointCommand__WEBPACK_IMPORTED_MODULE_12__[\"DeleteEndpointCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.deleteEntityRecognizer = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_13__[\"DeleteEntityRecognizerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeDocumentClassificationJob = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeDocumentClassificationJobCommand__WEBPACK_IMPORTED_MODULE_14__[\"DescribeDocumentClassificationJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeDocumentClassifier = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_15__[\"DescribeDocumentClassifierCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeDominantLanguageDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_16__[\"DescribeDominantLanguageDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeEndpoint = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeEndpointCommand__WEBPACK_IMPORTED_MODULE_17__[\"DescribeEndpointCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeEntitiesDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_18__[\"DescribeEntitiesDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeEntityRecognizer = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_19__[\"DescribeEntityRecognizerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeEventsDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_20__[\"DescribeEventsDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeKeyPhrasesDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_21__[\"DescribeKeyPhrasesDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describePiiEntitiesDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribePiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_22__[\"DescribePiiEntitiesDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeSentimentDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_23__[\"DescribeSentimentDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.describeTopicsDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeTopicsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_24__[\"DescribeTopicsDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.detectDominantLanguage = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectDominantLanguageCommand__WEBPACK_IMPORTED_MODULE_25__[\"DetectDominantLanguageCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.detectEntities = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectEntitiesCommand__WEBPACK_IMPORTED_MODULE_26__[\"DetectEntitiesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.detectKeyPhrases = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectKeyPhrasesCommand__WEBPACK_IMPORTED_MODULE_27__[\"DetectKeyPhrasesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.detectPiiEntities = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectPiiEntitiesCommand__WEBPACK_IMPORTED_MODULE_28__[\"DetectPiiEntitiesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.detectSentiment = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectSentimentCommand__WEBPACK_IMPORTED_MODULE_29__[\"DetectSentimentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.detectSyntax = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectSyntaxCommand__WEBPACK_IMPORTED_MODULE_30__[\"DetectSyntaxCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listDocumentClassificationJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_ListDocumentClassificationJobsCommand__WEBPACK_IMPORTED_MODULE_31__[\"ListDocumentClassificationJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listDocumentClassifiers = function (args, optionsOrCb, cb) {\n var command = new _commands_ListDocumentClassifiersCommand__WEBPACK_IMPORTED_MODULE_32__[\"ListDocumentClassifiersCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listDominantLanguageDetectionJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_ListDominantLanguageDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_33__[\"ListDominantLanguageDetectionJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listEndpoints = function (args, optionsOrCb, cb) {\n var command = new _commands_ListEndpointsCommand__WEBPACK_IMPORTED_MODULE_34__[\"ListEndpointsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listEntitiesDetectionJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_ListEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_35__[\"ListEntitiesDetectionJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listEntityRecognizers = function (args, optionsOrCb, cb) {\n var command = new _commands_ListEntityRecognizersCommand__WEBPACK_IMPORTED_MODULE_36__[\"ListEntityRecognizersCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listEventsDetectionJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_ListEventsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_37__[\"ListEventsDetectionJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listKeyPhrasesDetectionJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_ListKeyPhrasesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_38__[\"ListKeyPhrasesDetectionJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listPiiEntitiesDetectionJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_ListPiiEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_39__[\"ListPiiEntitiesDetectionJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listSentimentDetectionJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_ListSentimentDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_40__[\"ListSentimentDetectionJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listTagsForResource = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_41__[\"ListTagsForResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.listTopicsDetectionJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTopicsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_42__[\"ListTopicsDetectionJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.startDocumentClassificationJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StartDocumentClassificationJobCommand__WEBPACK_IMPORTED_MODULE_43__[\"StartDocumentClassificationJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.startDominantLanguageDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StartDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_44__[\"StartDominantLanguageDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.startEntitiesDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StartEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_45__[\"StartEntitiesDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.startEventsDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StartEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_46__[\"StartEventsDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.startKeyPhrasesDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StartKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_47__[\"StartKeyPhrasesDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.startPiiEntitiesDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StartPiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_48__[\"StartPiiEntitiesDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.startSentimentDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StartSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_49__[\"StartSentimentDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.startTopicsDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StartTopicsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_50__[\"StartTopicsDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.stopDominantLanguageDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StopDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_51__[\"StopDominantLanguageDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.stopEntitiesDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StopEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_52__[\"StopEntitiesDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.stopEventsDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StopEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_53__[\"StopEventsDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.stopKeyPhrasesDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StopKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_54__[\"StopKeyPhrasesDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.stopPiiEntitiesDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StopPiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_55__[\"StopPiiEntitiesDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.stopSentimentDetectionJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StopSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_56__[\"StopSentimentDetectionJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.stopTrainingDocumentClassifier = function (args, optionsOrCb, cb) {\n var command = new _commands_StopTrainingDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_57__[\"StopTrainingDocumentClassifierCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.stopTrainingEntityRecognizer = function (args, optionsOrCb, cb) {\n var command = new _commands_StopTrainingEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_58__[\"StopTrainingEntityRecognizerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.tagResource = function (args, optionsOrCb, cb) {\n var command = new _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_59__[\"TagResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.untagResource = function (args, optionsOrCb, cb) {\n var command = new _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_60__[\"UntagResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Comprehend.prototype.updateEndpoint = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateEndpointCommand__WEBPACK_IMPORTED_MODULE_61__[\"UpdateEndpointCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return Comprehend;\n}(_ComprehendClient__WEBPACK_IMPORTED_MODULE_1__[\"ComprehendClient\"]));\n\n//# sourceMappingURL=Comprehend.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js ***! \*****************************************************************************/ /*! exports provided: ComprehendClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ComprehendClient\", function() { return ComprehendClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n *

Amazon Comprehend is an AWS service for gaining insight into the content of documents.\n * Use these actions to determine the topics contained in your documents, the topics they\n * discuss, the predominant sentiment expressed in them, the predominant language used, and\n * more.

\n */\nvar ComprehendClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ComprehendClient, _super);\n function ComprehendClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n ComprehendClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return ComprehendClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=ComprehendClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectDominantLanguageCommand.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectDominantLanguageCommand.js ***! \********************************************************************************************************/ /*! exports provided: BatchDetectDominantLanguageCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageCommand\", function() { return BatchDetectDominantLanguageCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Determines the dominant language of the input text for a batch of documents. For a list\n * of languages that Amazon Comprehend can detect, see Amazon Comprehend Supported Languages.\n *

\n */\nvar BatchDetectDominantLanguageCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchDetectDominantLanguageCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function BatchDetectDominantLanguageCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n BatchDetectDominantLanguageCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"BatchDetectDominantLanguageCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectDominantLanguageRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectDominantLanguageResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchDetectDominantLanguageCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1BatchDetectDominantLanguageCommand\"])(input, context);\n };\n BatchDetectDominantLanguageCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1BatchDetectDominantLanguageCommand\"])(output, context);\n };\n return BatchDetectDominantLanguageCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=BatchDetectDominantLanguageCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectDominantLanguageCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectEntitiesCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectEntitiesCommand.js ***! \************************************************************************************************/ /*! exports provided: BatchDetectEntitiesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesCommand\", function() { return BatchDetectEntitiesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Inspects the text of a batch of documents for named entities and returns information\n * about them. For more information about named entities, see how-entities\n *

\n */\nvar BatchDetectEntitiesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchDetectEntitiesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function BatchDetectEntitiesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n BatchDetectEntitiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"BatchDetectEntitiesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectEntitiesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectEntitiesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchDetectEntitiesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1BatchDetectEntitiesCommand\"])(input, context);\n };\n BatchDetectEntitiesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1BatchDetectEntitiesCommand\"])(output, context);\n };\n return BatchDetectEntitiesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=BatchDetectEntitiesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectEntitiesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectKeyPhrasesCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectKeyPhrasesCommand.js ***! \**************************************************************************************************/ /*! exports provided: BatchDetectKeyPhrasesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesCommand\", function() { return BatchDetectKeyPhrasesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects the key noun phrases found in a batch of documents.

\n */\nvar BatchDetectKeyPhrasesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchDetectKeyPhrasesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function BatchDetectKeyPhrasesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n BatchDetectKeyPhrasesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"BatchDetectKeyPhrasesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectKeyPhrasesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectKeyPhrasesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchDetectKeyPhrasesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1BatchDetectKeyPhrasesCommand\"])(input, context);\n };\n BatchDetectKeyPhrasesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1BatchDetectKeyPhrasesCommand\"])(output, context);\n };\n return BatchDetectKeyPhrasesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=BatchDetectKeyPhrasesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectKeyPhrasesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSentimentCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSentimentCommand.js ***! \*************************************************************************************************/ /*! exports provided: BatchDetectSentimentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentCommand\", function() { return BatchDetectSentimentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Inspects a batch of documents and returns an inference of the prevailing sentiment,\n * POSITIVE, NEUTRAL, MIXED, or NEGATIVE,\n * in each one.

\n */\nvar BatchDetectSentimentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchDetectSentimentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function BatchDetectSentimentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n BatchDetectSentimentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"BatchDetectSentimentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectSentimentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectSentimentResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchDetectSentimentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1BatchDetectSentimentCommand\"])(input, context);\n };\n BatchDetectSentimentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1BatchDetectSentimentCommand\"])(output, context);\n };\n return BatchDetectSentimentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=BatchDetectSentimentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSentimentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSyntaxCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSyntaxCommand.js ***! \**********************************************************************************************/ /*! exports provided: BatchDetectSyntaxCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxCommand\", function() { return BatchDetectSyntaxCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Inspects the text of a batch of documents for the syntax and part of speech of the words\n * in the document and returns information about them. For more information, see how-syntax.

\n */\nvar BatchDetectSyntaxCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchDetectSyntaxCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function BatchDetectSyntaxCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n BatchDetectSyntaxCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"BatchDetectSyntaxCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectSyntaxRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"BatchDetectSyntaxResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchDetectSyntaxCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1BatchDetectSyntaxCommand\"])(input, context);\n };\n BatchDetectSyntaxCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1BatchDetectSyntaxCommand\"])(output, context);\n };\n return BatchDetectSyntaxCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=BatchDetectSyntaxCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSyntaxCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ClassifyDocumentCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ClassifyDocumentCommand.js ***! \*********************************************************************************************/ /*! exports provided: ClassifyDocumentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClassifyDocumentCommand\", function() { return ClassifyDocumentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new document classification request to analyze a single document in real-time,\n * using a previously created and trained custom model and an endpoint.

\n */\nvar ClassifyDocumentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ClassifyDocumentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ClassifyDocumentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ClassifyDocumentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ClassifyDocumentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ClassifyDocumentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ClassifyDocumentResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ClassifyDocumentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ClassifyDocumentCommand\"])(input, context);\n };\n ClassifyDocumentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ClassifyDocumentCommand\"])(output, context);\n };\n return ClassifyDocumentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ClassifyDocumentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ClassifyDocumentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateDocumentClassifierCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateDocumentClassifierCommand.js ***! \*****************************************************************************************************/ /*! exports provided: CreateDocumentClassifierCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateDocumentClassifierCommand\", function() { return CreateDocumentClassifierCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new document classifier that you can use to categorize documents. To create a\n * classifier, you provide a set of training documents that labeled with the categories that you\n * want to use. After the classifier is trained you can use it to categorize a set of labeled\n * documents into the categories. For more information, see how-document-classification.

\n */\nvar CreateDocumentClassifierCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateDocumentClassifierCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateDocumentClassifierCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateDocumentClassifierCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"CreateDocumentClassifierCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateDocumentClassifierRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateDocumentClassifierResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateDocumentClassifierCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateDocumentClassifierCommand\"])(input, context);\n };\n CreateDocumentClassifierCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateDocumentClassifierCommand\"])(output, context);\n };\n return CreateDocumentClassifierCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateDocumentClassifierCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateDocumentClassifierCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEndpointCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEndpointCommand.js ***! \*******************************************************************************************/ /*! exports provided: CreateEndpointCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateEndpointCommand\", function() { return CreateEndpointCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a model-specific endpoint for synchronous inference for a previously trained\n * custom model\n *

\n */\nvar CreateEndpointCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateEndpointCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateEndpointCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateEndpointCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"CreateEndpointCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateEndpointRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateEndpointResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateEndpointCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateEndpointCommand\"])(input, context);\n };\n CreateEndpointCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateEndpointCommand\"])(output, context);\n };\n return CreateEndpointCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateEndpointCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEndpointCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEntityRecognizerCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEntityRecognizerCommand.js ***! \***************************************************************************************************/ /*! exports provided: CreateEntityRecognizerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateEntityRecognizerCommand\", function() { return CreateEntityRecognizerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates an entity recognizer using submitted files. After your\n * CreateEntityRecognizer request is submitted, you can check job status using the\n * API.

\n */\nvar CreateEntityRecognizerCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateEntityRecognizerCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateEntityRecognizerCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateEntityRecognizerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"CreateEntityRecognizerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateEntityRecognizerRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateEntityRecognizerResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateEntityRecognizerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateEntityRecognizerCommand\"])(input, context);\n };\n CreateEntityRecognizerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateEntityRecognizerCommand\"])(output, context);\n };\n return CreateEntityRecognizerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateEntityRecognizerCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEntityRecognizerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteDocumentClassifierCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteDocumentClassifierCommand.js ***! \*****************************************************************************************************/ /*! exports provided: DeleteDocumentClassifierCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteDocumentClassifierCommand\", function() { return DeleteDocumentClassifierCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a previously created document classifier

\n *

Only those classifiers that are in terminated states (IN_ERROR, TRAINED) will be deleted.\n * If an active inference job is using the model, a ResourceInUseException will be\n * returned.

\n *

This is an asynchronous action that puts the classifier into a DELETING state, and it is\n * then removed by a background job. Once removed, the classifier disappears from your account\n * and is no longer available for use.

\n */\nvar DeleteDocumentClassifierCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteDocumentClassifierCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteDocumentClassifierCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteDocumentClassifierCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DeleteDocumentClassifierCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteDocumentClassifierRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteDocumentClassifierResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteDocumentClassifierCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteDocumentClassifierCommand\"])(input, context);\n };\n DeleteDocumentClassifierCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteDocumentClassifierCommand\"])(output, context);\n };\n return DeleteDocumentClassifierCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteDocumentClassifierCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteDocumentClassifierCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEndpointCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEndpointCommand.js ***! \*******************************************************************************************/ /*! exports provided: DeleteEndpointCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointCommand\", function() { return DeleteEndpointCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a model-specific endpoint for a previously-trained custom model. All endpoints\n * must be deleted in order for the model to be deleted.

\n */\nvar DeleteEndpointCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteEndpointCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteEndpointCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteEndpointCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DeleteEndpointCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEndpointRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEndpointResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteEndpointCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteEndpointCommand\"])(input, context);\n };\n DeleteEndpointCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteEndpointCommand\"])(output, context);\n };\n return DeleteEndpointCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteEndpointCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEndpointCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEntityRecognizerCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEntityRecognizerCommand.js ***! \***************************************************************************************************/ /*! exports provided: DeleteEntityRecognizerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEntityRecognizerCommand\", function() { return DeleteEntityRecognizerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes an entity recognizer.

\n *

Only those recognizers that are in terminated states (IN_ERROR, TRAINED) will be deleted.\n * If an active inference job is using the model, a ResourceInUseException will be\n * returned.

\n *

This is an asynchronous action that puts the recognizer into a DELETING state, and it is\n * then removed by a background job. Once removed, the recognizer disappears from your account\n * and is no longer available for use.

\n */\nvar DeleteEntityRecognizerCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteEntityRecognizerCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteEntityRecognizerCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteEntityRecognizerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DeleteEntityRecognizerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEntityRecognizerRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEntityRecognizerResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteEntityRecognizerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteEntityRecognizerCommand\"])(input, context);\n };\n DeleteEntityRecognizerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteEntityRecognizerCommand\"])(output, context);\n };\n return DeleteEntityRecognizerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteEntityRecognizerCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEntityRecognizerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassificationJobCommand.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassificationJobCommand.js ***! \**************************************************************************************************************/ /*! exports provided: DescribeDocumentClassificationJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassificationJobCommand\", function() { return DescribeDocumentClassificationJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with a document classification job. Use this operation to\n * get the status of a classification job.

\n */\nvar DescribeDocumentClassificationJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeDocumentClassificationJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeDocumentClassificationJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeDocumentClassificationJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeDocumentClassificationJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDocumentClassificationJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDocumentClassificationJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeDocumentClassificationJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeDocumentClassificationJobCommand\"])(input, context);\n };\n DescribeDocumentClassificationJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeDocumentClassificationJobCommand\"])(output, context);\n };\n return DescribeDocumentClassificationJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeDocumentClassificationJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassificationJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassifierCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassifierCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DescribeDocumentClassifierCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassifierCommand\", function() { return DescribeDocumentClassifierCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with a document classifier.

\n */\nvar DescribeDocumentClassifierCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeDocumentClassifierCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeDocumentClassifierCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeDocumentClassifierCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeDocumentClassifierCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDocumentClassifierRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDocumentClassifierResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeDocumentClassifierCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeDocumentClassifierCommand\"])(input, context);\n };\n DescribeDocumentClassifierCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeDocumentClassifierCommand\"])(output, context);\n };\n return DescribeDocumentClassifierCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeDocumentClassifierCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassifierCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDominantLanguageDetectionJobCommand.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDominantLanguageDetectionJobCommand.js ***! \*****************************************************************************************************************/ /*! exports provided: DescribeDominantLanguageDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDominantLanguageDetectionJobCommand\", function() { return DescribeDominantLanguageDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with a dominant language detection job. Use this operation\n * to get the status of a detection job.

\n */\nvar DescribeDominantLanguageDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeDominantLanguageDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeDominantLanguageDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeDominantLanguageDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeDominantLanguageDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDominantLanguageDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDominantLanguageDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeDominantLanguageDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeDominantLanguageDetectionJobCommand\"])(input, context);\n };\n DescribeDominantLanguageDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeDominantLanguageDetectionJobCommand\"])(output, context);\n };\n return DescribeDominantLanguageDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeDominantLanguageDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDominantLanguageDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEndpointCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEndpointCommand.js ***! \*********************************************************************************************/ /*! exports provided: DescribeEndpointCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEndpointCommand\", function() { return DescribeEndpointCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with a specific endpoint. Use this operation to get the\n * status of an endpoint.

\n */\nvar DescribeEndpointCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeEndpointCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeEndpointCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeEndpointCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeEndpointCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeEndpointRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeEndpointResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeEndpointCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeEndpointCommand\"])(input, context);\n };\n DescribeEndpointCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeEndpointCommand\"])(output, context);\n };\n return DescribeEndpointCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeEndpointCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEndpointCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntitiesDetectionJobCommand.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntitiesDetectionJobCommand.js ***! \*********************************************************************************************************/ /*! exports provided: DescribeEntitiesDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntitiesDetectionJobCommand\", function() { return DescribeEntitiesDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with an entities detection job. Use this operation to get\n * the status of a detection job.

\n */\nvar DescribeEntitiesDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeEntitiesDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeEntitiesDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeEntitiesDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeEntitiesDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeEntitiesDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeEntitiesDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeEntitiesDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeEntitiesDetectionJobCommand\"])(input, context);\n };\n DescribeEntitiesDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeEntitiesDetectionJobCommand\"])(output, context);\n };\n return DescribeEntitiesDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeEntitiesDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntitiesDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntityRecognizerCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntityRecognizerCommand.js ***! \*****************************************************************************************************/ /*! exports provided: DescribeEntityRecognizerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntityRecognizerCommand\", function() { return DescribeEntityRecognizerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Provides details about an entity recognizer including status, S3 buckets containing\n * training data, recognizer metadata, metrics, and so on.

\n */\nvar DescribeEntityRecognizerCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeEntityRecognizerCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeEntityRecognizerCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeEntityRecognizerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeEntityRecognizerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeEntityRecognizerRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeEntityRecognizerResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeEntityRecognizerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeEntityRecognizerCommand\"])(input, context);\n };\n DescribeEntityRecognizerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeEntityRecognizerCommand\"])(output, context);\n };\n return DescribeEntityRecognizerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeEntityRecognizerCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntityRecognizerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEventsDetectionJobCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEventsDetectionJobCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DescribeEventsDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEventsDetectionJobCommand\", function() { return DescribeEventsDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the status and details of an events detection job.

\n */\nvar DescribeEventsDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeEventsDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeEventsDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeEventsDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeEventsDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeEventsDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeEventsDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeEventsDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeEventsDetectionJobCommand\"])(input, context);\n };\n DescribeEventsDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeEventsDetectionJobCommand\"])(output, context);\n };\n return DescribeEventsDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeEventsDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEventsDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeKeyPhrasesDetectionJobCommand.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeKeyPhrasesDetectionJobCommand.js ***! \***********************************************************************************************************/ /*! exports provided: DescribeKeyPhrasesDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeKeyPhrasesDetectionJobCommand\", function() { return DescribeKeyPhrasesDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with a key phrases detection job. Use this operation to get\n * the status of a detection job.

\n */\nvar DescribeKeyPhrasesDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeKeyPhrasesDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeKeyPhrasesDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeKeyPhrasesDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeKeyPhrasesDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeKeyPhrasesDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeKeyPhrasesDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeKeyPhrasesDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand\"])(input, context);\n };\n DescribeKeyPhrasesDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand\"])(output, context);\n };\n return DescribeKeyPhrasesDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeKeyPhrasesDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeKeyPhrasesDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribePiiEntitiesDetectionJobCommand.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribePiiEntitiesDetectionJobCommand.js ***! \************************************************************************************************************/ /*! exports provided: DescribePiiEntitiesDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribePiiEntitiesDetectionJobCommand\", function() { return DescribePiiEntitiesDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with a PII entities detection job. For example, you can use\n * this operation to get the job status.

\n */\nvar DescribePiiEntitiesDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribePiiEntitiesDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribePiiEntitiesDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribePiiEntitiesDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribePiiEntitiesDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribePiiEntitiesDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribePiiEntitiesDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribePiiEntitiesDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribePiiEntitiesDetectionJobCommand\"])(input, context);\n };\n DescribePiiEntitiesDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribePiiEntitiesDetectionJobCommand\"])(output, context);\n };\n return DescribePiiEntitiesDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribePiiEntitiesDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribePiiEntitiesDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeSentimentDetectionJobCommand.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeSentimentDetectionJobCommand.js ***! \**********************************************************************************************************/ /*! exports provided: DescribeSentimentDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeSentimentDetectionJobCommand\", function() { return DescribeSentimentDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with a sentiment detection job. Use this operation to get\n * the status of a detection job.

\n */\nvar DescribeSentimentDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeSentimentDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeSentimentDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeSentimentDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeSentimentDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeSentimentDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeSentimentDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeSentimentDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeSentimentDetectionJobCommand\"])(input, context);\n };\n DescribeSentimentDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeSentimentDetectionJobCommand\"])(output, context);\n };\n return DescribeSentimentDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeSentimentDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeSentimentDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeTopicsDetectionJobCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeTopicsDetectionJobCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DescribeTopicsDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeTopicsDetectionJobCommand\", function() { return DescribeTopicsDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with a topic detection job. Use this operation to get\n * the status of a detection job.

\n */\nvar DescribeTopicsDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeTopicsDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeTopicsDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeTopicsDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DescribeTopicsDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeTopicsDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeTopicsDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeTopicsDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeTopicsDetectionJobCommand\"])(input, context);\n };\n DescribeTopicsDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeTopicsDetectionJobCommand\"])(output, context);\n };\n return DescribeTopicsDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeTopicsDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeTopicsDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectDominantLanguageCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectDominantLanguageCommand.js ***! \***************************************************************************************************/ /*! exports provided: DetectDominantLanguageCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectDominantLanguageCommand\", function() { return DetectDominantLanguageCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Determines the dominant language of the input text. For a list of languages that Amazon\n * Comprehend can detect, see Amazon Comprehend Supported Languages.

\n */\nvar DetectDominantLanguageCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectDominantLanguageCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectDominantLanguageCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectDominantLanguageCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DetectDominantLanguageCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectDominantLanguageRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectDominantLanguageResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectDominantLanguageCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectDominantLanguageCommand\"])(input, context);\n };\n DetectDominantLanguageCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectDominantLanguageCommand\"])(output, context);\n };\n return DetectDominantLanguageCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectDominantLanguageCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectDominantLanguageCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectEntitiesCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectEntitiesCommand.js ***! \*******************************************************************************************/ /*! exports provided: DetectEntitiesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectEntitiesCommand\", function() { return DetectEntitiesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Inspects text for named entities, and returns information about them. For more\n * information, about named entities, see how-entities.

\n */\nvar DetectEntitiesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectEntitiesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectEntitiesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectEntitiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DetectEntitiesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectEntitiesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectEntitiesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectEntitiesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectEntitiesCommand\"])(input, context);\n };\n DetectEntitiesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectEntitiesCommand\"])(output, context);\n };\n return DetectEntitiesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectEntitiesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectEntitiesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectKeyPhrasesCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectKeyPhrasesCommand.js ***! \*********************************************************************************************/ /*! exports provided: DetectKeyPhrasesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectKeyPhrasesCommand\", function() { return DetectKeyPhrasesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects the key noun phrases found in the text.

\n */\nvar DetectKeyPhrasesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectKeyPhrasesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectKeyPhrasesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectKeyPhrasesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DetectKeyPhrasesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectKeyPhrasesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectKeyPhrasesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectKeyPhrasesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectKeyPhrasesCommand\"])(input, context);\n };\n DetectKeyPhrasesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectKeyPhrasesCommand\"])(output, context);\n };\n return DetectKeyPhrasesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectKeyPhrasesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectKeyPhrasesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectPiiEntitiesCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectPiiEntitiesCommand.js ***! \**********************************************************************************************/ /*! exports provided: DetectPiiEntitiesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectPiiEntitiesCommand\", function() { return DetectPiiEntitiesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Inspects the input text for entities that contain personally identifiable information\n * (PII) and returns information about them.

\n */\nvar DetectPiiEntitiesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectPiiEntitiesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectPiiEntitiesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectPiiEntitiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DetectPiiEntitiesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectPiiEntitiesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectPiiEntitiesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectPiiEntitiesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectPiiEntitiesCommand\"])(input, context);\n };\n DetectPiiEntitiesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectPiiEntitiesCommand\"])(output, context);\n };\n return DetectPiiEntitiesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectPiiEntitiesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectPiiEntitiesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSentimentCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSentimentCommand.js ***! \********************************************************************************************/ /*! exports provided: DetectSentimentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectSentimentCommand\", function() { return DetectSentimentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Inspects text and returns an inference of the prevailing sentiment\n * (POSITIVE, NEUTRAL, MIXED, or NEGATIVE).

\n */\nvar DetectSentimentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectSentimentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectSentimentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectSentimentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DetectSentimentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectSentimentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectSentimentResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectSentimentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectSentimentCommand\"])(input, context);\n };\n DetectSentimentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectSentimentCommand\"])(output, context);\n };\n return DetectSentimentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectSentimentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSentimentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSyntaxCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSyntaxCommand.js ***! \*****************************************************************************************/ /*! exports provided: DetectSyntaxCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectSyntaxCommand\", function() { return DetectSyntaxCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Inspects text for syntax and the part of speech of words in the document. For more\n * information, how-syntax.

\n */\nvar DetectSyntaxCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectSyntaxCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectSyntaxCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectSyntaxCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"DetectSyntaxCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectSyntaxRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectSyntaxResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectSyntaxCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectSyntaxCommand\"])(input, context);\n };\n DetectSyntaxCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectSyntaxCommand\"])(output, context);\n };\n return DetectSyntaxCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectSyntaxCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSyntaxCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassificationJobsCommand.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassificationJobsCommand.js ***! \***********************************************************************************************************/ /*! exports provided: ListDocumentClassificationJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassificationJobsCommand\", function() { return ListDocumentClassificationJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of the documentation classification jobs that you have submitted.

\n */\nvar ListDocumentClassificationJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListDocumentClassificationJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListDocumentClassificationJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListDocumentClassificationJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListDocumentClassificationJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListDocumentClassificationJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListDocumentClassificationJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListDocumentClassificationJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListDocumentClassificationJobsCommand\"])(input, context);\n };\n ListDocumentClassificationJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListDocumentClassificationJobsCommand\"])(output, context);\n };\n return ListDocumentClassificationJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListDocumentClassificationJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassificationJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassifiersCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassifiersCommand.js ***! \****************************************************************************************************/ /*! exports provided: ListDocumentClassifiersCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassifiersCommand\", function() { return ListDocumentClassifiersCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of the document classifiers that you have created.

\n */\nvar ListDocumentClassifiersCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListDocumentClassifiersCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListDocumentClassifiersCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListDocumentClassifiersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListDocumentClassifiersCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListDocumentClassifiersRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListDocumentClassifiersResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListDocumentClassifiersCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListDocumentClassifiersCommand\"])(input, context);\n };\n ListDocumentClassifiersCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListDocumentClassifiersCommand\"])(output, context);\n };\n return ListDocumentClassifiersCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListDocumentClassifiersCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassifiersCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDominantLanguageDetectionJobsCommand.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDominantLanguageDetectionJobsCommand.js ***! \**************************************************************************************************************/ /*! exports provided: ListDominantLanguageDetectionJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDominantLanguageDetectionJobsCommand\", function() { return ListDominantLanguageDetectionJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of the dominant language detection jobs that you have submitted.

\n */\nvar ListDominantLanguageDetectionJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListDominantLanguageDetectionJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListDominantLanguageDetectionJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListDominantLanguageDetectionJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListDominantLanguageDetectionJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListDominantLanguageDetectionJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListDominantLanguageDetectionJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListDominantLanguageDetectionJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListDominantLanguageDetectionJobsCommand\"])(input, context);\n };\n ListDominantLanguageDetectionJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListDominantLanguageDetectionJobsCommand\"])(output, context);\n };\n return ListDominantLanguageDetectionJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListDominantLanguageDetectionJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDominantLanguageDetectionJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEndpointsCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEndpointsCommand.js ***! \******************************************************************************************/ /*! exports provided: ListEndpointsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEndpointsCommand\", function() { return ListEndpointsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of all existing endpoints that you've created.

\n */\nvar ListEndpointsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListEndpointsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListEndpointsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListEndpointsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListEndpointsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListEndpointsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListEndpointsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListEndpointsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListEndpointsCommand\"])(input, context);\n };\n ListEndpointsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListEndpointsCommand\"])(output, context);\n };\n return ListEndpointsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListEndpointsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEndpointsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntitiesDetectionJobsCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntitiesDetectionJobsCommand.js ***! \******************************************************************************************************/ /*! exports provided: ListEntitiesDetectionJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEntitiesDetectionJobsCommand\", function() { return ListEntitiesDetectionJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of the entity detection jobs that you have submitted.

\n */\nvar ListEntitiesDetectionJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListEntitiesDetectionJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListEntitiesDetectionJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListEntitiesDetectionJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListEntitiesDetectionJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListEntitiesDetectionJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListEntitiesDetectionJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListEntitiesDetectionJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListEntitiesDetectionJobsCommand\"])(input, context);\n };\n ListEntitiesDetectionJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListEntitiesDetectionJobsCommand\"])(output, context);\n };\n return ListEntitiesDetectionJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListEntitiesDetectionJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntitiesDetectionJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntityRecognizersCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntityRecognizersCommand.js ***! \**************************************************************************************************/ /*! exports provided: ListEntityRecognizersCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEntityRecognizersCommand\", function() { return ListEntityRecognizersCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of the properties of all entity recognizers that you created, including\n * recognizers currently in training. Allows you to filter the list of recognizers based on\n * criteria such as status and submission time. This call returns up to 500 entity recognizers in\n * the list, with a default number of 100 recognizers in the list.

\n *

The results of this list are not in any particular order. Please get the list and sort\n * locally if needed.

\n */\nvar ListEntityRecognizersCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListEntityRecognizersCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListEntityRecognizersCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListEntityRecognizersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListEntityRecognizersCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListEntityRecognizersRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListEntityRecognizersResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListEntityRecognizersCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListEntityRecognizersCommand\"])(input, context);\n };\n ListEntityRecognizersCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListEntityRecognizersCommand\"])(output, context);\n };\n return ListEntityRecognizersCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListEntityRecognizersCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntityRecognizersCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEventsDetectionJobsCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEventsDetectionJobsCommand.js ***! \****************************************************************************************************/ /*! exports provided: ListEventsDetectionJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEventsDetectionJobsCommand\", function() { return ListEventsDetectionJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of the events detection jobs that you have submitted.

\n */\nvar ListEventsDetectionJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListEventsDetectionJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListEventsDetectionJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListEventsDetectionJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListEventsDetectionJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListEventsDetectionJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListEventsDetectionJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListEventsDetectionJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListEventsDetectionJobsCommand\"])(input, context);\n };\n ListEventsDetectionJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListEventsDetectionJobsCommand\"])(output, context);\n };\n return ListEventsDetectionJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListEventsDetectionJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEventsDetectionJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListKeyPhrasesDetectionJobsCommand.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListKeyPhrasesDetectionJobsCommand.js ***! \********************************************************************************************************/ /*! exports provided: ListKeyPhrasesDetectionJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListKeyPhrasesDetectionJobsCommand\", function() { return ListKeyPhrasesDetectionJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Get a list of key phrase detection jobs that you have submitted.

\n */\nvar ListKeyPhrasesDetectionJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListKeyPhrasesDetectionJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListKeyPhrasesDetectionJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListKeyPhrasesDetectionJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListKeyPhrasesDetectionJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListKeyPhrasesDetectionJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListKeyPhrasesDetectionJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListKeyPhrasesDetectionJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListKeyPhrasesDetectionJobsCommand\"])(input, context);\n };\n ListKeyPhrasesDetectionJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListKeyPhrasesDetectionJobsCommand\"])(output, context);\n };\n return ListKeyPhrasesDetectionJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListKeyPhrasesDetectionJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListKeyPhrasesDetectionJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListPiiEntitiesDetectionJobsCommand.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListPiiEntitiesDetectionJobsCommand.js ***! \*********************************************************************************************************/ /*! exports provided: ListPiiEntitiesDetectionJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPiiEntitiesDetectionJobsCommand\", function() { return ListPiiEntitiesDetectionJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of the PII entity detection jobs that you have submitted.

\n */\nvar ListPiiEntitiesDetectionJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListPiiEntitiesDetectionJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListPiiEntitiesDetectionJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListPiiEntitiesDetectionJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListPiiEntitiesDetectionJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListPiiEntitiesDetectionJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListPiiEntitiesDetectionJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListPiiEntitiesDetectionJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListPiiEntitiesDetectionJobsCommand\"])(input, context);\n };\n ListPiiEntitiesDetectionJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListPiiEntitiesDetectionJobsCommand\"])(output, context);\n };\n return ListPiiEntitiesDetectionJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListPiiEntitiesDetectionJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListPiiEntitiesDetectionJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListSentimentDetectionJobsCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListSentimentDetectionJobsCommand.js ***! \*******************************************************************************************************/ /*! exports provided: ListSentimentDetectionJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListSentimentDetectionJobsCommand\", function() { return ListSentimentDetectionJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of sentiment detection jobs that you have submitted.

\n */\nvar ListSentimentDetectionJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListSentimentDetectionJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListSentimentDetectionJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListSentimentDetectionJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListSentimentDetectionJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListSentimentDetectionJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListSentimentDetectionJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListSentimentDetectionJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListSentimentDetectionJobsCommand\"])(input, context);\n };\n ListSentimentDetectionJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListSentimentDetectionJobsCommand\"])(output, context);\n };\n return ListSentimentDetectionJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListSentimentDetectionJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListSentimentDetectionJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTagsForResourceCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTagsForResourceCommand.js ***! \************************************************************************************************/ /*! exports provided: ListTagsForResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceCommand\", function() { return ListTagsForResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists all tags associated with a given Amazon Comprehend resource.

\n */\nvar ListTagsForResourceCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTagsForResourceCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTagsForResourceCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListTagsForResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForResourceRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForResourceResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTagsForResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListTagsForResourceCommand\"])(input, context);\n };\n ListTagsForResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListTagsForResourceCommand\"])(output, context);\n };\n return ListTagsForResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTagsForResourceCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTagsForResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTopicsDetectionJobsCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTopicsDetectionJobsCommand.js ***! \****************************************************************************************************/ /*! exports provided: ListTopicsDetectionJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTopicsDetectionJobsCommand\", function() { return ListTopicsDetectionJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of the topic detection jobs that you have submitted.

\n */\nvar ListTopicsDetectionJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTopicsDetectionJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTopicsDetectionJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTopicsDetectionJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"ListTopicsDetectionJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTopicsDetectionJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTopicsDetectionJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTopicsDetectionJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListTopicsDetectionJobsCommand\"])(input, context);\n };\n ListTopicsDetectionJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListTopicsDetectionJobsCommand\"])(output, context);\n };\n return ListTopicsDetectionJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTopicsDetectionJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTopicsDetectionJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDocumentClassificationJobCommand.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDocumentClassificationJobCommand.js ***! \***********************************************************************************************************/ /*! exports provided: StartDocumentClassificationJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentClassificationJobCommand\", function() { return StartDocumentClassificationJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts an asynchronous document classification job. Use the operation to track the progress of the\n * job.

\n */\nvar StartDocumentClassificationJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartDocumentClassificationJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartDocumentClassificationJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartDocumentClassificationJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StartDocumentClassificationJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDocumentClassificationJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDocumentClassificationJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartDocumentClassificationJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartDocumentClassificationJobCommand\"])(input, context);\n };\n StartDocumentClassificationJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartDocumentClassificationJobCommand\"])(output, context);\n };\n return StartDocumentClassificationJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartDocumentClassificationJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDocumentClassificationJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDominantLanguageDetectionJobCommand.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDominantLanguageDetectionJobCommand.js ***! \**************************************************************************************************************/ /*! exports provided: StartDominantLanguageDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDominantLanguageDetectionJobCommand\", function() { return StartDominantLanguageDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts an asynchronous dominant language detection job for a collection of documents. Use\n * the operation to track the status\n * of a job.

\n */\nvar StartDominantLanguageDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartDominantLanguageDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartDominantLanguageDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartDominantLanguageDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StartDominantLanguageDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDominantLanguageDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDominantLanguageDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartDominantLanguageDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartDominantLanguageDetectionJobCommand\"])(input, context);\n };\n StartDominantLanguageDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartDominantLanguageDetectionJobCommand\"])(output, context);\n };\n return StartDominantLanguageDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartDominantLanguageDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDominantLanguageDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEntitiesDetectionJobCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEntitiesDetectionJobCommand.js ***! \******************************************************************************************************/ /*! exports provided: StartEntitiesDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartEntitiesDetectionJobCommand\", function() { return StartEntitiesDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts an asynchronous entity detection job for a collection of documents. Use the operation to track the status of a job.

\n *

This API can be used for either standard entity detection or custom entity recognition. In\n * order to be used for custom entity recognition, the optional EntityRecognizerArn\n * must be used in order to provide access to the recognizer being used to detect the custom\n * entity.

\n */\nvar StartEntitiesDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartEntitiesDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartEntitiesDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartEntitiesDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StartEntitiesDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartEntitiesDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartEntitiesDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartEntitiesDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartEntitiesDetectionJobCommand\"])(input, context);\n };\n StartEntitiesDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartEntitiesDetectionJobCommand\"])(output, context);\n };\n return StartEntitiesDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartEntitiesDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEntitiesDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEventsDetectionJobCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEventsDetectionJobCommand.js ***! \****************************************************************************************************/ /*! exports provided: StartEventsDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartEventsDetectionJobCommand\", function() { return StartEventsDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts an asynchronous event detection job for a collection of documents.

\n */\nvar StartEventsDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartEventsDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartEventsDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartEventsDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StartEventsDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartEventsDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartEventsDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartEventsDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartEventsDetectionJobCommand\"])(input, context);\n };\n StartEventsDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartEventsDetectionJobCommand\"])(output, context);\n };\n return StartEventsDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartEventsDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEventsDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartKeyPhrasesDetectionJobCommand.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartKeyPhrasesDetectionJobCommand.js ***! \********************************************************************************************************/ /*! exports provided: StartKeyPhrasesDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartKeyPhrasesDetectionJobCommand\", function() { return StartKeyPhrasesDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts an asynchronous key phrase detection job for a collection of documents. Use the\n * operation to track the status of a\n * job.

\n */\nvar StartKeyPhrasesDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartKeyPhrasesDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartKeyPhrasesDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartKeyPhrasesDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StartKeyPhrasesDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartKeyPhrasesDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartKeyPhrasesDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartKeyPhrasesDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartKeyPhrasesDetectionJobCommand\"])(input, context);\n };\n StartKeyPhrasesDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartKeyPhrasesDetectionJobCommand\"])(output, context);\n };\n return StartKeyPhrasesDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartKeyPhrasesDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartKeyPhrasesDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartPiiEntitiesDetectionJobCommand.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartPiiEntitiesDetectionJobCommand.js ***! \*********************************************************************************************************/ /*! exports provided: StartPiiEntitiesDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartPiiEntitiesDetectionJobCommand\", function() { return StartPiiEntitiesDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts an asynchronous PII entity detection job for a collection of documents.

\n */\nvar StartPiiEntitiesDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartPiiEntitiesDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartPiiEntitiesDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartPiiEntitiesDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StartPiiEntitiesDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartPiiEntitiesDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartPiiEntitiesDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartPiiEntitiesDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartPiiEntitiesDetectionJobCommand\"])(input, context);\n };\n StartPiiEntitiesDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartPiiEntitiesDetectionJobCommand\"])(output, context);\n };\n return StartPiiEntitiesDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartPiiEntitiesDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartPiiEntitiesDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartSentimentDetectionJobCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartSentimentDetectionJobCommand.js ***! \*******************************************************************************************************/ /*! exports provided: StartSentimentDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSentimentDetectionJobCommand\", function() { return StartSentimentDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts an asynchronous sentiment detection job for a collection of documents. use the\n * operation to track the status of a\n * job.

\n */\nvar StartSentimentDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartSentimentDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartSentimentDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartSentimentDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StartSentimentDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartSentimentDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartSentimentDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartSentimentDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartSentimentDetectionJobCommand\"])(input, context);\n };\n StartSentimentDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartSentimentDetectionJobCommand\"])(output, context);\n };\n return StartSentimentDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartSentimentDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartSentimentDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartTopicsDetectionJobCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartTopicsDetectionJobCommand.js ***! \****************************************************************************************************/ /*! exports provided: StartTopicsDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTopicsDetectionJobCommand\", function() { return StartTopicsDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts an asynchronous topic detection job. Use the\n * DescribeTopicDetectionJob operation to track the status of a job.

\n */\nvar StartTopicsDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartTopicsDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartTopicsDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartTopicsDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StartTopicsDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartTopicsDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartTopicsDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartTopicsDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartTopicsDetectionJobCommand\"])(input, context);\n };\n StartTopicsDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartTopicsDetectionJobCommand\"])(output, context);\n };\n return StartTopicsDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartTopicsDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartTopicsDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopDominantLanguageDetectionJobCommand.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopDominantLanguageDetectionJobCommand.js ***! \*************************************************************************************************************/ /*! exports provided: StopDominantLanguageDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopDominantLanguageDetectionJobCommand\", function() { return StopDominantLanguageDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops a dominant language detection job in progress.

\n *

If the job state is IN_PROGRESS the job is marked for termination and put\n * into the STOP_REQUESTED state. If the job completes before it can be stopped, it\n * is put into the COMPLETED state; otherwise the job is stopped and put into the\n * STOPPED state.

\n *

If the job is in the COMPLETED or FAILED state when you call the\n * StopDominantLanguageDetectionJob operation, the operation returns a 400\n * Internal Request Exception.

\n *

When a job is stopped, any documents already processed are written to the output\n * location.

\n */\nvar StopDominantLanguageDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopDominantLanguageDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopDominantLanguageDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopDominantLanguageDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StopDominantLanguageDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopDominantLanguageDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopDominantLanguageDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopDominantLanguageDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopDominantLanguageDetectionJobCommand\"])(input, context);\n };\n StopDominantLanguageDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopDominantLanguageDetectionJobCommand\"])(output, context);\n };\n return StopDominantLanguageDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopDominantLanguageDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopDominantLanguageDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEntitiesDetectionJobCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEntitiesDetectionJobCommand.js ***! \*****************************************************************************************************/ /*! exports provided: StopEntitiesDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopEntitiesDetectionJobCommand\", function() { return StopEntitiesDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops an entities detection job in progress.

\n *

If the job state is IN_PROGRESS the job is marked for termination and put\n * into the STOP_REQUESTED state. If the job completes before it can be stopped, it\n * is put into the COMPLETED state; otherwise the job is stopped and put into the\n * STOPPED state.

\n *

If the job is in the COMPLETED or FAILED state when you call the\n * StopDominantLanguageDetectionJob operation, the operation returns a 400\n * Internal Request Exception.

\n *

When a job is stopped, any documents already processed are written to the output\n * location.

\n */\nvar StopEntitiesDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopEntitiesDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopEntitiesDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopEntitiesDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StopEntitiesDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopEntitiesDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopEntitiesDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopEntitiesDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopEntitiesDetectionJobCommand\"])(input, context);\n };\n StopEntitiesDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopEntitiesDetectionJobCommand\"])(output, context);\n };\n return StopEntitiesDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopEntitiesDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEntitiesDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEventsDetectionJobCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEventsDetectionJobCommand.js ***! \***************************************************************************************************/ /*! exports provided: StopEventsDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopEventsDetectionJobCommand\", function() { return StopEventsDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops an events detection job in progress.

\n */\nvar StopEventsDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopEventsDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopEventsDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopEventsDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StopEventsDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopEventsDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopEventsDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopEventsDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopEventsDetectionJobCommand\"])(input, context);\n };\n StopEventsDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopEventsDetectionJobCommand\"])(output, context);\n };\n return StopEventsDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopEventsDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEventsDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopKeyPhrasesDetectionJobCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopKeyPhrasesDetectionJobCommand.js ***! \*******************************************************************************************************/ /*! exports provided: StopKeyPhrasesDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopKeyPhrasesDetectionJobCommand\", function() { return StopKeyPhrasesDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops a key phrases detection job in progress.

\n *

If the job state is IN_PROGRESS the job is marked for termination and put\n * into the STOP_REQUESTED state. If the job completes before it can be stopped, it\n * is put into the COMPLETED state; otherwise the job is stopped and put into the\n * STOPPED state.

\n *

If the job is in the COMPLETED or FAILED state when you call the\n * StopDominantLanguageDetectionJob operation, the operation returns a 400\n * Internal Request Exception.

\n *

When a job is stopped, any documents already processed are written to the output\n * location.

\n */\nvar StopKeyPhrasesDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopKeyPhrasesDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopKeyPhrasesDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopKeyPhrasesDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StopKeyPhrasesDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopKeyPhrasesDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopKeyPhrasesDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopKeyPhrasesDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopKeyPhrasesDetectionJobCommand\"])(input, context);\n };\n StopKeyPhrasesDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopKeyPhrasesDetectionJobCommand\"])(output, context);\n };\n return StopKeyPhrasesDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopKeyPhrasesDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopKeyPhrasesDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopPiiEntitiesDetectionJobCommand.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopPiiEntitiesDetectionJobCommand.js ***! \********************************************************************************************************/ /*! exports provided: StopPiiEntitiesDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopPiiEntitiesDetectionJobCommand\", function() { return StopPiiEntitiesDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops a PII entities detection job in progress.

\n */\nvar StopPiiEntitiesDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopPiiEntitiesDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopPiiEntitiesDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopPiiEntitiesDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StopPiiEntitiesDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopPiiEntitiesDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopPiiEntitiesDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopPiiEntitiesDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopPiiEntitiesDetectionJobCommand\"])(input, context);\n };\n StopPiiEntitiesDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopPiiEntitiesDetectionJobCommand\"])(output, context);\n };\n return StopPiiEntitiesDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopPiiEntitiesDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopPiiEntitiesDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopSentimentDetectionJobCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopSentimentDetectionJobCommand.js ***! \******************************************************************************************************/ /*! exports provided: StopSentimentDetectionJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopSentimentDetectionJobCommand\", function() { return StopSentimentDetectionJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops a sentiment detection job in progress.

\n *

If the job state is IN_PROGRESS the job is marked for termination and put\n * into the STOP_REQUESTED state. If the job completes before it can be stopped, it\n * is put into the COMPLETED state; otherwise the job is be stopped and put into the\n * STOPPED state.

\n *

If the job is in the COMPLETED or FAILED state when you call the\n * StopDominantLanguageDetectionJob operation, the operation returns a 400\n * Internal Request Exception.

\n *

When a job is stopped, any documents already processed are written to the output\n * location.

\n */\nvar StopSentimentDetectionJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopSentimentDetectionJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopSentimentDetectionJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopSentimentDetectionJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StopSentimentDetectionJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopSentimentDetectionJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopSentimentDetectionJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopSentimentDetectionJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopSentimentDetectionJobCommand\"])(input, context);\n };\n StopSentimentDetectionJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopSentimentDetectionJobCommand\"])(output, context);\n };\n return StopSentimentDetectionJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopSentimentDetectionJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopSentimentDetectionJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingDocumentClassifierCommand.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingDocumentClassifierCommand.js ***! \***********************************************************************************************************/ /*! exports provided: StopTrainingDocumentClassifierCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingDocumentClassifierCommand\", function() { return StopTrainingDocumentClassifierCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops a document classifier training job while in progress.

\n *

If the training job state is TRAINING, the job is marked for termination and\n * put into the STOP_REQUESTED state. If the training job completes before it can be\n * stopped, it is put into the TRAINED; otherwise the training job is stopped and\n * put into the STOPPED state and the service sends back an HTTP 200 response with\n * an empty HTTP body.

\n */\nvar StopTrainingDocumentClassifierCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopTrainingDocumentClassifierCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopTrainingDocumentClassifierCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopTrainingDocumentClassifierCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StopTrainingDocumentClassifierCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopTrainingDocumentClassifierRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopTrainingDocumentClassifierResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopTrainingDocumentClassifierCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopTrainingDocumentClassifierCommand\"])(input, context);\n };\n StopTrainingDocumentClassifierCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopTrainingDocumentClassifierCommand\"])(output, context);\n };\n return StopTrainingDocumentClassifierCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopTrainingDocumentClassifierCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingDocumentClassifierCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingEntityRecognizerCommand.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingEntityRecognizerCommand.js ***! \*********************************************************************************************************/ /*! exports provided: StopTrainingEntityRecognizerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingEntityRecognizerCommand\", function() { return StopTrainingEntityRecognizerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops an entity recognizer training job while in progress.

\n *

If the training job state is TRAINING, the job is marked for termination and\n * put into the STOP_REQUESTED state. If the training job completes before it can be\n * stopped, it is put into the TRAINED; otherwise the training job is stopped and\n * putted into the STOPPED state and the service sends back an HTTP 200 response\n * with an empty HTTP body.

\n */\nvar StopTrainingEntityRecognizerCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopTrainingEntityRecognizerCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopTrainingEntityRecognizerCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopTrainingEntityRecognizerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"StopTrainingEntityRecognizerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopTrainingEntityRecognizerRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopTrainingEntityRecognizerResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopTrainingEntityRecognizerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopTrainingEntityRecognizerCommand\"])(input, context);\n };\n StopTrainingEntityRecognizerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopTrainingEntityRecognizerCommand\"])(output, context);\n };\n return StopTrainingEntityRecognizerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopTrainingEntityRecognizerCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingEntityRecognizerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/TagResourceCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/TagResourceCommand.js ***! \****************************************************************************************/ /*! exports provided: TagResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceCommand\", function() { return TagResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Associates a specific tag with an Amazon Comprehend resource. A tag is a key-value pair\n * that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with\n * \"Sales\" as the key might be added to a resource to indicate its use by the sales department.\n *

\n */\nvar TagResourceCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TagResourceCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function TagResourceCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n TagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"TagResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TagResourceRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TagResourceResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n TagResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1TagResourceCommand\"])(input, context);\n };\n TagResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1TagResourceCommand\"])(output, context);\n };\n return TagResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=TagResourceCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/TagResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UntagResourceCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UntagResourceCommand.js ***! \******************************************************************************************/ /*! exports provided: UntagResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceCommand\", function() { return UntagResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Removes a specific tag associated with an Amazon Comprehend resource.

\n */\nvar UntagResourceCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UntagResourceCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UntagResourceCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UntagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"UntagResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UntagResourceRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UntagResourceResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UntagResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UntagResourceCommand\"])(input, context);\n };\n UntagResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UntagResourceCommand\"])(output, context);\n };\n return UntagResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UntagResourceCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UntagResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UpdateEndpointCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UpdateEndpointCommand.js ***! \*******************************************************************************************/ /*! exports provided: UpdateEndpointCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointCommand\", function() { return UpdateEndpointCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates information about the specified endpoint.

\n */\nvar UpdateEndpointCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateEndpointCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateEndpointCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateEndpointCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"ComprehendClient\";\n var commandName = \"UpdateEndpointCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateEndpointCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UpdateEndpointCommand\"])(input, context);\n };\n UpdateEndpointCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UpdateEndpointCommand\"])(output, context);\n };\n return UpdateEndpointCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateEndpointCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UpdateEndpointCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/endpoints.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/endpoints.js ***! \**********************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"comprehend.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"comprehend.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"comprehend.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"comprehend.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"comprehend.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"comprehend.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"comprehend.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"comprehend.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"comprehend.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"comprehend.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"comprehend.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"comprehend.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"comprehend.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"comprehend.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"fips-us-east-1\":\n regionInfo = {\n hostname: \"comprehend-fips.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"fips-us-east-2\":\n regionInfo = {\n hostname: \"comprehend-fips.us-east-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-2\",\n };\n break;\n case \"fips-us-gov-west-1\":\n regionInfo = {\n hostname: \"comprehend-fips.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"fips-us-west-2\":\n regionInfo = {\n hostname: \"comprehend-fips.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"comprehend.us-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-2\":\n regionInfo = {\n hostname: \"comprehend.us-east-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"comprehend.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n };\n break;\n case \"us-iso-east-1\":\n regionInfo = {\n hostname: \"comprehend.us-iso-east-1.c2s.ic.gov\",\n partition: \"aws-iso\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"comprehend.us-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"comprehend\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/index.js ***! \******************************************************************/ /*! exports provided: ComprehendClient, Comprehend, BatchDetectDominantLanguageCommand, BatchDetectEntitiesCommand, BatchDetectKeyPhrasesCommand, BatchDetectSentimentCommand, BatchDetectSyntaxCommand, ClassifyDocumentCommand, CreateDocumentClassifierCommand, CreateEndpointCommand, CreateEntityRecognizerCommand, DeleteDocumentClassifierCommand, DeleteEndpointCommand, DeleteEntityRecognizerCommand, DescribeDocumentClassificationJobCommand, DescribeDocumentClassifierCommand, DescribeDominantLanguageDetectionJobCommand, DescribeEndpointCommand, DescribeEntitiesDetectionJobCommand, DescribeEntityRecognizerCommand, DescribeEventsDetectionJobCommand, DescribeKeyPhrasesDetectionJobCommand, DescribePiiEntitiesDetectionJobCommand, DescribeSentimentDetectionJobCommand, DescribeTopicsDetectionJobCommand, DetectDominantLanguageCommand, DetectEntitiesCommand, DetectKeyPhrasesCommand, DetectPiiEntitiesCommand, DetectSentimentCommand, DetectSyntaxCommand, ListDocumentClassificationJobsCommand, paginateListDocumentClassificationJobs, ListDocumentClassifiersCommand, paginateListDocumentClassifiers, ListDominantLanguageDetectionJobsCommand, paginateListDominantLanguageDetectionJobs, ListEndpointsCommand, ListEntitiesDetectionJobsCommand, paginateListEntitiesDetectionJobs, ListEntityRecognizersCommand, paginateListEntityRecognizers, ListEventsDetectionJobsCommand, paginateListEventsDetectionJobs, ListKeyPhrasesDetectionJobsCommand, paginateListKeyPhrasesDetectionJobs, ListPiiEntitiesDetectionJobsCommand, ListSentimentDetectionJobsCommand, paginateListSentimentDetectionJobs, ListTagsForResourceCommand, ListTopicsDetectionJobsCommand, paginateListTopicsDetectionJobs, StartDocumentClassificationJobCommand, StartDominantLanguageDetectionJobCommand, StartEntitiesDetectionJobCommand, StartEventsDetectionJobCommand, StartKeyPhrasesDetectionJobCommand, StartPiiEntitiesDetectionJobCommand, StartSentimentDetectionJobCommand, StartTopicsDetectionJobCommand, StopDominantLanguageDetectionJobCommand, StopEntitiesDetectionJobCommand, StopEventsDetectionJobCommand, StopKeyPhrasesDetectionJobCommand, StopPiiEntitiesDetectionJobCommand, StopSentimentDetectionJobCommand, StopTrainingDocumentClassifierCommand, StopTrainingEntityRecognizerCommand, TagResourceCommand, UntagResourceCommand, UpdateEndpointCommand, AugmentedManifestsListItem, BatchDetectDominantLanguageRequest, BatchItemError, DominantLanguage, BatchDetectDominantLanguageItemResult, BatchDetectDominantLanguageResponse, BatchSizeLimitExceededException, InternalServerException, InvalidRequestException, TextSizeLimitExceededException, LanguageCode, BatchDetectEntitiesRequest, EntityType, Entity, BatchDetectEntitiesItemResult, BatchDetectEntitiesResponse, UnsupportedLanguageException, BatchDetectKeyPhrasesRequest, KeyPhrase, BatchDetectKeyPhrasesItemResult, BatchDetectKeyPhrasesResponse, BatchDetectSentimentRequest, SentimentType, SentimentScore, BatchDetectSentimentItemResult, BatchDetectSentimentResponse, SyntaxLanguageCode, BatchDetectSyntaxRequest, PartOfSpeechTagType, PartOfSpeechTag, SyntaxToken, BatchDetectSyntaxItemResult, BatchDetectSyntaxResponse, ClassifierEvaluationMetrics, ClassifierMetadata, ClassifyDocumentRequest, DocumentClass, DocumentLabel, ClassifyDocumentResponse, ResourceUnavailableException, DocumentClassifierDataFormat, DocumentClassifierInputDataConfig, DocumentClassifierMode, DocumentClassifierOutputDataConfig, Tag, VpcConfig, CreateDocumentClassifierRequest, CreateDocumentClassifierResponse, KmsKeyValidationException, ResourceInUseException, ResourceLimitExceededException, TooManyRequestsException, TooManyTagsException, CreateEndpointRequest, CreateEndpointResponse, ResourceNotFoundException, EntityRecognizerAnnotations, EntityRecognizerDataFormat, EntityRecognizerDocuments, EntityRecognizerEntityList, EntityTypesListItem, EntityRecognizerInputDataConfig, CreateEntityRecognizerRequest, CreateEntityRecognizerResponse, DeleteDocumentClassifierRequest, DeleteDocumentClassifierResponse, DeleteEndpointRequest, DeleteEndpointResponse, DeleteEntityRecognizerRequest, DeleteEntityRecognizerResponse, DescribeDocumentClassificationJobRequest, InputFormat, InputDataConfig, JobStatus, OutputDataConfig, DocumentClassificationJobProperties, DescribeDocumentClassificationJobResponse, JobNotFoundException, DescribeDocumentClassifierRequest, ModelStatus, DocumentClassifierProperties, DescribeDocumentClassifierResponse, DescribeDominantLanguageDetectionJobRequest, DominantLanguageDetectionJobProperties, DescribeDominantLanguageDetectionJobResponse, DescribeEndpointRequest, EndpointStatus, EndpointProperties, DescribeEndpointResponse, DescribeEntitiesDetectionJobRequest, EntitiesDetectionJobProperties, DescribeEntitiesDetectionJobResponse, DescribeEntityRecognizerRequest, EntityTypesEvaluationMetrics, EntityRecognizerMetadataEntityTypesListItem, EntityRecognizerEvaluationMetrics, EntityRecognizerMetadata, EntityRecognizerProperties, DescribeEntityRecognizerResponse, DescribeEventsDetectionJobRequest, EventsDetectionJobProperties, DescribeEventsDetectionJobResponse, DescribeKeyPhrasesDetectionJobRequest, KeyPhrasesDetectionJobProperties, DescribeKeyPhrasesDetectionJobResponse, DescribePiiEntitiesDetectionJobRequest, PiiEntitiesDetectionMode, PiiOutputDataConfig, PiiEntitiesDetectionMaskMode, PiiEntityType, RedactionConfig, PiiEntitiesDetectionJobProperties, DescribePiiEntitiesDetectionJobResponse, DescribeSentimentDetectionJobRequest, SentimentDetectionJobProperties, DescribeSentimentDetectionJobResponse, DescribeTopicsDetectionJobRequest, TopicsDetectionJobProperties, DescribeTopicsDetectionJobResponse, DetectDominantLanguageRequest, DetectDominantLanguageResponse, DetectEntitiesRequest, DetectEntitiesResponse, DetectKeyPhrasesRequest, DetectKeyPhrasesResponse, DetectPiiEntitiesRequest, PiiEntity, DetectPiiEntitiesResponse, DetectSentimentRequest, DetectSentimentResponse, DetectSyntaxRequest, DetectSyntaxResponse, InvalidFilterException, DocumentClassificationJobFilter, ListDocumentClassificationJobsRequest, ListDocumentClassificationJobsResponse, DocumentClassifierFilter, ListDocumentClassifiersRequest, ListDocumentClassifiersResponse, DominantLanguageDetectionJobFilter, ListDominantLanguageDetectionJobsRequest, ListDominantLanguageDetectionJobsResponse, EndpointFilter, ListEndpointsRequest, ListEndpointsResponse, EntitiesDetectionJobFilter, ListEntitiesDetectionJobsRequest, ListEntitiesDetectionJobsResponse, EntityRecognizerFilter, ListEntityRecognizersRequest, ListEntityRecognizersResponse, EventsDetectionJobFilter, ListEventsDetectionJobsRequest, ListEventsDetectionJobsResponse, KeyPhrasesDetectionJobFilter, ListKeyPhrasesDetectionJobsRequest, ListKeyPhrasesDetectionJobsResponse, PiiEntitiesDetectionJobFilter, ListPiiEntitiesDetectionJobsRequest, ListPiiEntitiesDetectionJobsResponse, SentimentDetectionJobFilter, ListSentimentDetectionJobsRequest, ListSentimentDetectionJobsResponse, ListTagsForResourceRequest, ListTagsForResourceResponse, TopicsDetectionJobFilter, ListTopicsDetectionJobsRequest, ListTopicsDetectionJobsResponse, StartDocumentClassificationJobRequest, StartDocumentClassificationJobResponse, StartDominantLanguageDetectionJobRequest, StartDominantLanguageDetectionJobResponse, StartEntitiesDetectionJobRequest, StartEntitiesDetectionJobResponse, StartEventsDetectionJobRequest, StartEventsDetectionJobResponse, StartKeyPhrasesDetectionJobRequest, StartKeyPhrasesDetectionJobResponse, StartPiiEntitiesDetectionJobRequest, StartPiiEntitiesDetectionJobResponse, StartSentimentDetectionJobRequest, StartSentimentDetectionJobResponse, StartTopicsDetectionJobRequest, StartTopicsDetectionJobResponse, StopDominantLanguageDetectionJobRequest, StopDominantLanguageDetectionJobResponse, StopEntitiesDetectionJobRequest, StopEntitiesDetectionJobResponse, StopEventsDetectionJobRequest, StopEventsDetectionJobResponse, StopKeyPhrasesDetectionJobRequest, StopKeyPhrasesDetectionJobResponse, StopPiiEntitiesDetectionJobRequest, StopPiiEntitiesDetectionJobResponse, StopSentimentDetectionJobRequest, StopSentimentDetectionJobResponse, StopTrainingDocumentClassifierRequest, StopTrainingDocumentClassifierResponse, StopTrainingEntityRecognizerRequest, StopTrainingEntityRecognizerResponse, ConcurrentModificationException, TagResourceRequest, TagResourceResponse, TooManyTagKeysException, UntagResourceRequest, UntagResourceResponse, UpdateEndpointRequest, UpdateEndpointResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ComprehendClient\", function() { return _ComprehendClient__WEBPACK_IMPORTED_MODULE_0__[\"ComprehendClient\"]; });\n\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Comprehend\", function() { return _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"]; });\n\n/* harmony import */ var _commands_BatchDetectDominantLanguageCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/BatchDetectDominantLanguageCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectDominantLanguageCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageCommand\", function() { return _commands_BatchDetectDominantLanguageCommand__WEBPACK_IMPORTED_MODULE_2__[\"BatchDetectDominantLanguageCommand\"]; });\n\n/* harmony import */ var _commands_BatchDetectEntitiesCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/BatchDetectEntitiesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectEntitiesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesCommand\", function() { return _commands_BatchDetectEntitiesCommand__WEBPACK_IMPORTED_MODULE_3__[\"BatchDetectEntitiesCommand\"]; });\n\n/* harmony import */ var _commands_BatchDetectKeyPhrasesCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/BatchDetectKeyPhrasesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectKeyPhrasesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesCommand\", function() { return _commands_BatchDetectKeyPhrasesCommand__WEBPACK_IMPORTED_MODULE_4__[\"BatchDetectKeyPhrasesCommand\"]; });\n\n/* harmony import */ var _commands_BatchDetectSentimentCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/BatchDetectSentimentCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSentimentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentCommand\", function() { return _commands_BatchDetectSentimentCommand__WEBPACK_IMPORTED_MODULE_5__[\"BatchDetectSentimentCommand\"]; });\n\n/* harmony import */ var _commands_BatchDetectSyntaxCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/BatchDetectSyntaxCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/BatchDetectSyntaxCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxCommand\", function() { return _commands_BatchDetectSyntaxCommand__WEBPACK_IMPORTED_MODULE_6__[\"BatchDetectSyntaxCommand\"]; });\n\n/* harmony import */ var _commands_ClassifyDocumentCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/ClassifyDocumentCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ClassifyDocumentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClassifyDocumentCommand\", function() { return _commands_ClassifyDocumentCommand__WEBPACK_IMPORTED_MODULE_7__[\"ClassifyDocumentCommand\"]; });\n\n/* harmony import */ var _commands_CreateDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/CreateDocumentClassifierCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateDocumentClassifierCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDocumentClassifierCommand\", function() { return _commands_CreateDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_8__[\"CreateDocumentClassifierCommand\"]; });\n\n/* harmony import */ var _commands_CreateEndpointCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/CreateEndpointCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEndpointCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEndpointCommand\", function() { return _commands_CreateEndpointCommand__WEBPACK_IMPORTED_MODULE_9__[\"CreateEndpointCommand\"]; });\n\n/* harmony import */ var _commands_CreateEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/CreateEntityRecognizerCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/CreateEntityRecognizerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEntityRecognizerCommand\", function() { return _commands_CreateEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_10__[\"CreateEntityRecognizerCommand\"]; });\n\n/* harmony import */ var _commands_DeleteDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DeleteDocumentClassifierCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteDocumentClassifierCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDocumentClassifierCommand\", function() { return _commands_DeleteDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_11__[\"DeleteDocumentClassifierCommand\"]; });\n\n/* harmony import */ var _commands_DeleteEndpointCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/DeleteEndpointCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEndpointCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointCommand\", function() { return _commands_DeleteEndpointCommand__WEBPACK_IMPORTED_MODULE_12__[\"DeleteEndpointCommand\"]; });\n\n/* harmony import */ var _commands_DeleteEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DeleteEntityRecognizerCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DeleteEntityRecognizerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEntityRecognizerCommand\", function() { return _commands_DeleteEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_13__[\"DeleteEntityRecognizerCommand\"]; });\n\n/* harmony import */ var _commands_DescribeDocumentClassificationJobCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/DescribeDocumentClassificationJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassificationJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassificationJobCommand\", function() { return _commands_DescribeDocumentClassificationJobCommand__WEBPACK_IMPORTED_MODULE_14__[\"DescribeDocumentClassificationJobCommand\"]; });\n\n/* harmony import */ var _commands_DescribeDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DescribeDocumentClassifierCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDocumentClassifierCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassifierCommand\", function() { return _commands_DescribeDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_15__[\"DescribeDocumentClassifierCommand\"]; });\n\n/* harmony import */ var _commands_DescribeDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/DescribeDominantLanguageDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeDominantLanguageDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDominantLanguageDetectionJobCommand\", function() { return _commands_DescribeDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_16__[\"DescribeDominantLanguageDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_DescribeEndpointCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DescribeEndpointCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEndpointCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEndpointCommand\", function() { return _commands_DescribeEndpointCommand__WEBPACK_IMPORTED_MODULE_17__[\"DescribeEndpointCommand\"]; });\n\n/* harmony import */ var _commands_DescribeEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DescribeEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntitiesDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntitiesDetectionJobCommand\", function() { return _commands_DescribeEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_18__[\"DescribeEntitiesDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_DescribeEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DescribeEntityRecognizerCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEntityRecognizerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntityRecognizerCommand\", function() { return _commands_DescribeEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_19__[\"DescribeEntityRecognizerCommand\"]; });\n\n/* harmony import */ var _commands_DescribeEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DescribeEventsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeEventsDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEventsDetectionJobCommand\", function() { return _commands_DescribeEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_20__[\"DescribeEventsDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_DescribeKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DescribeKeyPhrasesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeKeyPhrasesDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeKeyPhrasesDetectionJobCommand\", function() { return _commands_DescribeKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_21__[\"DescribeKeyPhrasesDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_DescribePiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DescribePiiEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribePiiEntitiesDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePiiEntitiesDetectionJobCommand\", function() { return _commands_DescribePiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_22__[\"DescribePiiEntitiesDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_DescribeSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/DescribeSentimentDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeSentimentDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSentimentDetectionJobCommand\", function() { return _commands_DescribeSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_23__[\"DescribeSentimentDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_DescribeTopicsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/DescribeTopicsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DescribeTopicsDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTopicsDetectionJobCommand\", function() { return _commands_DescribeTopicsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_24__[\"DescribeTopicsDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_DetectDominantLanguageCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/DetectDominantLanguageCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectDominantLanguageCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDominantLanguageCommand\", function() { return _commands_DetectDominantLanguageCommand__WEBPACK_IMPORTED_MODULE_25__[\"DetectDominantLanguageCommand\"]; });\n\n/* harmony import */ var _commands_DetectEntitiesCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/DetectEntitiesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectEntitiesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectEntitiesCommand\", function() { return _commands_DetectEntitiesCommand__WEBPACK_IMPORTED_MODULE_26__[\"DetectEntitiesCommand\"]; });\n\n/* harmony import */ var _commands_DetectKeyPhrasesCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/DetectKeyPhrasesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectKeyPhrasesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectKeyPhrasesCommand\", function() { return _commands_DetectKeyPhrasesCommand__WEBPACK_IMPORTED_MODULE_27__[\"DetectKeyPhrasesCommand\"]; });\n\n/* harmony import */ var _commands_DetectPiiEntitiesCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/DetectPiiEntitiesCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectPiiEntitiesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectPiiEntitiesCommand\", function() { return _commands_DetectPiiEntitiesCommand__WEBPACK_IMPORTED_MODULE_28__[\"DetectPiiEntitiesCommand\"]; });\n\n/* harmony import */ var _commands_DetectSentimentCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/DetectSentimentCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSentimentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSentimentCommand\", function() { return _commands_DetectSentimentCommand__WEBPACK_IMPORTED_MODULE_29__[\"DetectSentimentCommand\"]; });\n\n/* harmony import */ var _commands_DetectSyntaxCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/DetectSyntaxCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/DetectSyntaxCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSyntaxCommand\", function() { return _commands_DetectSyntaxCommand__WEBPACK_IMPORTED_MODULE_30__[\"DetectSyntaxCommand\"]; });\n\n/* harmony import */ var _commands_ListDocumentClassificationJobsCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/ListDocumentClassificationJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassificationJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassificationJobsCommand\", function() { return _commands_ListDocumentClassificationJobsCommand__WEBPACK_IMPORTED_MODULE_31__[\"ListDocumentClassificationJobsCommand\"]; });\n\n/* harmony import */ var _pagination_ListDocumentClassificationJobsPaginator__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./pagination/ListDocumentClassificationJobsPaginator */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDocumentClassificationJobsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListDocumentClassificationJobs\", function() { return _pagination_ListDocumentClassificationJobsPaginator__WEBPACK_IMPORTED_MODULE_32__[\"paginateListDocumentClassificationJobs\"]; });\n\n/* harmony import */ var _commands_ListDocumentClassifiersCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/ListDocumentClassifiersCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassifiersCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassifiersCommand\", function() { return _commands_ListDocumentClassifiersCommand__WEBPACK_IMPORTED_MODULE_33__[\"ListDocumentClassifiersCommand\"]; });\n\n/* harmony import */ var _pagination_ListDocumentClassifiersPaginator__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./pagination/ListDocumentClassifiersPaginator */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDocumentClassifiersPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListDocumentClassifiers\", function() { return _pagination_ListDocumentClassifiersPaginator__WEBPACK_IMPORTED_MODULE_34__[\"paginateListDocumentClassifiers\"]; });\n\n/* harmony import */ var _commands_ListDominantLanguageDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/ListDominantLanguageDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDominantLanguageDetectionJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDominantLanguageDetectionJobsCommand\", function() { return _commands_ListDominantLanguageDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_35__[\"ListDominantLanguageDetectionJobsCommand\"]; });\n\n/* harmony import */ var _pagination_ListDominantLanguageDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./pagination/ListDominantLanguageDetectionJobsPaginator */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDominantLanguageDetectionJobsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListDominantLanguageDetectionJobs\", function() { return _pagination_ListDominantLanguageDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_36__[\"paginateListDominantLanguageDetectionJobs\"]; });\n\n/* harmony import */ var _commands_ListEndpointsCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/ListEndpointsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEndpointsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEndpointsCommand\", function() { return _commands_ListEndpointsCommand__WEBPACK_IMPORTED_MODULE_37__[\"ListEndpointsCommand\"]; });\n\n/* harmony import */ var _commands_ListEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/ListEntitiesDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntitiesDetectionJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntitiesDetectionJobsCommand\", function() { return _commands_ListEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_38__[\"ListEntitiesDetectionJobsCommand\"]; });\n\n/* harmony import */ var _pagination_ListEntitiesDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./pagination/ListEntitiesDetectionJobsPaginator */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEntitiesDetectionJobsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListEntitiesDetectionJobs\", function() { return _pagination_ListEntitiesDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_39__[\"paginateListEntitiesDetectionJobs\"]; });\n\n/* harmony import */ var _commands_ListEntityRecognizersCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/ListEntityRecognizersCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntityRecognizersCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntityRecognizersCommand\", function() { return _commands_ListEntityRecognizersCommand__WEBPACK_IMPORTED_MODULE_40__[\"ListEntityRecognizersCommand\"]; });\n\n/* harmony import */ var _pagination_ListEntityRecognizersPaginator__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./pagination/ListEntityRecognizersPaginator */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEntityRecognizersPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListEntityRecognizers\", function() { return _pagination_ListEntityRecognizersPaginator__WEBPACK_IMPORTED_MODULE_41__[\"paginateListEntityRecognizers\"]; });\n\n/* harmony import */ var _commands_ListEventsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/ListEventsDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEventsDetectionJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEventsDetectionJobsCommand\", function() { return _commands_ListEventsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_42__[\"ListEventsDetectionJobsCommand\"]; });\n\n/* harmony import */ var _pagination_ListEventsDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./pagination/ListEventsDetectionJobsPaginator */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEventsDetectionJobsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListEventsDetectionJobs\", function() { return _pagination_ListEventsDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_43__[\"paginateListEventsDetectionJobs\"]; });\n\n/* harmony import */ var _commands_ListKeyPhrasesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/ListKeyPhrasesDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListKeyPhrasesDetectionJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListKeyPhrasesDetectionJobsCommand\", function() { return _commands_ListKeyPhrasesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_44__[\"ListKeyPhrasesDetectionJobsCommand\"]; });\n\n/* harmony import */ var _pagination_ListKeyPhrasesDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./pagination/ListKeyPhrasesDetectionJobsPaginator */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListKeyPhrasesDetectionJobsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListKeyPhrasesDetectionJobs\", function() { return _pagination_ListKeyPhrasesDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_45__[\"paginateListKeyPhrasesDetectionJobs\"]; });\n\n/* harmony import */ var _commands_ListPiiEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/ListPiiEntitiesDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListPiiEntitiesDetectionJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPiiEntitiesDetectionJobsCommand\", function() { return _commands_ListPiiEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_46__[\"ListPiiEntitiesDetectionJobsCommand\"]; });\n\n/* harmony import */ var _commands_ListSentimentDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./commands/ListSentimentDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListSentimentDetectionJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSentimentDetectionJobsCommand\", function() { return _commands_ListSentimentDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_47__[\"ListSentimentDetectionJobsCommand\"]; });\n\n/* harmony import */ var _pagination_ListSentimentDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./pagination/ListSentimentDetectionJobsPaginator */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListSentimentDetectionJobsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListSentimentDetectionJobs\", function() { return _pagination_ListSentimentDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_48__[\"paginateListSentimentDetectionJobs\"]; });\n\n/* harmony import */ var _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./commands/ListTagsForResourceCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTagsForResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceCommand\", function() { return _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_49__[\"ListTagsForResourceCommand\"]; });\n\n/* harmony import */ var _commands_ListTopicsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./commands/ListTopicsDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTopicsDetectionJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTopicsDetectionJobsCommand\", function() { return _commands_ListTopicsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_50__[\"ListTopicsDetectionJobsCommand\"]; });\n\n/* harmony import */ var _pagination_ListTopicsDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./pagination/ListTopicsDetectionJobsPaginator */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListTopicsDetectionJobsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListTopicsDetectionJobs\", function() { return _pagination_ListTopicsDetectionJobsPaginator__WEBPACK_IMPORTED_MODULE_51__[\"paginateListTopicsDetectionJobs\"]; });\n\n/* harmony import */ var _commands_StartDocumentClassificationJobCommand__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./commands/StartDocumentClassificationJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDocumentClassificationJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentClassificationJobCommand\", function() { return _commands_StartDocumentClassificationJobCommand__WEBPACK_IMPORTED_MODULE_52__[\"StartDocumentClassificationJobCommand\"]; });\n\n/* harmony import */ var _commands_StartDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./commands/StartDominantLanguageDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartDominantLanguageDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDominantLanguageDetectionJobCommand\", function() { return _commands_StartDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_53__[\"StartDominantLanguageDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StartEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./commands/StartEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEntitiesDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEntitiesDetectionJobCommand\", function() { return _commands_StartEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_54__[\"StartEntitiesDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StartEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./commands/StartEventsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartEventsDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEventsDetectionJobCommand\", function() { return _commands_StartEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_55__[\"StartEventsDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StartKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./commands/StartKeyPhrasesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartKeyPhrasesDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartKeyPhrasesDetectionJobCommand\", function() { return _commands_StartKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_56__[\"StartKeyPhrasesDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StartPiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./commands/StartPiiEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartPiiEntitiesDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPiiEntitiesDetectionJobCommand\", function() { return _commands_StartPiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_57__[\"StartPiiEntitiesDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StartSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./commands/StartSentimentDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartSentimentDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSentimentDetectionJobCommand\", function() { return _commands_StartSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_58__[\"StartSentimentDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StartTopicsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./commands/StartTopicsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StartTopicsDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTopicsDetectionJobCommand\", function() { return _commands_StartTopicsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_59__[\"StartTopicsDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StopDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./commands/StopDominantLanguageDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopDominantLanguageDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDominantLanguageDetectionJobCommand\", function() { return _commands_StopDominantLanguageDetectionJobCommand__WEBPACK_IMPORTED_MODULE_60__[\"StopDominantLanguageDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StopEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./commands/StopEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEntitiesDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEntitiesDetectionJobCommand\", function() { return _commands_StopEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_61__[\"StopEntitiesDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StopEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./commands/StopEventsDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopEventsDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEventsDetectionJobCommand\", function() { return _commands_StopEventsDetectionJobCommand__WEBPACK_IMPORTED_MODULE_62__[\"StopEventsDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StopKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./commands/StopKeyPhrasesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopKeyPhrasesDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopKeyPhrasesDetectionJobCommand\", function() { return _commands_StopKeyPhrasesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_63__[\"StopKeyPhrasesDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StopPiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./commands/StopPiiEntitiesDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopPiiEntitiesDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopPiiEntitiesDetectionJobCommand\", function() { return _commands_StopPiiEntitiesDetectionJobCommand__WEBPACK_IMPORTED_MODULE_64__[\"StopPiiEntitiesDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StopSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./commands/StopSentimentDetectionJobCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopSentimentDetectionJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopSentimentDetectionJobCommand\", function() { return _commands_StopSentimentDetectionJobCommand__WEBPACK_IMPORTED_MODULE_65__[\"StopSentimentDetectionJobCommand\"]; });\n\n/* harmony import */ var _commands_StopTrainingDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./commands/StopTrainingDocumentClassifierCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingDocumentClassifierCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingDocumentClassifierCommand\", function() { return _commands_StopTrainingDocumentClassifierCommand__WEBPACK_IMPORTED_MODULE_66__[\"StopTrainingDocumentClassifierCommand\"]; });\n\n/* harmony import */ var _commands_StopTrainingEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./commands/StopTrainingEntityRecognizerCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/StopTrainingEntityRecognizerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingEntityRecognizerCommand\", function() { return _commands_StopTrainingEntityRecognizerCommand__WEBPACK_IMPORTED_MODULE_67__[\"StopTrainingEntityRecognizerCommand\"]; });\n\n/* harmony import */ var _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./commands/TagResourceCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/TagResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceCommand\", function() { return _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_68__[\"TagResourceCommand\"]; });\n\n/* harmony import */ var _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./commands/UntagResourceCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UntagResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceCommand\", function() { return _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_69__[\"UntagResourceCommand\"]; });\n\n/* harmony import */ var _commands_UpdateEndpointCommand__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./commands/UpdateEndpointCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/UpdateEndpointCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointCommand\", function() { return _commands_UpdateEndpointCommand__WEBPACK_IMPORTED_MODULE_70__[\"UpdateEndpointCommand\"]; });\n\n/* harmony import */ var _pagination_Interfaces__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./pagination/Interfaces */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/Interfaces.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AugmentedManifestsListItem\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"AugmentedManifestsListItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectDominantLanguageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchItemError\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchItemError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DominantLanguage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DominantLanguage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageItemResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectDominantLanguageItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectDominantLanguageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchSizeLimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchSizeLimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"InternalServerException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidRequestException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"InvalidRequestException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextSizeLimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"TextSizeLimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LanguageCode\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"LanguageCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectEntitiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Entity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"Entity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesItemResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectEntitiesItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectEntitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedLanguageException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"UnsupportedLanguageException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectKeyPhrasesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyPhrase\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"KeyPhrase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesItemResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectKeyPhrasesItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectKeyPhrasesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectSentimentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"SentimentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentScore\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"SentimentScore\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentItemResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectSentimentItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectSentimentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SyntaxLanguageCode\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"SyntaxLanguageCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectSyntaxRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PartOfSpeechTagType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"PartOfSpeechTagType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PartOfSpeechTag\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"PartOfSpeechTag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SyntaxToken\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"SyntaxToken\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxItemResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectSyntaxItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"BatchDetectSyntaxResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClassifierEvaluationMetrics\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ClassifierEvaluationMetrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClassifierMetadata\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ClassifierMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClassifyDocumentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ClassifyDocumentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClass\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentClass\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentLabel\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentLabel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClassifyDocumentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ClassifyDocumentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceUnavailableException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ResourceUnavailableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierDataFormat\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentClassifierDataFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierInputDataConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentClassifierInputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierMode\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentClassifierMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierOutputDataConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentClassifierOutputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"Tag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VpcConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"VpcConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDocumentClassifierRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"CreateDocumentClassifierRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDocumentClassifierResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"CreateDocumentClassifierResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KmsKeyValidationException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"KmsKeyValidationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ResourceInUseException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceLimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ResourceLimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"TooManyRequestsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyTagsException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"TooManyTagsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEndpointRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"CreateEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEndpointResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"CreateEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerAnnotations\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerAnnotations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerDataFormat\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerDataFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerDocuments\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerDocuments\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerEntityList\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerEntityList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityTypesListItem\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityTypesListItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerInputDataConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerInputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEntityRecognizerRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"CreateEntityRecognizerRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEntityRecognizerResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"CreateEntityRecognizerResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDocumentClassifierRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DeleteDocumentClassifierRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDocumentClassifierResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DeleteDocumentClassifierResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DeleteEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DeleteEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEntityRecognizerRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DeleteEntityRecognizerRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEntityRecognizerResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DeleteEntityRecognizerResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassificationJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeDocumentClassificationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputFormat\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"InputFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputDataConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"InputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"JobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputDataConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"OutputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassificationJobProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentClassificationJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassificationJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeDocumentClassificationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"JobNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassifierRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeDocumentClassifierRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModelStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ModelStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentClassifierProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassifierResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeDocumentClassifierResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDominantLanguageDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeDominantLanguageDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DominantLanguageDetectionJobProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DominantLanguageDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDominantLanguageDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeDominantLanguageDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEndpointRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EndpointStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EndpointProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEndpointResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntitiesDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntitiesDetectionJobProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntitiesDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntitiesDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntityRecognizerRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeEntityRecognizerRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityTypesEvaluationMetrics\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityTypesEvaluationMetrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerMetadataEntityTypesListItem\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerMetadataEntityTypesListItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerEvaluationMetrics\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerEvaluationMetrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerMetadata\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntityRecognizerResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeEntityRecognizerResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEventsDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeEventsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsDetectionJobProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EventsDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEventsDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeEventsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeKeyPhrasesDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeKeyPhrasesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyPhrasesDetectionJobProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"KeyPhrasesDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeKeyPhrasesDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeKeyPhrasesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePiiEntitiesDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribePiiEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionMode\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"PiiEntitiesDetectionMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiOutputDataConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"PiiOutputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionMaskMode\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"PiiEntitiesDetectionMaskMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntityType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"PiiEntityType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedactionConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"RedactionConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionJobProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"PiiEntitiesDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePiiEntitiesDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribePiiEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSentimentDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeSentimentDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentDetectionJobProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"SentimentDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSentimentDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeSentimentDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTopicsDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeTopicsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TopicsDetectionJobProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"TopicsDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTopicsDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DescribeTopicsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDominantLanguageRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectDominantLanguageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDominantLanguageResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectDominantLanguageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectEntitiesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectEntitiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectEntitiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectEntitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectKeyPhrasesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectKeyPhrasesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectKeyPhrasesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectKeyPhrasesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectPiiEntitiesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectPiiEntitiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"PiiEntity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectPiiEntitiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectPiiEntitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSentimentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectSentimentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSentimentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectSentimentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSyntaxRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectSyntaxRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSyntaxResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DetectSyntaxResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidFilterException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"InvalidFilterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassificationJobFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentClassificationJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassificationJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListDocumentClassificationJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassificationJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListDocumentClassificationJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DocumentClassifierFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassifiersRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListDocumentClassifiersRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassifiersResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListDocumentClassifiersResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DominantLanguageDetectionJobFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"DominantLanguageDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDominantLanguageDetectionJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListDominantLanguageDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDominantLanguageDetectionJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListDominantLanguageDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EndpointFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEndpointsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListEndpointsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEndpointsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListEndpointsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntitiesDetectionJobFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntitiesDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntitiesDetectionJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListEntitiesDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntitiesDetectionJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListEntitiesDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EntityRecognizerFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntityRecognizersRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListEntityRecognizersRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntityRecognizersResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListEntityRecognizersResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsDetectionJobFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"EventsDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEventsDetectionJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListEventsDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEventsDetectionJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListEventsDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyPhrasesDetectionJobFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"KeyPhrasesDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListKeyPhrasesDetectionJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListKeyPhrasesDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListKeyPhrasesDetectionJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListKeyPhrasesDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionJobFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"PiiEntitiesDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPiiEntitiesDetectionJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListPiiEntitiesDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPiiEntitiesDetectionJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListPiiEntitiesDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentDetectionJobFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"SentimentDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSentimentDetectionJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListSentimentDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSentimentDetectionJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListSentimentDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListTagsForResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListTagsForResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TopicsDetectionJobFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"TopicsDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTopicsDetectionJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListTopicsDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTopicsDetectionJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ListTopicsDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentClassificationJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartDocumentClassificationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentClassificationJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartDocumentClassificationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDominantLanguageDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartDominantLanguageDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDominantLanguageDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartDominantLanguageDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEntitiesDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEntitiesDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEventsDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartEventsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEventsDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartEventsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartKeyPhrasesDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartKeyPhrasesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartKeyPhrasesDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartKeyPhrasesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPiiEntitiesDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartPiiEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPiiEntitiesDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartPiiEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSentimentDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartSentimentDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSentimentDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartSentimentDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTopicsDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartTopicsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTopicsDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StartTopicsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDominantLanguageDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopDominantLanguageDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDominantLanguageDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopDominantLanguageDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEntitiesDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEntitiesDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEventsDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopEventsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEventsDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopEventsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopKeyPhrasesDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopKeyPhrasesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopKeyPhrasesDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopKeyPhrasesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopPiiEntitiesDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopPiiEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopPiiEntitiesDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopPiiEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopSentimentDetectionJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopSentimentDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopSentimentDetectionJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopSentimentDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingDocumentClassifierRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopTrainingDocumentClassifierRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingDocumentClassifierResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopTrainingDocumentClassifierResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingEntityRecognizerRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopTrainingEntityRecognizerRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingEntityRecognizerResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"StopTrainingEntityRecognizerResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"ConcurrentModificationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"TagResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"TagResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyTagKeysException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"TooManyTagKeysException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"UntagResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"UntagResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"UpdateEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_72__[\"UpdateEndpointResponse\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/models/index.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/models/index.js ***! \*************************************************************************/ /*! exports provided: AugmentedManifestsListItem, BatchDetectDominantLanguageRequest, BatchItemError, DominantLanguage, BatchDetectDominantLanguageItemResult, BatchDetectDominantLanguageResponse, BatchSizeLimitExceededException, InternalServerException, InvalidRequestException, TextSizeLimitExceededException, LanguageCode, BatchDetectEntitiesRequest, EntityType, Entity, BatchDetectEntitiesItemResult, BatchDetectEntitiesResponse, UnsupportedLanguageException, BatchDetectKeyPhrasesRequest, KeyPhrase, BatchDetectKeyPhrasesItemResult, BatchDetectKeyPhrasesResponse, BatchDetectSentimentRequest, SentimentType, SentimentScore, BatchDetectSentimentItemResult, BatchDetectSentimentResponse, SyntaxLanguageCode, BatchDetectSyntaxRequest, PartOfSpeechTagType, PartOfSpeechTag, SyntaxToken, BatchDetectSyntaxItemResult, BatchDetectSyntaxResponse, ClassifierEvaluationMetrics, ClassifierMetadata, ClassifyDocumentRequest, DocumentClass, DocumentLabel, ClassifyDocumentResponse, ResourceUnavailableException, DocumentClassifierDataFormat, DocumentClassifierInputDataConfig, DocumentClassifierMode, DocumentClassifierOutputDataConfig, Tag, VpcConfig, CreateDocumentClassifierRequest, CreateDocumentClassifierResponse, KmsKeyValidationException, ResourceInUseException, ResourceLimitExceededException, TooManyRequestsException, TooManyTagsException, CreateEndpointRequest, CreateEndpointResponse, ResourceNotFoundException, EntityRecognizerAnnotations, EntityRecognizerDataFormat, EntityRecognizerDocuments, EntityRecognizerEntityList, EntityTypesListItem, EntityRecognizerInputDataConfig, CreateEntityRecognizerRequest, CreateEntityRecognizerResponse, DeleteDocumentClassifierRequest, DeleteDocumentClassifierResponse, DeleteEndpointRequest, DeleteEndpointResponse, DeleteEntityRecognizerRequest, DeleteEntityRecognizerResponse, DescribeDocumentClassificationJobRequest, InputFormat, InputDataConfig, JobStatus, OutputDataConfig, DocumentClassificationJobProperties, DescribeDocumentClassificationJobResponse, JobNotFoundException, DescribeDocumentClassifierRequest, ModelStatus, DocumentClassifierProperties, DescribeDocumentClassifierResponse, DescribeDominantLanguageDetectionJobRequest, DominantLanguageDetectionJobProperties, DescribeDominantLanguageDetectionJobResponse, DescribeEndpointRequest, EndpointStatus, EndpointProperties, DescribeEndpointResponse, DescribeEntitiesDetectionJobRequest, EntitiesDetectionJobProperties, DescribeEntitiesDetectionJobResponse, DescribeEntityRecognizerRequest, EntityTypesEvaluationMetrics, EntityRecognizerMetadataEntityTypesListItem, EntityRecognizerEvaluationMetrics, EntityRecognizerMetadata, EntityRecognizerProperties, DescribeEntityRecognizerResponse, DescribeEventsDetectionJobRequest, EventsDetectionJobProperties, DescribeEventsDetectionJobResponse, DescribeKeyPhrasesDetectionJobRequest, KeyPhrasesDetectionJobProperties, DescribeKeyPhrasesDetectionJobResponse, DescribePiiEntitiesDetectionJobRequest, PiiEntitiesDetectionMode, PiiOutputDataConfig, PiiEntitiesDetectionMaskMode, PiiEntityType, RedactionConfig, PiiEntitiesDetectionJobProperties, DescribePiiEntitiesDetectionJobResponse, DescribeSentimentDetectionJobRequest, SentimentDetectionJobProperties, DescribeSentimentDetectionJobResponse, DescribeTopicsDetectionJobRequest, TopicsDetectionJobProperties, DescribeTopicsDetectionJobResponse, DetectDominantLanguageRequest, DetectDominantLanguageResponse, DetectEntitiesRequest, DetectEntitiesResponse, DetectKeyPhrasesRequest, DetectKeyPhrasesResponse, DetectPiiEntitiesRequest, PiiEntity, DetectPiiEntitiesResponse, DetectSentimentRequest, DetectSentimentResponse, DetectSyntaxRequest, DetectSyntaxResponse, InvalidFilterException, DocumentClassificationJobFilter, ListDocumentClassificationJobsRequest, ListDocumentClassificationJobsResponse, DocumentClassifierFilter, ListDocumentClassifiersRequest, ListDocumentClassifiersResponse, DominantLanguageDetectionJobFilter, ListDominantLanguageDetectionJobsRequest, ListDominantLanguageDetectionJobsResponse, EndpointFilter, ListEndpointsRequest, ListEndpointsResponse, EntitiesDetectionJobFilter, ListEntitiesDetectionJobsRequest, ListEntitiesDetectionJobsResponse, EntityRecognizerFilter, ListEntityRecognizersRequest, ListEntityRecognizersResponse, EventsDetectionJobFilter, ListEventsDetectionJobsRequest, ListEventsDetectionJobsResponse, KeyPhrasesDetectionJobFilter, ListKeyPhrasesDetectionJobsRequest, ListKeyPhrasesDetectionJobsResponse, PiiEntitiesDetectionJobFilter, ListPiiEntitiesDetectionJobsRequest, ListPiiEntitiesDetectionJobsResponse, SentimentDetectionJobFilter, ListSentimentDetectionJobsRequest, ListSentimentDetectionJobsResponse, ListTagsForResourceRequest, ListTagsForResourceResponse, TopicsDetectionJobFilter, ListTopicsDetectionJobsRequest, ListTopicsDetectionJobsResponse, StartDocumentClassificationJobRequest, StartDocumentClassificationJobResponse, StartDominantLanguageDetectionJobRequest, StartDominantLanguageDetectionJobResponse, StartEntitiesDetectionJobRequest, StartEntitiesDetectionJobResponse, StartEventsDetectionJobRequest, StartEventsDetectionJobResponse, StartKeyPhrasesDetectionJobRequest, StartKeyPhrasesDetectionJobResponse, StartPiiEntitiesDetectionJobRequest, StartPiiEntitiesDetectionJobResponse, StartSentimentDetectionJobRequest, StartSentimentDetectionJobResponse, StartTopicsDetectionJobRequest, StartTopicsDetectionJobResponse, StopDominantLanguageDetectionJobRequest, StopDominantLanguageDetectionJobResponse, StopEntitiesDetectionJobRequest, StopEntitiesDetectionJobResponse, StopEventsDetectionJobRequest, StopEventsDetectionJobResponse, StopKeyPhrasesDetectionJobRequest, StopKeyPhrasesDetectionJobResponse, StopPiiEntitiesDetectionJobRequest, StopPiiEntitiesDetectionJobResponse, StopSentimentDetectionJobRequest, StopSentimentDetectionJobResponse, StopTrainingDocumentClassifierRequest, StopTrainingDocumentClassifierResponse, StopTrainingEntityRecognizerRequest, StopTrainingEntityRecognizerResponse, ConcurrentModificationException, TagResourceRequest, TagResourceResponse, TooManyTagKeysException, UntagResourceRequest, UntagResourceResponse, UpdateEndpointRequest, UpdateEndpointResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AugmentedManifestsListItem\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AugmentedManifestsListItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectDominantLanguageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchItemError\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchItemError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DominantLanguage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DominantLanguage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageItemResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectDominantLanguageItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectDominantLanguageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchSizeLimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchSizeLimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalServerException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidRequestException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidRequestException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextSizeLimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextSizeLimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LanguageCode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LanguageCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectEntitiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Entity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Entity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesItemResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectEntitiesItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectEntitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedLanguageException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnsupportedLanguageException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectKeyPhrasesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyPhrase\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KeyPhrase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesItemResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectKeyPhrasesItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectKeyPhrasesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectSentimentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SentimentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentScore\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SentimentScore\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentItemResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectSentimentItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectSentimentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SyntaxLanguageCode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SyntaxLanguageCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectSyntaxRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PartOfSpeechTagType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PartOfSpeechTagType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PartOfSpeechTag\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PartOfSpeechTag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SyntaxToken\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SyntaxToken\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxItemResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectSyntaxItemResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDetectSyntaxResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClassifierEvaluationMetrics\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ClassifierEvaluationMetrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClassifierMetadata\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ClassifierMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClassifyDocumentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ClassifyDocumentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClass\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentClass\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentLabel\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentLabel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClassifyDocumentResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ClassifyDocumentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceUnavailableException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceUnavailableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierDataFormat\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentClassifierDataFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierInputDataConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentClassifierInputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierMode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentClassifierMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierOutputDataConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentClassifierOutputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Tag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VpcConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VpcConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDocumentClassifierRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateDocumentClassifierRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDocumentClassifierResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateDocumentClassifierResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KmsKeyValidationException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KmsKeyValidationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceInUseException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceLimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceLimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TooManyRequestsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyTagsException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TooManyTagsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEndpointRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEndpointResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerAnnotations\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerAnnotations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerDataFormat\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerDataFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerDocuments\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerDocuments\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerEntityList\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerEntityList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityTypesListItem\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityTypesListItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerInputDataConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerInputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEntityRecognizerRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateEntityRecognizerRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEntityRecognizerResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateEntityRecognizerResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDocumentClassifierRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteDocumentClassifierRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDocumentClassifierResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteDocumentClassifierResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEntityRecognizerRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEntityRecognizerRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEntityRecognizerResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEntityRecognizerResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassificationJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDocumentClassificationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputFormat\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InputFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputDataConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputDataConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OutputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassificationJobProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentClassificationJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassificationJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDocumentClassificationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JobNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassifierRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDocumentClassifierRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModelStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ModelStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentClassifierProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassifierResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDocumentClassifierResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDominantLanguageDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDominantLanguageDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DominantLanguageDetectionJobProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DominantLanguageDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDominantLanguageDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDominantLanguageDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEndpointRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEndpointResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntitiesDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntitiesDetectionJobProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntitiesDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntitiesDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntityRecognizerRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeEntityRecognizerRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityTypesEvaluationMetrics\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityTypesEvaluationMetrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerMetadataEntityTypesListItem\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerMetadataEntityTypesListItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerEvaluationMetrics\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerEvaluationMetrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerMetadata\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntityRecognizerResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeEntityRecognizerResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEventsDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeEventsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsDetectionJobProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventsDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeEventsDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeEventsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeKeyPhrasesDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeKeyPhrasesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyPhrasesDetectionJobProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KeyPhrasesDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeKeyPhrasesDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeKeyPhrasesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePiiEntitiesDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribePiiEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionMode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PiiEntitiesDetectionMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiOutputDataConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PiiOutputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionMaskMode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PiiEntitiesDetectionMaskMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntityType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PiiEntityType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedactionConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RedactionConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionJobProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PiiEntitiesDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePiiEntitiesDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribePiiEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSentimentDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeSentimentDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentDetectionJobProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SentimentDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeSentimentDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeSentimentDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTopicsDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeTopicsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TopicsDetectionJobProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TopicsDetectionJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTopicsDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeTopicsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDominantLanguageRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectDominantLanguageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDominantLanguageResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectDominantLanguageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectEntitiesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectEntitiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectEntitiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectEntitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectKeyPhrasesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectKeyPhrasesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectKeyPhrasesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectKeyPhrasesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectPiiEntitiesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectPiiEntitiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PiiEntity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectPiiEntitiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectPiiEntitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSentimentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectSentimentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSentimentResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectSentimentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSyntaxRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectSyntaxRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectSyntaxResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectSyntaxResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidFilterException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidFilterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassificationJobFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentClassificationJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassificationJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDocumentClassificationJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassificationJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDocumentClassificationJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentClassifierFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassifiersRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDocumentClassifiersRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassifiersResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDocumentClassifiersResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DominantLanguageDetectionJobFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DominantLanguageDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDominantLanguageDetectionJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDominantLanguageDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDominantLanguageDetectionJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDominantLanguageDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEndpointsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListEndpointsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEndpointsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListEndpointsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntitiesDetectionJobFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntitiesDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntitiesDetectionJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListEntitiesDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntitiesDetectionJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListEntitiesDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityRecognizerFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntityRecognizersRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListEntityRecognizersRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEntityRecognizersResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListEntityRecognizersResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsDetectionJobFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventsDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEventsDetectionJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListEventsDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListEventsDetectionJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListEventsDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyPhrasesDetectionJobFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KeyPhrasesDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListKeyPhrasesDetectionJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListKeyPhrasesDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListKeyPhrasesDetectionJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListKeyPhrasesDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionJobFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PiiEntitiesDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPiiEntitiesDetectionJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListPiiEntitiesDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPiiEntitiesDetectionJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListPiiEntitiesDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentDetectionJobFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SentimentDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSentimentDetectionJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListSentimentDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSentimentDetectionJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListSentimentDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TopicsDetectionJobFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TopicsDetectionJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTopicsDetectionJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTopicsDetectionJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTopicsDetectionJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTopicsDetectionJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentClassificationJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDocumentClassificationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentClassificationJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDocumentClassificationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDominantLanguageDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDominantLanguageDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDominantLanguageDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDominantLanguageDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEntitiesDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEntitiesDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEventsDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartEventsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartEventsDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartEventsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartKeyPhrasesDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartKeyPhrasesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartKeyPhrasesDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartKeyPhrasesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPiiEntitiesDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartPiiEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPiiEntitiesDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartPiiEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSentimentDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartSentimentDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSentimentDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartSentimentDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTopicsDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartTopicsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTopicsDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartTopicsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDominantLanguageDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopDominantLanguageDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDominantLanguageDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopDominantLanguageDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEntitiesDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEntitiesDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEventsDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopEventsDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopEventsDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopEventsDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopKeyPhrasesDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopKeyPhrasesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopKeyPhrasesDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopKeyPhrasesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopPiiEntitiesDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopPiiEntitiesDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopPiiEntitiesDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopPiiEntitiesDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopSentimentDetectionJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopSentimentDetectionJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopSentimentDetectionJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopSentimentDetectionJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingDocumentClassifierRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopTrainingDocumentClassifierRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingDocumentClassifierResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopTrainingDocumentClassifierResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingEntityRecognizerRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopTrainingEntityRecognizerRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingEntityRecognizerResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopTrainingEntityRecognizerResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConcurrentModificationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TagResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TagResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyTagKeysException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TooManyTagKeysException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UntagResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UntagResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateEndpointResponse\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js ***! \****************************************************************************/ /*! exports provided: AugmentedManifestsListItem, BatchDetectDominantLanguageRequest, BatchItemError, DominantLanguage, BatchDetectDominantLanguageItemResult, BatchDetectDominantLanguageResponse, BatchSizeLimitExceededException, InternalServerException, InvalidRequestException, TextSizeLimitExceededException, LanguageCode, BatchDetectEntitiesRequest, EntityType, Entity, BatchDetectEntitiesItemResult, BatchDetectEntitiesResponse, UnsupportedLanguageException, BatchDetectKeyPhrasesRequest, KeyPhrase, BatchDetectKeyPhrasesItemResult, BatchDetectKeyPhrasesResponse, BatchDetectSentimentRequest, SentimentType, SentimentScore, BatchDetectSentimentItemResult, BatchDetectSentimentResponse, SyntaxLanguageCode, BatchDetectSyntaxRequest, PartOfSpeechTagType, PartOfSpeechTag, SyntaxToken, BatchDetectSyntaxItemResult, BatchDetectSyntaxResponse, ClassifierEvaluationMetrics, ClassifierMetadata, ClassifyDocumentRequest, DocumentClass, DocumentLabel, ClassifyDocumentResponse, ResourceUnavailableException, DocumentClassifierDataFormat, DocumentClassifierInputDataConfig, DocumentClassifierMode, DocumentClassifierOutputDataConfig, Tag, VpcConfig, CreateDocumentClassifierRequest, CreateDocumentClassifierResponse, KmsKeyValidationException, ResourceInUseException, ResourceLimitExceededException, TooManyRequestsException, TooManyTagsException, CreateEndpointRequest, CreateEndpointResponse, ResourceNotFoundException, EntityRecognizerAnnotations, EntityRecognizerDataFormat, EntityRecognizerDocuments, EntityRecognizerEntityList, EntityTypesListItem, EntityRecognizerInputDataConfig, CreateEntityRecognizerRequest, CreateEntityRecognizerResponse, DeleteDocumentClassifierRequest, DeleteDocumentClassifierResponse, DeleteEndpointRequest, DeleteEndpointResponse, DeleteEntityRecognizerRequest, DeleteEntityRecognizerResponse, DescribeDocumentClassificationJobRequest, InputFormat, InputDataConfig, JobStatus, OutputDataConfig, DocumentClassificationJobProperties, DescribeDocumentClassificationJobResponse, JobNotFoundException, DescribeDocumentClassifierRequest, ModelStatus, DocumentClassifierProperties, DescribeDocumentClassifierResponse, DescribeDominantLanguageDetectionJobRequest, DominantLanguageDetectionJobProperties, DescribeDominantLanguageDetectionJobResponse, DescribeEndpointRequest, EndpointStatus, EndpointProperties, DescribeEndpointResponse, DescribeEntitiesDetectionJobRequest, EntitiesDetectionJobProperties, DescribeEntitiesDetectionJobResponse, DescribeEntityRecognizerRequest, EntityTypesEvaluationMetrics, EntityRecognizerMetadataEntityTypesListItem, EntityRecognizerEvaluationMetrics, EntityRecognizerMetadata, EntityRecognizerProperties, DescribeEntityRecognizerResponse, DescribeEventsDetectionJobRequest, EventsDetectionJobProperties, DescribeEventsDetectionJobResponse, DescribeKeyPhrasesDetectionJobRequest, KeyPhrasesDetectionJobProperties, DescribeKeyPhrasesDetectionJobResponse, DescribePiiEntitiesDetectionJobRequest, PiiEntitiesDetectionMode, PiiOutputDataConfig, PiiEntitiesDetectionMaskMode, PiiEntityType, RedactionConfig, PiiEntitiesDetectionJobProperties, DescribePiiEntitiesDetectionJobResponse, DescribeSentimentDetectionJobRequest, SentimentDetectionJobProperties, DescribeSentimentDetectionJobResponse, DescribeTopicsDetectionJobRequest, TopicsDetectionJobProperties, DescribeTopicsDetectionJobResponse, DetectDominantLanguageRequest, DetectDominantLanguageResponse, DetectEntitiesRequest, DetectEntitiesResponse, DetectKeyPhrasesRequest, DetectKeyPhrasesResponse, DetectPiiEntitiesRequest, PiiEntity, DetectPiiEntitiesResponse, DetectSentimentRequest, DetectSentimentResponse, DetectSyntaxRequest, DetectSyntaxResponse, InvalidFilterException, DocumentClassificationJobFilter, ListDocumentClassificationJobsRequest, ListDocumentClassificationJobsResponse, DocumentClassifierFilter, ListDocumentClassifiersRequest, ListDocumentClassifiersResponse, DominantLanguageDetectionJobFilter, ListDominantLanguageDetectionJobsRequest, ListDominantLanguageDetectionJobsResponse, EndpointFilter, ListEndpointsRequest, ListEndpointsResponse, EntitiesDetectionJobFilter, ListEntitiesDetectionJobsRequest, ListEntitiesDetectionJobsResponse, EntityRecognizerFilter, ListEntityRecognizersRequest, ListEntityRecognizersResponse, EventsDetectionJobFilter, ListEventsDetectionJobsRequest, ListEventsDetectionJobsResponse, KeyPhrasesDetectionJobFilter, ListKeyPhrasesDetectionJobsRequest, ListKeyPhrasesDetectionJobsResponse, PiiEntitiesDetectionJobFilter, ListPiiEntitiesDetectionJobsRequest, ListPiiEntitiesDetectionJobsResponse, SentimentDetectionJobFilter, ListSentimentDetectionJobsRequest, ListSentimentDetectionJobsResponse, ListTagsForResourceRequest, ListTagsForResourceResponse, TopicsDetectionJobFilter, ListTopicsDetectionJobsRequest, ListTopicsDetectionJobsResponse, StartDocumentClassificationJobRequest, StartDocumentClassificationJobResponse, StartDominantLanguageDetectionJobRequest, StartDominantLanguageDetectionJobResponse, StartEntitiesDetectionJobRequest, StartEntitiesDetectionJobResponse, StartEventsDetectionJobRequest, StartEventsDetectionJobResponse, StartKeyPhrasesDetectionJobRequest, StartKeyPhrasesDetectionJobResponse, StartPiiEntitiesDetectionJobRequest, StartPiiEntitiesDetectionJobResponse, StartSentimentDetectionJobRequest, StartSentimentDetectionJobResponse, StartTopicsDetectionJobRequest, StartTopicsDetectionJobResponse, StopDominantLanguageDetectionJobRequest, StopDominantLanguageDetectionJobResponse, StopEntitiesDetectionJobRequest, StopEntitiesDetectionJobResponse, StopEventsDetectionJobRequest, StopEventsDetectionJobResponse, StopKeyPhrasesDetectionJobRequest, StopKeyPhrasesDetectionJobResponse, StopPiiEntitiesDetectionJobRequest, StopPiiEntitiesDetectionJobResponse, StopSentimentDetectionJobRequest, StopSentimentDetectionJobResponse, StopTrainingDocumentClassifierRequest, StopTrainingDocumentClassifierResponse, StopTrainingEntityRecognizerRequest, StopTrainingEntityRecognizerResponse, ConcurrentModificationException, TagResourceRequest, TagResourceResponse, TooManyTagKeysException, UntagResourceRequest, UntagResourceResponse, UpdateEndpointRequest, UpdateEndpointResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AugmentedManifestsListItem\", function() { return AugmentedManifestsListItem; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageRequest\", function() { return BatchDetectDominantLanguageRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchItemError\", function() { return BatchItemError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DominantLanguage\", function() { return DominantLanguage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageItemResult\", function() { return BatchDetectDominantLanguageItemResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectDominantLanguageResponse\", function() { return BatchDetectDominantLanguageResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchSizeLimitExceededException\", function() { return BatchSizeLimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return InternalServerException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidRequestException\", function() { return InvalidRequestException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextSizeLimitExceededException\", function() { return TextSizeLimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LanguageCode\", function() { return LanguageCode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesRequest\", function() { return BatchDetectEntitiesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityType\", function() { return EntityType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Entity\", function() { return Entity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesItemResult\", function() { return BatchDetectEntitiesItemResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectEntitiesResponse\", function() { return BatchDetectEntitiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedLanguageException\", function() { return UnsupportedLanguageException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesRequest\", function() { return BatchDetectKeyPhrasesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KeyPhrase\", function() { return KeyPhrase; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesItemResult\", function() { return BatchDetectKeyPhrasesItemResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectKeyPhrasesResponse\", function() { return BatchDetectKeyPhrasesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentRequest\", function() { return BatchDetectSentimentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SentimentType\", function() { return SentimentType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SentimentScore\", function() { return SentimentScore; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentItemResult\", function() { return BatchDetectSentimentItemResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSentimentResponse\", function() { return BatchDetectSentimentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SyntaxLanguageCode\", function() { return SyntaxLanguageCode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxRequest\", function() { return BatchDetectSyntaxRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PartOfSpeechTagType\", function() { return PartOfSpeechTagType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PartOfSpeechTag\", function() { return PartOfSpeechTag; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SyntaxToken\", function() { return SyntaxToken; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxItemResult\", function() { return BatchDetectSyntaxItemResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDetectSyntaxResponse\", function() { return BatchDetectSyntaxResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClassifierEvaluationMetrics\", function() { return ClassifierEvaluationMetrics; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClassifierMetadata\", function() { return ClassifierMetadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClassifyDocumentRequest\", function() { return ClassifyDocumentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentClass\", function() { return DocumentClass; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentLabel\", function() { return DocumentLabel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClassifyDocumentResponse\", function() { return ClassifyDocumentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceUnavailableException\", function() { return ResourceUnavailableException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierDataFormat\", function() { return DocumentClassifierDataFormat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierInputDataConfig\", function() { return DocumentClassifierInputDataConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierMode\", function() { return DocumentClassifierMode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierOutputDataConfig\", function() { return DocumentClassifierOutputDataConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return Tag; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VpcConfig\", function() { return VpcConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateDocumentClassifierRequest\", function() { return CreateDocumentClassifierRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateDocumentClassifierResponse\", function() { return CreateDocumentClassifierResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KmsKeyValidationException\", function() { return KmsKeyValidationException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return ResourceInUseException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceLimitExceededException\", function() { return ResourceLimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return TooManyRequestsException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TooManyTagsException\", function() { return TooManyTagsException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateEndpointRequest\", function() { return CreateEndpointRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateEndpointResponse\", function() { return CreateEndpointResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerAnnotations\", function() { return EntityRecognizerAnnotations; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerDataFormat\", function() { return EntityRecognizerDataFormat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerDocuments\", function() { return EntityRecognizerDocuments; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerEntityList\", function() { return EntityRecognizerEntityList; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityTypesListItem\", function() { return EntityTypesListItem; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerInputDataConfig\", function() { return EntityRecognizerInputDataConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateEntityRecognizerRequest\", function() { return CreateEntityRecognizerRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateEntityRecognizerResponse\", function() { return CreateEntityRecognizerResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteDocumentClassifierRequest\", function() { return DeleteDocumentClassifierRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteDocumentClassifierResponse\", function() { return DeleteDocumentClassifierResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointRequest\", function() { return DeleteEndpointRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointResponse\", function() { return DeleteEndpointResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEntityRecognizerRequest\", function() { return DeleteEntityRecognizerRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEntityRecognizerResponse\", function() { return DeleteEntityRecognizerResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassificationJobRequest\", function() { return DescribeDocumentClassificationJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InputFormat\", function() { return InputFormat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InputDataConfig\", function() { return InputDataConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return JobStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OutputDataConfig\", function() { return OutputDataConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassificationJobProperties\", function() { return DocumentClassificationJobProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassificationJobResponse\", function() { return DescribeDocumentClassificationJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JobNotFoundException\", function() { return JobNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassifierRequest\", function() { return DescribeDocumentClassifierRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ModelStatus\", function() { return ModelStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierProperties\", function() { return DocumentClassifierProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDocumentClassifierResponse\", function() { return DescribeDocumentClassifierResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDominantLanguageDetectionJobRequest\", function() { return DescribeDominantLanguageDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DominantLanguageDetectionJobProperties\", function() { return DominantLanguageDetectionJobProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDominantLanguageDetectionJobResponse\", function() { return DescribeDominantLanguageDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEndpointRequest\", function() { return DescribeEndpointRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointStatus\", function() { return EndpointStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointProperties\", function() { return EndpointProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEndpointResponse\", function() { return DescribeEndpointResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntitiesDetectionJobRequest\", function() { return DescribeEntitiesDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntitiesDetectionJobProperties\", function() { return EntitiesDetectionJobProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntitiesDetectionJobResponse\", function() { return DescribeEntitiesDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntityRecognizerRequest\", function() { return DescribeEntityRecognizerRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityTypesEvaluationMetrics\", function() { return EntityTypesEvaluationMetrics; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerMetadataEntityTypesListItem\", function() { return EntityRecognizerMetadataEntityTypesListItem; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerEvaluationMetrics\", function() { return EntityRecognizerEvaluationMetrics; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerMetadata\", function() { return EntityRecognizerMetadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerProperties\", function() { return EntityRecognizerProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEntityRecognizerResponse\", function() { return DescribeEntityRecognizerResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEventsDetectionJobRequest\", function() { return DescribeEventsDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventsDetectionJobProperties\", function() { return EventsDetectionJobProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeEventsDetectionJobResponse\", function() { return DescribeEventsDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeKeyPhrasesDetectionJobRequest\", function() { return DescribeKeyPhrasesDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KeyPhrasesDetectionJobProperties\", function() { return KeyPhrasesDetectionJobProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeKeyPhrasesDetectionJobResponse\", function() { return DescribeKeyPhrasesDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribePiiEntitiesDetectionJobRequest\", function() { return DescribePiiEntitiesDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionMode\", function() { return PiiEntitiesDetectionMode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PiiOutputDataConfig\", function() { return PiiOutputDataConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionMaskMode\", function() { return PiiEntitiesDetectionMaskMode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PiiEntityType\", function() { return PiiEntityType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RedactionConfig\", function() { return RedactionConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionJobProperties\", function() { return PiiEntitiesDetectionJobProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribePiiEntitiesDetectionJobResponse\", function() { return DescribePiiEntitiesDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeSentimentDetectionJobRequest\", function() { return DescribeSentimentDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SentimentDetectionJobProperties\", function() { return SentimentDetectionJobProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeSentimentDetectionJobResponse\", function() { return DescribeSentimentDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeTopicsDetectionJobRequest\", function() { return DescribeTopicsDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TopicsDetectionJobProperties\", function() { return TopicsDetectionJobProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeTopicsDetectionJobResponse\", function() { return DescribeTopicsDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectDominantLanguageRequest\", function() { return DetectDominantLanguageRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectDominantLanguageResponse\", function() { return DetectDominantLanguageResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectEntitiesRequest\", function() { return DetectEntitiesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectEntitiesResponse\", function() { return DetectEntitiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectKeyPhrasesRequest\", function() { return DetectKeyPhrasesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectKeyPhrasesResponse\", function() { return DetectKeyPhrasesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectPiiEntitiesRequest\", function() { return DetectPiiEntitiesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PiiEntity\", function() { return PiiEntity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectPiiEntitiesResponse\", function() { return DetectPiiEntitiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectSentimentRequest\", function() { return DetectSentimentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectSentimentResponse\", function() { return DetectSentimentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectSyntaxRequest\", function() { return DetectSyntaxRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectSyntaxResponse\", function() { return DetectSyntaxResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidFilterException\", function() { return InvalidFilterException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassificationJobFilter\", function() { return DocumentClassificationJobFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassificationJobsRequest\", function() { return ListDocumentClassificationJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassificationJobsResponse\", function() { return ListDocumentClassificationJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentClassifierFilter\", function() { return DocumentClassifierFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassifiersRequest\", function() { return ListDocumentClassifiersRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDocumentClassifiersResponse\", function() { return ListDocumentClassifiersResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DominantLanguageDetectionJobFilter\", function() { return DominantLanguageDetectionJobFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDominantLanguageDetectionJobsRequest\", function() { return ListDominantLanguageDetectionJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDominantLanguageDetectionJobsResponse\", function() { return ListDominantLanguageDetectionJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointFilter\", function() { return EndpointFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEndpointsRequest\", function() { return ListEndpointsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEndpointsResponse\", function() { return ListEndpointsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntitiesDetectionJobFilter\", function() { return EntitiesDetectionJobFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEntitiesDetectionJobsRequest\", function() { return ListEntitiesDetectionJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEntitiesDetectionJobsResponse\", function() { return ListEntitiesDetectionJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityRecognizerFilter\", function() { return EntityRecognizerFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEntityRecognizersRequest\", function() { return ListEntityRecognizersRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEntityRecognizersResponse\", function() { return ListEntityRecognizersResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventsDetectionJobFilter\", function() { return EventsDetectionJobFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEventsDetectionJobsRequest\", function() { return ListEventsDetectionJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListEventsDetectionJobsResponse\", function() { return ListEventsDetectionJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KeyPhrasesDetectionJobFilter\", function() { return KeyPhrasesDetectionJobFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListKeyPhrasesDetectionJobsRequest\", function() { return ListKeyPhrasesDetectionJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListKeyPhrasesDetectionJobsResponse\", function() { return ListKeyPhrasesDetectionJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PiiEntitiesDetectionJobFilter\", function() { return PiiEntitiesDetectionJobFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPiiEntitiesDetectionJobsRequest\", function() { return ListPiiEntitiesDetectionJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPiiEntitiesDetectionJobsResponse\", function() { return ListPiiEntitiesDetectionJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SentimentDetectionJobFilter\", function() { return SentimentDetectionJobFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListSentimentDetectionJobsRequest\", function() { return ListSentimentDetectionJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListSentimentDetectionJobsResponse\", function() { return ListSentimentDetectionJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceRequest\", function() { return ListTagsForResourceRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponse\", function() { return ListTagsForResourceResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TopicsDetectionJobFilter\", function() { return TopicsDetectionJobFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTopicsDetectionJobsRequest\", function() { return ListTopicsDetectionJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTopicsDetectionJobsResponse\", function() { return ListTopicsDetectionJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentClassificationJobRequest\", function() { return StartDocumentClassificationJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentClassificationJobResponse\", function() { return StartDocumentClassificationJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDominantLanguageDetectionJobRequest\", function() { return StartDominantLanguageDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDominantLanguageDetectionJobResponse\", function() { return StartDominantLanguageDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartEntitiesDetectionJobRequest\", function() { return StartEntitiesDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartEntitiesDetectionJobResponse\", function() { return StartEntitiesDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartEventsDetectionJobRequest\", function() { return StartEventsDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartEventsDetectionJobResponse\", function() { return StartEventsDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartKeyPhrasesDetectionJobRequest\", function() { return StartKeyPhrasesDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartKeyPhrasesDetectionJobResponse\", function() { return StartKeyPhrasesDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartPiiEntitiesDetectionJobRequest\", function() { return StartPiiEntitiesDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartPiiEntitiesDetectionJobResponse\", function() { return StartPiiEntitiesDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSentimentDetectionJobRequest\", function() { return StartSentimentDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSentimentDetectionJobResponse\", function() { return StartSentimentDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTopicsDetectionJobRequest\", function() { return StartTopicsDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTopicsDetectionJobResponse\", function() { return StartTopicsDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopDominantLanguageDetectionJobRequest\", function() { return StopDominantLanguageDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopDominantLanguageDetectionJobResponse\", function() { return StopDominantLanguageDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopEntitiesDetectionJobRequest\", function() { return StopEntitiesDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopEntitiesDetectionJobResponse\", function() { return StopEntitiesDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopEventsDetectionJobRequest\", function() { return StopEventsDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopEventsDetectionJobResponse\", function() { return StopEventsDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopKeyPhrasesDetectionJobRequest\", function() { return StopKeyPhrasesDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopKeyPhrasesDetectionJobResponse\", function() { return StopKeyPhrasesDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopPiiEntitiesDetectionJobRequest\", function() { return StopPiiEntitiesDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopPiiEntitiesDetectionJobResponse\", function() { return StopPiiEntitiesDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopSentimentDetectionJobRequest\", function() { return StopSentimentDetectionJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopSentimentDetectionJobResponse\", function() { return StopSentimentDetectionJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingDocumentClassifierRequest\", function() { return StopTrainingDocumentClassifierRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingDocumentClassifierResponse\", function() { return StopTrainingDocumentClassifierResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingEntityRecognizerRequest\", function() { return StopTrainingEntityRecognizerRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopTrainingEntityRecognizerResponse\", function() { return StopTrainingEntityRecognizerResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return ConcurrentModificationException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceRequest\", function() { return TagResourceRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceResponse\", function() { return TagResourceResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TooManyTagKeysException\", function() { return TooManyTagKeysException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceRequest\", function() { return UntagResourceRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceResponse\", function() { return UntagResourceResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointRequest\", function() { return UpdateEndpointRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointResponse\", function() { return UpdateEndpointResponse; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\nvar AugmentedManifestsListItem;\n(function (AugmentedManifestsListItem) {\n AugmentedManifestsListItem.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AugmentedManifestsListItem || (AugmentedManifestsListItem = {}));\nvar BatchDetectDominantLanguageRequest;\n(function (BatchDetectDominantLanguageRequest) {\n BatchDetectDominantLanguageRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.TextList && { TextList: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(BatchDetectDominantLanguageRequest || (BatchDetectDominantLanguageRequest = {}));\nvar BatchItemError;\n(function (BatchItemError) {\n BatchItemError.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchItemError || (BatchItemError = {}));\nvar DominantLanguage;\n(function (DominantLanguage) {\n DominantLanguage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DominantLanguage || (DominantLanguage = {}));\nvar BatchDetectDominantLanguageItemResult;\n(function (BatchDetectDominantLanguageItemResult) {\n BatchDetectDominantLanguageItemResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectDominantLanguageItemResult || (BatchDetectDominantLanguageItemResult = {}));\nvar BatchDetectDominantLanguageResponse;\n(function (BatchDetectDominantLanguageResponse) {\n BatchDetectDominantLanguageResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectDominantLanguageResponse || (BatchDetectDominantLanguageResponse = {}));\nvar BatchSizeLimitExceededException;\n(function (BatchSizeLimitExceededException) {\n BatchSizeLimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchSizeLimitExceededException || (BatchSizeLimitExceededException = {}));\nvar InternalServerException;\n(function (InternalServerException) {\n InternalServerException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InternalServerException || (InternalServerException = {}));\nvar InvalidRequestException;\n(function (InvalidRequestException) {\n InvalidRequestException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidRequestException || (InvalidRequestException = {}));\nvar TextSizeLimitExceededException;\n(function (TextSizeLimitExceededException) {\n TextSizeLimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TextSizeLimitExceededException || (TextSizeLimitExceededException = {}));\nvar LanguageCode;\n(function (LanguageCode) {\n LanguageCode[\"AR\"] = \"ar\";\n LanguageCode[\"DE\"] = \"de\";\n LanguageCode[\"EN\"] = \"en\";\n LanguageCode[\"ES\"] = \"es\";\n LanguageCode[\"FR\"] = \"fr\";\n LanguageCode[\"HI\"] = \"hi\";\n LanguageCode[\"IT\"] = \"it\";\n LanguageCode[\"JA\"] = \"ja\";\n LanguageCode[\"KO\"] = \"ko\";\n LanguageCode[\"PT\"] = \"pt\";\n LanguageCode[\"ZH\"] = \"zh\";\n LanguageCode[\"ZH_TW\"] = \"zh-TW\";\n})(LanguageCode || (LanguageCode = {}));\nvar BatchDetectEntitiesRequest;\n(function (BatchDetectEntitiesRequest) {\n BatchDetectEntitiesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.TextList && { TextList: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(BatchDetectEntitiesRequest || (BatchDetectEntitiesRequest = {}));\nvar EntityType;\n(function (EntityType) {\n EntityType[\"COMMERCIAL_ITEM\"] = \"COMMERCIAL_ITEM\";\n EntityType[\"DATE\"] = \"DATE\";\n EntityType[\"EVENT\"] = \"EVENT\";\n EntityType[\"LOCATION\"] = \"LOCATION\";\n EntityType[\"ORGANIZATION\"] = \"ORGANIZATION\";\n EntityType[\"OTHER\"] = \"OTHER\";\n EntityType[\"PERSON\"] = \"PERSON\";\n EntityType[\"QUANTITY\"] = \"QUANTITY\";\n EntityType[\"TITLE\"] = \"TITLE\";\n})(EntityType || (EntityType = {}));\nvar Entity;\n(function (Entity) {\n Entity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Entity || (Entity = {}));\nvar BatchDetectEntitiesItemResult;\n(function (BatchDetectEntitiesItemResult) {\n BatchDetectEntitiesItemResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectEntitiesItemResult || (BatchDetectEntitiesItemResult = {}));\nvar BatchDetectEntitiesResponse;\n(function (BatchDetectEntitiesResponse) {\n BatchDetectEntitiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectEntitiesResponse || (BatchDetectEntitiesResponse = {}));\nvar UnsupportedLanguageException;\n(function (UnsupportedLanguageException) {\n UnsupportedLanguageException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnsupportedLanguageException || (UnsupportedLanguageException = {}));\nvar BatchDetectKeyPhrasesRequest;\n(function (BatchDetectKeyPhrasesRequest) {\n BatchDetectKeyPhrasesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.TextList && { TextList: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(BatchDetectKeyPhrasesRequest || (BatchDetectKeyPhrasesRequest = {}));\nvar KeyPhrase;\n(function (KeyPhrase) {\n KeyPhrase.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KeyPhrase || (KeyPhrase = {}));\nvar BatchDetectKeyPhrasesItemResult;\n(function (BatchDetectKeyPhrasesItemResult) {\n BatchDetectKeyPhrasesItemResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectKeyPhrasesItemResult || (BatchDetectKeyPhrasesItemResult = {}));\nvar BatchDetectKeyPhrasesResponse;\n(function (BatchDetectKeyPhrasesResponse) {\n BatchDetectKeyPhrasesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectKeyPhrasesResponse || (BatchDetectKeyPhrasesResponse = {}));\nvar BatchDetectSentimentRequest;\n(function (BatchDetectSentimentRequest) {\n BatchDetectSentimentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.TextList && { TextList: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(BatchDetectSentimentRequest || (BatchDetectSentimentRequest = {}));\nvar SentimentType;\n(function (SentimentType) {\n SentimentType[\"MIXED\"] = \"MIXED\";\n SentimentType[\"NEGATIVE\"] = \"NEGATIVE\";\n SentimentType[\"NEUTRAL\"] = \"NEUTRAL\";\n SentimentType[\"POSITIVE\"] = \"POSITIVE\";\n})(SentimentType || (SentimentType = {}));\nvar SentimentScore;\n(function (SentimentScore) {\n SentimentScore.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SentimentScore || (SentimentScore = {}));\nvar BatchDetectSentimentItemResult;\n(function (BatchDetectSentimentItemResult) {\n BatchDetectSentimentItemResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectSentimentItemResult || (BatchDetectSentimentItemResult = {}));\nvar BatchDetectSentimentResponse;\n(function (BatchDetectSentimentResponse) {\n BatchDetectSentimentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectSentimentResponse || (BatchDetectSentimentResponse = {}));\nvar SyntaxLanguageCode;\n(function (SyntaxLanguageCode) {\n SyntaxLanguageCode[\"DE\"] = \"de\";\n SyntaxLanguageCode[\"EN\"] = \"en\";\n SyntaxLanguageCode[\"ES\"] = \"es\";\n SyntaxLanguageCode[\"FR\"] = \"fr\";\n SyntaxLanguageCode[\"IT\"] = \"it\";\n SyntaxLanguageCode[\"PT\"] = \"pt\";\n})(SyntaxLanguageCode || (SyntaxLanguageCode = {}));\nvar BatchDetectSyntaxRequest;\n(function (BatchDetectSyntaxRequest) {\n BatchDetectSyntaxRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.TextList && { TextList: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(BatchDetectSyntaxRequest || (BatchDetectSyntaxRequest = {}));\nvar PartOfSpeechTagType;\n(function (PartOfSpeechTagType) {\n PartOfSpeechTagType[\"ADJ\"] = \"ADJ\";\n PartOfSpeechTagType[\"ADP\"] = \"ADP\";\n PartOfSpeechTagType[\"ADV\"] = \"ADV\";\n PartOfSpeechTagType[\"AUX\"] = \"AUX\";\n PartOfSpeechTagType[\"CCONJ\"] = \"CCONJ\";\n PartOfSpeechTagType[\"CONJ\"] = \"CONJ\";\n PartOfSpeechTagType[\"DET\"] = \"DET\";\n PartOfSpeechTagType[\"INTJ\"] = \"INTJ\";\n PartOfSpeechTagType[\"NOUN\"] = \"NOUN\";\n PartOfSpeechTagType[\"NUM\"] = \"NUM\";\n PartOfSpeechTagType[\"O\"] = \"O\";\n PartOfSpeechTagType[\"PART\"] = \"PART\";\n PartOfSpeechTagType[\"PRON\"] = \"PRON\";\n PartOfSpeechTagType[\"PROPN\"] = \"PROPN\";\n PartOfSpeechTagType[\"PUNCT\"] = \"PUNCT\";\n PartOfSpeechTagType[\"SCONJ\"] = \"SCONJ\";\n PartOfSpeechTagType[\"SYM\"] = \"SYM\";\n PartOfSpeechTagType[\"VERB\"] = \"VERB\";\n})(PartOfSpeechTagType || (PartOfSpeechTagType = {}));\nvar PartOfSpeechTag;\n(function (PartOfSpeechTag) {\n PartOfSpeechTag.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PartOfSpeechTag || (PartOfSpeechTag = {}));\nvar SyntaxToken;\n(function (SyntaxToken) {\n SyntaxToken.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SyntaxToken || (SyntaxToken = {}));\nvar BatchDetectSyntaxItemResult;\n(function (BatchDetectSyntaxItemResult) {\n BatchDetectSyntaxItemResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectSyntaxItemResult || (BatchDetectSyntaxItemResult = {}));\nvar BatchDetectSyntaxResponse;\n(function (BatchDetectSyntaxResponse) {\n BatchDetectSyntaxResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BatchDetectSyntaxResponse || (BatchDetectSyntaxResponse = {}));\nvar ClassifierEvaluationMetrics;\n(function (ClassifierEvaluationMetrics) {\n ClassifierEvaluationMetrics.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ClassifierEvaluationMetrics || (ClassifierEvaluationMetrics = {}));\nvar ClassifierMetadata;\n(function (ClassifierMetadata) {\n ClassifierMetadata.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ClassifierMetadata || (ClassifierMetadata = {}));\nvar ClassifyDocumentRequest;\n(function (ClassifyDocumentRequest) {\n ClassifyDocumentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(ClassifyDocumentRequest || (ClassifyDocumentRequest = {}));\nvar DocumentClass;\n(function (DocumentClass) {\n DocumentClass.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentClass || (DocumentClass = {}));\nvar DocumentLabel;\n(function (DocumentLabel) {\n DocumentLabel.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentLabel || (DocumentLabel = {}));\nvar ClassifyDocumentResponse;\n(function (ClassifyDocumentResponse) {\n ClassifyDocumentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ClassifyDocumentResponse || (ClassifyDocumentResponse = {}));\nvar ResourceUnavailableException;\n(function (ResourceUnavailableException) {\n ResourceUnavailableException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceUnavailableException || (ResourceUnavailableException = {}));\nvar DocumentClassifierDataFormat;\n(function (DocumentClassifierDataFormat) {\n DocumentClassifierDataFormat[\"AUGMENTED_MANIFEST\"] = \"AUGMENTED_MANIFEST\";\n DocumentClassifierDataFormat[\"COMPREHEND_CSV\"] = \"COMPREHEND_CSV\";\n})(DocumentClassifierDataFormat || (DocumentClassifierDataFormat = {}));\nvar DocumentClassifierInputDataConfig;\n(function (DocumentClassifierInputDataConfig) {\n DocumentClassifierInputDataConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentClassifierInputDataConfig || (DocumentClassifierInputDataConfig = {}));\nvar DocumentClassifierMode;\n(function (DocumentClassifierMode) {\n DocumentClassifierMode[\"MULTI_CLASS\"] = \"MULTI_CLASS\";\n DocumentClassifierMode[\"MULTI_LABEL\"] = \"MULTI_LABEL\";\n})(DocumentClassifierMode || (DocumentClassifierMode = {}));\nvar DocumentClassifierOutputDataConfig;\n(function (DocumentClassifierOutputDataConfig) {\n DocumentClassifierOutputDataConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentClassifierOutputDataConfig || (DocumentClassifierOutputDataConfig = {}));\nvar Tag;\n(function (Tag) {\n Tag.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Tag || (Tag = {}));\nvar VpcConfig;\n(function (VpcConfig) {\n VpcConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VpcConfig || (VpcConfig = {}));\nvar CreateDocumentClassifierRequest;\n(function (CreateDocumentClassifierRequest) {\n CreateDocumentClassifierRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateDocumentClassifierRequest || (CreateDocumentClassifierRequest = {}));\nvar CreateDocumentClassifierResponse;\n(function (CreateDocumentClassifierResponse) {\n CreateDocumentClassifierResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateDocumentClassifierResponse || (CreateDocumentClassifierResponse = {}));\nvar KmsKeyValidationException;\n(function (KmsKeyValidationException) {\n KmsKeyValidationException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KmsKeyValidationException || (KmsKeyValidationException = {}));\nvar ResourceInUseException;\n(function (ResourceInUseException) {\n ResourceInUseException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceInUseException || (ResourceInUseException = {}));\nvar ResourceLimitExceededException;\n(function (ResourceLimitExceededException) {\n ResourceLimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceLimitExceededException || (ResourceLimitExceededException = {}));\nvar TooManyRequestsException;\n(function (TooManyRequestsException) {\n TooManyRequestsException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TooManyRequestsException || (TooManyRequestsException = {}));\nvar TooManyTagsException;\n(function (TooManyTagsException) {\n TooManyTagsException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TooManyTagsException || (TooManyTagsException = {}));\nvar CreateEndpointRequest;\n(function (CreateEndpointRequest) {\n CreateEndpointRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateEndpointRequest || (CreateEndpointRequest = {}));\nvar CreateEndpointResponse;\n(function (CreateEndpointResponse) {\n CreateEndpointResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateEndpointResponse || (CreateEndpointResponse = {}));\nvar ResourceNotFoundException;\n(function (ResourceNotFoundException) {\n ResourceNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceNotFoundException || (ResourceNotFoundException = {}));\nvar EntityRecognizerAnnotations;\n(function (EntityRecognizerAnnotations) {\n EntityRecognizerAnnotations.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityRecognizerAnnotations || (EntityRecognizerAnnotations = {}));\nvar EntityRecognizerDataFormat;\n(function (EntityRecognizerDataFormat) {\n EntityRecognizerDataFormat[\"AUGMENTED_MANIFEST\"] = \"AUGMENTED_MANIFEST\";\n EntityRecognizerDataFormat[\"COMPREHEND_CSV\"] = \"COMPREHEND_CSV\";\n})(EntityRecognizerDataFormat || (EntityRecognizerDataFormat = {}));\nvar EntityRecognizerDocuments;\n(function (EntityRecognizerDocuments) {\n EntityRecognizerDocuments.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityRecognizerDocuments || (EntityRecognizerDocuments = {}));\nvar EntityRecognizerEntityList;\n(function (EntityRecognizerEntityList) {\n EntityRecognizerEntityList.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityRecognizerEntityList || (EntityRecognizerEntityList = {}));\nvar EntityTypesListItem;\n(function (EntityTypesListItem) {\n EntityTypesListItem.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityTypesListItem || (EntityTypesListItem = {}));\nvar EntityRecognizerInputDataConfig;\n(function (EntityRecognizerInputDataConfig) {\n EntityRecognizerInputDataConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityRecognizerInputDataConfig || (EntityRecognizerInputDataConfig = {}));\nvar CreateEntityRecognizerRequest;\n(function (CreateEntityRecognizerRequest) {\n CreateEntityRecognizerRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateEntityRecognizerRequest || (CreateEntityRecognizerRequest = {}));\nvar CreateEntityRecognizerResponse;\n(function (CreateEntityRecognizerResponse) {\n CreateEntityRecognizerResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateEntityRecognizerResponse || (CreateEntityRecognizerResponse = {}));\nvar DeleteDocumentClassifierRequest;\n(function (DeleteDocumentClassifierRequest) {\n DeleteDocumentClassifierRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteDocumentClassifierRequest || (DeleteDocumentClassifierRequest = {}));\nvar DeleteDocumentClassifierResponse;\n(function (DeleteDocumentClassifierResponse) {\n DeleteDocumentClassifierResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteDocumentClassifierResponse || (DeleteDocumentClassifierResponse = {}));\nvar DeleteEndpointRequest;\n(function (DeleteEndpointRequest) {\n DeleteEndpointRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEndpointRequest || (DeleteEndpointRequest = {}));\nvar DeleteEndpointResponse;\n(function (DeleteEndpointResponse) {\n DeleteEndpointResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEndpointResponse || (DeleteEndpointResponse = {}));\nvar DeleteEntityRecognizerRequest;\n(function (DeleteEntityRecognizerRequest) {\n DeleteEntityRecognizerRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEntityRecognizerRequest || (DeleteEntityRecognizerRequest = {}));\nvar DeleteEntityRecognizerResponse;\n(function (DeleteEntityRecognizerResponse) {\n DeleteEntityRecognizerResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEntityRecognizerResponse || (DeleteEntityRecognizerResponse = {}));\nvar DescribeDocumentClassificationJobRequest;\n(function (DescribeDocumentClassificationJobRequest) {\n DescribeDocumentClassificationJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeDocumentClassificationJobRequest || (DescribeDocumentClassificationJobRequest = {}));\nvar InputFormat;\n(function (InputFormat) {\n InputFormat[\"ONE_DOC_PER_FILE\"] = \"ONE_DOC_PER_FILE\";\n InputFormat[\"ONE_DOC_PER_LINE\"] = \"ONE_DOC_PER_LINE\";\n})(InputFormat || (InputFormat = {}));\nvar InputDataConfig;\n(function (InputDataConfig) {\n InputDataConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InputDataConfig || (InputDataConfig = {}));\nvar JobStatus;\n(function (JobStatus) {\n JobStatus[\"COMPLETED\"] = \"COMPLETED\";\n JobStatus[\"FAILED\"] = \"FAILED\";\n JobStatus[\"IN_PROGRESS\"] = \"IN_PROGRESS\";\n JobStatus[\"STOPPED\"] = \"STOPPED\";\n JobStatus[\"STOP_REQUESTED\"] = \"STOP_REQUESTED\";\n JobStatus[\"SUBMITTED\"] = \"SUBMITTED\";\n})(JobStatus || (JobStatus = {}));\nvar OutputDataConfig;\n(function (OutputDataConfig) {\n OutputDataConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OutputDataConfig || (OutputDataConfig = {}));\nvar DocumentClassificationJobProperties;\n(function (DocumentClassificationJobProperties) {\n DocumentClassificationJobProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentClassificationJobProperties || (DocumentClassificationJobProperties = {}));\nvar DescribeDocumentClassificationJobResponse;\n(function (DescribeDocumentClassificationJobResponse) {\n DescribeDocumentClassificationJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeDocumentClassificationJobResponse || (DescribeDocumentClassificationJobResponse = {}));\nvar JobNotFoundException;\n(function (JobNotFoundException) {\n JobNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JobNotFoundException || (JobNotFoundException = {}));\nvar DescribeDocumentClassifierRequest;\n(function (DescribeDocumentClassifierRequest) {\n DescribeDocumentClassifierRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeDocumentClassifierRequest || (DescribeDocumentClassifierRequest = {}));\nvar ModelStatus;\n(function (ModelStatus) {\n ModelStatus[\"DELETING\"] = \"DELETING\";\n ModelStatus[\"IN_ERROR\"] = \"IN_ERROR\";\n ModelStatus[\"STOPPED\"] = \"STOPPED\";\n ModelStatus[\"STOP_REQUESTED\"] = \"STOP_REQUESTED\";\n ModelStatus[\"SUBMITTED\"] = \"SUBMITTED\";\n ModelStatus[\"TRAINED\"] = \"TRAINED\";\n ModelStatus[\"TRAINING\"] = \"TRAINING\";\n})(ModelStatus || (ModelStatus = {}));\nvar DocumentClassifierProperties;\n(function (DocumentClassifierProperties) {\n DocumentClassifierProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.ClassifierMetadata && { ClassifierMetadata: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(DocumentClassifierProperties || (DocumentClassifierProperties = {}));\nvar DescribeDocumentClassifierResponse;\n(function (DescribeDocumentClassifierResponse) {\n DescribeDocumentClassifierResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.DocumentClassifierProperties && {\n DocumentClassifierProperties: DocumentClassifierProperties.filterSensitiveLog(obj.DocumentClassifierProperties),\n }))); };\n})(DescribeDocumentClassifierResponse || (DescribeDocumentClassifierResponse = {}));\nvar DescribeDominantLanguageDetectionJobRequest;\n(function (DescribeDominantLanguageDetectionJobRequest) {\n DescribeDominantLanguageDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeDominantLanguageDetectionJobRequest || (DescribeDominantLanguageDetectionJobRequest = {}));\nvar DominantLanguageDetectionJobProperties;\n(function (DominantLanguageDetectionJobProperties) {\n DominantLanguageDetectionJobProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DominantLanguageDetectionJobProperties || (DominantLanguageDetectionJobProperties = {}));\nvar DescribeDominantLanguageDetectionJobResponse;\n(function (DescribeDominantLanguageDetectionJobResponse) {\n DescribeDominantLanguageDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeDominantLanguageDetectionJobResponse || (DescribeDominantLanguageDetectionJobResponse = {}));\nvar DescribeEndpointRequest;\n(function (DescribeEndpointRequest) {\n DescribeEndpointRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeEndpointRequest || (DescribeEndpointRequest = {}));\nvar EndpointStatus;\n(function (EndpointStatus) {\n EndpointStatus[\"CREATING\"] = \"CREATING\";\n EndpointStatus[\"DELETING\"] = \"DELETING\";\n EndpointStatus[\"FAILED\"] = \"FAILED\";\n EndpointStatus[\"IN_SERVICE\"] = \"IN_SERVICE\";\n EndpointStatus[\"UPDATING\"] = \"UPDATING\";\n})(EndpointStatus || (EndpointStatus = {}));\nvar EndpointProperties;\n(function (EndpointProperties) {\n EndpointProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointProperties || (EndpointProperties = {}));\nvar DescribeEndpointResponse;\n(function (DescribeEndpointResponse) {\n DescribeEndpointResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeEndpointResponse || (DescribeEndpointResponse = {}));\nvar DescribeEntitiesDetectionJobRequest;\n(function (DescribeEntitiesDetectionJobRequest) {\n DescribeEntitiesDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeEntitiesDetectionJobRequest || (DescribeEntitiesDetectionJobRequest = {}));\nvar EntitiesDetectionJobProperties;\n(function (EntitiesDetectionJobProperties) {\n EntitiesDetectionJobProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntitiesDetectionJobProperties || (EntitiesDetectionJobProperties = {}));\nvar DescribeEntitiesDetectionJobResponse;\n(function (DescribeEntitiesDetectionJobResponse) {\n DescribeEntitiesDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeEntitiesDetectionJobResponse || (DescribeEntitiesDetectionJobResponse = {}));\nvar DescribeEntityRecognizerRequest;\n(function (DescribeEntityRecognizerRequest) {\n DescribeEntityRecognizerRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeEntityRecognizerRequest || (DescribeEntityRecognizerRequest = {}));\nvar EntityTypesEvaluationMetrics;\n(function (EntityTypesEvaluationMetrics) {\n EntityTypesEvaluationMetrics.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityTypesEvaluationMetrics || (EntityTypesEvaluationMetrics = {}));\nvar EntityRecognizerMetadataEntityTypesListItem;\n(function (EntityRecognizerMetadataEntityTypesListItem) {\n EntityRecognizerMetadataEntityTypesListItem.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityRecognizerMetadataEntityTypesListItem || (EntityRecognizerMetadataEntityTypesListItem = {}));\nvar EntityRecognizerEvaluationMetrics;\n(function (EntityRecognizerEvaluationMetrics) {\n EntityRecognizerEvaluationMetrics.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityRecognizerEvaluationMetrics || (EntityRecognizerEvaluationMetrics = {}));\nvar EntityRecognizerMetadata;\n(function (EntityRecognizerMetadata) {\n EntityRecognizerMetadata.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityRecognizerMetadata || (EntityRecognizerMetadata = {}));\nvar EntityRecognizerProperties;\n(function (EntityRecognizerProperties) {\n EntityRecognizerProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.RecognizerMetadata && { RecognizerMetadata: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(EntityRecognizerProperties || (EntityRecognizerProperties = {}));\nvar DescribeEntityRecognizerResponse;\n(function (DescribeEntityRecognizerResponse) {\n DescribeEntityRecognizerResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.EntityRecognizerProperties && {\n EntityRecognizerProperties: EntityRecognizerProperties.filterSensitiveLog(obj.EntityRecognizerProperties),\n }))); };\n})(DescribeEntityRecognizerResponse || (DescribeEntityRecognizerResponse = {}));\nvar DescribeEventsDetectionJobRequest;\n(function (DescribeEventsDetectionJobRequest) {\n DescribeEventsDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeEventsDetectionJobRequest || (DescribeEventsDetectionJobRequest = {}));\nvar EventsDetectionJobProperties;\n(function (EventsDetectionJobProperties) {\n EventsDetectionJobProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventsDetectionJobProperties || (EventsDetectionJobProperties = {}));\nvar DescribeEventsDetectionJobResponse;\n(function (DescribeEventsDetectionJobResponse) {\n DescribeEventsDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeEventsDetectionJobResponse || (DescribeEventsDetectionJobResponse = {}));\nvar DescribeKeyPhrasesDetectionJobRequest;\n(function (DescribeKeyPhrasesDetectionJobRequest) {\n DescribeKeyPhrasesDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeKeyPhrasesDetectionJobRequest || (DescribeKeyPhrasesDetectionJobRequest = {}));\nvar KeyPhrasesDetectionJobProperties;\n(function (KeyPhrasesDetectionJobProperties) {\n KeyPhrasesDetectionJobProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KeyPhrasesDetectionJobProperties || (KeyPhrasesDetectionJobProperties = {}));\nvar DescribeKeyPhrasesDetectionJobResponse;\n(function (DescribeKeyPhrasesDetectionJobResponse) {\n DescribeKeyPhrasesDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeKeyPhrasesDetectionJobResponse || (DescribeKeyPhrasesDetectionJobResponse = {}));\nvar DescribePiiEntitiesDetectionJobRequest;\n(function (DescribePiiEntitiesDetectionJobRequest) {\n DescribePiiEntitiesDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribePiiEntitiesDetectionJobRequest || (DescribePiiEntitiesDetectionJobRequest = {}));\nvar PiiEntitiesDetectionMode;\n(function (PiiEntitiesDetectionMode) {\n PiiEntitiesDetectionMode[\"ONLY_OFFSETS\"] = \"ONLY_OFFSETS\";\n PiiEntitiesDetectionMode[\"ONLY_REDACTION\"] = \"ONLY_REDACTION\";\n})(PiiEntitiesDetectionMode || (PiiEntitiesDetectionMode = {}));\nvar PiiOutputDataConfig;\n(function (PiiOutputDataConfig) {\n PiiOutputDataConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PiiOutputDataConfig || (PiiOutputDataConfig = {}));\nvar PiiEntitiesDetectionMaskMode;\n(function (PiiEntitiesDetectionMaskMode) {\n PiiEntitiesDetectionMaskMode[\"MASK\"] = \"MASK\";\n PiiEntitiesDetectionMaskMode[\"REPLACE_WITH_PII_ENTITY_TYPE\"] = \"REPLACE_WITH_PII_ENTITY_TYPE\";\n})(PiiEntitiesDetectionMaskMode || (PiiEntitiesDetectionMaskMode = {}));\nvar PiiEntityType;\n(function (PiiEntityType) {\n PiiEntityType[\"ADDRESS\"] = \"ADDRESS\";\n PiiEntityType[\"AGE\"] = \"AGE\";\n PiiEntityType[\"ALL\"] = \"ALL\";\n PiiEntityType[\"AWS_ACCESS_KEY\"] = \"AWS_ACCESS_KEY\";\n PiiEntityType[\"AWS_SECRET_KEY\"] = \"AWS_SECRET_KEY\";\n PiiEntityType[\"BANK_ACCOUNT_NUMBER\"] = \"BANK_ACCOUNT_NUMBER\";\n PiiEntityType[\"BANK_ROUTING\"] = \"BANK_ROUTING\";\n PiiEntityType[\"CREDIT_DEBIT_CVV\"] = \"CREDIT_DEBIT_CVV\";\n PiiEntityType[\"CREDIT_DEBIT_EXPIRY\"] = \"CREDIT_DEBIT_EXPIRY\";\n PiiEntityType[\"CREDIT_DEBIT_NUMBER\"] = \"CREDIT_DEBIT_NUMBER\";\n PiiEntityType[\"DATE_TIME\"] = \"DATE_TIME\";\n PiiEntityType[\"DRIVER_ID\"] = \"DRIVER_ID\";\n PiiEntityType[\"EMAIL\"] = \"EMAIL\";\n PiiEntityType[\"IP_ADDRESS\"] = \"IP_ADDRESS\";\n PiiEntityType[\"MAC_ADDRESS\"] = \"MAC_ADDRESS\";\n PiiEntityType[\"NAME\"] = \"NAME\";\n PiiEntityType[\"PASSPORT_NUMBER\"] = \"PASSPORT_NUMBER\";\n PiiEntityType[\"PASSWORD\"] = \"PASSWORD\";\n PiiEntityType[\"PHONE\"] = \"PHONE\";\n PiiEntityType[\"PIN\"] = \"PIN\";\n PiiEntityType[\"SSN\"] = \"SSN\";\n PiiEntityType[\"URL\"] = \"URL\";\n PiiEntityType[\"USERNAME\"] = \"USERNAME\";\n})(PiiEntityType || (PiiEntityType = {}));\nvar RedactionConfig;\n(function (RedactionConfig) {\n RedactionConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RedactionConfig || (RedactionConfig = {}));\nvar PiiEntitiesDetectionJobProperties;\n(function (PiiEntitiesDetectionJobProperties) {\n PiiEntitiesDetectionJobProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PiiEntitiesDetectionJobProperties || (PiiEntitiesDetectionJobProperties = {}));\nvar DescribePiiEntitiesDetectionJobResponse;\n(function (DescribePiiEntitiesDetectionJobResponse) {\n DescribePiiEntitiesDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribePiiEntitiesDetectionJobResponse || (DescribePiiEntitiesDetectionJobResponse = {}));\nvar DescribeSentimentDetectionJobRequest;\n(function (DescribeSentimentDetectionJobRequest) {\n DescribeSentimentDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeSentimentDetectionJobRequest || (DescribeSentimentDetectionJobRequest = {}));\nvar SentimentDetectionJobProperties;\n(function (SentimentDetectionJobProperties) {\n SentimentDetectionJobProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SentimentDetectionJobProperties || (SentimentDetectionJobProperties = {}));\nvar DescribeSentimentDetectionJobResponse;\n(function (DescribeSentimentDetectionJobResponse) {\n DescribeSentimentDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeSentimentDetectionJobResponse || (DescribeSentimentDetectionJobResponse = {}));\nvar DescribeTopicsDetectionJobRequest;\n(function (DescribeTopicsDetectionJobRequest) {\n DescribeTopicsDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeTopicsDetectionJobRequest || (DescribeTopicsDetectionJobRequest = {}));\nvar TopicsDetectionJobProperties;\n(function (TopicsDetectionJobProperties) {\n TopicsDetectionJobProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TopicsDetectionJobProperties || (TopicsDetectionJobProperties = {}));\nvar DescribeTopicsDetectionJobResponse;\n(function (DescribeTopicsDetectionJobResponse) {\n DescribeTopicsDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeTopicsDetectionJobResponse || (DescribeTopicsDetectionJobResponse = {}));\nvar DetectDominantLanguageRequest;\n(function (DetectDominantLanguageRequest) {\n DetectDominantLanguageRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(DetectDominantLanguageRequest || (DetectDominantLanguageRequest = {}));\nvar DetectDominantLanguageResponse;\n(function (DetectDominantLanguageResponse) {\n DetectDominantLanguageResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectDominantLanguageResponse || (DetectDominantLanguageResponse = {}));\nvar DetectEntitiesRequest;\n(function (DetectEntitiesRequest) {\n DetectEntitiesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(DetectEntitiesRequest || (DetectEntitiesRequest = {}));\nvar DetectEntitiesResponse;\n(function (DetectEntitiesResponse) {\n DetectEntitiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectEntitiesResponse || (DetectEntitiesResponse = {}));\nvar DetectKeyPhrasesRequest;\n(function (DetectKeyPhrasesRequest) {\n DetectKeyPhrasesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(DetectKeyPhrasesRequest || (DetectKeyPhrasesRequest = {}));\nvar DetectKeyPhrasesResponse;\n(function (DetectKeyPhrasesResponse) {\n DetectKeyPhrasesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectKeyPhrasesResponse || (DetectKeyPhrasesResponse = {}));\nvar DetectPiiEntitiesRequest;\n(function (DetectPiiEntitiesRequest) {\n DetectPiiEntitiesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectPiiEntitiesRequest || (DetectPiiEntitiesRequest = {}));\nvar PiiEntity;\n(function (PiiEntity) {\n PiiEntity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PiiEntity || (PiiEntity = {}));\nvar DetectPiiEntitiesResponse;\n(function (DetectPiiEntitiesResponse) {\n DetectPiiEntitiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectPiiEntitiesResponse || (DetectPiiEntitiesResponse = {}));\nvar DetectSentimentRequest;\n(function (DetectSentimentRequest) {\n DetectSentimentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(DetectSentimentRequest || (DetectSentimentRequest = {}));\nvar DetectSentimentResponse;\n(function (DetectSentimentResponse) {\n DetectSentimentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectSentimentResponse || (DetectSentimentResponse = {}));\nvar DetectSyntaxRequest;\n(function (DetectSyntaxRequest) {\n DetectSyntaxRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(DetectSyntaxRequest || (DetectSyntaxRequest = {}));\nvar DetectSyntaxResponse;\n(function (DetectSyntaxResponse) {\n DetectSyntaxResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectSyntaxResponse || (DetectSyntaxResponse = {}));\nvar InvalidFilterException;\n(function (InvalidFilterException) {\n InvalidFilterException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidFilterException || (InvalidFilterException = {}));\nvar DocumentClassificationJobFilter;\n(function (DocumentClassificationJobFilter) {\n DocumentClassificationJobFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentClassificationJobFilter || (DocumentClassificationJobFilter = {}));\nvar ListDocumentClassificationJobsRequest;\n(function (ListDocumentClassificationJobsRequest) {\n ListDocumentClassificationJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListDocumentClassificationJobsRequest || (ListDocumentClassificationJobsRequest = {}));\nvar ListDocumentClassificationJobsResponse;\n(function (ListDocumentClassificationJobsResponse) {\n ListDocumentClassificationJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListDocumentClassificationJobsResponse || (ListDocumentClassificationJobsResponse = {}));\nvar DocumentClassifierFilter;\n(function (DocumentClassifierFilter) {\n DocumentClassifierFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentClassifierFilter || (DocumentClassifierFilter = {}));\nvar ListDocumentClassifiersRequest;\n(function (ListDocumentClassifiersRequest) {\n ListDocumentClassifiersRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListDocumentClassifiersRequest || (ListDocumentClassifiersRequest = {}));\nvar ListDocumentClassifiersResponse;\n(function (ListDocumentClassifiersResponse) {\n ListDocumentClassifiersResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.DocumentClassifierPropertiesList && {\n DocumentClassifierPropertiesList: obj.DocumentClassifierPropertiesList.map(function (item) {\n return DocumentClassifierProperties.filterSensitiveLog(item);\n }),\n }))); };\n})(ListDocumentClassifiersResponse || (ListDocumentClassifiersResponse = {}));\nvar DominantLanguageDetectionJobFilter;\n(function (DominantLanguageDetectionJobFilter) {\n DominantLanguageDetectionJobFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DominantLanguageDetectionJobFilter || (DominantLanguageDetectionJobFilter = {}));\nvar ListDominantLanguageDetectionJobsRequest;\n(function (ListDominantLanguageDetectionJobsRequest) {\n ListDominantLanguageDetectionJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListDominantLanguageDetectionJobsRequest || (ListDominantLanguageDetectionJobsRequest = {}));\nvar ListDominantLanguageDetectionJobsResponse;\n(function (ListDominantLanguageDetectionJobsResponse) {\n ListDominantLanguageDetectionJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListDominantLanguageDetectionJobsResponse || (ListDominantLanguageDetectionJobsResponse = {}));\nvar EndpointFilter;\n(function (EndpointFilter) {\n EndpointFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointFilter || (EndpointFilter = {}));\nvar ListEndpointsRequest;\n(function (ListEndpointsRequest) {\n ListEndpointsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListEndpointsRequest || (ListEndpointsRequest = {}));\nvar ListEndpointsResponse;\n(function (ListEndpointsResponse) {\n ListEndpointsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListEndpointsResponse || (ListEndpointsResponse = {}));\nvar EntitiesDetectionJobFilter;\n(function (EntitiesDetectionJobFilter) {\n EntitiesDetectionJobFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntitiesDetectionJobFilter || (EntitiesDetectionJobFilter = {}));\nvar ListEntitiesDetectionJobsRequest;\n(function (ListEntitiesDetectionJobsRequest) {\n ListEntitiesDetectionJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListEntitiesDetectionJobsRequest || (ListEntitiesDetectionJobsRequest = {}));\nvar ListEntitiesDetectionJobsResponse;\n(function (ListEntitiesDetectionJobsResponse) {\n ListEntitiesDetectionJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListEntitiesDetectionJobsResponse || (ListEntitiesDetectionJobsResponse = {}));\nvar EntityRecognizerFilter;\n(function (EntityRecognizerFilter) {\n EntityRecognizerFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EntityRecognizerFilter || (EntityRecognizerFilter = {}));\nvar ListEntityRecognizersRequest;\n(function (ListEntityRecognizersRequest) {\n ListEntityRecognizersRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListEntityRecognizersRequest || (ListEntityRecognizersRequest = {}));\nvar ListEntityRecognizersResponse;\n(function (ListEntityRecognizersResponse) {\n ListEntityRecognizersResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.EntityRecognizerPropertiesList && {\n EntityRecognizerPropertiesList: obj.EntityRecognizerPropertiesList.map(function (item) {\n return EntityRecognizerProperties.filterSensitiveLog(item);\n }),\n }))); };\n})(ListEntityRecognizersResponse || (ListEntityRecognizersResponse = {}));\nvar EventsDetectionJobFilter;\n(function (EventsDetectionJobFilter) {\n EventsDetectionJobFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventsDetectionJobFilter || (EventsDetectionJobFilter = {}));\nvar ListEventsDetectionJobsRequest;\n(function (ListEventsDetectionJobsRequest) {\n ListEventsDetectionJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListEventsDetectionJobsRequest || (ListEventsDetectionJobsRequest = {}));\nvar ListEventsDetectionJobsResponse;\n(function (ListEventsDetectionJobsResponse) {\n ListEventsDetectionJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListEventsDetectionJobsResponse || (ListEventsDetectionJobsResponse = {}));\nvar KeyPhrasesDetectionJobFilter;\n(function (KeyPhrasesDetectionJobFilter) {\n KeyPhrasesDetectionJobFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KeyPhrasesDetectionJobFilter || (KeyPhrasesDetectionJobFilter = {}));\nvar ListKeyPhrasesDetectionJobsRequest;\n(function (ListKeyPhrasesDetectionJobsRequest) {\n ListKeyPhrasesDetectionJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListKeyPhrasesDetectionJobsRequest || (ListKeyPhrasesDetectionJobsRequest = {}));\nvar ListKeyPhrasesDetectionJobsResponse;\n(function (ListKeyPhrasesDetectionJobsResponse) {\n ListKeyPhrasesDetectionJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListKeyPhrasesDetectionJobsResponse || (ListKeyPhrasesDetectionJobsResponse = {}));\nvar PiiEntitiesDetectionJobFilter;\n(function (PiiEntitiesDetectionJobFilter) {\n PiiEntitiesDetectionJobFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PiiEntitiesDetectionJobFilter || (PiiEntitiesDetectionJobFilter = {}));\nvar ListPiiEntitiesDetectionJobsRequest;\n(function (ListPiiEntitiesDetectionJobsRequest) {\n ListPiiEntitiesDetectionJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListPiiEntitiesDetectionJobsRequest || (ListPiiEntitiesDetectionJobsRequest = {}));\nvar ListPiiEntitiesDetectionJobsResponse;\n(function (ListPiiEntitiesDetectionJobsResponse) {\n ListPiiEntitiesDetectionJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListPiiEntitiesDetectionJobsResponse || (ListPiiEntitiesDetectionJobsResponse = {}));\nvar SentimentDetectionJobFilter;\n(function (SentimentDetectionJobFilter) {\n SentimentDetectionJobFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SentimentDetectionJobFilter || (SentimentDetectionJobFilter = {}));\nvar ListSentimentDetectionJobsRequest;\n(function (ListSentimentDetectionJobsRequest) {\n ListSentimentDetectionJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListSentimentDetectionJobsRequest || (ListSentimentDetectionJobsRequest = {}));\nvar ListSentimentDetectionJobsResponse;\n(function (ListSentimentDetectionJobsResponse) {\n ListSentimentDetectionJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListSentimentDetectionJobsResponse || (ListSentimentDetectionJobsResponse = {}));\nvar ListTagsForResourceRequest;\n(function (ListTagsForResourceRequest) {\n ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));\nvar ListTagsForResourceResponse;\n(function (ListTagsForResourceResponse) {\n ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));\nvar TopicsDetectionJobFilter;\n(function (TopicsDetectionJobFilter) {\n TopicsDetectionJobFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TopicsDetectionJobFilter || (TopicsDetectionJobFilter = {}));\nvar ListTopicsDetectionJobsRequest;\n(function (ListTopicsDetectionJobsRequest) {\n ListTopicsDetectionJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTopicsDetectionJobsRequest || (ListTopicsDetectionJobsRequest = {}));\nvar ListTopicsDetectionJobsResponse;\n(function (ListTopicsDetectionJobsResponse) {\n ListTopicsDetectionJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTopicsDetectionJobsResponse || (ListTopicsDetectionJobsResponse = {}));\nvar StartDocumentClassificationJobRequest;\n(function (StartDocumentClassificationJobRequest) {\n StartDocumentClassificationJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDocumentClassificationJobRequest || (StartDocumentClassificationJobRequest = {}));\nvar StartDocumentClassificationJobResponse;\n(function (StartDocumentClassificationJobResponse) {\n StartDocumentClassificationJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDocumentClassificationJobResponse || (StartDocumentClassificationJobResponse = {}));\nvar StartDominantLanguageDetectionJobRequest;\n(function (StartDominantLanguageDetectionJobRequest) {\n StartDominantLanguageDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDominantLanguageDetectionJobRequest || (StartDominantLanguageDetectionJobRequest = {}));\nvar StartDominantLanguageDetectionJobResponse;\n(function (StartDominantLanguageDetectionJobResponse) {\n StartDominantLanguageDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDominantLanguageDetectionJobResponse || (StartDominantLanguageDetectionJobResponse = {}));\nvar StartEntitiesDetectionJobRequest;\n(function (StartEntitiesDetectionJobRequest) {\n StartEntitiesDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartEntitiesDetectionJobRequest || (StartEntitiesDetectionJobRequest = {}));\nvar StartEntitiesDetectionJobResponse;\n(function (StartEntitiesDetectionJobResponse) {\n StartEntitiesDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartEntitiesDetectionJobResponse || (StartEntitiesDetectionJobResponse = {}));\nvar StartEventsDetectionJobRequest;\n(function (StartEventsDetectionJobRequest) {\n StartEventsDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartEventsDetectionJobRequest || (StartEventsDetectionJobRequest = {}));\nvar StartEventsDetectionJobResponse;\n(function (StartEventsDetectionJobResponse) {\n StartEventsDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartEventsDetectionJobResponse || (StartEventsDetectionJobResponse = {}));\nvar StartKeyPhrasesDetectionJobRequest;\n(function (StartKeyPhrasesDetectionJobRequest) {\n StartKeyPhrasesDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartKeyPhrasesDetectionJobRequest || (StartKeyPhrasesDetectionJobRequest = {}));\nvar StartKeyPhrasesDetectionJobResponse;\n(function (StartKeyPhrasesDetectionJobResponse) {\n StartKeyPhrasesDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartKeyPhrasesDetectionJobResponse || (StartKeyPhrasesDetectionJobResponse = {}));\nvar StartPiiEntitiesDetectionJobRequest;\n(function (StartPiiEntitiesDetectionJobRequest) {\n StartPiiEntitiesDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartPiiEntitiesDetectionJobRequest || (StartPiiEntitiesDetectionJobRequest = {}));\nvar StartPiiEntitiesDetectionJobResponse;\n(function (StartPiiEntitiesDetectionJobResponse) {\n StartPiiEntitiesDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartPiiEntitiesDetectionJobResponse || (StartPiiEntitiesDetectionJobResponse = {}));\nvar StartSentimentDetectionJobRequest;\n(function (StartSentimentDetectionJobRequest) {\n StartSentimentDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartSentimentDetectionJobRequest || (StartSentimentDetectionJobRequest = {}));\nvar StartSentimentDetectionJobResponse;\n(function (StartSentimentDetectionJobResponse) {\n StartSentimentDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartSentimentDetectionJobResponse || (StartSentimentDetectionJobResponse = {}));\nvar StartTopicsDetectionJobRequest;\n(function (StartTopicsDetectionJobRequest) {\n StartTopicsDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartTopicsDetectionJobRequest || (StartTopicsDetectionJobRequest = {}));\nvar StartTopicsDetectionJobResponse;\n(function (StartTopicsDetectionJobResponse) {\n StartTopicsDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartTopicsDetectionJobResponse || (StartTopicsDetectionJobResponse = {}));\nvar StopDominantLanguageDetectionJobRequest;\n(function (StopDominantLanguageDetectionJobRequest) {\n StopDominantLanguageDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopDominantLanguageDetectionJobRequest || (StopDominantLanguageDetectionJobRequest = {}));\nvar StopDominantLanguageDetectionJobResponse;\n(function (StopDominantLanguageDetectionJobResponse) {\n StopDominantLanguageDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopDominantLanguageDetectionJobResponse || (StopDominantLanguageDetectionJobResponse = {}));\nvar StopEntitiesDetectionJobRequest;\n(function (StopEntitiesDetectionJobRequest) {\n StopEntitiesDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopEntitiesDetectionJobRequest || (StopEntitiesDetectionJobRequest = {}));\nvar StopEntitiesDetectionJobResponse;\n(function (StopEntitiesDetectionJobResponse) {\n StopEntitiesDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopEntitiesDetectionJobResponse || (StopEntitiesDetectionJobResponse = {}));\nvar StopEventsDetectionJobRequest;\n(function (StopEventsDetectionJobRequest) {\n StopEventsDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopEventsDetectionJobRequest || (StopEventsDetectionJobRequest = {}));\nvar StopEventsDetectionJobResponse;\n(function (StopEventsDetectionJobResponse) {\n StopEventsDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopEventsDetectionJobResponse || (StopEventsDetectionJobResponse = {}));\nvar StopKeyPhrasesDetectionJobRequest;\n(function (StopKeyPhrasesDetectionJobRequest) {\n StopKeyPhrasesDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopKeyPhrasesDetectionJobRequest || (StopKeyPhrasesDetectionJobRequest = {}));\nvar StopKeyPhrasesDetectionJobResponse;\n(function (StopKeyPhrasesDetectionJobResponse) {\n StopKeyPhrasesDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopKeyPhrasesDetectionJobResponse || (StopKeyPhrasesDetectionJobResponse = {}));\nvar StopPiiEntitiesDetectionJobRequest;\n(function (StopPiiEntitiesDetectionJobRequest) {\n StopPiiEntitiesDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopPiiEntitiesDetectionJobRequest || (StopPiiEntitiesDetectionJobRequest = {}));\nvar StopPiiEntitiesDetectionJobResponse;\n(function (StopPiiEntitiesDetectionJobResponse) {\n StopPiiEntitiesDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopPiiEntitiesDetectionJobResponse || (StopPiiEntitiesDetectionJobResponse = {}));\nvar StopSentimentDetectionJobRequest;\n(function (StopSentimentDetectionJobRequest) {\n StopSentimentDetectionJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopSentimentDetectionJobRequest || (StopSentimentDetectionJobRequest = {}));\nvar StopSentimentDetectionJobResponse;\n(function (StopSentimentDetectionJobResponse) {\n StopSentimentDetectionJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopSentimentDetectionJobResponse || (StopSentimentDetectionJobResponse = {}));\nvar StopTrainingDocumentClassifierRequest;\n(function (StopTrainingDocumentClassifierRequest) {\n StopTrainingDocumentClassifierRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopTrainingDocumentClassifierRequest || (StopTrainingDocumentClassifierRequest = {}));\nvar StopTrainingDocumentClassifierResponse;\n(function (StopTrainingDocumentClassifierResponse) {\n StopTrainingDocumentClassifierResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopTrainingDocumentClassifierResponse || (StopTrainingDocumentClassifierResponse = {}));\nvar StopTrainingEntityRecognizerRequest;\n(function (StopTrainingEntityRecognizerRequest) {\n StopTrainingEntityRecognizerRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopTrainingEntityRecognizerRequest || (StopTrainingEntityRecognizerRequest = {}));\nvar StopTrainingEntityRecognizerResponse;\n(function (StopTrainingEntityRecognizerResponse) {\n StopTrainingEntityRecognizerResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopTrainingEntityRecognizerResponse || (StopTrainingEntityRecognizerResponse = {}));\nvar ConcurrentModificationException;\n(function (ConcurrentModificationException) {\n ConcurrentModificationException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ConcurrentModificationException || (ConcurrentModificationException = {}));\nvar TagResourceRequest;\n(function (TagResourceRequest) {\n TagResourceRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TagResourceRequest || (TagResourceRequest = {}));\nvar TagResourceResponse;\n(function (TagResourceResponse) {\n TagResourceResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TagResourceResponse || (TagResourceResponse = {}));\nvar TooManyTagKeysException;\n(function (TooManyTagKeysException) {\n TooManyTagKeysException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TooManyTagKeysException || (TooManyTagKeysException = {}));\nvar UntagResourceRequest;\n(function (UntagResourceRequest) {\n UntagResourceRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UntagResourceRequest || (UntagResourceRequest = {}));\nvar UntagResourceResponse;\n(function (UntagResourceResponse) {\n UntagResourceResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UntagResourceResponse || (UntagResourceResponse = {}));\nvar UpdateEndpointRequest;\n(function (UpdateEndpointRequest) {\n UpdateEndpointRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEndpointRequest || (UpdateEndpointRequest = {}));\nvar UpdateEndpointResponse;\n(function (UpdateEndpointResponse) {\n UpdateEndpointResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEndpointResponse || (UpdateEndpointResponse = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/package.json": /*!**********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/package.json ***! \**********************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-comprehend\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Comprehend Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\",\\\"uuid\\\":\\\"^3.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"@types/uuid\\\":\\\"^3.0.0\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-comprehend\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-comprehend\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/Interfaces.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/Interfaces.js ***! \**********************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=Interfaces.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/Interfaces.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDocumentClassificationJobsPaginator.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDocumentClassificationJobsPaginator.js ***! \***************************************************************************************************************/ /*! exports provided: paginateListDocumentClassificationJobs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListDocumentClassificationJobs\", function() { return paginateListDocumentClassificationJobs; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_ListDocumentClassificationJobsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListDocumentClassificationJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassificationJobsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListDocumentClassificationJobsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListDocumentClassificationJobsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listDocumentClassificationJobs.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListDocumentClassificationJobs(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListDocumentClassificationJobs_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__[\"ComprehendClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Comprehend | ComprehendClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListDocumentClassificationJobsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDocumentClassificationJobsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDocumentClassifiersPaginator.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDocumentClassifiersPaginator.js ***! \********************************************************************************************************/ /*! exports provided: paginateListDocumentClassifiers */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListDocumentClassifiers\", function() { return paginateListDocumentClassifiers; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_ListDocumentClassifiersCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListDocumentClassifiersCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDocumentClassifiersCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListDocumentClassifiersCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListDocumentClassifiersCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listDocumentClassifiers.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListDocumentClassifiers(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListDocumentClassifiers_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__[\"ComprehendClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Comprehend | ComprehendClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListDocumentClassifiersPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDocumentClassifiersPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDominantLanguageDetectionJobsPaginator.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDominantLanguageDetectionJobsPaginator.js ***! \******************************************************************************************************************/ /*! exports provided: paginateListDominantLanguageDetectionJobs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListDominantLanguageDetectionJobs\", function() { return paginateListDominantLanguageDetectionJobs; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_ListDominantLanguageDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListDominantLanguageDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListDominantLanguageDetectionJobsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListDominantLanguageDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListDominantLanguageDetectionJobsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listDominantLanguageDetectionJobs.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListDominantLanguageDetectionJobs(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListDominantLanguageDetectionJobs_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__[\"ComprehendClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Comprehend | ComprehendClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListDominantLanguageDetectionJobsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListDominantLanguageDetectionJobsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEntitiesDetectionJobsPaginator.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEntitiesDetectionJobsPaginator.js ***! \**********************************************************************************************************/ /*! exports provided: paginateListEntitiesDetectionJobs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListEntitiesDetectionJobs\", function() { return paginateListEntitiesDetectionJobs; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_ListEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListEntitiesDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntitiesDetectionJobsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListEntitiesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListEntitiesDetectionJobsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listEntitiesDetectionJobs.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListEntitiesDetectionJobs(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListEntitiesDetectionJobs_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__[\"ComprehendClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Comprehend | ComprehendClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListEntitiesDetectionJobsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEntitiesDetectionJobsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEntityRecognizersPaginator.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEntityRecognizersPaginator.js ***! \******************************************************************************************************/ /*! exports provided: paginateListEntityRecognizers */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListEntityRecognizers\", function() { return paginateListEntityRecognizers; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_ListEntityRecognizersCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListEntityRecognizersCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEntityRecognizersCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListEntityRecognizersCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListEntityRecognizersCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listEntityRecognizers.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListEntityRecognizers(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListEntityRecognizers_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__[\"ComprehendClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Comprehend | ComprehendClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListEntityRecognizersPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEntityRecognizersPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEventsDetectionJobsPaginator.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEventsDetectionJobsPaginator.js ***! \********************************************************************************************************/ /*! exports provided: paginateListEventsDetectionJobs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListEventsDetectionJobs\", function() { return paginateListEventsDetectionJobs; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_ListEventsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListEventsDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListEventsDetectionJobsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListEventsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListEventsDetectionJobsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listEventsDetectionJobs.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListEventsDetectionJobs(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListEventsDetectionJobs_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__[\"ComprehendClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Comprehend | ComprehendClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListEventsDetectionJobsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListEventsDetectionJobsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListKeyPhrasesDetectionJobsPaginator.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListKeyPhrasesDetectionJobsPaginator.js ***! \************************************************************************************************************/ /*! exports provided: paginateListKeyPhrasesDetectionJobs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListKeyPhrasesDetectionJobs\", function() { return paginateListKeyPhrasesDetectionJobs; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_ListKeyPhrasesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListKeyPhrasesDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListKeyPhrasesDetectionJobsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListKeyPhrasesDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListKeyPhrasesDetectionJobsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listKeyPhrasesDetectionJobs.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListKeyPhrasesDetectionJobs(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListKeyPhrasesDetectionJobs_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__[\"ComprehendClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Comprehend | ComprehendClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListKeyPhrasesDetectionJobsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListKeyPhrasesDetectionJobsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListSentimentDetectionJobsPaginator.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListSentimentDetectionJobsPaginator.js ***! \***********************************************************************************************************/ /*! exports provided: paginateListSentimentDetectionJobs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListSentimentDetectionJobs\", function() { return paginateListSentimentDetectionJobs; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_ListSentimentDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListSentimentDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListSentimentDetectionJobsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListSentimentDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListSentimentDetectionJobsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listSentimentDetectionJobs.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListSentimentDetectionJobs(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListSentimentDetectionJobs_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__[\"ComprehendClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Comprehend | ComprehendClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListSentimentDetectionJobsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListSentimentDetectionJobsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListTopicsDetectionJobsPaginator.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListTopicsDetectionJobsPaginator.js ***! \********************************************************************************************************/ /*! exports provided: paginateListTopicsDetectionJobs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListTopicsDetectionJobs\", function() { return paginateListTopicsDetectionJobs; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Comprehend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Comprehend */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/Comprehend.js\");\n/* harmony import */ var _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ComprehendClient */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/ComprehendClient.js\");\n/* harmony import */ var _commands_ListTopicsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListTopicsDetectionJobsCommand */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/commands/ListTopicsDetectionJobsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListTopicsDetectionJobsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListTopicsDetectionJobsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listTopicsDetectionJobs.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListTopicsDetectionJobs(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListTopicsDetectionJobs_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Comprehend__WEBPACK_IMPORTED_MODULE_1__[\"Comprehend\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _ComprehendClient__WEBPACK_IMPORTED_MODULE_2__[\"ComprehendClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Comprehend | ComprehendClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListTopicsDetectionJobsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/pagination/ListTopicsDetectionJobsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js ***! \**********************************************************************************/ /*! exports provided: serializeAws_json1_1BatchDetectDominantLanguageCommand, serializeAws_json1_1BatchDetectEntitiesCommand, serializeAws_json1_1BatchDetectKeyPhrasesCommand, serializeAws_json1_1BatchDetectSentimentCommand, serializeAws_json1_1BatchDetectSyntaxCommand, serializeAws_json1_1ClassifyDocumentCommand, serializeAws_json1_1CreateDocumentClassifierCommand, serializeAws_json1_1CreateEndpointCommand, serializeAws_json1_1CreateEntityRecognizerCommand, serializeAws_json1_1DeleteDocumentClassifierCommand, serializeAws_json1_1DeleteEndpointCommand, serializeAws_json1_1DeleteEntityRecognizerCommand, serializeAws_json1_1DescribeDocumentClassificationJobCommand, serializeAws_json1_1DescribeDocumentClassifierCommand, serializeAws_json1_1DescribeDominantLanguageDetectionJobCommand, serializeAws_json1_1DescribeEndpointCommand, serializeAws_json1_1DescribeEntitiesDetectionJobCommand, serializeAws_json1_1DescribeEntityRecognizerCommand, serializeAws_json1_1DescribeEventsDetectionJobCommand, serializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand, serializeAws_json1_1DescribePiiEntitiesDetectionJobCommand, serializeAws_json1_1DescribeSentimentDetectionJobCommand, serializeAws_json1_1DescribeTopicsDetectionJobCommand, serializeAws_json1_1DetectDominantLanguageCommand, serializeAws_json1_1DetectEntitiesCommand, serializeAws_json1_1DetectKeyPhrasesCommand, serializeAws_json1_1DetectPiiEntitiesCommand, serializeAws_json1_1DetectSentimentCommand, serializeAws_json1_1DetectSyntaxCommand, serializeAws_json1_1ListDocumentClassificationJobsCommand, serializeAws_json1_1ListDocumentClassifiersCommand, serializeAws_json1_1ListDominantLanguageDetectionJobsCommand, serializeAws_json1_1ListEndpointsCommand, serializeAws_json1_1ListEntitiesDetectionJobsCommand, serializeAws_json1_1ListEntityRecognizersCommand, serializeAws_json1_1ListEventsDetectionJobsCommand, serializeAws_json1_1ListKeyPhrasesDetectionJobsCommand, serializeAws_json1_1ListPiiEntitiesDetectionJobsCommand, serializeAws_json1_1ListSentimentDetectionJobsCommand, serializeAws_json1_1ListTagsForResourceCommand, serializeAws_json1_1ListTopicsDetectionJobsCommand, serializeAws_json1_1StartDocumentClassificationJobCommand, serializeAws_json1_1StartDominantLanguageDetectionJobCommand, serializeAws_json1_1StartEntitiesDetectionJobCommand, serializeAws_json1_1StartEventsDetectionJobCommand, serializeAws_json1_1StartKeyPhrasesDetectionJobCommand, serializeAws_json1_1StartPiiEntitiesDetectionJobCommand, serializeAws_json1_1StartSentimentDetectionJobCommand, serializeAws_json1_1StartTopicsDetectionJobCommand, serializeAws_json1_1StopDominantLanguageDetectionJobCommand, serializeAws_json1_1StopEntitiesDetectionJobCommand, serializeAws_json1_1StopEventsDetectionJobCommand, serializeAws_json1_1StopKeyPhrasesDetectionJobCommand, serializeAws_json1_1StopPiiEntitiesDetectionJobCommand, serializeAws_json1_1StopSentimentDetectionJobCommand, serializeAws_json1_1StopTrainingDocumentClassifierCommand, serializeAws_json1_1StopTrainingEntityRecognizerCommand, serializeAws_json1_1TagResourceCommand, serializeAws_json1_1UntagResourceCommand, serializeAws_json1_1UpdateEndpointCommand, deserializeAws_json1_1BatchDetectDominantLanguageCommand, deserializeAws_json1_1BatchDetectEntitiesCommand, deserializeAws_json1_1BatchDetectKeyPhrasesCommand, deserializeAws_json1_1BatchDetectSentimentCommand, deserializeAws_json1_1BatchDetectSyntaxCommand, deserializeAws_json1_1ClassifyDocumentCommand, deserializeAws_json1_1CreateDocumentClassifierCommand, deserializeAws_json1_1CreateEndpointCommand, deserializeAws_json1_1CreateEntityRecognizerCommand, deserializeAws_json1_1DeleteDocumentClassifierCommand, deserializeAws_json1_1DeleteEndpointCommand, deserializeAws_json1_1DeleteEntityRecognizerCommand, deserializeAws_json1_1DescribeDocumentClassificationJobCommand, deserializeAws_json1_1DescribeDocumentClassifierCommand, deserializeAws_json1_1DescribeDominantLanguageDetectionJobCommand, deserializeAws_json1_1DescribeEndpointCommand, deserializeAws_json1_1DescribeEntitiesDetectionJobCommand, deserializeAws_json1_1DescribeEntityRecognizerCommand, deserializeAws_json1_1DescribeEventsDetectionJobCommand, deserializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand, deserializeAws_json1_1DescribePiiEntitiesDetectionJobCommand, deserializeAws_json1_1DescribeSentimentDetectionJobCommand, deserializeAws_json1_1DescribeTopicsDetectionJobCommand, deserializeAws_json1_1DetectDominantLanguageCommand, deserializeAws_json1_1DetectEntitiesCommand, deserializeAws_json1_1DetectKeyPhrasesCommand, deserializeAws_json1_1DetectPiiEntitiesCommand, deserializeAws_json1_1DetectSentimentCommand, deserializeAws_json1_1DetectSyntaxCommand, deserializeAws_json1_1ListDocumentClassificationJobsCommand, deserializeAws_json1_1ListDocumentClassifiersCommand, deserializeAws_json1_1ListDominantLanguageDetectionJobsCommand, deserializeAws_json1_1ListEndpointsCommand, deserializeAws_json1_1ListEntitiesDetectionJobsCommand, deserializeAws_json1_1ListEntityRecognizersCommand, deserializeAws_json1_1ListEventsDetectionJobsCommand, deserializeAws_json1_1ListKeyPhrasesDetectionJobsCommand, deserializeAws_json1_1ListPiiEntitiesDetectionJobsCommand, deserializeAws_json1_1ListSentimentDetectionJobsCommand, deserializeAws_json1_1ListTagsForResourceCommand, deserializeAws_json1_1ListTopicsDetectionJobsCommand, deserializeAws_json1_1StartDocumentClassificationJobCommand, deserializeAws_json1_1StartDominantLanguageDetectionJobCommand, deserializeAws_json1_1StartEntitiesDetectionJobCommand, deserializeAws_json1_1StartEventsDetectionJobCommand, deserializeAws_json1_1StartKeyPhrasesDetectionJobCommand, deserializeAws_json1_1StartPiiEntitiesDetectionJobCommand, deserializeAws_json1_1StartSentimentDetectionJobCommand, deserializeAws_json1_1StartTopicsDetectionJobCommand, deserializeAws_json1_1StopDominantLanguageDetectionJobCommand, deserializeAws_json1_1StopEntitiesDetectionJobCommand, deserializeAws_json1_1StopEventsDetectionJobCommand, deserializeAws_json1_1StopKeyPhrasesDetectionJobCommand, deserializeAws_json1_1StopPiiEntitiesDetectionJobCommand, deserializeAws_json1_1StopSentimentDetectionJobCommand, deserializeAws_json1_1StopTrainingDocumentClassifierCommand, deserializeAws_json1_1StopTrainingEntityRecognizerCommand, deserializeAws_json1_1TagResourceCommand, deserializeAws_json1_1UntagResourceCommand, deserializeAws_json1_1UpdateEndpointCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1BatchDetectDominantLanguageCommand\", function() { return serializeAws_json1_1BatchDetectDominantLanguageCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1BatchDetectEntitiesCommand\", function() { return serializeAws_json1_1BatchDetectEntitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1BatchDetectKeyPhrasesCommand\", function() { return serializeAws_json1_1BatchDetectKeyPhrasesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1BatchDetectSentimentCommand\", function() { return serializeAws_json1_1BatchDetectSentimentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1BatchDetectSyntaxCommand\", function() { return serializeAws_json1_1BatchDetectSyntaxCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ClassifyDocumentCommand\", function() { return serializeAws_json1_1ClassifyDocumentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateDocumentClassifierCommand\", function() { return serializeAws_json1_1CreateDocumentClassifierCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateEndpointCommand\", function() { return serializeAws_json1_1CreateEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateEntityRecognizerCommand\", function() { return serializeAws_json1_1CreateEntityRecognizerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteDocumentClassifierCommand\", function() { return serializeAws_json1_1DeleteDocumentClassifierCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteEndpointCommand\", function() { return serializeAws_json1_1DeleteEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteEntityRecognizerCommand\", function() { return serializeAws_json1_1DeleteEntityRecognizerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeDocumentClassificationJobCommand\", function() { return serializeAws_json1_1DescribeDocumentClassificationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeDocumentClassifierCommand\", function() { return serializeAws_json1_1DescribeDocumentClassifierCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeDominantLanguageDetectionJobCommand\", function() { return serializeAws_json1_1DescribeDominantLanguageDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeEndpointCommand\", function() { return serializeAws_json1_1DescribeEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeEntitiesDetectionJobCommand\", function() { return serializeAws_json1_1DescribeEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeEntityRecognizerCommand\", function() { return serializeAws_json1_1DescribeEntityRecognizerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeEventsDetectionJobCommand\", function() { return serializeAws_json1_1DescribeEventsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand\", function() { return serializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribePiiEntitiesDetectionJobCommand\", function() { return serializeAws_json1_1DescribePiiEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeSentimentDetectionJobCommand\", function() { return serializeAws_json1_1DescribeSentimentDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeTopicsDetectionJobCommand\", function() { return serializeAws_json1_1DescribeTopicsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectDominantLanguageCommand\", function() { return serializeAws_json1_1DetectDominantLanguageCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectEntitiesCommand\", function() { return serializeAws_json1_1DetectEntitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectKeyPhrasesCommand\", function() { return serializeAws_json1_1DetectKeyPhrasesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectPiiEntitiesCommand\", function() { return serializeAws_json1_1DetectPiiEntitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectSentimentCommand\", function() { return serializeAws_json1_1DetectSentimentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectSyntaxCommand\", function() { return serializeAws_json1_1DetectSyntaxCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListDocumentClassificationJobsCommand\", function() { return serializeAws_json1_1ListDocumentClassificationJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListDocumentClassifiersCommand\", function() { return serializeAws_json1_1ListDocumentClassifiersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListDominantLanguageDetectionJobsCommand\", function() { return serializeAws_json1_1ListDominantLanguageDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListEndpointsCommand\", function() { return serializeAws_json1_1ListEndpointsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListEntitiesDetectionJobsCommand\", function() { return serializeAws_json1_1ListEntitiesDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListEntityRecognizersCommand\", function() { return serializeAws_json1_1ListEntityRecognizersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListEventsDetectionJobsCommand\", function() { return serializeAws_json1_1ListEventsDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListKeyPhrasesDetectionJobsCommand\", function() { return serializeAws_json1_1ListKeyPhrasesDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListPiiEntitiesDetectionJobsCommand\", function() { return serializeAws_json1_1ListPiiEntitiesDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListSentimentDetectionJobsCommand\", function() { return serializeAws_json1_1ListSentimentDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListTagsForResourceCommand\", function() { return serializeAws_json1_1ListTagsForResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListTopicsDetectionJobsCommand\", function() { return serializeAws_json1_1ListTopicsDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartDocumentClassificationJobCommand\", function() { return serializeAws_json1_1StartDocumentClassificationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartDominantLanguageDetectionJobCommand\", function() { return serializeAws_json1_1StartDominantLanguageDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartEntitiesDetectionJobCommand\", function() { return serializeAws_json1_1StartEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartEventsDetectionJobCommand\", function() { return serializeAws_json1_1StartEventsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartKeyPhrasesDetectionJobCommand\", function() { return serializeAws_json1_1StartKeyPhrasesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartPiiEntitiesDetectionJobCommand\", function() { return serializeAws_json1_1StartPiiEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartSentimentDetectionJobCommand\", function() { return serializeAws_json1_1StartSentimentDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartTopicsDetectionJobCommand\", function() { return serializeAws_json1_1StartTopicsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopDominantLanguageDetectionJobCommand\", function() { return serializeAws_json1_1StopDominantLanguageDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopEntitiesDetectionJobCommand\", function() { return serializeAws_json1_1StopEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopEventsDetectionJobCommand\", function() { return serializeAws_json1_1StopEventsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopKeyPhrasesDetectionJobCommand\", function() { return serializeAws_json1_1StopKeyPhrasesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopPiiEntitiesDetectionJobCommand\", function() { return serializeAws_json1_1StopPiiEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopSentimentDetectionJobCommand\", function() { return serializeAws_json1_1StopSentimentDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopTrainingDocumentClassifierCommand\", function() { return serializeAws_json1_1StopTrainingDocumentClassifierCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopTrainingEntityRecognizerCommand\", function() { return serializeAws_json1_1StopTrainingEntityRecognizerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1TagResourceCommand\", function() { return serializeAws_json1_1TagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UntagResourceCommand\", function() { return serializeAws_json1_1UntagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UpdateEndpointCommand\", function() { return serializeAws_json1_1UpdateEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1BatchDetectDominantLanguageCommand\", function() { return deserializeAws_json1_1BatchDetectDominantLanguageCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1BatchDetectEntitiesCommand\", function() { return deserializeAws_json1_1BatchDetectEntitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1BatchDetectKeyPhrasesCommand\", function() { return deserializeAws_json1_1BatchDetectKeyPhrasesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1BatchDetectSentimentCommand\", function() { return deserializeAws_json1_1BatchDetectSentimentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1BatchDetectSyntaxCommand\", function() { return deserializeAws_json1_1BatchDetectSyntaxCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ClassifyDocumentCommand\", function() { return deserializeAws_json1_1ClassifyDocumentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateDocumentClassifierCommand\", function() { return deserializeAws_json1_1CreateDocumentClassifierCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateEndpointCommand\", function() { return deserializeAws_json1_1CreateEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateEntityRecognizerCommand\", function() { return deserializeAws_json1_1CreateEntityRecognizerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteDocumentClassifierCommand\", function() { return deserializeAws_json1_1DeleteDocumentClassifierCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteEndpointCommand\", function() { return deserializeAws_json1_1DeleteEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteEntityRecognizerCommand\", function() { return deserializeAws_json1_1DeleteEntityRecognizerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeDocumentClassificationJobCommand\", function() { return deserializeAws_json1_1DescribeDocumentClassificationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeDocumentClassifierCommand\", function() { return deserializeAws_json1_1DescribeDocumentClassifierCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeDominantLanguageDetectionJobCommand\", function() { return deserializeAws_json1_1DescribeDominantLanguageDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeEndpointCommand\", function() { return deserializeAws_json1_1DescribeEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeEntitiesDetectionJobCommand\", function() { return deserializeAws_json1_1DescribeEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeEntityRecognizerCommand\", function() { return deserializeAws_json1_1DescribeEntityRecognizerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeEventsDetectionJobCommand\", function() { return deserializeAws_json1_1DescribeEventsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand\", function() { return deserializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribePiiEntitiesDetectionJobCommand\", function() { return deserializeAws_json1_1DescribePiiEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeSentimentDetectionJobCommand\", function() { return deserializeAws_json1_1DescribeSentimentDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeTopicsDetectionJobCommand\", function() { return deserializeAws_json1_1DescribeTopicsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectDominantLanguageCommand\", function() { return deserializeAws_json1_1DetectDominantLanguageCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectEntitiesCommand\", function() { return deserializeAws_json1_1DetectEntitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectKeyPhrasesCommand\", function() { return deserializeAws_json1_1DetectKeyPhrasesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectPiiEntitiesCommand\", function() { return deserializeAws_json1_1DetectPiiEntitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectSentimentCommand\", function() { return deserializeAws_json1_1DetectSentimentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectSyntaxCommand\", function() { return deserializeAws_json1_1DetectSyntaxCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListDocumentClassificationJobsCommand\", function() { return deserializeAws_json1_1ListDocumentClassificationJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListDocumentClassifiersCommand\", function() { return deserializeAws_json1_1ListDocumentClassifiersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListDominantLanguageDetectionJobsCommand\", function() { return deserializeAws_json1_1ListDominantLanguageDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListEndpointsCommand\", function() { return deserializeAws_json1_1ListEndpointsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListEntitiesDetectionJobsCommand\", function() { return deserializeAws_json1_1ListEntitiesDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListEntityRecognizersCommand\", function() { return deserializeAws_json1_1ListEntityRecognizersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListEventsDetectionJobsCommand\", function() { return deserializeAws_json1_1ListEventsDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListKeyPhrasesDetectionJobsCommand\", function() { return deserializeAws_json1_1ListKeyPhrasesDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListPiiEntitiesDetectionJobsCommand\", function() { return deserializeAws_json1_1ListPiiEntitiesDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListSentimentDetectionJobsCommand\", function() { return deserializeAws_json1_1ListSentimentDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListTagsForResourceCommand\", function() { return deserializeAws_json1_1ListTagsForResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListTopicsDetectionJobsCommand\", function() { return deserializeAws_json1_1ListTopicsDetectionJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartDocumentClassificationJobCommand\", function() { return deserializeAws_json1_1StartDocumentClassificationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartDominantLanguageDetectionJobCommand\", function() { return deserializeAws_json1_1StartDominantLanguageDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartEntitiesDetectionJobCommand\", function() { return deserializeAws_json1_1StartEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartEventsDetectionJobCommand\", function() { return deserializeAws_json1_1StartEventsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartKeyPhrasesDetectionJobCommand\", function() { return deserializeAws_json1_1StartKeyPhrasesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartPiiEntitiesDetectionJobCommand\", function() { return deserializeAws_json1_1StartPiiEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartSentimentDetectionJobCommand\", function() { return deserializeAws_json1_1StartSentimentDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartTopicsDetectionJobCommand\", function() { return deserializeAws_json1_1StartTopicsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopDominantLanguageDetectionJobCommand\", function() { return deserializeAws_json1_1StopDominantLanguageDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopEntitiesDetectionJobCommand\", function() { return deserializeAws_json1_1StopEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopEventsDetectionJobCommand\", function() { return deserializeAws_json1_1StopEventsDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopKeyPhrasesDetectionJobCommand\", function() { return deserializeAws_json1_1StopKeyPhrasesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopPiiEntitiesDetectionJobCommand\", function() { return deserializeAws_json1_1StopPiiEntitiesDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopSentimentDetectionJobCommand\", function() { return deserializeAws_json1_1StopSentimentDetectionJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopTrainingDocumentClassifierCommand\", function() { return deserializeAws_json1_1StopTrainingDocumentClassifierCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopTrainingEntityRecognizerCommand\", function() { return deserializeAws_json1_1StopTrainingEntityRecognizerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1TagResourceCommand\", function() { return deserializeAws_json1_1TagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UntagResourceCommand\", function() { return deserializeAws_json1_1UntagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UpdateEndpointCommand\", function() { return deserializeAws_json1_1UpdateEndpointCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! uuid */ \"./node_modules/uuid/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_2__);\n\n\n\nvar serializeAws_json1_1BatchDetectDominantLanguageCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.BatchDetectDominantLanguage\",\n };\n body = JSON.stringify(serializeAws_json1_1BatchDetectDominantLanguageRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1BatchDetectEntitiesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.BatchDetectEntities\",\n };\n body = JSON.stringify(serializeAws_json1_1BatchDetectEntitiesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1BatchDetectKeyPhrasesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.BatchDetectKeyPhrases\",\n };\n body = JSON.stringify(serializeAws_json1_1BatchDetectKeyPhrasesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1BatchDetectSentimentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.BatchDetectSentiment\",\n };\n body = JSON.stringify(serializeAws_json1_1BatchDetectSentimentRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1BatchDetectSyntaxCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.BatchDetectSyntax\",\n };\n body = JSON.stringify(serializeAws_json1_1BatchDetectSyntaxRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ClassifyDocumentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ClassifyDocument\",\n };\n body = JSON.stringify(serializeAws_json1_1ClassifyDocumentRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateDocumentClassifierCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.CreateDocumentClassifier\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateDocumentClassifierRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateEndpointCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.CreateEndpoint\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateEndpointRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateEntityRecognizerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.CreateEntityRecognizer\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateEntityRecognizerRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteDocumentClassifierCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DeleteDocumentClassifier\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteDocumentClassifierRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteEndpointCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DeleteEndpoint\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteEndpointRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteEntityRecognizerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DeleteEntityRecognizer\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteEntityRecognizerRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeDocumentClassificationJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeDocumentClassificationJob\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeDocumentClassificationJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeDocumentClassifierCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeDocumentClassifier\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeDocumentClassifierRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeDominantLanguageDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeDominantLanguageDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeDominantLanguageDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeEndpointCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeEndpoint\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeEndpointRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeEntitiesDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeEntitiesDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeEntitiesDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeEntityRecognizerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeEntityRecognizer\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeEntityRecognizerRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeEventsDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeEventsDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeEventsDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeKeyPhrasesDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeKeyPhrasesDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribePiiEntitiesDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribePiiEntitiesDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribePiiEntitiesDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeSentimentDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeSentimentDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeSentimentDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeTopicsDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DescribeTopicsDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeTopicsDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectDominantLanguageCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DetectDominantLanguage\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectDominantLanguageRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectEntitiesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DetectEntities\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectEntitiesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectKeyPhrasesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DetectKeyPhrases\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectKeyPhrasesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectPiiEntitiesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DetectPiiEntities\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectPiiEntitiesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectSentimentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DetectSentiment\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectSentimentRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectSyntaxCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.DetectSyntax\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectSyntaxRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListDocumentClassificationJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListDocumentClassificationJobs\",\n };\n body = JSON.stringify(serializeAws_json1_1ListDocumentClassificationJobsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListDocumentClassifiersCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListDocumentClassifiers\",\n };\n body = JSON.stringify(serializeAws_json1_1ListDocumentClassifiersRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListDominantLanguageDetectionJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListDominantLanguageDetectionJobs\",\n };\n body = JSON.stringify(serializeAws_json1_1ListDominantLanguageDetectionJobsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListEndpointsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListEndpoints\",\n };\n body = JSON.stringify(serializeAws_json1_1ListEndpointsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListEntitiesDetectionJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListEntitiesDetectionJobs\",\n };\n body = JSON.stringify(serializeAws_json1_1ListEntitiesDetectionJobsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListEntityRecognizersCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListEntityRecognizers\",\n };\n body = JSON.stringify(serializeAws_json1_1ListEntityRecognizersRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListEventsDetectionJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListEventsDetectionJobs\",\n };\n body = JSON.stringify(serializeAws_json1_1ListEventsDetectionJobsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListKeyPhrasesDetectionJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListKeyPhrasesDetectionJobs\",\n };\n body = JSON.stringify(serializeAws_json1_1ListKeyPhrasesDetectionJobsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListPiiEntitiesDetectionJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListPiiEntitiesDetectionJobs\",\n };\n body = JSON.stringify(serializeAws_json1_1ListPiiEntitiesDetectionJobsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListSentimentDetectionJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListSentimentDetectionJobs\",\n };\n body = JSON.stringify(serializeAws_json1_1ListSentimentDetectionJobsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListTagsForResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListTagsForResource\",\n };\n body = JSON.stringify(serializeAws_json1_1ListTagsForResourceRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListTopicsDetectionJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.ListTopicsDetectionJobs\",\n };\n body = JSON.stringify(serializeAws_json1_1ListTopicsDetectionJobsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartDocumentClassificationJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StartDocumentClassificationJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StartDocumentClassificationJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartDominantLanguageDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StartDominantLanguageDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StartDominantLanguageDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartEntitiesDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StartEntitiesDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StartEntitiesDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartEventsDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StartEventsDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StartEventsDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartKeyPhrasesDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StartKeyPhrasesDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StartKeyPhrasesDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartPiiEntitiesDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StartPiiEntitiesDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StartPiiEntitiesDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartSentimentDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StartSentimentDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StartSentimentDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartTopicsDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StartTopicsDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StartTopicsDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopDominantLanguageDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StopDominantLanguageDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StopDominantLanguageDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopEntitiesDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StopEntitiesDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StopEntitiesDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopEventsDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StopEventsDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StopEventsDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopKeyPhrasesDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StopKeyPhrasesDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StopKeyPhrasesDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopPiiEntitiesDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StopPiiEntitiesDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StopPiiEntitiesDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopSentimentDetectionJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StopSentimentDetectionJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StopSentimentDetectionJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopTrainingDocumentClassifierCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StopTrainingDocumentClassifier\",\n };\n body = JSON.stringify(serializeAws_json1_1StopTrainingDocumentClassifierRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopTrainingEntityRecognizerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.StopTrainingEntityRecognizer\",\n };\n body = JSON.stringify(serializeAws_json1_1StopTrainingEntityRecognizerRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1TagResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.TagResource\",\n };\n body = JSON.stringify(serializeAws_json1_1TagResourceRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UntagResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.UntagResource\",\n };\n body = JSON.stringify(serializeAws_json1_1UntagResourceRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UpdateEndpointCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Comprehend_20171127.UpdateEndpoint\",\n };\n body = JSON.stringify(serializeAws_json1_1UpdateEndpointRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar deserializeAws_json1_1BatchDetectDominantLanguageCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1BatchDetectDominantLanguageCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1BatchDetectDominantLanguageResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchDetectDominantLanguageCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1BatchSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchDetectEntitiesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1BatchDetectEntitiesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1BatchDetectEntitiesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchDetectEntitiesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1BatchSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchDetectKeyPhrasesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1BatchDetectKeyPhrasesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1BatchDetectKeyPhrasesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchDetectKeyPhrasesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1BatchSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchDetectSentimentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1BatchDetectSentimentCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1BatchDetectSentimentResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchDetectSentimentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1BatchSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchDetectSyntaxCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1BatchDetectSyntaxCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1BatchDetectSyntaxResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchDetectSyntaxCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#BatchSizeLimitExceededException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1BatchSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ClassifyDocumentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ClassifyDocumentCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ClassifyDocumentResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ClassifyDocumentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceUnavailableException\": return [3 /*break*/, 6];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateDocumentClassifierCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateDocumentClassifierCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateDocumentClassifierResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateDocumentClassifierCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"ResourceInUseException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceInUseException\": return [3 /*break*/, 8];\n case \"ResourceLimitExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#ResourceLimitExceededException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 12];\n case \"TooManyTagsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.comprehend#TooManyTagsException\": return [3 /*break*/, 14];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 16];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceLimitExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyTagsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateEndpointCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateEndpointCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateEndpointResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateEndpointCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceLimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceLimitExceededException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"ResourceUnavailableException\": return [3 /*break*/, 12];\n case \"com.amazonaws.comprehend#ResourceUnavailableException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 14];\n case \"TooManyTagsException\": return [3 /*break*/, 16];\n case \"com.amazonaws.comprehend#TooManyTagsException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceLimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceUnavailableExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyTagsExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateEntityRecognizerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateEntityRecognizerCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateEntityRecognizerResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateEntityRecognizerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"ResourceInUseException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceInUseException\": return [3 /*break*/, 8];\n case \"ResourceLimitExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#ResourceLimitExceededException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 12];\n case \"TooManyTagsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.comprehend#TooManyTagsException\": return [3 /*break*/, 14];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 16];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceLimitExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyTagsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteDocumentClassifierCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteDocumentClassifierCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteDocumentClassifierResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteDocumentClassifierCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"ResourceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#ResourceUnavailableException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteEndpointCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteEndpointCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteEndpointResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteEndpointCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteEntityRecognizerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteEntityRecognizerCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteEntityRecognizerResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteEntityRecognizerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"ResourceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#ResourceUnavailableException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDocumentClassificationJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeDocumentClassificationJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeDocumentClassificationJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDocumentClassificationJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDocumentClassifierCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeDocumentClassifierCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeDocumentClassifierResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDocumentClassifierCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDominantLanguageDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeDominantLanguageDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeDominantLanguageDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDominantLanguageDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeEndpointCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeEndpointCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeEndpointResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeEndpointCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeEntitiesDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeEntitiesDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeEntitiesDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeEntitiesDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeEntityRecognizerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeEntityRecognizerCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeEntityRecognizerResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeEntityRecognizerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeEventsDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeEventsDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeEventsDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeEventsDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeKeyPhrasesDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeKeyPhrasesDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeKeyPhrasesDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeKeyPhrasesDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribePiiEntitiesDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribePiiEntitiesDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribePiiEntitiesDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribePiiEntitiesDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeSentimentDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeSentimentDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeSentimentDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeSentimentDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeTopicsDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeTopicsDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeTopicsDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeTopicsDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectDominantLanguageCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectDominantLanguageCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectDominantLanguageResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectDominantLanguageCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectEntitiesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectEntitiesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectEntitiesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectEntitiesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceUnavailableException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceUnavailableException\": return [3 /*break*/, 6];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 8];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceUnavailableExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectKeyPhrasesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectKeyPhrasesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectKeyPhrasesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectKeyPhrasesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 6];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectPiiEntitiesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectPiiEntitiesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectPiiEntitiesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectPiiEntitiesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 6];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectSentimentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectSentimentCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectSentimentResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectSentimentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 6];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectSyntaxCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectSyntaxCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectSyntaxResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectSyntaxCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#TextSizeLimitExceededException\": return [3 /*break*/, 6];\n case \"UnsupportedLanguageException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#UnsupportedLanguageException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguageExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListDocumentClassificationJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListDocumentClassificationJobsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListDocumentClassificationJobsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListDocumentClassificationJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListDocumentClassifiersCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListDocumentClassifiersCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListDocumentClassifiersResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListDocumentClassifiersCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListDominantLanguageDetectionJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListDominantLanguageDetectionJobsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListDominantLanguageDetectionJobsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListDominantLanguageDetectionJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListEndpointsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListEndpointsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListEndpointsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListEndpointsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"TooManyRequestsException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListEntitiesDetectionJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListEntitiesDetectionJobsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListEntitiesDetectionJobsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListEntitiesDetectionJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListEntityRecognizersCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListEntityRecognizersCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListEntityRecognizersResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListEntityRecognizersCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListEventsDetectionJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListEventsDetectionJobsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListEventsDetectionJobsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListEventsDetectionJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListKeyPhrasesDetectionJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListKeyPhrasesDetectionJobsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListKeyPhrasesDetectionJobsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListKeyPhrasesDetectionJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListPiiEntitiesDetectionJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListPiiEntitiesDetectionJobsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListPiiEntitiesDetectionJobsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListPiiEntitiesDetectionJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListSentimentDetectionJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListSentimentDetectionJobsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListSentimentDetectionJobsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListSentimentDetectionJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsForResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListTagsForResourceCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListTagsForResourceResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsForResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTopicsDetectionJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListTopicsDetectionJobsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListTopicsDetectionJobsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTopicsDetectionJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDocumentClassificationJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartDocumentClassificationJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartDocumentClassificationJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDocumentClassificationJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"ResourceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#ResourceUnavailableException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDominantLanguageDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartDominantLanguageDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartDominantLanguageDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDominantLanguageDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartEntitiesDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartEntitiesDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartEntitiesDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartEntitiesDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"ResourceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#ResourceUnavailableException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartEventsDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartEventsDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartEventsDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartEventsDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartKeyPhrasesDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartKeyPhrasesDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartKeyPhrasesDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartKeyPhrasesDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartPiiEntitiesDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartPiiEntitiesDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartPiiEntitiesDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartPiiEntitiesDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartSentimentDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartSentimentDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartSentimentDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartSentimentDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartTopicsDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartTopicsDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartTopicsDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartTopicsDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#KmsKeyValidationException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KmsKeyValidationExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopDominantLanguageDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopDominantLanguageDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopDominantLanguageDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopDominantLanguageDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopEntitiesDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopEntitiesDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopEntitiesDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopEntitiesDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopEventsDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopEventsDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopEventsDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopEventsDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopKeyPhrasesDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopKeyPhrasesDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopKeyPhrasesDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopKeyPhrasesDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopPiiEntitiesDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopPiiEntitiesDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopPiiEntitiesDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopPiiEntitiesDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopSentimentDetectionJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopSentimentDetectionJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopSentimentDetectionJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopSentimentDetectionJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"JobNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#JobNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopTrainingDocumentClassifierCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopTrainingDocumentClassifierCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopTrainingDocumentClassifierResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopTrainingDocumentClassifierCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopTrainingEntityRecognizerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopTrainingEntityRecognizerCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopTrainingEntityRecognizerResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopTrainingEntityRecognizerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1TagResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1TagResourceCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1TagResourceResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1TagResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyTagsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#TooManyTagsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyTagsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UntagResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UntagResourceCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1UntagResourceResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UntagResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"TooManyTagKeysException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#TooManyTagKeysException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyTagKeysExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateEndpointCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UpdateEndpointCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1UpdateEndpointResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateEndpointCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.comprehend#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.comprehend#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.comprehend#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceLimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.comprehend#ResourceLimitExceededException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.comprehend#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"ResourceUnavailableException\": return [3 /*break*/, 12];\n case \"com.amazonaws.comprehend#ResourceUnavailableException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.comprehend#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceLimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceUnavailableExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1BatchSizeLimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1BatchSizeLimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"BatchSizeLimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ConcurrentModificationExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ConcurrentModificationException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ConcurrentModificationException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InternalServerExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InternalServerException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InternalServerException\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidFilterExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidFilterException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidFilterException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidRequestExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidRequestException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidRequestException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1JobNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1JobNotFoundException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"JobNotFoundException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1KmsKeyValidationExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1KmsKeyValidationException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"KmsKeyValidationException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceInUseExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceInUseException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceInUseException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceLimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceLimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceLimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceNotFoundException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotFoundException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceUnavailableExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceUnavailableException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceUnavailableException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1TextSizeLimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1TextSizeLimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"TextSizeLimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1TooManyRequestsExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1TooManyRequestsException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"TooManyRequestsException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1TooManyTagKeysExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1TooManyTagKeysException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"TooManyTagKeysException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1TooManyTagsExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1TooManyTagsException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"TooManyTagsException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1UnsupportedLanguageExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1UnsupportedLanguageException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"UnsupportedLanguageException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_json1_1AttributeNamesList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1AugmentedManifestsListItem = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AttributeNames !== undefined &&\n input.AttributeNames !== null && {\n AttributeNames: serializeAws_json1_1AttributeNamesList(input.AttributeNames, context),\n })), (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1BatchDetectDominantLanguageRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.TextList !== undefined &&\n input.TextList !== null && { TextList: serializeAws_json1_1CustomerInputStringList(input.TextList, context) }));\n};\nvar serializeAws_json1_1BatchDetectEntitiesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.TextList !== undefined &&\n input.TextList !== null && { TextList: serializeAws_json1_1CustomerInputStringList(input.TextList, context) }));\n};\nvar serializeAws_json1_1BatchDetectKeyPhrasesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.TextList !== undefined &&\n input.TextList !== null && { TextList: serializeAws_json1_1CustomerInputStringList(input.TextList, context) }));\n};\nvar serializeAws_json1_1BatchDetectSentimentRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.TextList !== undefined &&\n input.TextList !== null && { TextList: serializeAws_json1_1CustomerInputStringList(input.TextList, context) }));\n};\nvar serializeAws_json1_1BatchDetectSyntaxRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.TextList !== undefined &&\n input.TextList !== null && { TextList: serializeAws_json1_1CustomerInputStringList(input.TextList, context) }));\n};\nvar serializeAws_json1_1ClassifyDocumentRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndpointArn !== undefined && input.EndpointArn !== null && { EndpointArn: input.EndpointArn })), (input.Text !== undefined && input.Text !== null && { Text: input.Text }));\n};\nvar serializeAws_json1_1CreateDocumentClassifierRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.DocumentClassifierName !== undefined &&\n input.DocumentClassifierName !== null && { DocumentClassifierName: input.DocumentClassifierName })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1DocumentClassifierInputDataConfig(input.InputDataConfig, context),\n })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.Mode !== undefined && input.Mode !== null && { Mode: input.Mode })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1DocumentClassifierOutputDataConfig(input.OutputDataConfig, context),\n })), (input.Tags !== undefined && input.Tags !== null && { Tags: serializeAws_json1_1TagList(input.Tags, context) })), (input.VolumeKmsKeyId !== undefined &&\n input.VolumeKmsKeyId !== null && { VolumeKmsKeyId: input.VolumeKmsKeyId })), (input.VpcConfig !== undefined &&\n input.VpcConfig !== null && { VpcConfig: serializeAws_json1_1VpcConfig(input.VpcConfig, context) }));\n};\nvar serializeAws_json1_1CreateEndpointRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DesiredInferenceUnits !== undefined &&\n input.DesiredInferenceUnits !== null && { DesiredInferenceUnits: input.DesiredInferenceUnits })), (input.EndpointName !== undefined && input.EndpointName !== null && { EndpointName: input.EndpointName })), (input.ModelArn !== undefined && input.ModelArn !== null && { ModelArn: input.ModelArn })), (input.Tags !== undefined && input.Tags !== null && { Tags: serializeAws_json1_1TagList(input.Tags, context) }));\n};\nvar serializeAws_json1_1CreateEntityRecognizerRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1EntityRecognizerInputDataConfig(input.InputDataConfig, context),\n })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.RecognizerName !== undefined &&\n input.RecognizerName !== null && { RecognizerName: input.RecognizerName })), (input.Tags !== undefined && input.Tags !== null && { Tags: serializeAws_json1_1TagList(input.Tags, context) })), (input.VolumeKmsKeyId !== undefined &&\n input.VolumeKmsKeyId !== null && { VolumeKmsKeyId: input.VolumeKmsKeyId })), (input.VpcConfig !== undefined &&\n input.VpcConfig !== null && { VpcConfig: serializeAws_json1_1VpcConfig(input.VpcConfig, context) }));\n};\nvar serializeAws_json1_1CustomerInputStringList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1DeleteDocumentClassifierRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DocumentClassifierArn !== undefined &&\n input.DocumentClassifierArn !== null && { DocumentClassifierArn: input.DocumentClassifierArn }));\n};\nvar serializeAws_json1_1DeleteEndpointRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndpointArn !== undefined && input.EndpointArn !== null && { EndpointArn: input.EndpointArn }));\n};\nvar serializeAws_json1_1DeleteEntityRecognizerRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EntityRecognizerArn !== undefined &&\n input.EntityRecognizerArn !== null && { EntityRecognizerArn: input.EntityRecognizerArn }));\n};\nvar serializeAws_json1_1DescribeDocumentClassificationJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1DescribeDocumentClassifierRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DocumentClassifierArn !== undefined &&\n input.DocumentClassifierArn !== null && { DocumentClassifierArn: input.DocumentClassifierArn }));\n};\nvar serializeAws_json1_1DescribeDominantLanguageDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1DescribeEndpointRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndpointArn !== undefined && input.EndpointArn !== null && { EndpointArn: input.EndpointArn }));\n};\nvar serializeAws_json1_1DescribeEntitiesDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1DescribeEntityRecognizerRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EntityRecognizerArn !== undefined &&\n input.EntityRecognizerArn !== null && { EntityRecognizerArn: input.EntityRecognizerArn }));\n};\nvar serializeAws_json1_1DescribeEventsDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1DescribeKeyPhrasesDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1DescribePiiEntitiesDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1DescribeSentimentDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1DescribeTopicsDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1DetectDominantLanguageRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Text !== undefined && input.Text !== null && { Text: input.Text }));\n};\nvar serializeAws_json1_1DetectEntitiesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndpointArn !== undefined && input.EndpointArn !== null && { EndpointArn: input.EndpointArn })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.Text !== undefined && input.Text !== null && { Text: input.Text }));\n};\nvar serializeAws_json1_1DetectKeyPhrasesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.Text !== undefined && input.Text !== null && { Text: input.Text }));\n};\nvar serializeAws_json1_1DetectPiiEntitiesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.Text !== undefined && input.Text !== null && { Text: input.Text }));\n};\nvar serializeAws_json1_1DetectSentimentRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.Text !== undefined && input.Text !== null && { Text: input.Text }));\n};\nvar serializeAws_json1_1DetectSyntaxRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.Text !== undefined && input.Text !== null && { Text: input.Text }));\n};\nvar serializeAws_json1_1DocumentClassificationJobFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.JobStatus !== undefined && input.JobStatus !== null && { JobStatus: input.JobStatus })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1DocumentClassifierAugmentedManifestsList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1AugmentedManifestsListItem(entry, context);\n });\n};\nvar serializeAws_json1_1DocumentClassifierFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Status !== undefined && input.Status !== null && { Status: input.Status })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1DocumentClassifierInputDataConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AugmentedManifests !== undefined &&\n input.AugmentedManifests !== null && {\n AugmentedManifests: serializeAws_json1_1DocumentClassifierAugmentedManifestsList(input.AugmentedManifests, context),\n })), (input.DataFormat !== undefined && input.DataFormat !== null && { DataFormat: input.DataFormat })), (input.LabelDelimiter !== undefined &&\n input.LabelDelimiter !== null && { LabelDelimiter: input.LabelDelimiter })), (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1DocumentClassifierOutputDataConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.KmsKeyId !== undefined && input.KmsKeyId !== null && { KmsKeyId: input.KmsKeyId })), (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1DominantLanguageDetectionJobFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.JobStatus !== undefined && input.JobStatus !== null && { JobStatus: input.JobStatus })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1EndpointFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CreationTimeAfter !== undefined &&\n input.CreationTimeAfter !== null && { CreationTimeAfter: Math.round(input.CreationTimeAfter.getTime() / 1000) })), (input.CreationTimeBefore !== undefined &&\n input.CreationTimeBefore !== null && {\n CreationTimeBefore: Math.round(input.CreationTimeBefore.getTime() / 1000),\n })), (input.ModelArn !== undefined && input.ModelArn !== null && { ModelArn: input.ModelArn })), (input.Status !== undefined && input.Status !== null && { Status: input.Status }));\n};\nvar serializeAws_json1_1EntitiesDetectionJobFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.JobStatus !== undefined && input.JobStatus !== null && { JobStatus: input.JobStatus })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1EntityRecognizerAnnotations = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1EntityRecognizerAugmentedManifestsList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1AugmentedManifestsListItem(entry, context);\n });\n};\nvar serializeAws_json1_1EntityRecognizerDocuments = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1EntityRecognizerEntityList = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1EntityRecognizerFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Status !== undefined && input.Status !== null && { Status: input.Status })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1EntityRecognizerInputDataConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Annotations !== undefined &&\n input.Annotations !== null && {\n Annotations: serializeAws_json1_1EntityRecognizerAnnotations(input.Annotations, context),\n })), (input.AugmentedManifests !== undefined &&\n input.AugmentedManifests !== null && {\n AugmentedManifests: serializeAws_json1_1EntityRecognizerAugmentedManifestsList(input.AugmentedManifests, context),\n })), (input.DataFormat !== undefined && input.DataFormat !== null && { DataFormat: input.DataFormat })), (input.Documents !== undefined &&\n input.Documents !== null && {\n Documents: serializeAws_json1_1EntityRecognizerDocuments(input.Documents, context),\n })), (input.EntityList !== undefined &&\n input.EntityList !== null && {\n EntityList: serializeAws_json1_1EntityRecognizerEntityList(input.EntityList, context),\n })), (input.EntityTypes !== undefined &&\n input.EntityTypes !== null && { EntityTypes: serializeAws_json1_1EntityTypesList(input.EntityTypes, context) }));\n};\nvar serializeAws_json1_1EntityTypesList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1EntityTypesListItem(entry, context);\n });\n};\nvar serializeAws_json1_1EntityTypesListItem = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Type !== undefined && input.Type !== null && { Type: input.Type }));\n};\nvar serializeAws_json1_1EventsDetectionJobFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.JobStatus !== undefined && input.JobStatus !== null && { JobStatus: input.JobStatus })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1InputDataConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.InputFormat !== undefined && input.InputFormat !== null && { InputFormat: input.InputFormat })), (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1KeyPhrasesDetectionJobFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.JobStatus !== undefined && input.JobStatus !== null && { JobStatus: input.JobStatus })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1ListDocumentClassificationJobsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1DocumentClassificationJobFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListDocumentClassifiersRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1DocumentClassifierFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListDominantLanguageDetectionJobsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && {\n Filter: serializeAws_json1_1DominantLanguageDetectionJobFilter(input.Filter, context),\n })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListEndpointsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1EndpointFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListEntitiesDetectionJobsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1EntitiesDetectionJobFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListEntityRecognizersRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1EntityRecognizerFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListEventsDetectionJobsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1EventsDetectionJobFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListKeyPhrasesDetectionJobsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1KeyPhrasesDetectionJobFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListOfPiiEntityTypes = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1ListPiiEntitiesDetectionJobsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1PiiEntitiesDetectionJobFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListSentimentDetectionJobsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1SentimentDetectionJobFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListTagsForResourceRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ResourceArn !== undefined && input.ResourceArn !== null && { ResourceArn: input.ResourceArn }));\n};\nvar serializeAws_json1_1ListTopicsDetectionJobsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1TopicsDetectionJobFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1OutputDataConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.KmsKeyId !== undefined && input.KmsKeyId !== null && { KmsKeyId: input.KmsKeyId })), (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1PiiEntitiesDetectionJobFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.JobStatus !== undefined && input.JobStatus !== null && { JobStatus: input.JobStatus })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1RedactionConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaskCharacter !== undefined && input.MaskCharacter !== null && { MaskCharacter: input.MaskCharacter })), (input.MaskMode !== undefined && input.MaskMode !== null && { MaskMode: input.MaskMode })), (input.PiiEntityTypes !== undefined &&\n input.PiiEntityTypes !== null && {\n PiiEntityTypes: serializeAws_json1_1ListOfPiiEntityTypes(input.PiiEntityTypes, context),\n }));\n};\nvar serializeAws_json1_1SecurityGroupIds = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1SentimentDetectionJobFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.JobStatus !== undefined && input.JobStatus !== null && { JobStatus: input.JobStatus })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1StartDocumentClassificationJobRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.DocumentClassifierArn !== undefined &&\n input.DocumentClassifierArn !== null && { DocumentClassifierArn: input.DocumentClassifierArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1InputDataConfig(input.InputDataConfig, context),\n })), (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1OutputDataConfig(input.OutputDataConfig, context),\n })), (input.VolumeKmsKeyId !== undefined &&\n input.VolumeKmsKeyId !== null && { VolumeKmsKeyId: input.VolumeKmsKeyId })), (input.VpcConfig !== undefined &&\n input.VpcConfig !== null && { VpcConfig: serializeAws_json1_1VpcConfig(input.VpcConfig, context) }));\n};\nvar serializeAws_json1_1StartDominantLanguageDetectionJobRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1InputDataConfig(input.InputDataConfig, context),\n })), (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1OutputDataConfig(input.OutputDataConfig, context),\n })), (input.VolumeKmsKeyId !== undefined &&\n input.VolumeKmsKeyId !== null && { VolumeKmsKeyId: input.VolumeKmsKeyId })), (input.VpcConfig !== undefined &&\n input.VpcConfig !== null && { VpcConfig: serializeAws_json1_1VpcConfig(input.VpcConfig, context) }));\n};\nvar serializeAws_json1_1StartEntitiesDetectionJobRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.EntityRecognizerArn !== undefined &&\n input.EntityRecognizerArn !== null && { EntityRecognizerArn: input.EntityRecognizerArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1InputDataConfig(input.InputDataConfig, context),\n })), (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1OutputDataConfig(input.OutputDataConfig, context),\n })), (input.VolumeKmsKeyId !== undefined &&\n input.VolumeKmsKeyId !== null && { VolumeKmsKeyId: input.VolumeKmsKeyId })), (input.VpcConfig !== undefined &&\n input.VpcConfig !== null && { VpcConfig: serializeAws_json1_1VpcConfig(input.VpcConfig, context) }));\n};\nvar serializeAws_json1_1StartEventsDetectionJobRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1InputDataConfig(input.InputDataConfig, context),\n })), (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1OutputDataConfig(input.OutputDataConfig, context),\n })), (input.TargetEventTypes !== undefined &&\n input.TargetEventTypes !== null && {\n TargetEventTypes: serializeAws_json1_1TargetEventTypes(input.TargetEventTypes, context),\n }));\n};\nvar serializeAws_json1_1StartKeyPhrasesDetectionJobRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1InputDataConfig(input.InputDataConfig, context),\n })), (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1OutputDataConfig(input.OutputDataConfig, context),\n })), (input.VolumeKmsKeyId !== undefined &&\n input.VolumeKmsKeyId !== null && { VolumeKmsKeyId: input.VolumeKmsKeyId })), (input.VpcConfig !== undefined &&\n input.VpcConfig !== null && { VpcConfig: serializeAws_json1_1VpcConfig(input.VpcConfig, context) }));\n};\nvar serializeAws_json1_1StartPiiEntitiesDetectionJobRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1InputDataConfig(input.InputDataConfig, context),\n })), (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.Mode !== undefined && input.Mode !== null && { Mode: input.Mode })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1OutputDataConfig(input.OutputDataConfig, context),\n })), (input.RedactionConfig !== undefined &&\n input.RedactionConfig !== null && {\n RedactionConfig: serializeAws_json1_1RedactionConfig(input.RedactionConfig, context),\n }));\n};\nvar serializeAws_json1_1StartSentimentDetectionJobRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1InputDataConfig(input.InputDataConfig, context),\n })), (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1OutputDataConfig(input.OutputDataConfig, context),\n })), (input.VolumeKmsKeyId !== undefined &&\n input.VolumeKmsKeyId !== null && { VolumeKmsKeyId: input.VolumeKmsKeyId })), (input.VpcConfig !== undefined &&\n input.VpcConfig !== null && { VpcConfig: serializeAws_json1_1VpcConfig(input.VpcConfig, context) }));\n};\nvar serializeAws_json1_1StartTopicsDetectionJobRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientRequestToken: (_a = input.ClientRequestToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1InputDataConfig(input.InputDataConfig, context),\n })), (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.NumberOfTopics !== undefined &&\n input.NumberOfTopics !== null && { NumberOfTopics: input.NumberOfTopics })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1OutputDataConfig(input.OutputDataConfig, context),\n })), (input.VolumeKmsKeyId !== undefined &&\n input.VolumeKmsKeyId !== null && { VolumeKmsKeyId: input.VolumeKmsKeyId })), (input.VpcConfig !== undefined &&\n input.VpcConfig !== null && { VpcConfig: serializeAws_json1_1VpcConfig(input.VpcConfig, context) }));\n};\nvar serializeAws_json1_1StopDominantLanguageDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1StopEntitiesDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1StopEventsDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1StopKeyPhrasesDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1StopPiiEntitiesDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1StopSentimentDetectionJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1StopTrainingDocumentClassifierRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DocumentClassifierArn !== undefined &&\n input.DocumentClassifierArn !== null && { DocumentClassifierArn: input.DocumentClassifierArn }));\n};\nvar serializeAws_json1_1StopTrainingEntityRecognizerRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EntityRecognizerArn !== undefined &&\n input.EntityRecognizerArn !== null && { EntityRecognizerArn: input.EntityRecognizerArn }));\n};\nvar serializeAws_json1_1Subnets = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1Tag = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Key !== undefined && input.Key !== null && { Key: input.Key })), (input.Value !== undefined && input.Value !== null && { Value: input.Value }));\n};\nvar serializeAws_json1_1TagKeyList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1TagList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1Tag(entry, context);\n });\n};\nvar serializeAws_json1_1TagResourceRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ResourceArn !== undefined && input.ResourceArn !== null && { ResourceArn: input.ResourceArn })), (input.Tags !== undefined && input.Tags !== null && { Tags: serializeAws_json1_1TagList(input.Tags, context) }));\n};\nvar serializeAws_json1_1TargetEventTypes = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1TopicsDetectionJobFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.JobStatus !== undefined && input.JobStatus !== null && { JobStatus: input.JobStatus })), (input.SubmitTimeAfter !== undefined &&\n input.SubmitTimeAfter !== null && { SubmitTimeAfter: Math.round(input.SubmitTimeAfter.getTime() / 1000) })), (input.SubmitTimeBefore !== undefined &&\n input.SubmitTimeBefore !== null && { SubmitTimeBefore: Math.round(input.SubmitTimeBefore.getTime() / 1000) }));\n};\nvar serializeAws_json1_1UntagResourceRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ResourceArn !== undefined && input.ResourceArn !== null && { ResourceArn: input.ResourceArn })), (input.TagKeys !== undefined &&\n input.TagKeys !== null && { TagKeys: serializeAws_json1_1TagKeyList(input.TagKeys, context) }));\n};\nvar serializeAws_json1_1UpdateEndpointRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DesiredInferenceUnits !== undefined &&\n input.DesiredInferenceUnits !== null && { DesiredInferenceUnits: input.DesiredInferenceUnits })), (input.EndpointArn !== undefined && input.EndpointArn !== null && { EndpointArn: input.EndpointArn }));\n};\nvar serializeAws_json1_1VpcConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.SecurityGroupIds !== undefined &&\n input.SecurityGroupIds !== null && {\n SecurityGroupIds: serializeAws_json1_1SecurityGroupIds(input.SecurityGroupIds, context),\n })), (input.Subnets !== undefined &&\n input.Subnets !== null && { Subnets: serializeAws_json1_1Subnets(input.Subnets, context) }));\n};\nvar deserializeAws_json1_1AttributeNamesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1AugmentedManifestsListItem = function (output, context) {\n return {\n AttributeNames: output.AttributeNames !== undefined && output.AttributeNames !== null\n ? deserializeAws_json1_1AttributeNamesList(output.AttributeNames, context)\n : undefined,\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectDominantLanguageItemResult = function (output, context) {\n return {\n Index: output.Index !== undefined && output.Index !== null ? output.Index : undefined,\n Languages: output.Languages !== undefined && output.Languages !== null\n ? deserializeAws_json1_1ListOfDominantLanguages(output.Languages, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectDominantLanguageResponse = function (output, context) {\n return {\n ErrorList: output.ErrorList !== undefined && output.ErrorList !== null\n ? deserializeAws_json1_1BatchItemErrorList(output.ErrorList, context)\n : undefined,\n ResultList: output.ResultList !== undefined && output.ResultList !== null\n ? deserializeAws_json1_1ListOfDetectDominantLanguageResult(output.ResultList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectEntitiesItemResult = function (output, context) {\n return {\n Entities: output.Entities !== undefined && output.Entities !== null\n ? deserializeAws_json1_1ListOfEntities(output.Entities, context)\n : undefined,\n Index: output.Index !== undefined && output.Index !== null ? output.Index : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectEntitiesResponse = function (output, context) {\n return {\n ErrorList: output.ErrorList !== undefined && output.ErrorList !== null\n ? deserializeAws_json1_1BatchItemErrorList(output.ErrorList, context)\n : undefined,\n ResultList: output.ResultList !== undefined && output.ResultList !== null\n ? deserializeAws_json1_1ListOfDetectEntitiesResult(output.ResultList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectKeyPhrasesItemResult = function (output, context) {\n return {\n Index: output.Index !== undefined && output.Index !== null ? output.Index : undefined,\n KeyPhrases: output.KeyPhrases !== undefined && output.KeyPhrases !== null\n ? deserializeAws_json1_1ListOfKeyPhrases(output.KeyPhrases, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectKeyPhrasesResponse = function (output, context) {\n return {\n ErrorList: output.ErrorList !== undefined && output.ErrorList !== null\n ? deserializeAws_json1_1BatchItemErrorList(output.ErrorList, context)\n : undefined,\n ResultList: output.ResultList !== undefined && output.ResultList !== null\n ? deserializeAws_json1_1ListOfDetectKeyPhrasesResult(output.ResultList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectSentimentItemResult = function (output, context) {\n return {\n Index: output.Index !== undefined && output.Index !== null ? output.Index : undefined,\n Sentiment: output.Sentiment !== undefined && output.Sentiment !== null ? output.Sentiment : undefined,\n SentimentScore: output.SentimentScore !== undefined && output.SentimentScore !== null\n ? deserializeAws_json1_1SentimentScore(output.SentimentScore, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectSentimentResponse = function (output, context) {\n return {\n ErrorList: output.ErrorList !== undefined && output.ErrorList !== null\n ? deserializeAws_json1_1BatchItemErrorList(output.ErrorList, context)\n : undefined,\n ResultList: output.ResultList !== undefined && output.ResultList !== null\n ? deserializeAws_json1_1ListOfDetectSentimentResult(output.ResultList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectSyntaxItemResult = function (output, context) {\n return {\n Index: output.Index !== undefined && output.Index !== null ? output.Index : undefined,\n SyntaxTokens: output.SyntaxTokens !== undefined && output.SyntaxTokens !== null\n ? deserializeAws_json1_1ListOfSyntaxTokens(output.SyntaxTokens, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BatchDetectSyntaxResponse = function (output, context) {\n return {\n ErrorList: output.ErrorList !== undefined && output.ErrorList !== null\n ? deserializeAws_json1_1BatchItemErrorList(output.ErrorList, context)\n : undefined,\n ResultList: output.ResultList !== undefined && output.ResultList !== null\n ? deserializeAws_json1_1ListOfDetectSyntaxResult(output.ResultList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BatchItemError = function (output, context) {\n return {\n ErrorCode: output.ErrorCode !== undefined && output.ErrorCode !== null ? output.ErrorCode : undefined,\n ErrorMessage: output.ErrorMessage !== undefined && output.ErrorMessage !== null ? output.ErrorMessage : undefined,\n Index: output.Index !== undefined && output.Index !== null ? output.Index : undefined,\n };\n};\nvar deserializeAws_json1_1BatchItemErrorList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1BatchItemError(entry, context);\n });\n};\nvar deserializeAws_json1_1BatchSizeLimitExceededException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ClassifierEvaluationMetrics = function (output, context) {\n return {\n Accuracy: output.Accuracy !== undefined && output.Accuracy !== null ? output.Accuracy : undefined,\n F1Score: output.F1Score !== undefined && output.F1Score !== null ? output.F1Score : undefined,\n HammingLoss: output.HammingLoss !== undefined && output.HammingLoss !== null ? output.HammingLoss : undefined,\n MicroF1Score: output.MicroF1Score !== undefined && output.MicroF1Score !== null ? output.MicroF1Score : undefined,\n MicroPrecision: output.MicroPrecision !== undefined && output.MicroPrecision !== null ? output.MicroPrecision : undefined,\n MicroRecall: output.MicroRecall !== undefined && output.MicroRecall !== null ? output.MicroRecall : undefined,\n Precision: output.Precision !== undefined && output.Precision !== null ? output.Precision : undefined,\n Recall: output.Recall !== undefined && output.Recall !== null ? output.Recall : undefined,\n };\n};\nvar deserializeAws_json1_1ClassifierMetadata = function (output, context) {\n return {\n EvaluationMetrics: output.EvaluationMetrics !== undefined && output.EvaluationMetrics !== null\n ? deserializeAws_json1_1ClassifierEvaluationMetrics(output.EvaluationMetrics, context)\n : undefined,\n NumberOfLabels: output.NumberOfLabels !== undefined && output.NumberOfLabels !== null ? output.NumberOfLabels : undefined,\n NumberOfTestDocuments: output.NumberOfTestDocuments !== undefined && output.NumberOfTestDocuments !== null\n ? output.NumberOfTestDocuments\n : undefined,\n NumberOfTrainedDocuments: output.NumberOfTrainedDocuments !== undefined && output.NumberOfTrainedDocuments !== null\n ? output.NumberOfTrainedDocuments\n : undefined,\n };\n};\nvar deserializeAws_json1_1ClassifyDocumentResponse = function (output, context) {\n return {\n Classes: output.Classes !== undefined && output.Classes !== null\n ? deserializeAws_json1_1ListOfClasses(output.Classes, context)\n : undefined,\n Labels: output.Labels !== undefined && output.Labels !== null\n ? deserializeAws_json1_1ListOfLabels(output.Labels, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ConcurrentModificationException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1CreateDocumentClassifierResponse = function (output, context) {\n return {\n DocumentClassifierArn: output.DocumentClassifierArn !== undefined && output.DocumentClassifierArn !== null\n ? output.DocumentClassifierArn\n : undefined,\n };\n};\nvar deserializeAws_json1_1CreateEndpointResponse = function (output, context) {\n return {\n EndpointArn: output.EndpointArn !== undefined && output.EndpointArn !== null ? output.EndpointArn : undefined,\n };\n};\nvar deserializeAws_json1_1CreateEntityRecognizerResponse = function (output, context) {\n return {\n EntityRecognizerArn: output.EntityRecognizerArn !== undefined && output.EntityRecognizerArn !== null\n ? output.EntityRecognizerArn\n : undefined,\n };\n};\nvar deserializeAws_json1_1DeleteDocumentClassifierResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1DeleteEndpointResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1DeleteEntityRecognizerResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1DescribeDocumentClassificationJobResponse = function (output, context) {\n return {\n DocumentClassificationJobProperties: output.DocumentClassificationJobProperties !== undefined && output.DocumentClassificationJobProperties !== null\n ? deserializeAws_json1_1DocumentClassificationJobProperties(output.DocumentClassificationJobProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeDocumentClassifierResponse = function (output, context) {\n return {\n DocumentClassifierProperties: output.DocumentClassifierProperties !== undefined && output.DocumentClassifierProperties !== null\n ? deserializeAws_json1_1DocumentClassifierProperties(output.DocumentClassifierProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeDominantLanguageDetectionJobResponse = function (output, context) {\n return {\n DominantLanguageDetectionJobProperties: output.DominantLanguageDetectionJobProperties !== undefined &&\n output.DominantLanguageDetectionJobProperties !== null\n ? deserializeAws_json1_1DominantLanguageDetectionJobProperties(output.DominantLanguageDetectionJobProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeEndpointResponse = function (output, context) {\n return {\n EndpointProperties: output.EndpointProperties !== undefined && output.EndpointProperties !== null\n ? deserializeAws_json1_1EndpointProperties(output.EndpointProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeEntitiesDetectionJobResponse = function (output, context) {\n return {\n EntitiesDetectionJobProperties: output.EntitiesDetectionJobProperties !== undefined && output.EntitiesDetectionJobProperties !== null\n ? deserializeAws_json1_1EntitiesDetectionJobProperties(output.EntitiesDetectionJobProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeEntityRecognizerResponse = function (output, context) {\n return {\n EntityRecognizerProperties: output.EntityRecognizerProperties !== undefined && output.EntityRecognizerProperties !== null\n ? deserializeAws_json1_1EntityRecognizerProperties(output.EntityRecognizerProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeEventsDetectionJobResponse = function (output, context) {\n return {\n EventsDetectionJobProperties: output.EventsDetectionJobProperties !== undefined && output.EventsDetectionJobProperties !== null\n ? deserializeAws_json1_1EventsDetectionJobProperties(output.EventsDetectionJobProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeKeyPhrasesDetectionJobResponse = function (output, context) {\n return {\n KeyPhrasesDetectionJobProperties: output.KeyPhrasesDetectionJobProperties !== undefined && output.KeyPhrasesDetectionJobProperties !== null\n ? deserializeAws_json1_1KeyPhrasesDetectionJobProperties(output.KeyPhrasesDetectionJobProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribePiiEntitiesDetectionJobResponse = function (output, context) {\n return {\n PiiEntitiesDetectionJobProperties: output.PiiEntitiesDetectionJobProperties !== undefined && output.PiiEntitiesDetectionJobProperties !== null\n ? deserializeAws_json1_1PiiEntitiesDetectionJobProperties(output.PiiEntitiesDetectionJobProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeSentimentDetectionJobResponse = function (output, context) {\n return {\n SentimentDetectionJobProperties: output.SentimentDetectionJobProperties !== undefined && output.SentimentDetectionJobProperties !== null\n ? deserializeAws_json1_1SentimentDetectionJobProperties(output.SentimentDetectionJobProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeTopicsDetectionJobResponse = function (output, context) {\n return {\n TopicsDetectionJobProperties: output.TopicsDetectionJobProperties !== undefined && output.TopicsDetectionJobProperties !== null\n ? deserializeAws_json1_1TopicsDetectionJobProperties(output.TopicsDetectionJobProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectDominantLanguageResponse = function (output, context) {\n return {\n Languages: output.Languages !== undefined && output.Languages !== null\n ? deserializeAws_json1_1ListOfDominantLanguages(output.Languages, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectEntitiesResponse = function (output, context) {\n return {\n Entities: output.Entities !== undefined && output.Entities !== null\n ? deserializeAws_json1_1ListOfEntities(output.Entities, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectKeyPhrasesResponse = function (output, context) {\n return {\n KeyPhrases: output.KeyPhrases !== undefined && output.KeyPhrases !== null\n ? deserializeAws_json1_1ListOfKeyPhrases(output.KeyPhrases, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectPiiEntitiesResponse = function (output, context) {\n return {\n Entities: output.Entities !== undefined && output.Entities !== null\n ? deserializeAws_json1_1ListOfPiiEntities(output.Entities, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectSentimentResponse = function (output, context) {\n return {\n Sentiment: output.Sentiment !== undefined && output.Sentiment !== null ? output.Sentiment : undefined,\n SentimentScore: output.SentimentScore !== undefined && output.SentimentScore !== null\n ? deserializeAws_json1_1SentimentScore(output.SentimentScore, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectSyntaxResponse = function (output, context) {\n return {\n SyntaxTokens: output.SyntaxTokens !== undefined && output.SyntaxTokens !== null\n ? deserializeAws_json1_1ListOfSyntaxTokens(output.SyntaxTokens, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DocumentClass = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Score: output.Score !== undefined && output.Score !== null ? output.Score : undefined,\n };\n};\nvar deserializeAws_json1_1DocumentClassificationJobProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n DocumentClassifierArn: output.DocumentClassifierArn !== undefined && output.DocumentClassifierArn !== null\n ? output.DocumentClassifierArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1InputDataConfig(output.InputDataConfig, context)\n : undefined,\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobName: output.JobName !== undefined && output.JobName !== null ? output.JobName : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1OutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n VolumeKmsKeyId: output.VolumeKmsKeyId !== undefined && output.VolumeKmsKeyId !== null ? output.VolumeKmsKeyId : undefined,\n VpcConfig: output.VpcConfig !== undefined && output.VpcConfig !== null\n ? deserializeAws_json1_1VpcConfig(output.VpcConfig, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DocumentClassificationJobPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1DocumentClassificationJobProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1DocumentClassifierAugmentedManifestsList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1AugmentedManifestsListItem(entry, context);\n });\n};\nvar deserializeAws_json1_1DocumentClassifierInputDataConfig = function (output, context) {\n return {\n AugmentedManifests: output.AugmentedManifests !== undefined && output.AugmentedManifests !== null\n ? deserializeAws_json1_1DocumentClassifierAugmentedManifestsList(output.AugmentedManifests, context)\n : undefined,\n DataFormat: output.DataFormat !== undefined && output.DataFormat !== null ? output.DataFormat : undefined,\n LabelDelimiter: output.LabelDelimiter !== undefined && output.LabelDelimiter !== null ? output.LabelDelimiter : undefined,\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1DocumentClassifierOutputDataConfig = function (output, context) {\n return {\n KmsKeyId: output.KmsKeyId !== undefined && output.KmsKeyId !== null ? output.KmsKeyId : undefined,\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1DocumentClassifierProperties = function (output, context) {\n return {\n ClassifierMetadata: output.ClassifierMetadata !== undefined && output.ClassifierMetadata !== null\n ? deserializeAws_json1_1ClassifierMetadata(output.ClassifierMetadata, context)\n : undefined,\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n DocumentClassifierArn: output.DocumentClassifierArn !== undefined && output.DocumentClassifierArn !== null\n ? output.DocumentClassifierArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1DocumentClassifierInputDataConfig(output.InputDataConfig, context)\n : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n Mode: output.Mode !== undefined && output.Mode !== null ? output.Mode : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1DocumentClassifierOutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n TrainingEndTime: output.TrainingEndTime !== undefined && output.TrainingEndTime !== null\n ? new Date(Math.round(output.TrainingEndTime * 1000))\n : undefined,\n TrainingStartTime: output.TrainingStartTime !== undefined && output.TrainingStartTime !== null\n ? new Date(Math.round(output.TrainingStartTime * 1000))\n : undefined,\n VolumeKmsKeyId: output.VolumeKmsKeyId !== undefined && output.VolumeKmsKeyId !== null ? output.VolumeKmsKeyId : undefined,\n VpcConfig: output.VpcConfig !== undefined && output.VpcConfig !== null\n ? deserializeAws_json1_1VpcConfig(output.VpcConfig, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DocumentClassifierPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1DocumentClassifierProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1DocumentLabel = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Score: output.Score !== undefined && output.Score !== null ? output.Score : undefined,\n };\n};\nvar deserializeAws_json1_1DominantLanguage = function (output, context) {\n return {\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n Score: output.Score !== undefined && output.Score !== null ? output.Score : undefined,\n };\n};\nvar deserializeAws_json1_1DominantLanguageDetectionJobProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1InputDataConfig(output.InputDataConfig, context)\n : undefined,\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobName: output.JobName !== undefined && output.JobName !== null ? output.JobName : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1OutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n VolumeKmsKeyId: output.VolumeKmsKeyId !== undefined && output.VolumeKmsKeyId !== null ? output.VolumeKmsKeyId : undefined,\n VpcConfig: output.VpcConfig !== undefined && output.VpcConfig !== null\n ? deserializeAws_json1_1VpcConfig(output.VpcConfig, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DominantLanguageDetectionJobPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1DominantLanguageDetectionJobProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1EndpointProperties = function (output, context) {\n return {\n CreationTime: output.CreationTime !== undefined && output.CreationTime !== null\n ? new Date(Math.round(output.CreationTime * 1000))\n : undefined,\n CurrentInferenceUnits: output.CurrentInferenceUnits !== undefined && output.CurrentInferenceUnits !== null\n ? output.CurrentInferenceUnits\n : undefined,\n DesiredInferenceUnits: output.DesiredInferenceUnits !== undefined && output.DesiredInferenceUnits !== null\n ? output.DesiredInferenceUnits\n : undefined,\n EndpointArn: output.EndpointArn !== undefined && output.EndpointArn !== null ? output.EndpointArn : undefined,\n LastModifiedTime: output.LastModifiedTime !== undefined && output.LastModifiedTime !== null\n ? new Date(Math.round(output.LastModifiedTime * 1000))\n : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n ModelArn: output.ModelArn !== undefined && output.ModelArn !== null ? output.ModelArn : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1EndpointPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1EndpointProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1EntitiesDetectionJobProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n EntityRecognizerArn: output.EntityRecognizerArn !== undefined && output.EntityRecognizerArn !== null\n ? output.EntityRecognizerArn\n : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1InputDataConfig(output.InputDataConfig, context)\n : undefined,\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobName: output.JobName !== undefined && output.JobName !== null ? output.JobName : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1OutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n VolumeKmsKeyId: output.VolumeKmsKeyId !== undefined && output.VolumeKmsKeyId !== null ? output.VolumeKmsKeyId : undefined,\n VpcConfig: output.VpcConfig !== undefined && output.VpcConfig !== null\n ? deserializeAws_json1_1VpcConfig(output.VpcConfig, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1EntitiesDetectionJobPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1EntitiesDetectionJobProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1Entity = function (output, context) {\n return {\n BeginOffset: output.BeginOffset !== undefined && output.BeginOffset !== null ? output.BeginOffset : undefined,\n EndOffset: output.EndOffset !== undefined && output.EndOffset !== null ? output.EndOffset : undefined,\n Score: output.Score !== undefined && output.Score !== null ? output.Score : undefined,\n Text: output.Text !== undefined && output.Text !== null ? output.Text : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1EntityRecognizerAnnotations = function (output, context) {\n return {\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1EntityRecognizerAugmentedManifestsList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1AugmentedManifestsListItem(entry, context);\n });\n};\nvar deserializeAws_json1_1EntityRecognizerDocuments = function (output, context) {\n return {\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1EntityRecognizerEntityList = function (output, context) {\n return {\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1EntityRecognizerEvaluationMetrics = function (output, context) {\n return {\n F1Score: output.F1Score !== undefined && output.F1Score !== null ? output.F1Score : undefined,\n Precision: output.Precision !== undefined && output.Precision !== null ? output.Precision : undefined,\n Recall: output.Recall !== undefined && output.Recall !== null ? output.Recall : undefined,\n };\n};\nvar deserializeAws_json1_1EntityRecognizerInputDataConfig = function (output, context) {\n return {\n Annotations: output.Annotations !== undefined && output.Annotations !== null\n ? deserializeAws_json1_1EntityRecognizerAnnotations(output.Annotations, context)\n : undefined,\n AugmentedManifests: output.AugmentedManifests !== undefined && output.AugmentedManifests !== null\n ? deserializeAws_json1_1EntityRecognizerAugmentedManifestsList(output.AugmentedManifests, context)\n : undefined,\n DataFormat: output.DataFormat !== undefined && output.DataFormat !== null ? output.DataFormat : undefined,\n Documents: output.Documents !== undefined && output.Documents !== null\n ? deserializeAws_json1_1EntityRecognizerDocuments(output.Documents, context)\n : undefined,\n EntityList: output.EntityList !== undefined && output.EntityList !== null\n ? deserializeAws_json1_1EntityRecognizerEntityList(output.EntityList, context)\n : undefined,\n EntityTypes: output.EntityTypes !== undefined && output.EntityTypes !== null\n ? deserializeAws_json1_1EntityTypesList(output.EntityTypes, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1EntityRecognizerMetadata = function (output, context) {\n return {\n EntityTypes: output.EntityTypes !== undefined && output.EntityTypes !== null\n ? deserializeAws_json1_1EntityRecognizerMetadataEntityTypesList(output.EntityTypes, context)\n : undefined,\n EvaluationMetrics: output.EvaluationMetrics !== undefined && output.EvaluationMetrics !== null\n ? deserializeAws_json1_1EntityRecognizerEvaluationMetrics(output.EvaluationMetrics, context)\n : undefined,\n NumberOfTestDocuments: output.NumberOfTestDocuments !== undefined && output.NumberOfTestDocuments !== null\n ? output.NumberOfTestDocuments\n : undefined,\n NumberOfTrainedDocuments: output.NumberOfTrainedDocuments !== undefined && output.NumberOfTrainedDocuments !== null\n ? output.NumberOfTrainedDocuments\n : undefined,\n };\n};\nvar deserializeAws_json1_1EntityRecognizerMetadataEntityTypesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1EntityRecognizerMetadataEntityTypesListItem(entry, context);\n });\n};\nvar deserializeAws_json1_1EntityRecognizerMetadataEntityTypesListItem = function (output, context) {\n return {\n EvaluationMetrics: output.EvaluationMetrics !== undefined && output.EvaluationMetrics !== null\n ? deserializeAws_json1_1EntityTypesEvaluationMetrics(output.EvaluationMetrics, context)\n : undefined,\n NumberOfTrainMentions: output.NumberOfTrainMentions !== undefined && output.NumberOfTrainMentions !== null\n ? output.NumberOfTrainMentions\n : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1EntityRecognizerProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n EntityRecognizerArn: output.EntityRecognizerArn !== undefined && output.EntityRecognizerArn !== null\n ? output.EntityRecognizerArn\n : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1EntityRecognizerInputDataConfig(output.InputDataConfig, context)\n : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n RecognizerMetadata: output.RecognizerMetadata !== undefined && output.RecognizerMetadata !== null\n ? deserializeAws_json1_1EntityRecognizerMetadata(output.RecognizerMetadata, context)\n : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n TrainingEndTime: output.TrainingEndTime !== undefined && output.TrainingEndTime !== null\n ? new Date(Math.round(output.TrainingEndTime * 1000))\n : undefined,\n TrainingStartTime: output.TrainingStartTime !== undefined && output.TrainingStartTime !== null\n ? new Date(Math.round(output.TrainingStartTime * 1000))\n : undefined,\n VolumeKmsKeyId: output.VolumeKmsKeyId !== undefined && output.VolumeKmsKeyId !== null ? output.VolumeKmsKeyId : undefined,\n VpcConfig: output.VpcConfig !== undefined && output.VpcConfig !== null\n ? deserializeAws_json1_1VpcConfig(output.VpcConfig, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1EntityRecognizerPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1EntityRecognizerProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1EntityTypesEvaluationMetrics = function (output, context) {\n return {\n F1Score: output.F1Score !== undefined && output.F1Score !== null ? output.F1Score : undefined,\n Precision: output.Precision !== undefined && output.Precision !== null ? output.Precision : undefined,\n Recall: output.Recall !== undefined && output.Recall !== null ? output.Recall : undefined,\n };\n};\nvar deserializeAws_json1_1EntityTypesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1EntityTypesListItem(entry, context);\n });\n};\nvar deserializeAws_json1_1EntityTypesListItem = function (output, context) {\n return {\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1EventsDetectionJobProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1InputDataConfig(output.InputDataConfig, context)\n : undefined,\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobName: output.JobName !== undefined && output.JobName !== null ? output.JobName : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1OutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n TargetEventTypes: output.TargetEventTypes !== undefined && output.TargetEventTypes !== null\n ? deserializeAws_json1_1TargetEventTypes(output.TargetEventTypes, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1EventsDetectionJobPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1EventsDetectionJobProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1InputDataConfig = function (output, context) {\n return {\n InputFormat: output.InputFormat !== undefined && output.InputFormat !== null ? output.InputFormat : undefined,\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1InternalServerException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidFilterException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidRequestException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1JobNotFoundException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1KeyPhrase = function (output, context) {\n return {\n BeginOffset: output.BeginOffset !== undefined && output.BeginOffset !== null ? output.BeginOffset : undefined,\n EndOffset: output.EndOffset !== undefined && output.EndOffset !== null ? output.EndOffset : undefined,\n Score: output.Score !== undefined && output.Score !== null ? output.Score : undefined,\n Text: output.Text !== undefined && output.Text !== null ? output.Text : undefined,\n };\n};\nvar deserializeAws_json1_1KeyPhrasesDetectionJobProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1InputDataConfig(output.InputDataConfig, context)\n : undefined,\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobName: output.JobName !== undefined && output.JobName !== null ? output.JobName : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1OutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n VolumeKmsKeyId: output.VolumeKmsKeyId !== undefined && output.VolumeKmsKeyId !== null ? output.VolumeKmsKeyId : undefined,\n VpcConfig: output.VpcConfig !== undefined && output.VpcConfig !== null\n ? deserializeAws_json1_1VpcConfig(output.VpcConfig, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1KeyPhrasesDetectionJobPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1KeyPhrasesDetectionJobProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1KmsKeyValidationException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ListDocumentClassificationJobsResponse = function (output, context) {\n return {\n DocumentClassificationJobPropertiesList: output.DocumentClassificationJobPropertiesList !== undefined &&\n output.DocumentClassificationJobPropertiesList !== null\n ? deserializeAws_json1_1DocumentClassificationJobPropertiesList(output.DocumentClassificationJobPropertiesList, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListDocumentClassifiersResponse = function (output, context) {\n return {\n DocumentClassifierPropertiesList: output.DocumentClassifierPropertiesList !== undefined && output.DocumentClassifierPropertiesList !== null\n ? deserializeAws_json1_1DocumentClassifierPropertiesList(output.DocumentClassifierPropertiesList, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListDominantLanguageDetectionJobsResponse = function (output, context) {\n return {\n DominantLanguageDetectionJobPropertiesList: output.DominantLanguageDetectionJobPropertiesList !== undefined &&\n output.DominantLanguageDetectionJobPropertiesList !== null\n ? deserializeAws_json1_1DominantLanguageDetectionJobPropertiesList(output.DominantLanguageDetectionJobPropertiesList, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListEndpointsResponse = function (output, context) {\n return {\n EndpointPropertiesList: output.EndpointPropertiesList !== undefined && output.EndpointPropertiesList !== null\n ? deserializeAws_json1_1EndpointPropertiesList(output.EndpointPropertiesList, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListEntitiesDetectionJobsResponse = function (output, context) {\n return {\n EntitiesDetectionJobPropertiesList: output.EntitiesDetectionJobPropertiesList !== undefined && output.EntitiesDetectionJobPropertiesList !== null\n ? deserializeAws_json1_1EntitiesDetectionJobPropertiesList(output.EntitiesDetectionJobPropertiesList, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListEntityRecognizersResponse = function (output, context) {\n return {\n EntityRecognizerPropertiesList: output.EntityRecognizerPropertiesList !== undefined && output.EntityRecognizerPropertiesList !== null\n ? deserializeAws_json1_1EntityRecognizerPropertiesList(output.EntityRecognizerPropertiesList, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListEventsDetectionJobsResponse = function (output, context) {\n return {\n EventsDetectionJobPropertiesList: output.EventsDetectionJobPropertiesList !== undefined && output.EventsDetectionJobPropertiesList !== null\n ? deserializeAws_json1_1EventsDetectionJobPropertiesList(output.EventsDetectionJobPropertiesList, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListKeyPhrasesDetectionJobsResponse = function (output, context) {\n return {\n KeyPhrasesDetectionJobPropertiesList: output.KeyPhrasesDetectionJobPropertiesList !== undefined && output.KeyPhrasesDetectionJobPropertiesList !== null\n ? deserializeAws_json1_1KeyPhrasesDetectionJobPropertiesList(output.KeyPhrasesDetectionJobPropertiesList, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListOfClasses = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1DocumentClass(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfDetectDominantLanguageResult = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1BatchDetectDominantLanguageItemResult(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfDetectEntitiesResult = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1BatchDetectEntitiesItemResult(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfDetectKeyPhrasesResult = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1BatchDetectKeyPhrasesItemResult(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfDetectSentimentResult = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1BatchDetectSentimentItemResult(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfDetectSyntaxResult = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1BatchDetectSyntaxItemResult(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfDominantLanguages = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1DominantLanguage(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfEntities = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Entity(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfKeyPhrases = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1KeyPhrase(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfLabels = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1DocumentLabel(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfPiiEntities = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1PiiEntity(entry, context);\n });\n};\nvar deserializeAws_json1_1ListOfPiiEntityTypes = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ListOfSyntaxTokens = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1SyntaxToken(entry, context);\n });\n};\nvar deserializeAws_json1_1ListPiiEntitiesDetectionJobsResponse = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n PiiEntitiesDetectionJobPropertiesList: output.PiiEntitiesDetectionJobPropertiesList !== undefined &&\n output.PiiEntitiesDetectionJobPropertiesList !== null\n ? deserializeAws_json1_1PiiEntitiesDetectionJobPropertiesList(output.PiiEntitiesDetectionJobPropertiesList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ListSentimentDetectionJobsResponse = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n SentimentDetectionJobPropertiesList: output.SentimentDetectionJobPropertiesList !== undefined && output.SentimentDetectionJobPropertiesList !== null\n ? deserializeAws_json1_1SentimentDetectionJobPropertiesList(output.SentimentDetectionJobPropertiesList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ListTagsForResourceResponse = function (output, context) {\n return {\n ResourceArn: output.ResourceArn !== undefined && output.ResourceArn !== null ? output.ResourceArn : undefined,\n Tags: output.Tags !== undefined && output.Tags !== null\n ? deserializeAws_json1_1TagList(output.Tags, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ListTopicsDetectionJobsResponse = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n TopicsDetectionJobPropertiesList: output.TopicsDetectionJobPropertiesList !== undefined && output.TopicsDetectionJobPropertiesList !== null\n ? deserializeAws_json1_1TopicsDetectionJobPropertiesList(output.TopicsDetectionJobPropertiesList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1OutputDataConfig = function (output, context) {\n return {\n KmsKeyId: output.KmsKeyId !== undefined && output.KmsKeyId !== null ? output.KmsKeyId : undefined,\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1PartOfSpeechTag = function (output, context) {\n return {\n Score: output.Score !== undefined && output.Score !== null ? output.Score : undefined,\n Tag: output.Tag !== undefined && output.Tag !== null ? output.Tag : undefined,\n };\n};\nvar deserializeAws_json1_1PiiEntitiesDetectionJobProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1InputDataConfig(output.InputDataConfig, context)\n : undefined,\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobName: output.JobName !== undefined && output.JobName !== null ? output.JobName : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n Mode: output.Mode !== undefined && output.Mode !== null ? output.Mode : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1PiiOutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n RedactionConfig: output.RedactionConfig !== undefined && output.RedactionConfig !== null\n ? deserializeAws_json1_1RedactionConfig(output.RedactionConfig, context)\n : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n };\n};\nvar deserializeAws_json1_1PiiEntitiesDetectionJobPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1PiiEntitiesDetectionJobProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1PiiEntity = function (output, context) {\n return {\n BeginOffset: output.BeginOffset !== undefined && output.BeginOffset !== null ? output.BeginOffset : undefined,\n EndOffset: output.EndOffset !== undefined && output.EndOffset !== null ? output.EndOffset : undefined,\n Score: output.Score !== undefined && output.Score !== null ? output.Score : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1PiiOutputDataConfig = function (output, context) {\n return {\n KmsKeyId: output.KmsKeyId !== undefined && output.KmsKeyId !== null ? output.KmsKeyId : undefined,\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1RedactionConfig = function (output, context) {\n return {\n MaskCharacter: output.MaskCharacter !== undefined && output.MaskCharacter !== null ? output.MaskCharacter : undefined,\n MaskMode: output.MaskMode !== undefined && output.MaskMode !== null ? output.MaskMode : undefined,\n PiiEntityTypes: output.PiiEntityTypes !== undefined && output.PiiEntityTypes !== null\n ? deserializeAws_json1_1ListOfPiiEntityTypes(output.PiiEntityTypes, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceInUseException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceLimitExceededException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceNotFoundException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceUnavailableException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1SecurityGroupIds = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1SentimentDetectionJobProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1InputDataConfig(output.InputDataConfig, context)\n : undefined,\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobName: output.JobName !== undefined && output.JobName !== null ? output.JobName : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1OutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n VolumeKmsKeyId: output.VolumeKmsKeyId !== undefined && output.VolumeKmsKeyId !== null ? output.VolumeKmsKeyId : undefined,\n VpcConfig: output.VpcConfig !== undefined && output.VpcConfig !== null\n ? deserializeAws_json1_1VpcConfig(output.VpcConfig, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1SentimentDetectionJobPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1SentimentDetectionJobProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1SentimentScore = function (output, context) {\n return {\n Mixed: output.Mixed !== undefined && output.Mixed !== null ? output.Mixed : undefined,\n Negative: output.Negative !== undefined && output.Negative !== null ? output.Negative : undefined,\n Neutral: output.Neutral !== undefined && output.Neutral !== null ? output.Neutral : undefined,\n Positive: output.Positive !== undefined && output.Positive !== null ? output.Positive : undefined,\n };\n};\nvar deserializeAws_json1_1StartDocumentClassificationJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StartDominantLanguageDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StartEntitiesDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StartEventsDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StartKeyPhrasesDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StartPiiEntitiesDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StartSentimentDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StartTopicsDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StopDominantLanguageDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StopEntitiesDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StopEventsDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StopKeyPhrasesDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StopPiiEntitiesDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StopSentimentDetectionJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StopTrainingDocumentClassifierResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1StopTrainingEntityRecognizerResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1Subnets = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1SyntaxToken = function (output, context) {\n return {\n BeginOffset: output.BeginOffset !== undefined && output.BeginOffset !== null ? output.BeginOffset : undefined,\n EndOffset: output.EndOffset !== undefined && output.EndOffset !== null ? output.EndOffset : undefined,\n PartOfSpeech: output.PartOfSpeech !== undefined && output.PartOfSpeech !== null\n ? deserializeAws_json1_1PartOfSpeechTag(output.PartOfSpeech, context)\n : undefined,\n Text: output.Text !== undefined && output.Text !== null ? output.Text : undefined,\n TokenId: output.TokenId !== undefined && output.TokenId !== null ? output.TokenId : undefined,\n };\n};\nvar deserializeAws_json1_1Tag = function (output, context) {\n return {\n Key: output.Key !== undefined && output.Key !== null ? output.Key : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1TagList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Tag(entry, context);\n });\n};\nvar deserializeAws_json1_1TagResourceResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1TargetEventTypes = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1TextSizeLimitExceededException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1TooManyRequestsException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1TooManyTagKeysException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1TooManyTagsException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1TopicsDetectionJobProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1InputDataConfig(output.InputDataConfig, context)\n : undefined,\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobName: output.JobName !== undefined && output.JobName !== null ? output.JobName : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n NumberOfTopics: output.NumberOfTopics !== undefined && output.NumberOfTopics !== null ? output.NumberOfTopics : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1OutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n SubmitTime: output.SubmitTime !== undefined && output.SubmitTime !== null\n ? new Date(Math.round(output.SubmitTime * 1000))\n : undefined,\n VolumeKmsKeyId: output.VolumeKmsKeyId !== undefined && output.VolumeKmsKeyId !== null ? output.VolumeKmsKeyId : undefined,\n VpcConfig: output.VpcConfig !== undefined && output.VpcConfig !== null\n ? deserializeAws_json1_1VpcConfig(output.VpcConfig, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1TopicsDetectionJobPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1TopicsDetectionJobProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1UnsupportedLanguageException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1UntagResourceResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1UpdateEndpointResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1VpcConfig = function (output, context) {\n return {\n SecurityGroupIds: output.SecurityGroupIds !== undefined && output.SecurityGroupIds !== null\n ? deserializeAws_json1_1SecurityGroupIds(output.SecurityGroupIds, context)\n : undefined,\n Subnets: output.Subnets !== undefined && output.Subnets !== null\n ? deserializeAws_json1_1Subnets(output.Subnets, context)\n : undefined,\n };\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar buildHttpRpcRequest = function (context, headers, path, resolvedHostname, body) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n contents = {\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n path: path,\n headers: headers,\n };\n if (resolvedHostname !== undefined) {\n contents.hostname = resolvedHostname;\n }\n if (body !== undefined) {\n contents.body = body;\n }\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"](contents)];\n }\n });\n}); };\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_json1_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/protocols/Aws_json1_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/runtimeConfig.browser.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/runtimeConfig.browser.js ***! \**********************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/dist/es/runtimeConfig.shared.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/dist/es/runtimeConfig.shared.js ***! \*********************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-comprehend/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2017-11-27\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Comprehend\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js ***! \*********************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-comprehend/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/Firehose.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/Firehose.js ***! \*******************************************************************/ /*! exports provided: Firehose */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Firehose\", function() { return Firehose; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _FirehoseClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FirehoseClient */ \"./node_modules/@aws-sdk/client-firehose/dist/es/FirehoseClient.js\");\n/* harmony import */ var _commands_CreateDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CreateDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/CreateDeliveryStreamCommand.js\");\n/* harmony import */ var _commands_DeleteDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DeleteDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/DeleteDeliveryStreamCommand.js\");\n/* harmony import */ var _commands_DescribeDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/DescribeDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/DescribeDeliveryStreamCommand.js\");\n/* harmony import */ var _commands_ListDeliveryStreamsCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/ListDeliveryStreamsCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListDeliveryStreamsCommand.js\");\n/* harmony import */ var _commands_ListTagsForDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/ListTagsForDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListTagsForDeliveryStreamCommand.js\");\n/* harmony import */ var _commands_PutRecordBatchCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/PutRecordBatchCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordBatchCommand.js\");\n/* harmony import */ var _commands_PutRecordCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/PutRecordCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordCommand.js\");\n/* harmony import */ var _commands_StartDeliveryStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/StartDeliveryStreamEncryptionCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/StartDeliveryStreamEncryptionCommand.js\");\n/* harmony import */ var _commands_StopDeliveryStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/StopDeliveryStreamEncryptionCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/StopDeliveryStreamEncryptionCommand.js\");\n/* harmony import */ var _commands_TagDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/TagDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/TagDeliveryStreamCommand.js\");\n/* harmony import */ var _commands_UntagDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/UntagDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/UntagDeliveryStreamCommand.js\");\n/* harmony import */ var _commands_UpdateDestinationCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/UpdateDestinationCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/UpdateDestinationCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Amazon Kinesis Data Firehose API Reference\n *

Amazon Kinesis Data Firehose is a fully managed service that delivers real-time\n * streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon\n * Elasticsearch Service (Amazon ES), Amazon Redshift, and Splunk.

\n */\nvar Firehose = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(Firehose, _super);\n function Firehose() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Firehose.prototype.createDeliveryStream = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_2__[\"CreateDeliveryStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.deleteDeliveryStream = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_3__[\"DeleteDeliveryStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.describeDeliveryStream = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_4__[\"DescribeDeliveryStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.listDeliveryStreams = function (args, optionsOrCb, cb) {\n var command = new _commands_ListDeliveryStreamsCommand__WEBPACK_IMPORTED_MODULE_5__[\"ListDeliveryStreamsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.listTagsForDeliveryStream = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTagsForDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_6__[\"ListTagsForDeliveryStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.putRecord = function (args, optionsOrCb, cb) {\n var command = new _commands_PutRecordCommand__WEBPACK_IMPORTED_MODULE_8__[\"PutRecordCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.putRecordBatch = function (args, optionsOrCb, cb) {\n var command = new _commands_PutRecordBatchCommand__WEBPACK_IMPORTED_MODULE_7__[\"PutRecordBatchCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.startDeliveryStreamEncryption = function (args, optionsOrCb, cb) {\n var command = new _commands_StartDeliveryStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_9__[\"StartDeliveryStreamEncryptionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.stopDeliveryStreamEncryption = function (args, optionsOrCb, cb) {\n var command = new _commands_StopDeliveryStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_10__[\"StopDeliveryStreamEncryptionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.tagDeliveryStream = function (args, optionsOrCb, cb) {\n var command = new _commands_TagDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_11__[\"TagDeliveryStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.untagDeliveryStream = function (args, optionsOrCb, cb) {\n var command = new _commands_UntagDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_12__[\"UntagDeliveryStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Firehose.prototype.updateDestination = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateDestinationCommand__WEBPACK_IMPORTED_MODULE_13__[\"UpdateDestinationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return Firehose;\n}(_FirehoseClient__WEBPACK_IMPORTED_MODULE_1__[\"FirehoseClient\"]));\n\n//# sourceMappingURL=Firehose.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/Firehose.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/FirehoseClient.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/FirehoseClient.js ***! \*************************************************************************/ /*! exports provided: FirehoseClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FirehoseClient\", function() { return FirehoseClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-firehose/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n * Amazon Kinesis Data Firehose API Reference\n *

Amazon Kinesis Data Firehose is a fully managed service that delivers real-time\n * streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon\n * Elasticsearch Service (Amazon ES), Amazon Redshift, and Splunk.

\n */\nvar FirehoseClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(FirehoseClient, _super);\n function FirehoseClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n FirehoseClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return FirehoseClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=FirehoseClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/FirehoseClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/CreateDeliveryStreamCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/CreateDeliveryStreamCommand.js ***! \***********************************************************************************************/ /*! exports provided: CreateDeliveryStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateDeliveryStreamCommand\", function() { return CreateDeliveryStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a Kinesis Data Firehose delivery stream.

\n *\n *

By default, you can create up to 50 delivery streams per AWS Region.

\n *

This is an asynchronous operation that immediately returns. The initial status of the\n * delivery stream is CREATING. After the delivery stream is created, its status\n * is ACTIVE and it now accepts data. If the delivery stream creation fails, the\n * status transitions to CREATING_FAILED. Attempts to send data to a delivery\n * stream that is not in the ACTIVE state cause an exception. To check the state\n * of a delivery stream, use DescribeDeliveryStream.

\n *

If the status of a delivery stream is CREATING_FAILED, this status\n * doesn't change, and you can't invoke CreateDeliveryStream again on it.\n * However, you can invoke the DeleteDeliveryStream operation to delete\n * it.

\n *

A Kinesis Data Firehose delivery stream can be configured to receive records directly\n * from providers using PutRecord or PutRecordBatch, or it\n * can be configured to use an existing Kinesis stream as its source. To specify a Kinesis\n * data stream as input, set the DeliveryStreamType parameter to\n * KinesisStreamAsSource, and provide the Kinesis stream Amazon Resource Name\n * (ARN) and role ARN in the KinesisStreamSourceConfiguration\n * parameter.

\n *

To create a delivery stream with server-side encryption (SSE) enabled, include DeliveryStreamEncryptionConfigurationInput in your request. This is\n * optional. You can also invoke StartDeliveryStreamEncryption to turn on\n * SSE for an existing delivery stream that doesn't have SSE enabled.

\n *

A delivery stream is configured with a single destination: Amazon S3, Amazon ES,\n * Amazon Redshift, or Splunk. You must specify only one of the following destination\n * configuration parameters: ExtendedS3DestinationConfiguration,\n * S3DestinationConfiguration,\n * ElasticsearchDestinationConfiguration,\n * RedshiftDestinationConfiguration, or\n * SplunkDestinationConfiguration.

\n *

When you specify S3DestinationConfiguration, you can also provide the\n * following optional values: BufferingHints, EncryptionConfiguration, and\n * CompressionFormat. By default, if no BufferingHints value is\n * provided, Kinesis Data Firehose buffers data up to 5 MB or for 5 minutes, whichever\n * condition is satisfied first. BufferingHints is a hint, so there are some\n * cases where the service cannot adhere to these conditions strictly. For example, record\n * boundaries might be such that the size is a little over or under the configured buffering\n * size. By default, no encryption is performed. We strongly recommend that you enable\n * encryption to ensure secure data storage in Amazon S3.

\n *\n *

A few notes about Amazon Redshift as a destination:

\n *
    \n *
  • \n *

    An Amazon Redshift destination requires an S3 bucket as intermediate location.\n * Kinesis Data Firehose first delivers data to Amazon S3 and then uses\n * COPY syntax to load data into an Amazon Redshift table. This is\n * specified in the RedshiftDestinationConfiguration.S3Configuration\n * parameter.

    \n *\n *
  • \n *
  • \n *

    The compression formats SNAPPY or ZIP cannot be\n * specified in RedshiftDestinationConfiguration.S3Configuration because\n * the Amazon Redshift COPY operation that reads from the S3 bucket doesn't\n * support these compression formats.

    \n *
  • \n *
  • \n *

    We strongly recommend that you use the user name and password you provide\n * exclusively with Kinesis Data Firehose, and that the permissions for the account are\n * restricted for Amazon Redshift INSERT permissions.

    \n *\n *
  • \n *
\n *

Kinesis Data Firehose assumes the IAM role that is configured as part of the\n * destination. The role should allow the Kinesis Data Firehose principal to assume the role,\n * and the role should have permissions that allow the service to deliver the data. For more\n * information, see Grant Kinesis Data\n * Firehose Access to an Amazon S3 Destination in the Amazon Kinesis Data\n * Firehose Developer Guide.

\n */\nvar CreateDeliveryStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateDeliveryStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateDeliveryStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateDeliveryStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"CreateDeliveryStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateDeliveryStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateDeliveryStreamOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateDeliveryStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateDeliveryStreamCommand\"])(input, context);\n };\n CreateDeliveryStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateDeliveryStreamCommand\"])(output, context);\n };\n return CreateDeliveryStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateDeliveryStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/CreateDeliveryStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/DeleteDeliveryStreamCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/DeleteDeliveryStreamCommand.js ***! \***********************************************************************************************/ /*! exports provided: DeleteDeliveryStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteDeliveryStreamCommand\", function() { return DeleteDeliveryStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a delivery stream and its data.

\n *

To check the state of a delivery stream, use DescribeDeliveryStream. You can delete a delivery stream only if it is in one of the following states:\n * ACTIVE, DELETING, CREATING_FAILED, or\n * DELETING_FAILED. You can't delete a delivery stream that is in the\n * CREATING state. While the deletion request is in process, the delivery\n * stream is in the DELETING state.

\n *

While the delivery stream is in the DELETING state, the service might\n * continue to accept records, but it doesn't make any guarantees with respect to delivering\n * the data. Therefore, as a best practice, first stop any applications that are sending\n * records before you delete a delivery stream.

\n */\nvar DeleteDeliveryStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteDeliveryStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteDeliveryStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteDeliveryStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"DeleteDeliveryStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteDeliveryStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteDeliveryStreamOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteDeliveryStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteDeliveryStreamCommand\"])(input, context);\n };\n DeleteDeliveryStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteDeliveryStreamCommand\"])(output, context);\n };\n return DeleteDeliveryStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteDeliveryStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/DeleteDeliveryStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/DescribeDeliveryStreamCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/DescribeDeliveryStreamCommand.js ***! \*************************************************************************************************/ /*! exports provided: DescribeDeliveryStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDeliveryStreamCommand\", function() { return DescribeDeliveryStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Describes the specified delivery stream and its status. For example, after your\n * delivery stream is created, call DescribeDeliveryStream to see whether the\n * delivery stream is ACTIVE and therefore ready for data to be sent to it.

\n *

If the status of a delivery stream is CREATING_FAILED, this status\n * doesn't change, and you can't invoke CreateDeliveryStream again on it.\n * However, you can invoke the DeleteDeliveryStream operation to delete it.\n * If the status is DELETING_FAILED, you can force deletion by invoking DeleteDeliveryStream again but with DeleteDeliveryStreamInput$AllowForceDelete set to true.

\n */\nvar DescribeDeliveryStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeDeliveryStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeDeliveryStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeDeliveryStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"DescribeDeliveryStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDeliveryStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeDeliveryStreamOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeDeliveryStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeDeliveryStreamCommand\"])(input, context);\n };\n DescribeDeliveryStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeDeliveryStreamCommand\"])(output, context);\n };\n return DescribeDeliveryStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeDeliveryStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/DescribeDeliveryStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListDeliveryStreamsCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListDeliveryStreamsCommand.js ***! \**********************************************************************************************/ /*! exports provided: ListDeliveryStreamsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDeliveryStreamsCommand\", function() { return ListDeliveryStreamsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists your delivery streams in alphabetical order of their names.

\n *

The number of delivery streams might be too large to return using a single call to\n * ListDeliveryStreams. You can limit the number of delivery streams returned,\n * using the Limit parameter. To determine whether there are more delivery\n * streams to list, check the value of HasMoreDeliveryStreams in the output. If\n * there are more delivery streams to list, you can request them by calling this operation\n * again and setting the ExclusiveStartDeliveryStreamName parameter to the name\n * of the last delivery stream returned in the last call.

\n */\nvar ListDeliveryStreamsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListDeliveryStreamsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListDeliveryStreamsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListDeliveryStreamsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"ListDeliveryStreamsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListDeliveryStreamsInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListDeliveryStreamsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListDeliveryStreamsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListDeliveryStreamsCommand\"])(input, context);\n };\n ListDeliveryStreamsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListDeliveryStreamsCommand\"])(output, context);\n };\n return ListDeliveryStreamsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListDeliveryStreamsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListDeliveryStreamsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListTagsForDeliveryStreamCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListTagsForDeliveryStreamCommand.js ***! \****************************************************************************************************/ /*! exports provided: ListTagsForDeliveryStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForDeliveryStreamCommand\", function() { return ListTagsForDeliveryStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the tags for the specified delivery stream. This operation has a limit of five\n * transactions per second per account.

\n */\nvar ListTagsForDeliveryStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTagsForDeliveryStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTagsForDeliveryStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTagsForDeliveryStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"ListTagsForDeliveryStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForDeliveryStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForDeliveryStreamOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTagsForDeliveryStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListTagsForDeliveryStreamCommand\"])(input, context);\n };\n ListTagsForDeliveryStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListTagsForDeliveryStreamCommand\"])(output, context);\n };\n return ListTagsForDeliveryStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTagsForDeliveryStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListTagsForDeliveryStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordBatchCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordBatchCommand.js ***! \*****************************************************************************************/ /*! exports provided: PutRecordBatchCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchCommand\", function() { return PutRecordBatchCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Writes multiple data records into a delivery stream in a single call, which can\n * achieve higher throughput per producer than when writing single records. To write single\n * data records into a delivery stream, use PutRecord. Applications using\n * these operations are referred to as producers.

\n *

For information about service quota, see Amazon Kinesis Data Firehose\n * Quota.

\n *

Each PutRecordBatch request supports up to 500 records. Each record\n * in the request can be as large as 1,000 KB (before 64-bit encoding), up to a limit of 4 MB\n * for the entire request. These limits cannot be changed.

\n *

You must specify the name of the delivery stream and the data record when using PutRecord. The data record consists of a data blob that can be up to 1,000\n * KB in size, and any kind of data. For example, it could be a segment from a log file,\n * geographic location data, website clickstream data, and so on.

\n *

Kinesis Data Firehose buffers records before delivering them to the destination. To\n * disambiguate the data blobs at the destination, a common solution is to use delimiters in\n * the data, such as a newline (\\n) or some other character unique within the\n * data. This allows the consumer application to parse individual data items when reading the\n * data from the destination.

\n *

The PutRecordBatch response includes a count of failed records,\n * FailedPutCount, and an array of responses, RequestResponses.\n * Even if the PutRecordBatch call succeeds, the value of\n * FailedPutCount may be greater than 0, indicating that there are records for\n * which the operation didn't succeed. Each entry in the RequestResponses array\n * provides additional information about the processed record. It directly correlates with a\n * record in the request array using the same ordering, from the top to the bottom. The\n * response array always includes the same number of records as the request array.\n * RequestResponses includes both successfully and unsuccessfully processed\n * records. Kinesis Data Firehose tries to process all records in each PutRecordBatch request. A single record failure does not stop the processing\n * of subsequent records.

\n *

A successfully processed record includes a RecordId value, which is\n * unique for the record. An unsuccessfully processed record includes ErrorCode\n * and ErrorMessage values. ErrorCode reflects the type of error,\n * and is one of the following values: ServiceUnavailableException or\n * InternalFailure. ErrorMessage provides more detailed\n * information about the error.

\n *

If there is an internal server error or a timeout, the write might have completed or\n * it might have failed. If FailedPutCount is greater than 0, retry the request,\n * resending only those records that might have failed processing. This minimizes the possible\n * duplicate records and also reduces the total bytes sent (and corresponding charges). We\n * recommend that you handle any duplicates at the destination.

\n *

If PutRecordBatch throws ServiceUnavailableException,\n * back off and retry. If the exception persists, it is possible that the throughput limits\n * have been exceeded for the delivery stream.

\n *\n *

Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they\n * are added to a delivery stream as it attempts to send the records to the destination. If\n * the destination is unreachable for more than 24 hours, the data is no longer\n * available.

\n * \n *

Don't concatenate two or more base64 strings to form the data fields of your records.\n * Instead, concatenate the raw data, then perform base64 encoding.

\n *
\n */\nvar PutRecordBatchCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutRecordBatchCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutRecordBatchCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutRecordBatchCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"PutRecordBatchCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutRecordBatchInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutRecordBatchOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutRecordBatchCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutRecordBatchCommand\"])(input, context);\n };\n PutRecordBatchCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutRecordBatchCommand\"])(output, context);\n };\n return PutRecordBatchCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutRecordBatchCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordBatchCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordCommand.js ***! \************************************************************************************/ /*! exports provided: PutRecordCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordCommand\", function() { return PutRecordCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Writes a single data record into an Amazon Kinesis Data Firehose delivery stream. To\n * write multiple data records into a delivery stream, use PutRecordBatch.\n * Applications using these operations are referred to as producers.

\n *

By default, each delivery stream can take in up to 2,000 transactions per second,\n * 5,000 records per second, or 5 MB per second. If you use PutRecord and\n * PutRecordBatch, the limits are an aggregate across these two\n * operations for each delivery stream. For more information about limits and how to request\n * an increase, see Amazon\n * Kinesis Data Firehose Limits.

\n *

You must specify the name of the delivery stream and the data record when using PutRecord. The data record consists of a data blob that can be up to 1,000\n * KB in size, and any kind of data. For example, it can be a segment from a log file,\n * geographic location data, website clickstream data, and so on.

\n *

Kinesis Data Firehose buffers records before delivering them to the destination. To\n * disambiguate the data blobs at the destination, a common solution is to use delimiters in\n * the data, such as a newline (\\n) or some other character unique within the\n * data. This allows the consumer application to parse individual data items when reading the\n * data from the destination.

\n *

The PutRecord operation returns a RecordId, which is a\n * unique string assigned to each record. Producer applications can use this ID for purposes\n * such as auditability and investigation.

\n *

If the PutRecord operation throws a\n * ServiceUnavailableException, back off and retry. If the exception persists,\n * it is possible that the throughput limits have been exceeded for the delivery stream.

\n *

Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they\n * are added to a delivery stream as it tries to send the records to the destination. If the\n * destination is unreachable for more than 24 hours, the data is no longer\n * available.

\n *\n * \n *

Don't concatenate two or more base64 strings to form the data fields of your records.\n * Instead, concatenate the raw data, then perform base64 encoding.

\n *
\n */\nvar PutRecordCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutRecordCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutRecordCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutRecordCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"PutRecordCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutRecordInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutRecordOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutRecordCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutRecordCommand\"])(input, context);\n };\n PutRecordCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutRecordCommand\"])(output, context);\n };\n return PutRecordCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutRecordCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/StartDeliveryStreamEncryptionCommand.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/StartDeliveryStreamEncryptionCommand.js ***! \********************************************************************************************************/ /*! exports provided: StartDeliveryStreamEncryptionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDeliveryStreamEncryptionCommand\", function() { return StartDeliveryStreamEncryptionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables server-side encryption (SSE) for the delivery stream.

\n *

This operation is asynchronous. It returns immediately. When you invoke it, Kinesis Data\n * Firehose first sets the encryption status of the stream to ENABLING, and then\n * to ENABLED. The encryption status of a delivery stream is the\n * Status property in DeliveryStreamEncryptionConfiguration.\n * If the operation fails, the encryption status changes to ENABLING_FAILED. You\n * can continue to read and write data to your delivery stream while the encryption status is\n * ENABLING, but the data is not encrypted. It can take up to 5 seconds after\n * the encryption status changes to ENABLED before all records written to the\n * delivery stream are encrypted. To find out whether a record or a batch of records was\n * encrypted, check the response elements PutRecordOutput$Encrypted and\n * PutRecordBatchOutput$Encrypted, respectively.

\n *

To check the encryption status of a delivery stream, use DescribeDeliveryStream.

\n *

Even if encryption is currently enabled for a delivery stream, you can still invoke this\n * operation on it to change the ARN of the CMK or both its type and ARN. If you invoke this\n * method to change the CMK, and the old CMK is of type CUSTOMER_MANAGED_CMK,\n * Kinesis Data Firehose schedules the grant it had on the old CMK for retirement. If the new\n * CMK is of type CUSTOMER_MANAGED_CMK, Kinesis Data Firehose creates a grant\n * that enables it to use the new CMK to encrypt and decrypt data and to manage the\n * grant.

\n *

If a delivery stream already has encryption enabled and then you invoke this operation\n * to change the ARN of the CMK or both its type and ARN and you get\n * ENABLING_FAILED, this only means that the attempt to change the CMK failed.\n * In this case, encryption remains enabled with the old CMK.

\n *

If the encryption status of your delivery stream is ENABLING_FAILED, you\n * can invoke this operation again with a valid CMK. The CMK must be enabled and the key\n * policy mustn't explicitly deny the permission for Kinesis Data Firehose to invoke KMS\n * encrypt and decrypt operations.

\n *

You can enable SSE for a delivery stream only if it's a delivery stream that uses\n * DirectPut as its source.

\n *

The StartDeliveryStreamEncryption and\n * StopDeliveryStreamEncryption operations have a combined limit of 25 calls\n * per delivery stream per 24 hours. For example, you reach the limit if you call\n * StartDeliveryStreamEncryption 13 times and\n * StopDeliveryStreamEncryption 12 times for the same delivery stream in a\n * 24-hour period.

\n */\nvar StartDeliveryStreamEncryptionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartDeliveryStreamEncryptionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartDeliveryStreamEncryptionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartDeliveryStreamEncryptionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"StartDeliveryStreamEncryptionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDeliveryStreamEncryptionInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDeliveryStreamEncryptionOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartDeliveryStreamEncryptionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartDeliveryStreamEncryptionCommand\"])(input, context);\n };\n StartDeliveryStreamEncryptionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartDeliveryStreamEncryptionCommand\"])(output, context);\n };\n return StartDeliveryStreamEncryptionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartDeliveryStreamEncryptionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/StartDeliveryStreamEncryptionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/StopDeliveryStreamEncryptionCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/StopDeliveryStreamEncryptionCommand.js ***! \*******************************************************************************************************/ /*! exports provided: StopDeliveryStreamEncryptionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopDeliveryStreamEncryptionCommand\", function() { return StopDeliveryStreamEncryptionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables server-side encryption (SSE) for the delivery stream.

\n *

This operation is asynchronous. It returns immediately. When you invoke it, Kinesis Data\n * Firehose first sets the encryption status of the stream to DISABLING, and then\n * to DISABLED. You can continue to read and write data to your stream while its\n * status is DISABLING. It can take up to 5 seconds after the encryption status\n * changes to DISABLED before all records written to the delivery stream are no\n * longer subject to encryption. To find out whether a record or a batch of records was\n * encrypted, check the response elements PutRecordOutput$Encrypted and\n * PutRecordBatchOutput$Encrypted, respectively.

\n *

To check the encryption state of a delivery stream, use DescribeDeliveryStream.

\n *

If SSE is enabled using a customer managed CMK and then you invoke\n * StopDeliveryStreamEncryption, Kinesis Data Firehose schedules the related\n * KMS grant for retirement and then retires it after it ensures that it is finished\n * delivering records to the destination.

\n *

The StartDeliveryStreamEncryption and\n * StopDeliveryStreamEncryption operations have a combined limit of 25 calls\n * per delivery stream per 24 hours. For example, you reach the limit if you call\n * StartDeliveryStreamEncryption 13 times and\n * StopDeliveryStreamEncryption 12 times for the same delivery stream in a\n * 24-hour period.

\n */\nvar StopDeliveryStreamEncryptionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopDeliveryStreamEncryptionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopDeliveryStreamEncryptionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopDeliveryStreamEncryptionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"StopDeliveryStreamEncryptionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopDeliveryStreamEncryptionInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopDeliveryStreamEncryptionOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopDeliveryStreamEncryptionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopDeliveryStreamEncryptionCommand\"])(input, context);\n };\n StopDeliveryStreamEncryptionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopDeliveryStreamEncryptionCommand\"])(output, context);\n };\n return StopDeliveryStreamEncryptionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopDeliveryStreamEncryptionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/StopDeliveryStreamEncryptionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/TagDeliveryStreamCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/TagDeliveryStreamCommand.js ***! \********************************************************************************************/ /*! exports provided: TagDeliveryStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagDeliveryStreamCommand\", function() { return TagDeliveryStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Adds or updates tags for the specified delivery stream. A tag is a key-value pair\n * that you can define and assign to AWS resources. If you specify a tag that already exists,\n * the tag value is replaced with the value that you specify in the request. Tags are\n * metadata. For example, you can add friendly names and descriptions or other types of\n * information that can help you distinguish the delivery stream. For more information about\n * tags, see Using Cost Allocation Tags in the AWS Billing and Cost Management\n * User Guide.

\n *

Each delivery stream can have up to 50 tags.

\n *

This operation has a limit of five transactions per second per account.

\n */\nvar TagDeliveryStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TagDeliveryStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function TagDeliveryStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n TagDeliveryStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"TagDeliveryStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TagDeliveryStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TagDeliveryStreamOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n TagDeliveryStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1TagDeliveryStreamCommand\"])(input, context);\n };\n TagDeliveryStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1TagDeliveryStreamCommand\"])(output, context);\n };\n return TagDeliveryStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=TagDeliveryStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/TagDeliveryStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/UntagDeliveryStreamCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/UntagDeliveryStreamCommand.js ***! \**********************************************************************************************/ /*! exports provided: UntagDeliveryStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagDeliveryStreamCommand\", function() { return UntagDeliveryStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Removes tags from the specified delivery stream. Removed tags are deleted, and you\n * can't recover them after this operation successfully completes.

\n *

If you specify a tag that doesn't exist, the operation ignores it.

\n *

This operation has a limit of five transactions per second per account.

\n */\nvar UntagDeliveryStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UntagDeliveryStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UntagDeliveryStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UntagDeliveryStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"UntagDeliveryStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UntagDeliveryStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UntagDeliveryStreamOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UntagDeliveryStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UntagDeliveryStreamCommand\"])(input, context);\n };\n UntagDeliveryStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UntagDeliveryStreamCommand\"])(output, context);\n };\n return UntagDeliveryStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UntagDeliveryStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/UntagDeliveryStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/commands/UpdateDestinationCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/commands/UpdateDestinationCommand.js ***! \********************************************************************************************/ /*! exports provided: UpdateDestinationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateDestinationCommand\", function() { return UpdateDestinationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates the specified destination of the specified delivery stream.

\n *\n *

Use this operation to change the destination type (for example, to replace the Amazon\n * S3 destination with Amazon Redshift) or change the parameters associated with a destination\n * (for example, to change the bucket name of the Amazon S3 destination). The update might not\n * occur immediately. The target delivery stream remains active while the configurations are\n * updated, so data writes to the delivery stream can continue during this process. The\n * updated configurations are usually effective within a few minutes.

\n *

Switching between Amazon ES and other services is not supported. For an Amazon ES\n * destination, you can only update to another Amazon ES destination.

\n *

If the destination type is the same, Kinesis Data Firehose merges the configuration\n * parameters specified with the destination configuration that already exists on the delivery\n * stream. If any of the parameters are not specified in the call, the existing values are\n * retained. For example, in the Amazon S3 destination, if EncryptionConfiguration is not specified, then the existing\n * EncryptionConfiguration is maintained on the destination.

\n *

If the destination type is not the same, for example, changing the destination from\n * Amazon S3 to Amazon Redshift, Kinesis Data Firehose does not merge any parameters. In this\n * case, all parameters must be specified.

\n *\n *

Kinesis Data Firehose uses CurrentDeliveryStreamVersionId to avoid race\n * conditions and conflicting merges. This is a required field, and the service updates the\n * configuration only if the existing configuration has a version ID that matches. After the\n * update is applied successfully, the version ID is updated, and can be retrieved using DescribeDeliveryStream. Use the new version ID to set\n * CurrentDeliveryStreamVersionId in the next call.

\n */\nvar UpdateDestinationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateDestinationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateDestinationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateDestinationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"FirehoseClient\";\n var commandName = \"UpdateDestinationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UpdateDestinationInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UpdateDestinationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateDestinationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UpdateDestinationCommand\"])(input, context);\n };\n UpdateDestinationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UpdateDestinationCommand\"])(output, context);\n };\n return UpdateDestinationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateDestinationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/commands/UpdateDestinationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/endpoints.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/endpoints.js ***! \********************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"firehose.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"firehose.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"firehose.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"firehose.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"firehose.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"af-south-1\":\n regionInfo = {\n hostname: \"firehose.af-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-east-1\":\n regionInfo = {\n hostname: \"firehose.ap-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"firehose.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"firehose.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"firehose.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"firehose.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"firehose.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"firehose.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"cn-north-1\":\n regionInfo = {\n hostname: \"firehose.cn-north-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"cn-northwest-1\":\n regionInfo = {\n hostname: \"firehose.cn-northwest-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"firehose.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-north-1\":\n regionInfo = {\n hostname: \"firehose.eu-north-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-south-1\":\n regionInfo = {\n hostname: \"firehose.eu-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"firehose.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"firehose.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-3\":\n regionInfo = {\n hostname: \"firehose.eu-west-3.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"fips-us-east-1\":\n regionInfo = {\n hostname: \"firehose-fips.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"fips-us-east-2\":\n regionInfo = {\n hostname: \"firehose-fips.us-east-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-2\",\n };\n break;\n case \"fips-us-gov-east-1\":\n regionInfo = {\n hostname: \"firehose-fips.us-gov-east-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-east-1\",\n };\n break;\n case \"fips-us-gov-west-1\":\n regionInfo = {\n hostname: \"firehose-fips.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"fips-us-west-1\":\n regionInfo = {\n hostname: \"firehose-fips.us-west-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-1\",\n };\n break;\n case \"fips-us-west-2\":\n regionInfo = {\n hostname: \"firehose-fips.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n case \"me-south-1\":\n regionInfo = {\n hostname: \"firehose.me-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"sa-east-1\":\n regionInfo = {\n hostname: \"firehose.sa-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"firehose.us-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-2\":\n regionInfo = {\n hostname: \"firehose.us-east-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-gov-east-1\":\n regionInfo = {\n hostname: \"firehose.us-gov-east-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"firehose.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n };\n break;\n case \"us-west-1\":\n regionInfo = {\n hostname: \"firehose.us-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"firehose.us-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"firehose\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/index.js ***! \****************************************************************/ /*! exports provided: FirehoseClient, Firehose, CreateDeliveryStreamCommand, DeleteDeliveryStreamCommand, DescribeDeliveryStreamCommand, ListDeliveryStreamsCommand, ListTagsForDeliveryStreamCommand, PutRecordCommand, PutRecordBatchCommand, StartDeliveryStreamEncryptionCommand, StopDeliveryStreamEncryptionCommand, TagDeliveryStreamCommand, UntagDeliveryStreamCommand, UpdateDestinationCommand, BufferingHints, CloudWatchLoggingOptions, CompressionFormat, ConcurrentModificationException, ContentEncoding, CopyCommand, KeyType, DeliveryStreamEncryptionConfigurationInput, ElasticsearchBufferingHints, ProcessorParameterName, ProcessorParameter, Processor, ProcessingConfiguration, ElasticsearchRetryOptions, KMSEncryptionConfig, EncryptionConfiguration, S3DestinationConfiguration, VpcConfiguration, ElasticsearchDestinationConfiguration, HiveJsonSerDe, OpenXJsonSerDe, Deserializer, InputFormatConfiguration, OrcCompression, OrcFormatVersion, OrcSerDe, ParquetCompression, ParquetWriterVersion, ParquetSerDe, Serializer, OutputFormatConfiguration, SchemaConfiguration, DataFormatConversionConfiguration, ExtendedS3DestinationConfiguration, HttpEndpointBufferingHints, HttpEndpointConfiguration, HttpEndpointCommonAttribute, HttpEndpointRequestConfiguration, HttpEndpointRetryOptions, HttpEndpointDestinationConfiguration, KinesisStreamSourceConfiguration, RedshiftRetryOptions, RedshiftDestinationConfiguration, SplunkRetryOptions, SplunkDestinationConfiguration, Tag, CreateDeliveryStreamInput, CreateDeliveryStreamOutput, InvalidArgumentException, InvalidKMSResourceException, LimitExceededException, ResourceInUseException, DeleteDeliveryStreamInput, DeleteDeliveryStreamOutput, ResourceNotFoundException, DeliveryStreamFailureType, FailureDescription, DeliveryStreamEncryptionStatus, DeliveryStreamEncryptionConfiguration, DeliveryStreamStatus, S3DestinationDescription, VpcConfigurationDescription, ElasticsearchDestinationDescription, ExtendedS3DestinationDescription, HttpEndpointDescription, HttpEndpointDestinationDescription, RedshiftDestinationDescription, SplunkDestinationDescription, DestinationDescription, KinesisStreamSourceDescription, SourceDescription, DeliveryStreamDescription, DescribeDeliveryStreamInput, DescribeDeliveryStreamOutput, S3DestinationUpdate, ElasticsearchDestinationUpdate, ExtendedS3DestinationUpdate, ListDeliveryStreamsInput, ListDeliveryStreamsOutput, ListTagsForDeliveryStreamInput, ListTagsForDeliveryStreamOutput, _Record, PutRecordInput, PutRecordOutput, ServiceUnavailableException, PutRecordBatchInput, PutRecordBatchResponseEntry, PutRecordBatchOutput, StartDeliveryStreamEncryptionInput, StartDeliveryStreamEncryptionOutput, StopDeliveryStreamEncryptionInput, StopDeliveryStreamEncryptionOutput, TagDeliveryStreamInput, TagDeliveryStreamOutput, UntagDeliveryStreamInput, UntagDeliveryStreamOutput, HttpEndpointDestinationUpdate, RedshiftDestinationUpdate, SplunkDestinationUpdate, UpdateDestinationInput, UpdateDestinationOutput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _FirehoseClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./FirehoseClient */ \"./node_modules/@aws-sdk/client-firehose/dist/es/FirehoseClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FirehoseClient\", function() { return _FirehoseClient__WEBPACK_IMPORTED_MODULE_0__[\"FirehoseClient\"]; });\n\n/* harmony import */ var _Firehose__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Firehose */ \"./node_modules/@aws-sdk/client-firehose/dist/es/Firehose.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Firehose\", function() { return _Firehose__WEBPACK_IMPORTED_MODULE_1__[\"Firehose\"]; });\n\n/* harmony import */ var _commands_CreateDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CreateDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/CreateDeliveryStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDeliveryStreamCommand\", function() { return _commands_CreateDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_2__[\"CreateDeliveryStreamCommand\"]; });\n\n/* harmony import */ var _commands_DeleteDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DeleteDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/DeleteDeliveryStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDeliveryStreamCommand\", function() { return _commands_DeleteDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_3__[\"DeleteDeliveryStreamCommand\"]; });\n\n/* harmony import */ var _commands_DescribeDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/DescribeDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/DescribeDeliveryStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDeliveryStreamCommand\", function() { return _commands_DescribeDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_4__[\"DescribeDeliveryStreamCommand\"]; });\n\n/* harmony import */ var _commands_ListDeliveryStreamsCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/ListDeliveryStreamsCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListDeliveryStreamsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDeliveryStreamsCommand\", function() { return _commands_ListDeliveryStreamsCommand__WEBPACK_IMPORTED_MODULE_5__[\"ListDeliveryStreamsCommand\"]; });\n\n/* harmony import */ var _commands_ListTagsForDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/ListTagsForDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/ListTagsForDeliveryStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForDeliveryStreamCommand\", function() { return _commands_ListTagsForDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_6__[\"ListTagsForDeliveryStreamCommand\"]; });\n\n/* harmony import */ var _commands_PutRecordCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/PutRecordCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordCommand\", function() { return _commands_PutRecordCommand__WEBPACK_IMPORTED_MODULE_7__[\"PutRecordCommand\"]; });\n\n/* harmony import */ var _commands_PutRecordBatchCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/PutRecordBatchCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/PutRecordBatchCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchCommand\", function() { return _commands_PutRecordBatchCommand__WEBPACK_IMPORTED_MODULE_8__[\"PutRecordBatchCommand\"]; });\n\n/* harmony import */ var _commands_StartDeliveryStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/StartDeliveryStreamEncryptionCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/StartDeliveryStreamEncryptionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDeliveryStreamEncryptionCommand\", function() { return _commands_StartDeliveryStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_9__[\"StartDeliveryStreamEncryptionCommand\"]; });\n\n/* harmony import */ var _commands_StopDeliveryStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/StopDeliveryStreamEncryptionCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/StopDeliveryStreamEncryptionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDeliveryStreamEncryptionCommand\", function() { return _commands_StopDeliveryStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_10__[\"StopDeliveryStreamEncryptionCommand\"]; });\n\n/* harmony import */ var _commands_TagDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/TagDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/TagDeliveryStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagDeliveryStreamCommand\", function() { return _commands_TagDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_11__[\"TagDeliveryStreamCommand\"]; });\n\n/* harmony import */ var _commands_UntagDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/UntagDeliveryStreamCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/UntagDeliveryStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagDeliveryStreamCommand\", function() { return _commands_UntagDeliveryStreamCommand__WEBPACK_IMPORTED_MODULE_12__[\"UntagDeliveryStreamCommand\"]; });\n\n/* harmony import */ var _commands_UpdateDestinationCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/UpdateDestinationCommand */ \"./node_modules/@aws-sdk/client-firehose/dist/es/commands/UpdateDestinationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateDestinationCommand\", function() { return _commands_UpdateDestinationCommand__WEBPACK_IMPORTED_MODULE_13__[\"UpdateDestinationCommand\"]; });\n\n/* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BufferingHints\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"BufferingHints\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CloudWatchLoggingOptions\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"CloudWatchLoggingOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompressionFormat\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"CompressionFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ConcurrentModificationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentEncoding\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ContentEncoding\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyCommand\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"CopyCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"KeyType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamEncryptionConfigurationInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DeliveryStreamEncryptionConfigurationInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchBufferingHints\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ElasticsearchBufferingHints\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProcessorParameterName\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ProcessorParameterName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProcessorParameter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ProcessorParameter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Processor\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"Processor\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProcessingConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ProcessingConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchRetryOptions\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ElasticsearchRetryOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSEncryptionConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"KMSEncryptionConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"EncryptionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3DestinationConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"S3DestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VpcConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"VpcConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchDestinationConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ElasticsearchDestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HiveJsonSerDe\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HiveJsonSerDe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OpenXJsonSerDe\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"OpenXJsonSerDe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Deserializer\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"Deserializer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputFormatConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"InputFormatConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrcCompression\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"OrcCompression\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrcFormatVersion\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"OrcFormatVersion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrcSerDe\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"OrcSerDe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParquetCompression\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ParquetCompression\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParquetWriterVersion\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ParquetWriterVersion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParquetSerDe\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ParquetSerDe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Serializer\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"Serializer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputFormatConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"OutputFormatConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SchemaConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"SchemaConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DataFormatConversionConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DataFormatConversionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtendedS3DestinationConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ExtendedS3DestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointBufferingHints\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HttpEndpointBufferingHints\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HttpEndpointConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointCommonAttribute\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HttpEndpointCommonAttribute\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointRequestConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HttpEndpointRequestConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointRetryOptions\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HttpEndpointRetryOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDestinationConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HttpEndpointDestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KinesisStreamSourceConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"KinesisStreamSourceConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedshiftRetryOptions\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"RedshiftRetryOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedshiftDestinationConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"RedshiftDestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplunkRetryOptions\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"SplunkRetryOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplunkDestinationConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"SplunkDestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"Tag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDeliveryStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"CreateDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDeliveryStreamOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"CreateDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidArgumentException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"InvalidArgumentException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidKMSResourceException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"InvalidKMSResourceException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ResourceInUseException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDeliveryStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DeleteDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDeliveryStreamOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DeleteDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamFailureType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DeliveryStreamFailureType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FailureDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"FailureDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamEncryptionStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DeliveryStreamEncryptionStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamEncryptionConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DeliveryStreamEncryptionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DeliveryStreamStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3DestinationDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"S3DestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VpcConfigurationDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"VpcConfigurationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchDestinationDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ElasticsearchDestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtendedS3DestinationDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ExtendedS3DestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HttpEndpointDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDestinationDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HttpEndpointDestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedshiftDestinationDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"RedshiftDestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplunkDestinationDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"SplunkDestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DestinationDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KinesisStreamSourceDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"KinesisStreamSourceDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SourceDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"SourceDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DeliveryStreamDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDeliveryStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DescribeDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDeliveryStreamOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"DescribeDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3DestinationUpdate\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"S3DestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchDestinationUpdate\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ElasticsearchDestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtendedS3DestinationUpdate\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ExtendedS3DestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDeliveryStreamsInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ListDeliveryStreamsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDeliveryStreamsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ListDeliveryStreamsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForDeliveryStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ListTagsForDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForDeliveryStreamOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ListTagsForDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"_Record\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"_Record\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"PutRecordInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"PutRecordOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceUnavailableException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"ServiceUnavailableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"PutRecordBatchInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchResponseEntry\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"PutRecordBatchResponseEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"PutRecordBatchOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDeliveryStreamEncryptionInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"StartDeliveryStreamEncryptionInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDeliveryStreamEncryptionOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"StartDeliveryStreamEncryptionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDeliveryStreamEncryptionInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"StopDeliveryStreamEncryptionInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDeliveryStreamEncryptionOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"StopDeliveryStreamEncryptionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagDeliveryStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"TagDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagDeliveryStreamOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"TagDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagDeliveryStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"UntagDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagDeliveryStreamOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"UntagDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDestinationUpdate\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"HttpEndpointDestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedshiftDestinationUpdate\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"RedshiftDestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplunkDestinationUpdate\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"SplunkDestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateDestinationInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"UpdateDestinationInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateDestinationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_14__[\"UpdateDestinationOutput\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/models/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/models/index.js ***! \***********************************************************************/ /*! exports provided: BufferingHints, CloudWatchLoggingOptions, CompressionFormat, ConcurrentModificationException, ContentEncoding, CopyCommand, KeyType, DeliveryStreamEncryptionConfigurationInput, ElasticsearchBufferingHints, ProcessorParameterName, ProcessorParameter, Processor, ProcessingConfiguration, ElasticsearchRetryOptions, KMSEncryptionConfig, EncryptionConfiguration, S3DestinationConfiguration, VpcConfiguration, ElasticsearchDestinationConfiguration, HiveJsonSerDe, OpenXJsonSerDe, Deserializer, InputFormatConfiguration, OrcCompression, OrcFormatVersion, OrcSerDe, ParquetCompression, ParquetWriterVersion, ParquetSerDe, Serializer, OutputFormatConfiguration, SchemaConfiguration, DataFormatConversionConfiguration, ExtendedS3DestinationConfiguration, HttpEndpointBufferingHints, HttpEndpointConfiguration, HttpEndpointCommonAttribute, HttpEndpointRequestConfiguration, HttpEndpointRetryOptions, HttpEndpointDestinationConfiguration, KinesisStreamSourceConfiguration, RedshiftRetryOptions, RedshiftDestinationConfiguration, SplunkRetryOptions, SplunkDestinationConfiguration, Tag, CreateDeliveryStreamInput, CreateDeliveryStreamOutput, InvalidArgumentException, InvalidKMSResourceException, LimitExceededException, ResourceInUseException, DeleteDeliveryStreamInput, DeleteDeliveryStreamOutput, ResourceNotFoundException, DeliveryStreamFailureType, FailureDescription, DeliveryStreamEncryptionStatus, DeliveryStreamEncryptionConfiguration, DeliveryStreamStatus, S3DestinationDescription, VpcConfigurationDescription, ElasticsearchDestinationDescription, ExtendedS3DestinationDescription, HttpEndpointDescription, HttpEndpointDestinationDescription, RedshiftDestinationDescription, SplunkDestinationDescription, DestinationDescription, KinesisStreamSourceDescription, SourceDescription, DeliveryStreamDescription, DescribeDeliveryStreamInput, DescribeDeliveryStreamOutput, S3DestinationUpdate, ElasticsearchDestinationUpdate, ExtendedS3DestinationUpdate, ListDeliveryStreamsInput, ListDeliveryStreamsOutput, ListTagsForDeliveryStreamInput, ListTagsForDeliveryStreamOutput, _Record, PutRecordInput, PutRecordOutput, ServiceUnavailableException, PutRecordBatchInput, PutRecordBatchResponseEntry, PutRecordBatchOutput, StartDeliveryStreamEncryptionInput, StartDeliveryStreamEncryptionOutput, StopDeliveryStreamEncryptionInput, StopDeliveryStreamEncryptionOutput, TagDeliveryStreamInput, TagDeliveryStreamOutput, UntagDeliveryStreamInput, UntagDeliveryStreamOutput, HttpEndpointDestinationUpdate, RedshiftDestinationUpdate, SplunkDestinationUpdate, UpdateDestinationInput, UpdateDestinationOutput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BufferingHints\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BufferingHints\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CloudWatchLoggingOptions\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CloudWatchLoggingOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompressionFormat\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CompressionFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConcurrentModificationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentEncoding\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ContentEncoding\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyCommand\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CopyCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KeyType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamEncryptionConfigurationInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeliveryStreamEncryptionConfigurationInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchBufferingHints\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ElasticsearchBufferingHints\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProcessorParameterName\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProcessorParameterName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProcessorParameter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProcessorParameter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Processor\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Processor\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProcessingConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProcessingConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchRetryOptions\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ElasticsearchRetryOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSEncryptionConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KMSEncryptionConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EncryptionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3DestinationConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"S3DestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VpcConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VpcConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchDestinationConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ElasticsearchDestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HiveJsonSerDe\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HiveJsonSerDe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OpenXJsonSerDe\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OpenXJsonSerDe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Deserializer\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Deserializer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputFormatConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InputFormatConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrcCompression\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OrcCompression\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrcFormatVersion\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OrcFormatVersion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrcSerDe\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OrcSerDe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParquetCompression\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ParquetCompression\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParquetWriterVersion\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ParquetWriterVersion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParquetSerDe\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ParquetSerDe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Serializer\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Serializer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputFormatConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OutputFormatConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SchemaConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SchemaConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DataFormatConversionConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DataFormatConversionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtendedS3DestinationConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExtendedS3DestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointBufferingHints\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HttpEndpointBufferingHints\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HttpEndpointConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointCommonAttribute\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HttpEndpointCommonAttribute\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointRequestConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HttpEndpointRequestConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointRetryOptions\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HttpEndpointRetryOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDestinationConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HttpEndpointDestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KinesisStreamSourceConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KinesisStreamSourceConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedshiftRetryOptions\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RedshiftRetryOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedshiftDestinationConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RedshiftDestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplunkRetryOptions\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SplunkRetryOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplunkDestinationConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SplunkDestinationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Tag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDeliveryStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateDeliveryStreamOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidArgumentException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidArgumentException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidKMSResourceException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidKMSResourceException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceInUseException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDeliveryStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteDeliveryStreamOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamFailureType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeliveryStreamFailureType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FailureDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FailureDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamEncryptionStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeliveryStreamEncryptionStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamEncryptionConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeliveryStreamEncryptionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeliveryStreamStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3DestinationDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"S3DestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VpcConfigurationDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VpcConfigurationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchDestinationDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ElasticsearchDestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtendedS3DestinationDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExtendedS3DestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HttpEndpointDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDestinationDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HttpEndpointDestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedshiftDestinationDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RedshiftDestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplunkDestinationDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SplunkDestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DestinationDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DestinationDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KinesisStreamSourceDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KinesisStreamSourceDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SourceDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SourceDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeliveryStreamDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDeliveryStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeDeliveryStreamOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3DestinationUpdate\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"S3DestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchDestinationUpdate\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ElasticsearchDestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtendedS3DestinationUpdate\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExtendedS3DestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDeliveryStreamsInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDeliveryStreamsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDeliveryStreamsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDeliveryStreamsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForDeliveryStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForDeliveryStreamOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"_Record\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"_Record\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceUnavailableException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ServiceUnavailableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordBatchInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchResponseEntry\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordBatchResponseEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordBatchOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDeliveryStreamEncryptionInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDeliveryStreamEncryptionInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDeliveryStreamEncryptionOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDeliveryStreamEncryptionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDeliveryStreamEncryptionInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopDeliveryStreamEncryptionInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopDeliveryStreamEncryptionOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopDeliveryStreamEncryptionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagDeliveryStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TagDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagDeliveryStreamOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TagDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagDeliveryStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UntagDeliveryStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagDeliveryStreamOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UntagDeliveryStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDestinationUpdate\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HttpEndpointDestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedshiftDestinationUpdate\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RedshiftDestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplunkDestinationUpdate\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SplunkDestinationUpdate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateDestinationInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateDestinationInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateDestinationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateDestinationOutput\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js ***! \**************************************************************************/ /*! exports provided: BufferingHints, CloudWatchLoggingOptions, CompressionFormat, ConcurrentModificationException, ContentEncoding, CopyCommand, KeyType, DeliveryStreamEncryptionConfigurationInput, ElasticsearchBufferingHints, ProcessorParameterName, ProcessorParameter, Processor, ProcessingConfiguration, ElasticsearchRetryOptions, KMSEncryptionConfig, EncryptionConfiguration, S3DestinationConfiguration, VpcConfiguration, ElasticsearchDestinationConfiguration, HiveJsonSerDe, OpenXJsonSerDe, Deserializer, InputFormatConfiguration, OrcCompression, OrcFormatVersion, OrcSerDe, ParquetCompression, ParquetWriterVersion, ParquetSerDe, Serializer, OutputFormatConfiguration, SchemaConfiguration, DataFormatConversionConfiguration, ExtendedS3DestinationConfiguration, HttpEndpointBufferingHints, HttpEndpointConfiguration, HttpEndpointCommonAttribute, HttpEndpointRequestConfiguration, HttpEndpointRetryOptions, HttpEndpointDestinationConfiguration, KinesisStreamSourceConfiguration, RedshiftRetryOptions, RedshiftDestinationConfiguration, SplunkRetryOptions, SplunkDestinationConfiguration, Tag, CreateDeliveryStreamInput, CreateDeliveryStreamOutput, InvalidArgumentException, InvalidKMSResourceException, LimitExceededException, ResourceInUseException, DeleteDeliveryStreamInput, DeleteDeliveryStreamOutput, ResourceNotFoundException, DeliveryStreamFailureType, FailureDescription, DeliveryStreamEncryptionStatus, DeliveryStreamEncryptionConfiguration, DeliveryStreamStatus, S3DestinationDescription, VpcConfigurationDescription, ElasticsearchDestinationDescription, ExtendedS3DestinationDescription, HttpEndpointDescription, HttpEndpointDestinationDescription, RedshiftDestinationDescription, SplunkDestinationDescription, DestinationDescription, KinesisStreamSourceDescription, SourceDescription, DeliveryStreamDescription, DescribeDeliveryStreamInput, DescribeDeliveryStreamOutput, S3DestinationUpdate, ElasticsearchDestinationUpdate, ExtendedS3DestinationUpdate, ListDeliveryStreamsInput, ListDeliveryStreamsOutput, ListTagsForDeliveryStreamInput, ListTagsForDeliveryStreamOutput, _Record, PutRecordInput, PutRecordOutput, ServiceUnavailableException, PutRecordBatchInput, PutRecordBatchResponseEntry, PutRecordBatchOutput, StartDeliveryStreamEncryptionInput, StartDeliveryStreamEncryptionOutput, StopDeliveryStreamEncryptionInput, StopDeliveryStreamEncryptionOutput, TagDeliveryStreamInput, TagDeliveryStreamOutput, UntagDeliveryStreamInput, UntagDeliveryStreamOutput, HttpEndpointDestinationUpdate, RedshiftDestinationUpdate, SplunkDestinationUpdate, UpdateDestinationInput, UpdateDestinationOutput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BufferingHints\", function() { return BufferingHints; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CloudWatchLoggingOptions\", function() { return CloudWatchLoggingOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompressionFormat\", function() { return CompressionFormat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return ConcurrentModificationException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ContentEncoding\", function() { return ContentEncoding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CopyCommand\", function() { return CopyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KeyType\", function() { return KeyType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamEncryptionConfigurationInput\", function() { return DeliveryStreamEncryptionConfigurationInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchBufferingHints\", function() { return ElasticsearchBufferingHints; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProcessorParameterName\", function() { return ProcessorParameterName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProcessorParameter\", function() { return ProcessorParameter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Processor\", function() { return Processor; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProcessingConfiguration\", function() { return ProcessingConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchRetryOptions\", function() { return ElasticsearchRetryOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KMSEncryptionConfig\", function() { return KMSEncryptionConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EncryptionConfiguration\", function() { return EncryptionConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3DestinationConfiguration\", function() { return S3DestinationConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VpcConfiguration\", function() { return VpcConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchDestinationConfiguration\", function() { return ElasticsearchDestinationConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HiveJsonSerDe\", function() { return HiveJsonSerDe; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OpenXJsonSerDe\", function() { return OpenXJsonSerDe; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Deserializer\", function() { return Deserializer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InputFormatConfiguration\", function() { return InputFormatConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OrcCompression\", function() { return OrcCompression; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OrcFormatVersion\", function() { return OrcFormatVersion; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OrcSerDe\", function() { return OrcSerDe; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ParquetCompression\", function() { return ParquetCompression; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ParquetWriterVersion\", function() { return ParquetWriterVersion; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ParquetSerDe\", function() { return ParquetSerDe; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Serializer\", function() { return Serializer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OutputFormatConfiguration\", function() { return OutputFormatConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SchemaConfiguration\", function() { return SchemaConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DataFormatConversionConfiguration\", function() { return DataFormatConversionConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExtendedS3DestinationConfiguration\", function() { return ExtendedS3DestinationConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointBufferingHints\", function() { return HttpEndpointBufferingHints; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointConfiguration\", function() { return HttpEndpointConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointCommonAttribute\", function() { return HttpEndpointCommonAttribute; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointRequestConfiguration\", function() { return HttpEndpointRequestConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointRetryOptions\", function() { return HttpEndpointRetryOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDestinationConfiguration\", function() { return HttpEndpointDestinationConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KinesisStreamSourceConfiguration\", function() { return KinesisStreamSourceConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RedshiftRetryOptions\", function() { return RedshiftRetryOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RedshiftDestinationConfiguration\", function() { return RedshiftDestinationConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SplunkRetryOptions\", function() { return SplunkRetryOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SplunkDestinationConfiguration\", function() { return SplunkDestinationConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return Tag; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateDeliveryStreamInput\", function() { return CreateDeliveryStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateDeliveryStreamOutput\", function() { return CreateDeliveryStreamOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidArgumentException\", function() { return InvalidArgumentException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidKMSResourceException\", function() { return InvalidKMSResourceException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return LimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return ResourceInUseException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteDeliveryStreamInput\", function() { return DeleteDeliveryStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteDeliveryStreamOutput\", function() { return DeleteDeliveryStreamOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamFailureType\", function() { return DeliveryStreamFailureType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FailureDescription\", function() { return FailureDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamEncryptionStatus\", function() { return DeliveryStreamEncryptionStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamEncryptionConfiguration\", function() { return DeliveryStreamEncryptionConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamStatus\", function() { return DeliveryStreamStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3DestinationDescription\", function() { return S3DestinationDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VpcConfigurationDescription\", function() { return VpcConfigurationDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchDestinationDescription\", function() { return ElasticsearchDestinationDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExtendedS3DestinationDescription\", function() { return ExtendedS3DestinationDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDescription\", function() { return HttpEndpointDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDestinationDescription\", function() { return HttpEndpointDestinationDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RedshiftDestinationDescription\", function() { return RedshiftDestinationDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SplunkDestinationDescription\", function() { return SplunkDestinationDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DestinationDescription\", function() { return DestinationDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KinesisStreamSourceDescription\", function() { return KinesisStreamSourceDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SourceDescription\", function() { return SourceDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStreamDescription\", function() { return DeliveryStreamDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDeliveryStreamInput\", function() { return DescribeDeliveryStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeDeliveryStreamOutput\", function() { return DescribeDeliveryStreamOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3DestinationUpdate\", function() { return S3DestinationUpdate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ElasticsearchDestinationUpdate\", function() { return ElasticsearchDestinationUpdate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExtendedS3DestinationUpdate\", function() { return ExtendedS3DestinationUpdate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDeliveryStreamsInput\", function() { return ListDeliveryStreamsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDeliveryStreamsOutput\", function() { return ListDeliveryStreamsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForDeliveryStreamInput\", function() { return ListTagsForDeliveryStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForDeliveryStreamOutput\", function() { return ListTagsForDeliveryStreamOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"_Record\", function() { return _Record; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordInput\", function() { return PutRecordInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordOutput\", function() { return PutRecordOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceUnavailableException\", function() { return ServiceUnavailableException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchInput\", function() { return PutRecordBatchInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchResponseEntry\", function() { return PutRecordBatchResponseEntry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordBatchOutput\", function() { return PutRecordBatchOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDeliveryStreamEncryptionInput\", function() { return StartDeliveryStreamEncryptionInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDeliveryStreamEncryptionOutput\", function() { return StartDeliveryStreamEncryptionOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopDeliveryStreamEncryptionInput\", function() { return StopDeliveryStreamEncryptionInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopDeliveryStreamEncryptionOutput\", function() { return StopDeliveryStreamEncryptionOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagDeliveryStreamInput\", function() { return TagDeliveryStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagDeliveryStreamOutput\", function() { return TagDeliveryStreamOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagDeliveryStreamInput\", function() { return UntagDeliveryStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagDeliveryStreamOutput\", function() { return UntagDeliveryStreamOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpEndpointDestinationUpdate\", function() { return HttpEndpointDestinationUpdate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RedshiftDestinationUpdate\", function() { return RedshiftDestinationUpdate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SplunkDestinationUpdate\", function() { return SplunkDestinationUpdate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateDestinationInput\", function() { return UpdateDestinationInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateDestinationOutput\", function() { return UpdateDestinationOutput; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\nvar BufferingHints;\n(function (BufferingHints) {\n BufferingHints.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BufferingHints || (BufferingHints = {}));\nvar CloudWatchLoggingOptions;\n(function (CloudWatchLoggingOptions) {\n CloudWatchLoggingOptions.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CloudWatchLoggingOptions || (CloudWatchLoggingOptions = {}));\nvar CompressionFormat;\n(function (CompressionFormat) {\n CompressionFormat[\"GZIP\"] = \"GZIP\";\n CompressionFormat[\"HADOOP_SNAPPY\"] = \"HADOOP_SNAPPY\";\n CompressionFormat[\"SNAPPY\"] = \"Snappy\";\n CompressionFormat[\"UNCOMPRESSED\"] = \"UNCOMPRESSED\";\n CompressionFormat[\"ZIP\"] = \"ZIP\";\n})(CompressionFormat || (CompressionFormat = {}));\nvar ConcurrentModificationException;\n(function (ConcurrentModificationException) {\n ConcurrentModificationException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ConcurrentModificationException || (ConcurrentModificationException = {}));\nvar ContentEncoding;\n(function (ContentEncoding) {\n ContentEncoding[\"GZIP\"] = \"GZIP\";\n ContentEncoding[\"NONE\"] = \"NONE\";\n})(ContentEncoding || (ContentEncoding = {}));\nvar CopyCommand;\n(function (CopyCommand) {\n CopyCommand.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CopyCommand || (CopyCommand = {}));\nvar KeyType;\n(function (KeyType) {\n KeyType[\"AWS_OWNED_CMK\"] = \"AWS_OWNED_CMK\";\n KeyType[\"CUSTOMER_MANAGED_CMK\"] = \"CUSTOMER_MANAGED_CMK\";\n})(KeyType || (KeyType = {}));\nvar DeliveryStreamEncryptionConfigurationInput;\n(function (DeliveryStreamEncryptionConfigurationInput) {\n DeliveryStreamEncryptionConfigurationInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeliveryStreamEncryptionConfigurationInput || (DeliveryStreamEncryptionConfigurationInput = {}));\nvar ElasticsearchBufferingHints;\n(function (ElasticsearchBufferingHints) {\n ElasticsearchBufferingHints.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ElasticsearchBufferingHints || (ElasticsearchBufferingHints = {}));\nvar ProcessorParameterName;\n(function (ProcessorParameterName) {\n ProcessorParameterName[\"BUFFER_INTERVAL_IN_SECONDS\"] = \"BufferIntervalInSeconds\";\n ProcessorParameterName[\"BUFFER_SIZE_IN_MB\"] = \"BufferSizeInMBs\";\n ProcessorParameterName[\"LAMBDA_ARN\"] = \"LambdaArn\";\n ProcessorParameterName[\"LAMBDA_NUMBER_OF_RETRIES\"] = \"NumberOfRetries\";\n ProcessorParameterName[\"ROLE_ARN\"] = \"RoleArn\";\n})(ProcessorParameterName || (ProcessorParameterName = {}));\nvar ProcessorParameter;\n(function (ProcessorParameter) {\n ProcessorParameter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProcessorParameter || (ProcessorParameter = {}));\nvar Processor;\n(function (Processor) {\n Processor.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Processor || (Processor = {}));\nvar ProcessingConfiguration;\n(function (ProcessingConfiguration) {\n ProcessingConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProcessingConfiguration || (ProcessingConfiguration = {}));\nvar ElasticsearchRetryOptions;\n(function (ElasticsearchRetryOptions) {\n ElasticsearchRetryOptions.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ElasticsearchRetryOptions || (ElasticsearchRetryOptions = {}));\nvar KMSEncryptionConfig;\n(function (KMSEncryptionConfig) {\n KMSEncryptionConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KMSEncryptionConfig || (KMSEncryptionConfig = {}));\nvar EncryptionConfiguration;\n(function (EncryptionConfiguration) {\n EncryptionConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EncryptionConfiguration || (EncryptionConfiguration = {}));\nvar S3DestinationConfiguration;\n(function (S3DestinationConfiguration) {\n S3DestinationConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(S3DestinationConfiguration || (S3DestinationConfiguration = {}));\nvar VpcConfiguration;\n(function (VpcConfiguration) {\n VpcConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VpcConfiguration || (VpcConfiguration = {}));\nvar ElasticsearchDestinationConfiguration;\n(function (ElasticsearchDestinationConfiguration) {\n ElasticsearchDestinationConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ElasticsearchDestinationConfiguration || (ElasticsearchDestinationConfiguration = {}));\nvar HiveJsonSerDe;\n(function (HiveJsonSerDe) {\n HiveJsonSerDe.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HiveJsonSerDe || (HiveJsonSerDe = {}));\nvar OpenXJsonSerDe;\n(function (OpenXJsonSerDe) {\n OpenXJsonSerDe.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OpenXJsonSerDe || (OpenXJsonSerDe = {}));\nvar Deserializer;\n(function (Deserializer) {\n Deserializer.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Deserializer || (Deserializer = {}));\nvar InputFormatConfiguration;\n(function (InputFormatConfiguration) {\n InputFormatConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InputFormatConfiguration || (InputFormatConfiguration = {}));\nvar OrcCompression;\n(function (OrcCompression) {\n OrcCompression[\"NONE\"] = \"NONE\";\n OrcCompression[\"SNAPPY\"] = \"SNAPPY\";\n OrcCompression[\"ZLIB\"] = \"ZLIB\";\n})(OrcCompression || (OrcCompression = {}));\nvar OrcFormatVersion;\n(function (OrcFormatVersion) {\n OrcFormatVersion[\"V0_11\"] = \"V0_11\";\n OrcFormatVersion[\"V0_12\"] = \"V0_12\";\n})(OrcFormatVersion || (OrcFormatVersion = {}));\nvar OrcSerDe;\n(function (OrcSerDe) {\n OrcSerDe.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OrcSerDe || (OrcSerDe = {}));\nvar ParquetCompression;\n(function (ParquetCompression) {\n ParquetCompression[\"GZIP\"] = \"GZIP\";\n ParquetCompression[\"SNAPPY\"] = \"SNAPPY\";\n ParquetCompression[\"UNCOMPRESSED\"] = \"UNCOMPRESSED\";\n})(ParquetCompression || (ParquetCompression = {}));\nvar ParquetWriterVersion;\n(function (ParquetWriterVersion) {\n ParquetWriterVersion[\"V1\"] = \"V1\";\n ParquetWriterVersion[\"V2\"] = \"V2\";\n})(ParquetWriterVersion || (ParquetWriterVersion = {}));\nvar ParquetSerDe;\n(function (ParquetSerDe) {\n ParquetSerDe.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ParquetSerDe || (ParquetSerDe = {}));\nvar Serializer;\n(function (Serializer) {\n Serializer.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Serializer || (Serializer = {}));\nvar OutputFormatConfiguration;\n(function (OutputFormatConfiguration) {\n OutputFormatConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OutputFormatConfiguration || (OutputFormatConfiguration = {}));\nvar SchemaConfiguration;\n(function (SchemaConfiguration) {\n SchemaConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SchemaConfiguration || (SchemaConfiguration = {}));\nvar DataFormatConversionConfiguration;\n(function (DataFormatConversionConfiguration) {\n DataFormatConversionConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DataFormatConversionConfiguration || (DataFormatConversionConfiguration = {}));\nvar ExtendedS3DestinationConfiguration;\n(function (ExtendedS3DestinationConfiguration) {\n ExtendedS3DestinationConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExtendedS3DestinationConfiguration || (ExtendedS3DestinationConfiguration = {}));\nvar HttpEndpointBufferingHints;\n(function (HttpEndpointBufferingHints) {\n HttpEndpointBufferingHints.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HttpEndpointBufferingHints || (HttpEndpointBufferingHints = {}));\nvar HttpEndpointConfiguration;\n(function (HttpEndpointConfiguration) {\n HttpEndpointConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Url && { Url: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.AccessKey && { AccessKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(HttpEndpointConfiguration || (HttpEndpointConfiguration = {}));\nvar HttpEndpointCommonAttribute;\n(function (HttpEndpointCommonAttribute) {\n HttpEndpointCommonAttribute.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.AttributeName && { AttributeName: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.AttributeValue && { AttributeValue: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(HttpEndpointCommonAttribute || (HttpEndpointCommonAttribute = {}));\nvar HttpEndpointRequestConfiguration;\n(function (HttpEndpointRequestConfiguration) {\n HttpEndpointRequestConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.CommonAttributes && {\n CommonAttributes: obj.CommonAttributes.map(function (item) { return HttpEndpointCommonAttribute.filterSensitiveLog(item); }),\n }))); };\n})(HttpEndpointRequestConfiguration || (HttpEndpointRequestConfiguration = {}));\nvar HttpEndpointRetryOptions;\n(function (HttpEndpointRetryOptions) {\n HttpEndpointRetryOptions.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HttpEndpointRetryOptions || (HttpEndpointRetryOptions = {}));\nvar HttpEndpointDestinationConfiguration;\n(function (HttpEndpointDestinationConfiguration) {\n HttpEndpointDestinationConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.EndpointConfiguration && {\n EndpointConfiguration: HttpEndpointConfiguration.filterSensitiveLog(obj.EndpointConfiguration),\n })), (obj.RequestConfiguration && {\n RequestConfiguration: HttpEndpointRequestConfiguration.filterSensitiveLog(obj.RequestConfiguration),\n }))); };\n})(HttpEndpointDestinationConfiguration || (HttpEndpointDestinationConfiguration = {}));\nvar KinesisStreamSourceConfiguration;\n(function (KinesisStreamSourceConfiguration) {\n KinesisStreamSourceConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KinesisStreamSourceConfiguration || (KinesisStreamSourceConfiguration = {}));\nvar RedshiftRetryOptions;\n(function (RedshiftRetryOptions) {\n RedshiftRetryOptions.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RedshiftRetryOptions || (RedshiftRetryOptions = {}));\nvar RedshiftDestinationConfiguration;\n(function (RedshiftDestinationConfiguration) {\n RedshiftDestinationConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Username && { Username: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.Password && { Password: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(RedshiftDestinationConfiguration || (RedshiftDestinationConfiguration = {}));\nvar SplunkRetryOptions;\n(function (SplunkRetryOptions) {\n SplunkRetryOptions.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SplunkRetryOptions || (SplunkRetryOptions = {}));\nvar SplunkDestinationConfiguration;\n(function (SplunkDestinationConfiguration) {\n SplunkDestinationConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SplunkDestinationConfiguration || (SplunkDestinationConfiguration = {}));\nvar Tag;\n(function (Tag) {\n Tag.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Tag || (Tag = {}));\nvar CreateDeliveryStreamInput;\n(function (CreateDeliveryStreamInput) {\n CreateDeliveryStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.RedshiftDestinationConfiguration && {\n RedshiftDestinationConfiguration: RedshiftDestinationConfiguration.filterSensitiveLog(obj.RedshiftDestinationConfiguration),\n })), (obj.HttpEndpointDestinationConfiguration && {\n HttpEndpointDestinationConfiguration: HttpEndpointDestinationConfiguration.filterSensitiveLog(obj.HttpEndpointDestinationConfiguration),\n }))); };\n})(CreateDeliveryStreamInput || (CreateDeliveryStreamInput = {}));\nvar CreateDeliveryStreamOutput;\n(function (CreateDeliveryStreamOutput) {\n CreateDeliveryStreamOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateDeliveryStreamOutput || (CreateDeliveryStreamOutput = {}));\nvar InvalidArgumentException;\n(function (InvalidArgumentException) {\n InvalidArgumentException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidArgumentException || (InvalidArgumentException = {}));\nvar InvalidKMSResourceException;\n(function (InvalidKMSResourceException) {\n InvalidKMSResourceException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidKMSResourceException || (InvalidKMSResourceException = {}));\nvar LimitExceededException;\n(function (LimitExceededException) {\n LimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LimitExceededException || (LimitExceededException = {}));\nvar ResourceInUseException;\n(function (ResourceInUseException) {\n ResourceInUseException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceInUseException || (ResourceInUseException = {}));\nvar DeleteDeliveryStreamInput;\n(function (DeleteDeliveryStreamInput) {\n DeleteDeliveryStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteDeliveryStreamInput || (DeleteDeliveryStreamInput = {}));\nvar DeleteDeliveryStreamOutput;\n(function (DeleteDeliveryStreamOutput) {\n DeleteDeliveryStreamOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteDeliveryStreamOutput || (DeleteDeliveryStreamOutput = {}));\nvar ResourceNotFoundException;\n(function (ResourceNotFoundException) {\n ResourceNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceNotFoundException || (ResourceNotFoundException = {}));\nvar DeliveryStreamFailureType;\n(function (DeliveryStreamFailureType) {\n DeliveryStreamFailureType[\"CREATE_ENI_FAILED\"] = \"CREATE_ENI_FAILED\";\n DeliveryStreamFailureType[\"CREATE_KMS_GRANT_FAILED\"] = \"CREATE_KMS_GRANT_FAILED\";\n DeliveryStreamFailureType[\"DELETE_ENI_FAILED\"] = \"DELETE_ENI_FAILED\";\n DeliveryStreamFailureType[\"DISABLED_KMS_KEY\"] = \"DISABLED_KMS_KEY\";\n DeliveryStreamFailureType[\"ENI_ACCESS_DENIED\"] = \"ENI_ACCESS_DENIED\";\n DeliveryStreamFailureType[\"INVALID_KMS_KEY\"] = \"INVALID_KMS_KEY\";\n DeliveryStreamFailureType[\"KMS_ACCESS_DENIED\"] = \"KMS_ACCESS_DENIED\";\n DeliveryStreamFailureType[\"KMS_KEY_NOT_FOUND\"] = \"KMS_KEY_NOT_FOUND\";\n DeliveryStreamFailureType[\"KMS_OPT_IN_REQUIRED\"] = \"KMS_OPT_IN_REQUIRED\";\n DeliveryStreamFailureType[\"RETIRE_KMS_GRANT_FAILED\"] = \"RETIRE_KMS_GRANT_FAILED\";\n DeliveryStreamFailureType[\"SECURITY_GROUP_ACCESS_DENIED\"] = \"SECURITY_GROUP_ACCESS_DENIED\";\n DeliveryStreamFailureType[\"SECURITY_GROUP_NOT_FOUND\"] = \"SECURITY_GROUP_NOT_FOUND\";\n DeliveryStreamFailureType[\"SUBNET_ACCESS_DENIED\"] = \"SUBNET_ACCESS_DENIED\";\n DeliveryStreamFailureType[\"SUBNET_NOT_FOUND\"] = \"SUBNET_NOT_FOUND\";\n DeliveryStreamFailureType[\"UNKNOWN_ERROR\"] = \"UNKNOWN_ERROR\";\n})(DeliveryStreamFailureType || (DeliveryStreamFailureType = {}));\nvar FailureDescription;\n(function (FailureDescription) {\n FailureDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FailureDescription || (FailureDescription = {}));\nvar DeliveryStreamEncryptionStatus;\n(function (DeliveryStreamEncryptionStatus) {\n DeliveryStreamEncryptionStatus[\"DISABLED\"] = \"DISABLED\";\n DeliveryStreamEncryptionStatus[\"DISABLING\"] = \"DISABLING\";\n DeliveryStreamEncryptionStatus[\"DISABLING_FAILED\"] = \"DISABLING_FAILED\";\n DeliveryStreamEncryptionStatus[\"ENABLED\"] = \"ENABLED\";\n DeliveryStreamEncryptionStatus[\"ENABLING\"] = \"ENABLING\";\n DeliveryStreamEncryptionStatus[\"ENABLING_FAILED\"] = \"ENABLING_FAILED\";\n})(DeliveryStreamEncryptionStatus || (DeliveryStreamEncryptionStatus = {}));\nvar DeliveryStreamEncryptionConfiguration;\n(function (DeliveryStreamEncryptionConfiguration) {\n DeliveryStreamEncryptionConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeliveryStreamEncryptionConfiguration || (DeliveryStreamEncryptionConfiguration = {}));\nvar DeliveryStreamStatus;\n(function (DeliveryStreamStatus) {\n DeliveryStreamStatus[\"ACTIVE\"] = \"ACTIVE\";\n DeliveryStreamStatus[\"CREATING\"] = \"CREATING\";\n DeliveryStreamStatus[\"CREATING_FAILED\"] = \"CREATING_FAILED\";\n DeliveryStreamStatus[\"DELETING\"] = \"DELETING\";\n DeliveryStreamStatus[\"DELETING_FAILED\"] = \"DELETING_FAILED\";\n})(DeliveryStreamStatus || (DeliveryStreamStatus = {}));\nvar S3DestinationDescription;\n(function (S3DestinationDescription) {\n S3DestinationDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(S3DestinationDescription || (S3DestinationDescription = {}));\nvar VpcConfigurationDescription;\n(function (VpcConfigurationDescription) {\n VpcConfigurationDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VpcConfigurationDescription || (VpcConfigurationDescription = {}));\nvar ElasticsearchDestinationDescription;\n(function (ElasticsearchDestinationDescription) {\n ElasticsearchDestinationDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ElasticsearchDestinationDescription || (ElasticsearchDestinationDescription = {}));\nvar ExtendedS3DestinationDescription;\n(function (ExtendedS3DestinationDescription) {\n ExtendedS3DestinationDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExtendedS3DestinationDescription || (ExtendedS3DestinationDescription = {}));\nvar HttpEndpointDescription;\n(function (HttpEndpointDescription) {\n HttpEndpointDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Url && { Url: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(HttpEndpointDescription || (HttpEndpointDescription = {}));\nvar HttpEndpointDestinationDescription;\n(function (HttpEndpointDestinationDescription) {\n HttpEndpointDestinationDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.EndpointConfiguration && {\n EndpointConfiguration: HttpEndpointDescription.filterSensitiveLog(obj.EndpointConfiguration),\n })), (obj.RequestConfiguration && {\n RequestConfiguration: HttpEndpointRequestConfiguration.filterSensitiveLog(obj.RequestConfiguration),\n }))); };\n})(HttpEndpointDestinationDescription || (HttpEndpointDestinationDescription = {}));\nvar RedshiftDestinationDescription;\n(function (RedshiftDestinationDescription) {\n RedshiftDestinationDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Username && { Username: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(RedshiftDestinationDescription || (RedshiftDestinationDescription = {}));\nvar SplunkDestinationDescription;\n(function (SplunkDestinationDescription) {\n SplunkDestinationDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SplunkDestinationDescription || (SplunkDestinationDescription = {}));\nvar DestinationDescription;\n(function (DestinationDescription) {\n DestinationDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.RedshiftDestinationDescription && {\n RedshiftDestinationDescription: RedshiftDestinationDescription.filterSensitiveLog(obj.RedshiftDestinationDescription),\n })), (obj.HttpEndpointDestinationDescription && {\n HttpEndpointDestinationDescription: HttpEndpointDestinationDescription.filterSensitiveLog(obj.HttpEndpointDestinationDescription),\n }))); };\n})(DestinationDescription || (DestinationDescription = {}));\nvar KinesisStreamSourceDescription;\n(function (KinesisStreamSourceDescription) {\n KinesisStreamSourceDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KinesisStreamSourceDescription || (KinesisStreamSourceDescription = {}));\nvar SourceDescription;\n(function (SourceDescription) {\n SourceDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SourceDescription || (SourceDescription = {}));\nvar DeliveryStreamDescription;\n(function (DeliveryStreamDescription) {\n DeliveryStreamDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Destinations && {\n Destinations: obj.Destinations.map(function (item) { return DestinationDescription.filterSensitiveLog(item); }),\n }))); };\n})(DeliveryStreamDescription || (DeliveryStreamDescription = {}));\nvar DescribeDeliveryStreamInput;\n(function (DescribeDeliveryStreamInput) {\n DescribeDeliveryStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeDeliveryStreamInput || (DescribeDeliveryStreamInput = {}));\nvar DescribeDeliveryStreamOutput;\n(function (DescribeDeliveryStreamOutput) {\n DescribeDeliveryStreamOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.DeliveryStreamDescription && {\n DeliveryStreamDescription: DeliveryStreamDescription.filterSensitiveLog(obj.DeliveryStreamDescription),\n }))); };\n})(DescribeDeliveryStreamOutput || (DescribeDeliveryStreamOutput = {}));\nvar S3DestinationUpdate;\n(function (S3DestinationUpdate) {\n S3DestinationUpdate.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(S3DestinationUpdate || (S3DestinationUpdate = {}));\nvar ElasticsearchDestinationUpdate;\n(function (ElasticsearchDestinationUpdate) {\n ElasticsearchDestinationUpdate.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ElasticsearchDestinationUpdate || (ElasticsearchDestinationUpdate = {}));\nvar ExtendedS3DestinationUpdate;\n(function (ExtendedS3DestinationUpdate) {\n ExtendedS3DestinationUpdate.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExtendedS3DestinationUpdate || (ExtendedS3DestinationUpdate = {}));\nvar ListDeliveryStreamsInput;\n(function (ListDeliveryStreamsInput) {\n ListDeliveryStreamsInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListDeliveryStreamsInput || (ListDeliveryStreamsInput = {}));\nvar ListDeliveryStreamsOutput;\n(function (ListDeliveryStreamsOutput) {\n ListDeliveryStreamsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListDeliveryStreamsOutput || (ListDeliveryStreamsOutput = {}));\nvar ListTagsForDeliveryStreamInput;\n(function (ListTagsForDeliveryStreamInput) {\n ListTagsForDeliveryStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForDeliveryStreamInput || (ListTagsForDeliveryStreamInput = {}));\nvar ListTagsForDeliveryStreamOutput;\n(function (ListTagsForDeliveryStreamOutput) {\n ListTagsForDeliveryStreamOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForDeliveryStreamOutput || (ListTagsForDeliveryStreamOutput = {}));\nvar _Record;\n(function (_Record) {\n _Record.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(_Record || (_Record = {}));\nvar PutRecordInput;\n(function (PutRecordInput) {\n PutRecordInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordInput || (PutRecordInput = {}));\nvar PutRecordOutput;\n(function (PutRecordOutput) {\n PutRecordOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordOutput || (PutRecordOutput = {}));\nvar ServiceUnavailableException;\n(function (ServiceUnavailableException) {\n ServiceUnavailableException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ServiceUnavailableException || (ServiceUnavailableException = {}));\nvar PutRecordBatchInput;\n(function (PutRecordBatchInput) {\n PutRecordBatchInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordBatchInput || (PutRecordBatchInput = {}));\nvar PutRecordBatchResponseEntry;\n(function (PutRecordBatchResponseEntry) {\n PutRecordBatchResponseEntry.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordBatchResponseEntry || (PutRecordBatchResponseEntry = {}));\nvar PutRecordBatchOutput;\n(function (PutRecordBatchOutput) {\n PutRecordBatchOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordBatchOutput || (PutRecordBatchOutput = {}));\nvar StartDeliveryStreamEncryptionInput;\n(function (StartDeliveryStreamEncryptionInput) {\n StartDeliveryStreamEncryptionInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDeliveryStreamEncryptionInput || (StartDeliveryStreamEncryptionInput = {}));\nvar StartDeliveryStreamEncryptionOutput;\n(function (StartDeliveryStreamEncryptionOutput) {\n StartDeliveryStreamEncryptionOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDeliveryStreamEncryptionOutput || (StartDeliveryStreamEncryptionOutput = {}));\nvar StopDeliveryStreamEncryptionInput;\n(function (StopDeliveryStreamEncryptionInput) {\n StopDeliveryStreamEncryptionInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopDeliveryStreamEncryptionInput || (StopDeliveryStreamEncryptionInput = {}));\nvar StopDeliveryStreamEncryptionOutput;\n(function (StopDeliveryStreamEncryptionOutput) {\n StopDeliveryStreamEncryptionOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopDeliveryStreamEncryptionOutput || (StopDeliveryStreamEncryptionOutput = {}));\nvar TagDeliveryStreamInput;\n(function (TagDeliveryStreamInput) {\n TagDeliveryStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TagDeliveryStreamInput || (TagDeliveryStreamInput = {}));\nvar TagDeliveryStreamOutput;\n(function (TagDeliveryStreamOutput) {\n TagDeliveryStreamOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TagDeliveryStreamOutput || (TagDeliveryStreamOutput = {}));\nvar UntagDeliveryStreamInput;\n(function (UntagDeliveryStreamInput) {\n UntagDeliveryStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UntagDeliveryStreamInput || (UntagDeliveryStreamInput = {}));\nvar UntagDeliveryStreamOutput;\n(function (UntagDeliveryStreamOutput) {\n UntagDeliveryStreamOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UntagDeliveryStreamOutput || (UntagDeliveryStreamOutput = {}));\nvar HttpEndpointDestinationUpdate;\n(function (HttpEndpointDestinationUpdate) {\n HttpEndpointDestinationUpdate.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.EndpointConfiguration && {\n EndpointConfiguration: HttpEndpointConfiguration.filterSensitiveLog(obj.EndpointConfiguration),\n })), (obj.RequestConfiguration && {\n RequestConfiguration: HttpEndpointRequestConfiguration.filterSensitiveLog(obj.RequestConfiguration),\n }))); };\n})(HttpEndpointDestinationUpdate || (HttpEndpointDestinationUpdate = {}));\nvar RedshiftDestinationUpdate;\n(function (RedshiftDestinationUpdate) {\n RedshiftDestinationUpdate.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Username && { Username: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.Password && { Password: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(RedshiftDestinationUpdate || (RedshiftDestinationUpdate = {}));\nvar SplunkDestinationUpdate;\n(function (SplunkDestinationUpdate) {\n SplunkDestinationUpdate.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SplunkDestinationUpdate || (SplunkDestinationUpdate = {}));\nvar UpdateDestinationInput;\n(function (UpdateDestinationInput) {\n UpdateDestinationInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.RedshiftDestinationUpdate && {\n RedshiftDestinationUpdate: RedshiftDestinationUpdate.filterSensitiveLog(obj.RedshiftDestinationUpdate),\n })), (obj.HttpEndpointDestinationUpdate && {\n HttpEndpointDestinationUpdate: HttpEndpointDestinationUpdate.filterSensitiveLog(obj.HttpEndpointDestinationUpdate),\n }))); };\n})(UpdateDestinationInput || (UpdateDestinationInput = {}));\nvar UpdateDestinationOutput;\n(function (UpdateDestinationOutput) {\n UpdateDestinationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateDestinationOutput || (UpdateDestinationOutput = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/package.json": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/package.json ***! \********************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-firehose\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Firehose Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-firehose\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-firehose\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js ***! \********************************************************************************/ /*! exports provided: serializeAws_json1_1CreateDeliveryStreamCommand, serializeAws_json1_1DeleteDeliveryStreamCommand, serializeAws_json1_1DescribeDeliveryStreamCommand, serializeAws_json1_1ListDeliveryStreamsCommand, serializeAws_json1_1ListTagsForDeliveryStreamCommand, serializeAws_json1_1PutRecordCommand, serializeAws_json1_1PutRecordBatchCommand, serializeAws_json1_1StartDeliveryStreamEncryptionCommand, serializeAws_json1_1StopDeliveryStreamEncryptionCommand, serializeAws_json1_1TagDeliveryStreamCommand, serializeAws_json1_1UntagDeliveryStreamCommand, serializeAws_json1_1UpdateDestinationCommand, deserializeAws_json1_1CreateDeliveryStreamCommand, deserializeAws_json1_1DeleteDeliveryStreamCommand, deserializeAws_json1_1DescribeDeliveryStreamCommand, deserializeAws_json1_1ListDeliveryStreamsCommand, deserializeAws_json1_1ListTagsForDeliveryStreamCommand, deserializeAws_json1_1PutRecordCommand, deserializeAws_json1_1PutRecordBatchCommand, deserializeAws_json1_1StartDeliveryStreamEncryptionCommand, deserializeAws_json1_1StopDeliveryStreamEncryptionCommand, deserializeAws_json1_1TagDeliveryStreamCommand, deserializeAws_json1_1UntagDeliveryStreamCommand, deserializeAws_json1_1UpdateDestinationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateDeliveryStreamCommand\", function() { return serializeAws_json1_1CreateDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteDeliveryStreamCommand\", function() { return serializeAws_json1_1DeleteDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeDeliveryStreamCommand\", function() { return serializeAws_json1_1DescribeDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListDeliveryStreamsCommand\", function() { return serializeAws_json1_1ListDeliveryStreamsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListTagsForDeliveryStreamCommand\", function() { return serializeAws_json1_1ListTagsForDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutRecordCommand\", function() { return serializeAws_json1_1PutRecordCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutRecordBatchCommand\", function() { return serializeAws_json1_1PutRecordBatchCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartDeliveryStreamEncryptionCommand\", function() { return serializeAws_json1_1StartDeliveryStreamEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopDeliveryStreamEncryptionCommand\", function() { return serializeAws_json1_1StopDeliveryStreamEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1TagDeliveryStreamCommand\", function() { return serializeAws_json1_1TagDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UntagDeliveryStreamCommand\", function() { return serializeAws_json1_1UntagDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UpdateDestinationCommand\", function() { return serializeAws_json1_1UpdateDestinationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateDeliveryStreamCommand\", function() { return deserializeAws_json1_1CreateDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteDeliveryStreamCommand\", function() { return deserializeAws_json1_1DeleteDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeDeliveryStreamCommand\", function() { return deserializeAws_json1_1DescribeDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListDeliveryStreamsCommand\", function() { return deserializeAws_json1_1ListDeliveryStreamsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListTagsForDeliveryStreamCommand\", function() { return deserializeAws_json1_1ListTagsForDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutRecordCommand\", function() { return deserializeAws_json1_1PutRecordCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutRecordBatchCommand\", function() { return deserializeAws_json1_1PutRecordBatchCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartDeliveryStreamEncryptionCommand\", function() { return deserializeAws_json1_1StartDeliveryStreamEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopDeliveryStreamEncryptionCommand\", function() { return deserializeAws_json1_1StopDeliveryStreamEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1TagDeliveryStreamCommand\", function() { return deserializeAws_json1_1TagDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UntagDeliveryStreamCommand\", function() { return deserializeAws_json1_1UntagDeliveryStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UpdateDestinationCommand\", function() { return deserializeAws_json1_1UpdateDestinationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\nvar serializeAws_json1_1CreateDeliveryStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.CreateDeliveryStream\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateDeliveryStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteDeliveryStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.DeleteDeliveryStream\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteDeliveryStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeDeliveryStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.DescribeDeliveryStream\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeDeliveryStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListDeliveryStreamsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.ListDeliveryStreams\",\n };\n body = JSON.stringify(serializeAws_json1_1ListDeliveryStreamsInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListTagsForDeliveryStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.ListTagsForDeliveryStream\",\n };\n body = JSON.stringify(serializeAws_json1_1ListTagsForDeliveryStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutRecordCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.PutRecord\",\n };\n body = JSON.stringify(serializeAws_json1_1PutRecordInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutRecordBatchCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.PutRecordBatch\",\n };\n body = JSON.stringify(serializeAws_json1_1PutRecordBatchInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartDeliveryStreamEncryptionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.StartDeliveryStreamEncryption\",\n };\n body = JSON.stringify(serializeAws_json1_1StartDeliveryStreamEncryptionInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopDeliveryStreamEncryptionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.StopDeliveryStreamEncryption\",\n };\n body = JSON.stringify(serializeAws_json1_1StopDeliveryStreamEncryptionInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1TagDeliveryStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.TagDeliveryStream\",\n };\n body = JSON.stringify(serializeAws_json1_1TagDeliveryStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UntagDeliveryStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.UntagDeliveryStream\",\n };\n body = JSON.stringify(serializeAws_json1_1UntagDeliveryStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UpdateDestinationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Firehose_20150804.UpdateDestination\",\n };\n body = JSON.stringify(serializeAws_json1_1UpdateDestinationInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar deserializeAws_json1_1CreateDeliveryStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateDeliveryStreamCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateDeliveryStreamOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateDeliveryStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"InvalidKMSResourceException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#InvalidKMSResourceException\": return [3 /*break*/, 4];\n case \"LimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.firehose#LimitExceededException\": return [3 /*break*/, 6];\n case \"ResourceInUseException\": return [3 /*break*/, 8];\n case \"com.amazonaws.firehose#ResourceInUseException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidKMSResourceExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteDeliveryStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteDeliveryStreamCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteDeliveryStreamOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteDeliveryStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ResourceInUseException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#ResourceInUseException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDeliveryStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeDeliveryStreamCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeDeliveryStreamOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeDeliveryStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ResourceNotFoundException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListDeliveryStreamsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListDeliveryStreamsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListDeliveryStreamsOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListDeliveryStreamsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsForDeliveryStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListTagsForDeliveryStreamCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListTagsForDeliveryStreamOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsForDeliveryStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRecordCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutRecordCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1PutRecordOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRecordCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"InvalidKMSResourceException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#InvalidKMSResourceException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.firehose#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidKMSResourceExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRecordBatchCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutRecordBatchCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1PutRecordBatchOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRecordBatchCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"InvalidKMSResourceException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#InvalidKMSResourceException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"ServiceUnavailableException\": return [3 /*break*/, 8];\n case \"com.amazonaws.firehose#ServiceUnavailableException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidKMSResourceExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDeliveryStreamEncryptionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartDeliveryStreamEncryptionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartDeliveryStreamEncryptionOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDeliveryStreamEncryptionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"InvalidKMSResourceException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#InvalidKMSResourceException\": return [3 /*break*/, 4];\n case \"LimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.firehose#LimitExceededException\": return [3 /*break*/, 6];\n case \"ResourceInUseException\": return [3 /*break*/, 8];\n case \"com.amazonaws.firehose#ResourceInUseException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidKMSResourceExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopDeliveryStreamEncryptionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopDeliveryStreamEncryptionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopDeliveryStreamEncryptionOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopDeliveryStreamEncryptionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.firehose#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1TagDeliveryStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1TagDeliveryStreamCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1TagDeliveryStreamOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1TagDeliveryStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.firehose#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UntagDeliveryStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UntagDeliveryStreamCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1UntagDeliveryStreamOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UntagDeliveryStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.firehose#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateDestinationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UpdateDestinationCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1UpdateDestinationOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateDestinationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"com.amazonaws.firehose#ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"InvalidArgumentException\": return [3 /*break*/, 4];\n case \"com.amazonaws.firehose#InvalidArgumentException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.firehose#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.firehose#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ConcurrentModificationExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ConcurrentModificationException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ConcurrentModificationException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidArgumentExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidArgumentException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidArgumentException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidKMSResourceExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidKMSResourceException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidKMSResourceException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1LimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1LimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"LimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceInUseExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceInUseException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceInUseException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceNotFoundException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotFoundException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ServiceUnavailableExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ServiceUnavailableException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ServiceUnavailableException\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_json1_1BufferingHints = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IntervalInSeconds !== undefined &&\n input.IntervalInSeconds !== null && { IntervalInSeconds: input.IntervalInSeconds })), (input.SizeInMBs !== undefined && input.SizeInMBs !== null && { SizeInMBs: input.SizeInMBs }));\n};\nvar serializeAws_json1_1CloudWatchLoggingOptions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.LogGroupName !== undefined && input.LogGroupName !== null && { LogGroupName: input.LogGroupName })), (input.LogStreamName !== undefined && input.LogStreamName !== null && { LogStreamName: input.LogStreamName }));\n};\nvar serializeAws_json1_1ColumnToJsonKeyMappings = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_json1_1CopyCommand = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CopyOptions !== undefined && input.CopyOptions !== null && { CopyOptions: input.CopyOptions })), (input.DataTableColumns !== undefined &&\n input.DataTableColumns !== null && { DataTableColumns: input.DataTableColumns })), (input.DataTableName !== undefined && input.DataTableName !== null && { DataTableName: input.DataTableName }));\n};\nvar serializeAws_json1_1CreateDeliveryStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamEncryptionConfigurationInput !== undefined &&\n input.DeliveryStreamEncryptionConfigurationInput !== null && {\n DeliveryStreamEncryptionConfigurationInput: serializeAws_json1_1DeliveryStreamEncryptionConfigurationInput(input.DeliveryStreamEncryptionConfigurationInput, context),\n })), (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName })), (input.DeliveryStreamType !== undefined &&\n input.DeliveryStreamType !== null && { DeliveryStreamType: input.DeliveryStreamType })), (input.ElasticsearchDestinationConfiguration !== undefined &&\n input.ElasticsearchDestinationConfiguration !== null && {\n ElasticsearchDestinationConfiguration: serializeAws_json1_1ElasticsearchDestinationConfiguration(input.ElasticsearchDestinationConfiguration, context),\n })), (input.ExtendedS3DestinationConfiguration !== undefined &&\n input.ExtendedS3DestinationConfiguration !== null && {\n ExtendedS3DestinationConfiguration: serializeAws_json1_1ExtendedS3DestinationConfiguration(input.ExtendedS3DestinationConfiguration, context),\n })), (input.HttpEndpointDestinationConfiguration !== undefined &&\n input.HttpEndpointDestinationConfiguration !== null && {\n HttpEndpointDestinationConfiguration: serializeAws_json1_1HttpEndpointDestinationConfiguration(input.HttpEndpointDestinationConfiguration, context),\n })), (input.KinesisStreamSourceConfiguration !== undefined &&\n input.KinesisStreamSourceConfiguration !== null && {\n KinesisStreamSourceConfiguration: serializeAws_json1_1KinesisStreamSourceConfiguration(input.KinesisStreamSourceConfiguration, context),\n })), (input.RedshiftDestinationConfiguration !== undefined &&\n input.RedshiftDestinationConfiguration !== null && {\n RedshiftDestinationConfiguration: serializeAws_json1_1RedshiftDestinationConfiguration(input.RedshiftDestinationConfiguration, context),\n })), (input.S3DestinationConfiguration !== undefined &&\n input.S3DestinationConfiguration !== null && {\n S3DestinationConfiguration: serializeAws_json1_1S3DestinationConfiguration(input.S3DestinationConfiguration, context),\n })), (input.SplunkDestinationConfiguration !== undefined &&\n input.SplunkDestinationConfiguration !== null && {\n SplunkDestinationConfiguration: serializeAws_json1_1SplunkDestinationConfiguration(input.SplunkDestinationConfiguration, context),\n })), (input.Tags !== undefined &&\n input.Tags !== null && { Tags: serializeAws_json1_1TagDeliveryStreamInputTagList(input.Tags, context) }));\n};\nvar serializeAws_json1_1DataFormatConversionConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.InputFormatConfiguration !== undefined &&\n input.InputFormatConfiguration !== null && {\n InputFormatConfiguration: serializeAws_json1_1InputFormatConfiguration(input.InputFormatConfiguration, context),\n })), (input.OutputFormatConfiguration !== undefined &&\n input.OutputFormatConfiguration !== null && {\n OutputFormatConfiguration: serializeAws_json1_1OutputFormatConfiguration(input.OutputFormatConfiguration, context),\n })), (input.SchemaConfiguration !== undefined &&\n input.SchemaConfiguration !== null && {\n SchemaConfiguration: serializeAws_json1_1SchemaConfiguration(input.SchemaConfiguration, context),\n }));\n};\nvar serializeAws_json1_1DeleteDeliveryStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AllowForceDelete !== undefined &&\n input.AllowForceDelete !== null && { AllowForceDelete: input.AllowForceDelete })), (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName }));\n};\nvar serializeAws_json1_1DeliveryStreamEncryptionConfigurationInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.KeyARN !== undefined && input.KeyARN !== null && { KeyARN: input.KeyARN })), (input.KeyType !== undefined && input.KeyType !== null && { KeyType: input.KeyType }));\n};\nvar serializeAws_json1_1DescribeDeliveryStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName })), (input.ExclusiveStartDestinationId !== undefined &&\n input.ExclusiveStartDestinationId !== null && { ExclusiveStartDestinationId: input.ExclusiveStartDestinationId })), (input.Limit !== undefined && input.Limit !== null && { Limit: input.Limit }));\n};\nvar serializeAws_json1_1Deserializer = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.HiveJsonSerDe !== undefined &&\n input.HiveJsonSerDe !== null && {\n HiveJsonSerDe: serializeAws_json1_1HiveJsonSerDe(input.HiveJsonSerDe, context),\n })), (input.OpenXJsonSerDe !== undefined &&\n input.OpenXJsonSerDe !== null && {\n OpenXJsonSerDe: serializeAws_json1_1OpenXJsonSerDe(input.OpenXJsonSerDe, context),\n }));\n};\nvar serializeAws_json1_1ElasticsearchBufferingHints = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IntervalInSeconds !== undefined &&\n input.IntervalInSeconds !== null && { IntervalInSeconds: input.IntervalInSeconds })), (input.SizeInMBs !== undefined && input.SizeInMBs !== null && { SizeInMBs: input.SizeInMBs }));\n};\nvar serializeAws_json1_1ElasticsearchDestinationConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BufferingHints !== undefined &&\n input.BufferingHints !== null && {\n BufferingHints: serializeAws_json1_1ElasticsearchBufferingHints(input.BufferingHints, context),\n })), (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.ClusterEndpoint !== undefined &&\n input.ClusterEndpoint !== null && { ClusterEndpoint: input.ClusterEndpoint })), (input.DomainARN !== undefined && input.DomainARN !== null && { DomainARN: input.DomainARN })), (input.IndexName !== undefined && input.IndexName !== null && { IndexName: input.IndexName })), (input.IndexRotationPeriod !== undefined &&\n input.IndexRotationPeriod !== null && { IndexRotationPeriod: input.IndexRotationPeriod })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RetryOptions !== undefined &&\n input.RetryOptions !== null && {\n RetryOptions: serializeAws_json1_1ElasticsearchRetryOptions(input.RetryOptions, context),\n })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.S3BackupMode !== undefined && input.S3BackupMode !== null && { S3BackupMode: input.S3BackupMode })), (input.S3Configuration !== undefined &&\n input.S3Configuration !== null && {\n S3Configuration: serializeAws_json1_1S3DestinationConfiguration(input.S3Configuration, context),\n })), (input.TypeName !== undefined && input.TypeName !== null && { TypeName: input.TypeName })), (input.VpcConfiguration !== undefined &&\n input.VpcConfiguration !== null && {\n VpcConfiguration: serializeAws_json1_1VpcConfiguration(input.VpcConfiguration, context),\n }));\n};\nvar serializeAws_json1_1ElasticsearchDestinationUpdate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BufferingHints !== undefined &&\n input.BufferingHints !== null && {\n BufferingHints: serializeAws_json1_1ElasticsearchBufferingHints(input.BufferingHints, context),\n })), (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.ClusterEndpoint !== undefined &&\n input.ClusterEndpoint !== null && { ClusterEndpoint: input.ClusterEndpoint })), (input.DomainARN !== undefined && input.DomainARN !== null && { DomainARN: input.DomainARN })), (input.IndexName !== undefined && input.IndexName !== null && { IndexName: input.IndexName })), (input.IndexRotationPeriod !== undefined &&\n input.IndexRotationPeriod !== null && { IndexRotationPeriod: input.IndexRotationPeriod })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RetryOptions !== undefined &&\n input.RetryOptions !== null && {\n RetryOptions: serializeAws_json1_1ElasticsearchRetryOptions(input.RetryOptions, context),\n })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.S3Update !== undefined &&\n input.S3Update !== null && { S3Update: serializeAws_json1_1S3DestinationUpdate(input.S3Update, context) })), (input.TypeName !== undefined && input.TypeName !== null && { TypeName: input.TypeName }));\n};\nvar serializeAws_json1_1ElasticsearchRetryOptions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DurationInSeconds !== undefined &&\n input.DurationInSeconds !== null && { DurationInSeconds: input.DurationInSeconds }));\n};\nvar serializeAws_json1_1EncryptionConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.KMSEncryptionConfig !== undefined &&\n input.KMSEncryptionConfig !== null && {\n KMSEncryptionConfig: serializeAws_json1_1KMSEncryptionConfig(input.KMSEncryptionConfig, context),\n })), (input.NoEncryptionConfig !== undefined &&\n input.NoEncryptionConfig !== null && { NoEncryptionConfig: input.NoEncryptionConfig }));\n};\nvar serializeAws_json1_1ExtendedS3DestinationConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BucketARN !== undefined && input.BucketARN !== null && { BucketARN: input.BucketARN })), (input.BufferingHints !== undefined &&\n input.BufferingHints !== null && {\n BufferingHints: serializeAws_json1_1BufferingHints(input.BufferingHints, context),\n })), (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.CompressionFormat !== undefined &&\n input.CompressionFormat !== null && { CompressionFormat: input.CompressionFormat })), (input.DataFormatConversionConfiguration !== undefined &&\n input.DataFormatConversionConfiguration !== null && {\n DataFormatConversionConfiguration: serializeAws_json1_1DataFormatConversionConfiguration(input.DataFormatConversionConfiguration, context),\n })), (input.EncryptionConfiguration !== undefined &&\n input.EncryptionConfiguration !== null && {\n EncryptionConfiguration: serializeAws_json1_1EncryptionConfiguration(input.EncryptionConfiguration, context),\n })), (input.ErrorOutputPrefix !== undefined &&\n input.ErrorOutputPrefix !== null && { ErrorOutputPrefix: input.ErrorOutputPrefix })), (input.Prefix !== undefined && input.Prefix !== null && { Prefix: input.Prefix })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.S3BackupConfiguration !== undefined &&\n input.S3BackupConfiguration !== null && {\n S3BackupConfiguration: serializeAws_json1_1S3DestinationConfiguration(input.S3BackupConfiguration, context),\n })), (input.S3BackupMode !== undefined && input.S3BackupMode !== null && { S3BackupMode: input.S3BackupMode }));\n};\nvar serializeAws_json1_1ExtendedS3DestinationUpdate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BucketARN !== undefined && input.BucketARN !== null && { BucketARN: input.BucketARN })), (input.BufferingHints !== undefined &&\n input.BufferingHints !== null && {\n BufferingHints: serializeAws_json1_1BufferingHints(input.BufferingHints, context),\n })), (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.CompressionFormat !== undefined &&\n input.CompressionFormat !== null && { CompressionFormat: input.CompressionFormat })), (input.DataFormatConversionConfiguration !== undefined &&\n input.DataFormatConversionConfiguration !== null && {\n DataFormatConversionConfiguration: serializeAws_json1_1DataFormatConversionConfiguration(input.DataFormatConversionConfiguration, context),\n })), (input.EncryptionConfiguration !== undefined &&\n input.EncryptionConfiguration !== null && {\n EncryptionConfiguration: serializeAws_json1_1EncryptionConfiguration(input.EncryptionConfiguration, context),\n })), (input.ErrorOutputPrefix !== undefined &&\n input.ErrorOutputPrefix !== null && { ErrorOutputPrefix: input.ErrorOutputPrefix })), (input.Prefix !== undefined && input.Prefix !== null && { Prefix: input.Prefix })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.S3BackupMode !== undefined && input.S3BackupMode !== null && { S3BackupMode: input.S3BackupMode })), (input.S3BackupUpdate !== undefined &&\n input.S3BackupUpdate !== null && {\n S3BackupUpdate: serializeAws_json1_1S3DestinationUpdate(input.S3BackupUpdate, context),\n }));\n};\nvar serializeAws_json1_1HiveJsonSerDe = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.TimestampFormats !== undefined &&\n input.TimestampFormats !== null && {\n TimestampFormats: serializeAws_json1_1ListOfNonEmptyStrings(input.TimestampFormats, context),\n }));\n};\nvar serializeAws_json1_1HttpEndpointBufferingHints = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IntervalInSeconds !== undefined &&\n input.IntervalInSeconds !== null && { IntervalInSeconds: input.IntervalInSeconds })), (input.SizeInMBs !== undefined && input.SizeInMBs !== null && { SizeInMBs: input.SizeInMBs }));\n};\nvar serializeAws_json1_1HttpEndpointCommonAttribute = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AttributeName !== undefined && input.AttributeName !== null && { AttributeName: input.AttributeName })), (input.AttributeValue !== undefined &&\n input.AttributeValue !== null && { AttributeValue: input.AttributeValue }));\n};\nvar serializeAws_json1_1HttpEndpointCommonAttributesList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1HttpEndpointCommonAttribute(entry, context);\n });\n};\nvar serializeAws_json1_1HttpEndpointConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AccessKey !== undefined && input.AccessKey !== null && { AccessKey: input.AccessKey })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_json1_1HttpEndpointDestinationConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BufferingHints !== undefined &&\n input.BufferingHints !== null && {\n BufferingHints: serializeAws_json1_1HttpEndpointBufferingHints(input.BufferingHints, context),\n })), (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.EndpointConfiguration !== undefined &&\n input.EndpointConfiguration !== null && {\n EndpointConfiguration: serializeAws_json1_1HttpEndpointConfiguration(input.EndpointConfiguration, context),\n })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RequestConfiguration !== undefined &&\n input.RequestConfiguration !== null && {\n RequestConfiguration: serializeAws_json1_1HttpEndpointRequestConfiguration(input.RequestConfiguration, context),\n })), (input.RetryOptions !== undefined &&\n input.RetryOptions !== null && {\n RetryOptions: serializeAws_json1_1HttpEndpointRetryOptions(input.RetryOptions, context),\n })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.S3BackupMode !== undefined && input.S3BackupMode !== null && { S3BackupMode: input.S3BackupMode })), (input.S3Configuration !== undefined &&\n input.S3Configuration !== null && {\n S3Configuration: serializeAws_json1_1S3DestinationConfiguration(input.S3Configuration, context),\n }));\n};\nvar serializeAws_json1_1HttpEndpointDestinationUpdate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BufferingHints !== undefined &&\n input.BufferingHints !== null && {\n BufferingHints: serializeAws_json1_1HttpEndpointBufferingHints(input.BufferingHints, context),\n })), (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.EndpointConfiguration !== undefined &&\n input.EndpointConfiguration !== null && {\n EndpointConfiguration: serializeAws_json1_1HttpEndpointConfiguration(input.EndpointConfiguration, context),\n })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RequestConfiguration !== undefined &&\n input.RequestConfiguration !== null && {\n RequestConfiguration: serializeAws_json1_1HttpEndpointRequestConfiguration(input.RequestConfiguration, context),\n })), (input.RetryOptions !== undefined &&\n input.RetryOptions !== null && {\n RetryOptions: serializeAws_json1_1HttpEndpointRetryOptions(input.RetryOptions, context),\n })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.S3BackupMode !== undefined && input.S3BackupMode !== null && { S3BackupMode: input.S3BackupMode })), (input.S3Update !== undefined &&\n input.S3Update !== null && { S3Update: serializeAws_json1_1S3DestinationUpdate(input.S3Update, context) }));\n};\nvar serializeAws_json1_1HttpEndpointRequestConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CommonAttributes !== undefined &&\n input.CommonAttributes !== null && {\n CommonAttributes: serializeAws_json1_1HttpEndpointCommonAttributesList(input.CommonAttributes, context),\n })), (input.ContentEncoding !== undefined &&\n input.ContentEncoding !== null && { ContentEncoding: input.ContentEncoding }));\n};\nvar serializeAws_json1_1HttpEndpointRetryOptions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DurationInSeconds !== undefined &&\n input.DurationInSeconds !== null && { DurationInSeconds: input.DurationInSeconds }));\n};\nvar serializeAws_json1_1InputFormatConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Deserializer !== undefined &&\n input.Deserializer !== null && { Deserializer: serializeAws_json1_1Deserializer(input.Deserializer, context) }));\n};\nvar serializeAws_json1_1KinesisStreamSourceConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.KinesisStreamARN !== undefined &&\n input.KinesisStreamARN !== null && { KinesisStreamARN: input.KinesisStreamARN })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN }));\n};\nvar serializeAws_json1_1KMSEncryptionConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AWSKMSKeyARN !== undefined && input.AWSKMSKeyARN !== null && { AWSKMSKeyARN: input.AWSKMSKeyARN }));\n};\nvar serializeAws_json1_1ListDeliveryStreamsInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamType !== undefined &&\n input.DeliveryStreamType !== null && { DeliveryStreamType: input.DeliveryStreamType })), (input.ExclusiveStartDeliveryStreamName !== undefined &&\n input.ExclusiveStartDeliveryStreamName !== null && {\n ExclusiveStartDeliveryStreamName: input.ExclusiveStartDeliveryStreamName,\n })), (input.Limit !== undefined && input.Limit !== null && { Limit: input.Limit }));\n};\nvar serializeAws_json1_1ListOfNonEmptyStrings = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1ListOfNonEmptyStringsWithoutWhitespace = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1ListTagsForDeliveryStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName })), (input.ExclusiveStartTagKey !== undefined &&\n input.ExclusiveStartTagKey !== null && { ExclusiveStartTagKey: input.ExclusiveStartTagKey })), (input.Limit !== undefined && input.Limit !== null && { Limit: input.Limit }));\n};\nvar serializeAws_json1_1OpenXJsonSerDe = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CaseInsensitive !== undefined &&\n input.CaseInsensitive !== null && { CaseInsensitive: input.CaseInsensitive })), (input.ColumnToJsonKeyMappings !== undefined &&\n input.ColumnToJsonKeyMappings !== null && {\n ColumnToJsonKeyMappings: serializeAws_json1_1ColumnToJsonKeyMappings(input.ColumnToJsonKeyMappings, context),\n })), (input.ConvertDotsInJsonKeysToUnderscores !== undefined &&\n input.ConvertDotsInJsonKeysToUnderscores !== null && {\n ConvertDotsInJsonKeysToUnderscores: input.ConvertDotsInJsonKeysToUnderscores,\n }));\n};\nvar serializeAws_json1_1OrcSerDe = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BlockSizeBytes !== undefined &&\n input.BlockSizeBytes !== null && { BlockSizeBytes: input.BlockSizeBytes })), (input.BloomFilterColumns !== undefined &&\n input.BloomFilterColumns !== null && {\n BloomFilterColumns: serializeAws_json1_1ListOfNonEmptyStringsWithoutWhitespace(input.BloomFilterColumns, context),\n })), (input.BloomFilterFalsePositiveProbability !== undefined &&\n input.BloomFilterFalsePositiveProbability !== null && {\n BloomFilterFalsePositiveProbability: input.BloomFilterFalsePositiveProbability,\n })), (input.Compression !== undefined && input.Compression !== null && { Compression: input.Compression })), (input.DictionaryKeyThreshold !== undefined &&\n input.DictionaryKeyThreshold !== null && { DictionaryKeyThreshold: input.DictionaryKeyThreshold })), (input.EnablePadding !== undefined && input.EnablePadding !== null && { EnablePadding: input.EnablePadding })), (input.FormatVersion !== undefined && input.FormatVersion !== null && { FormatVersion: input.FormatVersion })), (input.PaddingTolerance !== undefined &&\n input.PaddingTolerance !== null && { PaddingTolerance: input.PaddingTolerance })), (input.RowIndexStride !== undefined &&\n input.RowIndexStride !== null && { RowIndexStride: input.RowIndexStride })), (input.StripeSizeBytes !== undefined &&\n input.StripeSizeBytes !== null && { StripeSizeBytes: input.StripeSizeBytes }));\n};\nvar serializeAws_json1_1OutputFormatConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Serializer !== undefined &&\n input.Serializer !== null && { Serializer: serializeAws_json1_1Serializer(input.Serializer, context) }));\n};\nvar serializeAws_json1_1ParquetSerDe = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BlockSizeBytes !== undefined &&\n input.BlockSizeBytes !== null && { BlockSizeBytes: input.BlockSizeBytes })), (input.Compression !== undefined && input.Compression !== null && { Compression: input.Compression })), (input.EnableDictionaryCompression !== undefined &&\n input.EnableDictionaryCompression !== null && { EnableDictionaryCompression: input.EnableDictionaryCompression })), (input.MaxPaddingBytes !== undefined &&\n input.MaxPaddingBytes !== null && { MaxPaddingBytes: input.MaxPaddingBytes })), (input.PageSizeBytes !== undefined && input.PageSizeBytes !== null && { PageSizeBytes: input.PageSizeBytes })), (input.WriterVersion !== undefined && input.WriterVersion !== null && { WriterVersion: input.WriterVersion }));\n};\nvar serializeAws_json1_1ProcessingConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.Processors !== undefined &&\n input.Processors !== null && { Processors: serializeAws_json1_1ProcessorList(input.Processors, context) }));\n};\nvar serializeAws_json1_1Processor = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Parameters !== undefined &&\n input.Parameters !== null && {\n Parameters: serializeAws_json1_1ProcessorParameterList(input.Parameters, context),\n })), (input.Type !== undefined && input.Type !== null && { Type: input.Type }));\n};\nvar serializeAws_json1_1ProcessorList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1Processor(entry, context);\n });\n};\nvar serializeAws_json1_1ProcessorParameter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ParameterName !== undefined && input.ParameterName !== null && { ParameterName: input.ParameterName })), (input.ParameterValue !== undefined &&\n input.ParameterValue !== null && { ParameterValue: input.ParameterValue }));\n};\nvar serializeAws_json1_1ProcessorParameterList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1ProcessorParameter(entry, context);\n });\n};\nvar serializeAws_json1_1PutRecordBatchInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName })), (input.Records !== undefined &&\n input.Records !== null && {\n Records: serializeAws_json1_1PutRecordBatchRequestEntryList(input.Records, context),\n }));\n};\nvar serializeAws_json1_1PutRecordBatchRequestEntryList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1_Record(entry, context);\n });\n};\nvar serializeAws_json1_1PutRecordInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName })), (input.Record !== undefined &&\n input.Record !== null && { Record: serializeAws_json1_1_Record(input.Record, context) }));\n};\nvar serializeAws_json1_1_Record = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Data !== undefined && input.Data !== null && { Data: context.base64Encoder(input.Data) }));\n};\nvar serializeAws_json1_1RedshiftDestinationConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.ClusterJDBCURL !== undefined &&\n input.ClusterJDBCURL !== null && { ClusterJDBCURL: input.ClusterJDBCURL })), (input.CopyCommand !== undefined &&\n input.CopyCommand !== null && { CopyCommand: serializeAws_json1_1CopyCommand(input.CopyCommand, context) })), (input.Password !== undefined && input.Password !== null && { Password: input.Password })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RetryOptions !== undefined &&\n input.RetryOptions !== null && {\n RetryOptions: serializeAws_json1_1RedshiftRetryOptions(input.RetryOptions, context),\n })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.S3BackupConfiguration !== undefined &&\n input.S3BackupConfiguration !== null && {\n S3BackupConfiguration: serializeAws_json1_1S3DestinationConfiguration(input.S3BackupConfiguration, context),\n })), (input.S3BackupMode !== undefined && input.S3BackupMode !== null && { S3BackupMode: input.S3BackupMode })), (input.S3Configuration !== undefined &&\n input.S3Configuration !== null && {\n S3Configuration: serializeAws_json1_1S3DestinationConfiguration(input.S3Configuration, context),\n })), (input.Username !== undefined && input.Username !== null && { Username: input.Username }));\n};\nvar serializeAws_json1_1RedshiftDestinationUpdate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.ClusterJDBCURL !== undefined &&\n input.ClusterJDBCURL !== null && { ClusterJDBCURL: input.ClusterJDBCURL })), (input.CopyCommand !== undefined &&\n input.CopyCommand !== null && { CopyCommand: serializeAws_json1_1CopyCommand(input.CopyCommand, context) })), (input.Password !== undefined && input.Password !== null && { Password: input.Password })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RetryOptions !== undefined &&\n input.RetryOptions !== null && {\n RetryOptions: serializeAws_json1_1RedshiftRetryOptions(input.RetryOptions, context),\n })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.S3BackupMode !== undefined && input.S3BackupMode !== null && { S3BackupMode: input.S3BackupMode })), (input.S3BackupUpdate !== undefined &&\n input.S3BackupUpdate !== null && {\n S3BackupUpdate: serializeAws_json1_1S3DestinationUpdate(input.S3BackupUpdate, context),\n })), (input.S3Update !== undefined &&\n input.S3Update !== null && { S3Update: serializeAws_json1_1S3DestinationUpdate(input.S3Update, context) })), (input.Username !== undefined && input.Username !== null && { Username: input.Username }));\n};\nvar serializeAws_json1_1RedshiftRetryOptions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DurationInSeconds !== undefined &&\n input.DurationInSeconds !== null && { DurationInSeconds: input.DurationInSeconds }));\n};\nvar serializeAws_json1_1S3DestinationConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BucketARN !== undefined && input.BucketARN !== null && { BucketARN: input.BucketARN })), (input.BufferingHints !== undefined &&\n input.BufferingHints !== null && {\n BufferingHints: serializeAws_json1_1BufferingHints(input.BufferingHints, context),\n })), (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.CompressionFormat !== undefined &&\n input.CompressionFormat !== null && { CompressionFormat: input.CompressionFormat })), (input.EncryptionConfiguration !== undefined &&\n input.EncryptionConfiguration !== null && {\n EncryptionConfiguration: serializeAws_json1_1EncryptionConfiguration(input.EncryptionConfiguration, context),\n })), (input.ErrorOutputPrefix !== undefined &&\n input.ErrorOutputPrefix !== null && { ErrorOutputPrefix: input.ErrorOutputPrefix })), (input.Prefix !== undefined && input.Prefix !== null && { Prefix: input.Prefix })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN }));\n};\nvar serializeAws_json1_1S3DestinationUpdate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BucketARN !== undefined && input.BucketARN !== null && { BucketARN: input.BucketARN })), (input.BufferingHints !== undefined &&\n input.BufferingHints !== null && {\n BufferingHints: serializeAws_json1_1BufferingHints(input.BufferingHints, context),\n })), (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.CompressionFormat !== undefined &&\n input.CompressionFormat !== null && { CompressionFormat: input.CompressionFormat })), (input.EncryptionConfiguration !== undefined &&\n input.EncryptionConfiguration !== null && {\n EncryptionConfiguration: serializeAws_json1_1EncryptionConfiguration(input.EncryptionConfiguration, context),\n })), (input.ErrorOutputPrefix !== undefined &&\n input.ErrorOutputPrefix !== null && { ErrorOutputPrefix: input.ErrorOutputPrefix })), (input.Prefix !== undefined && input.Prefix !== null && { Prefix: input.Prefix })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN }));\n};\nvar serializeAws_json1_1SchemaConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CatalogId !== undefined && input.CatalogId !== null && { CatalogId: input.CatalogId })), (input.DatabaseName !== undefined && input.DatabaseName !== null && { DatabaseName: input.DatabaseName })), (input.Region !== undefined && input.Region !== null && { Region: input.Region })), (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.TableName !== undefined && input.TableName !== null && { TableName: input.TableName })), (input.VersionId !== undefined && input.VersionId !== null && { VersionId: input.VersionId }));\n};\nvar serializeAws_json1_1SecurityGroupIdList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1Serializer = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.OrcSerDe !== undefined &&\n input.OrcSerDe !== null && { OrcSerDe: serializeAws_json1_1OrcSerDe(input.OrcSerDe, context) })), (input.ParquetSerDe !== undefined &&\n input.ParquetSerDe !== null && { ParquetSerDe: serializeAws_json1_1ParquetSerDe(input.ParquetSerDe, context) }));\n};\nvar serializeAws_json1_1SplunkDestinationConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.HECAcknowledgmentTimeoutInSeconds !== undefined &&\n input.HECAcknowledgmentTimeoutInSeconds !== null && {\n HECAcknowledgmentTimeoutInSeconds: input.HECAcknowledgmentTimeoutInSeconds,\n })), (input.HECEndpoint !== undefined && input.HECEndpoint !== null && { HECEndpoint: input.HECEndpoint })), (input.HECEndpointType !== undefined &&\n input.HECEndpointType !== null && { HECEndpointType: input.HECEndpointType })), (input.HECToken !== undefined && input.HECToken !== null && { HECToken: input.HECToken })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RetryOptions !== undefined &&\n input.RetryOptions !== null && {\n RetryOptions: serializeAws_json1_1SplunkRetryOptions(input.RetryOptions, context),\n })), (input.S3BackupMode !== undefined && input.S3BackupMode !== null && { S3BackupMode: input.S3BackupMode })), (input.S3Configuration !== undefined &&\n input.S3Configuration !== null && {\n S3Configuration: serializeAws_json1_1S3DestinationConfiguration(input.S3Configuration, context),\n }));\n};\nvar serializeAws_json1_1SplunkDestinationUpdate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CloudWatchLoggingOptions !== undefined &&\n input.CloudWatchLoggingOptions !== null && {\n CloudWatchLoggingOptions: serializeAws_json1_1CloudWatchLoggingOptions(input.CloudWatchLoggingOptions, context),\n })), (input.HECAcknowledgmentTimeoutInSeconds !== undefined &&\n input.HECAcknowledgmentTimeoutInSeconds !== null && {\n HECAcknowledgmentTimeoutInSeconds: input.HECAcknowledgmentTimeoutInSeconds,\n })), (input.HECEndpoint !== undefined && input.HECEndpoint !== null && { HECEndpoint: input.HECEndpoint })), (input.HECEndpointType !== undefined &&\n input.HECEndpointType !== null && { HECEndpointType: input.HECEndpointType })), (input.HECToken !== undefined && input.HECToken !== null && { HECToken: input.HECToken })), (input.ProcessingConfiguration !== undefined &&\n input.ProcessingConfiguration !== null && {\n ProcessingConfiguration: serializeAws_json1_1ProcessingConfiguration(input.ProcessingConfiguration, context),\n })), (input.RetryOptions !== undefined &&\n input.RetryOptions !== null && {\n RetryOptions: serializeAws_json1_1SplunkRetryOptions(input.RetryOptions, context),\n })), (input.S3BackupMode !== undefined && input.S3BackupMode !== null && { S3BackupMode: input.S3BackupMode })), (input.S3Update !== undefined &&\n input.S3Update !== null && { S3Update: serializeAws_json1_1S3DestinationUpdate(input.S3Update, context) }));\n};\nvar serializeAws_json1_1SplunkRetryOptions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DurationInSeconds !== undefined &&\n input.DurationInSeconds !== null && { DurationInSeconds: input.DurationInSeconds }));\n};\nvar serializeAws_json1_1StartDeliveryStreamEncryptionInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamEncryptionConfigurationInput !== undefined &&\n input.DeliveryStreamEncryptionConfigurationInput !== null && {\n DeliveryStreamEncryptionConfigurationInput: serializeAws_json1_1DeliveryStreamEncryptionConfigurationInput(input.DeliveryStreamEncryptionConfigurationInput, context),\n })), (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName }));\n};\nvar serializeAws_json1_1StopDeliveryStreamEncryptionInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName }));\n};\nvar serializeAws_json1_1SubnetIdList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1Tag = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Key !== undefined && input.Key !== null && { Key: input.Key })), (input.Value !== undefined && input.Value !== null && { Value: input.Value }));\n};\nvar serializeAws_json1_1TagDeliveryStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName })), (input.Tags !== undefined &&\n input.Tags !== null && { Tags: serializeAws_json1_1TagDeliveryStreamInputTagList(input.Tags, context) }));\n};\nvar serializeAws_json1_1TagDeliveryStreamInputTagList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1Tag(entry, context);\n });\n};\nvar serializeAws_json1_1TagKeyList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1UntagDeliveryStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName })), (input.TagKeys !== undefined &&\n input.TagKeys !== null && { TagKeys: serializeAws_json1_1TagKeyList(input.TagKeys, context) }));\n};\nvar serializeAws_json1_1UpdateDestinationInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CurrentDeliveryStreamVersionId !== undefined &&\n input.CurrentDeliveryStreamVersionId !== null && {\n CurrentDeliveryStreamVersionId: input.CurrentDeliveryStreamVersionId,\n })), (input.DeliveryStreamName !== undefined &&\n input.DeliveryStreamName !== null && { DeliveryStreamName: input.DeliveryStreamName })), (input.DestinationId !== undefined && input.DestinationId !== null && { DestinationId: input.DestinationId })), (input.ElasticsearchDestinationUpdate !== undefined &&\n input.ElasticsearchDestinationUpdate !== null && {\n ElasticsearchDestinationUpdate: serializeAws_json1_1ElasticsearchDestinationUpdate(input.ElasticsearchDestinationUpdate, context),\n })), (input.ExtendedS3DestinationUpdate !== undefined &&\n input.ExtendedS3DestinationUpdate !== null && {\n ExtendedS3DestinationUpdate: serializeAws_json1_1ExtendedS3DestinationUpdate(input.ExtendedS3DestinationUpdate, context),\n })), (input.HttpEndpointDestinationUpdate !== undefined &&\n input.HttpEndpointDestinationUpdate !== null && {\n HttpEndpointDestinationUpdate: serializeAws_json1_1HttpEndpointDestinationUpdate(input.HttpEndpointDestinationUpdate, context),\n })), (input.RedshiftDestinationUpdate !== undefined &&\n input.RedshiftDestinationUpdate !== null && {\n RedshiftDestinationUpdate: serializeAws_json1_1RedshiftDestinationUpdate(input.RedshiftDestinationUpdate, context),\n })), (input.S3DestinationUpdate !== undefined &&\n input.S3DestinationUpdate !== null && {\n S3DestinationUpdate: serializeAws_json1_1S3DestinationUpdate(input.S3DestinationUpdate, context),\n })), (input.SplunkDestinationUpdate !== undefined &&\n input.SplunkDestinationUpdate !== null && {\n SplunkDestinationUpdate: serializeAws_json1_1SplunkDestinationUpdate(input.SplunkDestinationUpdate, context),\n }));\n};\nvar serializeAws_json1_1VpcConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.RoleARN !== undefined && input.RoleARN !== null && { RoleARN: input.RoleARN })), (input.SecurityGroupIds !== undefined &&\n input.SecurityGroupIds !== null && {\n SecurityGroupIds: serializeAws_json1_1SecurityGroupIdList(input.SecurityGroupIds, context),\n })), (input.SubnetIds !== undefined &&\n input.SubnetIds !== null && { SubnetIds: serializeAws_json1_1SubnetIdList(input.SubnetIds, context) }));\n};\nvar deserializeAws_json1_1BufferingHints = function (output, context) {\n return {\n IntervalInSeconds: output.IntervalInSeconds !== undefined && output.IntervalInSeconds !== null\n ? output.IntervalInSeconds\n : undefined,\n SizeInMBs: output.SizeInMBs !== undefined && output.SizeInMBs !== null ? output.SizeInMBs : undefined,\n };\n};\nvar deserializeAws_json1_1CloudWatchLoggingOptions = function (output, context) {\n return {\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n LogGroupName: output.LogGroupName !== undefined && output.LogGroupName !== null ? output.LogGroupName : undefined,\n LogStreamName: output.LogStreamName !== undefined && output.LogStreamName !== null ? output.LogStreamName : undefined,\n };\n};\nvar deserializeAws_json1_1ColumnToJsonKeyMappings = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_json1_1ConcurrentModificationException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1CopyCommand = function (output, context) {\n return {\n CopyOptions: output.CopyOptions !== undefined && output.CopyOptions !== null ? output.CopyOptions : undefined,\n DataTableColumns: output.DataTableColumns !== undefined && output.DataTableColumns !== null ? output.DataTableColumns : undefined,\n DataTableName: output.DataTableName !== undefined && output.DataTableName !== null ? output.DataTableName : undefined,\n };\n};\nvar deserializeAws_json1_1CreateDeliveryStreamOutput = function (output, context) {\n return {\n DeliveryStreamARN: output.DeliveryStreamARN !== undefined && output.DeliveryStreamARN !== null\n ? output.DeliveryStreamARN\n : undefined,\n };\n};\nvar deserializeAws_json1_1DataFormatConversionConfiguration = function (output, context) {\n return {\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n InputFormatConfiguration: output.InputFormatConfiguration !== undefined && output.InputFormatConfiguration !== null\n ? deserializeAws_json1_1InputFormatConfiguration(output.InputFormatConfiguration, context)\n : undefined,\n OutputFormatConfiguration: output.OutputFormatConfiguration !== undefined && output.OutputFormatConfiguration !== null\n ? deserializeAws_json1_1OutputFormatConfiguration(output.OutputFormatConfiguration, context)\n : undefined,\n SchemaConfiguration: output.SchemaConfiguration !== undefined && output.SchemaConfiguration !== null\n ? deserializeAws_json1_1SchemaConfiguration(output.SchemaConfiguration, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DeleteDeliveryStreamOutput = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1DeliveryStreamDescription = function (output, context) {\n return {\n CreateTimestamp: output.CreateTimestamp !== undefined && output.CreateTimestamp !== null\n ? new Date(Math.round(output.CreateTimestamp * 1000))\n : undefined,\n DeliveryStreamARN: output.DeliveryStreamARN !== undefined && output.DeliveryStreamARN !== null\n ? output.DeliveryStreamARN\n : undefined,\n DeliveryStreamEncryptionConfiguration: output.DeliveryStreamEncryptionConfiguration !== undefined &&\n output.DeliveryStreamEncryptionConfiguration !== null\n ? deserializeAws_json1_1DeliveryStreamEncryptionConfiguration(output.DeliveryStreamEncryptionConfiguration, context)\n : undefined,\n DeliveryStreamName: output.DeliveryStreamName !== undefined && output.DeliveryStreamName !== null\n ? output.DeliveryStreamName\n : undefined,\n DeliveryStreamStatus: output.DeliveryStreamStatus !== undefined && output.DeliveryStreamStatus !== null\n ? output.DeliveryStreamStatus\n : undefined,\n DeliveryStreamType: output.DeliveryStreamType !== undefined && output.DeliveryStreamType !== null\n ? output.DeliveryStreamType\n : undefined,\n Destinations: output.Destinations !== undefined && output.Destinations !== null\n ? deserializeAws_json1_1DestinationDescriptionList(output.Destinations, context)\n : undefined,\n FailureDescription: output.FailureDescription !== undefined && output.FailureDescription !== null\n ? deserializeAws_json1_1FailureDescription(output.FailureDescription, context)\n : undefined,\n HasMoreDestinations: output.HasMoreDestinations !== undefined && output.HasMoreDestinations !== null\n ? output.HasMoreDestinations\n : undefined,\n LastUpdateTimestamp: output.LastUpdateTimestamp !== undefined && output.LastUpdateTimestamp !== null\n ? new Date(Math.round(output.LastUpdateTimestamp * 1000))\n : undefined,\n Source: output.Source !== undefined && output.Source !== null\n ? deserializeAws_json1_1SourceDescription(output.Source, context)\n : undefined,\n VersionId: output.VersionId !== undefined && output.VersionId !== null ? output.VersionId : undefined,\n };\n};\nvar deserializeAws_json1_1DeliveryStreamEncryptionConfiguration = function (output, context) {\n return {\n FailureDescription: output.FailureDescription !== undefined && output.FailureDescription !== null\n ? deserializeAws_json1_1FailureDescription(output.FailureDescription, context)\n : undefined,\n KeyARN: output.KeyARN !== undefined && output.KeyARN !== null ? output.KeyARN : undefined,\n KeyType: output.KeyType !== undefined && output.KeyType !== null ? output.KeyType : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1DeliveryStreamNameList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1DescribeDeliveryStreamOutput = function (output, context) {\n return {\n DeliveryStreamDescription: output.DeliveryStreamDescription !== undefined && output.DeliveryStreamDescription !== null\n ? deserializeAws_json1_1DeliveryStreamDescription(output.DeliveryStreamDescription, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Deserializer = function (output, context) {\n return {\n HiveJsonSerDe: output.HiveJsonSerDe !== undefined && output.HiveJsonSerDe !== null\n ? deserializeAws_json1_1HiveJsonSerDe(output.HiveJsonSerDe, context)\n : undefined,\n OpenXJsonSerDe: output.OpenXJsonSerDe !== undefined && output.OpenXJsonSerDe !== null\n ? deserializeAws_json1_1OpenXJsonSerDe(output.OpenXJsonSerDe, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DestinationDescription = function (output, context) {\n return {\n DestinationId: output.DestinationId !== undefined && output.DestinationId !== null ? output.DestinationId : undefined,\n ElasticsearchDestinationDescription: output.ElasticsearchDestinationDescription !== undefined && output.ElasticsearchDestinationDescription !== null\n ? deserializeAws_json1_1ElasticsearchDestinationDescription(output.ElasticsearchDestinationDescription, context)\n : undefined,\n ExtendedS3DestinationDescription: output.ExtendedS3DestinationDescription !== undefined && output.ExtendedS3DestinationDescription !== null\n ? deserializeAws_json1_1ExtendedS3DestinationDescription(output.ExtendedS3DestinationDescription, context)\n : undefined,\n HttpEndpointDestinationDescription: output.HttpEndpointDestinationDescription !== undefined && output.HttpEndpointDestinationDescription !== null\n ? deserializeAws_json1_1HttpEndpointDestinationDescription(output.HttpEndpointDestinationDescription, context)\n : undefined,\n RedshiftDestinationDescription: output.RedshiftDestinationDescription !== undefined && output.RedshiftDestinationDescription !== null\n ? deserializeAws_json1_1RedshiftDestinationDescription(output.RedshiftDestinationDescription, context)\n : undefined,\n S3DestinationDescription: output.S3DestinationDescription !== undefined && output.S3DestinationDescription !== null\n ? deserializeAws_json1_1S3DestinationDescription(output.S3DestinationDescription, context)\n : undefined,\n SplunkDestinationDescription: output.SplunkDestinationDescription !== undefined && output.SplunkDestinationDescription !== null\n ? deserializeAws_json1_1SplunkDestinationDescription(output.SplunkDestinationDescription, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DestinationDescriptionList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1DestinationDescription(entry, context);\n });\n};\nvar deserializeAws_json1_1ElasticsearchBufferingHints = function (output, context) {\n return {\n IntervalInSeconds: output.IntervalInSeconds !== undefined && output.IntervalInSeconds !== null\n ? output.IntervalInSeconds\n : undefined,\n SizeInMBs: output.SizeInMBs !== undefined && output.SizeInMBs !== null ? output.SizeInMBs : undefined,\n };\n};\nvar deserializeAws_json1_1ElasticsearchDestinationDescription = function (output, context) {\n return {\n BufferingHints: output.BufferingHints !== undefined && output.BufferingHints !== null\n ? deserializeAws_json1_1ElasticsearchBufferingHints(output.BufferingHints, context)\n : undefined,\n CloudWatchLoggingOptions: output.CloudWatchLoggingOptions !== undefined && output.CloudWatchLoggingOptions !== null\n ? deserializeAws_json1_1CloudWatchLoggingOptions(output.CloudWatchLoggingOptions, context)\n : undefined,\n ClusterEndpoint: output.ClusterEndpoint !== undefined && output.ClusterEndpoint !== null ? output.ClusterEndpoint : undefined,\n DomainARN: output.DomainARN !== undefined && output.DomainARN !== null ? output.DomainARN : undefined,\n IndexName: output.IndexName !== undefined && output.IndexName !== null ? output.IndexName : undefined,\n IndexRotationPeriod: output.IndexRotationPeriod !== undefined && output.IndexRotationPeriod !== null\n ? output.IndexRotationPeriod\n : undefined,\n ProcessingConfiguration: output.ProcessingConfiguration !== undefined && output.ProcessingConfiguration !== null\n ? deserializeAws_json1_1ProcessingConfiguration(output.ProcessingConfiguration, context)\n : undefined,\n RetryOptions: output.RetryOptions !== undefined && output.RetryOptions !== null\n ? deserializeAws_json1_1ElasticsearchRetryOptions(output.RetryOptions, context)\n : undefined,\n RoleARN: output.RoleARN !== undefined && output.RoleARN !== null ? output.RoleARN : undefined,\n S3BackupMode: output.S3BackupMode !== undefined && output.S3BackupMode !== null ? output.S3BackupMode : undefined,\n S3DestinationDescription: output.S3DestinationDescription !== undefined && output.S3DestinationDescription !== null\n ? deserializeAws_json1_1S3DestinationDescription(output.S3DestinationDescription, context)\n : undefined,\n TypeName: output.TypeName !== undefined && output.TypeName !== null ? output.TypeName : undefined,\n VpcConfigurationDescription: output.VpcConfigurationDescription !== undefined && output.VpcConfigurationDescription !== null\n ? deserializeAws_json1_1VpcConfigurationDescription(output.VpcConfigurationDescription, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ElasticsearchRetryOptions = function (output, context) {\n return {\n DurationInSeconds: output.DurationInSeconds !== undefined && output.DurationInSeconds !== null\n ? output.DurationInSeconds\n : undefined,\n };\n};\nvar deserializeAws_json1_1EncryptionConfiguration = function (output, context) {\n return {\n KMSEncryptionConfig: output.KMSEncryptionConfig !== undefined && output.KMSEncryptionConfig !== null\n ? deserializeAws_json1_1KMSEncryptionConfig(output.KMSEncryptionConfig, context)\n : undefined,\n NoEncryptionConfig: output.NoEncryptionConfig !== undefined && output.NoEncryptionConfig !== null\n ? output.NoEncryptionConfig\n : undefined,\n };\n};\nvar deserializeAws_json1_1ExtendedS3DestinationDescription = function (output, context) {\n return {\n BucketARN: output.BucketARN !== undefined && output.BucketARN !== null ? output.BucketARN : undefined,\n BufferingHints: output.BufferingHints !== undefined && output.BufferingHints !== null\n ? deserializeAws_json1_1BufferingHints(output.BufferingHints, context)\n : undefined,\n CloudWatchLoggingOptions: output.CloudWatchLoggingOptions !== undefined && output.CloudWatchLoggingOptions !== null\n ? deserializeAws_json1_1CloudWatchLoggingOptions(output.CloudWatchLoggingOptions, context)\n : undefined,\n CompressionFormat: output.CompressionFormat !== undefined && output.CompressionFormat !== null\n ? output.CompressionFormat\n : undefined,\n DataFormatConversionConfiguration: output.DataFormatConversionConfiguration !== undefined && output.DataFormatConversionConfiguration !== null\n ? deserializeAws_json1_1DataFormatConversionConfiguration(output.DataFormatConversionConfiguration, context)\n : undefined,\n EncryptionConfiguration: output.EncryptionConfiguration !== undefined && output.EncryptionConfiguration !== null\n ? deserializeAws_json1_1EncryptionConfiguration(output.EncryptionConfiguration, context)\n : undefined,\n ErrorOutputPrefix: output.ErrorOutputPrefix !== undefined && output.ErrorOutputPrefix !== null\n ? output.ErrorOutputPrefix\n : undefined,\n Prefix: output.Prefix !== undefined && output.Prefix !== null ? output.Prefix : undefined,\n ProcessingConfiguration: output.ProcessingConfiguration !== undefined && output.ProcessingConfiguration !== null\n ? deserializeAws_json1_1ProcessingConfiguration(output.ProcessingConfiguration, context)\n : undefined,\n RoleARN: output.RoleARN !== undefined && output.RoleARN !== null ? output.RoleARN : undefined,\n S3BackupDescription: output.S3BackupDescription !== undefined && output.S3BackupDescription !== null\n ? deserializeAws_json1_1S3DestinationDescription(output.S3BackupDescription, context)\n : undefined,\n S3BackupMode: output.S3BackupMode !== undefined && output.S3BackupMode !== null ? output.S3BackupMode : undefined,\n };\n};\nvar deserializeAws_json1_1FailureDescription = function (output, context) {\n return {\n Details: output.Details !== undefined && output.Details !== null ? output.Details : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1HiveJsonSerDe = function (output, context) {\n return {\n TimestampFormats: output.TimestampFormats !== undefined && output.TimestampFormats !== null\n ? deserializeAws_json1_1ListOfNonEmptyStrings(output.TimestampFormats, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1HttpEndpointBufferingHints = function (output, context) {\n return {\n IntervalInSeconds: output.IntervalInSeconds !== undefined && output.IntervalInSeconds !== null\n ? output.IntervalInSeconds\n : undefined,\n SizeInMBs: output.SizeInMBs !== undefined && output.SizeInMBs !== null ? output.SizeInMBs : undefined,\n };\n};\nvar deserializeAws_json1_1HttpEndpointCommonAttribute = function (output, context) {\n return {\n AttributeName: output.AttributeName !== undefined && output.AttributeName !== null ? output.AttributeName : undefined,\n AttributeValue: output.AttributeValue !== undefined && output.AttributeValue !== null ? output.AttributeValue : undefined,\n };\n};\nvar deserializeAws_json1_1HttpEndpointCommonAttributesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1HttpEndpointCommonAttribute(entry, context);\n });\n};\nvar deserializeAws_json1_1HttpEndpointDescription = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Url: output.Url !== undefined && output.Url !== null ? output.Url : undefined,\n };\n};\nvar deserializeAws_json1_1HttpEndpointDestinationDescription = function (output, context) {\n return {\n BufferingHints: output.BufferingHints !== undefined && output.BufferingHints !== null\n ? deserializeAws_json1_1HttpEndpointBufferingHints(output.BufferingHints, context)\n : undefined,\n CloudWatchLoggingOptions: output.CloudWatchLoggingOptions !== undefined && output.CloudWatchLoggingOptions !== null\n ? deserializeAws_json1_1CloudWatchLoggingOptions(output.CloudWatchLoggingOptions, context)\n : undefined,\n EndpointConfiguration: output.EndpointConfiguration !== undefined && output.EndpointConfiguration !== null\n ? deserializeAws_json1_1HttpEndpointDescription(output.EndpointConfiguration, context)\n : undefined,\n ProcessingConfiguration: output.ProcessingConfiguration !== undefined && output.ProcessingConfiguration !== null\n ? deserializeAws_json1_1ProcessingConfiguration(output.ProcessingConfiguration, context)\n : undefined,\n RequestConfiguration: output.RequestConfiguration !== undefined && output.RequestConfiguration !== null\n ? deserializeAws_json1_1HttpEndpointRequestConfiguration(output.RequestConfiguration, context)\n : undefined,\n RetryOptions: output.RetryOptions !== undefined && output.RetryOptions !== null\n ? deserializeAws_json1_1HttpEndpointRetryOptions(output.RetryOptions, context)\n : undefined,\n RoleARN: output.RoleARN !== undefined && output.RoleARN !== null ? output.RoleARN : undefined,\n S3BackupMode: output.S3BackupMode !== undefined && output.S3BackupMode !== null ? output.S3BackupMode : undefined,\n S3DestinationDescription: output.S3DestinationDescription !== undefined && output.S3DestinationDescription !== null\n ? deserializeAws_json1_1S3DestinationDescription(output.S3DestinationDescription, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1HttpEndpointRequestConfiguration = function (output, context) {\n return {\n CommonAttributes: output.CommonAttributes !== undefined && output.CommonAttributes !== null\n ? deserializeAws_json1_1HttpEndpointCommonAttributesList(output.CommonAttributes, context)\n : undefined,\n ContentEncoding: output.ContentEncoding !== undefined && output.ContentEncoding !== null ? output.ContentEncoding : undefined,\n };\n};\nvar deserializeAws_json1_1HttpEndpointRetryOptions = function (output, context) {\n return {\n DurationInSeconds: output.DurationInSeconds !== undefined && output.DurationInSeconds !== null\n ? output.DurationInSeconds\n : undefined,\n };\n};\nvar deserializeAws_json1_1InputFormatConfiguration = function (output, context) {\n return {\n Deserializer: output.Deserializer !== undefined && output.Deserializer !== null\n ? deserializeAws_json1_1Deserializer(output.Deserializer, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidArgumentException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidKMSResourceException = function (output, context) {\n return {\n code: output.code !== undefined && output.code !== null ? output.code : undefined,\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1KinesisStreamSourceDescription = function (output, context) {\n return {\n DeliveryStartTimestamp: output.DeliveryStartTimestamp !== undefined && output.DeliveryStartTimestamp !== null\n ? new Date(Math.round(output.DeliveryStartTimestamp * 1000))\n : undefined,\n KinesisStreamARN: output.KinesisStreamARN !== undefined && output.KinesisStreamARN !== null ? output.KinesisStreamARN : undefined,\n RoleARN: output.RoleARN !== undefined && output.RoleARN !== null ? output.RoleARN : undefined,\n };\n};\nvar deserializeAws_json1_1KMSEncryptionConfig = function (output, context) {\n return {\n AWSKMSKeyARN: output.AWSKMSKeyARN !== undefined && output.AWSKMSKeyARN !== null ? output.AWSKMSKeyARN : undefined,\n };\n};\nvar deserializeAws_json1_1LimitExceededException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ListDeliveryStreamsOutput = function (output, context) {\n return {\n DeliveryStreamNames: output.DeliveryStreamNames !== undefined && output.DeliveryStreamNames !== null\n ? deserializeAws_json1_1DeliveryStreamNameList(output.DeliveryStreamNames, context)\n : undefined,\n HasMoreDeliveryStreams: output.HasMoreDeliveryStreams !== undefined && output.HasMoreDeliveryStreams !== null\n ? output.HasMoreDeliveryStreams\n : undefined,\n };\n};\nvar deserializeAws_json1_1ListOfNonEmptyStrings = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ListOfNonEmptyStringsWithoutWhitespace = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ListTagsForDeliveryStreamOutput = function (output, context) {\n return {\n HasMoreTags: output.HasMoreTags !== undefined && output.HasMoreTags !== null ? output.HasMoreTags : undefined,\n Tags: output.Tags !== undefined && output.Tags !== null\n ? deserializeAws_json1_1ListTagsForDeliveryStreamOutputTagList(output.Tags, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ListTagsForDeliveryStreamOutputTagList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Tag(entry, context);\n });\n};\nvar deserializeAws_json1_1OpenXJsonSerDe = function (output, context) {\n return {\n CaseInsensitive: output.CaseInsensitive !== undefined && output.CaseInsensitive !== null ? output.CaseInsensitive : undefined,\n ColumnToJsonKeyMappings: output.ColumnToJsonKeyMappings !== undefined && output.ColumnToJsonKeyMappings !== null\n ? deserializeAws_json1_1ColumnToJsonKeyMappings(output.ColumnToJsonKeyMappings, context)\n : undefined,\n ConvertDotsInJsonKeysToUnderscores: output.ConvertDotsInJsonKeysToUnderscores !== undefined && output.ConvertDotsInJsonKeysToUnderscores !== null\n ? output.ConvertDotsInJsonKeysToUnderscores\n : undefined,\n };\n};\nvar deserializeAws_json1_1OrcSerDe = function (output, context) {\n return {\n BlockSizeBytes: output.BlockSizeBytes !== undefined && output.BlockSizeBytes !== null ? output.BlockSizeBytes : undefined,\n BloomFilterColumns: output.BloomFilterColumns !== undefined && output.BloomFilterColumns !== null\n ? deserializeAws_json1_1ListOfNonEmptyStringsWithoutWhitespace(output.BloomFilterColumns, context)\n : undefined,\n BloomFilterFalsePositiveProbability: output.BloomFilterFalsePositiveProbability !== undefined && output.BloomFilterFalsePositiveProbability !== null\n ? output.BloomFilterFalsePositiveProbability\n : undefined,\n Compression: output.Compression !== undefined && output.Compression !== null ? output.Compression : undefined,\n DictionaryKeyThreshold: output.DictionaryKeyThreshold !== undefined && output.DictionaryKeyThreshold !== null\n ? output.DictionaryKeyThreshold\n : undefined,\n EnablePadding: output.EnablePadding !== undefined && output.EnablePadding !== null ? output.EnablePadding : undefined,\n FormatVersion: output.FormatVersion !== undefined && output.FormatVersion !== null ? output.FormatVersion : undefined,\n PaddingTolerance: output.PaddingTolerance !== undefined && output.PaddingTolerance !== null ? output.PaddingTolerance : undefined,\n RowIndexStride: output.RowIndexStride !== undefined && output.RowIndexStride !== null ? output.RowIndexStride : undefined,\n StripeSizeBytes: output.StripeSizeBytes !== undefined && output.StripeSizeBytes !== null ? output.StripeSizeBytes : undefined,\n };\n};\nvar deserializeAws_json1_1OutputFormatConfiguration = function (output, context) {\n return {\n Serializer: output.Serializer !== undefined && output.Serializer !== null\n ? deserializeAws_json1_1Serializer(output.Serializer, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ParquetSerDe = function (output, context) {\n return {\n BlockSizeBytes: output.BlockSizeBytes !== undefined && output.BlockSizeBytes !== null ? output.BlockSizeBytes : undefined,\n Compression: output.Compression !== undefined && output.Compression !== null ? output.Compression : undefined,\n EnableDictionaryCompression: output.EnableDictionaryCompression !== undefined && output.EnableDictionaryCompression !== null\n ? output.EnableDictionaryCompression\n : undefined,\n MaxPaddingBytes: output.MaxPaddingBytes !== undefined && output.MaxPaddingBytes !== null ? output.MaxPaddingBytes : undefined,\n PageSizeBytes: output.PageSizeBytes !== undefined && output.PageSizeBytes !== null ? output.PageSizeBytes : undefined,\n WriterVersion: output.WriterVersion !== undefined && output.WriterVersion !== null ? output.WriterVersion : undefined,\n };\n};\nvar deserializeAws_json1_1ProcessingConfiguration = function (output, context) {\n return {\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n Processors: output.Processors !== undefined && output.Processors !== null\n ? deserializeAws_json1_1ProcessorList(output.Processors, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Processor = function (output, context) {\n return {\n Parameters: output.Parameters !== undefined && output.Parameters !== null\n ? deserializeAws_json1_1ProcessorParameterList(output.Parameters, context)\n : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1ProcessorList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Processor(entry, context);\n });\n};\nvar deserializeAws_json1_1ProcessorParameter = function (output, context) {\n return {\n ParameterName: output.ParameterName !== undefined && output.ParameterName !== null ? output.ParameterName : undefined,\n ParameterValue: output.ParameterValue !== undefined && output.ParameterValue !== null ? output.ParameterValue : undefined,\n };\n};\nvar deserializeAws_json1_1ProcessorParameterList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ProcessorParameter(entry, context);\n });\n};\nvar deserializeAws_json1_1PutRecordBatchOutput = function (output, context) {\n return {\n Encrypted: output.Encrypted !== undefined && output.Encrypted !== null ? output.Encrypted : undefined,\n FailedPutCount: output.FailedPutCount !== undefined && output.FailedPutCount !== null ? output.FailedPutCount : undefined,\n RequestResponses: output.RequestResponses !== undefined && output.RequestResponses !== null\n ? deserializeAws_json1_1PutRecordBatchResponseEntryList(output.RequestResponses, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1PutRecordBatchResponseEntry = function (output, context) {\n return {\n ErrorCode: output.ErrorCode !== undefined && output.ErrorCode !== null ? output.ErrorCode : undefined,\n ErrorMessage: output.ErrorMessage !== undefined && output.ErrorMessage !== null ? output.ErrorMessage : undefined,\n RecordId: output.RecordId !== undefined && output.RecordId !== null ? output.RecordId : undefined,\n };\n};\nvar deserializeAws_json1_1PutRecordBatchResponseEntryList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1PutRecordBatchResponseEntry(entry, context);\n });\n};\nvar deserializeAws_json1_1PutRecordOutput = function (output, context) {\n return {\n Encrypted: output.Encrypted !== undefined && output.Encrypted !== null ? output.Encrypted : undefined,\n RecordId: output.RecordId !== undefined && output.RecordId !== null ? output.RecordId : undefined,\n };\n};\nvar deserializeAws_json1_1RedshiftDestinationDescription = function (output, context) {\n return {\n CloudWatchLoggingOptions: output.CloudWatchLoggingOptions !== undefined && output.CloudWatchLoggingOptions !== null\n ? deserializeAws_json1_1CloudWatchLoggingOptions(output.CloudWatchLoggingOptions, context)\n : undefined,\n ClusterJDBCURL: output.ClusterJDBCURL !== undefined && output.ClusterJDBCURL !== null ? output.ClusterJDBCURL : undefined,\n CopyCommand: output.CopyCommand !== undefined && output.CopyCommand !== null\n ? deserializeAws_json1_1CopyCommand(output.CopyCommand, context)\n : undefined,\n ProcessingConfiguration: output.ProcessingConfiguration !== undefined && output.ProcessingConfiguration !== null\n ? deserializeAws_json1_1ProcessingConfiguration(output.ProcessingConfiguration, context)\n : undefined,\n RetryOptions: output.RetryOptions !== undefined && output.RetryOptions !== null\n ? deserializeAws_json1_1RedshiftRetryOptions(output.RetryOptions, context)\n : undefined,\n RoleARN: output.RoleARN !== undefined && output.RoleARN !== null ? output.RoleARN : undefined,\n S3BackupDescription: output.S3BackupDescription !== undefined && output.S3BackupDescription !== null\n ? deserializeAws_json1_1S3DestinationDescription(output.S3BackupDescription, context)\n : undefined,\n S3BackupMode: output.S3BackupMode !== undefined && output.S3BackupMode !== null ? output.S3BackupMode : undefined,\n S3DestinationDescription: output.S3DestinationDescription !== undefined && output.S3DestinationDescription !== null\n ? deserializeAws_json1_1S3DestinationDescription(output.S3DestinationDescription, context)\n : undefined,\n Username: output.Username !== undefined && output.Username !== null ? output.Username : undefined,\n };\n};\nvar deserializeAws_json1_1RedshiftRetryOptions = function (output, context) {\n return {\n DurationInSeconds: output.DurationInSeconds !== undefined && output.DurationInSeconds !== null\n ? output.DurationInSeconds\n : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceInUseException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceNotFoundException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1S3DestinationDescription = function (output, context) {\n return {\n BucketARN: output.BucketARN !== undefined && output.BucketARN !== null ? output.BucketARN : undefined,\n BufferingHints: output.BufferingHints !== undefined && output.BufferingHints !== null\n ? deserializeAws_json1_1BufferingHints(output.BufferingHints, context)\n : undefined,\n CloudWatchLoggingOptions: output.CloudWatchLoggingOptions !== undefined && output.CloudWatchLoggingOptions !== null\n ? deserializeAws_json1_1CloudWatchLoggingOptions(output.CloudWatchLoggingOptions, context)\n : undefined,\n CompressionFormat: output.CompressionFormat !== undefined && output.CompressionFormat !== null\n ? output.CompressionFormat\n : undefined,\n EncryptionConfiguration: output.EncryptionConfiguration !== undefined && output.EncryptionConfiguration !== null\n ? deserializeAws_json1_1EncryptionConfiguration(output.EncryptionConfiguration, context)\n : undefined,\n ErrorOutputPrefix: output.ErrorOutputPrefix !== undefined && output.ErrorOutputPrefix !== null\n ? output.ErrorOutputPrefix\n : undefined,\n Prefix: output.Prefix !== undefined && output.Prefix !== null ? output.Prefix : undefined,\n RoleARN: output.RoleARN !== undefined && output.RoleARN !== null ? output.RoleARN : undefined,\n };\n};\nvar deserializeAws_json1_1SchemaConfiguration = function (output, context) {\n return {\n CatalogId: output.CatalogId !== undefined && output.CatalogId !== null ? output.CatalogId : undefined,\n DatabaseName: output.DatabaseName !== undefined && output.DatabaseName !== null ? output.DatabaseName : undefined,\n Region: output.Region !== undefined && output.Region !== null ? output.Region : undefined,\n RoleARN: output.RoleARN !== undefined && output.RoleARN !== null ? output.RoleARN : undefined,\n TableName: output.TableName !== undefined && output.TableName !== null ? output.TableName : undefined,\n VersionId: output.VersionId !== undefined && output.VersionId !== null ? output.VersionId : undefined,\n };\n};\nvar deserializeAws_json1_1SecurityGroupIdList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1Serializer = function (output, context) {\n return {\n OrcSerDe: output.OrcSerDe !== undefined && output.OrcSerDe !== null\n ? deserializeAws_json1_1OrcSerDe(output.OrcSerDe, context)\n : undefined,\n ParquetSerDe: output.ParquetSerDe !== undefined && output.ParquetSerDe !== null\n ? deserializeAws_json1_1ParquetSerDe(output.ParquetSerDe, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ServiceUnavailableException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1SourceDescription = function (output, context) {\n return {\n KinesisStreamSourceDescription: output.KinesisStreamSourceDescription !== undefined && output.KinesisStreamSourceDescription !== null\n ? deserializeAws_json1_1KinesisStreamSourceDescription(output.KinesisStreamSourceDescription, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1SplunkDestinationDescription = function (output, context) {\n return {\n CloudWatchLoggingOptions: output.CloudWatchLoggingOptions !== undefined && output.CloudWatchLoggingOptions !== null\n ? deserializeAws_json1_1CloudWatchLoggingOptions(output.CloudWatchLoggingOptions, context)\n : undefined,\n HECAcknowledgmentTimeoutInSeconds: output.HECAcknowledgmentTimeoutInSeconds !== undefined && output.HECAcknowledgmentTimeoutInSeconds !== null\n ? output.HECAcknowledgmentTimeoutInSeconds\n : undefined,\n HECEndpoint: output.HECEndpoint !== undefined && output.HECEndpoint !== null ? output.HECEndpoint : undefined,\n HECEndpointType: output.HECEndpointType !== undefined && output.HECEndpointType !== null ? output.HECEndpointType : undefined,\n HECToken: output.HECToken !== undefined && output.HECToken !== null ? output.HECToken : undefined,\n ProcessingConfiguration: output.ProcessingConfiguration !== undefined && output.ProcessingConfiguration !== null\n ? deserializeAws_json1_1ProcessingConfiguration(output.ProcessingConfiguration, context)\n : undefined,\n RetryOptions: output.RetryOptions !== undefined && output.RetryOptions !== null\n ? deserializeAws_json1_1SplunkRetryOptions(output.RetryOptions, context)\n : undefined,\n S3BackupMode: output.S3BackupMode !== undefined && output.S3BackupMode !== null ? output.S3BackupMode : undefined,\n S3DestinationDescription: output.S3DestinationDescription !== undefined && output.S3DestinationDescription !== null\n ? deserializeAws_json1_1S3DestinationDescription(output.S3DestinationDescription, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1SplunkRetryOptions = function (output, context) {\n return {\n DurationInSeconds: output.DurationInSeconds !== undefined && output.DurationInSeconds !== null\n ? output.DurationInSeconds\n : undefined,\n };\n};\nvar deserializeAws_json1_1StartDeliveryStreamEncryptionOutput = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1StopDeliveryStreamEncryptionOutput = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1SubnetIdList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1Tag = function (output, context) {\n return {\n Key: output.Key !== undefined && output.Key !== null ? output.Key : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1TagDeliveryStreamOutput = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1UntagDeliveryStreamOutput = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1UpdateDestinationOutput = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1VpcConfigurationDescription = function (output, context) {\n return {\n RoleARN: output.RoleARN !== undefined && output.RoleARN !== null ? output.RoleARN : undefined,\n SecurityGroupIds: output.SecurityGroupIds !== undefined && output.SecurityGroupIds !== null\n ? deserializeAws_json1_1SecurityGroupIdList(output.SecurityGroupIds, context)\n : undefined,\n SubnetIds: output.SubnetIds !== undefined && output.SubnetIds !== null\n ? deserializeAws_json1_1SubnetIdList(output.SubnetIds, context)\n : undefined,\n VpcId: output.VpcId !== undefined && output.VpcId !== null ? output.VpcId : undefined,\n };\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar buildHttpRpcRequest = function (context, headers, path, resolvedHostname, body) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n contents = {\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n path: path,\n headers: headers,\n };\n if (resolvedHostname !== undefined) {\n contents.hostname = resolvedHostname;\n }\n if (body !== undefined) {\n contents.body = body;\n }\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"](contents)];\n }\n });\n}); };\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_json1_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/protocols/Aws_json1_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/runtimeConfig.browser.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/runtimeConfig.browser.js ***! \********************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-firehose/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-firehose/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-firehose/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/dist/es/runtimeConfig.shared.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/dist/es/runtimeConfig.shared.js ***! \*******************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-firehose/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2015-08-04\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Firehose\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js ***! \*******************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-firehose/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/Kinesis.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/Kinesis.js ***! \*****************************************************************/ /*! exports provided: Kinesis */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Kinesis\", function() { return Kinesis; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _KinesisClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./KinesisClient */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/KinesisClient.js\");\n/* harmony import */ var _commands_AddTagsToStreamCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/AddTagsToStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/AddTagsToStreamCommand.js\");\n/* harmony import */ var _commands_CreateStreamCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CreateStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/CreateStreamCommand.js\");\n/* harmony import */ var _commands_DecreaseStreamRetentionPeriodCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/DecreaseStreamRetentionPeriodCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DecreaseStreamRetentionPeriodCommand.js\");\n/* harmony import */ var _commands_DeleteStreamCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/DeleteStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeleteStreamCommand.js\");\n/* harmony import */ var _commands_DeregisterStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/DeregisterStreamConsumerCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeregisterStreamConsumerCommand.js\");\n/* harmony import */ var _commands_DescribeLimitsCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/DescribeLimitsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeLimitsCommand.js\");\n/* harmony import */ var _commands_DescribeStreamCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/DescribeStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamCommand.js\");\n/* harmony import */ var _commands_DescribeStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/DescribeStreamConsumerCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamConsumerCommand.js\");\n/* harmony import */ var _commands_DescribeStreamSummaryCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/DescribeStreamSummaryCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamSummaryCommand.js\");\n/* harmony import */ var _commands_DisableEnhancedMonitoringCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DisableEnhancedMonitoringCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DisableEnhancedMonitoringCommand.js\");\n/* harmony import */ var _commands_EnableEnhancedMonitoringCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/EnableEnhancedMonitoringCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/EnableEnhancedMonitoringCommand.js\");\n/* harmony import */ var _commands_GetRecordsCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/GetRecordsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetRecordsCommand.js\");\n/* harmony import */ var _commands_GetShardIteratorCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/GetShardIteratorCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetShardIteratorCommand.js\");\n/* harmony import */ var _commands_IncreaseStreamRetentionPeriodCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/IncreaseStreamRetentionPeriodCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/IncreaseStreamRetentionPeriodCommand.js\");\n/* harmony import */ var _commands_ListShardsCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/ListShardsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListShardsCommand.js\");\n/* harmony import */ var _commands_ListStreamConsumersCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/ListStreamConsumersCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamConsumersCommand.js\");\n/* harmony import */ var _commands_ListStreamsCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/ListStreamsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamsCommand.js\");\n/* harmony import */ var _commands_ListTagsForStreamCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/ListTagsForStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListTagsForStreamCommand.js\");\n/* harmony import */ var _commands_MergeShardsCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/MergeShardsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/MergeShardsCommand.js\");\n/* harmony import */ var _commands_PutRecordCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/PutRecordCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordCommand.js\");\n/* harmony import */ var _commands_PutRecordsCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/PutRecordsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordsCommand.js\");\n/* harmony import */ var _commands_RegisterStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/RegisterStreamConsumerCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RegisterStreamConsumerCommand.js\");\n/* harmony import */ var _commands_RemoveTagsFromStreamCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/RemoveTagsFromStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RemoveTagsFromStreamCommand.js\");\n/* harmony import */ var _commands_SplitShardCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/SplitShardCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SplitShardCommand.js\");\n/* harmony import */ var _commands_StartStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/StartStreamEncryptionCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StartStreamEncryptionCommand.js\");\n/* harmony import */ var _commands_StopStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/StopStreamEncryptionCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StopStreamEncryptionCommand.js\");\n/* harmony import */ var _commands_SubscribeToShardCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/SubscribeToShardCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SubscribeToShardCommand.js\");\n/* harmony import */ var _commands_UpdateShardCountCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/UpdateShardCountCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/UpdateShardCountCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Amazon Kinesis Data Streams Service API Reference\n *

Amazon Kinesis Data Streams is a managed service that scales elastically for\n * real-time processing of streaming big data.

\n */\nvar Kinesis = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(Kinesis, _super);\n function Kinesis() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Kinesis.prototype.addTagsToStream = function (args, optionsOrCb, cb) {\n var command = new _commands_AddTagsToStreamCommand__WEBPACK_IMPORTED_MODULE_2__[\"AddTagsToStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.createStream = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateStreamCommand__WEBPACK_IMPORTED_MODULE_3__[\"CreateStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.decreaseStreamRetentionPeriod = function (args, optionsOrCb, cb) {\n var command = new _commands_DecreaseStreamRetentionPeriodCommand__WEBPACK_IMPORTED_MODULE_4__[\"DecreaseStreamRetentionPeriodCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.deleteStream = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteStreamCommand__WEBPACK_IMPORTED_MODULE_5__[\"DeleteStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.deregisterStreamConsumer = function (args, optionsOrCb, cb) {\n var command = new _commands_DeregisterStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_6__[\"DeregisterStreamConsumerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.describeLimits = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeLimitsCommand__WEBPACK_IMPORTED_MODULE_7__[\"DescribeLimitsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.describeStream = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeStreamCommand__WEBPACK_IMPORTED_MODULE_8__[\"DescribeStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.describeStreamConsumer = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_9__[\"DescribeStreamConsumerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.describeStreamSummary = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeStreamSummaryCommand__WEBPACK_IMPORTED_MODULE_10__[\"DescribeStreamSummaryCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.disableEnhancedMonitoring = function (args, optionsOrCb, cb) {\n var command = new _commands_DisableEnhancedMonitoringCommand__WEBPACK_IMPORTED_MODULE_11__[\"DisableEnhancedMonitoringCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.enableEnhancedMonitoring = function (args, optionsOrCb, cb) {\n var command = new _commands_EnableEnhancedMonitoringCommand__WEBPACK_IMPORTED_MODULE_12__[\"EnableEnhancedMonitoringCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.getRecords = function (args, optionsOrCb, cb) {\n var command = new _commands_GetRecordsCommand__WEBPACK_IMPORTED_MODULE_13__[\"GetRecordsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.getShardIterator = function (args, optionsOrCb, cb) {\n var command = new _commands_GetShardIteratorCommand__WEBPACK_IMPORTED_MODULE_14__[\"GetShardIteratorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.increaseStreamRetentionPeriod = function (args, optionsOrCb, cb) {\n var command = new _commands_IncreaseStreamRetentionPeriodCommand__WEBPACK_IMPORTED_MODULE_15__[\"IncreaseStreamRetentionPeriodCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.listShards = function (args, optionsOrCb, cb) {\n var command = new _commands_ListShardsCommand__WEBPACK_IMPORTED_MODULE_16__[\"ListShardsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.listStreamConsumers = function (args, optionsOrCb, cb) {\n var command = new _commands_ListStreamConsumersCommand__WEBPACK_IMPORTED_MODULE_17__[\"ListStreamConsumersCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.listStreams = function (args, optionsOrCb, cb) {\n var command = new _commands_ListStreamsCommand__WEBPACK_IMPORTED_MODULE_18__[\"ListStreamsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.listTagsForStream = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTagsForStreamCommand__WEBPACK_IMPORTED_MODULE_19__[\"ListTagsForStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.mergeShards = function (args, optionsOrCb, cb) {\n var command = new _commands_MergeShardsCommand__WEBPACK_IMPORTED_MODULE_20__[\"MergeShardsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.putRecord = function (args, optionsOrCb, cb) {\n var command = new _commands_PutRecordCommand__WEBPACK_IMPORTED_MODULE_21__[\"PutRecordCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.putRecords = function (args, optionsOrCb, cb) {\n var command = new _commands_PutRecordsCommand__WEBPACK_IMPORTED_MODULE_22__[\"PutRecordsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.registerStreamConsumer = function (args, optionsOrCb, cb) {\n var command = new _commands_RegisterStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_23__[\"RegisterStreamConsumerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.removeTagsFromStream = function (args, optionsOrCb, cb) {\n var command = new _commands_RemoveTagsFromStreamCommand__WEBPACK_IMPORTED_MODULE_24__[\"RemoveTagsFromStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.splitShard = function (args, optionsOrCb, cb) {\n var command = new _commands_SplitShardCommand__WEBPACK_IMPORTED_MODULE_25__[\"SplitShardCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.startStreamEncryption = function (args, optionsOrCb, cb) {\n var command = new _commands_StartStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_26__[\"StartStreamEncryptionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.stopStreamEncryption = function (args, optionsOrCb, cb) {\n var command = new _commands_StopStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_27__[\"StopStreamEncryptionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.subscribeToShard = function (args, optionsOrCb, cb) {\n var command = new _commands_SubscribeToShardCommand__WEBPACK_IMPORTED_MODULE_28__[\"SubscribeToShardCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Kinesis.prototype.updateShardCount = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateShardCountCommand__WEBPACK_IMPORTED_MODULE_29__[\"UpdateShardCountCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return Kinesis;\n}(_KinesisClient__WEBPACK_IMPORTED_MODULE_1__[\"KinesisClient\"]));\n\n//# sourceMappingURL=Kinesis.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/Kinesis.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/KinesisClient.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/KinesisClient.js ***! \***********************************************************************/ /*! exports provided: KinesisClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KinesisClient\", function() { return KinesisClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_eventstream_serde_config_resolver__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/eventstream-serde-config-resolver */ \"./node_modules/@aws-sdk/eventstream-serde-config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Amazon Kinesis Data Streams Service API Reference\n *

Amazon Kinesis Data Streams is a managed service that scales elastically for\n * real-time processing of streaming big data.

\n */\nvar KinesisClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(KinesisClient, _super);\n function KinesisClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_8__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_7__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_5__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_9__[\"resolveUserAgentConfig\"])(_config_5);\n var _config_7 = Object(_aws_sdk_eventstream_serde_config_resolver__WEBPACK_IMPORTED_MODULE_3__[\"resolveEventStreamSerdeConfig\"])(_config_6);\n _this = _super.call(this, _config_7) || this;\n _this.config = _config_7;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_8__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_7__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_4__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_5__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_6__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_9__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n KinesisClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return KinesisClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_10__[\"Client\"]));\n\n//# sourceMappingURL=KinesisClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/KinesisClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/AddTagsToStreamCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/AddTagsToStreamCommand.js ***! \*****************************************************************************************/ /*! exports provided: AddTagsToStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AddTagsToStreamCommand\", function() { return AddTagsToStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Adds or updates tags for the specified Kinesis data stream. Each time you invoke\n * this operation, you can specify up to 10 tags. If you want to add more than 10 tags to\n * your stream, you can invoke this operation multiple times. In total, each stream can\n * have up to 50 tags.

\n *

If tags have already been assigned to the stream, AddTagsToStream\n * overwrites any existing tags that correspond to the specified tag keys.

\n *

\n * AddTagsToStream has a limit of five transactions per second per\n * account.

\n */\nvar AddTagsToStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AddTagsToStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function AddTagsToStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n AddTagsToStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"AddTagsToStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"AddTagsToStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n AddTagsToStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1AddTagsToStreamCommand\"])(input, context);\n };\n AddTagsToStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1AddTagsToStreamCommand\"])(output, context);\n };\n return AddTagsToStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=AddTagsToStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/AddTagsToStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/CreateStreamCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/CreateStreamCommand.js ***! \**************************************************************************************/ /*! exports provided: CreateStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamCommand\", function() { return CreateStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a Kinesis data stream. A stream captures and transports data records that\n * are continuously emitted from different data sources or producers.\n * Scale-out within a stream is explicitly supported by means of shards, which are uniquely\n * identified groups of data records in a stream.

\n *

You specify and control the number of shards that a stream is composed of. Each\n * shard can support reads up to five transactions per second, up to a maximum data read\n * total of 2 MiB per second. Each shard can support writes up to 1,000 records per second,\n * up to a maximum data write total of 1 MiB per second. If the amount of data input\n * increases or decreases, you can add or remove shards.

\n *

The stream name identifies the stream. The name is scoped to the AWS account used\n * by the application. It is also scoped by AWS Region. That is, two streams in two\n * different accounts can have the same name, and two streams in the same account, but in\n * two different Regions, can have the same name.

\n *

\n * CreateStream is an asynchronous operation. Upon receiving a\n * CreateStream request, Kinesis Data Streams immediately returns and sets\n * the stream status to CREATING. After the stream is created, Kinesis Data\n * Streams sets the stream status to ACTIVE. You should perform read and write\n * operations only on an ACTIVE stream.

\n *

You receive a LimitExceededException when making a\n * CreateStream request when you try to do one of the following:

\n *
    \n *
  • \n *\n *

    Have more than five streams in the CREATING state at any point\n * in time.

    \n *
  • \n *
  • \n *\n *

    Create more shards than are authorized for your account.

    \n *
  • \n *
\n *

For the default shard limit for an AWS account, see Amazon Kinesis Data Streams\n * Limits in the Amazon Kinesis Data Streams Developer\n * Guide. To increase this limit, contact AWS\n * Support.

\n *

You can use DescribeStream to check the stream status, which is\n * returned in StreamStatus.

\n *

\n * CreateStream has a limit of five transactions per second per\n * account.

\n */\nvar CreateStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"CreateStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateStreamCommand\"])(input, context);\n };\n CreateStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateStreamCommand\"])(output, context);\n };\n return CreateStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/CreateStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DecreaseStreamRetentionPeriodCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DecreaseStreamRetentionPeriodCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DecreaseStreamRetentionPeriodCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DecreaseStreamRetentionPeriodCommand\", function() { return DecreaseStreamRetentionPeriodCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Decreases the Kinesis data stream's retention period, which is the length of time\n * data records are accessible after they are added to the stream. The minimum value of a\n * stream's retention period is 24 hours.

\n *

This operation may result in lost data. For example, if the stream's retention\n * period is 48 hours and is decreased to 24 hours, any data already in the stream that is\n * older than 24 hours is inaccessible.

\n */\nvar DecreaseStreamRetentionPeriodCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DecreaseStreamRetentionPeriodCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DecreaseStreamRetentionPeriodCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DecreaseStreamRetentionPeriodCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"DecreaseStreamRetentionPeriodCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DecreaseStreamRetentionPeriodInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DecreaseStreamRetentionPeriodCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DecreaseStreamRetentionPeriodCommand\"])(input, context);\n };\n DecreaseStreamRetentionPeriodCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand\"])(output, context);\n };\n return DecreaseStreamRetentionPeriodCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DecreaseStreamRetentionPeriodCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DecreaseStreamRetentionPeriodCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeleteStreamCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeleteStreamCommand.js ***! \**************************************************************************************/ /*! exports provided: DeleteStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamCommand\", function() { return DeleteStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a Kinesis data stream and all its shards and data. You must shut down any\n * applications that are operating on the stream before you delete the stream. If an\n * application attempts to operate on a deleted stream, it receives the exception\n * ResourceNotFoundException.

\n *

If the stream is in the ACTIVE state, you can delete it. After a\n * DeleteStream request, the specified stream is in the\n * DELETING state until Kinesis Data Streams completes the\n * deletion.

\n *

\n * Note: Kinesis Data Streams might continue to accept\n * data read and write operations, such as PutRecord, PutRecords, and GetRecords, on a stream in the\n * DELETING state until the stream deletion is complete.

\n *

When you delete a stream, any shards in that stream are also deleted, and any tags\n * are dissociated from the stream.

\n *

You can use the DescribeStream operation to check the state of\n * the stream, which is returned in StreamStatus.

\n *

\n * DeleteStream has a limit of five transactions per second per\n * account.

\n */\nvar DeleteStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"DeleteStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteStreamCommand\"])(input, context);\n };\n DeleteStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteStreamCommand\"])(output, context);\n };\n return DeleteStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeleteStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeregisterStreamConsumerCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeregisterStreamConsumerCommand.js ***! \**************************************************************************************************/ /*! exports provided: DeregisterStreamConsumerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeregisterStreamConsumerCommand\", function() { return DeregisterStreamConsumerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

To deregister a consumer, provide its ARN. Alternatively, you can provide the ARN of\n * the data stream and the name you gave the consumer when you registered it. You may also\n * provide all three parameters, as long as they don't conflict with each other. If you\n * don't know the name or ARN of the consumer that you want to deregister, you can use the\n * ListStreamConsumers operation to get a list of the descriptions of\n * all the consumers that are currently registered with a given data stream. The\n * description of a consumer contains its name and ARN.

\n *

This operation has a limit of five transactions per second per stream.

\n */\nvar DeregisterStreamConsumerCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeregisterStreamConsumerCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeregisterStreamConsumerCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeregisterStreamConsumerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"DeregisterStreamConsumerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeregisterStreamConsumerInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeregisterStreamConsumerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeregisterStreamConsumerCommand\"])(input, context);\n };\n DeregisterStreamConsumerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeregisterStreamConsumerCommand\"])(output, context);\n };\n return DeregisterStreamConsumerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeregisterStreamConsumerCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeregisterStreamConsumerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeLimitsCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeLimitsCommand.js ***! \****************************************************************************************/ /*! exports provided: DescribeLimitsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeLimitsCommand\", function() { return DescribeLimitsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Describes the shard limits and usage for the account.

\n *

If you update your account limits, the old limits might be returned for a few\n * minutes.

\n *

This operation has a limit of one transaction per second per account.

\n */\nvar DescribeLimitsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeLimitsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeLimitsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeLimitsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"DescribeLimitsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeLimitsInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeLimitsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeLimitsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeLimitsCommand\"])(input, context);\n };\n DescribeLimitsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeLimitsCommand\"])(output, context);\n };\n return DescribeLimitsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeLimitsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeLimitsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamCommand.js ***! \****************************************************************************************/ /*! exports provided: DescribeStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamCommand\", function() { return DescribeStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Describes the specified Kinesis data stream.

\n *\n *

The information returned includes the stream name, Amazon Resource Name (ARN),\n * creation time, enhanced metric configuration, and shard map. The shard map is an array\n * of shard objects. For each shard object, there is the hash key and sequence number\n * ranges that the shard spans, and the IDs of any earlier shards that played in a role in\n * creating the shard. Every record ingested in the stream is identified by a sequence\n * number, which is assigned when the record is put into the stream.

\n *\n *

You can limit the number of shards returned by each call. For more information, see\n * Retrieving\n * Shards from a Stream in the Amazon Kinesis Data Streams Developer\n * Guide.

\n *

There are no guarantees about the chronological order shards returned. To process\n * shards in chronological order, use the ID of the parent shard to track the lineage to\n * the oldest shard.

\n *

This operation has a limit of 10 transactions per second per account.

\n */\nvar DescribeStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"DescribeStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeStreamCommand\"])(input, context);\n };\n DescribeStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeStreamCommand\"])(output, context);\n };\n return DescribeStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamConsumerCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamConsumerCommand.js ***! \************************************************************************************************/ /*! exports provided: DescribeStreamConsumerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamConsumerCommand\", function() { return DescribeStreamConsumerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

To get the description of a registered consumer, provide the ARN of the consumer.\n * Alternatively, you can provide the ARN of the data stream and the name you gave the\n * consumer when you registered it. You may also provide all three parameters, as long as\n * they don't conflict with each other. If you don't know the name or ARN of the consumer\n * that you want to describe, you can use the ListStreamConsumers\n * operation to get a list of the descriptions of all the consumers that are currently\n * registered with a given data stream.

\n *

This operation has a limit of 20 transactions per second per stream.

\n */\nvar DescribeStreamConsumerCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeStreamConsumerCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeStreamConsumerCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeStreamConsumerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"DescribeStreamConsumerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamConsumerInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamConsumerOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeStreamConsumerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeStreamConsumerCommand\"])(input, context);\n };\n DescribeStreamConsumerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeStreamConsumerCommand\"])(output, context);\n };\n return DescribeStreamConsumerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeStreamConsumerCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamConsumerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamSummaryCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamSummaryCommand.js ***! \***********************************************************************************************/ /*! exports provided: DescribeStreamSummaryCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamSummaryCommand\", function() { return DescribeStreamSummaryCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Provides a summarized description of the specified Kinesis data stream without the\n * shard list.

\n *

The information returned includes the stream name, Amazon Resource Name (ARN),\n * status, record retention period, approximate creation time, monitoring, encryption\n * details, and open shard count.

\n *

\n * DescribeStreamSummary has a limit of 20 transactions per second\n * per account.

\n */\nvar DescribeStreamSummaryCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeStreamSummaryCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeStreamSummaryCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeStreamSummaryCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"DescribeStreamSummaryCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamSummaryInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamSummaryOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeStreamSummaryCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeStreamSummaryCommand\"])(input, context);\n };\n DescribeStreamSummaryCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeStreamSummaryCommand\"])(output, context);\n };\n return DescribeStreamSummaryCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeStreamSummaryCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamSummaryCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DisableEnhancedMonitoringCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DisableEnhancedMonitoringCommand.js ***! \***************************************************************************************************/ /*! exports provided: DisableEnhancedMonitoringCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DisableEnhancedMonitoringCommand\", function() { return DisableEnhancedMonitoringCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables enhanced monitoring.

\n */\nvar DisableEnhancedMonitoringCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DisableEnhancedMonitoringCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DisableEnhancedMonitoringCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DisableEnhancedMonitoringCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"DisableEnhancedMonitoringCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DisableEnhancedMonitoringInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"EnhancedMonitoringOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DisableEnhancedMonitoringCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DisableEnhancedMonitoringCommand\"])(input, context);\n };\n DisableEnhancedMonitoringCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DisableEnhancedMonitoringCommand\"])(output, context);\n };\n return DisableEnhancedMonitoringCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DisableEnhancedMonitoringCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DisableEnhancedMonitoringCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/EnableEnhancedMonitoringCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/EnableEnhancedMonitoringCommand.js ***! \**************************************************************************************************/ /*! exports provided: EnableEnhancedMonitoringCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EnableEnhancedMonitoringCommand\", function() { return EnableEnhancedMonitoringCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables enhanced Kinesis data stream monitoring for shard-level metrics.

\n */\nvar EnableEnhancedMonitoringCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(EnableEnhancedMonitoringCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function EnableEnhancedMonitoringCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n EnableEnhancedMonitoringCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"EnableEnhancedMonitoringCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"EnableEnhancedMonitoringInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"EnhancedMonitoringOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n EnableEnhancedMonitoringCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1EnableEnhancedMonitoringCommand\"])(input, context);\n };\n EnableEnhancedMonitoringCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1EnableEnhancedMonitoringCommand\"])(output, context);\n };\n return EnableEnhancedMonitoringCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=EnableEnhancedMonitoringCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/EnableEnhancedMonitoringCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetRecordsCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetRecordsCommand.js ***! \************************************************************************************/ /*! exports provided: GetRecordsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetRecordsCommand\", function() { return GetRecordsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets data records from a Kinesis data stream's shard.

\n *

Specify a shard iterator using the ShardIterator parameter. The shard\n * iterator specifies the position in the shard from which you want to start reading data\n * records sequentially. If there are no records available in the portion of the shard that\n * the iterator points to, GetRecords returns an empty list. It might\n * take multiple calls to get to a portion of the shard that contains records.

\n *

You can scale by provisioning multiple shards per stream while considering service\n * limits (for more information, see Amazon Kinesis Data Streams\n * Limits in the Amazon Kinesis Data Streams Developer\n * Guide). Your application should have one thread per shard, each reading\n * continuously from its stream. To read from a stream continually, call GetRecords in a loop. Use GetShardIterator to get the\n * shard iterator to specify in the first GetRecords call. GetRecords returns a new shard iterator in\n * NextShardIterator. Specify the shard iterator returned in\n * NextShardIterator in subsequent calls to GetRecords.\n * If the shard has been closed, the shard iterator can't return more data and GetRecords returns null in NextShardIterator.\n * You can terminate the loop when the shard is closed, or when the shard iterator reaches\n * the record with the sequence number or other attribute that marks it as the last record\n * to process.

\n *

Each data record can be up to 1 MiB in size, and each shard can read up to 2 MiB\n * per second. You can ensure that your calls don't exceed the maximum supported size or\n * throughput by using the Limit parameter to specify the maximum number of\n * records that GetRecords can return. Consider your average record size\n * when determining this limit. The maximum number of records that can be returned per call\n * is 10,000.

\n *\n *

The size of the data returned by GetRecords varies depending on\n * the utilization of the shard. The maximum size of data that GetRecords\n * can return is 10 MiB. If a call returns this amount of data, subsequent calls made\n * within the next 5 seconds throw ProvisionedThroughputExceededException. If\n * there is insufficient provisioned throughput on the stream, subsequent calls made within\n * the next 1 second throw ProvisionedThroughputExceededException. GetRecords doesn't return any data when it throws an exception. For this\n * reason, we recommend that you wait 1 second between calls to GetRecords. However, it's possible that the application will get exceptions for longer than 1\n * second.

\n *

To detect whether the application is falling behind in processing, you can use the\n * MillisBehindLatest response attribute. You can also monitor the stream\n * using CloudWatch metrics and other mechanisms (see Monitoring in the Amazon\n * Kinesis Data Streams Developer Guide).

\n *

Each Amazon Kinesis record includes a value,\n * ApproximateArrivalTimestamp, that is set when a stream successfully\n * receives and stores a record. This is commonly referred to as a server-side time stamp,\n * whereas a client-side time stamp is set when a data producer creates or sends the record\n * to a stream (a data producer is any data source putting data records into a stream, for\n * example with PutRecords). The time stamp has millisecond precision.\n * There are no guarantees about the time stamp accuracy, or that the time stamp is always\n * increasing. For example, records in a shard or across a stream might have time stamps\n * that are out of order.

\n *

This operation has a limit of five transactions per second per shard.

\n */\nvar GetRecordsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetRecordsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetRecordsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetRecordsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"GetRecordsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetRecordsInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetRecordsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetRecordsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetRecordsCommand\"])(input, context);\n };\n GetRecordsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetRecordsCommand\"])(output, context);\n };\n return GetRecordsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetRecordsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetRecordsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetShardIteratorCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetShardIteratorCommand.js ***! \******************************************************************************************/ /*! exports provided: GetShardIteratorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetShardIteratorCommand\", function() { return GetShardIteratorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets an Amazon Kinesis shard iterator. A shard iterator expires 5 minutes after it\n * is returned to the requester.

\n *

A shard iterator specifies the shard position from which to start reading data\n * records sequentially. The position is specified using the sequence number of a data\n * record in a shard. A sequence number is the identifier associated with every record\n * ingested in the stream, and is assigned when a record is put into the stream. Each\n * stream has one or more shards.

\n *

You must specify the shard iterator type. For example, you can set the\n * ShardIteratorType parameter to read exactly from the position denoted\n * by a specific sequence number by using the AT_SEQUENCE_NUMBER shard\n * iterator type. Alternatively, the parameter can read right after the sequence number by\n * using the AFTER_SEQUENCE_NUMBER shard iterator type, using sequence numbers\n * returned by earlier calls to PutRecord, PutRecords,\n * GetRecords, or DescribeStream. In the request,\n * you can specify the shard iterator type AT_TIMESTAMP to read records from\n * an arbitrary point in time, TRIM_HORIZON to cause\n * ShardIterator to point to the last untrimmed record in the shard in the\n * system (the oldest data record in the shard), or LATEST so that you always\n * read the most recent data in the shard.

\n *

When you read repeatedly from a stream, use a GetShardIterator\n * request to get the first shard iterator for use in your first GetRecords request and for subsequent reads use the shard iterator returned by the GetRecords request in NextShardIterator. A new shard\n * iterator is returned by every GetRecords request in\n * NextShardIterator, which you use in the ShardIterator\n * parameter of the next GetRecords request.

\n *

If a GetShardIterator request is made too often, you receive a\n * ProvisionedThroughputExceededException. For more information about\n * throughput limits, see GetRecords, and Streams Limits in the\n * Amazon Kinesis Data Streams Developer Guide.

\n *

If the shard is closed, GetShardIterator returns a valid iterator\n * for the last sequence number of the shard. A shard can be closed as a result of using\n * SplitShard or MergeShards.

\n *

\n * GetShardIterator has a limit of five transactions per second per\n * account per open shard.

\n */\nvar GetShardIteratorCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetShardIteratorCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetShardIteratorCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetShardIteratorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"GetShardIteratorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetShardIteratorInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetShardIteratorOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetShardIteratorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetShardIteratorCommand\"])(input, context);\n };\n GetShardIteratorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetShardIteratorCommand\"])(output, context);\n };\n return GetShardIteratorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetShardIteratorCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetShardIteratorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/IncreaseStreamRetentionPeriodCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/IncreaseStreamRetentionPeriodCommand.js ***! \*******************************************************************************************************/ /*! exports provided: IncreaseStreamRetentionPeriodCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IncreaseStreamRetentionPeriodCommand\", function() { return IncreaseStreamRetentionPeriodCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Increases the Kinesis data stream's retention period, which is the length of time\n * data records are accessible after they are added to the stream. The maximum value of a\n * stream's retention period is 168 hours (7 days).

\n *

If you choose a longer stream retention period, this operation increases the time\n * period during which records that have not yet expired are accessible. However, it does\n * not make previous, expired data (older than the stream's previous retention period)\n * accessible after the operation has been called. For example, if a stream's retention\n * period is set to 24 hours and is increased to 168 hours, any data that is older than 24\n * hours remains inaccessible to consumer applications.

\n */\nvar IncreaseStreamRetentionPeriodCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(IncreaseStreamRetentionPeriodCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function IncreaseStreamRetentionPeriodCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n IncreaseStreamRetentionPeriodCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"IncreaseStreamRetentionPeriodCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"IncreaseStreamRetentionPeriodInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n IncreaseStreamRetentionPeriodCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1IncreaseStreamRetentionPeriodCommand\"])(input, context);\n };\n IncreaseStreamRetentionPeriodCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1IncreaseStreamRetentionPeriodCommand\"])(output, context);\n };\n return IncreaseStreamRetentionPeriodCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=IncreaseStreamRetentionPeriodCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/IncreaseStreamRetentionPeriodCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListShardsCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListShardsCommand.js ***! \************************************************************************************/ /*! exports provided: ListShardsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListShardsCommand\", function() { return ListShardsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the shards in a stream and provides information about each shard. This\n * operation has a limit of 100 transactions per second per data stream.

\n * \n *

This API is a new operation that is used by the Amazon Kinesis Client Library\n * (KCL). If you have a fine-grained IAM policy that only allows specific operations,\n * you must update your policy to allow calls to this API. For more information, see\n * Controlling Access to Amazon Kinesis Data Streams Resources Using\n * IAM.

\n *
\n */\nvar ListShardsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListShardsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListShardsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListShardsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"ListShardsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListShardsInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListShardsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListShardsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListShardsCommand\"])(input, context);\n };\n ListShardsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListShardsCommand\"])(output, context);\n };\n return ListShardsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListShardsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListShardsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamConsumersCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamConsumersCommand.js ***! \*********************************************************************************************/ /*! exports provided: ListStreamConsumersCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListStreamConsumersCommand\", function() { return ListStreamConsumersCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the consumers registered to receive data from a stream using enhanced fan-out,\n * and provides information about each consumer.

\n *

This operation has a limit of 5 transactions per second per stream.

\n */\nvar ListStreamConsumersCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListStreamConsumersCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListStreamConsumersCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListStreamConsumersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"ListStreamConsumersCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListStreamConsumersInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListStreamConsumersOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListStreamConsumersCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListStreamConsumersCommand\"])(input, context);\n };\n ListStreamConsumersCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListStreamConsumersCommand\"])(output, context);\n };\n return ListStreamConsumersCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListStreamConsumersCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamConsumersCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamsCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamsCommand.js ***! \*************************************************************************************/ /*! exports provided: ListStreamsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListStreamsCommand\", function() { return ListStreamsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists your Kinesis data streams.

\n *

The number of streams may be too large to return from a single call to\n * ListStreams. You can limit the number of returned streams using the\n * Limit parameter. If you do not specify a value for the\n * Limit parameter, Kinesis Data Streams uses the default limit, which is\n * currently 10.

\n *

You can detect if there are more streams available to list by using the\n * HasMoreStreams flag from the returned output. If there are more streams\n * available, you can request more streams by using the name of the last stream returned by\n * the ListStreams request in the ExclusiveStartStreamName\n * parameter in a subsequent request to ListStreams. The group of stream names\n * returned by the subsequent request is then added to the list. You can continue this\n * process until all the stream names have been collected in the list.

\n *

\n * ListStreams has a limit of five transactions per second per\n * account.

\n */\nvar ListStreamsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListStreamsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListStreamsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListStreamsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"ListStreamsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListStreamsInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListStreamsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListStreamsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListStreamsCommand\"])(input, context);\n };\n ListStreamsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListStreamsCommand\"])(output, context);\n };\n return ListStreamsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListStreamsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListTagsForStreamCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListTagsForStreamCommand.js ***! \*******************************************************************************************/ /*! exports provided: ListTagsForStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForStreamCommand\", function() { return ListTagsForStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists the tags for the specified Kinesis data stream. This operation has a limit of\n * five transactions per second per account.

\n */\nvar ListTagsForStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTagsForStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTagsForStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTagsForStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"ListTagsForStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForStreamOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTagsForStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListTagsForStreamCommand\"])(input, context);\n };\n ListTagsForStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListTagsForStreamCommand\"])(output, context);\n };\n return ListTagsForStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTagsForStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListTagsForStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/MergeShardsCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/MergeShardsCommand.js ***! \*************************************************************************************/ /*! exports provided: MergeShardsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MergeShardsCommand\", function() { return MergeShardsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Merges two adjacent shards in a Kinesis data stream and combines them into a single\n * shard to reduce the stream's capacity to ingest and transport data. Two shards are\n * considered adjacent if the union of the hash key ranges for the two shards form a\n * contiguous set with no gaps. For example, if you have two shards, one with a hash key\n * range of 276...381 and the other with a hash key range of 382...454, then you could\n * merge these two shards into a single shard that would have a hash key range of\n * 276...454. After the merge, the single child shard receives data for all hash key values\n * covered by the two parent shards.

\n *

\n * MergeShards is called when there is a need to reduce the overall capacity\n * of a stream because of excess capacity that is not being used. You must specify the\n * shard to be merged and the adjacent shard for a stream. For more information about\n * merging shards, see Merge Two\n * Shards in the Amazon Kinesis Data Streams Developer\n * Guide.

\n *

If the stream is in the ACTIVE state, you can call\n * MergeShards. If a stream is in the CREATING,\n * UPDATING, or DELETING state, MergeShards\n * returns a ResourceInUseException. If the specified stream does not exist,\n * MergeShards returns a ResourceNotFoundException.

\n *

You can use DescribeStream to check the state of the stream,\n * which is returned in StreamStatus.

\n *

\n * MergeShards is an asynchronous operation. Upon receiving a\n * MergeShards request, Amazon Kinesis Data Streams immediately returns a\n * response and sets the StreamStatus to UPDATING. After the\n * operation is completed, Kinesis Data Streams sets the StreamStatus to\n * ACTIVE. Read and write operations continue to work while the stream is\n * in the UPDATING state.

\n *

You use DescribeStream to determine the shard IDs that are\n * specified in the MergeShards request.

\n *

If you try to operate on too many streams in parallel using CreateStream, DeleteStream, MergeShards,\n * or SplitShard, you receive a LimitExceededException.

\n *

\n * MergeShards has a limit of five transactions per second per\n * account.

\n */\nvar MergeShardsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(MergeShardsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function MergeShardsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n MergeShardsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"MergeShardsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"MergeShardsInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n MergeShardsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1MergeShardsCommand\"])(input, context);\n };\n MergeShardsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1MergeShardsCommand\"])(output, context);\n };\n return MergeShardsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=MergeShardsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/MergeShardsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordCommand.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordCommand.js ***! \***********************************************************************************/ /*! exports provided: PutRecordCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordCommand\", function() { return PutRecordCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Writes a single data record into an Amazon Kinesis data stream. Call\n * PutRecord to send data into the stream for real-time ingestion and\n * subsequent processing, one record at a time. Each shard can support writes up to 1,000\n * records per second, up to a maximum data write total of 1 MiB per second.

\n *

You must specify the name of the stream that captures, stores, and transports the\n * data; a partition key; and the data blob itself.

\n *

The data blob can be any type of data; for example, a segment from a log file,\n * geographic/location data, website clickstream data, and so on.

\n *

The partition key is used by Kinesis Data Streams to distribute data across shards.\n * Kinesis Data Streams segregates the data records that belong to a stream into multiple\n * shards, using the partition key associated with each data record to determine the shard\n * to which a given data record belongs.

\n *

Partition keys are Unicode strings, with a maximum length limit of 256 characters\n * for each key. An MD5 hash function is used to map partition keys to 128-bit integer\n * values and to map associated data records to shards using the hash key ranges of the\n * shards. You can override hashing the partition key to determine the shard by explicitly\n * specifying a hash value using the ExplicitHashKey parameter. For more\n * information, see Adding Data to a Stream in the Amazon Kinesis Data Streams\n * Developer Guide.

\n *

\n * PutRecord returns the shard ID of where the data record was placed and the\n * sequence number that was assigned to the data record.

\n *

Sequence numbers increase over time and are specific to a shard within a stream,\n * not across all shards within a stream. To guarantee strictly increasing ordering, write\n * serially to a shard and use the SequenceNumberForOrdering parameter. For\n * more information, see Adding Data to a Stream in the Amazon Kinesis Data Streams\n * Developer Guide.

\n * \n *

After you write a record to a stream, you cannot modify that record or its order\n * within the stream.

\n *
\n *

If a PutRecord request cannot be processed because of insufficient\n * provisioned throughput on the shard involved in the request, PutRecord\n * throws ProvisionedThroughputExceededException.

\n *

By default, data records are accessible for 24 hours from the time that they are\n * added to a stream. You can use IncreaseStreamRetentionPeriod or DecreaseStreamRetentionPeriod to modify this retention period.

\n */\nvar PutRecordCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutRecordCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutRecordCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutRecordCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"PutRecordCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutRecordInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutRecordOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutRecordCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutRecordCommand\"])(input, context);\n };\n PutRecordCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutRecordCommand\"])(output, context);\n };\n return PutRecordCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutRecordCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordsCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordsCommand.js ***! \************************************************************************************/ /*! exports provided: PutRecordsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsCommand\", function() { return PutRecordsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Writes multiple data records into a Kinesis data stream in a single call (also\n * referred to as a PutRecords request). Use this operation to send data into\n * the stream for data ingestion and processing.

\n *

Each PutRecords request can support up to 500 records. Each record in\n * the request can be as large as 1 MiB, up to a limit of 5 MiB for the entire request,\n * including partition keys. Each shard can support writes up to 1,000 records per second,\n * up to a maximum data write total of 1 MiB per second.

\n *

You must specify the name of the stream that captures, stores, and transports the\n * data; and an array of request Records, with each record in the array\n * requiring a partition key and data blob. The record size limit applies to the total size\n * of the partition key and data blob.

\n *

The data blob can be any type of data; for example, a segment from a log file,\n * geographic/location data, website clickstream data, and so on.

\n *

The partition key is used by Kinesis Data Streams as input to a hash function that\n * maps the partition key and associated data to a specific shard. An MD5 hash function is\n * used to map partition keys to 128-bit integer values and to map associated data records\n * to shards. As a result of this hashing mechanism, all data records with the same\n * partition key map to the same shard within the stream. For more information, see Adding Data to a Stream in the Amazon Kinesis Data Streams\n * Developer Guide.

\n *

Each record in the Records array may include an optional parameter,\n * ExplicitHashKey, which overrides the partition key to shard mapping.\n * This parameter allows a data producer to determine explicitly the shard where the record\n * is stored. For more information, see Adding Multiple Records with PutRecords in the Amazon Kinesis\n * Data Streams Developer Guide.

\n *

The PutRecords response includes an array of response\n * Records. Each record in the response array directly correlates with a\n * record in the request array using natural ordering, from the top to the bottom of the\n * request and response. The response Records array always includes the same\n * number of records as the request array.

\n *

The response Records array includes both successfully and\n * unsuccessfully processed records. Kinesis Data Streams attempts to process all records\n * in each PutRecords request. A single record failure does not stop the\n * processing of subsequent records. As a result, PutRecords doesn't guarantee the ordering\n * of records. If you need to read records in the same order they are written to the\n * stream, use PutRecord instead of PutRecords, and write to\n * the same shard.

\n *

A successfully processed record includes ShardId and\n * SequenceNumber values. The ShardId parameter identifies\n * the shard in the stream where the record is stored. The SequenceNumber\n * parameter is an identifier assigned to the put record, unique to all records in the\n * stream.

\n *

An unsuccessfully processed record includes ErrorCode and\n * ErrorMessage values. ErrorCode reflects the type of error\n * and can be one of the following values:\n * ProvisionedThroughputExceededException or InternalFailure.\n * ErrorMessage provides more detailed information about the\n * ProvisionedThroughputExceededException exception including the account\n * ID, stream name, and shard ID of the record that was throttled. For more information\n * about partially successful responses, see Adding Multiple Records with PutRecords in the Amazon Kinesis\n * Data Streams Developer Guide.

\n * \n *

After you write a record to a stream, you cannot modify that record or its order\n * within the stream.

\n *
\n *

By default, data records are accessible for 24 hours from the time that they are\n * added to a stream. You can use IncreaseStreamRetentionPeriod or DecreaseStreamRetentionPeriod to modify this retention period.

\n */\nvar PutRecordsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutRecordsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutRecordsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutRecordsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"PutRecordsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutRecordsInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutRecordsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutRecordsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1PutRecordsCommand\"])(input, context);\n };\n PutRecordsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1PutRecordsCommand\"])(output, context);\n };\n return PutRecordsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutRecordsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RegisterStreamConsumerCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RegisterStreamConsumerCommand.js ***! \************************************************************************************************/ /*! exports provided: RegisterStreamConsumerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RegisterStreamConsumerCommand\", function() { return RegisterStreamConsumerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Registers a consumer with a Kinesis data stream. When you use this operation, the\n * consumer you register can then call SubscribeToShard to receive data\n * from the stream using enhanced fan-out, at a rate of up to 2 MiB per second for every\n * shard you subscribe to. This rate is unaffected by the total number of consumers that\n * read from the same stream.

\n *

You can register up to 20 consumers per stream. A given consumer can only be\n * registered with one stream at a time.

\n *

For an example of how to use this operations, see Enhanced Fan-Out\n * Using the Kinesis Data Streams API.

\n *

The use of this operation has a limit of five transactions per second per account.\n * Also, only 5 consumers can be created simultaneously. In other words, you cannot have\n * more than 5 consumers in a CREATING status at the same time. Registering a\n * 6th consumer while there are 5 in a CREATING status results in a\n * LimitExceededException.

\n */\nvar RegisterStreamConsumerCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(RegisterStreamConsumerCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function RegisterStreamConsumerCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n RegisterStreamConsumerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"RegisterStreamConsumerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"RegisterStreamConsumerInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"RegisterStreamConsumerOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n RegisterStreamConsumerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1RegisterStreamConsumerCommand\"])(input, context);\n };\n RegisterStreamConsumerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1RegisterStreamConsumerCommand\"])(output, context);\n };\n return RegisterStreamConsumerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=RegisterStreamConsumerCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RegisterStreamConsumerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RemoveTagsFromStreamCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RemoveTagsFromStreamCommand.js ***! \**********************************************************************************************/ /*! exports provided: RemoveTagsFromStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RemoveTagsFromStreamCommand\", function() { return RemoveTagsFromStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Removes tags from the specified Kinesis data stream. Removed tags are deleted and\n * cannot be recovered after this operation successfully completes.

\n *

If you specify a tag that does not exist, it is ignored.

\n *

\n * RemoveTagsFromStream has a limit of five transactions per second per\n * account.

\n */\nvar RemoveTagsFromStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(RemoveTagsFromStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function RemoveTagsFromStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n RemoveTagsFromStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"RemoveTagsFromStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"RemoveTagsFromStreamInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n RemoveTagsFromStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1RemoveTagsFromStreamCommand\"])(input, context);\n };\n RemoveTagsFromStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1RemoveTagsFromStreamCommand\"])(output, context);\n };\n return RemoveTagsFromStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=RemoveTagsFromStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RemoveTagsFromStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SplitShardCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SplitShardCommand.js ***! \************************************************************************************/ /*! exports provided: SplitShardCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SplitShardCommand\", function() { return SplitShardCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Splits a shard into two new shards in the Kinesis data stream, to increase the\n * stream's capacity to ingest and transport data. SplitShard is called when\n * there is a need to increase the overall capacity of a stream because of an expected\n * increase in the volume of data records being ingested.

\n *

You can also use SplitShard when a shard appears to be approaching its\n * maximum utilization; for example, the producers sending data into the specific shard are\n * suddenly sending more than previously anticipated. You can also call\n * SplitShard to increase stream capacity, so that more Kinesis Data\n * Streams applications can simultaneously read data from the stream for real-time\n * processing.

\n *

You must specify the shard to be split and the new hash key, which is the position\n * in the shard where the shard gets split in two. In many cases, the new hash key might be\n * the average of the beginning and ending hash key, but it can be any hash key value in\n * the range being mapped into the shard. For more information, see Split a\n * Shard in the Amazon Kinesis Data Streams Developer\n * Guide.

\n *

You can use DescribeStream to determine the shard ID and hash key\n * values for the ShardToSplit and NewStartingHashKey parameters\n * that are specified in the SplitShard request.

\n *

\n * SplitShard is an asynchronous operation. Upon receiving a\n * SplitShard request, Kinesis Data Streams immediately returns a response\n * and sets the stream status to UPDATING. After the operation is completed,\n * Kinesis Data Streams sets the stream status to ACTIVE. Read and write\n * operations continue to work while the stream is in the UPDATING state.

\n *

You can use DescribeStream to check the status of the stream, which is\n * returned in StreamStatus. If the stream is in the ACTIVE\n * state, you can call SplitShard. If a stream is in CREATING or\n * UPDATING or DELETING states, DescribeStream\n * returns a ResourceInUseException.

\n *

If the specified stream does not exist, DescribeStream returns a\n * ResourceNotFoundException. If you try to create more shards than are\n * authorized for your account, you receive a LimitExceededException.

\n *

For the default shard limit for an AWS account, see Kinesis Data Streams\n * Limits in the Amazon Kinesis Data Streams Developer\n * Guide. To increase this limit, contact AWS\n * Support.

\n *

If you try to operate on too many streams simultaneously using CreateStream, DeleteStream, MergeShards, and/or SplitShard, you receive a\n * LimitExceededException.

\n *

\n * SplitShard has a limit of five transactions per second per\n * account.

\n */\nvar SplitShardCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SplitShardCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function SplitShardCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n SplitShardCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"SplitShardCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SplitShardInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SplitShardCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1SplitShardCommand\"])(input, context);\n };\n SplitShardCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1SplitShardCommand\"])(output, context);\n };\n return SplitShardCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=SplitShardCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SplitShardCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StartStreamEncryptionCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StartStreamEncryptionCommand.js ***! \***********************************************************************************************/ /*! exports provided: StartStreamEncryptionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartStreamEncryptionCommand\", function() { return StartStreamEncryptionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables or updates server-side encryption using an AWS KMS key for a specified\n * stream.

\n *

Starting encryption is an asynchronous operation. Upon receiving the request,\n * Kinesis Data Streams returns immediately and sets the status of the stream to\n * UPDATING. After the update is complete, Kinesis Data Streams sets the\n * status of the stream back to ACTIVE. Updating or applying encryption\n * normally takes a few seconds to complete, but it can take minutes. You can continue to\n * read and write data to your stream while its status is UPDATING. Once the\n * status of the stream is ACTIVE, encryption begins for records written to\n * the stream.

\n *

API Limits: You can successfully apply a new AWS KMS key for server-side encryption\n * 25 times in a rolling 24-hour period.

\n *

Note: It can take up to 5 seconds after the stream is in an ACTIVE\n * status before all records written to the stream are encrypted. After you enable\n * encryption, you can verify that encryption is applied by inspecting the API response\n * from PutRecord or PutRecords.

\n */\nvar StartStreamEncryptionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartStreamEncryptionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartStreamEncryptionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartStreamEncryptionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"StartStreamEncryptionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartStreamEncryptionInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartStreamEncryptionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartStreamEncryptionCommand\"])(input, context);\n };\n StartStreamEncryptionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartStreamEncryptionCommand\"])(output, context);\n };\n return StartStreamEncryptionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartStreamEncryptionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StartStreamEncryptionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StopStreamEncryptionCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StopStreamEncryptionCommand.js ***! \**********************************************************************************************/ /*! exports provided: StopStreamEncryptionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopStreamEncryptionCommand\", function() { return StopStreamEncryptionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables server-side encryption for a specified stream.

\n *

Stopping encryption is an asynchronous operation. Upon receiving the request,\n * Kinesis Data Streams returns immediately and sets the status of the stream to\n * UPDATING. After the update is complete, Kinesis Data Streams sets the\n * status of the stream back to ACTIVE. Stopping encryption normally takes a\n * few seconds to complete, but it can take minutes. You can continue to read and write\n * data to your stream while its status is UPDATING. Once the status of the\n * stream is ACTIVE, records written to the stream are no longer encrypted by\n * Kinesis Data Streams.

\n *

API Limits: You can successfully disable server-side encryption 25 times in a\n * rolling 24-hour period.

\n *

Note: It can take up to 5 seconds after the stream is in an ACTIVE\n * status before all records written to the stream are no longer subject to encryption.\n * After you disabled encryption, you can verify that encryption is not applied by\n * inspecting the API response from PutRecord or\n * PutRecords.

\n */\nvar StopStreamEncryptionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopStreamEncryptionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopStreamEncryptionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopStreamEncryptionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"StopStreamEncryptionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopStreamEncryptionInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopStreamEncryptionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopStreamEncryptionCommand\"])(input, context);\n };\n StopStreamEncryptionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopStreamEncryptionCommand\"])(output, context);\n };\n return StopStreamEncryptionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopStreamEncryptionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StopStreamEncryptionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SubscribeToShardCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SubscribeToShardCommand.js ***! \******************************************************************************************/ /*! exports provided: SubscribeToShardCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardCommand\", function() { return SubscribeToShardCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

This operation establishes an HTTP/2 connection between the consumer you specify in\n * the ConsumerARN parameter and the shard you specify in the\n * ShardId parameter. After the connection is successfully established,\n * Kinesis Data Streams pushes records from the shard to the consumer over this connection.\n * Before you call this operation, call RegisterStreamConsumer to\n * register the consumer with Kinesis Data Streams.

\n *

When the SubscribeToShard call succeeds, your consumer starts receiving\n * events of type SubscribeToShardEvent over the HTTP/2 connection for up\n * to 5 minutes, after which time you need to call SubscribeToShard again to\n * renew the subscription if you want to continue to receive records.

\n *

You can make one call to SubscribeToShard per second per registered\n * consumer per shard. For example, if you have a 4000 shard stream and two registered\n * stream consumers, you can make one SubscribeToShard request per second for\n * each combination of shard and registered consumer, allowing you to subscribe both\n * consumers to all 4000 shards in one second.

\n *

If you call SubscribeToShard again with the same ConsumerARN\n * and ShardId within 5 seconds of a successful call, you'll get a\n * ResourceInUseException. If you call SubscribeToShard 5\n * seconds or more after a successful call, the first connection will expire and the second\n * call will take over the subscription.

\n *

For an example of how to use this operations, see Enhanced Fan-Out\n * Using the Kinesis Data Streams API.

\n */\nvar SubscribeToShardCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SubscribeToShardCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function SubscribeToShardCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n SubscribeToShardCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"SubscribeToShardCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SubscribeToShardInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SubscribeToShardOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SubscribeToShardCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1SubscribeToShardCommand\"])(input, context);\n };\n SubscribeToShardCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1SubscribeToShardCommand\"])(output, context);\n };\n return SubscribeToShardCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=SubscribeToShardCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SubscribeToShardCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/commands/UpdateShardCountCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/commands/UpdateShardCountCommand.js ***! \******************************************************************************************/ /*! exports provided: UpdateShardCountCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateShardCountCommand\", function() { return UpdateShardCountCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates the shard count of the specified stream to the specified number of\n * shards.

\n *

Updating the shard count is an asynchronous operation. Upon receiving the request,\n * Kinesis Data Streams returns immediately and sets the status of the stream to\n * UPDATING. After the update is complete, Kinesis Data Streams sets the\n * status of the stream back to ACTIVE. Depending on the size of the stream,\n * the scaling action could take a few minutes to complete. You can continue to read and\n * write data to your stream while its status is UPDATING.

\n *

To update the shard count, Kinesis Data Streams performs splits or merges on\n * individual shards. This can cause short-lived shards to be created, in addition to the\n * final shards. These short-lived shards count towards your total shard limit for your\n * account in the Region.

\n *

When using this operation, we recommend that you specify a target shard count that\n * is a multiple of 25% (25%, 50%, 75%, 100%). You can specify any target value within your\n * shard limit. However, if you specify a target that isn't a multiple of 25%, the scaling\n * action might take longer to complete.

\n *

This operation has the following default limits. By default, you cannot do the\n * following:

\n *
    \n *
  • \n *

    Scale more than ten times per rolling 24-hour period per stream

    \n *
  • \n *
  • \n *

    Scale up to more than double your current shard count for a\n * stream

    \n *
  • \n *
  • \n *

    Scale down below half your current shard count for a stream

    \n *
  • \n *
  • \n *

    Scale up to more than 500 shards in a stream

    \n *
  • \n *
  • \n *

    Scale a stream with more than 500 shards down unless the result is less\n * than 500 shards

    \n *
  • \n *
  • \n *

    Scale up to more than the shard limit for your account

    \n *
  • \n *
\n *

For the default limits for an AWS account, see Streams Limits in the\n * Amazon Kinesis Data Streams Developer Guide. To request an\n * increase in the call rate limit, the shard limit for this API, or your overall shard\n * limit, use the limits form.

\n */\nvar UpdateShardCountCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateShardCountCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateShardCountCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateShardCountCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"KinesisClient\";\n var commandName = \"UpdateShardCountCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UpdateShardCountInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UpdateShardCountOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateShardCountCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UpdateShardCountCommand\"])(input, context);\n };\n UpdateShardCountCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UpdateShardCountCommand\"])(output, context);\n };\n return UpdateShardCountCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateShardCountCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/commands/UpdateShardCountCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/endpoints.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/endpoints.js ***! \*******************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"kinesis.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"kinesis.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"kinesis.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"kinesis.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"kinesis.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"af-south-1\":\n regionInfo = {\n hostname: \"kinesis.af-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-east-1\":\n regionInfo = {\n hostname: \"kinesis.ap-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"kinesis.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"kinesis.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"kinesis.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"kinesis.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"kinesis.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"kinesis.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"cn-north-1\":\n regionInfo = {\n hostname: \"kinesis.cn-north-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"cn-northwest-1\":\n regionInfo = {\n hostname: \"kinesis.cn-northwest-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"kinesis.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-north-1\":\n regionInfo = {\n hostname: \"kinesis.eu-north-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-south-1\":\n regionInfo = {\n hostname: \"kinesis.eu-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"kinesis.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"kinesis.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-3\":\n regionInfo = {\n hostname: \"kinesis.eu-west-3.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"fips-us-east-1\":\n regionInfo = {\n hostname: \"kinesis-fips.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"fips-us-east-2\":\n regionInfo = {\n hostname: \"kinesis-fips.us-east-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-2\",\n };\n break;\n case \"fips-us-west-1\":\n regionInfo = {\n hostname: \"kinesis-fips.us-west-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-1\",\n };\n break;\n case \"fips-us-west-2\":\n regionInfo = {\n hostname: \"kinesis-fips.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n case \"me-south-1\":\n regionInfo = {\n hostname: \"kinesis.me-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"sa-east-1\":\n regionInfo = {\n hostname: \"kinesis.sa-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"kinesis.us-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-2\":\n regionInfo = {\n hostname: \"kinesis.us-east-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-gov-east-1\":\n regionInfo = {\n hostname: \"kinesis.us-gov-east-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-east-1\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"kinesis.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"us-iso-east-1\":\n regionInfo = {\n hostname: \"kinesis.us-iso-east-1.c2s.ic.gov\",\n partition: \"aws-iso\",\n };\n break;\n case \"us-isob-east-1\":\n regionInfo = {\n hostname: \"kinesis.us-isob-east-1.sc2s.sgov.gov\",\n partition: \"aws-iso-b\",\n };\n break;\n case \"us-west-1\":\n regionInfo = {\n hostname: \"kinesis.us-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"kinesis.us-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"kinesis\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/index.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/index.js ***! \***************************************************************/ /*! exports provided: KinesisClient, Kinesis, AddTagsToStreamCommand, CreateStreamCommand, DecreaseStreamRetentionPeriodCommand, DeleteStreamCommand, DeregisterStreamConsumerCommand, DescribeLimitsCommand, DescribeStreamCommand, waitForStreamExists, waitForStreamNotExists, DescribeStreamConsumerCommand, DescribeStreamSummaryCommand, DisableEnhancedMonitoringCommand, EnableEnhancedMonitoringCommand, GetRecordsCommand, GetShardIteratorCommand, IncreaseStreamRetentionPeriodCommand, ListShardsCommand, ListStreamConsumersCommand, paginateListStreamConsumers, ListStreamsCommand, ListTagsForStreamCommand, MergeShardsCommand, PutRecordCommand, PutRecordsCommand, RegisterStreamConsumerCommand, RemoveTagsFromStreamCommand, SplitShardCommand, StartStreamEncryptionCommand, StopStreamEncryptionCommand, SubscribeToShardCommand, UpdateShardCountCommand, AddTagsToStreamInput, InvalidArgumentException, LimitExceededException, ResourceInUseException, ResourceNotFoundException, HashKeyRange, ChildShard, ConsumerStatus, Consumer, ConsumerDescription, CreateStreamInput, DecreaseStreamRetentionPeriodInput, DeleteStreamInput, DeregisterStreamConsumerInput, DescribeLimitsInput, DescribeLimitsOutput, DescribeStreamInput, EncryptionType, MetricsName, EnhancedMetrics, SequenceNumberRange, Shard, StreamStatus, StreamDescription, DescribeStreamOutput, DescribeStreamConsumerInput, DescribeStreamConsumerOutput, DescribeStreamSummaryInput, StreamDescriptionSummary, DescribeStreamSummaryOutput, DisableEnhancedMonitoringInput, EnhancedMonitoringOutput, EnableEnhancedMonitoringInput, ExpiredIteratorException, ExpiredNextTokenException, GetRecordsInput, _Record, GetRecordsOutput, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, KMSOptInRequired, KMSThrottlingException, ProvisionedThroughputExceededException, ShardIteratorType, GetShardIteratorInput, GetShardIteratorOutput, IncreaseStreamRetentionPeriodInput, InternalFailureException, ShardFilterType, ShardFilter, ListShardsInput, ListShardsOutput, ListStreamConsumersInput, ListStreamConsumersOutput, ListStreamsInput, ListStreamsOutput, ListTagsForStreamInput, Tag, ListTagsForStreamOutput, MergeShardsInput, PutRecordInput, PutRecordOutput, PutRecordsRequestEntry, PutRecordsInput, PutRecordsResultEntry, PutRecordsOutput, RegisterStreamConsumerInput, RegisterStreamConsumerOutput, RemoveTagsFromStreamInput, SplitShardInput, StartStreamEncryptionInput, StopStreamEncryptionInput, StartingPosition, SubscribeToShardInput, SubscribeToShardEvent, SubscribeToShardEventStream, SubscribeToShardOutput, ScalingType, UpdateShardCountInput, UpdateShardCountOutput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _KinesisClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./KinesisClient */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/KinesisClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KinesisClient\", function() { return _KinesisClient__WEBPACK_IMPORTED_MODULE_0__[\"KinesisClient\"]; });\n\n/* harmony import */ var _Kinesis__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Kinesis */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/Kinesis.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Kinesis\", function() { return _Kinesis__WEBPACK_IMPORTED_MODULE_1__[\"Kinesis\"]; });\n\n/* harmony import */ var _commands_AddTagsToStreamCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/AddTagsToStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/AddTagsToStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AddTagsToStreamCommand\", function() { return _commands_AddTagsToStreamCommand__WEBPACK_IMPORTED_MODULE_2__[\"AddTagsToStreamCommand\"]; });\n\n/* harmony import */ var _commands_CreateStreamCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CreateStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/CreateStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamCommand\", function() { return _commands_CreateStreamCommand__WEBPACK_IMPORTED_MODULE_3__[\"CreateStreamCommand\"]; });\n\n/* harmony import */ var _commands_DecreaseStreamRetentionPeriodCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/DecreaseStreamRetentionPeriodCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DecreaseStreamRetentionPeriodCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DecreaseStreamRetentionPeriodCommand\", function() { return _commands_DecreaseStreamRetentionPeriodCommand__WEBPACK_IMPORTED_MODULE_4__[\"DecreaseStreamRetentionPeriodCommand\"]; });\n\n/* harmony import */ var _commands_DeleteStreamCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/DeleteStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeleteStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamCommand\", function() { return _commands_DeleteStreamCommand__WEBPACK_IMPORTED_MODULE_5__[\"DeleteStreamCommand\"]; });\n\n/* harmony import */ var _commands_DeregisterStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/DeregisterStreamConsumerCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DeregisterStreamConsumerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeregisterStreamConsumerCommand\", function() { return _commands_DeregisterStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_6__[\"DeregisterStreamConsumerCommand\"]; });\n\n/* harmony import */ var _commands_DescribeLimitsCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/DescribeLimitsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeLimitsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLimitsCommand\", function() { return _commands_DescribeLimitsCommand__WEBPACK_IMPORTED_MODULE_7__[\"DescribeLimitsCommand\"]; });\n\n/* harmony import */ var _commands_DescribeStreamCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/DescribeStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamCommand\", function() { return _commands_DescribeStreamCommand__WEBPACK_IMPORTED_MODULE_8__[\"DescribeStreamCommand\"]; });\n\n/* harmony import */ var _waiters_waitForStreamExists__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./waiters/waitForStreamExists */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/waiters/waitForStreamExists.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"waitForStreamExists\", function() { return _waiters_waitForStreamExists__WEBPACK_IMPORTED_MODULE_9__[\"waitForStreamExists\"]; });\n\n/* harmony import */ var _waiters_waitForStreamNotExists__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./waiters/waitForStreamNotExists */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/waiters/waitForStreamNotExists.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"waitForStreamNotExists\", function() { return _waiters_waitForStreamNotExists__WEBPACK_IMPORTED_MODULE_10__[\"waitForStreamNotExists\"]; });\n\n/* harmony import */ var _commands_DescribeStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DescribeStreamConsumerCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamConsumerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamConsumerCommand\", function() { return _commands_DescribeStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_11__[\"DescribeStreamConsumerCommand\"]; });\n\n/* harmony import */ var _commands_DescribeStreamSummaryCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/DescribeStreamSummaryCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamSummaryCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamSummaryCommand\", function() { return _commands_DescribeStreamSummaryCommand__WEBPACK_IMPORTED_MODULE_12__[\"DescribeStreamSummaryCommand\"]; });\n\n/* harmony import */ var _commands_DisableEnhancedMonitoringCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DisableEnhancedMonitoringCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DisableEnhancedMonitoringCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisableEnhancedMonitoringCommand\", function() { return _commands_DisableEnhancedMonitoringCommand__WEBPACK_IMPORTED_MODULE_13__[\"DisableEnhancedMonitoringCommand\"]; });\n\n/* harmony import */ var _commands_EnableEnhancedMonitoringCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/EnableEnhancedMonitoringCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/EnableEnhancedMonitoringCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EnableEnhancedMonitoringCommand\", function() { return _commands_EnableEnhancedMonitoringCommand__WEBPACK_IMPORTED_MODULE_14__[\"EnableEnhancedMonitoringCommand\"]; });\n\n/* harmony import */ var _commands_GetRecordsCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/GetRecordsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetRecordsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecordsCommand\", function() { return _commands_GetRecordsCommand__WEBPACK_IMPORTED_MODULE_15__[\"GetRecordsCommand\"]; });\n\n/* harmony import */ var _commands_GetShardIteratorCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/GetShardIteratorCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/GetShardIteratorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetShardIteratorCommand\", function() { return _commands_GetShardIteratorCommand__WEBPACK_IMPORTED_MODULE_16__[\"GetShardIteratorCommand\"]; });\n\n/* harmony import */ var _commands_IncreaseStreamRetentionPeriodCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/IncreaseStreamRetentionPeriodCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/IncreaseStreamRetentionPeriodCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IncreaseStreamRetentionPeriodCommand\", function() { return _commands_IncreaseStreamRetentionPeriodCommand__WEBPACK_IMPORTED_MODULE_17__[\"IncreaseStreamRetentionPeriodCommand\"]; });\n\n/* harmony import */ var _commands_ListShardsCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/ListShardsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListShardsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListShardsCommand\", function() { return _commands_ListShardsCommand__WEBPACK_IMPORTED_MODULE_18__[\"ListShardsCommand\"]; });\n\n/* harmony import */ var _commands_ListStreamConsumersCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/ListStreamConsumersCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamConsumersCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamConsumersCommand\", function() { return _commands_ListStreamConsumersCommand__WEBPACK_IMPORTED_MODULE_19__[\"ListStreamConsumersCommand\"]; });\n\n/* harmony import */ var _pagination_ListStreamConsumersPaginator__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./pagination/ListStreamConsumersPaginator */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/pagination/ListStreamConsumersPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListStreamConsumers\", function() { return _pagination_ListStreamConsumersPaginator__WEBPACK_IMPORTED_MODULE_20__[\"paginateListStreamConsumers\"]; });\n\n/* harmony import */ var _commands_ListStreamsCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/ListStreamsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamsCommand\", function() { return _commands_ListStreamsCommand__WEBPACK_IMPORTED_MODULE_21__[\"ListStreamsCommand\"]; });\n\n/* harmony import */ var _commands_ListTagsForStreamCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/ListTagsForStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListTagsForStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForStreamCommand\", function() { return _commands_ListTagsForStreamCommand__WEBPACK_IMPORTED_MODULE_22__[\"ListTagsForStreamCommand\"]; });\n\n/* harmony import */ var _commands_MergeShardsCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/MergeShardsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/MergeShardsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeShardsCommand\", function() { return _commands_MergeShardsCommand__WEBPACK_IMPORTED_MODULE_23__[\"MergeShardsCommand\"]; });\n\n/* harmony import */ var _commands_PutRecordCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/PutRecordCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordCommand\", function() { return _commands_PutRecordCommand__WEBPACK_IMPORTED_MODULE_24__[\"PutRecordCommand\"]; });\n\n/* harmony import */ var _commands_PutRecordsCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/PutRecordsCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/PutRecordsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsCommand\", function() { return _commands_PutRecordsCommand__WEBPACK_IMPORTED_MODULE_25__[\"PutRecordsCommand\"]; });\n\n/* harmony import */ var _commands_RegisterStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/RegisterStreamConsumerCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RegisterStreamConsumerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RegisterStreamConsumerCommand\", function() { return _commands_RegisterStreamConsumerCommand__WEBPACK_IMPORTED_MODULE_26__[\"RegisterStreamConsumerCommand\"]; });\n\n/* harmony import */ var _commands_RemoveTagsFromStreamCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/RemoveTagsFromStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/RemoveTagsFromStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RemoveTagsFromStreamCommand\", function() { return _commands_RemoveTagsFromStreamCommand__WEBPACK_IMPORTED_MODULE_27__[\"RemoveTagsFromStreamCommand\"]; });\n\n/* harmony import */ var _commands_SplitShardCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/SplitShardCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SplitShardCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplitShardCommand\", function() { return _commands_SplitShardCommand__WEBPACK_IMPORTED_MODULE_28__[\"SplitShardCommand\"]; });\n\n/* harmony import */ var _commands_StartStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/StartStreamEncryptionCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StartStreamEncryptionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartStreamEncryptionCommand\", function() { return _commands_StartStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_29__[\"StartStreamEncryptionCommand\"]; });\n\n/* harmony import */ var _commands_StopStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/StopStreamEncryptionCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/StopStreamEncryptionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopStreamEncryptionCommand\", function() { return _commands_StopStreamEncryptionCommand__WEBPACK_IMPORTED_MODULE_30__[\"StopStreamEncryptionCommand\"]; });\n\n/* harmony import */ var _commands_SubscribeToShardCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/SubscribeToShardCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/SubscribeToShardCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardCommand\", function() { return _commands_SubscribeToShardCommand__WEBPACK_IMPORTED_MODULE_31__[\"SubscribeToShardCommand\"]; });\n\n/* harmony import */ var _commands_UpdateShardCountCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/UpdateShardCountCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/UpdateShardCountCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateShardCountCommand\", function() { return _commands_UpdateShardCountCommand__WEBPACK_IMPORTED_MODULE_32__[\"UpdateShardCountCommand\"]; });\n\n/* harmony import */ var _pagination_Interfaces__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./pagination/Interfaces */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/pagination/Interfaces.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AddTagsToStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"AddTagsToStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidArgumentException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"InvalidArgumentException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ResourceInUseException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HashKeyRange\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"HashKeyRange\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChildShard\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ChildShard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConsumerStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ConsumerStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Consumer\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"Consumer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConsumerDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ConsumerDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"CreateStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DecreaseStreamRetentionPeriodInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DecreaseStreamRetentionPeriodInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DeleteStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeregisterStreamConsumerInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DeregisterStreamConsumerInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLimitsInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DescribeLimitsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLimitsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DescribeLimitsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DescribeStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"EncryptionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricsName\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"MetricsName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EnhancedMetrics\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"EnhancedMetrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SequenceNumberRange\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"SequenceNumberRange\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Shard\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"Shard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"StreamStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"StreamDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DescribeStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamConsumerInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DescribeStreamConsumerInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamConsumerOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DescribeStreamConsumerOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamSummaryInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DescribeStreamSummaryInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamDescriptionSummary\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"StreamDescriptionSummary\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamSummaryOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DescribeStreamSummaryOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisableEnhancedMonitoringInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"DisableEnhancedMonitoringInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EnhancedMonitoringOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"EnhancedMonitoringOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EnableEnhancedMonitoringInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"EnableEnhancedMonitoringInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExpiredIteratorException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ExpiredIteratorException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExpiredNextTokenException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ExpiredNextTokenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecordsInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"GetRecordsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"_Record\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"_Record\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecordsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"GetRecordsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSAccessDeniedException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"KMSAccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSDisabledException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"KMSDisabledException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSInvalidStateException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"KMSInvalidStateException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"KMSNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSOptInRequired\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"KMSOptInRequired\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSThrottlingException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"KMSThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProvisionedThroughputExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ProvisionedThroughputExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShardIteratorType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ShardIteratorType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetShardIteratorInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"GetShardIteratorInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetShardIteratorOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"GetShardIteratorOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IncreaseStreamRetentionPeriodInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"IncreaseStreamRetentionPeriodInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalFailureException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"InternalFailureException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShardFilterType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ShardFilterType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShardFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ShardFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListShardsInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ListShardsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListShardsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ListShardsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamConsumersInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ListStreamConsumersInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamConsumersOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ListStreamConsumersOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamsInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ListStreamsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ListStreamsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ListTagsForStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"Tag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForStreamOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ListTagsForStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeShardsInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"MergeShardsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"PutRecordInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"PutRecordOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsRequestEntry\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"PutRecordsRequestEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"PutRecordsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsResultEntry\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"PutRecordsResultEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"PutRecordsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RegisterStreamConsumerInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"RegisterStreamConsumerInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RegisterStreamConsumerOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"RegisterStreamConsumerOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RemoveTagsFromStreamInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"RemoveTagsFromStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplitShardInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"SplitShardInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartStreamEncryptionInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"StartStreamEncryptionInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopStreamEncryptionInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"StopStreamEncryptionInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartingPosition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"StartingPosition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"SubscribeToShardInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardEvent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"SubscribeToShardEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardEventStream\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"SubscribeToShardEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"SubscribeToShardOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScalingType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"ScalingType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateShardCountInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"UpdateShardCountInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateShardCountOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_34__[\"UpdateShardCountOutput\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/models/index.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/models/index.js ***! \**********************************************************************/ /*! exports provided: AddTagsToStreamInput, InvalidArgumentException, LimitExceededException, ResourceInUseException, ResourceNotFoundException, HashKeyRange, ChildShard, ConsumerStatus, Consumer, ConsumerDescription, CreateStreamInput, DecreaseStreamRetentionPeriodInput, DeleteStreamInput, DeregisterStreamConsumerInput, DescribeLimitsInput, DescribeLimitsOutput, DescribeStreamInput, EncryptionType, MetricsName, EnhancedMetrics, SequenceNumberRange, Shard, StreamStatus, StreamDescription, DescribeStreamOutput, DescribeStreamConsumerInput, DescribeStreamConsumerOutput, DescribeStreamSummaryInput, StreamDescriptionSummary, DescribeStreamSummaryOutput, DisableEnhancedMonitoringInput, EnhancedMonitoringOutput, EnableEnhancedMonitoringInput, ExpiredIteratorException, ExpiredNextTokenException, GetRecordsInput, _Record, GetRecordsOutput, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, KMSOptInRequired, KMSThrottlingException, ProvisionedThroughputExceededException, ShardIteratorType, GetShardIteratorInput, GetShardIteratorOutput, IncreaseStreamRetentionPeriodInput, InternalFailureException, ShardFilterType, ShardFilter, ListShardsInput, ListShardsOutput, ListStreamConsumersInput, ListStreamConsumersOutput, ListStreamsInput, ListStreamsOutput, ListTagsForStreamInput, Tag, ListTagsForStreamOutput, MergeShardsInput, PutRecordInput, PutRecordOutput, PutRecordsRequestEntry, PutRecordsInput, PutRecordsResultEntry, PutRecordsOutput, RegisterStreamConsumerInput, RegisterStreamConsumerOutput, RemoveTagsFromStreamInput, SplitShardInput, StartStreamEncryptionInput, StopStreamEncryptionInput, StartingPosition, SubscribeToShardInput, SubscribeToShardEvent, SubscribeToShardEventStream, SubscribeToShardOutput, ScalingType, UpdateShardCountInput, UpdateShardCountOutput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AddTagsToStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AddTagsToStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidArgumentException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidArgumentException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceInUseException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HashKeyRange\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HashKeyRange\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChildShard\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ChildShard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConsumerStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConsumerStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Consumer\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Consumer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConsumerDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConsumerDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DecreaseStreamRetentionPeriodInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DecreaseStreamRetentionPeriodInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeregisterStreamConsumerInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeregisterStreamConsumerInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLimitsInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeLimitsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeLimitsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeLimitsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EncryptionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricsName\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MetricsName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EnhancedMetrics\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EnhancedMetrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SequenceNumberRange\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SequenceNumberRange\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Shard\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Shard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StreamStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StreamDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamConsumerInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeStreamConsumerInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamConsumerOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeStreamConsumerOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamSummaryInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeStreamSummaryInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamDescriptionSummary\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StreamDescriptionSummary\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamSummaryOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeStreamSummaryOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisableEnhancedMonitoringInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DisableEnhancedMonitoringInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EnhancedMonitoringOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EnhancedMonitoringOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EnableEnhancedMonitoringInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EnableEnhancedMonitoringInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExpiredIteratorException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExpiredIteratorException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExpiredNextTokenException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExpiredNextTokenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecordsInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetRecordsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"_Record\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"_Record\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecordsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetRecordsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSAccessDeniedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KMSAccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSDisabledException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KMSDisabledException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSInvalidStateException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KMSInvalidStateException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KMSNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSOptInRequired\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KMSOptInRequired\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KMSThrottlingException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KMSThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProvisionedThroughputExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProvisionedThroughputExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShardIteratorType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ShardIteratorType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetShardIteratorInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetShardIteratorInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetShardIteratorOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetShardIteratorOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IncreaseStreamRetentionPeriodInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IncreaseStreamRetentionPeriodInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalFailureException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalFailureException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShardFilterType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ShardFilterType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShardFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ShardFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListShardsInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListShardsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListShardsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListShardsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamConsumersInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListStreamConsumersInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamConsumersOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListStreamConsumersOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamsInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListStreamsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListStreamsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Tag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForStreamOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForStreamOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeShardsInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MergeShardsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsRequestEntry\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordsRequestEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsResultEntry\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordsResultEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutRecordsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RegisterStreamConsumerInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RegisterStreamConsumerInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RegisterStreamConsumerOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RegisterStreamConsumerOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RemoveTagsFromStreamInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RemoveTagsFromStreamInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SplitShardInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SplitShardInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartStreamEncryptionInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartStreamEncryptionInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopStreamEncryptionInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopStreamEncryptionInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartingPosition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartingPosition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SubscribeToShardInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardEvent\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SubscribeToShardEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardEventStream\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SubscribeToShardEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SubscribeToShardOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScalingType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ScalingType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateShardCountInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateShardCountInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateShardCountOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateShardCountOutput\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js ***! \*************************************************************************/ /*! exports provided: AddTagsToStreamInput, InvalidArgumentException, LimitExceededException, ResourceInUseException, ResourceNotFoundException, HashKeyRange, ChildShard, ConsumerStatus, Consumer, ConsumerDescription, CreateStreamInput, DecreaseStreamRetentionPeriodInput, DeleteStreamInput, DeregisterStreamConsumerInput, DescribeLimitsInput, DescribeLimitsOutput, DescribeStreamInput, EncryptionType, MetricsName, EnhancedMetrics, SequenceNumberRange, Shard, StreamStatus, StreamDescription, DescribeStreamOutput, DescribeStreamConsumerInput, DescribeStreamConsumerOutput, DescribeStreamSummaryInput, StreamDescriptionSummary, DescribeStreamSummaryOutput, DisableEnhancedMonitoringInput, EnhancedMonitoringOutput, EnableEnhancedMonitoringInput, ExpiredIteratorException, ExpiredNextTokenException, GetRecordsInput, _Record, GetRecordsOutput, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, KMSOptInRequired, KMSThrottlingException, ProvisionedThroughputExceededException, ShardIteratorType, GetShardIteratorInput, GetShardIteratorOutput, IncreaseStreamRetentionPeriodInput, InternalFailureException, ShardFilterType, ShardFilter, ListShardsInput, ListShardsOutput, ListStreamConsumersInput, ListStreamConsumersOutput, ListStreamsInput, ListStreamsOutput, ListTagsForStreamInput, Tag, ListTagsForStreamOutput, MergeShardsInput, PutRecordInput, PutRecordOutput, PutRecordsRequestEntry, PutRecordsInput, PutRecordsResultEntry, PutRecordsOutput, RegisterStreamConsumerInput, RegisterStreamConsumerOutput, RemoveTagsFromStreamInput, SplitShardInput, StartStreamEncryptionInput, StopStreamEncryptionInput, StartingPosition, SubscribeToShardInput, SubscribeToShardEvent, SubscribeToShardEventStream, SubscribeToShardOutput, ScalingType, UpdateShardCountInput, UpdateShardCountOutput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AddTagsToStreamInput\", function() { return AddTagsToStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidArgumentException\", function() { return InvalidArgumentException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return LimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return ResourceInUseException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HashKeyRange\", function() { return HashKeyRange; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ChildShard\", function() { return ChildShard; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConsumerStatus\", function() { return ConsumerStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Consumer\", function() { return Consumer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConsumerDescription\", function() { return ConsumerDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamInput\", function() { return CreateStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DecreaseStreamRetentionPeriodInput\", function() { return DecreaseStreamRetentionPeriodInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamInput\", function() { return DeleteStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeregisterStreamConsumerInput\", function() { return DeregisterStreamConsumerInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeLimitsInput\", function() { return DescribeLimitsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeLimitsOutput\", function() { return DescribeLimitsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamInput\", function() { return DescribeStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EncryptionType\", function() { return EncryptionType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MetricsName\", function() { return MetricsName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EnhancedMetrics\", function() { return EnhancedMetrics; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SequenceNumberRange\", function() { return SequenceNumberRange; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Shard\", function() { return Shard; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StreamStatus\", function() { return StreamStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StreamDescription\", function() { return StreamDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamOutput\", function() { return DescribeStreamOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamConsumerInput\", function() { return DescribeStreamConsumerInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamConsumerOutput\", function() { return DescribeStreamConsumerOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamSummaryInput\", function() { return DescribeStreamSummaryInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StreamDescriptionSummary\", function() { return StreamDescriptionSummary; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamSummaryOutput\", function() { return DescribeStreamSummaryOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DisableEnhancedMonitoringInput\", function() { return DisableEnhancedMonitoringInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EnhancedMonitoringOutput\", function() { return EnhancedMonitoringOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EnableEnhancedMonitoringInput\", function() { return EnableEnhancedMonitoringInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExpiredIteratorException\", function() { return ExpiredIteratorException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExpiredNextTokenException\", function() { return ExpiredNextTokenException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetRecordsInput\", function() { return GetRecordsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"_Record\", function() { return _Record; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetRecordsOutput\", function() { return GetRecordsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KMSAccessDeniedException\", function() { return KMSAccessDeniedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KMSDisabledException\", function() { return KMSDisabledException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KMSInvalidStateException\", function() { return KMSInvalidStateException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KMSNotFoundException\", function() { return KMSNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KMSOptInRequired\", function() { return KMSOptInRequired; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KMSThrottlingException\", function() { return KMSThrottlingException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProvisionedThroughputExceededException\", function() { return ProvisionedThroughputExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ShardIteratorType\", function() { return ShardIteratorType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetShardIteratorInput\", function() { return GetShardIteratorInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetShardIteratorOutput\", function() { return GetShardIteratorOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IncreaseStreamRetentionPeriodInput\", function() { return IncreaseStreamRetentionPeriodInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalFailureException\", function() { return InternalFailureException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ShardFilterType\", function() { return ShardFilterType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ShardFilter\", function() { return ShardFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListShardsInput\", function() { return ListShardsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListShardsOutput\", function() { return ListShardsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListStreamConsumersInput\", function() { return ListStreamConsumersInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListStreamConsumersOutput\", function() { return ListStreamConsumersOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListStreamsInput\", function() { return ListStreamsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListStreamsOutput\", function() { return ListStreamsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForStreamInput\", function() { return ListTagsForStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return Tag; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForStreamOutput\", function() { return ListTagsForStreamOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MergeShardsInput\", function() { return MergeShardsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordInput\", function() { return PutRecordInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordOutput\", function() { return PutRecordOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsRequestEntry\", function() { return PutRecordsRequestEntry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsInput\", function() { return PutRecordsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsResultEntry\", function() { return PutRecordsResultEntry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutRecordsOutput\", function() { return PutRecordsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RegisterStreamConsumerInput\", function() { return RegisterStreamConsumerInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RegisterStreamConsumerOutput\", function() { return RegisterStreamConsumerOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RemoveTagsFromStreamInput\", function() { return RemoveTagsFromStreamInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SplitShardInput\", function() { return SplitShardInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartStreamEncryptionInput\", function() { return StartStreamEncryptionInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopStreamEncryptionInput\", function() { return StopStreamEncryptionInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartingPosition\", function() { return StartingPosition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardInput\", function() { return SubscribeToShardInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardEvent\", function() { return SubscribeToShardEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardEventStream\", function() { return SubscribeToShardEventStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SubscribeToShardOutput\", function() { return SubscribeToShardOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScalingType\", function() { return ScalingType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateShardCountInput\", function() { return UpdateShardCountInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateShardCountOutput\", function() { return UpdateShardCountOutput; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n\nvar AddTagsToStreamInput;\n(function (AddTagsToStreamInput) {\n AddTagsToStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AddTagsToStreamInput || (AddTagsToStreamInput = {}));\nvar InvalidArgumentException;\n(function (InvalidArgumentException) {\n InvalidArgumentException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidArgumentException || (InvalidArgumentException = {}));\nvar LimitExceededException;\n(function (LimitExceededException) {\n LimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LimitExceededException || (LimitExceededException = {}));\nvar ResourceInUseException;\n(function (ResourceInUseException) {\n ResourceInUseException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceInUseException || (ResourceInUseException = {}));\nvar ResourceNotFoundException;\n(function (ResourceNotFoundException) {\n ResourceNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceNotFoundException || (ResourceNotFoundException = {}));\nvar HashKeyRange;\n(function (HashKeyRange) {\n HashKeyRange.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HashKeyRange || (HashKeyRange = {}));\nvar ChildShard;\n(function (ChildShard) {\n ChildShard.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ChildShard || (ChildShard = {}));\nvar ConsumerStatus;\n(function (ConsumerStatus) {\n ConsumerStatus[\"ACTIVE\"] = \"ACTIVE\";\n ConsumerStatus[\"CREATING\"] = \"CREATING\";\n ConsumerStatus[\"DELETING\"] = \"DELETING\";\n})(ConsumerStatus || (ConsumerStatus = {}));\nvar Consumer;\n(function (Consumer) {\n Consumer.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Consumer || (Consumer = {}));\nvar ConsumerDescription;\n(function (ConsumerDescription) {\n ConsumerDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ConsumerDescription || (ConsumerDescription = {}));\nvar CreateStreamInput;\n(function (CreateStreamInput) {\n CreateStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateStreamInput || (CreateStreamInput = {}));\nvar DecreaseStreamRetentionPeriodInput;\n(function (DecreaseStreamRetentionPeriodInput) {\n DecreaseStreamRetentionPeriodInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DecreaseStreamRetentionPeriodInput || (DecreaseStreamRetentionPeriodInput = {}));\nvar DeleteStreamInput;\n(function (DeleteStreamInput) {\n DeleteStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteStreamInput || (DeleteStreamInput = {}));\nvar DeregisterStreamConsumerInput;\n(function (DeregisterStreamConsumerInput) {\n DeregisterStreamConsumerInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeregisterStreamConsumerInput || (DeregisterStreamConsumerInput = {}));\nvar DescribeLimitsInput;\n(function (DescribeLimitsInput) {\n DescribeLimitsInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeLimitsInput || (DescribeLimitsInput = {}));\nvar DescribeLimitsOutput;\n(function (DescribeLimitsOutput) {\n DescribeLimitsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeLimitsOutput || (DescribeLimitsOutput = {}));\nvar DescribeStreamInput;\n(function (DescribeStreamInput) {\n DescribeStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeStreamInput || (DescribeStreamInput = {}));\nvar EncryptionType;\n(function (EncryptionType) {\n EncryptionType[\"KMS\"] = \"KMS\";\n EncryptionType[\"NONE\"] = \"NONE\";\n})(EncryptionType || (EncryptionType = {}));\nvar MetricsName;\n(function (MetricsName) {\n MetricsName[\"ALL\"] = \"ALL\";\n MetricsName[\"INCOMING_BYTES\"] = \"IncomingBytes\";\n MetricsName[\"INCOMING_RECORDS\"] = \"IncomingRecords\";\n MetricsName[\"ITERATOR_AGE_MILLISECONDS\"] = \"IteratorAgeMilliseconds\";\n MetricsName[\"OUTGOING_BYTES\"] = \"OutgoingBytes\";\n MetricsName[\"OUTGOING_RECORDS\"] = \"OutgoingRecords\";\n MetricsName[\"READ_PROVISIONED_THROUGHPUT_EXCEEDED\"] = \"ReadProvisionedThroughputExceeded\";\n MetricsName[\"WRITE_PROVISIONED_THROUGHPUT_EXCEEDED\"] = \"WriteProvisionedThroughputExceeded\";\n})(MetricsName || (MetricsName = {}));\nvar EnhancedMetrics;\n(function (EnhancedMetrics) {\n EnhancedMetrics.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EnhancedMetrics || (EnhancedMetrics = {}));\nvar SequenceNumberRange;\n(function (SequenceNumberRange) {\n SequenceNumberRange.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SequenceNumberRange || (SequenceNumberRange = {}));\nvar Shard;\n(function (Shard) {\n Shard.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Shard || (Shard = {}));\nvar StreamStatus;\n(function (StreamStatus) {\n StreamStatus[\"ACTIVE\"] = \"ACTIVE\";\n StreamStatus[\"CREATING\"] = \"CREATING\";\n StreamStatus[\"DELETING\"] = \"DELETING\";\n StreamStatus[\"UPDATING\"] = \"UPDATING\";\n})(StreamStatus || (StreamStatus = {}));\nvar StreamDescription;\n(function (StreamDescription) {\n StreamDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StreamDescription || (StreamDescription = {}));\nvar DescribeStreamOutput;\n(function (DescribeStreamOutput) {\n DescribeStreamOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeStreamOutput || (DescribeStreamOutput = {}));\nvar DescribeStreamConsumerInput;\n(function (DescribeStreamConsumerInput) {\n DescribeStreamConsumerInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeStreamConsumerInput || (DescribeStreamConsumerInput = {}));\nvar DescribeStreamConsumerOutput;\n(function (DescribeStreamConsumerOutput) {\n DescribeStreamConsumerOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeStreamConsumerOutput || (DescribeStreamConsumerOutput = {}));\nvar DescribeStreamSummaryInput;\n(function (DescribeStreamSummaryInput) {\n DescribeStreamSummaryInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeStreamSummaryInput || (DescribeStreamSummaryInput = {}));\nvar StreamDescriptionSummary;\n(function (StreamDescriptionSummary) {\n StreamDescriptionSummary.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StreamDescriptionSummary || (StreamDescriptionSummary = {}));\nvar DescribeStreamSummaryOutput;\n(function (DescribeStreamSummaryOutput) {\n DescribeStreamSummaryOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeStreamSummaryOutput || (DescribeStreamSummaryOutput = {}));\nvar DisableEnhancedMonitoringInput;\n(function (DisableEnhancedMonitoringInput) {\n DisableEnhancedMonitoringInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DisableEnhancedMonitoringInput || (DisableEnhancedMonitoringInput = {}));\nvar EnhancedMonitoringOutput;\n(function (EnhancedMonitoringOutput) {\n EnhancedMonitoringOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EnhancedMonitoringOutput || (EnhancedMonitoringOutput = {}));\nvar EnableEnhancedMonitoringInput;\n(function (EnableEnhancedMonitoringInput) {\n EnableEnhancedMonitoringInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EnableEnhancedMonitoringInput || (EnableEnhancedMonitoringInput = {}));\nvar ExpiredIteratorException;\n(function (ExpiredIteratorException) {\n ExpiredIteratorException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExpiredIteratorException || (ExpiredIteratorException = {}));\nvar ExpiredNextTokenException;\n(function (ExpiredNextTokenException) {\n ExpiredNextTokenException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExpiredNextTokenException || (ExpiredNextTokenException = {}));\nvar GetRecordsInput;\n(function (GetRecordsInput) {\n GetRecordsInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetRecordsInput || (GetRecordsInput = {}));\nvar _Record;\n(function (_Record) {\n _Record.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(_Record || (_Record = {}));\nvar GetRecordsOutput;\n(function (GetRecordsOutput) {\n GetRecordsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetRecordsOutput || (GetRecordsOutput = {}));\nvar KMSAccessDeniedException;\n(function (KMSAccessDeniedException) {\n KMSAccessDeniedException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KMSAccessDeniedException || (KMSAccessDeniedException = {}));\nvar KMSDisabledException;\n(function (KMSDisabledException) {\n KMSDisabledException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KMSDisabledException || (KMSDisabledException = {}));\nvar KMSInvalidStateException;\n(function (KMSInvalidStateException) {\n KMSInvalidStateException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KMSInvalidStateException || (KMSInvalidStateException = {}));\nvar KMSNotFoundException;\n(function (KMSNotFoundException) {\n KMSNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KMSNotFoundException || (KMSNotFoundException = {}));\nvar KMSOptInRequired;\n(function (KMSOptInRequired) {\n KMSOptInRequired.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KMSOptInRequired || (KMSOptInRequired = {}));\nvar KMSThrottlingException;\n(function (KMSThrottlingException) {\n KMSThrottlingException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KMSThrottlingException || (KMSThrottlingException = {}));\nvar ProvisionedThroughputExceededException;\n(function (ProvisionedThroughputExceededException) {\n ProvisionedThroughputExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProvisionedThroughputExceededException || (ProvisionedThroughputExceededException = {}));\nvar ShardIteratorType;\n(function (ShardIteratorType) {\n ShardIteratorType[\"AFTER_SEQUENCE_NUMBER\"] = \"AFTER_SEQUENCE_NUMBER\";\n ShardIteratorType[\"AT_SEQUENCE_NUMBER\"] = \"AT_SEQUENCE_NUMBER\";\n ShardIteratorType[\"AT_TIMESTAMP\"] = \"AT_TIMESTAMP\";\n ShardIteratorType[\"LATEST\"] = \"LATEST\";\n ShardIteratorType[\"TRIM_HORIZON\"] = \"TRIM_HORIZON\";\n})(ShardIteratorType || (ShardIteratorType = {}));\nvar GetShardIteratorInput;\n(function (GetShardIteratorInput) {\n GetShardIteratorInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetShardIteratorInput || (GetShardIteratorInput = {}));\nvar GetShardIteratorOutput;\n(function (GetShardIteratorOutput) {\n GetShardIteratorOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetShardIteratorOutput || (GetShardIteratorOutput = {}));\nvar IncreaseStreamRetentionPeriodInput;\n(function (IncreaseStreamRetentionPeriodInput) {\n IncreaseStreamRetentionPeriodInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IncreaseStreamRetentionPeriodInput || (IncreaseStreamRetentionPeriodInput = {}));\nvar InternalFailureException;\n(function (InternalFailureException) {\n InternalFailureException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InternalFailureException || (InternalFailureException = {}));\nvar ShardFilterType;\n(function (ShardFilterType) {\n ShardFilterType[\"AFTER_SHARD_ID\"] = \"AFTER_SHARD_ID\";\n ShardFilterType[\"AT_LATEST\"] = \"AT_LATEST\";\n ShardFilterType[\"AT_TIMESTAMP\"] = \"AT_TIMESTAMP\";\n ShardFilterType[\"AT_TRIM_HORIZON\"] = \"AT_TRIM_HORIZON\";\n ShardFilterType[\"FROM_TIMESTAMP\"] = \"FROM_TIMESTAMP\";\n ShardFilterType[\"FROM_TRIM_HORIZON\"] = \"FROM_TRIM_HORIZON\";\n})(ShardFilterType || (ShardFilterType = {}));\nvar ShardFilter;\n(function (ShardFilter) {\n ShardFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ShardFilter || (ShardFilter = {}));\nvar ListShardsInput;\n(function (ListShardsInput) {\n ListShardsInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListShardsInput || (ListShardsInput = {}));\nvar ListShardsOutput;\n(function (ListShardsOutput) {\n ListShardsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListShardsOutput || (ListShardsOutput = {}));\nvar ListStreamConsumersInput;\n(function (ListStreamConsumersInput) {\n ListStreamConsumersInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListStreamConsumersInput || (ListStreamConsumersInput = {}));\nvar ListStreamConsumersOutput;\n(function (ListStreamConsumersOutput) {\n ListStreamConsumersOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListStreamConsumersOutput || (ListStreamConsumersOutput = {}));\nvar ListStreamsInput;\n(function (ListStreamsInput) {\n ListStreamsInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListStreamsInput || (ListStreamsInput = {}));\nvar ListStreamsOutput;\n(function (ListStreamsOutput) {\n ListStreamsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListStreamsOutput || (ListStreamsOutput = {}));\nvar ListTagsForStreamInput;\n(function (ListTagsForStreamInput) {\n ListTagsForStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForStreamInput || (ListTagsForStreamInput = {}));\nvar Tag;\n(function (Tag) {\n Tag.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Tag || (Tag = {}));\nvar ListTagsForStreamOutput;\n(function (ListTagsForStreamOutput) {\n ListTagsForStreamOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForStreamOutput || (ListTagsForStreamOutput = {}));\nvar MergeShardsInput;\n(function (MergeShardsInput) {\n MergeShardsInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MergeShardsInput || (MergeShardsInput = {}));\nvar PutRecordInput;\n(function (PutRecordInput) {\n PutRecordInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordInput || (PutRecordInput = {}));\nvar PutRecordOutput;\n(function (PutRecordOutput) {\n PutRecordOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordOutput || (PutRecordOutput = {}));\nvar PutRecordsRequestEntry;\n(function (PutRecordsRequestEntry) {\n PutRecordsRequestEntry.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordsRequestEntry || (PutRecordsRequestEntry = {}));\nvar PutRecordsInput;\n(function (PutRecordsInput) {\n PutRecordsInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordsInput || (PutRecordsInput = {}));\nvar PutRecordsResultEntry;\n(function (PutRecordsResultEntry) {\n PutRecordsResultEntry.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordsResultEntry || (PutRecordsResultEntry = {}));\nvar PutRecordsOutput;\n(function (PutRecordsOutput) {\n PutRecordsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutRecordsOutput || (PutRecordsOutput = {}));\nvar RegisterStreamConsumerInput;\n(function (RegisterStreamConsumerInput) {\n RegisterStreamConsumerInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RegisterStreamConsumerInput || (RegisterStreamConsumerInput = {}));\nvar RegisterStreamConsumerOutput;\n(function (RegisterStreamConsumerOutput) {\n RegisterStreamConsumerOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RegisterStreamConsumerOutput || (RegisterStreamConsumerOutput = {}));\nvar RemoveTagsFromStreamInput;\n(function (RemoveTagsFromStreamInput) {\n RemoveTagsFromStreamInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RemoveTagsFromStreamInput || (RemoveTagsFromStreamInput = {}));\nvar SplitShardInput;\n(function (SplitShardInput) {\n SplitShardInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SplitShardInput || (SplitShardInput = {}));\nvar StartStreamEncryptionInput;\n(function (StartStreamEncryptionInput) {\n StartStreamEncryptionInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartStreamEncryptionInput || (StartStreamEncryptionInput = {}));\nvar StopStreamEncryptionInput;\n(function (StopStreamEncryptionInput) {\n StopStreamEncryptionInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopStreamEncryptionInput || (StopStreamEncryptionInput = {}));\nvar StartingPosition;\n(function (StartingPosition) {\n StartingPosition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartingPosition || (StartingPosition = {}));\nvar SubscribeToShardInput;\n(function (SubscribeToShardInput) {\n SubscribeToShardInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SubscribeToShardInput || (SubscribeToShardInput = {}));\nvar SubscribeToShardEvent;\n(function (SubscribeToShardEvent) {\n SubscribeToShardEvent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SubscribeToShardEvent || (SubscribeToShardEvent = {}));\nvar SubscribeToShardEventStream;\n(function (SubscribeToShardEventStream) {\n SubscribeToShardEventStream.visit = function (value, visitor) {\n if (value.SubscribeToShardEvent !== undefined)\n return visitor.SubscribeToShardEvent(value.SubscribeToShardEvent);\n if (value.ResourceNotFoundException !== undefined)\n return visitor.ResourceNotFoundException(value.ResourceNotFoundException);\n if (value.ResourceInUseException !== undefined)\n return visitor.ResourceInUseException(value.ResourceInUseException);\n if (value.KMSDisabledException !== undefined)\n return visitor.KMSDisabledException(value.KMSDisabledException);\n if (value.KMSInvalidStateException !== undefined)\n return visitor.KMSInvalidStateException(value.KMSInvalidStateException);\n if (value.KMSAccessDeniedException !== undefined)\n return visitor.KMSAccessDeniedException(value.KMSAccessDeniedException);\n if (value.KMSNotFoundException !== undefined)\n return visitor.KMSNotFoundException(value.KMSNotFoundException);\n if (value.KMSOptInRequired !== undefined)\n return visitor.KMSOptInRequired(value.KMSOptInRequired);\n if (value.KMSThrottlingException !== undefined)\n return visitor.KMSThrottlingException(value.KMSThrottlingException);\n if (value.InternalFailureException !== undefined)\n return visitor.InternalFailureException(value.InternalFailureException);\n return visitor._(value.$unknown[0], value.$unknown[1]);\n };\n SubscribeToShardEventStream.filterSensitiveLog = function (obj) {\n var _a;\n if (obj.SubscribeToShardEvent !== undefined)\n return { SubscribeToShardEvent: SubscribeToShardEvent.filterSensitiveLog(obj.SubscribeToShardEvent) };\n if (obj.ResourceNotFoundException !== undefined)\n return { ResourceNotFoundException: ResourceNotFoundException.filterSensitiveLog(obj.ResourceNotFoundException) };\n if (obj.ResourceInUseException !== undefined)\n return { ResourceInUseException: ResourceInUseException.filterSensitiveLog(obj.ResourceInUseException) };\n if (obj.KMSDisabledException !== undefined)\n return { KMSDisabledException: KMSDisabledException.filterSensitiveLog(obj.KMSDisabledException) };\n if (obj.KMSInvalidStateException !== undefined)\n return { KMSInvalidStateException: KMSInvalidStateException.filterSensitiveLog(obj.KMSInvalidStateException) };\n if (obj.KMSAccessDeniedException !== undefined)\n return { KMSAccessDeniedException: KMSAccessDeniedException.filterSensitiveLog(obj.KMSAccessDeniedException) };\n if (obj.KMSNotFoundException !== undefined)\n return { KMSNotFoundException: KMSNotFoundException.filterSensitiveLog(obj.KMSNotFoundException) };\n if (obj.KMSOptInRequired !== undefined)\n return { KMSOptInRequired: KMSOptInRequired.filterSensitiveLog(obj.KMSOptInRequired) };\n if (obj.KMSThrottlingException !== undefined)\n return { KMSThrottlingException: KMSThrottlingException.filterSensitiveLog(obj.KMSThrottlingException) };\n if (obj.InternalFailureException !== undefined)\n return { InternalFailureException: InternalFailureException.filterSensitiveLog(obj.InternalFailureException) };\n if (obj.$unknown !== undefined)\n return _a = {}, _a[obj.$unknown[0]] = \"UNKNOWN\", _a;\n };\n})(SubscribeToShardEventStream || (SubscribeToShardEventStream = {}));\nvar SubscribeToShardOutput;\n(function (SubscribeToShardOutput) {\n SubscribeToShardOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.EventStream && { EventStream: \"STREAMING_CONTENT\" }))); };\n})(SubscribeToShardOutput || (SubscribeToShardOutput = {}));\nvar ScalingType;\n(function (ScalingType) {\n ScalingType[\"UNIFORM_SCALING\"] = \"UNIFORM_SCALING\";\n})(ScalingType || (ScalingType = {}));\nvar UpdateShardCountInput;\n(function (UpdateShardCountInput) {\n UpdateShardCountInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateShardCountInput || (UpdateShardCountInput = {}));\nvar UpdateShardCountOutput;\n(function (UpdateShardCountOutput) {\n UpdateShardCountOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateShardCountOutput || (UpdateShardCountOutput = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/package.json": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/package.json ***! \*******************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-kinesis\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Kinesis Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/eventstream-serde-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/eventstream-serde-config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/eventstream-serde-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-waiter\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-kinesis\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-kinesis\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/pagination/Interfaces.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/pagination/Interfaces.js ***! \*******************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=Interfaces.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/pagination/Interfaces.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/pagination/ListStreamConsumersPaginator.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/pagination/ListStreamConsumersPaginator.js ***! \*************************************************************************************************/ /*! exports provided: paginateListStreamConsumers */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListStreamConsumers\", function() { return paginateListStreamConsumers; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Kinesis__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Kinesis */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/Kinesis.js\");\n/* harmony import */ var _KinesisClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../KinesisClient */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/KinesisClient.js\");\n/* harmony import */ var _commands_ListStreamConsumersCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListStreamConsumersCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/ListStreamConsumersCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListStreamConsumersCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListStreamConsumersCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listStreamConsumers.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListStreamConsumers(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListStreamConsumers_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Kinesis__WEBPACK_IMPORTED_MODULE_1__[\"Kinesis\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _KinesisClient__WEBPACK_IMPORTED_MODULE_2__[\"KinesisClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Kinesis | KinesisClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListStreamConsumersPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/pagination/ListStreamConsumersPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js ***! \*******************************************************************************/ /*! exports provided: serializeAws_json1_1AddTagsToStreamCommand, serializeAws_json1_1CreateStreamCommand, serializeAws_json1_1DecreaseStreamRetentionPeriodCommand, serializeAws_json1_1DeleteStreamCommand, serializeAws_json1_1DeregisterStreamConsumerCommand, serializeAws_json1_1DescribeLimitsCommand, serializeAws_json1_1DescribeStreamCommand, serializeAws_json1_1DescribeStreamConsumerCommand, serializeAws_json1_1DescribeStreamSummaryCommand, serializeAws_json1_1DisableEnhancedMonitoringCommand, serializeAws_json1_1EnableEnhancedMonitoringCommand, serializeAws_json1_1GetRecordsCommand, serializeAws_json1_1GetShardIteratorCommand, serializeAws_json1_1IncreaseStreamRetentionPeriodCommand, serializeAws_json1_1ListShardsCommand, serializeAws_json1_1ListStreamConsumersCommand, serializeAws_json1_1ListStreamsCommand, serializeAws_json1_1ListTagsForStreamCommand, serializeAws_json1_1MergeShardsCommand, serializeAws_json1_1PutRecordCommand, serializeAws_json1_1PutRecordsCommand, serializeAws_json1_1RegisterStreamConsumerCommand, serializeAws_json1_1RemoveTagsFromStreamCommand, serializeAws_json1_1SplitShardCommand, serializeAws_json1_1StartStreamEncryptionCommand, serializeAws_json1_1StopStreamEncryptionCommand, serializeAws_json1_1SubscribeToShardCommand, serializeAws_json1_1UpdateShardCountCommand, deserializeAws_json1_1AddTagsToStreamCommand, deserializeAws_json1_1CreateStreamCommand, deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand, deserializeAws_json1_1DeleteStreamCommand, deserializeAws_json1_1DeregisterStreamConsumerCommand, deserializeAws_json1_1DescribeLimitsCommand, deserializeAws_json1_1DescribeStreamCommand, deserializeAws_json1_1DescribeStreamConsumerCommand, deserializeAws_json1_1DescribeStreamSummaryCommand, deserializeAws_json1_1DisableEnhancedMonitoringCommand, deserializeAws_json1_1EnableEnhancedMonitoringCommand, deserializeAws_json1_1GetRecordsCommand, deserializeAws_json1_1GetShardIteratorCommand, deserializeAws_json1_1IncreaseStreamRetentionPeriodCommand, deserializeAws_json1_1ListShardsCommand, deserializeAws_json1_1ListStreamConsumersCommand, deserializeAws_json1_1ListStreamsCommand, deserializeAws_json1_1ListTagsForStreamCommand, deserializeAws_json1_1MergeShardsCommand, deserializeAws_json1_1PutRecordCommand, deserializeAws_json1_1PutRecordsCommand, deserializeAws_json1_1RegisterStreamConsumerCommand, deserializeAws_json1_1RemoveTagsFromStreamCommand, deserializeAws_json1_1SplitShardCommand, deserializeAws_json1_1StartStreamEncryptionCommand, deserializeAws_json1_1StopStreamEncryptionCommand, deserializeAws_json1_1SubscribeToShardCommand, deserializeAws_json1_1UpdateShardCountCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1AddTagsToStreamCommand\", function() { return serializeAws_json1_1AddTagsToStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateStreamCommand\", function() { return serializeAws_json1_1CreateStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DecreaseStreamRetentionPeriodCommand\", function() { return serializeAws_json1_1DecreaseStreamRetentionPeriodCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteStreamCommand\", function() { return serializeAws_json1_1DeleteStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeregisterStreamConsumerCommand\", function() { return serializeAws_json1_1DeregisterStreamConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeLimitsCommand\", function() { return serializeAws_json1_1DescribeLimitsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeStreamCommand\", function() { return serializeAws_json1_1DescribeStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeStreamConsumerCommand\", function() { return serializeAws_json1_1DescribeStreamConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeStreamSummaryCommand\", function() { return serializeAws_json1_1DescribeStreamSummaryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DisableEnhancedMonitoringCommand\", function() { return serializeAws_json1_1DisableEnhancedMonitoringCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1EnableEnhancedMonitoringCommand\", function() { return serializeAws_json1_1EnableEnhancedMonitoringCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetRecordsCommand\", function() { return serializeAws_json1_1GetRecordsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetShardIteratorCommand\", function() { return serializeAws_json1_1GetShardIteratorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1IncreaseStreamRetentionPeriodCommand\", function() { return serializeAws_json1_1IncreaseStreamRetentionPeriodCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListShardsCommand\", function() { return serializeAws_json1_1ListShardsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListStreamConsumersCommand\", function() { return serializeAws_json1_1ListStreamConsumersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListStreamsCommand\", function() { return serializeAws_json1_1ListStreamsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListTagsForStreamCommand\", function() { return serializeAws_json1_1ListTagsForStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1MergeShardsCommand\", function() { return serializeAws_json1_1MergeShardsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutRecordCommand\", function() { return serializeAws_json1_1PutRecordCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1PutRecordsCommand\", function() { return serializeAws_json1_1PutRecordsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1RegisterStreamConsumerCommand\", function() { return serializeAws_json1_1RegisterStreamConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1RemoveTagsFromStreamCommand\", function() { return serializeAws_json1_1RemoveTagsFromStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1SplitShardCommand\", function() { return serializeAws_json1_1SplitShardCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartStreamEncryptionCommand\", function() { return serializeAws_json1_1StartStreamEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopStreamEncryptionCommand\", function() { return serializeAws_json1_1StopStreamEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1SubscribeToShardCommand\", function() { return serializeAws_json1_1SubscribeToShardCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UpdateShardCountCommand\", function() { return serializeAws_json1_1UpdateShardCountCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1AddTagsToStreamCommand\", function() { return deserializeAws_json1_1AddTagsToStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateStreamCommand\", function() { return deserializeAws_json1_1CreateStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand\", function() { return deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteStreamCommand\", function() { return deserializeAws_json1_1DeleteStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeregisterStreamConsumerCommand\", function() { return deserializeAws_json1_1DeregisterStreamConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeLimitsCommand\", function() { return deserializeAws_json1_1DescribeLimitsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeStreamCommand\", function() { return deserializeAws_json1_1DescribeStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeStreamConsumerCommand\", function() { return deserializeAws_json1_1DescribeStreamConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeStreamSummaryCommand\", function() { return deserializeAws_json1_1DescribeStreamSummaryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DisableEnhancedMonitoringCommand\", function() { return deserializeAws_json1_1DisableEnhancedMonitoringCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1EnableEnhancedMonitoringCommand\", function() { return deserializeAws_json1_1EnableEnhancedMonitoringCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetRecordsCommand\", function() { return deserializeAws_json1_1GetRecordsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetShardIteratorCommand\", function() { return deserializeAws_json1_1GetShardIteratorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1IncreaseStreamRetentionPeriodCommand\", function() { return deserializeAws_json1_1IncreaseStreamRetentionPeriodCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListShardsCommand\", function() { return deserializeAws_json1_1ListShardsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListStreamConsumersCommand\", function() { return deserializeAws_json1_1ListStreamConsumersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListStreamsCommand\", function() { return deserializeAws_json1_1ListStreamsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListTagsForStreamCommand\", function() { return deserializeAws_json1_1ListTagsForStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1MergeShardsCommand\", function() { return deserializeAws_json1_1MergeShardsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutRecordCommand\", function() { return deserializeAws_json1_1PutRecordCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1PutRecordsCommand\", function() { return deserializeAws_json1_1PutRecordsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1RegisterStreamConsumerCommand\", function() { return deserializeAws_json1_1RegisterStreamConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1RemoveTagsFromStreamCommand\", function() { return deserializeAws_json1_1RemoveTagsFromStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1SplitShardCommand\", function() { return deserializeAws_json1_1SplitShardCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartStreamEncryptionCommand\", function() { return deserializeAws_json1_1StartStreamEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopStreamEncryptionCommand\", function() { return deserializeAws_json1_1StopStreamEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1SubscribeToShardCommand\", function() { return deserializeAws_json1_1SubscribeToShardCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UpdateShardCountCommand\", function() { return deserializeAws_json1_1UpdateShardCountCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\nvar serializeAws_json1_1AddTagsToStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.AddTagsToStream\",\n };\n body = JSON.stringify(serializeAws_json1_1AddTagsToStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.CreateStream\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DecreaseStreamRetentionPeriodCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.DecreaseStreamRetentionPeriod\",\n };\n body = JSON.stringify(serializeAws_json1_1DecreaseStreamRetentionPeriodInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.DeleteStream\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeregisterStreamConsumerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.DeregisterStreamConsumer\",\n };\n body = JSON.stringify(serializeAws_json1_1DeregisterStreamConsumerInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeLimitsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.DescribeLimits\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeLimitsInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.DescribeStream\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeStreamConsumerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.DescribeStreamConsumer\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeStreamConsumerInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeStreamSummaryCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.DescribeStreamSummary\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeStreamSummaryInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DisableEnhancedMonitoringCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.DisableEnhancedMonitoring\",\n };\n body = JSON.stringify(serializeAws_json1_1DisableEnhancedMonitoringInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1EnableEnhancedMonitoringCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.EnableEnhancedMonitoring\",\n };\n body = JSON.stringify(serializeAws_json1_1EnableEnhancedMonitoringInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetRecordsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.GetRecords\",\n };\n body = JSON.stringify(serializeAws_json1_1GetRecordsInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetShardIteratorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.GetShardIterator\",\n };\n body = JSON.stringify(serializeAws_json1_1GetShardIteratorInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1IncreaseStreamRetentionPeriodCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.IncreaseStreamRetentionPeriod\",\n };\n body = JSON.stringify(serializeAws_json1_1IncreaseStreamRetentionPeriodInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListShardsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.ListShards\",\n };\n body = JSON.stringify(serializeAws_json1_1ListShardsInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListStreamConsumersCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.ListStreamConsumers\",\n };\n body = JSON.stringify(serializeAws_json1_1ListStreamConsumersInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListStreamsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.ListStreams\",\n };\n body = JSON.stringify(serializeAws_json1_1ListStreamsInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListTagsForStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.ListTagsForStream\",\n };\n body = JSON.stringify(serializeAws_json1_1ListTagsForStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1MergeShardsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.MergeShards\",\n };\n body = JSON.stringify(serializeAws_json1_1MergeShardsInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutRecordCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.PutRecord\",\n };\n body = JSON.stringify(serializeAws_json1_1PutRecordInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1PutRecordsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.PutRecords\",\n };\n body = JSON.stringify(serializeAws_json1_1PutRecordsInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1RegisterStreamConsumerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.RegisterStreamConsumer\",\n };\n body = JSON.stringify(serializeAws_json1_1RegisterStreamConsumerInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1RemoveTagsFromStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.RemoveTagsFromStream\",\n };\n body = JSON.stringify(serializeAws_json1_1RemoveTagsFromStreamInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1SplitShardCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.SplitShard\",\n };\n body = JSON.stringify(serializeAws_json1_1SplitShardInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartStreamEncryptionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.StartStreamEncryption\",\n };\n body = JSON.stringify(serializeAws_json1_1StartStreamEncryptionInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopStreamEncryptionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.StopStreamEncryption\",\n };\n body = JSON.stringify(serializeAws_json1_1StopStreamEncryptionInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1SubscribeToShardCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.SubscribeToShard\",\n };\n body = JSON.stringify(serializeAws_json1_1SubscribeToShardInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UpdateShardCountCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Kinesis_20131202.UpdateShardCount\",\n };\n body = JSON.stringify(serializeAws_json1_1UpdateShardCountInput(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar deserializeAws_json1_1AddTagsToStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1AddTagsToStreamCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1AddTagsToStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateStreamCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DecreaseStreamRetentionPeriodCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DecreaseStreamRetentionPeriodCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteStreamCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"LimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 2];\n case \"ResourceInUseException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeregisterStreamConsumerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeregisterStreamConsumerCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeregisterStreamConsumerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeLimitsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeLimitsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeLimitsOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeLimitsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"LimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeStreamCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeStreamOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"LimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeStreamConsumerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeStreamConsumerCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeStreamConsumerOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeStreamConsumerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeStreamSummaryCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeStreamSummaryCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeStreamSummaryOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeStreamSummaryCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"LimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DisableEnhancedMonitoringCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DisableEnhancedMonitoringCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1EnhancedMonitoringOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DisableEnhancedMonitoringCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1EnableEnhancedMonitoringCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1EnableEnhancedMonitoringCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1EnhancedMonitoringOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1EnableEnhancedMonitoringCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetRecordsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetRecordsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetRecordsOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetRecordsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, parsedBody, message;\n var _o;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_p) {\n switch (_p.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _o = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_o.body = _p.sent(), _o)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ExpiredIteratorException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#ExpiredIteratorException\": return [3 /*break*/, 2];\n case \"InvalidArgumentException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 4];\n case \"KMSAccessDeniedException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#KMSAccessDeniedException\": return [3 /*break*/, 6];\n case \"KMSDisabledException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#KMSDisabledException\": return [3 /*break*/, 8];\n case \"KMSInvalidStateException\": return [3 /*break*/, 10];\n case \"com.amazonaws.kinesis#KMSInvalidStateException\": return [3 /*break*/, 10];\n case \"KMSNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.kinesis#KMSNotFoundException\": return [3 /*break*/, 12];\n case \"KMSOptInRequired\": return [3 /*break*/, 14];\n case \"com.amazonaws.kinesis#KMSOptInRequired\": return [3 /*break*/, 14];\n case \"KMSThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.kinesis#KMSThrottlingException\": return [3 /*break*/, 16];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 18];\n case \"com.amazonaws.kinesis#ProvisionedThroughputExceededException\": return [3 /*break*/, 18];\n case \"ResourceNotFoundException\": return [3 /*break*/, 20];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 20];\n }\n return [3 /*break*/, 22];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ExpiredIteratorExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSAccessDeniedExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSDisabledExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSInvalidStateExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSOptInRequiredResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 20:\n _m = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 21:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _m.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 22:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _p.label = 23;\n case 23:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetShardIteratorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetShardIteratorCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetShardIteratorOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetShardIteratorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#ProvisionedThroughputExceededException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1IncreaseStreamRetentionPeriodCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1IncreaseStreamRetentionPeriodCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1IncreaseStreamRetentionPeriodCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListShardsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListShardsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListShardsOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListShardsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ExpiredNextTokenException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#ExpiredNextTokenException\": return [3 /*break*/, 2];\n case \"InvalidArgumentException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 4];\n case \"LimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 6];\n case \"ResourceInUseException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ExpiredNextTokenExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListStreamConsumersCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListStreamConsumersCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListStreamConsumersOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListStreamConsumersCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ExpiredNextTokenException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#ExpiredNextTokenException\": return [3 /*break*/, 2];\n case \"InvalidArgumentException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 4];\n case \"LimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 6];\n case \"ResourceInUseException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ExpiredNextTokenExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListStreamsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListStreamsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListStreamsOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListStreamsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"LimitExceededException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsForStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListTagsForStreamCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListTagsForStreamOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTagsForStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1MergeShardsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1MergeShardsCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1MergeShardsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRecordCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutRecordCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1PutRecordOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRecordCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"KMSAccessDeniedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#KMSAccessDeniedException\": return [3 /*break*/, 4];\n case \"KMSDisabledException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#KMSDisabledException\": return [3 /*break*/, 6];\n case \"KMSInvalidStateException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#KMSInvalidStateException\": return [3 /*break*/, 8];\n case \"KMSNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.kinesis#KMSNotFoundException\": return [3 /*break*/, 10];\n case \"KMSOptInRequired\": return [3 /*break*/, 12];\n case \"com.amazonaws.kinesis#KMSOptInRequired\": return [3 /*break*/, 12];\n case \"KMSThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.kinesis#KMSThrottlingException\": return [3 /*break*/, 14];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"com.amazonaws.kinesis#ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"ResourceNotFoundException\": return [3 /*break*/, 18];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSAccessDeniedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSDisabledExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSInvalidStateExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSOptInRequiredResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRecordsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1PutRecordsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1PutRecordsOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1PutRecordsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"KMSAccessDeniedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#KMSAccessDeniedException\": return [3 /*break*/, 4];\n case \"KMSDisabledException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#KMSDisabledException\": return [3 /*break*/, 6];\n case \"KMSInvalidStateException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#KMSInvalidStateException\": return [3 /*break*/, 8];\n case \"KMSNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.kinesis#KMSNotFoundException\": return [3 /*break*/, 10];\n case \"KMSOptInRequired\": return [3 /*break*/, 12];\n case \"com.amazonaws.kinesis#KMSOptInRequired\": return [3 /*break*/, 12];\n case \"KMSThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.kinesis#KMSThrottlingException\": return [3 /*break*/, 14];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"com.amazonaws.kinesis#ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"ResourceNotFoundException\": return [3 /*break*/, 18];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSAccessDeniedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSDisabledExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSInvalidStateExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSOptInRequiredResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1RegisterStreamConsumerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1RegisterStreamConsumerCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1RegisterStreamConsumerOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1RegisterStreamConsumerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1RemoveTagsFromStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1RemoveTagsFromStreamCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1RemoveTagsFromStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1SplitShardCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1SplitShardCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1SplitShardCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartStreamEncryptionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartStreamEncryptionCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartStreamEncryptionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, parsedBody, message;\n var _o;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_p) {\n switch (_p.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _o = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_o.body = _p.sent(), _o)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"KMSAccessDeniedException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#KMSAccessDeniedException\": return [3 /*break*/, 4];\n case \"KMSDisabledException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#KMSDisabledException\": return [3 /*break*/, 6];\n case \"KMSInvalidStateException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#KMSInvalidStateException\": return [3 /*break*/, 8];\n case \"KMSNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.kinesis#KMSNotFoundException\": return [3 /*break*/, 10];\n case \"KMSOptInRequired\": return [3 /*break*/, 12];\n case \"com.amazonaws.kinesis#KMSOptInRequired\": return [3 /*break*/, 12];\n case \"KMSThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.kinesis#KMSThrottlingException\": return [3 /*break*/, 14];\n case \"LimitExceededException\": return [3 /*break*/, 16];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 16];\n case \"ResourceInUseException\": return [3 /*break*/, 18];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 18];\n case \"ResourceNotFoundException\": return [3 /*break*/, 20];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 20];\n }\n return [3 /*break*/, 22];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSAccessDeniedExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSDisabledExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSInvalidStateExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSOptInRequiredResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1KMSThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 20:\n _m = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 21:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _m.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 22:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _p.label = 23;\n case 23:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopStreamEncryptionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopStreamEncryptionCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopStreamEncryptionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1SubscribeToShardCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1SubscribeToShardCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1SubscribeToShardOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1SubscribeToShardCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateShardCountCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UpdateShardCountCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1UpdateShardCountOutput(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateShardCountCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidArgumentException\": return [3 /*break*/, 2];\n case \"com.amazonaws.kinesis#InvalidArgumentException\": return [3 /*break*/, 2];\n case \"LimitExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.kinesis#LimitExceededException\": return [3 /*break*/, 4];\n case \"ResourceInUseException\": return [3 /*break*/, 6];\n case \"com.amazonaws.kinesis#ResourceInUseException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.kinesis#ResourceNotFoundException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ExpiredIteratorExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ExpiredIteratorException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ExpiredIteratorException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ExpiredNextTokenExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ExpiredNextTokenException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ExpiredNextTokenException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidArgumentExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidArgumentException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidArgumentException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1KMSAccessDeniedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1KMSAccessDeniedException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"KMSAccessDeniedException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1KMSDisabledExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1KMSDisabledException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"KMSDisabledException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1KMSInvalidStateExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1KMSInvalidStateException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"KMSInvalidStateException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1KMSNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1KMSNotFoundException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"KMSNotFoundException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1KMSOptInRequiredResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1KMSOptInRequired(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"KMSOptInRequired\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1KMSThrottlingExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1KMSThrottlingException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"KMSThrottlingException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1LimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1LimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"LimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ProvisionedThroughputExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ProvisionedThroughputExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceInUseExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceInUseException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceInUseException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceNotFoundException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotFoundException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_json1_1AddTagsToStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName })), (input.Tags !== undefined && input.Tags !== null && { Tags: serializeAws_json1_1TagMap(input.Tags, context) }));\n};\nvar serializeAws_json1_1CreateStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ShardCount !== undefined && input.ShardCount !== null && { ShardCount: input.ShardCount })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1DecreaseStreamRetentionPeriodInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.RetentionPeriodHours !== undefined &&\n input.RetentionPeriodHours !== null && { RetentionPeriodHours: input.RetentionPeriodHours })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1DeleteStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EnforceConsumerDeletion !== undefined &&\n input.EnforceConsumerDeletion !== null && { EnforceConsumerDeletion: input.EnforceConsumerDeletion })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1DeregisterStreamConsumerInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ConsumerARN !== undefined && input.ConsumerARN !== null && { ConsumerARN: input.ConsumerARN })), (input.ConsumerName !== undefined && input.ConsumerName !== null && { ConsumerName: input.ConsumerName })), (input.StreamARN !== undefined && input.StreamARN !== null && { StreamARN: input.StreamARN }));\n};\nvar serializeAws_json1_1DescribeLimitsInput = function (input, context) {\n return {};\n};\nvar serializeAws_json1_1DescribeStreamConsumerInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ConsumerARN !== undefined && input.ConsumerARN !== null && { ConsumerARN: input.ConsumerARN })), (input.ConsumerName !== undefined && input.ConsumerName !== null && { ConsumerName: input.ConsumerName })), (input.StreamARN !== undefined && input.StreamARN !== null && { StreamARN: input.StreamARN }));\n};\nvar serializeAws_json1_1DescribeStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ExclusiveStartShardId !== undefined &&\n input.ExclusiveStartShardId !== null && { ExclusiveStartShardId: input.ExclusiveStartShardId })), (input.Limit !== undefined && input.Limit !== null && { Limit: input.Limit })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1DescribeStreamSummaryInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1DisableEnhancedMonitoringInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ShardLevelMetrics !== undefined &&\n input.ShardLevelMetrics !== null && {\n ShardLevelMetrics: serializeAws_json1_1MetricsNameList(input.ShardLevelMetrics, context),\n })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1EnableEnhancedMonitoringInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ShardLevelMetrics !== undefined &&\n input.ShardLevelMetrics !== null && {\n ShardLevelMetrics: serializeAws_json1_1MetricsNameList(input.ShardLevelMetrics, context),\n })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1GetRecordsInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Limit !== undefined && input.Limit !== null && { Limit: input.Limit })), (input.ShardIterator !== undefined && input.ShardIterator !== null && { ShardIterator: input.ShardIterator }));\n};\nvar serializeAws_json1_1GetShardIteratorInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ShardId !== undefined && input.ShardId !== null && { ShardId: input.ShardId })), (input.ShardIteratorType !== undefined &&\n input.ShardIteratorType !== null && { ShardIteratorType: input.ShardIteratorType })), (input.StartingSequenceNumber !== undefined &&\n input.StartingSequenceNumber !== null && { StartingSequenceNumber: input.StartingSequenceNumber })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName })), (input.Timestamp !== undefined &&\n input.Timestamp !== null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000) }));\n};\nvar serializeAws_json1_1IncreaseStreamRetentionPeriodInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.RetentionPeriodHours !== undefined &&\n input.RetentionPeriodHours !== null && { RetentionPeriodHours: input.RetentionPeriodHours })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1ListShardsInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ExclusiveStartShardId !== undefined &&\n input.ExclusiveStartShardId !== null && { ExclusiveStartShardId: input.ExclusiveStartShardId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.ShardFilter !== undefined &&\n input.ShardFilter !== null && { ShardFilter: serializeAws_json1_1ShardFilter(input.ShardFilter, context) })), (input.StreamCreationTimestamp !== undefined &&\n input.StreamCreationTimestamp !== null && {\n StreamCreationTimestamp: Math.round(input.StreamCreationTimestamp.getTime() / 1000),\n })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1ListStreamConsumersInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.StreamARN !== undefined && input.StreamARN !== null && { StreamARN: input.StreamARN })), (input.StreamCreationTimestamp !== undefined &&\n input.StreamCreationTimestamp !== null && {\n StreamCreationTimestamp: Math.round(input.StreamCreationTimestamp.getTime() / 1000),\n }));\n};\nvar serializeAws_json1_1ListStreamsInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ExclusiveStartStreamName !== undefined &&\n input.ExclusiveStartStreamName !== null && { ExclusiveStartStreamName: input.ExclusiveStartStreamName })), (input.Limit !== undefined && input.Limit !== null && { Limit: input.Limit }));\n};\nvar serializeAws_json1_1ListTagsForStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ExclusiveStartTagKey !== undefined &&\n input.ExclusiveStartTagKey !== null && { ExclusiveStartTagKey: input.ExclusiveStartTagKey })), (input.Limit !== undefined && input.Limit !== null && { Limit: input.Limit })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1MergeShardsInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AdjacentShardToMerge !== undefined &&\n input.AdjacentShardToMerge !== null && { AdjacentShardToMerge: input.AdjacentShardToMerge })), (input.ShardToMerge !== undefined && input.ShardToMerge !== null && { ShardToMerge: input.ShardToMerge })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1MetricsNameList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1PutRecordInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Data !== undefined && input.Data !== null && { Data: context.base64Encoder(input.Data) })), (input.ExplicitHashKey !== undefined &&\n input.ExplicitHashKey !== null && { ExplicitHashKey: input.ExplicitHashKey })), (input.PartitionKey !== undefined && input.PartitionKey !== null && { PartitionKey: input.PartitionKey })), (input.SequenceNumberForOrdering !== undefined &&\n input.SequenceNumberForOrdering !== null && { SequenceNumberForOrdering: input.SequenceNumberForOrdering })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1PutRecordsInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Records !== undefined &&\n input.Records !== null && { Records: serializeAws_json1_1PutRecordsRequestEntryList(input.Records, context) })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1PutRecordsRequestEntry = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Data !== undefined && input.Data !== null && { Data: context.base64Encoder(input.Data) })), (input.ExplicitHashKey !== undefined &&\n input.ExplicitHashKey !== null && { ExplicitHashKey: input.ExplicitHashKey })), (input.PartitionKey !== undefined && input.PartitionKey !== null && { PartitionKey: input.PartitionKey }));\n};\nvar serializeAws_json1_1PutRecordsRequestEntryList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1PutRecordsRequestEntry(entry, context);\n });\n};\nvar serializeAws_json1_1RegisterStreamConsumerInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ConsumerName !== undefined && input.ConsumerName !== null && { ConsumerName: input.ConsumerName })), (input.StreamARN !== undefined && input.StreamARN !== null && { StreamARN: input.StreamARN }));\n};\nvar serializeAws_json1_1RemoveTagsFromStreamInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName })), (input.TagKeys !== undefined &&\n input.TagKeys !== null && { TagKeys: serializeAws_json1_1TagKeyList(input.TagKeys, context) }));\n};\nvar serializeAws_json1_1ShardFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ShardId !== undefined && input.ShardId !== null && { ShardId: input.ShardId })), (input.Timestamp !== undefined &&\n input.Timestamp !== null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000) })), (input.Type !== undefined && input.Type !== null && { Type: input.Type }));\n};\nvar serializeAws_json1_1SplitShardInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.NewStartingHashKey !== undefined &&\n input.NewStartingHashKey !== null && { NewStartingHashKey: input.NewStartingHashKey })), (input.ShardToSplit !== undefined && input.ShardToSplit !== null && { ShardToSplit: input.ShardToSplit })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1StartingPosition = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.SequenceNumber !== undefined &&\n input.SequenceNumber !== null && { SequenceNumber: input.SequenceNumber })), (input.Timestamp !== undefined &&\n input.Timestamp !== null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000) })), (input.Type !== undefined && input.Type !== null && { Type: input.Type }));\n};\nvar serializeAws_json1_1StartStreamEncryptionInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EncryptionType !== undefined &&\n input.EncryptionType !== null && { EncryptionType: input.EncryptionType })), (input.KeyId !== undefined && input.KeyId !== null && { KeyId: input.KeyId })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1StopStreamEncryptionInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EncryptionType !== undefined &&\n input.EncryptionType !== null && { EncryptionType: input.EncryptionType })), (input.KeyId !== undefined && input.KeyId !== null && { KeyId: input.KeyId })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName }));\n};\nvar serializeAws_json1_1SubscribeToShardInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ConsumerARN !== undefined && input.ConsumerARN !== null && { ConsumerARN: input.ConsumerARN })), (input.ShardId !== undefined && input.ShardId !== null && { ShardId: input.ShardId })), (input.StartingPosition !== undefined &&\n input.StartingPosition !== null && {\n StartingPosition: serializeAws_json1_1StartingPosition(input.StartingPosition, context),\n }));\n};\nvar serializeAws_json1_1TagKeyList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1TagMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_json1_1UpdateShardCountInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ScalingType !== undefined && input.ScalingType !== null && { ScalingType: input.ScalingType })), (input.StreamName !== undefined && input.StreamName !== null && { StreamName: input.StreamName })), (input.TargetShardCount !== undefined &&\n input.TargetShardCount !== null && { TargetShardCount: input.TargetShardCount }));\n};\nvar deserializeAws_json1_1ChildShard = function (output, context) {\n return {\n HashKeyRange: output.HashKeyRange !== undefined && output.HashKeyRange !== null\n ? deserializeAws_json1_1HashKeyRange(output.HashKeyRange, context)\n : undefined,\n ParentShards: output.ParentShards !== undefined && output.ParentShards !== null\n ? deserializeAws_json1_1ShardIdList(output.ParentShards, context)\n : undefined,\n ShardId: output.ShardId !== undefined && output.ShardId !== null ? output.ShardId : undefined,\n };\n};\nvar deserializeAws_json1_1ChildShardList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ChildShard(entry, context);\n });\n};\nvar deserializeAws_json1_1Consumer = function (output, context) {\n return {\n ConsumerARN: output.ConsumerARN !== undefined && output.ConsumerARN !== null ? output.ConsumerARN : undefined,\n ConsumerCreationTimestamp: output.ConsumerCreationTimestamp !== undefined && output.ConsumerCreationTimestamp !== null\n ? new Date(Math.round(output.ConsumerCreationTimestamp * 1000))\n : undefined,\n ConsumerName: output.ConsumerName !== undefined && output.ConsumerName !== null ? output.ConsumerName : undefined,\n ConsumerStatus: output.ConsumerStatus !== undefined && output.ConsumerStatus !== null ? output.ConsumerStatus : undefined,\n };\n};\nvar deserializeAws_json1_1ConsumerDescription = function (output, context) {\n return {\n ConsumerARN: output.ConsumerARN !== undefined && output.ConsumerARN !== null ? output.ConsumerARN : undefined,\n ConsumerCreationTimestamp: output.ConsumerCreationTimestamp !== undefined && output.ConsumerCreationTimestamp !== null\n ? new Date(Math.round(output.ConsumerCreationTimestamp * 1000))\n : undefined,\n ConsumerName: output.ConsumerName !== undefined && output.ConsumerName !== null ? output.ConsumerName : undefined,\n ConsumerStatus: output.ConsumerStatus !== undefined && output.ConsumerStatus !== null ? output.ConsumerStatus : undefined,\n StreamARN: output.StreamARN !== undefined && output.StreamARN !== null ? output.StreamARN : undefined,\n };\n};\nvar deserializeAws_json1_1ConsumerList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Consumer(entry, context);\n });\n};\nvar deserializeAws_json1_1DescribeLimitsOutput = function (output, context) {\n return {\n OpenShardCount: output.OpenShardCount !== undefined && output.OpenShardCount !== null ? output.OpenShardCount : undefined,\n ShardLimit: output.ShardLimit !== undefined && output.ShardLimit !== null ? output.ShardLimit : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeStreamConsumerOutput = function (output, context) {\n return {\n ConsumerDescription: output.ConsumerDescription !== undefined && output.ConsumerDescription !== null\n ? deserializeAws_json1_1ConsumerDescription(output.ConsumerDescription, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeStreamOutput = function (output, context) {\n return {\n StreamDescription: output.StreamDescription !== undefined && output.StreamDescription !== null\n ? deserializeAws_json1_1StreamDescription(output.StreamDescription, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeStreamSummaryOutput = function (output, context) {\n return {\n StreamDescriptionSummary: output.StreamDescriptionSummary !== undefined && output.StreamDescriptionSummary !== null\n ? deserializeAws_json1_1StreamDescriptionSummary(output.StreamDescriptionSummary, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1EnhancedMetrics = function (output, context) {\n return {\n ShardLevelMetrics: output.ShardLevelMetrics !== undefined && output.ShardLevelMetrics !== null\n ? deserializeAws_json1_1MetricsNameList(output.ShardLevelMetrics, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1EnhancedMonitoringList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1EnhancedMetrics(entry, context);\n });\n};\nvar deserializeAws_json1_1EnhancedMonitoringOutput = function (output, context) {\n return {\n CurrentShardLevelMetrics: output.CurrentShardLevelMetrics !== undefined && output.CurrentShardLevelMetrics !== null\n ? deserializeAws_json1_1MetricsNameList(output.CurrentShardLevelMetrics, context)\n : undefined,\n DesiredShardLevelMetrics: output.DesiredShardLevelMetrics !== undefined && output.DesiredShardLevelMetrics !== null\n ? deserializeAws_json1_1MetricsNameList(output.DesiredShardLevelMetrics, context)\n : undefined,\n StreamName: output.StreamName !== undefined && output.StreamName !== null ? output.StreamName : undefined,\n };\n};\nvar deserializeAws_json1_1ExpiredIteratorException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ExpiredNextTokenException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1GetRecordsOutput = function (output, context) {\n return {\n ChildShards: output.ChildShards !== undefined && output.ChildShards !== null\n ? deserializeAws_json1_1ChildShardList(output.ChildShards, context)\n : undefined,\n MillisBehindLatest: output.MillisBehindLatest !== undefined && output.MillisBehindLatest !== null\n ? output.MillisBehindLatest\n : undefined,\n NextShardIterator: output.NextShardIterator !== undefined && output.NextShardIterator !== null\n ? output.NextShardIterator\n : undefined,\n Records: output.Records !== undefined && output.Records !== null\n ? deserializeAws_json1_1RecordList(output.Records, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetShardIteratorOutput = function (output, context) {\n return {\n ShardIterator: output.ShardIterator !== undefined && output.ShardIterator !== null ? output.ShardIterator : undefined,\n };\n};\nvar deserializeAws_json1_1HashKeyRange = function (output, context) {\n return {\n EndingHashKey: output.EndingHashKey !== undefined && output.EndingHashKey !== null ? output.EndingHashKey : undefined,\n StartingHashKey: output.StartingHashKey !== undefined && output.StartingHashKey !== null ? output.StartingHashKey : undefined,\n };\n};\nvar deserializeAws_json1_1InternalFailureException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidArgumentException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1KMSAccessDeniedException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1KMSDisabledException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1KMSInvalidStateException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1KMSNotFoundException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1KMSOptInRequired = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1KMSThrottlingException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1LimitExceededException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ListShardsOutput = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n Shards: output.Shards !== undefined && output.Shards !== null\n ? deserializeAws_json1_1ShardList(output.Shards, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ListStreamConsumersOutput = function (output, context) {\n return {\n Consumers: output.Consumers !== undefined && output.Consumers !== null\n ? deserializeAws_json1_1ConsumerList(output.Consumers, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListStreamsOutput = function (output, context) {\n return {\n HasMoreStreams: output.HasMoreStreams !== undefined && output.HasMoreStreams !== null ? output.HasMoreStreams : undefined,\n StreamNames: output.StreamNames !== undefined && output.StreamNames !== null\n ? deserializeAws_json1_1StreamNameList(output.StreamNames, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ListTagsForStreamOutput = function (output, context) {\n return {\n HasMoreTags: output.HasMoreTags !== undefined && output.HasMoreTags !== null ? output.HasMoreTags : undefined,\n Tags: output.Tags !== undefined && output.Tags !== null\n ? deserializeAws_json1_1TagList(output.Tags, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1MetricsNameList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ProvisionedThroughputExceededException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1PutRecordOutput = function (output, context) {\n return {\n EncryptionType: output.EncryptionType !== undefined && output.EncryptionType !== null ? output.EncryptionType : undefined,\n SequenceNumber: output.SequenceNumber !== undefined && output.SequenceNumber !== null ? output.SequenceNumber : undefined,\n ShardId: output.ShardId !== undefined && output.ShardId !== null ? output.ShardId : undefined,\n };\n};\nvar deserializeAws_json1_1PutRecordsOutput = function (output, context) {\n return {\n EncryptionType: output.EncryptionType !== undefined && output.EncryptionType !== null ? output.EncryptionType : undefined,\n FailedRecordCount: output.FailedRecordCount !== undefined && output.FailedRecordCount !== null\n ? output.FailedRecordCount\n : undefined,\n Records: output.Records !== undefined && output.Records !== null\n ? deserializeAws_json1_1PutRecordsResultEntryList(output.Records, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1PutRecordsResultEntry = function (output, context) {\n return {\n ErrorCode: output.ErrorCode !== undefined && output.ErrorCode !== null ? output.ErrorCode : undefined,\n ErrorMessage: output.ErrorMessage !== undefined && output.ErrorMessage !== null ? output.ErrorMessage : undefined,\n SequenceNumber: output.SequenceNumber !== undefined && output.SequenceNumber !== null ? output.SequenceNumber : undefined,\n ShardId: output.ShardId !== undefined && output.ShardId !== null ? output.ShardId : undefined,\n };\n};\nvar deserializeAws_json1_1PutRecordsResultEntryList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1PutRecordsResultEntry(entry, context);\n });\n};\nvar deserializeAws_json1_1_Record = function (output, context) {\n return {\n ApproximateArrivalTimestamp: output.ApproximateArrivalTimestamp !== undefined && output.ApproximateArrivalTimestamp !== null\n ? new Date(Math.round(output.ApproximateArrivalTimestamp * 1000))\n : undefined,\n Data: output.Data !== undefined && output.Data !== null ? context.base64Decoder(output.Data) : undefined,\n EncryptionType: output.EncryptionType !== undefined && output.EncryptionType !== null ? output.EncryptionType : undefined,\n PartitionKey: output.PartitionKey !== undefined && output.PartitionKey !== null ? output.PartitionKey : undefined,\n SequenceNumber: output.SequenceNumber !== undefined && output.SequenceNumber !== null ? output.SequenceNumber : undefined,\n };\n};\nvar deserializeAws_json1_1RecordList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1_Record(entry, context);\n });\n};\nvar deserializeAws_json1_1RegisterStreamConsumerOutput = function (output, context) {\n return {\n Consumer: output.Consumer !== undefined && output.Consumer !== null\n ? deserializeAws_json1_1Consumer(output.Consumer, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceInUseException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceNotFoundException = function (output, context) {\n return {\n message: output.message !== undefined && output.message !== null ? output.message : undefined,\n };\n};\nvar deserializeAws_json1_1SequenceNumberRange = function (output, context) {\n return {\n EndingSequenceNumber: output.EndingSequenceNumber !== undefined && output.EndingSequenceNumber !== null\n ? output.EndingSequenceNumber\n : undefined,\n StartingSequenceNumber: output.StartingSequenceNumber !== undefined && output.StartingSequenceNumber !== null\n ? output.StartingSequenceNumber\n : undefined,\n };\n};\nvar deserializeAws_json1_1Shard = function (output, context) {\n return {\n AdjacentParentShardId: output.AdjacentParentShardId !== undefined && output.AdjacentParentShardId !== null\n ? output.AdjacentParentShardId\n : undefined,\n HashKeyRange: output.HashKeyRange !== undefined && output.HashKeyRange !== null\n ? deserializeAws_json1_1HashKeyRange(output.HashKeyRange, context)\n : undefined,\n ParentShardId: output.ParentShardId !== undefined && output.ParentShardId !== null ? output.ParentShardId : undefined,\n SequenceNumberRange: output.SequenceNumberRange !== undefined && output.SequenceNumberRange !== null\n ? deserializeAws_json1_1SequenceNumberRange(output.SequenceNumberRange, context)\n : undefined,\n ShardId: output.ShardId !== undefined && output.ShardId !== null ? output.ShardId : undefined,\n };\n};\nvar deserializeAws_json1_1ShardIdList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ShardList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Shard(entry, context);\n });\n};\nvar deserializeAws_json1_1StreamDescription = function (output, context) {\n return {\n EncryptionType: output.EncryptionType !== undefined && output.EncryptionType !== null ? output.EncryptionType : undefined,\n EnhancedMonitoring: output.EnhancedMonitoring !== undefined && output.EnhancedMonitoring !== null\n ? deserializeAws_json1_1EnhancedMonitoringList(output.EnhancedMonitoring, context)\n : undefined,\n HasMoreShards: output.HasMoreShards !== undefined && output.HasMoreShards !== null ? output.HasMoreShards : undefined,\n KeyId: output.KeyId !== undefined && output.KeyId !== null ? output.KeyId : undefined,\n RetentionPeriodHours: output.RetentionPeriodHours !== undefined && output.RetentionPeriodHours !== null\n ? output.RetentionPeriodHours\n : undefined,\n Shards: output.Shards !== undefined && output.Shards !== null\n ? deserializeAws_json1_1ShardList(output.Shards, context)\n : undefined,\n StreamARN: output.StreamARN !== undefined && output.StreamARN !== null ? output.StreamARN : undefined,\n StreamCreationTimestamp: output.StreamCreationTimestamp !== undefined && output.StreamCreationTimestamp !== null\n ? new Date(Math.round(output.StreamCreationTimestamp * 1000))\n : undefined,\n StreamName: output.StreamName !== undefined && output.StreamName !== null ? output.StreamName : undefined,\n StreamStatus: output.StreamStatus !== undefined && output.StreamStatus !== null ? output.StreamStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StreamDescriptionSummary = function (output, context) {\n return {\n ConsumerCount: output.ConsumerCount !== undefined && output.ConsumerCount !== null ? output.ConsumerCount : undefined,\n EncryptionType: output.EncryptionType !== undefined && output.EncryptionType !== null ? output.EncryptionType : undefined,\n EnhancedMonitoring: output.EnhancedMonitoring !== undefined && output.EnhancedMonitoring !== null\n ? deserializeAws_json1_1EnhancedMonitoringList(output.EnhancedMonitoring, context)\n : undefined,\n KeyId: output.KeyId !== undefined && output.KeyId !== null ? output.KeyId : undefined,\n OpenShardCount: output.OpenShardCount !== undefined && output.OpenShardCount !== null ? output.OpenShardCount : undefined,\n RetentionPeriodHours: output.RetentionPeriodHours !== undefined && output.RetentionPeriodHours !== null\n ? output.RetentionPeriodHours\n : undefined,\n StreamARN: output.StreamARN !== undefined && output.StreamARN !== null ? output.StreamARN : undefined,\n StreamCreationTimestamp: output.StreamCreationTimestamp !== undefined && output.StreamCreationTimestamp !== null\n ? new Date(Math.round(output.StreamCreationTimestamp * 1000))\n : undefined,\n StreamName: output.StreamName !== undefined && output.StreamName !== null ? output.StreamName : undefined,\n StreamStatus: output.StreamStatus !== undefined && output.StreamStatus !== null ? output.StreamStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StreamNameList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1SubscribeToShardEvent = function (output, context) {\n return {\n ChildShards: output.ChildShards !== undefined && output.ChildShards !== null\n ? deserializeAws_json1_1ChildShardList(output.ChildShards, context)\n : undefined,\n ContinuationSequenceNumber: output.ContinuationSequenceNumber !== undefined && output.ContinuationSequenceNumber !== null\n ? output.ContinuationSequenceNumber\n : undefined,\n MillisBehindLatest: output.MillisBehindLatest !== undefined && output.MillisBehindLatest !== null\n ? output.MillisBehindLatest\n : undefined,\n Records: output.Records !== undefined && output.Records !== null\n ? deserializeAws_json1_1RecordList(output.Records, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1SubscribeToShardEventStream = function (output, context) {\n if (output.InternalFailureException !== undefined && output.InternalFailureException !== null) {\n return {\n InternalFailureException: deserializeAws_json1_1InternalFailureException(output.InternalFailureException, context),\n };\n }\n if (output.KMSAccessDeniedException !== undefined && output.KMSAccessDeniedException !== null) {\n return {\n KMSAccessDeniedException: deserializeAws_json1_1KMSAccessDeniedException(output.KMSAccessDeniedException, context),\n };\n }\n if (output.KMSDisabledException !== undefined && output.KMSDisabledException !== null) {\n return {\n KMSDisabledException: deserializeAws_json1_1KMSDisabledException(output.KMSDisabledException, context),\n };\n }\n if (output.KMSInvalidStateException !== undefined && output.KMSInvalidStateException !== null) {\n return {\n KMSInvalidStateException: deserializeAws_json1_1KMSInvalidStateException(output.KMSInvalidStateException, context),\n };\n }\n if (output.KMSNotFoundException !== undefined && output.KMSNotFoundException !== null) {\n return {\n KMSNotFoundException: deserializeAws_json1_1KMSNotFoundException(output.KMSNotFoundException, context),\n };\n }\n if (output.KMSOptInRequired !== undefined && output.KMSOptInRequired !== null) {\n return {\n KMSOptInRequired: deserializeAws_json1_1KMSOptInRequired(output.KMSOptInRequired, context),\n };\n }\n if (output.KMSThrottlingException !== undefined && output.KMSThrottlingException !== null) {\n return {\n KMSThrottlingException: deserializeAws_json1_1KMSThrottlingException(output.KMSThrottlingException, context),\n };\n }\n if (output.ResourceInUseException !== undefined && output.ResourceInUseException !== null) {\n return {\n ResourceInUseException: deserializeAws_json1_1ResourceInUseException(output.ResourceInUseException, context),\n };\n }\n if (output.ResourceNotFoundException !== undefined && output.ResourceNotFoundException !== null) {\n return {\n ResourceNotFoundException: deserializeAws_json1_1ResourceNotFoundException(output.ResourceNotFoundException, context),\n };\n }\n if (output.SubscribeToShardEvent !== undefined && output.SubscribeToShardEvent !== null) {\n return {\n SubscribeToShardEvent: deserializeAws_json1_1SubscribeToShardEvent(output.SubscribeToShardEvent, context),\n };\n }\n return { $unknown: Object.entries(output)[0] };\n};\nvar deserializeAws_json1_1SubscribeToShardOutput = function (output, context) {\n return {\n EventStream: output.EventStream !== undefined && output.EventStream !== null\n ? deserializeAws_json1_1SubscribeToShardEventStream(output.EventStream, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Tag = function (output, context) {\n return {\n Key: output.Key !== undefined && output.Key !== null ? output.Key : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1TagList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Tag(entry, context);\n });\n};\nvar deserializeAws_json1_1UpdateShardCountOutput = function (output, context) {\n return {\n CurrentShardCount: output.CurrentShardCount !== undefined && output.CurrentShardCount !== null\n ? output.CurrentShardCount\n : undefined,\n StreamName: output.StreamName !== undefined && output.StreamName !== null ? output.StreamName : undefined,\n TargetShardCount: output.TargetShardCount !== undefined && output.TargetShardCount !== null ? output.TargetShardCount : undefined,\n };\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar buildHttpRpcRequest = function (context, headers, path, resolvedHostname, body) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n contents = {\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n path: path,\n headers: headers,\n };\n if (resolvedHostname !== undefined) {\n contents.hostname = resolvedHostname;\n }\n if (body !== undefined) {\n contents.body = body;\n }\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"](contents)];\n }\n });\n}); };\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_json1_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/protocols/Aws_json1_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/runtimeConfig.browser.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/runtimeConfig.browser.js ***! \*******************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_eventstream_serde_browser__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/eventstream-serde-browser */ \"./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_11__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_7__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_7__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_8__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_9__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_11__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), eventStreamSerdeProvider: _aws_sdk_eventstream_serde_browser__WEBPACK_IMPORTED_MODULE_3__[\"eventStreamSerdeProvider\"], maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_5__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_10__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_10__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/runtimeConfig.shared.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/runtimeConfig.shared.js ***! \******************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2013-12-02\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Kinesis\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/waiters/waitForStreamExists.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/waiters/waitForStreamExists.js ***! \*************************************************************************************/ /*! exports provided: waitForStreamExists */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"waitForStreamExists\", function() { return waitForStreamExists; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_DescribeStreamCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/DescribeStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamCommand.js\");\n/* harmony import */ var _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-waiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/index.js\");\n\n\n\nvar checkState = function (client, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var result_1, returnComparator, exception_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, client.send(new _commands_DescribeStreamCommand__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamCommand\"](input))];\n case 1:\n result_1 = _a.sent();\n try {\n returnComparator = function () {\n return result_1.StreamDescription.StreamStatus;\n };\n if (returnComparator() === \"ACTIVE\") {\n return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].SUCCESS }];\n }\n }\n catch (e) { }\n return [3 /*break*/, 3];\n case 2:\n exception_1 = _a.sent();\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].RETRY }];\n }\n });\n}); };\n/**\n *\n * @param params : Waiter configuration options.\n * @param input : the input to DescribeStreamCommand for polling.\n */\nvar waitForStreamExists = function (params, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var serviceDefaults;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n serviceDefaults = { minDelay: 10, maxDelay: 120 };\n return [2 /*return*/, Object(_aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"createWaiter\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, serviceDefaults), params), input, checkState)];\n });\n}); };\n//# sourceMappingURL=waitForStreamExists.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/waiters/waitForStreamExists.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/dist/es/waiters/waitForStreamNotExists.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/dist/es/waiters/waitForStreamNotExists.js ***! \****************************************************************************************/ /*! exports provided: waitForStreamNotExists */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"waitForStreamNotExists\", function() { return waitForStreamNotExists; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_DescribeStreamCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/DescribeStreamCommand */ \"./node_modules/@aws-sdk/client-kinesis/dist/es/commands/DescribeStreamCommand.js\");\n/* harmony import */ var _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-waiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/index.js\");\n\n\n\nvar checkState = function (client, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var result, exception_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, client.send(new _commands_DescribeStreamCommand__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamCommand\"](input))];\n case 1:\n result = _a.sent();\n return [3 /*break*/, 3];\n case 2:\n exception_1 = _a.sent();\n if (exception_1.name && exception_1.name == \"ResourceNotFoundException\") {\n return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].SUCCESS }];\n }\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].RETRY }];\n }\n });\n}); };\n/**\n *\n * @param params : Waiter configuration options.\n * @param input : the input to DescribeStreamCommand for polling.\n */\nvar waitForStreamNotExists = function (params, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var serviceDefaults;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n serviceDefaults = { minDelay: 10, maxDelay: 120 };\n return [2 /*return*/, Object(_aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"createWaiter\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, serviceDefaults), params), input, checkState)];\n });\n}); };\n//# sourceMappingURL=waitForStreamNotExists.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/dist/es/waiters/waitForStreamNotExists.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js ***! \******************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-kinesis/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/LexRuntimeService.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/LexRuntimeService.js ***! \***************************************************************************************/ /*! exports provided: LexRuntimeService */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeService\", function() { return LexRuntimeService; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_DeleteSessionCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./commands/DeleteSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/DeleteSessionCommand.js\");\n/* harmony import */ var _commands_GetSessionCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/GetSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/GetSessionCommand.js\");\n/* harmony import */ var _commands_PostContentCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/PostContentCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostContentCommand.js\");\n/* harmony import */ var _commands_PostTextCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/PostTextCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostTextCommand.js\");\n/* harmony import */ var _commands_PutSessionCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/PutSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PutSessionCommand.js\");\n/* harmony import */ var _LexRuntimeServiceClient__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./LexRuntimeServiceClient */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/LexRuntimeServiceClient.js\");\n\n\n\n\n\n\n\nvar LexRuntimeService = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LexRuntimeService, _super);\n function LexRuntimeService() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n LexRuntimeService.prototype.deleteSession = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteSessionCommand__WEBPACK_IMPORTED_MODULE_1__[\"DeleteSessionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n LexRuntimeService.prototype.getSession = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSessionCommand__WEBPACK_IMPORTED_MODULE_2__[\"GetSessionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n LexRuntimeService.prototype.postContent = function (args, optionsOrCb, cb) {\n var command = new _commands_PostContentCommand__WEBPACK_IMPORTED_MODULE_3__[\"PostContentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n LexRuntimeService.prototype.postText = function (args, optionsOrCb, cb) {\n var command = new _commands_PostTextCommand__WEBPACK_IMPORTED_MODULE_4__[\"PostTextCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n LexRuntimeService.prototype.putSession = function (args, optionsOrCb, cb) {\n var command = new _commands_PutSessionCommand__WEBPACK_IMPORTED_MODULE_5__[\"PutSessionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return LexRuntimeService;\n}(_LexRuntimeServiceClient__WEBPACK_IMPORTED_MODULE_6__[\"LexRuntimeServiceClient\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/LexRuntimeService.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/LexRuntimeServiceClient.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/LexRuntimeServiceClient.js ***! \*********************************************************************************************/ /*! exports provided: LexRuntimeServiceClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeServiceClient\", function() { return LexRuntimeServiceClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-logger/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_recursion_detection__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-recursion-detection */ \"./node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/runtimeConfig.browser.js\");\n\n\n\n\n\n\n\n\n\n\n\nvar LexRuntimeServiceClient = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LexRuntimeServiceClient, _super);\n function LexRuntimeServiceClient(configuration) {\n var _this = this;\n var _config_0 = Object(_runtimeConfig__WEBPACK_IMPORTED_MODULE_10__[\"getRuntimeConfig\"])(configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_3__[\"resolveHostHeaderConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_2__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_3__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_4__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_recursion_detection__WEBPACK_IMPORTED_MODULE_5__[\"getRecursionDetectionPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n LexRuntimeServiceClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return LexRuntimeServiceClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/LexRuntimeServiceClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/DeleteSessionCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/DeleteSessionCommand.js ***! \***************************************************************************************************/ /*! exports provided: DeleteSessionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionCommand\", function() { return DeleteSessionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DeleteSessionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteSessionCommand, _super);\n function DeleteSessionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DeleteSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeServiceClient\";\n var commandName = \"DeleteSessionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteSessionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteSessionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteSessionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DeleteSessionCommand\"])(input, context);\n };\n DeleteSessionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DeleteSessionCommand\"])(output, context);\n };\n return DeleteSessionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/DeleteSessionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/GetSessionCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/GetSessionCommand.js ***! \************************************************************************************************/ /*! exports provided: GetSessionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSessionCommand\", function() { return GetSessionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetSessionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSessionCommand, _super);\n function GetSessionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeServiceClient\";\n var commandName = \"GetSessionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetSessionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetSessionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSessionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetSessionCommand\"])(input, context);\n };\n GetSessionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetSessionCommand\"])(output, context);\n };\n return GetSessionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/GetSessionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostContentCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostContentCommand.js ***! \*************************************************************************************************/ /*! exports provided: PostContentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PostContentCommand\", function() { return PostContentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar PostContentCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PostContentCommand, _super);\n function PostContentCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n PostContentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeServiceClient\";\n var commandName = \"PostContentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PostContentRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PostContentResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PostContentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1PostContentCommand\"])(input, context);\n };\n PostContentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1PostContentCommand\"])(output, context);\n };\n return PostContentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostContentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostTextCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostTextCommand.js ***! \**********************************************************************************************/ /*! exports provided: PostTextCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PostTextCommand\", function() { return PostTextCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar PostTextCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PostTextCommand, _super);\n function PostTextCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n PostTextCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeServiceClient\";\n var commandName = \"PostTextCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PostTextRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PostTextResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PostTextCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1PostTextCommand\"])(input, context);\n };\n PostTextCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1PostTextCommand\"])(output, context);\n };\n return PostTextCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostTextCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PutSessionCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PutSessionCommand.js ***! \************************************************************************************************/ /*! exports provided: PutSessionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutSessionCommand\", function() { return PutSessionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar PutSessionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutSessionCommand, _super);\n function PutSessionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n PutSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeServiceClient\";\n var commandName = \"PutSessionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PutSessionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PutSessionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutSessionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1PutSessionCommand\"])(input, context);\n };\n PutSessionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1PutSessionCommand\"])(output, context);\n };\n return PutSessionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PutSessionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/index.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/index.js ***! \************************************************************************************/ /*! exports provided: DeleteSessionCommand, GetSessionCommand, PostContentCommand, PostTextCommand, PutSessionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _DeleteSessionCommand__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./DeleteSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/DeleteSessionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionCommand\", function() { return _DeleteSessionCommand__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSessionCommand\"]; });\n\n/* harmony import */ var _GetSessionCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./GetSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/GetSessionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionCommand\", function() { return _GetSessionCommand__WEBPACK_IMPORTED_MODULE_1__[\"GetSessionCommand\"]; });\n\n/* harmony import */ var _PostContentCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./PostContentCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostContentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostContentCommand\", function() { return _PostContentCommand__WEBPACK_IMPORTED_MODULE_2__[\"PostContentCommand\"]; });\n\n/* harmony import */ var _PostTextCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./PostTextCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PostTextCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostTextCommand\", function() { return _PostTextCommand__WEBPACK_IMPORTED_MODULE_3__[\"PostTextCommand\"]; });\n\n/* harmony import */ var _PutSessionCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./PutSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/PutSessionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionCommand\", function() { return _PutSessionCommand__WEBPACK_IMPORTED_MODULE_4__[\"PutSessionCommand\"]; });\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/endpoints.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/endpoints.js ***! \*******************************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/index.js\");\n\n\nvar regionHash = {\n \"us-east-1\": {\n variants: [\n {\n hostname: \"runtime-fips.lex.us-east-1.amazonaws.com\",\n tags: [\"fips\"],\n },\n ],\n },\n \"us-gov-west-1\": {\n variants: [\n {\n hostname: \"runtime-fips.lex.us-gov-west-1.amazonaws.com\",\n tags: [\"fips\"],\n },\n ],\n },\n \"us-west-2\": {\n variants: [\n {\n hostname: \"runtime-fips.lex.us-west-2.amazonaws.com\",\n tags: [\"fips\"],\n },\n ],\n },\n};\nvar partitionHash = {\n aws: {\n regions: [\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-northeast-3\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ap-southeast-3\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-central-1\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-1-fips\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n \"us-west-2-fips\",\n ],\n regionRegex: \"^(us|eu|ap|sa|ca|me|af)\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime.lex.{region}.amazonaws.com\",\n tags: [],\n },\n {\n hostname: \"runtime-fips.lex.{region}.amazonaws.com\",\n tags: [\"fips\"],\n },\n {\n hostname: \"runtime.lex-fips.{region}.api.aws\",\n tags: [\"dualstack\", \"fips\"],\n },\n {\n hostname: \"runtime.lex.{region}.api.aws\",\n tags: [\"dualstack\"],\n },\n ],\n },\n \"aws-cn\": {\n regions: [\"cn-north-1\", \"cn-northwest-1\"],\n regionRegex: \"^cn\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime.lex.{region}.amazonaws.com.cn\",\n tags: [],\n },\n {\n hostname: \"runtime.lex-fips.{region}.amazonaws.com.cn\",\n tags: [\"fips\"],\n },\n {\n hostname: \"runtime.lex-fips.{region}.api.amazonwebservices.com.cn\",\n tags: [\"dualstack\", \"fips\"],\n },\n {\n hostname: \"runtime.lex.{region}.api.amazonwebservices.com.cn\",\n tags: [\"dualstack\"],\n },\n ],\n },\n \"aws-iso\": {\n regions: [\"us-iso-east-1\", \"us-iso-west-1\"],\n regionRegex: \"^us\\\\-iso\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime.lex.{region}.c2s.ic.gov\",\n tags: [],\n },\n {\n hostname: \"runtime.lex-fips.{region}.c2s.ic.gov\",\n tags: [\"fips\"],\n },\n ],\n },\n \"aws-iso-b\": {\n regions: [\"us-isob-east-1\"],\n regionRegex: \"^us\\\\-isob\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime.lex.{region}.sc2s.sgov.gov\",\n tags: [],\n },\n {\n hostname: \"runtime.lex-fips.{region}.sc2s.sgov.gov\",\n tags: [\"fips\"],\n },\n ],\n },\n \"aws-us-gov\": {\n regions: [\"us-gov-east-1\", \"us-gov-west-1\", \"us-gov-west-1-fips\"],\n regionRegex: \"^us\\\\-gov\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime.lex.{region}.amazonaws.com\",\n tags: [],\n },\n {\n hostname: \"runtime-fips.lex.{region}.amazonaws.com\",\n tags: [\"fips\"],\n },\n {\n hostname: \"runtime.lex-fips.{region}.api.aws\",\n tags: [\"dualstack\", \"fips\"],\n },\n {\n hostname: \"runtime.lex.{region}.api.aws\",\n tags: [\"dualstack\"],\n },\n ],\n },\n};\nvar defaultRegionInfoProvider = function (region, options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__[\"getRegionInfo\"])(region, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, options), { signingService: \"lex\", regionHash: regionHash, partitionHash: partitionHash }))];\n });\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/index.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/index.js ***! \***************************************************************************/ /*! exports provided: LexRuntimeService, LexRuntimeServiceClient, DeleteSessionCommand, GetSessionCommand, PostContentCommand, PostTextCommand, PutSessionCommand, BadRequestException, ConflictException, InternalFailureException, LimitExceededException, NotFoundException, FulfillmentState, MessageFormatType, DialogActionType, ConfirmationStatus, BadGatewayException, DependencyFailedException, LoopDetectedException, NotAcceptableException, DialogState, RequestTimeoutException, UnsupportedMediaTypeException, ContentType, ActiveContextTimeToLiveFilterSensitiveLog, ActiveContextFilterSensitiveLog, DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, GetSessionRequestFilterSensitiveLog, DialogActionFilterSensitiveLog, IntentSummaryFilterSensitiveLog, GetSessionResponseFilterSensitiveLog, PostContentRequestFilterSensitiveLog, PostContentResponseFilterSensitiveLog, PostTextRequestFilterSensitiveLog, IntentConfidenceFilterSensitiveLog, PredictedIntentFilterSensitiveLog, ButtonFilterSensitiveLog, GenericAttachmentFilterSensitiveLog, ResponseCardFilterSensitiveLog, SentimentResponseFilterSensitiveLog, PostTextResponseFilterSensitiveLog, PutSessionRequestFilterSensitiveLog, PutSessionResponseFilterSensitiveLog, LexRuntimeServiceServiceException */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _LexRuntimeService__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./LexRuntimeService */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/LexRuntimeService.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeService\", function() { return _LexRuntimeService__WEBPACK_IMPORTED_MODULE_0__[\"LexRuntimeService\"]; });\n\n/* harmony import */ var _LexRuntimeServiceClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./LexRuntimeServiceClient */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/LexRuntimeServiceClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeServiceClient\", function() { return _LexRuntimeServiceClient__WEBPACK_IMPORTED_MODULE_1__[\"LexRuntimeServiceClient\"]; });\n\n/* harmony import */ var _commands__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/commands/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DeleteSessionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetSessionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostContentCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"PostContentCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostTextCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"PostTextCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"PutSessionCommand\"]; });\n\n/* harmony import */ var _models__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./models */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadRequestException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BadRequestException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalFailureException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"InternalFailureException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotFoundException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"NotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FulfillmentState\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"FulfillmentState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageFormatType\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"MessageFormatType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogActionType\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DialogActionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConfirmationStatus\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ConfirmationStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadGatewayException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BadGatewayException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DependencyFailedException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DependencyFailedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LoopDetectedException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"LoopDetectedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotAcceptableException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"NotAcceptableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogState\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DialogState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RequestTimeoutException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RequestTimeoutException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedMediaTypeException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UnsupportedMediaTypeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentType\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ContentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextTimeToLiveFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ActiveContextTimeToLiveFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ActiveContextFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogActionFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DialogActionFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentSummaryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"IntentSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostContentRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PostContentRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostContentResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PostContentResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostTextRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PostTextRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentConfidenceFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"IntentConfidenceFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PredictedIntentFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PredictedIntentFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ButtonFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ButtonFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GenericAttachmentFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GenericAttachmentFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResponseCardFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ResponseCardFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SentimentResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostTextResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PostTextResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PutSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PutSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony import */ var _models_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./models/LexRuntimeServiceServiceException */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/LexRuntimeServiceServiceException.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeServiceServiceException\", function() { return _models_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_4__[\"LexRuntimeServiceServiceException\"]; });\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/LexRuntimeServiceServiceException.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/LexRuntimeServiceServiceException.js ***! \**************************************************************************************************************/ /*! exports provided: LexRuntimeServiceServiceException */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeServiceServiceException\", function() { return LexRuntimeServiceServiceException; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n\n\nvar LexRuntimeServiceServiceException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LexRuntimeServiceServiceException, _super);\n function LexRuntimeServiceServiceException(options) {\n var _this = _super.call(this, options) || this;\n Object.setPrototypeOf(_this, LexRuntimeServiceServiceException.prototype);\n return _this;\n }\n return LexRuntimeServiceServiceException;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"ServiceException\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/LexRuntimeServiceServiceException.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/index.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/index.js ***! \**********************************************************************************/ /*! exports provided: BadRequestException, ConflictException, InternalFailureException, LimitExceededException, NotFoundException, FulfillmentState, MessageFormatType, DialogActionType, ConfirmationStatus, BadGatewayException, DependencyFailedException, LoopDetectedException, NotAcceptableException, DialogState, RequestTimeoutException, UnsupportedMediaTypeException, ContentType, ActiveContextTimeToLiveFilterSensitiveLog, ActiveContextFilterSensitiveLog, DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, GetSessionRequestFilterSensitiveLog, DialogActionFilterSensitiveLog, IntentSummaryFilterSensitiveLog, GetSessionResponseFilterSensitiveLog, PostContentRequestFilterSensitiveLog, PostContentResponseFilterSensitiveLog, PostTextRequestFilterSensitiveLog, IntentConfidenceFilterSensitiveLog, PredictedIntentFilterSensitiveLog, ButtonFilterSensitiveLog, GenericAttachmentFilterSensitiveLog, ResponseCardFilterSensitiveLog, SentimentResponseFilterSensitiveLog, PostTextResponseFilterSensitiveLog, PutSessionRequestFilterSensitiveLog, PutSessionResponseFilterSensitiveLog */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadRequestException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BadRequestException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalFailureException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalFailureException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FulfillmentState\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FulfillmentState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageFormatType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MessageFormatType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogActionType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DialogActionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConfirmationStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConfirmationStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadGatewayException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BadGatewayException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DependencyFailedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DependencyFailedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LoopDetectedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LoopDetectedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotAcceptableException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NotAcceptableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogState\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DialogState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RequestTimeoutException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RequestTimeoutException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedMediaTypeException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnsupportedMediaTypeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ContentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextTimeToLiveFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ActiveContextTimeToLiveFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ActiveContextFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogActionFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DialogActionFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentSummaryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IntentSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostContentRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PostContentRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostContentResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PostContentResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostTextRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PostTextRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentConfidenceFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IntentConfidenceFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PredictedIntentFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PredictedIntentFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ButtonFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ButtonFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GenericAttachmentFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GenericAttachmentFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResponseCardFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResponseCardFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SentimentResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PostTextResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PostTextResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutSessionResponseFilterSensitiveLog\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js ***! \*************************************************************************************/ /*! exports provided: BadRequestException, ConflictException, InternalFailureException, LimitExceededException, NotFoundException, FulfillmentState, MessageFormatType, DialogActionType, ConfirmationStatus, BadGatewayException, DependencyFailedException, LoopDetectedException, NotAcceptableException, DialogState, RequestTimeoutException, UnsupportedMediaTypeException, ContentType, ActiveContextTimeToLiveFilterSensitiveLog, ActiveContextFilterSensitiveLog, DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, GetSessionRequestFilterSensitiveLog, DialogActionFilterSensitiveLog, IntentSummaryFilterSensitiveLog, GetSessionResponseFilterSensitiveLog, PostContentRequestFilterSensitiveLog, PostContentResponseFilterSensitiveLog, PostTextRequestFilterSensitiveLog, IntentConfidenceFilterSensitiveLog, PredictedIntentFilterSensitiveLog, ButtonFilterSensitiveLog, GenericAttachmentFilterSensitiveLog, ResponseCardFilterSensitiveLog, SentimentResponseFilterSensitiveLog, PostTextResponseFilterSensitiveLog, PutSessionRequestFilterSensitiveLog, PutSessionResponseFilterSensitiveLog */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BadRequestException\", function() { return BadRequestException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return ConflictException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalFailureException\", function() { return InternalFailureException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return LimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NotFoundException\", function() { return NotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FulfillmentState\", function() { return FulfillmentState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MessageFormatType\", function() { return MessageFormatType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DialogActionType\", function() { return DialogActionType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConfirmationStatus\", function() { return ConfirmationStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BadGatewayException\", function() { return BadGatewayException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DependencyFailedException\", function() { return DependencyFailedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LoopDetectedException\", function() { return LoopDetectedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NotAcceptableException\", function() { return NotAcceptableException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DialogState\", function() { return DialogState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RequestTimeoutException\", function() { return RequestTimeoutException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedMediaTypeException\", function() { return UnsupportedMediaTypeException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ContentType\", function() { return ContentType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextTimeToLiveFilterSensitiveLog\", function() { return ActiveContextTimeToLiveFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextFilterSensitiveLog\", function() { return ActiveContextFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionRequestFilterSensitiveLog\", function() { return DeleteSessionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionResponseFilterSensitiveLog\", function() { return DeleteSessionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSessionRequestFilterSensitiveLog\", function() { return GetSessionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DialogActionFilterSensitiveLog\", function() { return DialogActionFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IntentSummaryFilterSensitiveLog\", function() { return IntentSummaryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSessionResponseFilterSensitiveLog\", function() { return GetSessionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PostContentRequestFilterSensitiveLog\", function() { return PostContentRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PostContentResponseFilterSensitiveLog\", function() { return PostContentResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PostTextRequestFilterSensitiveLog\", function() { return PostTextRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IntentConfidenceFilterSensitiveLog\", function() { return IntentConfidenceFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PredictedIntentFilterSensitiveLog\", function() { return PredictedIntentFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ButtonFilterSensitiveLog\", function() { return ButtonFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GenericAttachmentFilterSensitiveLog\", function() { return GenericAttachmentFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResponseCardFilterSensitiveLog\", function() { return ResponseCardFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SentimentResponseFilterSensitiveLog\", function() { return SentimentResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PostTextResponseFilterSensitiveLog\", function() { return PostTextResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutSessionRequestFilterSensitiveLog\", function() { return PutSessionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutSessionResponseFilterSensitiveLog\", function() { return PutSessionResponseFilterSensitiveLog; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./LexRuntimeServiceServiceException */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/LexRuntimeServiceServiceException.js\");\n\n\n\nvar BadRequestException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BadRequestException, _super);\n function BadRequestException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"BadRequestException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"BadRequestException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, BadRequestException.prototype);\n return _this;\n }\n return BadRequestException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar ConflictException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ConflictException, _super);\n function ConflictException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ConflictException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ConflictException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, ConflictException.prototype);\n return _this;\n }\n return ConflictException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar InternalFailureException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(InternalFailureException, _super);\n function InternalFailureException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InternalFailureException\", $fault: \"server\" }, opts)) || this;\n _this.name = \"InternalFailureException\";\n _this.$fault = \"server\";\n Object.setPrototypeOf(_this, InternalFailureException.prototype);\n return _this;\n }\n return InternalFailureException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar LimitExceededException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LimitExceededException, _super);\n function LimitExceededException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"LimitExceededException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"LimitExceededException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, LimitExceededException.prototype);\n _this.retryAfterSeconds = opts.retryAfterSeconds;\n return _this;\n }\n return LimitExceededException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar NotFoundException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(NotFoundException, _super);\n function NotFoundException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"NotFoundException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"NotFoundException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, NotFoundException.prototype);\n return _this;\n }\n return NotFoundException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar FulfillmentState;\n(function (FulfillmentState) {\n FulfillmentState[\"FAILED\"] = \"Failed\";\n FulfillmentState[\"FULFILLED\"] = \"Fulfilled\";\n FulfillmentState[\"READY_FOR_FULFILLMENT\"] = \"ReadyForFulfillment\";\n})(FulfillmentState || (FulfillmentState = {}));\nvar MessageFormatType;\n(function (MessageFormatType) {\n MessageFormatType[\"COMPOSITE\"] = \"Composite\";\n MessageFormatType[\"CUSTOM_PAYLOAD\"] = \"CustomPayload\";\n MessageFormatType[\"PLAIN_TEXT\"] = \"PlainText\";\n MessageFormatType[\"SSML\"] = \"SSML\";\n})(MessageFormatType || (MessageFormatType = {}));\nvar DialogActionType;\n(function (DialogActionType) {\n DialogActionType[\"CLOSE\"] = \"Close\";\n DialogActionType[\"CONFIRM_INTENT\"] = \"ConfirmIntent\";\n DialogActionType[\"DELEGATE\"] = \"Delegate\";\n DialogActionType[\"ELICIT_INTENT\"] = \"ElicitIntent\";\n DialogActionType[\"ELICIT_SLOT\"] = \"ElicitSlot\";\n})(DialogActionType || (DialogActionType = {}));\nvar ConfirmationStatus;\n(function (ConfirmationStatus) {\n ConfirmationStatus[\"CONFIRMED\"] = \"Confirmed\";\n ConfirmationStatus[\"DENIED\"] = \"Denied\";\n ConfirmationStatus[\"NONE\"] = \"None\";\n})(ConfirmationStatus || (ConfirmationStatus = {}));\nvar BadGatewayException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BadGatewayException, _super);\n function BadGatewayException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"BadGatewayException\", $fault: \"server\" }, opts)) || this;\n _this.name = \"BadGatewayException\";\n _this.$fault = \"server\";\n Object.setPrototypeOf(_this, BadGatewayException.prototype);\n _this.Message = opts.Message;\n return _this;\n }\n return BadGatewayException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar DependencyFailedException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DependencyFailedException, _super);\n function DependencyFailedException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"DependencyFailedException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"DependencyFailedException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, DependencyFailedException.prototype);\n _this.Message = opts.Message;\n return _this;\n }\n return DependencyFailedException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar LoopDetectedException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LoopDetectedException, _super);\n function LoopDetectedException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"LoopDetectedException\", $fault: \"server\" }, opts)) || this;\n _this.name = \"LoopDetectedException\";\n _this.$fault = \"server\";\n Object.setPrototypeOf(_this, LoopDetectedException.prototype);\n _this.Message = opts.Message;\n return _this;\n }\n return LoopDetectedException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar NotAcceptableException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(NotAcceptableException, _super);\n function NotAcceptableException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"NotAcceptableException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"NotAcceptableException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, NotAcceptableException.prototype);\n return _this;\n }\n return NotAcceptableException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar DialogState;\n(function (DialogState) {\n DialogState[\"CONFIRM_INTENT\"] = \"ConfirmIntent\";\n DialogState[\"ELICIT_INTENT\"] = \"ElicitIntent\";\n DialogState[\"ELICIT_SLOT\"] = \"ElicitSlot\";\n DialogState[\"FAILED\"] = \"Failed\";\n DialogState[\"FULFILLED\"] = \"Fulfilled\";\n DialogState[\"READY_FOR_FULFILLMENT\"] = \"ReadyForFulfillment\";\n})(DialogState || (DialogState = {}));\nvar RequestTimeoutException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(RequestTimeoutException, _super);\n function RequestTimeoutException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"RequestTimeoutException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"RequestTimeoutException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, RequestTimeoutException.prototype);\n return _this;\n }\n return RequestTimeoutException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar UnsupportedMediaTypeException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UnsupportedMediaTypeException, _super);\n function UnsupportedMediaTypeException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"UnsupportedMediaTypeException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"UnsupportedMediaTypeException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, UnsupportedMediaTypeException.prototype);\n return _this;\n }\n return UnsupportedMediaTypeException;\n}(_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeServiceServiceException\"]));\n\nvar ContentType;\n(function (ContentType) {\n ContentType[\"GENERIC\"] = \"application/vnd.amazonaws.card.generic\";\n})(ContentType || (ContentType = {}));\nvar ActiveContextTimeToLiveFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ActiveContextFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.parameters && { parameters: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar DeleteSessionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteSessionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetSessionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DialogActionFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.slots && { slots: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.message && { message: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar IntentSummaryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.slots && { slots: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar GetSessionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.recentIntentSummaryView && {\n recentIntentSummaryView: obj.recentIntentSummaryView.map(function (item) { return IntentSummaryFilterSensitiveLog(item); }),\n})), (obj.sessionAttributes && { sessionAttributes: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.dialogAction && { dialogAction: DialogActionFilterSensitiveLog(obj.dialogAction) })), (obj.activeContexts && { activeContexts: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar PostContentRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.sessionAttributes && { sessionAttributes: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.requestAttributes && { requestAttributes: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.activeContexts && { activeContexts: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar PostContentResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.message && { message: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.encodedMessage && { encodedMessage: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.encodedInputTranscript && { encodedInputTranscript: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.activeContexts && { activeContexts: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar PostTextRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.sessionAttributes && { sessionAttributes: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.requestAttributes && { requestAttributes: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.inputText && { inputText: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.activeContexts && { activeContexts: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar IntentConfidenceFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar PredictedIntentFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.slots && { slots: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar ButtonFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GenericAttachmentFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ResponseCardFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar SentimentResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar PostTextResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.alternativeIntents && {\n alternativeIntents: obj.alternativeIntents.map(function (item) { return PredictedIntentFilterSensitiveLog(item); }),\n})), (obj.slots && { slots: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.sessionAttributes && { sessionAttributes: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.message && { message: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.activeContexts && { activeContexts: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar PutSessionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.sessionAttributes && { sessionAttributes: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.dialogAction && { dialogAction: DialogActionFilterSensitiveLog(obj.dialogAction) })), (obj.recentIntentSummaryView && {\n recentIntentSummaryView: obj.recentIntentSummaryView.map(function (item) { return IntentSummaryFilterSensitiveLog(item); }),\n})), (obj.activeContexts && { activeContexts: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar PutSessionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.message && { message: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.encodedMessage && { encodedMessage: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.activeContexts && { activeContexts: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/protocols/Aws_restJson1.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/protocols/Aws_restJson1.js ***! \*********************************************************************************************/ /*! exports provided: serializeAws_restJson1DeleteSessionCommand, serializeAws_restJson1GetSessionCommand, serializeAws_restJson1PostContentCommand, serializeAws_restJson1PostTextCommand, serializeAws_restJson1PutSessionCommand, deserializeAws_restJson1DeleteSessionCommand, deserializeAws_restJson1GetSessionCommand, deserializeAws_restJson1PostContentCommand, deserializeAws_restJson1PostTextCommand, deserializeAws_restJson1PutSessionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(Buffer) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteSessionCommand\", function() { return serializeAws_restJson1DeleteSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSessionCommand\", function() { return serializeAws_restJson1GetSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PostContentCommand\", function() { return serializeAws_restJson1PostContentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PostTextCommand\", function() { return serializeAws_restJson1PostTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PutSessionCommand\", function() { return serializeAws_restJson1PutSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteSessionCommand\", function() { return deserializeAws_restJson1DeleteSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSessionCommand\", function() { return deserializeAws_restJson1GetSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PostContentCommand\", function() { return deserializeAws_restJson1PostContentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PostTextCommand\", function() { return deserializeAws_restJson1PostTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PutSessionCommand\", function() { return deserializeAws_restJson1PutSessionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/LexRuntimeServiceServiceException */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/LexRuntimeServiceServiceException.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/models/models_0.js\");\n\n\n\n\n\nvar serializeAws_restJson1DeleteSessionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bot/{botName}/alias/{botAlias}/user/{userId}/session\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botName\", function () { return input.botName; }, \"{botName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAlias\", function () { return input.botAlias; }, \"{botAlias}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"userId\", function () { return input.userId; }, \"{userId}\", false);\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSessionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, query, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bot/{botName}/alias/{botAlias}/user/{userId}/session\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botName\", function () { return input.botName; }, \"{botName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAlias\", function () { return input.botAlias; }, \"{botAlias}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"userId\", function () { return input.userId; }, \"{userId}\", false);\n query = map({\n checkpointLabelFilter: [, input.checkpointLabelFilter],\n });\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PostContentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = map({}, isSerializableHeaderValue, {\n \"x-amz-content-sha256\": \"UNSIGNED-PAYLOAD\",\n \"content-type\": input.contentType || \"application/octet-stream\",\n \"x-amz-lex-session-attributes\": [\n function () { return isSerializableHeaderValue(input.sessionAttributes); },\n function () { return context.base64Encoder(Buffer.from(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"].fromObject(input.sessionAttributes))); },\n ],\n \"x-amz-lex-request-attributes\": [\n function () { return isSerializableHeaderValue(input.requestAttributes); },\n function () { return context.base64Encoder(Buffer.from(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"].fromObject(input.requestAttributes))); },\n ],\n accept: input.accept,\n \"x-amz-lex-active-contexts\": [\n function () { return isSerializableHeaderValue(input.activeContexts); },\n function () { return context.base64Encoder(Buffer.from(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"].fromObject(input.activeContexts))); },\n ],\n });\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bot/{botName}/alias/{botAlias}/user/{userId}/content\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botName\", function () { return input.botName; }, \"{botName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAlias\", function () { return input.botAlias; }, \"{botAlias}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"userId\", function () { return input.userId; }, \"{userId}\", false);\n if (input.inputStream !== undefined) {\n body = input.inputStream;\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PostTextCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bot/{botName}/alias/{botAlias}/user/{userId}/text\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botName\", function () { return input.botName; }, \"{botName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAlias\", function () { return input.botAlias; }, \"{botAlias}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"userId\", function () { return input.userId; }, \"{userId}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.activeContexts != null && {\n activeContexts: serializeAws_restJson1ActiveContextsList(input.activeContexts, context),\n })), (input.inputText != null && { inputText: input.inputText })), (input.requestAttributes != null && {\n requestAttributes: serializeAws_restJson1StringMap(input.requestAttributes, context),\n })), (input.sessionAttributes != null && {\n sessionAttributes: serializeAws_restJson1StringMap(input.sessionAttributes, context),\n })));\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PutSessionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = map({}, isSerializableHeaderValue, {\n \"content-type\": \"application/json\",\n accept: input.accept,\n });\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bot/{botName}/alias/{botAlias}/user/{userId}/session\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botName\", function () { return input.botName; }, \"{botName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAlias\", function () { return input.botAlias; }, \"{botAlias}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"userId\", function () { return input.userId; }, \"{userId}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.activeContexts != null && {\n activeContexts: serializeAws_restJson1ActiveContextsList(input.activeContexts, context),\n })), (input.dialogAction != null && {\n dialogAction: serializeAws_restJson1DialogAction(input.dialogAction, context),\n })), (input.recentIntentSummaryView != null && {\n recentIntentSummaryView: serializeAws_restJson1IntentSummaryList(input.recentIntentSummaryView, context),\n })), (input.sessionAttributes != null && {\n sessionAttributes: serializeAws_restJson1StringMap(input.sessionAttributes, context),\n })));\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSessionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DeleteSessionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.botAlias != null) {\n contents.botAlias = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.botAlias);\n }\n if (data.botName != null) {\n contents.botName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.botName);\n }\n if (data.sessionId != null) {\n contents.sessionId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.sessionId);\n }\n if (data.userId != null) {\n contents.userId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.userId);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSessionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3, 2];\n case \"com.amazonaws.lexruntimeservice#BadRequestException\": return [3, 2];\n case \"ConflictException\": return [3, 4];\n case \"com.amazonaws.lexruntimeservice#ConflictException\": return [3, 4];\n case \"InternalFailureException\": return [3, 6];\n case \"com.amazonaws.lexruntimeservice#InternalFailureException\": return [3, 6];\n case \"LimitExceededException\": return [3, 8];\n case \"com.amazonaws.lexruntimeservice#LimitExceededException\": return [3, 8];\n case \"NotFoundException\": return [3, 10];\n case \"com.amazonaws.lexruntimeservice#NotFoundException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1InternalFailureExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1LimitExceededExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeServiceServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSessionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetSessionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.activeContexts != null) {\n contents.activeContexts = deserializeAws_restJson1ActiveContextsList(data.activeContexts, context);\n }\n if (data.dialogAction != null) {\n contents.dialogAction = deserializeAws_restJson1DialogAction(data.dialogAction, context);\n }\n if (data.recentIntentSummaryView != null) {\n contents.recentIntentSummaryView = deserializeAws_restJson1IntentSummaryList(data.recentIntentSummaryView, context);\n }\n if (data.sessionAttributes != null) {\n contents.sessionAttributes = deserializeAws_restJson1StringMap(data.sessionAttributes, context);\n }\n if (data.sessionId != null) {\n contents.sessionId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.sessionId);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSessionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3, 2];\n case \"com.amazonaws.lexruntimeservice#BadRequestException\": return [3, 2];\n case \"InternalFailureException\": return [3, 4];\n case \"com.amazonaws.lexruntimeservice#InternalFailureException\": return [3, 4];\n case \"LimitExceededException\": return [3, 6];\n case \"com.amazonaws.lexruntimeservice#LimitExceededException\": return [3, 6];\n case \"NotFoundException\": return [3, 8];\n case \"com.amazonaws.lexruntimeservice#NotFoundException\": return [3, 8];\n }\n return [3, 10];\n case 2: return [4, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalFailureExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1LimitExceededExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeServiceServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 11;\n case 11: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1PostContentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1PostContentCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n contentType: [, output.headers[\"content-type\"]],\n intentName: [, output.headers[\"x-amz-lex-intent-name\"]],\n nluIntentConfidence: [\n function () { return void 0 !== output.headers[\"x-amz-lex-nlu-intent-confidence\"]; },\n function () {\n return new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](Buffer.from(context.base64Decoder(output.headers[\"x-amz-lex-nlu-intent-confidence\"])).toString(\"utf8\"));\n },\n ],\n alternativeIntents: [\n function () { return void 0 !== output.headers[\"x-amz-lex-alternative-intents\"]; },\n function () {\n return new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](Buffer.from(context.base64Decoder(output.headers[\"x-amz-lex-alternative-intents\"])).toString(\"utf8\"));\n },\n ],\n slots: [\n function () { return void 0 !== output.headers[\"x-amz-lex-slots\"]; },\n function () {\n return new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](Buffer.from(context.base64Decoder(output.headers[\"x-amz-lex-slots\"])).toString(\"utf8\"));\n },\n ],\n sessionAttributes: [\n function () { return void 0 !== output.headers[\"x-amz-lex-session-attributes\"]; },\n function () {\n return new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](Buffer.from(context.base64Decoder(output.headers[\"x-amz-lex-session-attributes\"])).toString(\"utf8\"));\n },\n ],\n sentimentResponse: [, output.headers[\"x-amz-lex-sentiment\"]],\n message: [, output.headers[\"x-amz-lex-message\"]],\n encodedMessage: [, output.headers[\"x-amz-lex-encoded-message\"]],\n messageFormat: [, output.headers[\"x-amz-lex-message-format\"]],\n dialogState: [, output.headers[\"x-amz-lex-dialog-state\"]],\n slotToElicit: [, output.headers[\"x-amz-lex-slot-to-elicit\"]],\n inputTranscript: [, output.headers[\"x-amz-lex-input-transcript\"]],\n encodedInputTranscript: [, output.headers[\"x-amz-lex-encoded-input-transcript\"]],\n botVersion: [, output.headers[\"x-amz-lex-bot-version\"]],\n sessionId: [, output.headers[\"x-amz-lex-session-id\"]],\n activeContexts: [\n function () { return void 0 !== output.headers[\"x-amz-lex-active-contexts\"]; },\n function () {\n return new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](Buffer.from(context.base64Decoder(output.headers[\"x-amz-lex-active-contexts\"])).toString(\"utf8\"));\n },\n ],\n });\n data = output.body;\n contents.audioStream = data;\n return [2, contents];\n });\n}); };\nvar deserializeAws_restJson1PostContentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadGatewayException\": return [3, 2];\n case \"com.amazonaws.lexruntimeservice#BadGatewayException\": return [3, 2];\n case \"BadRequestException\": return [3, 4];\n case \"com.amazonaws.lexruntimeservice#BadRequestException\": return [3, 4];\n case \"ConflictException\": return [3, 6];\n case \"com.amazonaws.lexruntimeservice#ConflictException\": return [3, 6];\n case \"DependencyFailedException\": return [3, 8];\n case \"com.amazonaws.lexruntimeservice#DependencyFailedException\": return [3, 8];\n case \"InternalFailureException\": return [3, 10];\n case \"com.amazonaws.lexruntimeservice#InternalFailureException\": return [3, 10];\n case \"LimitExceededException\": return [3, 12];\n case \"com.amazonaws.lexruntimeservice#LimitExceededException\": return [3, 12];\n case \"LoopDetectedException\": return [3, 14];\n case \"com.amazonaws.lexruntimeservice#LoopDetectedException\": return [3, 14];\n case \"NotAcceptableException\": return [3, 16];\n case \"com.amazonaws.lexruntimeservice#NotAcceptableException\": return [3, 16];\n case \"NotFoundException\": return [3, 18];\n case \"com.amazonaws.lexruntimeservice#NotFoundException\": return [3, 18];\n case \"RequestTimeoutException\": return [3, 20];\n case \"com.amazonaws.lexruntimeservice#RequestTimeoutException\": return [3, 20];\n case \"UnsupportedMediaTypeException\": return [3, 22];\n case \"com.amazonaws.lexruntimeservice#UnsupportedMediaTypeException\": return [3, 22];\n }\n return [3, 24];\n case 2: return [4, deserializeAws_restJson1BadGatewayExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1DependencyFailedExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1InternalFailureExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12: return [4, deserializeAws_restJson1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13: throw _d.sent();\n case 14: return [4, deserializeAws_restJson1LoopDetectedExceptionResponse(parsedOutput, context)];\n case 15: throw _d.sent();\n case 16: return [4, deserializeAws_restJson1NotAcceptableExceptionResponse(parsedOutput, context)];\n case 17: throw _d.sent();\n case 18: return [4, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 19: throw _d.sent();\n case 20: return [4, deserializeAws_restJson1RequestTimeoutExceptionResponse(parsedOutput, context)];\n case 21: throw _d.sent();\n case 22: return [4, deserializeAws_restJson1UnsupportedMediaTypeExceptionResponse(parsedOutput, context)];\n case 23: throw _d.sent();\n case 24:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeServiceServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 25;\n case 25: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1PostTextCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1PostTextCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.activeContexts != null) {\n contents.activeContexts = deserializeAws_restJson1ActiveContextsList(data.activeContexts, context);\n }\n if (data.alternativeIntents != null) {\n contents.alternativeIntents = deserializeAws_restJson1IntentList(data.alternativeIntents, context);\n }\n if (data.botVersion != null) {\n contents.botVersion = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.botVersion);\n }\n if (data.dialogState != null) {\n contents.dialogState = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.dialogState);\n }\n if (data.intentName != null) {\n contents.intentName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.intentName);\n }\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n if (data.messageFormat != null) {\n contents.messageFormat = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.messageFormat);\n }\n if (data.nluIntentConfidence != null) {\n contents.nluIntentConfidence = deserializeAws_restJson1IntentConfidence(data.nluIntentConfidence, context);\n }\n if (data.responseCard != null) {\n contents.responseCard = deserializeAws_restJson1ResponseCard(data.responseCard, context);\n }\n if (data.sentimentResponse != null) {\n contents.sentimentResponse = deserializeAws_restJson1SentimentResponse(data.sentimentResponse, context);\n }\n if (data.sessionAttributes != null) {\n contents.sessionAttributes = deserializeAws_restJson1StringMap(data.sessionAttributes, context);\n }\n if (data.sessionId != null) {\n contents.sessionId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.sessionId);\n }\n if (data.slotToElicit != null) {\n contents.slotToElicit = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.slotToElicit);\n }\n if (data.slots != null) {\n contents.slots = deserializeAws_restJson1StringMap(data.slots, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1PostTextCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadGatewayException\": return [3, 2];\n case \"com.amazonaws.lexruntimeservice#BadGatewayException\": return [3, 2];\n case \"BadRequestException\": return [3, 4];\n case \"com.amazonaws.lexruntimeservice#BadRequestException\": return [3, 4];\n case \"ConflictException\": return [3, 6];\n case \"com.amazonaws.lexruntimeservice#ConflictException\": return [3, 6];\n case \"DependencyFailedException\": return [3, 8];\n case \"com.amazonaws.lexruntimeservice#DependencyFailedException\": return [3, 8];\n case \"InternalFailureException\": return [3, 10];\n case \"com.amazonaws.lexruntimeservice#InternalFailureException\": return [3, 10];\n case \"LimitExceededException\": return [3, 12];\n case \"com.amazonaws.lexruntimeservice#LimitExceededException\": return [3, 12];\n case \"LoopDetectedException\": return [3, 14];\n case \"com.amazonaws.lexruntimeservice#LoopDetectedException\": return [3, 14];\n case \"NotFoundException\": return [3, 16];\n case \"com.amazonaws.lexruntimeservice#NotFoundException\": return [3, 16];\n }\n return [3, 18];\n case 2: return [4, deserializeAws_restJson1BadGatewayExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1DependencyFailedExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1InternalFailureExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12: return [4, deserializeAws_restJson1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13: throw _d.sent();\n case 14: return [4, deserializeAws_restJson1LoopDetectedExceptionResponse(parsedOutput, context)];\n case 15: throw _d.sent();\n case 16: return [4, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 17: throw _d.sent();\n case 18:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeServiceServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 19;\n case 19: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1PutSessionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1PutSessionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n contentType: [, output.headers[\"content-type\"]],\n intentName: [, output.headers[\"x-amz-lex-intent-name\"]],\n slots: [\n function () { return void 0 !== output.headers[\"x-amz-lex-slots\"]; },\n function () {\n return new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](Buffer.from(context.base64Decoder(output.headers[\"x-amz-lex-slots\"])).toString(\"utf8\"));\n },\n ],\n sessionAttributes: [\n function () { return void 0 !== output.headers[\"x-amz-lex-session-attributes\"]; },\n function () {\n return new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](Buffer.from(context.base64Decoder(output.headers[\"x-amz-lex-session-attributes\"])).toString(\"utf8\"));\n },\n ],\n message: [, output.headers[\"x-amz-lex-message\"]],\n encodedMessage: [, output.headers[\"x-amz-lex-encoded-message\"]],\n messageFormat: [, output.headers[\"x-amz-lex-message-format\"]],\n dialogState: [, output.headers[\"x-amz-lex-dialog-state\"]],\n slotToElicit: [, output.headers[\"x-amz-lex-slot-to-elicit\"]],\n sessionId: [, output.headers[\"x-amz-lex-session-id\"]],\n activeContexts: [\n function () { return void 0 !== output.headers[\"x-amz-lex-active-contexts\"]; },\n function () {\n return new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](Buffer.from(context.base64Decoder(output.headers[\"x-amz-lex-active-contexts\"])).toString(\"utf8\"));\n },\n ],\n });\n data = output.body;\n contents.audioStream = data;\n return [2, contents];\n });\n}); };\nvar deserializeAws_restJson1PutSessionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadGatewayException\": return [3, 2];\n case \"com.amazonaws.lexruntimeservice#BadGatewayException\": return [3, 2];\n case \"BadRequestException\": return [3, 4];\n case \"com.amazonaws.lexruntimeservice#BadRequestException\": return [3, 4];\n case \"ConflictException\": return [3, 6];\n case \"com.amazonaws.lexruntimeservice#ConflictException\": return [3, 6];\n case \"DependencyFailedException\": return [3, 8];\n case \"com.amazonaws.lexruntimeservice#DependencyFailedException\": return [3, 8];\n case \"InternalFailureException\": return [3, 10];\n case \"com.amazonaws.lexruntimeservice#InternalFailureException\": return [3, 10];\n case \"LimitExceededException\": return [3, 12];\n case \"com.amazonaws.lexruntimeservice#LimitExceededException\": return [3, 12];\n case \"NotAcceptableException\": return [3, 14];\n case \"com.amazonaws.lexruntimeservice#NotAcceptableException\": return [3, 14];\n case \"NotFoundException\": return [3, 16];\n case \"com.amazonaws.lexruntimeservice#NotFoundException\": return [3, 16];\n }\n return [3, 18];\n case 2: return [4, deserializeAws_restJson1BadGatewayExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1DependencyFailedExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1InternalFailureExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12: return [4, deserializeAws_restJson1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13: throw _d.sent();\n case 14: return [4, deserializeAws_restJson1NotAcceptableExceptionResponse(parsedOutput, context)];\n case 15: throw _d.sent();\n case 16: return [4, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 17: throw _d.sent();\n case 18:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeServiceServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeServiceServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 19;\n case 19: return [2];\n }\n });\n}); };\nvar map = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"map\"];\nvar deserializeAws_restJson1BadGatewayExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.Message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.Message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"BadGatewayException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1BadRequestExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"BadRequestException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ConflictExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ConflictException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1DependencyFailedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.Message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.Message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"DependencyFailedException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1InternalFailureExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"InternalFailureException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1LimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({\n retryAfterSeconds: [, parsedOutput.headers[\"retry-after\"]],\n });\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"LimitExceededException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1LoopDetectedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.Message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.Message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"LoopDetectedException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1NotAcceptableExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"NotAcceptableException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1NotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"NotFoundException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1RequestTimeoutExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"RequestTimeoutException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1UnsupportedMediaTypeExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"UnsupportedMediaTypeException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar serializeAws_restJson1ActiveContext = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.name != null && { name: input.name })), (input.parameters != null && {\n parameters: serializeAws_restJson1ActiveContextParametersMap(input.parameters, context),\n })), (input.timeToLive != null && {\n timeToLive: serializeAws_restJson1ActiveContextTimeToLive(input.timeToLive, context),\n }));\n};\nvar serializeAws_restJson1ActiveContextParametersMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_restJson1ActiveContextsList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1ActiveContext(entry, context);\n });\n};\nvar serializeAws_restJson1ActiveContextTimeToLive = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.timeToLiveInSeconds != null && { timeToLiveInSeconds: input.timeToLiveInSeconds })), (input.turnsToLive != null && { turnsToLive: input.turnsToLive }));\n};\nvar serializeAws_restJson1DialogAction = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.fulfillmentState != null && { fulfillmentState: input.fulfillmentState })), (input.intentName != null && { intentName: input.intentName })), (input.message != null && { message: input.message })), (input.messageFormat != null && { messageFormat: input.messageFormat })), (input.slotToElicit != null && { slotToElicit: input.slotToElicit })), (input.slots != null && { slots: serializeAws_restJson1StringMap(input.slots, context) })), (input.type != null && { type: input.type }));\n};\nvar serializeAws_restJson1IntentSummary = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.checkpointLabel != null && { checkpointLabel: input.checkpointLabel })), (input.confirmationStatus != null && { confirmationStatus: input.confirmationStatus })), (input.dialogActionType != null && { dialogActionType: input.dialogActionType })), (input.fulfillmentState != null && { fulfillmentState: input.fulfillmentState })), (input.intentName != null && { intentName: input.intentName })), (input.slotToElicit != null && { slotToElicit: input.slotToElicit })), (input.slots != null && { slots: serializeAws_restJson1StringMap(input.slots, context) }));\n};\nvar serializeAws_restJson1IntentSummaryList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1IntentSummary(entry, context);\n });\n};\nvar serializeAws_restJson1StringMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_restJson1ActiveContext = function (output, context) {\n return {\n name: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.name),\n parameters: output.parameters != null\n ? deserializeAws_restJson1ActiveContextParametersMap(output.parameters, context)\n : undefined,\n timeToLive: output.timeToLive != null\n ? deserializeAws_restJson1ActiveContextTimeToLive(output.timeToLive, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1ActiveContextParametersMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(value), _b));\n }, {});\n};\nvar deserializeAws_restJson1ActiveContextsList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ActiveContext(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ActiveContextTimeToLive = function (output, context) {\n return {\n timeToLiveInSeconds: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.timeToLiveInSeconds),\n turnsToLive: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.turnsToLive),\n };\n};\nvar deserializeAws_restJson1Button = function (output, context) {\n return {\n text: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.text),\n value: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.value),\n };\n};\nvar deserializeAws_restJson1DialogAction = function (output, context) {\n return {\n fulfillmentState: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.fulfillmentState),\n intentName: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.intentName),\n message: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.message),\n messageFormat: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.messageFormat),\n slotToElicit: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.slotToElicit),\n slots: output.slots != null ? deserializeAws_restJson1StringMap(output.slots, context) : undefined,\n type: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.type),\n };\n};\nvar deserializeAws_restJson1GenericAttachment = function (output, context) {\n return {\n attachmentLinkUrl: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.attachmentLinkUrl),\n buttons: output.buttons != null ? deserializeAws_restJson1listOfButtons(output.buttons, context) : undefined,\n imageUrl: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.imageUrl),\n subTitle: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.subTitle),\n title: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.title),\n };\n};\nvar deserializeAws_restJson1genericAttachmentList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1GenericAttachment(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1IntentConfidence = function (output, context) {\n return {\n score: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.score),\n };\n};\nvar deserializeAws_restJson1IntentList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1PredictedIntent(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1IntentSummary = function (output, context) {\n return {\n checkpointLabel: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.checkpointLabel),\n confirmationStatus: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.confirmationStatus),\n dialogActionType: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.dialogActionType),\n fulfillmentState: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.fulfillmentState),\n intentName: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.intentName),\n slotToElicit: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.slotToElicit),\n slots: output.slots != null ? deserializeAws_restJson1StringMap(output.slots, context) : undefined,\n };\n};\nvar deserializeAws_restJson1IntentSummaryList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1IntentSummary(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1listOfButtons = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Button(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1PredictedIntent = function (output, context) {\n return {\n intentName: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.intentName),\n nluIntentConfidence: output.nluIntentConfidence != null\n ? deserializeAws_restJson1IntentConfidence(output.nluIntentConfidence, context)\n : undefined,\n slots: output.slots != null ? deserializeAws_restJson1StringMap(output.slots, context) : undefined,\n };\n};\nvar deserializeAws_restJson1ResponseCard = function (output, context) {\n return {\n contentType: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.contentType),\n genericAttachments: output.genericAttachments != null\n ? deserializeAws_restJson1genericAttachmentList(output.genericAttachments, context)\n : undefined,\n version: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.version),\n };\n};\nvar deserializeAws_restJson1SentimentResponse = function (output, context) {\n return {\n sentimentLabel: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.sentimentLabel),\n sentimentScore: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.sentimentScore),\n };\n};\nvar deserializeAws_restJson1StringMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(value), _b));\n }, {});\n};\nvar deserializeMetadata = function (output) {\n var _a, _b;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_b = (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"]) !== null && _b !== void 0 ? _b : output.headers[\"x-amz-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar isSerializableHeaderValue = function (value) {\n return value !== undefined &&\n value !== null &&\n value !== \"\" &&\n (!Object.getOwnPropertyNames(value).includes(\"length\") || value.length != 0) &&\n (!Object.getOwnPropertyNames(value).includes(\"size\") || value.size != 0);\n};\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\nvar parseErrorBody = function (errorBody, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var value;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0: return [4, parseBody(errorBody, context)];\n case 1:\n value = _b.sent();\n value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;\n return [2, value];\n }\n });\n}); };\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (typeof cleanValue === \"number\") {\n cleanValue = cleanValue.toString();\n }\n if (cleanValue.indexOf(\",\") >= 0) {\n cleanValue = cleanValue.split(\",\")[0];\n }\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n};\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/protocols/Aws_restJson1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/runtimeConfig.browser.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/runtimeConfig.browser.js ***! \*******************************************************************************************/ /*! exports provided: getRuntimeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRuntimeConfig\", function() { return getRuntimeConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../package.json */ \"./node_modules/@aws-sdk/client-lex-runtime-service/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ../package.json */ \"./node_modules/@aws-sdk/client-lex-runtime-service/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/runtimeConfig.shared.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_defaults_mode_browser__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! @aws-sdk/util-defaults-mode-browser */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/index.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar getRuntimeConfig = function (config) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;\n var defaultsMode = Object(_aws_sdk_util_defaults_mode_browser__WEBPACK_IMPORTED_MODULE_13__[\"resolveDefaultsModeConfig\"])(config);\n var defaultConfigProvider = function () { return defaultsMode().then(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_12__[\"loadConfigsForDefaultMode\"]); };\n var clientSharedValues = Object(_runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_11__[\"getRuntimeConfig\"])(config);\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, clientSharedValues), config), { runtime: \"browser\", defaultsMode: defaultsMode, base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_7__[\"fromBase64\"], base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_7__[\"toBase64\"], bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_8__[\"calculateBodyLength\"], credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_9__[\"defaultUserAgent\"])({ serviceId: clientSharedValues.serviceId, clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"DEFAULT_MAX_ATTEMPTS\"], region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_5__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__[\"FetchHttpHandler\"](defaultConfigProvider), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, defaultConfigProvider()];\n case 1: return [2, (_a.sent()).retryMode || _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"DEFAULT_RETRY_MODE\"]];\n }\n }); }); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__[\"streamCollector\"], useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (function () { return Promise.resolve(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_USE_DUALSTACK_ENDPOINT\"]); }), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (function () { return Promise.resolve(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_USE_FIPS_ENDPOINT\"]); }), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_10__[\"fromUtf8\"], utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_10__[\"toUtf8\"] });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/runtimeConfig.shared.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/runtimeConfig.shared.js ***! \******************************************************************************************/ /*! exports provided: getRuntimeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRuntimeConfig\", function() { return getRuntimeConfig; });\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/url-parser/dist-es/index.js\");\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/endpoints.js\");\n\n\nvar getRuntimeConfig = function (config) {\n var _a, _b, _c, _d, _e;\n return ({\n apiVersion: \"2016-11-28\",\n disableHostPrefix: (_a = config === null || config === void 0 ? void 0 : config.disableHostPrefix) !== null && _a !== void 0 ? _a : false,\n logger: (_b = config === null || config === void 0 ? void 0 : config.logger) !== null && _b !== void 0 ? _b : {},\n regionInfoProvider: (_c = config === null || config === void 0 ? void 0 : config.regionInfoProvider) !== null && _c !== void 0 ? _c : _endpoints__WEBPACK_IMPORTED_MODULE_1__[\"defaultRegionInfoProvider\"],\n serviceId: (_d = config === null || config === void 0 ? void 0 : config.serviceId) !== null && _d !== void 0 ? _d : \"Lex Runtime Service\",\n urlParser: (_e = config === null || config === void 0 ? void 0 : config.urlParser) !== null && _e !== void 0 ? _e : _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_0__[\"parseUrl\"],\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/dist-es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js ***! \***************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=CryptoOperation.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/Key.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/Key.js ***! \***************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=Key.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/Key.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js ***! \************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=KeyOperation.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js ***! \**************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=MsSubtleCrypto.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js ***! \********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isMsWindow = void 0;\nvar msSubtleCryptoMethods = [\n \"decrypt\",\n \"digest\",\n \"encrypt\",\n \"exportKey\",\n \"generateKey\",\n \"importKey\",\n \"sign\",\n \"verify\"\n];\nfunction quacksLikeAnMsWindow(window) {\n return \"MSInputMethodContext\" in window && \"msCrypto\" in window;\n}\n/**\n * Determines if the provided window is (or is like) the window object one would\n * expect to encounter in Internet Explorer 11.\n */\nfunction isMsWindow(window) {\n if (quacksLikeAnMsWindow(window) && window.msCrypto.subtle !== undefined) {\n var _a = window.msCrypto, getRandomValues = _a.getRandomValues, subtle_1 = _a.subtle;\n return msSubtleCryptoMethods\n .map(function (methodName) { return subtle_1[methodName]; })\n .concat(getRandomValues)\n .every(function (method) { return typeof method === \"function\"; });\n }\n return false;\n}\nexports.isMsWindow = isMsWindow;\n//# sourceMappingURL=MsWindow.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/index.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/index.js ***! \*****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js\");\ntslib_1.__exportStar(__webpack_require__(/*! ./CryptoOperation */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./Key */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/Key.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./KeyOperation */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./MsSubtleCrypto */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./MsWindow */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js ***! \**********************************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/constants.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/constants.js ***! \*********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EMPTY_DATA_SHA_256 = exports.SHA_256_HMAC_ALGO = exports.SHA_256_HASH = void 0;\nexports.SHA_256_HASH = { name: \"SHA-256\" };\nexports.SHA_256_HMAC_ALGO = {\n name: \"HMAC\",\n hash: exports.SHA_256_HASH\n};\nexports.EMPTY_DATA_SHA_256 = new Uint8Array([\n 227,\n 176,\n 196,\n 66,\n 152,\n 252,\n 28,\n 20,\n 154,\n 251,\n 244,\n 200,\n 153,\n 111,\n 185,\n 36,\n 39,\n 174,\n 65,\n 228,\n 100,\n 155,\n 147,\n 76,\n 164,\n 149,\n 153,\n 27,\n 120,\n 82,\n 184,\n 85\n]);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBYSxRQUFBLFlBQVksR0FBd0IsRUFBRSxJQUFJLEVBQUUsU0FBUyxFQUFFLENBQUM7QUFFeEQsUUFBQSxpQkFBaUIsR0FBZ0Q7SUFDNUUsSUFBSSxFQUFFLE1BQU07SUFDWixJQUFJLEVBQUUsb0JBQVk7Q0FDbkIsQ0FBQztBQUVXLFFBQUEsa0JBQWtCLEdBQUcsSUFBSSxVQUFVLENBQUM7SUFDL0MsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEVBQUU7SUFDRixHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEVBQUU7SUFDRixHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxFQUFFO0lBQ0YsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxFQUFFO0lBQ0YsR0FBRztJQUNILEVBQUU7Q0FDSCxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgU0hBXzI1Nl9IQVNIOiB7IG5hbWU6IFwiU0hBLTI1NlwiIH0gPSB7IG5hbWU6IFwiU0hBLTI1NlwiIH07XG5cbmV4cG9ydCBjb25zdCBTSEFfMjU2X0hNQUNfQUxHTzogeyBuYW1lOiBcIkhNQUNcIjsgaGFzaDogeyBuYW1lOiBcIlNIQS0yNTZcIiB9IH0gPSB7XG4gIG5hbWU6IFwiSE1BQ1wiLFxuICBoYXNoOiBTSEFfMjU2X0hBU0hcbn07XG5cbmV4cG9ydCBjb25zdCBFTVBUWV9EQVRBX1NIQV8yNTYgPSBuZXcgVWludDhBcnJheShbXG4gIDIyNyxcbiAgMTc2LFxuICAxOTYsXG4gIDY2LFxuICAxNTIsXG4gIDI1MixcbiAgMjgsXG4gIDIwLFxuICAxNTQsXG4gIDI1MSxcbiAgMjQ0LFxuICAyMDAsXG4gIDE1MyxcbiAgMTExLFxuICAxODUsXG4gIDM2LFxuICAzOSxcbiAgMTc0LFxuICA2NSxcbiAgMjI4LFxuICAxMDAsXG4gIDE1NSxcbiAgMTQ3LFxuICA3NixcbiAgMTY0LFxuICAxNDksXG4gIDE1MyxcbiAgMjcsXG4gIDEyMCxcbiAgODIsXG4gIDE4NCxcbiAgODVcbl0pO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js": /*!*******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js ***! \*******************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar ie11Sha256_1 = __webpack_require__(/*! ./ie11Sha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js\");\nvar webCryptoSha256_1 = __webpack_require__(/*! ./webCryptoSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js\");\nvar sha256_js_1 = __webpack_require__(/*! @aws-crypto/sha256-js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/index.js\");\nvar supports_web_crypto_1 = __webpack_require__(/*! @aws-crypto/supports-web-crypto */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/build/index.js\");\nvar ie11_detection_1 = __webpack_require__(/*! @aws-crypto/ie11-detection */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/ie11-detection/build/index.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n if ((0, supports_web_crypto_1.supportsWebCrypto)((0, util_locate_window_1.locateWindow)())) {\n this.hash = new webCryptoSha256_1.Sha256(secret);\n }\n else if ((0, ie11_detection_1.isMsWindow)((0, util_locate_window_1.locateWindow)())) {\n this.hash = new ie11Sha256_1.Sha256(secret);\n }\n else {\n this.hash = new sha256_js_1.Sha256(secret);\n }\n }\n Sha256.prototype.update = function (data, encoding) {\n this.hash.update(data, encoding);\n };\n Sha256.prototype.digest = function () {\n return this.hash.digest();\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3Jvc3NQbGF0Zm9ybVNoYTI1Ni5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9jcm9zc1BsYXRmb3JtU2hhMjU2LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDJDQUFvRDtBQUNwRCxxREFBOEQ7QUFDOUQsbURBQTJEO0FBRTNELHVFQUFvRTtBQUNwRSw2REFBd0Q7QUFDeEQsa0VBQTJEO0FBRTNEO0lBR0UsZ0JBQVksTUFBbUI7UUFDN0IsSUFBSSxJQUFBLHVDQUFpQixFQUFDLElBQUEsaUNBQVksR0FBRSxDQUFDLEVBQUU7WUFDckMsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLHdCQUFlLENBQUMsTUFBTSxDQUFDLENBQUM7U0FDekM7YUFBTSxJQUFJLElBQUEsMkJBQVUsRUFBQyxJQUFBLGlDQUFZLEdBQUUsQ0FBQyxFQUFFO1lBQ3JDLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxtQkFBVSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1NBQ3BDO2FBQU07WUFDTCxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksa0JBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQztTQUNsQztJQUNILENBQUM7SUFFRCx1QkFBTSxHQUFOLFVBQU8sSUFBZ0IsRUFBRSxRQUFzQztRQUM3RCxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsUUFBUSxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVELHVCQUFNLEdBQU47UUFDRSxPQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDNUIsQ0FBQztJQUNILGFBQUM7QUFBRCxDQUFDLEFBcEJELElBb0JDO0FBcEJZLHdCQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2hhMjU2IGFzIEllMTFTaGEyNTYgfSBmcm9tIFwiLi9pZTExU2hhMjU2XCI7XG5pbXBvcnQgeyBTaGEyNTYgYXMgV2ViQ3J5cHRvU2hhMjU2IH0gZnJvbSBcIi4vd2ViQ3J5cHRvU2hhMjU2XCI7XG5pbXBvcnQgeyBTaGEyNTYgYXMgSnNTaGEyNTYgfSBmcm9tIFwiQGF3cy1jcnlwdG8vc2hhMjU2LWpzXCI7XG5pbXBvcnQgeyBIYXNoLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBzdXBwb3J0c1dlYkNyeXB0byB9IGZyb20gXCJAYXdzLWNyeXB0by9zdXBwb3J0cy13ZWItY3J5cHRvXCI7XG5pbXBvcnQgeyBpc01zV2luZG93IH0gZnJvbSBcIkBhd3MtY3J5cHRvL2llMTEtZGV0ZWN0aW9uXCI7XG5pbXBvcnQgeyBsb2NhdGVXaW5kb3cgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC1sb2NhdGUtd2luZG93XCI7XG5cbmV4cG9ydCBjbGFzcyBTaGEyNTYgaW1wbGVtZW50cyBIYXNoIHtcbiAgcHJpdmF0ZSByZWFkb25seSBoYXNoOiBIYXNoO1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc3VwcG9ydHNXZWJDcnlwdG8obG9jYXRlV2luZG93KCkpKSB7XG4gICAgICB0aGlzLmhhc2ggPSBuZXcgV2ViQ3J5cHRvU2hhMjU2KHNlY3JldCk7XG4gICAgfSBlbHNlIGlmIChpc01zV2luZG93KGxvY2F0ZVdpbmRvdygpKSkge1xuICAgICAgdGhpcy5oYXNoID0gbmV3IEllMTFTaGEyNTYoc2VjcmV0KTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5oYXNoID0gbmV3IEpzU2hhMjU2KHNlY3JldCk7XG4gICAgfVxuICB9XG5cbiAgdXBkYXRlKGRhdGE6IFNvdXJjZURhdGEsIGVuY29kaW5nPzogXCJ1dGY4XCIgfCBcImFzY2lpXCIgfCBcImxhdGluMVwiKTogdm9pZCB7XG4gICAgdGhpcy5oYXNoLnVwZGF0ZShkYXRhLCBlbmNvZGluZyk7XG4gIH1cblxuICBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMuaGFzaC5kaWdlc3QoKTtcbiAgfVxufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js ***! \**********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar isEmptyData_1 = __webpack_require__(/*! ./isEmptyData */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/constants.js\");\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n if (secret) {\n this.operation = getKeyPromise(secret).then(function (keyData) {\n return (0, util_locate_window_1.locateWindow)().msCrypto.subtle.sign(constants_1.SHA_256_HMAC_ALGO, keyData);\n });\n this.operation.catch(function () { });\n }\n else {\n this.operation = Promise.resolve((0, util_locate_window_1.locateWindow)().msCrypto.subtle.digest(\"SHA-256\"));\n }\n }\n Sha256.prototype.update = function (toHash) {\n var _this = this;\n if ((0, isEmptyData_1.isEmptyData)(toHash)) {\n return;\n }\n this.operation = this.operation.then(function (operation) {\n operation.onerror = function () {\n _this.operation = Promise.reject(new Error(\"Error encountered updating hash\"));\n };\n operation.process(toArrayBufferView(toHash));\n return operation;\n });\n this.operation.catch(function () { });\n };\n Sha256.prototype.digest = function () {\n return this.operation.then(function (operation) {\n return new Promise(function (resolve, reject) {\n operation.onerror = function () {\n reject(new Error(\"Error encountered finalizing hash\"));\n };\n operation.oncomplete = function () {\n if (operation.result) {\n resolve(new Uint8Array(operation.result));\n }\n reject(new Error(\"Error encountered finalizing hash\"));\n };\n operation.finish();\n });\n });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\nfunction getKeyPromise(secret) {\n return new Promise(function (resolve, reject) {\n var keyOperation = (0, util_locate_window_1.locateWindow)().msCrypto.subtle.importKey(\"raw\", toArrayBufferView(secret), constants_1.SHA_256_HMAC_ALGO, false, [\"sign\"]);\n keyOperation.oncomplete = function () {\n if (keyOperation.result) {\n resolve(keyOperation.result);\n }\n reject(new Error(\"ImportKey completed without importing key.\"));\n };\n keyOperation.onerror = function () {\n reject(new Error(\"ImportKey failed to import key.\"));\n };\n });\n}\nfunction toArrayBufferView(data) {\n if (typeof data === \"string\") {\n return (0, util_utf8_browser_1.fromUtf8)(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWUxMVNoYTI1Ni5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9pZTExU2hhMjU2LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDZDQUE0QztBQUM1Qyx5Q0FBZ0Q7QUFFaEQsZ0VBQXNEO0FBRXRELGtFQUEyRDtBQUUzRDtJQUdFLGdCQUFZLE1BQW1CO1FBQzdCLElBQUksTUFBTSxFQUFFO1lBQ1YsSUFBSSxDQUFDLFNBQVMsR0FBRyxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQUEsT0FBTztnQkFDakQsT0FBQyxJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksQ0FDL0MsNkJBQWlCLEVBQ2pCLE9BQU8sQ0FDUjtZQUhELENBR0MsQ0FDRixDQUFDO1lBQ0YsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsY0FBTyxDQUFDLENBQUMsQ0FBQztTQUNoQzthQUFNO1lBQ0wsSUFBSSxDQUFDLFNBQVMsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUM3QixJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FDL0QsQ0FBQztTQUNIO0lBQ0gsQ0FBQztJQUVELHVCQUFNLEdBQU4sVUFBTyxNQUFrQjtRQUF6QixpQkFnQkM7UUFmQyxJQUFJLElBQUEseUJBQVcsRUFBQyxNQUFNLENBQUMsRUFBRTtZQUN2QixPQUFPO1NBQ1I7UUFFRCxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFVBQUEsU0FBUztZQUM1QyxTQUFTLENBQUMsT0FBTyxHQUFHO2dCQUNsQixLQUFJLENBQUMsU0FBUyxHQUFHLE9BQU8sQ0FBQyxNQUFNLENBQzdCLElBQUksS0FBSyxDQUFDLGlDQUFpQyxDQUFDLENBQzdDLENBQUM7WUFDSixDQUFDLENBQUM7WUFDRixTQUFTLENBQUMsT0FBTyxDQUFDLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7WUFFN0MsT0FBTyxTQUFTLENBQUM7UUFDbkIsQ0FBQyxDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxjQUFPLENBQUMsQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFFRCx1QkFBTSxHQUFOO1FBQ0UsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FDeEIsVUFBQSxTQUFTO1lBQ1AsT0FBQSxJQUFJLE9BQU8sQ0FBQyxVQUFDLE9BQU8sRUFBRSxNQUFNO2dCQUMxQixTQUFTLENBQUMsT0FBTyxHQUFHO29CQUNsQixNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsbUNBQW1DLENBQUMsQ0FBQyxDQUFDO2dCQUN6RCxDQUFDLENBQUM7Z0JBQ0YsU0FBUyxDQUFDLFVBQVUsR0FBRztvQkFDckIsSUFBSSxTQUFTLENBQUMsTUFBTSxFQUFFO3dCQUNwQixPQUFPLENBQUMsSUFBSSxVQUFVLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7cUJBQzNDO29CQUNELE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxtQ0FBbUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ3pELENBQUMsQ0FBQztnQkFFRixTQUFTLENBQUMsTUFBTSxFQUFFLENBQUM7WUFDckIsQ0FBQyxDQUFDO1FBWkYsQ0FZRSxDQUNMLENBQUM7SUFDSixDQUFDO0lBQ0gsYUFBQztBQUFELENBQUMsQUF2REQsSUF1REM7QUF2RFksd0JBQU07QUF5RG5CLFNBQVMsYUFBYSxDQUFDLE1BQWtCO0lBQ3ZDLE9BQU8sSUFBSSxPQUFPLENBQUMsVUFBQyxPQUFPLEVBQUUsTUFBTTtRQUNqQyxJQUFNLFlBQVksR0FBSSxJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FDekUsS0FBSyxFQUNMLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxFQUN6Qiw2QkFBaUIsRUFDakIsS0FBSyxFQUNMLENBQUMsTUFBTSxDQUFDLENBQ1QsQ0FBQztRQUVGLFlBQVksQ0FBQyxVQUFVLEdBQUc7WUFDeEIsSUFBSSxZQUFZLENBQUMsTUFBTSxFQUFFO2dCQUN2QixPQUFPLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQyxDQUFDO2FBQzlCO1lBRUQsTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLDRDQUE0QyxDQUFDLENBQUMsQ0FBQztRQUNsRSxDQUFDLENBQUM7UUFDRixZQUFZLENBQUMsT0FBTyxHQUFHO1lBQ3JCLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxpQ0FBaUMsQ0FBQyxDQUFDLENBQUM7UUFDdkQsQ0FBQyxDQUFDO0lBQ0osQ0FBQyxDQUFDLENBQUM7QUFDTCxDQUFDO0FBRUQsU0FBUyxpQkFBaUIsQ0FBQyxJQUFnQjtJQUN6QyxJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVEsRUFBRTtRQUM1QixPQUFPLElBQUEsNEJBQVEsRUFBQyxJQUFJLENBQUMsQ0FBQztLQUN2QjtJQUVELElBQUksV0FBVyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsRUFBRTtRQUM1QixPQUFPLElBQUksVUFBVSxDQUNuQixJQUFJLENBQUMsTUFBTSxFQUNYLElBQUksQ0FBQyxVQUFVLEVBQ2YsSUFBSSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUMsaUJBQWlCLENBQy9DLENBQUM7S0FDSDtJQUVELE9BQU8sSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUM7QUFDOUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGlzRW1wdHlEYXRhIH0gZnJvbSBcIi4vaXNFbXB0eURhdGFcIjtcbmltcG9ydCB7IFNIQV8yNTZfSE1BQ19BTEdPIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5pbXBvcnQgeyBIYXNoLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBmcm9tVXRmOCB9IGZyb20gXCJAYXdzLXNkay91dGlsLXV0ZjgtYnJvd3NlclwiO1xuaW1wb3J0IHsgQ3J5cHRvT3BlcmF0aW9uLCBLZXksIE1zV2luZG93IH0gZnJvbSBcIkBhd3MtY3J5cHRvL2llMTEtZGV0ZWN0aW9uXCI7XG5pbXBvcnQgeyBsb2NhdGVXaW5kb3cgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC1sb2NhdGUtd2luZG93XCI7XG5cbmV4cG9ydCBjbGFzcyBTaGEyNTYgaW1wbGVtZW50cyBIYXNoIHtcbiAgcHJpdmF0ZSBvcGVyYXRpb246IFByb21pc2U8Q3J5cHRvT3BlcmF0aW9uPjtcblxuICBjb25zdHJ1Y3RvcihzZWNyZXQ/OiBTb3VyY2VEYXRhKSB7XG4gICAgaWYgKHNlY3JldCkge1xuICAgICAgdGhpcy5vcGVyYXRpb24gPSBnZXRLZXlQcm9taXNlKHNlY3JldCkudGhlbihrZXlEYXRhID0+XG4gICAgICAgIChsb2NhdGVXaW5kb3coKSBhcyBNc1dpbmRvdykubXNDcnlwdG8uc3VidGxlLnNpZ24oXG4gICAgICAgICAgU0hBXzI1Nl9ITUFDX0FMR08sXG4gICAgICAgICAga2V5RGF0YVxuICAgICAgICApXG4gICAgICApO1xuICAgICAgdGhpcy5vcGVyYXRpb24uY2F0Y2goKCkgPT4ge30pO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLm9wZXJhdGlvbiA9IFByb21pc2UucmVzb2x2ZShcbiAgICAgICAgKGxvY2F0ZVdpbmRvdygpIGFzIE1zV2luZG93KS5tc0NyeXB0by5zdWJ0bGUuZGlnZXN0KFwiU0hBLTI1NlwiKVxuICAgICAgKTtcbiAgICB9XG4gIH1cblxuICB1cGRhdGUodG9IYXNoOiBTb3VyY2VEYXRhKTogdm9pZCB7XG4gICAgaWYgKGlzRW1wdHlEYXRhKHRvSGFzaCkpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICB0aGlzLm9wZXJhdGlvbiA9IHRoaXMub3BlcmF0aW9uLnRoZW4ob3BlcmF0aW9uID0+IHtcbiAgICAgIG9wZXJhdGlvbi5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICB0aGlzLm9wZXJhdGlvbiA9IFByb21pc2UucmVqZWN0KFxuICAgICAgICAgIG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIHVwZGF0aW5nIGhhc2hcIilcbiAgICAgICAgKTtcbiAgICAgIH07XG4gICAgICBvcGVyYXRpb24ucHJvY2Vzcyh0b0FycmF5QnVmZmVyVmlldyh0b0hhc2gpKTtcblxuICAgICAgcmV0dXJuIG9wZXJhdGlvbjtcbiAgICB9KTtcbiAgICB0aGlzLm9wZXJhdGlvbi5jYXRjaCgoKSA9PiB7fSk7XG4gIH1cblxuICBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMub3BlcmF0aW9uLnRoZW48VWludDhBcnJheT4oXG4gICAgICBvcGVyYXRpb24gPT5cbiAgICAgICAgbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICAgIG9wZXJhdGlvbi5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIGZpbmFsaXppbmcgaGFzaFwiKSk7XG4gICAgICAgICAgfTtcbiAgICAgICAgICBvcGVyYXRpb24ub25jb21wbGV0ZSA9ICgpID0+IHtcbiAgICAgICAgICAgIGlmIChvcGVyYXRpb24ucmVzdWx0KSB7XG4gICAgICAgICAgICAgIHJlc29sdmUobmV3IFVpbnQ4QXJyYXkob3BlcmF0aW9uLnJlc3VsdCkpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIGZpbmFsaXppbmcgaGFzaFwiKSk7XG4gICAgICAgICAgfTtcblxuICAgICAgICAgIG9wZXJhdGlvbi5maW5pc2goKTtcbiAgICAgICAgfSlcbiAgICApO1xuICB9XG59XG5cbmZ1bmN0aW9uIGdldEtleVByb21pc2Uoc2VjcmV0OiBTb3VyY2VEYXRhKTogUHJvbWlzZTxLZXk+IHtcbiAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlLCByZWplY3QpID0+IHtcbiAgICBjb25zdCBrZXlPcGVyYXRpb24gPSAobG9jYXRlV2luZG93KCkgYXMgTXNXaW5kb3cpLm1zQ3J5cHRvLnN1YnRsZS5pbXBvcnRLZXkoXG4gICAgICBcInJhd1wiLFxuICAgICAgdG9BcnJheUJ1ZmZlclZpZXcoc2VjcmV0KSxcbiAgICAgIFNIQV8yNTZfSE1BQ19BTEdPLFxuICAgICAgZmFsc2UsXG4gICAgICBbXCJzaWduXCJdXG4gICAgKTtcblxuICAgIGtleU9wZXJhdGlvbi5vbmNvbXBsZXRlID0gKCkgPT4ge1xuICAgICAgaWYgKGtleU9wZXJhdGlvbi5yZXN1bHQpIHtcbiAgICAgICAgcmVzb2x2ZShrZXlPcGVyYXRpb24ucmVzdWx0KTtcbiAgICAgIH1cblxuICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkltcG9ydEtleSBjb21wbGV0ZWQgd2l0aG91dCBpbXBvcnRpbmcga2V5LlwiKSk7XG4gICAgfTtcbiAgICBrZXlPcGVyYXRpb24ub25lcnJvciA9ICgpID0+IHtcbiAgICAgIHJlamVjdChuZXcgRXJyb3IoXCJJbXBvcnRLZXkgZmFpbGVkIHRvIGltcG9ydCBrZXkuXCIpKTtcbiAgICB9O1xuICB9KTtcbn1cblxuZnVuY3Rpb24gdG9BcnJheUJ1ZmZlclZpZXcoZGF0YTogU291cmNlRGF0YSk6IFVpbnQ4QXJyYXkge1xuICBpZiAodHlwZW9mIGRhdGEgPT09IFwic3RyaW5nXCIpIHtcbiAgICByZXR1cm4gZnJvbVV0ZjgoZGF0YSk7XG4gIH1cblxuICBpZiAoQXJyYXlCdWZmZXIuaXNWaWV3KGRhdGEpKSB7XG4gICAgcmV0dXJuIG5ldyBVaW50OEFycmF5KFxuICAgICAgZGF0YS5idWZmZXIsXG4gICAgICBkYXRhLmJ5dGVPZmZzZXQsXG4gICAgICBkYXRhLmJ5dGVMZW5ndGggLyBVaW50OEFycmF5LkJZVEVTX1BFUl9FTEVNRU5UXG4gICAgKTtcbiAgfVxuXG4gIHJldHVybiBuZXcgVWludDhBcnJheShkYXRhKTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/index.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/index.js ***! \*****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.WebCryptoSha256 = exports.Ie11Sha256 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js\");\n(0, tslib_1.__exportStar)(__webpack_require__(/*! ./crossPlatformSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js\"), exports);\nvar ie11Sha256_1 = __webpack_require__(/*! ./ie11Sha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js\");\nObject.defineProperty(exports, \"Ie11Sha256\", { enumerable: true, get: function () { return ie11Sha256_1.Sha256; } });\nvar webCryptoSha256_1 = __webpack_require__(/*! ./webCryptoSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js\");\nObject.defineProperty(exports, \"WebCryptoSha256\", { enumerable: true, get: function () { return webCryptoSha256_1.Sha256; } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHFFQUFzQztBQUN0QywyQ0FBb0Q7QUFBM0Msd0dBQUEsTUFBTSxPQUFjO0FBQzdCLHFEQUE4RDtBQUFyRCxrSEFBQSxNQUFNLE9BQW1CIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vY3Jvc3NQbGF0Zm9ybVNoYTI1NlwiO1xuZXhwb3J0IHsgU2hhMjU2IGFzIEllMTFTaGEyNTYgfSBmcm9tIFwiLi9pZTExU2hhMjU2XCI7XG5leHBvcnQgeyBTaGEyNTYgYXMgV2ViQ3J5cHRvU2hhMjU2IH0gZnJvbSBcIi4vd2ViQ3J5cHRvU2hhMjU2XCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js ***! \***********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isEmptyData = void 0;\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nexports.isEmptyData = isEmptyData;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNFbXB0eURhdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaXNFbXB0eURhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUEsU0FBZ0IsV0FBVyxDQUFDLElBQWdCO0lBQzFDLElBQUksT0FBTyxJQUFJLEtBQUssUUFBUSxFQUFFO1FBQzVCLE9BQU8sSUFBSSxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUM7S0FDMUI7SUFFRCxPQUFPLElBQUksQ0FBQyxVQUFVLEtBQUssQ0FBQyxDQUFDO0FBQy9CLENBQUM7QUFORCxrQ0FNQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGZ1bmN0aW9uIGlzRW1wdHlEYXRhKGRhdGE6IFNvdXJjZURhdGEpOiBib29sZWFuIHtcbiAgaWYgKHR5cGVvZiBkYXRhID09PSBcInN0cmluZ1wiKSB7XG4gICAgcmV0dXJuIGRhdGEubGVuZ3RoID09PSAwO1xuICB9XG5cbiAgcmV0dXJuIGRhdGEuYnl0ZUxlbmd0aCA9PT0gMDtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js ***! \***************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/index.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/constants.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n this.toHash = new Uint8Array(0);\n if (secret !== void 0) {\n this.key = new Promise(function (resolve, reject) {\n (0, util_locate_window_1.locateWindow)()\n .crypto.subtle.importKey(\"raw\", (0, util_1.convertToBuffer)(secret), constants_1.SHA_256_HMAC_ALGO, false, [\"sign\"])\n .then(resolve, reject);\n });\n this.key.catch(function () { });\n }\n }\n Sha256.prototype.update = function (data) {\n if ((0, util_1.isEmptyData)(data)) {\n return;\n }\n var update = (0, util_1.convertToBuffer)(data);\n var typedArray = new Uint8Array(this.toHash.byteLength + update.byteLength);\n typedArray.set(this.toHash, 0);\n typedArray.set(update, this.toHash.byteLength);\n this.toHash = typedArray;\n };\n Sha256.prototype.digest = function () {\n var _this = this;\n if (this.key) {\n return this.key.then(function (key) {\n return (0, util_locate_window_1.locateWindow)()\n .crypto.subtle.sign(constants_1.SHA_256_HMAC_ALGO, key, _this.toHash)\n .then(function (data) { return new Uint8Array(data); });\n });\n }\n if ((0, util_1.isEmptyData)(this.toHash)) {\n return Promise.resolve(constants_1.EMPTY_DATA_SHA_256);\n }\n return Promise.resolve()\n .then(function () {\n return (0, util_locate_window_1.locateWindow)().crypto.subtle.digest(constants_1.SHA_256_HASH, _this.toHash);\n })\n .then(function (data) { return Promise.resolve(new Uint8Array(data)); });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2ViQ3J5cHRvU2hhMjU2LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3dlYkNyeXB0b1NoYTI1Ni50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFDQSx5Q0FBZ0U7QUFDaEUseUNBSXFCO0FBQ3JCLGtFQUEyRDtBQUUzRDtJQUlFLGdCQUFZLE1BQW1CO1FBRnZCLFdBQU0sR0FBZSxJQUFJLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUc3QyxJQUFJLE1BQU0sS0FBSyxLQUFLLENBQUMsRUFBRTtZQUNyQixJQUFJLENBQUMsR0FBRyxHQUFHLElBQUksT0FBTyxDQUFDLFVBQUMsT0FBTyxFQUFFLE1BQU07Z0JBQ3JDLElBQUEsaUNBQVksR0FBRTtxQkFDWCxNQUFNLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FDdEIsS0FBSyxFQUNMLElBQUEsc0JBQWUsRUFBQyxNQUFNLENBQUMsRUFDdkIsNkJBQWlCLEVBQ2pCLEtBQUssRUFDTCxDQUFDLE1BQU0sQ0FBQyxDQUNUO3FCQUNBLElBQUksQ0FBQyxPQUFPLEVBQUUsTUFBTSxDQUFDLENBQUM7WUFDM0IsQ0FBQyxDQUFDLENBQUM7WUFDSCxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxjQUFPLENBQUMsQ0FBQyxDQUFDO1NBQzFCO0lBQ0gsQ0FBQztJQUVELHVCQUFNLEdBQU4sVUFBTyxJQUFnQjtRQUNyQixJQUFJLElBQUEsa0JBQVcsRUFBQyxJQUFJLENBQUMsRUFBRTtZQUNyQixPQUFPO1NBQ1I7UUFFRCxJQUFNLE1BQU0sR0FBRyxJQUFBLHNCQUFlLEVBQUMsSUFBSSxDQUFDLENBQUM7UUFDckMsSUFBTSxVQUFVLEdBQUcsSUFBSSxVQUFVLENBQy9CLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQzNDLENBQUM7UUFDRixVQUFVLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDL0IsVUFBVSxDQUFDLEdBQUcsQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUMvQyxJQUFJLENBQUMsTUFBTSxHQUFHLFVBQVUsQ0FBQztJQUMzQixDQUFDO0lBRUQsdUJBQU0sR0FBTjtRQUFBLGlCQWtCQztRQWpCQyxJQUFJLElBQUksQ0FBQyxHQUFHLEVBQUU7WUFDWixPQUFPLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFVBQUMsR0FBRztnQkFDdkIsT0FBQSxJQUFBLGlDQUFZLEdBQUU7cUJBQ1gsTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsNkJBQWlCLEVBQUUsR0FBRyxFQUFFLEtBQUksQ0FBQyxNQUFNLENBQUM7cUJBQ3ZELElBQUksQ0FBQyxVQUFDLElBQUksSUFBSyxPQUFBLElBQUksVUFBVSxDQUFDLElBQUksQ0FBQyxFQUFwQixDQUFvQixDQUFDO1lBRnZDLENBRXVDLENBQ3hDLENBQUM7U0FDSDtRQUVELElBQUksSUFBQSxrQkFBVyxFQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBRTtZQUM1QixPQUFPLE9BQU8sQ0FBQyxPQUFPLENBQUMsOEJBQWtCLENBQUMsQ0FBQztTQUM1QztRQUVELE9BQU8sT0FBTyxDQUFDLE9BQU8sRUFBRTthQUNyQixJQUFJLENBQUM7WUFDSixPQUFBLElBQUEsaUNBQVksR0FBRSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLHdCQUFZLEVBQUUsS0FBSSxDQUFDLE1BQU0sQ0FBQztRQUE5RCxDQUE4RCxDQUMvRDthQUNBLElBQUksQ0FBQyxVQUFDLElBQUksSUFBSyxPQUFBLE9BQU8sQ0FBQyxPQUFPLENBQUMsSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUMsRUFBckMsQ0FBcUMsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFDSCxhQUFDO0FBQUQsQ0FBQyxBQXRERCxJQXNEQztBQXREWSx3QkFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEhhc2gsIFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IGlzRW1wdHlEYXRhLCBjb252ZXJ0VG9CdWZmZXIgfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuaW1wb3J0IHtcbiAgRU1QVFlfREFUQV9TSEFfMjU2LFxuICBTSEFfMjU2X0hBU0gsXG4gIFNIQV8yNTZfSE1BQ19BTEdPLFxufSBmcm9tIFwiLi9jb25zdGFudHNcIjtcbmltcG9ydCB7IGxvY2F0ZVdpbmRvdyB9IGZyb20gXCJAYXdzLXNkay91dGlsLWxvY2F0ZS13aW5kb3dcIjtcblxuZXhwb3J0IGNsYXNzIFNoYTI1NiBpbXBsZW1lbnRzIEhhc2gge1xuICBwcml2YXRlIHJlYWRvbmx5IGtleTogUHJvbWlzZTxDcnlwdG9LZXk+IHwgdW5kZWZpbmVkO1xuICBwcml2YXRlIHRvSGFzaDogVWludDhBcnJheSA9IG5ldyBVaW50OEFycmF5KDApO1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc2VjcmV0ICE9PSB2b2lkIDApIHtcbiAgICAgIHRoaXMua2V5ID0gbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICBsb2NhdGVXaW5kb3coKVxuICAgICAgICAgIC5jcnlwdG8uc3VidGxlLmltcG9ydEtleShcbiAgICAgICAgICAgIFwicmF3XCIsXG4gICAgICAgICAgICBjb252ZXJ0VG9CdWZmZXIoc2VjcmV0KSxcbiAgICAgICAgICAgIFNIQV8yNTZfSE1BQ19BTEdPLFxuICAgICAgICAgICAgZmFsc2UsXG4gICAgICAgICAgICBbXCJzaWduXCJdXG4gICAgICAgICAgKVxuICAgICAgICAgIC50aGVuKHJlc29sdmUsIHJlamVjdCk7XG4gICAgICB9KTtcbiAgICAgIHRoaXMua2V5LmNhdGNoKCgpID0+IHt9KTtcbiAgICB9XG4gIH1cblxuICB1cGRhdGUoZGF0YTogU291cmNlRGF0YSk6IHZvaWQge1xuICAgIGlmIChpc0VtcHR5RGF0YShkYXRhKSkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGNvbnN0IHVwZGF0ZSA9IGNvbnZlcnRUb0J1ZmZlcihkYXRhKTtcbiAgICBjb25zdCB0eXBlZEFycmF5ID0gbmV3IFVpbnQ4QXJyYXkoXG4gICAgICB0aGlzLnRvSGFzaC5ieXRlTGVuZ3RoICsgdXBkYXRlLmJ5dGVMZW5ndGhcbiAgICApO1xuICAgIHR5cGVkQXJyYXkuc2V0KHRoaXMudG9IYXNoLCAwKTtcbiAgICB0eXBlZEFycmF5LnNldCh1cGRhdGUsIHRoaXMudG9IYXNoLmJ5dGVMZW5ndGgpO1xuICAgIHRoaXMudG9IYXNoID0gdHlwZWRBcnJheTtcbiAgfVxuXG4gIGRpZ2VzdCgpOiBQcm9taXNlPFVpbnQ4QXJyYXk+IHtcbiAgICBpZiAodGhpcy5rZXkpIHtcbiAgICAgIHJldHVybiB0aGlzLmtleS50aGVuKChrZXkpID0+XG4gICAgICAgIGxvY2F0ZVdpbmRvdygpXG4gICAgICAgICAgLmNyeXB0by5zdWJ0bGUuc2lnbihTSEFfMjU2X0hNQUNfQUxHTywga2V5LCB0aGlzLnRvSGFzaClcbiAgICAgICAgICAudGhlbigoZGF0YSkgPT4gbmV3IFVpbnQ4QXJyYXkoZGF0YSkpXG4gICAgICApO1xuICAgIH1cblxuICAgIGlmIChpc0VtcHR5RGF0YSh0aGlzLnRvSGFzaCkpIHtcbiAgICAgIHJldHVybiBQcm9taXNlLnJlc29sdmUoRU1QVFlfREFUQV9TSEFfMjU2KTtcbiAgICB9XG5cbiAgICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKClcbiAgICAgIC50aGVuKCgpID0+XG4gICAgICAgIGxvY2F0ZVdpbmRvdygpLmNyeXB0by5zdWJ0bGUuZGlnZXN0KFNIQV8yNTZfSEFTSCwgdGhpcy50b0hhc2gpXG4gICAgICApXG4gICAgICAudGhlbigoZGF0YSkgPT4gUHJvbWlzZS5yZXNvbHZlKG5ldyBVaW50OEFycmF5KGRhdGEpKSk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js ***! \**********************************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/RawSha256.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/RawSha256.js ***! \****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.RawSha256 = void 0;\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/constants.js\");\n/**\n * @internal\n */\nvar RawSha256 = /** @class */ (function () {\n function RawSha256() {\n this.state = Int32Array.from(constants_1.INIT);\n this.temp = new Int32Array(64);\n this.buffer = new Uint8Array(64);\n this.bufferLength = 0;\n this.bytesHashed = 0;\n /**\n * @internal\n */\n this.finished = false;\n }\n RawSha256.prototype.update = function (data) {\n if (this.finished) {\n throw new Error(\"Attempted to update an already finished hash.\");\n }\n var position = 0;\n var byteLength = data.byteLength;\n this.bytesHashed += byteLength;\n if (this.bytesHashed * 8 > constants_1.MAX_HASHABLE_LENGTH) {\n throw new Error(\"Cannot hash more than 2^53 - 1 bits\");\n }\n while (byteLength > 0) {\n this.buffer[this.bufferLength++] = data[position++];\n byteLength--;\n if (this.bufferLength === constants_1.BLOCK_SIZE) {\n this.hashBuffer();\n this.bufferLength = 0;\n }\n }\n };\n RawSha256.prototype.digest = function () {\n if (!this.finished) {\n var bitsHashed = this.bytesHashed * 8;\n var bufferView = new DataView(this.buffer.buffer, this.buffer.byteOffset, this.buffer.byteLength);\n var undecoratedLength = this.bufferLength;\n bufferView.setUint8(this.bufferLength++, 0x80);\n // Ensure the final block has enough room for the hashed length\n if (undecoratedLength % constants_1.BLOCK_SIZE >= constants_1.BLOCK_SIZE - 8) {\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE; i++) {\n bufferView.setUint8(i, 0);\n }\n this.hashBuffer();\n this.bufferLength = 0;\n }\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE - 8; i++) {\n bufferView.setUint8(i, 0);\n }\n bufferView.setUint32(constants_1.BLOCK_SIZE - 8, Math.floor(bitsHashed / 0x100000000), true);\n bufferView.setUint32(constants_1.BLOCK_SIZE - 4, bitsHashed);\n this.hashBuffer();\n this.finished = true;\n }\n // The value in state is little-endian rather than big-endian, so flip\n // each word into a new Uint8Array\n var out = new Uint8Array(constants_1.DIGEST_LENGTH);\n for (var i = 0; i < 8; i++) {\n out[i * 4] = (this.state[i] >>> 24) & 0xff;\n out[i * 4 + 1] = (this.state[i] >>> 16) & 0xff;\n out[i * 4 + 2] = (this.state[i] >>> 8) & 0xff;\n out[i * 4 + 3] = (this.state[i] >>> 0) & 0xff;\n }\n return out;\n };\n RawSha256.prototype.hashBuffer = function () {\n var _a = this, buffer = _a.buffer, state = _a.state;\n var state0 = state[0], state1 = state[1], state2 = state[2], state3 = state[3], state4 = state[4], state5 = state[5], state6 = state[6], state7 = state[7];\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n if (i < 16) {\n this.temp[i] =\n ((buffer[i * 4] & 0xff) << 24) |\n ((buffer[i * 4 + 1] & 0xff) << 16) |\n ((buffer[i * 4 + 2] & 0xff) << 8) |\n (buffer[i * 4 + 3] & 0xff);\n }\n else {\n var u = this.temp[i - 2];\n var t1_1 = ((u >>> 17) | (u << 15)) ^ ((u >>> 19) | (u << 13)) ^ (u >>> 10);\n u = this.temp[i - 15];\n var t2_1 = ((u >>> 7) | (u << 25)) ^ ((u >>> 18) | (u << 14)) ^ (u >>> 3);\n this.temp[i] =\n ((t1_1 + this.temp[i - 7]) | 0) + ((t2_1 + this.temp[i - 16]) | 0);\n }\n var t1 = ((((((state4 >>> 6) | (state4 << 26)) ^\n ((state4 >>> 11) | (state4 << 21)) ^\n ((state4 >>> 25) | (state4 << 7))) +\n ((state4 & state5) ^ (~state4 & state6))) |\n 0) +\n ((state7 + ((constants_1.KEY[i] + this.temp[i]) | 0)) | 0)) |\n 0;\n var t2 = ((((state0 >>> 2) | (state0 << 30)) ^\n ((state0 >>> 13) | (state0 << 19)) ^\n ((state0 >>> 22) | (state0 << 10))) +\n ((state0 & state1) ^ (state0 & state2) ^ (state1 & state2))) |\n 0;\n state7 = state6;\n state6 = state5;\n state5 = state4;\n state4 = (state3 + t1) | 0;\n state3 = state2;\n state2 = state1;\n state1 = state0;\n state0 = (t1 + t2) | 0;\n }\n state[0] += state0;\n state[1] += state1;\n state[2] += state2;\n state[3] += state3;\n state[4] += state4;\n state[5] += state5;\n state[6] += state6;\n state[7] += state7;\n };\n return RawSha256;\n}());\nexports.RawSha256 = RawSha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUmF3U2hhMjU2LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL1Jhd1NoYTI1Ni50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FNcUI7QUFFckI7O0dBRUc7QUFDSDtJQUFBO1FBQ1UsVUFBSyxHQUFlLFVBQVUsQ0FBQyxJQUFJLENBQUMsZ0JBQUksQ0FBQyxDQUFDO1FBQzFDLFNBQUksR0FBZSxJQUFJLFVBQVUsQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUN0QyxXQUFNLEdBQWUsSUFBSSxVQUFVLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDeEMsaUJBQVksR0FBVyxDQUFDLENBQUM7UUFDekIsZ0JBQVcsR0FBVyxDQUFDLENBQUM7UUFFaEM7O1dBRUc7UUFDSCxhQUFRLEdBQVksS0FBSyxDQUFDO0lBOEk1QixDQUFDO0lBNUlDLDBCQUFNLEdBQU4sVUFBTyxJQUFnQjtRQUNyQixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDakIsTUFBTSxJQUFJLEtBQUssQ0FBQywrQ0FBK0MsQ0FBQyxDQUFDO1NBQ2xFO1FBRUQsSUFBSSxRQUFRLEdBQUcsQ0FBQyxDQUFDO1FBQ1gsSUFBQSxVQUFVLEdBQUssSUFBSSxXQUFULENBQVU7UUFDMUIsSUFBSSxDQUFDLFdBQVcsSUFBSSxVQUFVLENBQUM7UUFFL0IsSUFBSSxJQUFJLENBQUMsV0FBVyxHQUFHLENBQUMsR0FBRywrQkFBbUIsRUFBRTtZQUM5QyxNQUFNLElBQUksS0FBSyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7U0FDeEQ7UUFFRCxPQUFPLFVBQVUsR0FBRyxDQUFDLEVBQUU7WUFDckIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQztZQUNwRCxVQUFVLEVBQUUsQ0FBQztZQUViLElBQUksSUFBSSxDQUFDLFlBQVksS0FBSyxzQkFBVSxFQUFFO2dCQUNwQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7Z0JBQ2xCLElBQUksQ0FBQyxZQUFZLEdBQUcsQ0FBQyxDQUFDO2FBQ3ZCO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsMEJBQU0sR0FBTjtRQUNFLElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2xCLElBQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxDQUFDO1lBQ3hDLElBQU0sVUFBVSxHQUFHLElBQUksUUFBUSxDQUM3QixJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sRUFDbEIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLEVBQ3RCLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUN2QixDQUFDO1lBRUYsSUFBTSxpQkFBaUIsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDO1lBQzVDLFVBQVUsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO1lBRS9DLCtEQUErRDtZQUMvRCxJQUFJLGlCQUFpQixHQUFHLHNCQUFVLElBQUksc0JBQVUsR0FBRyxDQUFDLEVBQUU7Z0JBQ3BELEtBQUssSUFBSSxDQUFDLEdBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDLEdBQUcsc0JBQVUsRUFBRSxDQUFDLEVBQUUsRUFBRTtvQkFDbkQsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7aUJBQzNCO2dCQUNELElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztnQkFDbEIsSUFBSSxDQUFDLFlBQVksR0FBRyxDQUFDLENBQUM7YUFDdkI7WUFFRCxLQUFLLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQyxHQUFHLHNCQUFVLEdBQUcsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUN2RCxVQUFVLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQzthQUMzQjtZQUNELFVBQVUsQ0FBQyxTQUFTLENBQ2xCLHNCQUFVLEdBQUcsQ0FBQyxFQUNkLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxHQUFHLFdBQVcsQ0FBQyxFQUNwQyxJQUFJLENBQ0wsQ0FBQztZQUNGLFVBQVUsQ0FBQyxTQUFTLENBQUMsc0JBQVUsR0FBRyxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7WUFFakQsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBRWxCLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDO1NBQ3RCO1FBRUQsc0VBQXNFO1FBQ3RFLGtDQUFrQztRQUNsQyxJQUFNLEdBQUcsR0FBRyxJQUFJLFVBQVUsQ0FBQyx5QkFBYSxDQUFDLENBQUM7UUFDMUMsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRTtZQUMxQixHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUM7WUFDM0MsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxHQUFHLElBQUksQ0FBQztZQUMvQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDO1lBQzlDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUM7U0FDL0M7UUFFRCxPQUFPLEdBQUcsQ0FBQztJQUNiLENBQUM7SUFFTyw4QkFBVSxHQUFsQjtRQUNRLElBQUEsS0FBb0IsSUFBSSxFQUF0QixNQUFNLFlBQUEsRUFBRSxLQUFLLFdBQVMsQ0FBQztRQUUvQixJQUFJLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ25CLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFFcEIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLHNCQUFVLEVBQUUsQ0FBQyxFQUFFLEVBQUU7WUFDbkMsSUFBSSxDQUFDLEdBQUcsRUFBRSxFQUFFO2dCQUNWLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDO29CQUNWLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQzt3QkFDOUIsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQzt3QkFDbEMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQzt3QkFDakMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQzthQUM5QjtpQkFBTTtnQkFDTCxJQUFJLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztnQkFDekIsSUFBTSxJQUFFLEdBQ04sQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztnQkFFbkUsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDO2dCQUN0QixJQUFNLElBQUUsR0FDTixDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO2dCQUVqRSxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztvQkFDVixDQUFDLENBQUMsSUFBRSxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUUsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO2FBQ2xFO1lBRUQsSUFBTSxFQUFFLEdBQ04sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUNuQyxDQUFDLENBQUMsTUFBTSxLQUFLLEVBQUUsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUNsQyxDQUFDLENBQUMsTUFBTSxLQUFLLEVBQUUsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ2xDLENBQUMsQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUMsQ0FBQyxDQUFDO2dCQUN6QyxDQUFDLENBQUM7Z0JBQ0YsQ0FBQyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsZUFBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO2dCQUNqRCxDQUFDLENBQUM7WUFFSixJQUFNLEVBQUUsR0FDTixDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQztnQkFDakMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQztnQkFDbEMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDO2dCQUNuQyxDQUFDLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxDQUFDLENBQUM7Z0JBQzlELENBQUMsQ0FBQztZQUVKLE1BQU0sR0FBRyxNQUFNLENBQUM7WUFDaEIsTUFBTSxHQUFHLE1BQU0sQ0FBQztZQUNoQixNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQ2hCLE1BQU0sR0FBRyxDQUFDLE1BQU0sR0FBRyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDM0IsTUFBTSxHQUFHLE1BQU0sQ0FBQztZQUNoQixNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQ2hCLE1BQU0sR0FBRyxNQUFNLENBQUM7WUFDaEIsTUFBTSxHQUFHLENBQUMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQztTQUN4QjtRQUVELEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztRQUNuQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksTUFBTSxDQUFDO1FBQ25CLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztRQUNuQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksTUFBTSxDQUFDO1FBQ25CLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBQ0gsZ0JBQUM7QUFBRCxDQUFDLEFBeEpELElBd0pDO0FBeEpZLDhCQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQkxPQ0tfU0laRSxcbiAgRElHRVNUX0xFTkdUSCxcbiAgSU5JVCxcbiAgS0VZLFxuICBNQVhfSEFTSEFCTEVfTEVOR1RIXG59IGZyb20gXCIuL2NvbnN0YW50c1wiO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY2xhc3MgUmF3U2hhMjU2IHtcbiAgcHJpdmF0ZSBzdGF0ZTogSW50MzJBcnJheSA9IEludDMyQXJyYXkuZnJvbShJTklUKTtcbiAgcHJpdmF0ZSB0ZW1wOiBJbnQzMkFycmF5ID0gbmV3IEludDMyQXJyYXkoNjQpO1xuICBwcml2YXRlIGJ1ZmZlcjogVWludDhBcnJheSA9IG5ldyBVaW50OEFycmF5KDY0KTtcbiAgcHJpdmF0ZSBidWZmZXJMZW5ndGg6IG51bWJlciA9IDA7XG4gIHByaXZhdGUgYnl0ZXNIYXNoZWQ6IG51bWJlciA9IDA7XG5cbiAgLyoqXG4gICAqIEBpbnRlcm5hbFxuICAgKi9cbiAgZmluaXNoZWQ6IGJvb2xlYW4gPSBmYWxzZTtcblxuICB1cGRhdGUoZGF0YTogVWludDhBcnJheSk6IHZvaWQge1xuICAgIGlmICh0aGlzLmZpbmlzaGVkKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXCJBdHRlbXB0ZWQgdG8gdXBkYXRlIGFuIGFscmVhZHkgZmluaXNoZWQgaGFzaC5cIik7XG4gICAgfVxuXG4gICAgbGV0IHBvc2l0aW9uID0gMDtcbiAgICBsZXQgeyBieXRlTGVuZ3RoIH0gPSBkYXRhO1xuICAgIHRoaXMuYnl0ZXNIYXNoZWQgKz0gYnl0ZUxlbmd0aDtcblxuICAgIGlmICh0aGlzLmJ5dGVzSGFzaGVkICogOCA+IE1BWF9IQVNIQUJMRV9MRU5HVEgpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIkNhbm5vdCBoYXNoIG1vcmUgdGhhbiAyXjUzIC0gMSBiaXRzXCIpO1xuICAgIH1cblxuICAgIHdoaWxlIChieXRlTGVuZ3RoID4gMCkge1xuICAgICAgdGhpcy5idWZmZXJbdGhpcy5idWZmZXJMZW5ndGgrK10gPSBkYXRhW3Bvc2l0aW9uKytdO1xuICAgICAgYnl0ZUxlbmd0aC0tO1xuXG4gICAgICBpZiAodGhpcy5idWZmZXJMZW5ndGggPT09IEJMT0NLX1NJWkUpIHtcbiAgICAgICAgdGhpcy5oYXNoQnVmZmVyKCk7XG4gICAgICAgIHRoaXMuYnVmZmVyTGVuZ3RoID0gMDtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICBkaWdlc3QoKTogVWludDhBcnJheSB7XG4gICAgaWYgKCF0aGlzLmZpbmlzaGVkKSB7XG4gICAgICBjb25zdCBiaXRzSGFzaGVkID0gdGhpcy5ieXRlc0hhc2hlZCAqIDg7XG4gICAgICBjb25zdCBidWZmZXJWaWV3ID0gbmV3IERhdGFWaWV3KFxuICAgICAgICB0aGlzLmJ1ZmZlci5idWZmZXIsXG4gICAgICAgIHRoaXMuYnVmZmVyLmJ5dGVPZmZzZXQsXG4gICAgICAgIHRoaXMuYnVmZmVyLmJ5dGVMZW5ndGhcbiAgICAgICk7XG5cbiAgICAgIGNvbnN0IHVuZGVjb3JhdGVkTGVuZ3RoID0gdGhpcy5idWZmZXJMZW5ndGg7XG4gICAgICBidWZmZXJWaWV3LnNldFVpbnQ4KHRoaXMuYnVmZmVyTGVuZ3RoKyssIDB4ODApO1xuXG4gICAgICAvLyBFbnN1cmUgdGhlIGZpbmFsIGJsb2NrIGhhcyBlbm91Z2ggcm9vbSBmb3IgdGhlIGhhc2hlZCBsZW5ndGhcbiAgICAgIGlmICh1bmRlY29yYXRlZExlbmd0aCAlIEJMT0NLX1NJWkUgPj0gQkxPQ0tfU0laRSAtIDgpIHtcbiAgICAgICAgZm9yIChsZXQgaSA9IHRoaXMuYnVmZmVyTGVuZ3RoOyBpIDwgQkxPQ0tfU0laRTsgaSsrKSB7XG4gICAgICAgICAgYnVmZmVyVmlldy5zZXRVaW50OChpLCAwKTtcbiAgICAgICAgfVxuICAgICAgICB0aGlzLmhhc2hCdWZmZXIoKTtcbiAgICAgICAgdGhpcy5idWZmZXJMZW5ndGggPSAwO1xuICAgICAgfVxuXG4gICAgICBmb3IgKGxldCBpID0gdGhpcy5idWZmZXJMZW5ndGg7IGkgPCBCTE9DS19TSVpFIC0gODsgaSsrKSB7XG4gICAgICAgIGJ1ZmZlclZpZXcuc2V0VWludDgoaSwgMCk7XG4gICAgICB9XG4gICAgICBidWZmZXJWaWV3LnNldFVpbnQzMihcbiAgICAgICAgQkxPQ0tfU0laRSAtIDgsXG4gICAgICAgIE1hdGguZmxvb3IoYml0c0hhc2hlZCAvIDB4MTAwMDAwMDAwKSxcbiAgICAgICAgdHJ1ZVxuICAgICAgKTtcbiAgICAgIGJ1ZmZlclZpZXcuc2V0VWludDMyKEJMT0NLX1NJWkUgLSA0LCBiaXRzSGFzaGVkKTtcblxuICAgICAgdGhpcy5oYXNoQnVmZmVyKCk7XG5cbiAgICAgIHRoaXMuZmluaXNoZWQgPSB0cnVlO1xuICAgIH1cblxuICAgIC8vIFRoZSB2YWx1ZSBpbiBzdGF0ZSBpcyBsaXR0bGUtZW5kaWFuIHJhdGhlciB0aGFuIGJpZy1lbmRpYW4sIHNvIGZsaXBcbiAgICAvLyBlYWNoIHdvcmQgaW50byBhIG5ldyBVaW50OEFycmF5XG4gICAgY29uc3Qgb3V0ID0gbmV3IFVpbnQ4QXJyYXkoRElHRVNUX0xFTkdUSCk7XG4gICAgZm9yIChsZXQgaSA9IDA7IGkgPCA4OyBpKyspIHtcbiAgICAgIG91dFtpICogNF0gPSAodGhpcy5zdGF0ZVtpXSA+Pj4gMjQpICYgMHhmZjtcbiAgICAgIG91dFtpICogNCArIDFdID0gKHRoaXMuc3RhdGVbaV0gPj4+IDE2KSAmIDB4ZmY7XG4gICAgICBvdXRbaSAqIDQgKyAyXSA9ICh0aGlzLnN0YXRlW2ldID4+PiA4KSAmIDB4ZmY7XG4gICAgICBvdXRbaSAqIDQgKyAzXSA9ICh0aGlzLnN0YXRlW2ldID4+PiAwKSAmIDB4ZmY7XG4gICAgfVxuXG4gICAgcmV0dXJuIG91dDtcbiAgfVxuXG4gIHByaXZhdGUgaGFzaEJ1ZmZlcigpOiB2b2lkIHtcbiAgICBjb25zdCB7IGJ1ZmZlciwgc3RhdGUgfSA9IHRoaXM7XG5cbiAgICBsZXQgc3RhdGUwID0gc3RhdGVbMF0sXG4gICAgICBzdGF0ZTEgPSBzdGF0ZVsxXSxcbiAgICAgIHN0YXRlMiA9IHN0YXRlWzJdLFxuICAgICAgc3RhdGUzID0gc3RhdGVbM10sXG4gICAgICBzdGF0ZTQgPSBzdGF0ZVs0XSxcbiAgICAgIHN0YXRlNSA9IHN0YXRlWzVdLFxuICAgICAgc3RhdGU2ID0gc3RhdGVbNl0sXG4gICAgICBzdGF0ZTcgPSBzdGF0ZVs3XTtcblxuICAgIGZvciAobGV0IGkgPSAwOyBpIDwgQkxPQ0tfU0laRTsgaSsrKSB7XG4gICAgICBpZiAoaSA8IDE2KSB7XG4gICAgICAgIHRoaXMudGVtcFtpXSA9XG4gICAgICAgICAgKChidWZmZXJbaSAqIDRdICYgMHhmZikgPDwgMjQpIHxcbiAgICAgICAgICAoKGJ1ZmZlcltpICogNCArIDFdICYgMHhmZikgPDwgMTYpIHxcbiAgICAgICAgICAoKGJ1ZmZlcltpICogNCArIDJdICYgMHhmZikgPDwgOCkgfFxuICAgICAgICAgIChidWZmZXJbaSAqIDQgKyAzXSAmIDB4ZmYpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgbGV0IHUgPSB0aGlzLnRlbXBbaSAtIDJdO1xuICAgICAgICBjb25zdCB0MSA9XG4gICAgICAgICAgKCh1ID4+PiAxNykgfCAodSA8PCAxNSkpIF4gKCh1ID4+PiAxOSkgfCAodSA8PCAxMykpIF4gKHUgPj4+IDEwKTtcblxuICAgICAgICB1ID0gdGhpcy50ZW1wW2kgLSAxNV07XG4gICAgICAgIGNvbnN0IHQyID1cbiAgICAgICAgICAoKHUgPj4+IDcpIHwgKHUgPDwgMjUpKSBeICgodSA+Pj4gMTgpIHwgKHUgPDwgMTQpKSBeICh1ID4+PiAzKTtcblxuICAgICAgICB0aGlzLnRlbXBbaV0gPVxuICAgICAgICAgICgodDEgKyB0aGlzLnRlbXBbaSAtIDddKSB8IDApICsgKCh0MiArIHRoaXMudGVtcFtpIC0gMTZdKSB8IDApO1xuICAgICAgfVxuXG4gICAgICBjb25zdCB0MSA9XG4gICAgICAgICgoKCgoKHN0YXRlNCA+Pj4gNikgfCAoc3RhdGU0IDw8IDI2KSkgXlxuICAgICAgICAgICgoc3RhdGU0ID4+PiAxMSkgfCAoc3RhdGU0IDw8IDIxKSkgXlxuICAgICAgICAgICgoc3RhdGU0ID4+PiAyNSkgfCAoc3RhdGU0IDw8IDcpKSkgK1xuICAgICAgICAgICgoc3RhdGU0ICYgc3RhdGU1KSBeICh+c3RhdGU0ICYgc3RhdGU2KSkpIHxcbiAgICAgICAgICAwKSArXG4gICAgICAgICAgKChzdGF0ZTcgKyAoKEtFWVtpXSArIHRoaXMudGVtcFtpXSkgfCAwKSkgfCAwKSkgfFxuICAgICAgICAwO1xuXG4gICAgICBjb25zdCB0MiA9XG4gICAgICAgICgoKChzdGF0ZTAgPj4+IDIpIHwgKHN0YXRlMCA8PCAzMCkpIF5cbiAgICAgICAgICAoKHN0YXRlMCA+Pj4gMTMpIHwgKHN0YXRlMCA8PCAxOSkpIF5cbiAgICAgICAgICAoKHN0YXRlMCA+Pj4gMjIpIHwgKHN0YXRlMCA8PCAxMCkpKSArXG4gICAgICAgICAgKChzdGF0ZTAgJiBzdGF0ZTEpIF4gKHN0YXRlMCAmIHN0YXRlMikgXiAoc3RhdGUxICYgc3RhdGUyKSkpIHxcbiAgICAgICAgMDtcblxuICAgICAgc3RhdGU3ID0gc3RhdGU2O1xuICAgICAgc3RhdGU2ID0gc3RhdGU1O1xuICAgICAgc3RhdGU1ID0gc3RhdGU0O1xuICAgICAgc3RhdGU0ID0gKHN0YXRlMyArIHQxKSB8IDA7XG4gICAgICBzdGF0ZTMgPSBzdGF0ZTI7XG4gICAgICBzdGF0ZTIgPSBzdGF0ZTE7XG4gICAgICBzdGF0ZTEgPSBzdGF0ZTA7XG4gICAgICBzdGF0ZTAgPSAodDEgKyB0MikgfCAwO1xuICAgIH1cblxuICAgIHN0YXRlWzBdICs9IHN0YXRlMDtcbiAgICBzdGF0ZVsxXSArPSBzdGF0ZTE7XG4gICAgc3RhdGVbMl0gKz0gc3RhdGUyO1xuICAgIHN0YXRlWzNdICs9IHN0YXRlMztcbiAgICBzdGF0ZVs0XSArPSBzdGF0ZTQ7XG4gICAgc3RhdGVbNV0gKz0gc3RhdGU1O1xuICAgIHN0YXRlWzZdICs9IHN0YXRlNjtcbiAgICBzdGF0ZVs3XSArPSBzdGF0ZTc7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/RawSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/constants.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/constants.js ***! \****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.MAX_HASHABLE_LENGTH = exports.INIT = exports.KEY = exports.DIGEST_LENGTH = exports.BLOCK_SIZE = void 0;\n/**\n * @internal\n */\nexports.BLOCK_SIZE = 64;\n/**\n * @internal\n */\nexports.DIGEST_LENGTH = 32;\n/**\n * @internal\n */\nexports.KEY = new Uint32Array([\n 0x428a2f98,\n 0x71374491,\n 0xb5c0fbcf,\n 0xe9b5dba5,\n 0x3956c25b,\n 0x59f111f1,\n 0x923f82a4,\n 0xab1c5ed5,\n 0xd807aa98,\n 0x12835b01,\n 0x243185be,\n 0x550c7dc3,\n 0x72be5d74,\n 0x80deb1fe,\n 0x9bdc06a7,\n 0xc19bf174,\n 0xe49b69c1,\n 0xefbe4786,\n 0x0fc19dc6,\n 0x240ca1cc,\n 0x2de92c6f,\n 0x4a7484aa,\n 0x5cb0a9dc,\n 0x76f988da,\n 0x983e5152,\n 0xa831c66d,\n 0xb00327c8,\n 0xbf597fc7,\n 0xc6e00bf3,\n 0xd5a79147,\n 0x06ca6351,\n 0x14292967,\n 0x27b70a85,\n 0x2e1b2138,\n 0x4d2c6dfc,\n 0x53380d13,\n 0x650a7354,\n 0x766a0abb,\n 0x81c2c92e,\n 0x92722c85,\n 0xa2bfe8a1,\n 0xa81a664b,\n 0xc24b8b70,\n 0xc76c51a3,\n 0xd192e819,\n 0xd6990624,\n 0xf40e3585,\n 0x106aa070,\n 0x19a4c116,\n 0x1e376c08,\n 0x2748774c,\n 0x34b0bcb5,\n 0x391c0cb3,\n 0x4ed8aa4a,\n 0x5b9cca4f,\n 0x682e6ff3,\n 0x748f82ee,\n 0x78a5636f,\n 0x84c87814,\n 0x8cc70208,\n 0x90befffa,\n 0xa4506ceb,\n 0xbef9a3f7,\n 0xc67178f2\n]);\n/**\n * @internal\n */\nexports.INIT = [\n 0x6a09e667,\n 0xbb67ae85,\n 0x3c6ef372,\n 0xa54ff53a,\n 0x510e527f,\n 0x9b05688c,\n 0x1f83d9ab,\n 0x5be0cd19\n];\n/**\n * @internal\n */\nexports.MAX_HASHABLE_LENGTH = Math.pow(2, 53) - 1;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQTs7R0FFRztBQUNVLFFBQUEsVUFBVSxHQUFXLEVBQUUsQ0FBQztBQUVyQzs7R0FFRztBQUNVLFFBQUEsYUFBYSxHQUFXLEVBQUUsQ0FBQztBQUV4Qzs7R0FFRztBQUNVLFFBQUEsR0FBRyxHQUFHLElBQUksV0FBVyxDQUFDO0lBQ2pDLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7Q0FDWCxDQUFDLENBQUM7QUFFSDs7R0FFRztBQUNVLFFBQUEsSUFBSSxHQUFHO0lBQ2xCLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0NBQ1gsQ0FBQztBQUVGOztHQUVHO0FBQ1UsUUFBQSxtQkFBbUIsR0FBRyxTQUFBLENBQUMsRUFBSSxFQUFFLENBQUEsR0FBRyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgQkxPQ0tfU0laRTogbnVtYmVyID0gNjQ7XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCBESUdFU1RfTEVOR1RIOiBudW1iZXIgPSAzMjtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IEtFWSA9IG5ldyBVaW50MzJBcnJheShbXG4gIDB4NDI4YTJmOTgsXG4gIDB4NzEzNzQ0OTEsXG4gIDB4YjVjMGZiY2YsXG4gIDB4ZTliNWRiYTUsXG4gIDB4Mzk1NmMyNWIsXG4gIDB4NTlmMTExZjEsXG4gIDB4OTIzZjgyYTQsXG4gIDB4YWIxYzVlZDUsXG4gIDB4ZDgwN2FhOTgsXG4gIDB4MTI4MzViMDEsXG4gIDB4MjQzMTg1YmUsXG4gIDB4NTUwYzdkYzMsXG4gIDB4NzJiZTVkNzQsXG4gIDB4ODBkZWIxZmUsXG4gIDB4OWJkYzA2YTcsXG4gIDB4YzE5YmYxNzQsXG4gIDB4ZTQ5YjY5YzEsXG4gIDB4ZWZiZTQ3ODYsXG4gIDB4MGZjMTlkYzYsXG4gIDB4MjQwY2ExY2MsXG4gIDB4MmRlOTJjNmYsXG4gIDB4NGE3NDg0YWEsXG4gIDB4NWNiMGE5ZGMsXG4gIDB4NzZmOTg4ZGEsXG4gIDB4OTgzZTUxNTIsXG4gIDB4YTgzMWM2NmQsXG4gIDB4YjAwMzI3YzgsXG4gIDB4YmY1OTdmYzcsXG4gIDB4YzZlMDBiZjMsXG4gIDB4ZDVhNzkxNDcsXG4gIDB4MDZjYTYzNTEsXG4gIDB4MTQyOTI5NjcsXG4gIDB4MjdiNzBhODUsXG4gIDB4MmUxYjIxMzgsXG4gIDB4NGQyYzZkZmMsXG4gIDB4NTMzODBkMTMsXG4gIDB4NjUwYTczNTQsXG4gIDB4NzY2YTBhYmIsXG4gIDB4ODFjMmM5MmUsXG4gIDB4OTI3MjJjODUsXG4gIDB4YTJiZmU4YTEsXG4gIDB4YTgxYTY2NGIsXG4gIDB4YzI0YjhiNzAsXG4gIDB4Yzc2YzUxYTMsXG4gIDB4ZDE5MmU4MTksXG4gIDB4ZDY5OTA2MjQsXG4gIDB4ZjQwZTM1ODUsXG4gIDB4MTA2YWEwNzAsXG4gIDB4MTlhNGMxMTYsXG4gIDB4MWUzNzZjMDgsXG4gIDB4Mjc0ODc3NGMsXG4gIDB4MzRiMGJjYjUsXG4gIDB4MzkxYzBjYjMsXG4gIDB4NGVkOGFhNGEsXG4gIDB4NWI5Y2NhNGYsXG4gIDB4NjgyZTZmZjMsXG4gIDB4NzQ4ZjgyZWUsXG4gIDB4NzhhNTYzNmYsXG4gIDB4ODRjODc4MTQsXG4gIDB4OGNjNzAyMDgsXG4gIDB4OTBiZWZmZmEsXG4gIDB4YTQ1MDZjZWIsXG4gIDB4YmVmOWEzZjcsXG4gIDB4YzY3MTc4ZjJcbl0pO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgSU5JVCA9IFtcbiAgMHg2YTA5ZTY2NyxcbiAgMHhiYjY3YWU4NSxcbiAgMHgzYzZlZjM3MixcbiAgMHhhNTRmZjUzYSxcbiAgMHg1MTBlNTI3ZixcbiAgMHg5YjA1Njg4YyxcbiAgMHgxZjgzZDlhYixcbiAgMHg1YmUwY2QxOVxuXTtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IE1BWF9IQVNIQUJMRV9MRU5HVEggPSAyICoqIDUzIC0gMTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/index.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/index.js ***! \************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js\");\n(0, tslib_1.__exportStar)(__webpack_require__(/*! ./jsSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/jsSha256.js\"), exports);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsMERBQTJCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vanNTaGEyNTZcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/jsSha256.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/jsSha256.js ***! \***************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/constants.js\");\nvar RawSha256_1 = __webpack_require__(/*! ./RawSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/RawSha256.js\");\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n this.hash = new RawSha256_1.RawSha256();\n if (secret) {\n this.outer = new RawSha256_1.RawSha256();\n var inner = bufferFromSecret(secret);\n var outer = new Uint8Array(constants_1.BLOCK_SIZE);\n outer.set(inner);\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n inner[i] ^= 0x36;\n outer[i] ^= 0x5c;\n }\n this.hash.update(inner);\n this.outer.update(outer);\n // overwrite the copied key in memory\n for (var i = 0; i < inner.byteLength; i++) {\n inner[i] = 0;\n }\n }\n }\n Sha256.prototype.update = function (toHash) {\n if ((0, util_1.isEmptyData)(toHash) || this.error) {\n return;\n }\n try {\n this.hash.update((0, util_1.convertToBuffer)(toHash));\n }\n catch (e) {\n this.error = e;\n }\n };\n /* This synchronous method keeps compatibility\n * with the v2 aws-sdk.\n */\n Sha256.prototype.digestSync = function () {\n if (this.error) {\n throw this.error;\n }\n if (this.outer) {\n if (!this.outer.finished) {\n this.outer.update(this.hash.digest());\n }\n return this.outer.digest();\n }\n return this.hash.digest();\n };\n /* The underlying digest method here is synchronous.\n * To keep the same interface with the other hash functions\n * the default is to expose this as an async method.\n * However, it can sometimes be useful to have a sync method.\n */\n Sha256.prototype.digest = function () {\n return (0, tslib_1.__awaiter)(this, void 0, void 0, function () {\n return (0, tslib_1.__generator)(this, function (_a) {\n return [2 /*return*/, this.digestSync()];\n });\n });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\nfunction bufferFromSecret(secret) {\n var input = (0, util_1.convertToBuffer)(secret);\n if (input.byteLength > constants_1.BLOCK_SIZE) {\n var bufferHash = new RawSha256_1.RawSha256();\n bufferHash.update(input);\n input = bufferHash.digest();\n }\n var buffer = new Uint8Array(constants_1.BLOCK_SIZE);\n buffer.set(input);\n return buffer;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianNTaGEyNTYuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvanNTaGEyNTYudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHlDQUF5QztBQUN6Qyx5Q0FBd0M7QUFFeEMseUNBQWdFO0FBRWhFO0lBS0UsZ0JBQVksTUFBbUI7UUFKZCxTQUFJLEdBQUcsSUFBSSxxQkFBUyxFQUFFLENBQUM7UUFLdEMsSUFBSSxNQUFNLEVBQUU7WUFDVixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUkscUJBQVMsRUFBRSxDQUFDO1lBQzdCLElBQU0sS0FBSyxHQUFHLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBQ3ZDLElBQU0sS0FBSyxHQUFHLElBQUksVUFBVSxDQUFDLHNCQUFVLENBQUMsQ0FBQztZQUN6QyxLQUFLLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBRWpCLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxzQkFBVSxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUNuQyxLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDO2dCQUNqQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDO2FBQ2xCO1lBRUQsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDeEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7WUFFekIscUNBQXFDO1lBQ3JDLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxLQUFLLENBQUMsVUFBVSxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUN6QyxLQUFLLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDO2FBQ2Q7U0FDRjtJQUNILENBQUM7SUFFRCx1QkFBTSxHQUFOLFVBQU8sTUFBa0I7UUFDdkIsSUFBSSxJQUFBLGtCQUFXLEVBQUMsTUFBTSxDQUFDLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNyQyxPQUFPO1NBQ1I7UUFFRCxJQUFJO1lBQ0YsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBQSxzQkFBZSxFQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7U0FDM0M7UUFBQyxPQUFPLENBQUMsRUFBRTtZQUNWLElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO1NBQ2hCO0lBQ0gsQ0FBQztJQUVEOztPQUVHO0lBQ0gsMkJBQVUsR0FBVjtRQUNFLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNkLE1BQU0sSUFBSSxDQUFDLEtBQUssQ0FBQztTQUNsQjtRQUVELElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNkLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsRUFBRTtnQkFDeEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDO2FBQ3ZDO1lBRUQsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxDQUFDO1NBQzVCO1FBRUQsT0FBTyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDO0lBQzVCLENBQUM7SUFFRDs7OztPQUlHO0lBQ0csdUJBQU0sR0FBWjs7O2dCQUNFLHNCQUFPLElBQUksQ0FBQyxVQUFVLEVBQUUsRUFBQzs7O0tBQzFCO0lBQ0gsYUFBQztBQUFELENBQUMsQUFsRUQsSUFrRUM7QUFsRVksd0JBQU07QUFvRW5CLFNBQVMsZ0JBQWdCLENBQUMsTUFBa0I7SUFDMUMsSUFBSSxLQUFLLEdBQUcsSUFBQSxzQkFBZSxFQUFDLE1BQU0sQ0FBQyxDQUFDO0lBRXBDLElBQUksS0FBSyxDQUFDLFVBQVUsR0FBRyxzQkFBVSxFQUFFO1FBQ2pDLElBQU0sVUFBVSxHQUFHLElBQUkscUJBQVMsRUFBRSxDQUFDO1FBQ25DLFVBQVUsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDekIsS0FBSyxHQUFHLFVBQVUsQ0FBQyxNQUFNLEVBQUUsQ0FBQztLQUM3QjtJQUVELElBQU0sTUFBTSxHQUFHLElBQUksVUFBVSxDQUFDLHNCQUFVLENBQUMsQ0FBQztJQUMxQyxNQUFNLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2xCLE9BQU8sTUFBTSxDQUFDO0FBQ2hCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCTE9DS19TSVpFIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5pbXBvcnQgeyBSYXdTaGEyNTYgfSBmcm9tIFwiLi9SYXdTaGEyNTZcIjtcbmltcG9ydCB7IEhhc2gsIFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IGlzRW1wdHlEYXRhLCBjb252ZXJ0VG9CdWZmZXIgfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuXG5leHBvcnQgY2xhc3MgU2hhMjU2IGltcGxlbWVudHMgSGFzaCB7XG4gIHByaXZhdGUgcmVhZG9ubHkgaGFzaCA9IG5ldyBSYXdTaGEyNTYoKTtcbiAgcHJpdmF0ZSByZWFkb25seSBvdXRlcj86IFJhd1NoYTI1NjtcbiAgcHJpdmF0ZSBlcnJvcjogYW55O1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc2VjcmV0KSB7XG4gICAgICB0aGlzLm91dGVyID0gbmV3IFJhd1NoYTI1NigpO1xuICAgICAgY29uc3QgaW5uZXIgPSBidWZmZXJGcm9tU2VjcmV0KHNlY3JldCk7XG4gICAgICBjb25zdCBvdXRlciA9IG5ldyBVaW50OEFycmF5KEJMT0NLX1NJWkUpO1xuICAgICAgb3V0ZXIuc2V0KGlubmVyKTtcblxuICAgICAgZm9yIChsZXQgaSA9IDA7IGkgPCBCTE9DS19TSVpFOyBpKyspIHtcbiAgICAgICAgaW5uZXJbaV0gXj0gMHgzNjtcbiAgICAgICAgb3V0ZXJbaV0gXj0gMHg1YztcbiAgICAgIH1cblxuICAgICAgdGhpcy5oYXNoLnVwZGF0ZShpbm5lcik7XG4gICAgICB0aGlzLm91dGVyLnVwZGF0ZShvdXRlcik7XG5cbiAgICAgIC8vIG92ZXJ3cml0ZSB0aGUgY29waWVkIGtleSBpbiBtZW1vcnlcbiAgICAgIGZvciAobGV0IGkgPSAwOyBpIDwgaW5uZXIuYnl0ZUxlbmd0aDsgaSsrKSB7XG4gICAgICAgIGlubmVyW2ldID0gMDtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICB1cGRhdGUodG9IYXNoOiBTb3VyY2VEYXRhKTogdm9pZCB7XG4gICAgaWYgKGlzRW1wdHlEYXRhKHRvSGFzaCkgfHwgdGhpcy5lcnJvcikge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHRyeSB7XG4gICAgICB0aGlzLmhhc2gudXBkYXRlKGNvbnZlcnRUb0J1ZmZlcih0b0hhc2gpKTtcbiAgICB9IGNhdGNoIChlKSB7XG4gICAgICB0aGlzLmVycm9yID0gZTtcbiAgICB9XG4gIH1cblxuICAvKiBUaGlzIHN5bmNocm9ub3VzIG1ldGhvZCBrZWVwcyBjb21wYXRpYmlsaXR5XG4gICAqIHdpdGggdGhlIHYyIGF3cy1zZGsuXG4gICAqL1xuICBkaWdlc3RTeW5jKCk6IFVpbnQ4QXJyYXkge1xuICAgIGlmICh0aGlzLmVycm9yKSB7XG4gICAgICB0aHJvdyB0aGlzLmVycm9yO1xuICAgIH1cblxuICAgIGlmICh0aGlzLm91dGVyKSB7XG4gICAgICBpZiAoIXRoaXMub3V0ZXIuZmluaXNoZWQpIHtcbiAgICAgICAgdGhpcy5vdXRlci51cGRhdGUodGhpcy5oYXNoLmRpZ2VzdCgpKTtcbiAgICAgIH1cblxuICAgICAgcmV0dXJuIHRoaXMub3V0ZXIuZGlnZXN0KCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXMuaGFzaC5kaWdlc3QoKTtcbiAgfVxuXG4gIC8qIFRoZSB1bmRlcmx5aW5nIGRpZ2VzdCBtZXRob2QgaGVyZSBpcyBzeW5jaHJvbm91cy5cbiAgICogVG8ga2VlcCB0aGUgc2FtZSBpbnRlcmZhY2Ugd2l0aCB0aGUgb3RoZXIgaGFzaCBmdW5jdGlvbnNcbiAgICogdGhlIGRlZmF1bHQgaXMgdG8gZXhwb3NlIHRoaXMgYXMgYW4gYXN5bmMgbWV0aG9kLlxuICAgKiBIb3dldmVyLCBpdCBjYW4gc29tZXRpbWVzIGJlIHVzZWZ1bCB0byBoYXZlIGEgc3luYyBtZXRob2QuXG4gICAqL1xuICBhc3luYyBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMuZGlnZXN0U3luYygpO1xuICB9XG59XG5cbmZ1bmN0aW9uIGJ1ZmZlckZyb21TZWNyZXQoc2VjcmV0OiBTb3VyY2VEYXRhKTogVWludDhBcnJheSB7XG4gIGxldCBpbnB1dCA9IGNvbnZlcnRUb0J1ZmZlcihzZWNyZXQpO1xuXG4gIGlmIChpbnB1dC5ieXRlTGVuZ3RoID4gQkxPQ0tfU0laRSkge1xuICAgIGNvbnN0IGJ1ZmZlckhhc2ggPSBuZXcgUmF3U2hhMjU2KCk7XG4gICAgYnVmZmVySGFzaC51cGRhdGUoaW5wdXQpO1xuICAgIGlucHV0ID0gYnVmZmVySGFzaC5kaWdlc3QoKTtcbiAgfVxuXG4gIGNvbnN0IGJ1ZmZlciA9IG5ldyBVaW50OEFycmF5KEJMT0NLX1NJWkUpO1xuICBidWZmZXIuc2V0KGlucHV0KTtcbiAgcmV0dXJuIGJ1ZmZlcjtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/build/jsSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js ***! \*****************************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/build/index.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/build/index.js ***! \**********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js\");\ntslib_1.__exportStar(__webpack_require__(/*! ./supportsWebCrypto */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js\"), exports);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsOERBQW9DIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vc3VwcG9ydHNXZWJDcnlwdG9cIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js ***! \**********************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.supportsZeroByteGCM = exports.supportsSubtleCrypto = exports.supportsSecureRandom = exports.supportsWebCrypto = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js\");\nvar subtleCryptoMethods = [\n \"decrypt\",\n \"digest\",\n \"encrypt\",\n \"exportKey\",\n \"generateKey\",\n \"importKey\",\n \"sign\",\n \"verify\"\n];\nfunction supportsWebCrypto(window) {\n if (supportsSecureRandom(window) &&\n typeof window.crypto.subtle === \"object\") {\n var subtle = window.crypto.subtle;\n return supportsSubtleCrypto(subtle);\n }\n return false;\n}\nexports.supportsWebCrypto = supportsWebCrypto;\nfunction supportsSecureRandom(window) {\n if (typeof window === \"object\" && typeof window.crypto === \"object\") {\n var getRandomValues = window.crypto.getRandomValues;\n return typeof getRandomValues === \"function\";\n }\n return false;\n}\nexports.supportsSecureRandom = supportsSecureRandom;\nfunction supportsSubtleCrypto(subtle) {\n return (subtle &&\n subtleCryptoMethods.every(function (methodName) { return typeof subtle[methodName] === \"function\"; }));\n}\nexports.supportsSubtleCrypto = supportsSubtleCrypto;\nfunction supportsZeroByteGCM(subtle) {\n return tslib_1.__awaiter(this, void 0, void 0, function () {\n var key, zeroByteAuthTag, _a;\n return tslib_1.__generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!supportsSubtleCrypto(subtle))\n return [2 /*return*/, false];\n _b.label = 1;\n case 1:\n _b.trys.push([1, 4, , 5]);\n return [4 /*yield*/, subtle.generateKey({ name: \"AES-GCM\", length: 128 }, false, [\"encrypt\"])];\n case 2:\n key = _b.sent();\n return [4 /*yield*/, subtle.encrypt({\n name: \"AES-GCM\",\n iv: new Uint8Array(Array(12)),\n additionalData: new Uint8Array(Array(16)),\n tagLength: 128\n }, key, new Uint8Array(0))];\n case 3:\n zeroByteAuthTag = _b.sent();\n return [2 /*return*/, zeroByteAuthTag.byteLength === 16];\n case 4:\n _a = _b.sent();\n return [2 /*return*/, false];\n case 5: return [2 /*return*/];\n }\n });\n });\n}\nexports.supportsZeroByteGCM = supportsZeroByteGCM;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwcG9ydHNXZWJDcnlwdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvc3VwcG9ydHNXZWJDcnlwdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQVVBLElBQU0sbUJBQW1CLEdBQThCO0lBQ3JELFNBQVM7SUFDVCxRQUFRO0lBQ1IsU0FBUztJQUNULFdBQVc7SUFDWCxhQUFhO0lBQ2IsV0FBVztJQUNYLE1BQU07SUFDTixRQUFRO0NBQ1QsQ0FBQztBQUVGLFNBQWdCLGlCQUFpQixDQUFDLE1BQWM7SUFDOUMsSUFDRSxvQkFBb0IsQ0FBQyxNQUFNLENBQUM7UUFDNUIsT0FBTyxNQUFNLENBQUMsTUFBTSxDQUFDLE1BQU0sS0FBSyxRQUFRLEVBQ3hDO1FBQ1EsSUFBQSxNQUFNLEdBQUssTUFBTSxDQUFDLE1BQU0sT0FBbEIsQ0FBbUI7UUFFakMsT0FBTyxvQkFBb0IsQ0FBQyxNQUFNLENBQUMsQ0FBQztLQUNyQztJQUVELE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQztBQVhELDhDQVdDO0FBRUQsU0FBZ0Isb0JBQW9CLENBQUMsTUFBYztJQUNqRCxJQUFJLE9BQU8sTUFBTSxLQUFLLFFBQVEsSUFBSSxPQUFPLE1BQU0sQ0FBQyxNQUFNLEtBQUssUUFBUSxFQUFFO1FBQzNELElBQUEsZUFBZSxHQUFLLE1BQU0sQ0FBQyxNQUFNLGdCQUFsQixDQUFtQjtRQUUxQyxPQUFPLE9BQU8sZUFBZSxLQUFLLFVBQVUsQ0FBQztLQUM5QztJQUVELE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQztBQVJELG9EQVFDO0FBRUQsU0FBZ0Isb0JBQW9CLENBQUMsTUFBb0I7SUFDdkQsT0FBTyxDQUNMLE1BQU07UUFDTixtQkFBbUIsQ0FBQyxLQUFLLENBQ3ZCLFVBQUEsVUFBVSxJQUFJLE9BQUEsT0FBTyxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUssVUFBVSxFQUF4QyxDQUF3QyxDQUN2RCxDQUNGLENBQUM7QUFDSixDQUFDO0FBUEQsb0RBT0M7QUFFRCxTQUFzQixtQkFBbUIsQ0FBQyxNQUFvQjs7Ozs7O29CQUM1RCxJQUFJLENBQUMsb0JBQW9CLENBQUMsTUFBTSxDQUFDO3dCQUFFLHNCQUFPLEtBQUssRUFBQzs7OztvQkFFbEMscUJBQU0sTUFBTSxDQUFDLFdBQVcsQ0FDbEMsRUFBRSxJQUFJLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxHQUFHLEVBQUUsRUFDaEMsS0FBSyxFQUNMLENBQUMsU0FBUyxDQUFDLENBQ1osRUFBQTs7b0JBSkssR0FBRyxHQUFHLFNBSVg7b0JBQ3VCLHFCQUFNLE1BQU0sQ0FBQyxPQUFPLENBQzFDOzRCQUNFLElBQUksRUFBRSxTQUFTOzRCQUNmLEVBQUUsRUFBRSxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7NEJBQzdCLGNBQWMsRUFBRSxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7NEJBQ3pDLFNBQVMsRUFBRSxHQUFHO3lCQUNmLEVBQ0QsR0FBRyxFQUNILElBQUksVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUNsQixFQUFBOztvQkFUSyxlQUFlLEdBQUcsU0FTdkI7b0JBQ0Qsc0JBQU8sZUFBZSxDQUFDLFVBQVUsS0FBSyxFQUFFLEVBQUM7OztvQkFFekMsc0JBQU8sS0FBSyxFQUFDOzs7OztDQUVoQjtBQXRCRCxrREFzQkMiLCJzb3VyY2VzQ29udGVudCI6WyJ0eXBlIFN1YnRsZUNyeXB0b01ldGhvZCA9XG4gIHwgXCJkZWNyeXB0XCJcbiAgfCBcImRpZ2VzdFwiXG4gIHwgXCJlbmNyeXB0XCJcbiAgfCBcImV4cG9ydEtleVwiXG4gIHwgXCJnZW5lcmF0ZUtleVwiXG4gIHwgXCJpbXBvcnRLZXlcIlxuICB8IFwic2lnblwiXG4gIHwgXCJ2ZXJpZnlcIjtcblxuY29uc3Qgc3VidGxlQ3J5cHRvTWV0aG9kczogQXJyYXk8U3VidGxlQ3J5cHRvTWV0aG9kPiA9IFtcbiAgXCJkZWNyeXB0XCIsXG4gIFwiZGlnZXN0XCIsXG4gIFwiZW5jcnlwdFwiLFxuICBcImV4cG9ydEtleVwiLFxuICBcImdlbmVyYXRlS2V5XCIsXG4gIFwiaW1wb3J0S2V5XCIsXG4gIFwic2lnblwiLFxuICBcInZlcmlmeVwiXG5dO1xuXG5leHBvcnQgZnVuY3Rpb24gc3VwcG9ydHNXZWJDcnlwdG8od2luZG93OiBXaW5kb3cpOiBib29sZWFuIHtcbiAgaWYgKFxuICAgIHN1cHBvcnRzU2VjdXJlUmFuZG9tKHdpbmRvdykgJiZcbiAgICB0eXBlb2Ygd2luZG93LmNyeXB0by5zdWJ0bGUgPT09IFwib2JqZWN0XCJcbiAgKSB7XG4gICAgY29uc3QgeyBzdWJ0bGUgfSA9IHdpbmRvdy5jcnlwdG87XG5cbiAgICByZXR1cm4gc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlKTtcbiAgfVxuXG4gIHJldHVybiBmYWxzZTtcbn1cblxuZXhwb3J0IGZ1bmN0aW9uIHN1cHBvcnRzU2VjdXJlUmFuZG9tKHdpbmRvdzogV2luZG93KTogYm9vbGVhbiB7XG4gIGlmICh0eXBlb2Ygd2luZG93ID09PSBcIm9iamVjdFwiICYmIHR5cGVvZiB3aW5kb3cuY3J5cHRvID09PSBcIm9iamVjdFwiKSB7XG4gICAgY29uc3QgeyBnZXRSYW5kb21WYWx1ZXMgfSA9IHdpbmRvdy5jcnlwdG87XG5cbiAgICByZXR1cm4gdHlwZW9mIGdldFJhbmRvbVZhbHVlcyA9PT0gXCJmdW5jdGlvblwiO1xuICB9XG5cbiAgcmV0dXJuIGZhbHNlO1xufVxuXG5leHBvcnQgZnVuY3Rpb24gc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlOiBTdWJ0bGVDcnlwdG8pIHtcbiAgcmV0dXJuIChcbiAgICBzdWJ0bGUgJiZcbiAgICBzdWJ0bGVDcnlwdG9NZXRob2RzLmV2ZXJ5KFxuICAgICAgbWV0aG9kTmFtZSA9PiB0eXBlb2Ygc3VidGxlW21ldGhvZE5hbWVdID09PSBcImZ1bmN0aW9uXCJcbiAgICApXG4gICk7XG59XG5cbmV4cG9ydCBhc3luYyBmdW5jdGlvbiBzdXBwb3J0c1plcm9CeXRlR0NNKHN1YnRsZTogU3VidGxlQ3J5cHRvKSB7XG4gIGlmICghc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlKSkgcmV0dXJuIGZhbHNlO1xuICB0cnkge1xuICAgIGNvbnN0IGtleSA9IGF3YWl0IHN1YnRsZS5nZW5lcmF0ZUtleShcbiAgICAgIHsgbmFtZTogXCJBRVMtR0NNXCIsIGxlbmd0aDogMTI4IH0sXG4gICAgICBmYWxzZSxcbiAgICAgIFtcImVuY3J5cHRcIl1cbiAgICApO1xuICAgIGNvbnN0IHplcm9CeXRlQXV0aFRhZyA9IGF3YWl0IHN1YnRsZS5lbmNyeXB0KFxuICAgICAge1xuICAgICAgICBuYW1lOiBcIkFFUy1HQ01cIixcbiAgICAgICAgaXY6IG5ldyBVaW50OEFycmF5KEFycmF5KDEyKSksXG4gICAgICAgIGFkZGl0aW9uYWxEYXRhOiBuZXcgVWludDhBcnJheShBcnJheSgxNikpLFxuICAgICAgICB0YWdMZW5ndGg6IDEyOFxuICAgICAgfSxcbiAgICAgIGtleSxcbiAgICAgIG5ldyBVaW50OEFycmF5KDApXG4gICAgKTtcbiAgICByZXR1cm4gemVyb0J5dGVBdXRoVGFnLmJ5dGVMZW5ndGggPT09IDE2O1xuICB9IGNhdGNoIHtcbiAgICByZXR1cm4gZmFsc2U7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js": /*!***************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js ***! \***************************************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/convertToBuffer.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/convertToBuffer.js ***! \*****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/* WEBPACK VAR INJECTION */(function(Buffer) {\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.convertToBuffer = void 0;\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js\");\n// Quick polyfill\nvar fromUtf8 = typeof Buffer !== \"undefined\" && Buffer.from\n ? function (input) { return Buffer.from(input, \"utf8\"); }\n : util_utf8_browser_1.fromUtf8;\nfunction convertToBuffer(data) {\n // Already a Uint8, do nothing\n if (data instanceof Uint8Array)\n return data;\n if (typeof data === \"string\") {\n return fromUtf8(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\nexports.convertToBuffer = convertToBuffer;\n//# sourceMappingURL=convertToBuffer.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/convertToBuffer.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/index.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/index.js ***! \*******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = exports.numToUint8 = exports.isEmptyData = exports.convertToBuffer = void 0;\nvar convertToBuffer_1 = __webpack_require__(/*! ./convertToBuffer */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/convertToBuffer.js\");\nObject.defineProperty(exports, \"convertToBuffer\", { enumerable: true, get: function () { return convertToBuffer_1.convertToBuffer; } });\nvar isEmptyData_1 = __webpack_require__(/*! ./isEmptyData */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/isEmptyData.js\");\nObject.defineProperty(exports, \"isEmptyData\", { enumerable: true, get: function () { return isEmptyData_1.isEmptyData; } });\nvar numToUint8_1 = __webpack_require__(/*! ./numToUint8 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/numToUint8.js\");\nObject.defineProperty(exports, \"numToUint8\", { enumerable: true, get: function () { return numToUint8_1.numToUint8; } });\nvar uint32ArrayFrom_1 = __webpack_require__(/*! ./uint32ArrayFrom */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js\");\nObject.defineProperty(exports, \"uint32ArrayFrom\", { enumerable: true, get: function () { return uint32ArrayFrom_1.uint32ArrayFrom; } });\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/isEmptyData.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/isEmptyData.js ***! \*************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isEmptyData = void 0;\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nexports.isEmptyData = isEmptyData;\n//# sourceMappingURL=isEmptyData.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/isEmptyData.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/numToUint8.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/numToUint8.js ***! \************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.numToUint8 = void 0;\nfunction numToUint8(num) {\n return new Uint8Array([\n (num & 0xff000000) >> 24,\n (num & 0x00ff0000) >> 16,\n (num & 0x0000ff00) >> 8,\n num & 0x000000ff,\n ]);\n}\nexports.numToUint8 = numToUint8;\n//# sourceMappingURL=numToUint8.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/numToUint8.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js ***! \*****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = void 0;\n// IE 11 does not support Array.from, so we do it manually\nfunction uint32ArrayFrom(a_lookUpTable) {\n if (!Uint32Array.from) {\n var return_array = new Uint32Array(a_lookUpTable.length);\n var a_index = 0;\n while (a_index < a_lookUpTable.length) {\n return_array[a_index] = a_lookUpTable[a_index];\n a_index += 1;\n }\n return return_array;\n }\n return Uint32Array.from(a_lookUpTable);\n}\nexports.uint32ArrayFrom = uint32ArrayFrom;\n//# sourceMappingURL=uint32ArrayFrom.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js": /*!*****************************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js ***! \*****************************************************************************************************************************************************************/ /*! exports provided: ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_DUALSTACK_ENDPOINT\", function() { return ENV_USE_DUALSTACK_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_DUALSTACK_ENDPOINT\", function() { return CONFIG_USE_DUALSTACK_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_DUALSTACK_ENDPOINT\", function() { return DEFAULT_USE_DUALSTACK_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\", function() { return NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS; });\n/* harmony import */ var _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/util-config-provider */ \"./node_modules/@aws-sdk/util-config-provider/dist-es/index.js\");\n\nvar ENV_USE_DUALSTACK_ENDPOINT = \"AWS_USE_DUALSTACK_ENDPOINT\";\nvar CONFIG_USE_DUALSTACK_ENDPOINT = \"use_dualstack_endpoint\";\nvar DEFAULT_USE_DUALSTACK_ENDPOINT = false;\nvar NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(env, ENV_USE_DUALSTACK_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].ENV);\n },\n configFileSelector: function (profile) { return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(profile, CONFIG_USE_DUALSTACK_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].CONFIG); },\n default: false,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js": /*!************************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js ***! \************************************************************************************************************************************************************/ /*! exports provided: ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_FIPS_ENDPOINT\", function() { return ENV_USE_FIPS_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_FIPS_ENDPOINT\", function() { return CONFIG_USE_FIPS_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_FIPS_ENDPOINT\", function() { return DEFAULT_USE_FIPS_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\", function() { return NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS; });\n/* harmony import */ var _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/util-config-provider */ \"./node_modules/@aws-sdk/util-config-provider/dist-es/index.js\");\n\nvar ENV_USE_FIPS_ENDPOINT = \"AWS_USE_FIPS_ENDPOINT\";\nvar CONFIG_USE_FIPS_ENDPOINT = \"use_fips_endpoint\";\nvar DEFAULT_USE_FIPS_ENDPOINT = false;\nvar NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(env, ENV_USE_FIPS_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].ENV);\n },\n configFileSelector: function (profile) { return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(profile, CONFIG_USE_FIPS_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].CONFIG); },\n default: false,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js": /*!*********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js ***! \*********************************************************************************************************************************/ /*! exports provided: ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveCustomEndpointsConfig, resolveEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./NodeUseDualstackEndpointConfigOptions */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_DUALSTACK_ENDPOINT\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"ENV_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_DUALSTACK_ENDPOINT\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"CONFIG_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_DUALSTACK_ENDPOINT\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./NodeUseFipsEndpointConfigOptions */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_FIPS_ENDPOINT\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"ENV_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_FIPS_ENDPOINT\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"CONFIG_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_FIPS_ENDPOINT\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _resolveCustomEndpointsConfig__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./resolveCustomEndpointsConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveCustomEndpointsConfig\", function() { return _resolveCustomEndpointsConfig__WEBPACK_IMPORTED_MODULE_2__[\"resolveCustomEndpointsConfig\"]; });\n\n/* harmony import */ var _resolveEndpointsConfig__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./resolveEndpointsConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return _resolveEndpointsConfig__WEBPACK_IMPORTED_MODULE_3__[\"resolveEndpointsConfig\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js": /*!********************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js ***! \********************************************************************************************************************************************************/ /*! exports provided: resolveCustomEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveCustomEndpointsConfig\", function() { return resolveCustomEndpointsConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n\n\nvar resolveCustomEndpointsConfig = function (input) {\n var _a;\n var endpoint = input.endpoint, urlParser = input.urlParser;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { tls: (_a = input.tls) !== null && _a !== void 0 ? _a : true, endpoint: Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(typeof endpoint === \"string\" ? urlParser(endpoint) : endpoint), isCustomEndpoint: true, useDualstackEndpoint: Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(input.useDualstackEndpoint) });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js": /*!**************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js ***! \**************************************************************************************************************************************************/ /*! exports provided: resolveEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return resolveEndpointsConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n/* harmony import */ var _utils_getEndpointFromRegion__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/getEndpointFromRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js\");\n\n\n\nvar resolveEndpointsConfig = function (input) {\n var _a;\n var useDualstackEndpoint = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(input.useDualstackEndpoint);\n var endpoint = input.endpoint, useFipsEndpoint = input.useFipsEndpoint, urlParser = input.urlParser;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { tls: (_a = input.tls) !== null && _a !== void 0 ? _a : true, endpoint: endpoint\n ? Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(typeof endpoint === \"string\" ? urlParser(endpoint) : endpoint)\n : function () { return Object(_utils_getEndpointFromRegion__WEBPACK_IMPORTED_MODULE_2__[\"getEndpointFromRegion\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { useDualstackEndpoint: useDualstackEndpoint, useFipsEndpoint: useFipsEndpoint })); }, isCustomEndpoint: !!endpoint, useDualstackEndpoint: useDualstackEndpoint });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js": /*!*******************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js ***! \*******************************************************************************************************************************************************/ /*! exports provided: getEndpointFromRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getEndpointFromRegion\", function() { return getEndpointFromRegion; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar getEndpointFromRegion = function (input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, tls, region, dnsHostRegex, useDualstackEndpoint, useFipsEndpoint, hostname;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = input.tls, tls = _a === void 0 ? true : _a;\n return [4, input.region()];\n case 1:\n region = _c.sent();\n dnsHostRegex = new RegExp(/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])$/);\n if (!dnsHostRegex.test(region)) {\n throw new Error(\"Invalid region in client config\");\n }\n return [4, input.useDualstackEndpoint()];\n case 2:\n useDualstackEndpoint = _c.sent();\n return [4, input.useFipsEndpoint()];\n case 3:\n useFipsEndpoint = _c.sent();\n return [4, input.regionInfoProvider(region, { useDualstackEndpoint: useDualstackEndpoint, useFipsEndpoint: useFipsEndpoint })];\n case 4:\n hostname = ((_b = (_c.sent())) !== null && _b !== void 0 ? _b : {}).hostname;\n if (!hostname) {\n throw new Error(\"Cannot resolve hostname from client config\");\n }\n return [2, input.urlParser(\"\".concat(tls ? \"https:\" : \"http:\", \"//\").concat(hostname))];\n }\n });\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/index.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/index.js ***! \*****************************************************************************************************************/ /*! exports provided: ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveCustomEndpointsConfig, resolveEndpointsConfig, REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig, getRegionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpointsConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_DUALSTACK_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"ENV_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_DUALSTACK_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"CONFIG_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_DUALSTACK_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_FIPS_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"ENV_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_FIPS_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"CONFIG_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_FIPS_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveCustomEndpointsConfig\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveCustomEndpointsConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveEndpointsConfig\"]; });\n\n/* harmony import */ var _regionConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./regionConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"REGION_ENV_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"REGION_INI_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"NODE_REGION_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"NODE_REGION_CONFIG_FILE_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"]; });\n\n/* harmony import */ var _regionInfo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./regionInfo */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRegionInfo\", function() { return _regionInfo__WEBPACK_IMPORTED_MODULE_2__[\"getRegionInfo\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js": /*!*******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js ***! \*******************************************************************************************************************************/ /*! exports provided: REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return REGION_ENV_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return REGION_INI_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return NODE_REGION_CONFIG_OPTIONS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return NODE_REGION_CONFIG_FILE_OPTIONS; });\nvar REGION_ENV_NAME = \"AWS_REGION\";\nvar REGION_INI_NAME = \"region\";\nvar NODE_REGION_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) { return env[REGION_ENV_NAME]; },\n configFileSelector: function (profile) { return profile[REGION_INI_NAME]; },\n default: function () {\n throw new Error(\"Region is missing\");\n },\n};\nvar NODE_REGION_CONFIG_FILE_OPTIONS = {\n preferredFile: \"credentials\",\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js": /*!**************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js ***! \**************************************************************************************************************************************/ /*! exports provided: getRealRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRealRegion\", function() { return getRealRegion; });\n/* harmony import */ var _isFipsRegion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isFipsRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js\");\n\nvar getRealRegion = function (region) {\n return Object(_isFipsRegion__WEBPACK_IMPORTED_MODULE_0__[\"isFipsRegion\"])(region)\n ? [\"fips-aws-global\", \"aws-fips\"].includes(region)\n ? \"us-east-1\"\n : region.replace(/fips-(dkr-|prod-)?|-fips/, \"\")\n : region;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js ***! \******************************************************************************************************************************/ /*! exports provided: REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"REGION_ENV_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"REGION_INI_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"NODE_REGION_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"NODE_REGION_CONFIG_FILE_OPTIONS\"]; });\n\n/* harmony import */ var _resolveRegionConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./resolveRegionConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return _resolveRegionConfig__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js": /*!*************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js ***! \*************************************************************************************************************************************/ /*! exports provided: isFipsRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isFipsRegion\", function() { return isFipsRegion; });\nvar isFipsRegion = function (region) {\n return typeof region === \"string\" && (region.startsWith(\"fips-\") || region.endsWith(\"-fips\"));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js": /*!********************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js ***! \********************************************************************************************************************************************/ /*! exports provided: resolveRegionConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return resolveRegionConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _getRealRegion__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getRealRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js\");\n/* harmony import */ var _isFipsRegion__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isFipsRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js\");\n\n\n\nvar resolveRegionConfig = function (input) {\n var region = input.region, useFipsEndpoint = input.useFipsEndpoint;\n if (!region) {\n throw new Error(\"Region is missing\");\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { region: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var providedRegion;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (typeof region === \"string\") {\n return [2, Object(_getRealRegion__WEBPACK_IMPORTED_MODULE_1__[\"getRealRegion\"])(region)];\n }\n return [4, region()];\n case 1:\n providedRegion = _a.sent();\n return [2, Object(_getRealRegion__WEBPACK_IMPORTED_MODULE_1__[\"getRealRegion\"])(providedRegion)];\n }\n });\n }); }, useFipsEndpoint: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var providedRegion, _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!(typeof region === \"string\")) return [3, 1];\n _a = region;\n return [3, 3];\n case 1: return [4, region()];\n case 2:\n _a = _b.sent();\n _b.label = 3;\n case 3:\n providedRegion = _a;\n if (Object(_isFipsRegion__WEBPACK_IMPORTED_MODULE_2__[\"isFipsRegion\"])(providedRegion)) {\n return [2, true];\n }\n return [2, typeof useFipsEndpoint === \"boolean\" ? Promise.resolve(useFipsEndpoint) : useFipsEndpoint()];\n }\n });\n }); } });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js": /*!************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js ***! \************************************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js": /*!*********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js ***! \*********************************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js": /*!**********************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js ***! \**********************************************************************************************************************************************/ /*! exports provided: getHostnameFromVariants */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHostnameFromVariants\", function() { return getHostnameFromVariants; });\nvar getHostnameFromVariants = function (variants, _a) {\n var _b;\n if (variants === void 0) { variants = []; }\n var useFipsEndpoint = _a.useFipsEndpoint, useDualstackEndpoint = _a.useDualstackEndpoint;\n return (_b = variants.find(function (_a) {\n var tags = _a.tags;\n return useFipsEndpoint === tags.includes(\"fips\") && useDualstackEndpoint === tags.includes(\"dualstack\");\n })) === null || _b === void 0 ? void 0 : _b.hostname;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js": /*!************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js ***! \************************************************************************************************************************************/ /*! exports provided: getRegionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRegionInfo\", function() { return getRegionInfo; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _getHostnameFromVariants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getHostnameFromVariants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js\");\n/* harmony import */ var _getResolvedHostname__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getResolvedHostname */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js\");\n/* harmony import */ var _getResolvedPartition__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getResolvedPartition */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js\");\n/* harmony import */ var _getResolvedSigningRegion__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getResolvedSigningRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js\");\n\n\n\n\n\nvar getRegionInfo = function (region, _a) {\n var _b, _c, _d, _e, _f, _g;\n var _h = _a.useFipsEndpoint, useFipsEndpoint = _h === void 0 ? false : _h, _j = _a.useDualstackEndpoint, useDualstackEndpoint = _j === void 0 ? false : _j, signingService = _a.signingService, regionHash = _a.regionHash, partitionHash = _a.partitionHash;\n var partition = Object(_getResolvedPartition__WEBPACK_IMPORTED_MODULE_3__[\"getResolvedPartition\"])(region, { partitionHash: partitionHash });\n var resolvedRegion = region in regionHash ? region : (_c = (_b = partitionHash[partition]) === null || _b === void 0 ? void 0 : _b.endpoint) !== null && _c !== void 0 ? _c : region;\n var hostnameOptions = { useFipsEndpoint: useFipsEndpoint, useDualstackEndpoint: useDualstackEndpoint };\n var regionHostname = Object(_getHostnameFromVariants__WEBPACK_IMPORTED_MODULE_1__[\"getHostnameFromVariants\"])((_d = regionHash[resolvedRegion]) === null || _d === void 0 ? void 0 : _d.variants, hostnameOptions);\n var partitionHostname = Object(_getHostnameFromVariants__WEBPACK_IMPORTED_MODULE_1__[\"getHostnameFromVariants\"])((_e = partitionHash[partition]) === null || _e === void 0 ? void 0 : _e.variants, hostnameOptions);\n var hostname = Object(_getResolvedHostname__WEBPACK_IMPORTED_MODULE_2__[\"getResolvedHostname\"])(resolvedRegion, { regionHostname: regionHostname, partitionHostname: partitionHostname });\n if (hostname === undefined) {\n throw new Error(\"Endpoint resolution failed for: \".concat({ resolvedRegion: resolvedRegion, useFipsEndpoint: useFipsEndpoint, useDualstackEndpoint: useDualstackEndpoint }));\n }\n var signingRegion = Object(_getResolvedSigningRegion__WEBPACK_IMPORTED_MODULE_4__[\"getResolvedSigningRegion\"])(hostname, {\n signingRegion: (_f = regionHash[resolvedRegion]) === null || _f === void 0 ? void 0 : _f.signingRegion,\n regionRegex: partitionHash[partition].regionRegex,\n useFipsEndpoint: useFipsEndpoint,\n });\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ partition: partition, signingService: signingService, hostname: hostname }, (signingRegion && { signingRegion: signingRegion })), (((_g = regionHash[resolvedRegion]) === null || _g === void 0 ? void 0 : _g.signingService) && {\n signingService: regionHash[resolvedRegion].signingService,\n }));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js": /*!******************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js ***! \******************************************************************************************************************************************/ /*! exports provided: getResolvedHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResolvedHostname\", function() { return getResolvedHostname; });\nvar getResolvedHostname = function (resolvedRegion, _a) {\n var regionHostname = _a.regionHostname, partitionHostname = _a.partitionHostname;\n return regionHostname\n ? regionHostname\n : partitionHostname\n ? partitionHostname.replace(\"{region}\", resolvedRegion)\n : undefined;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js": /*!*******************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js ***! \*******************************************************************************************************************************************/ /*! exports provided: getResolvedPartition */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResolvedPartition\", function() { return getResolvedPartition; });\nvar getResolvedPartition = function (region, _a) {\n var _b;\n var partitionHash = _a.partitionHash;\n return (_b = Object.keys(partitionHash || {}).find(function (key) { return partitionHash[key].regions.includes(region); })) !== null && _b !== void 0 ? _b : \"aws\";\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js": /*!***********************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js ***! \***********************************************************************************************************************************************/ /*! exports provided: getResolvedSigningRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResolvedSigningRegion\", function() { return getResolvedSigningRegion; });\nvar getResolvedSigningRegion = function (hostname, _a) {\n var signingRegion = _a.signingRegion, regionRegex = _a.regionRegex, useFipsEndpoint = _a.useFipsEndpoint;\n if (signingRegion) {\n return signingRegion;\n }\n else if (useFipsEndpoint) {\n var regionRegexJs = regionRegex.replace(\"\\\\\\\\\", \"\\\\\").replace(/^\\^/g, \"\\\\.\").replace(/\\$$/g, \"\\\\.\");\n var regionRegexmatchArray = hostname.match(regionRegexJs);\n if (regionRegexmatchArray) {\n return regionRegexmatchArray[0].slice(1, -1);\n }\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js ***! \****************************************************************************************************************************/ /*! exports provided: getRegionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PartitionHash__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PartitionHash */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _RegionHash__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./RegionHash */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _getRegionInfo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getRegionInfo */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRegionInfo\", function() { return _getRegionInfo__WEBPACK_IMPORTED_MODULE_2__[\"getRegionInfo\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js": /*!*********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js ***! \*********************************************************************************************************************************/ /*! exports provided: FetchHttpHandler */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FetchHttpHandler\", function() { return FetchHttpHandler; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/querystring-builder */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/querystring-builder/dist-es/index.js\");\n/* harmony import */ var _request_timeout__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./request-timeout */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js\");\n\n\n\n\nvar FetchHttpHandler = (function () {\n function FetchHttpHandler(options) {\n if (typeof options === \"function\") {\n this.configProvider = options().then(function (opts) { return opts || {}; });\n }\n else {\n this.config = options !== null && options !== void 0 ? options : {};\n this.configProvider = Promise.resolve(this.config);\n }\n }\n FetchHttpHandler.prototype.destroy = function () {\n };\n FetchHttpHandler.prototype.handle = function (request, _a) {\n var _b = _a === void 0 ? {} : _a, abortSignal = _b.abortSignal;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _c, requestTimeoutInMs, abortError, path, queryString, port, method, url, body, requestOptions, fetchRequest, raceOfPromises;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n if (!!this.config) return [3, 2];\n _c = this;\n return [4, this.configProvider];\n case 1:\n _c.config = _d.sent();\n _d.label = 2;\n case 2:\n requestTimeoutInMs = this.config.requestTimeout;\n if (abortSignal === null || abortSignal === void 0 ? void 0 : abortSignal.aborted) {\n abortError = new Error(\"Request aborted\");\n abortError.name = \"AbortError\";\n return [2, Promise.reject(abortError)];\n }\n path = request.path;\n if (request.query) {\n queryString = Object(_aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_2__[\"buildQueryString\"])(request.query);\n if (queryString) {\n path += \"?\".concat(queryString);\n }\n }\n port = request.port, method = request.method;\n url = \"\".concat(request.protocol, \"//\").concat(request.hostname).concat(port ? \":\".concat(port) : \"\").concat(path);\n body = method === \"GET\" || method === \"HEAD\" ? undefined : request.body;\n requestOptions = {\n body: body,\n headers: new Headers(request.headers),\n method: method,\n };\n if (typeof AbortController !== \"undefined\") {\n requestOptions[\"signal\"] = abortSignal;\n }\n fetchRequest = new Request(url, requestOptions);\n raceOfPromises = [\n fetch(fetchRequest).then(function (response) {\n var e_1, _a;\n var fetchHeaders = response.headers;\n var transformedHeaders = {};\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(fetchHeaders.entries()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var pair = _c.value;\n transformedHeaders[pair[0]] = pair[1];\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var hasReadableStream = response.body !== undefined;\n if (!hasReadableStream) {\n return response.blob().then(function (body) { return ({\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"]({\n headers: transformedHeaders,\n statusCode: response.status,\n body: body,\n }),\n }); });\n }\n return {\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"]({\n headers: transformedHeaders,\n statusCode: response.status,\n body: response.body,\n }),\n };\n }),\n Object(_request_timeout__WEBPACK_IMPORTED_MODULE_3__[\"requestTimeout\"])(requestTimeoutInMs),\n ];\n if (abortSignal) {\n raceOfPromises.push(new Promise(function (resolve, reject) {\n abortSignal.onabort = function () {\n var abortError = new Error(\"Request aborted\");\n abortError.name = \"AbortError\";\n reject(abortError);\n };\n }));\n }\n return [2, Promise.race(raceOfPromises)];\n }\n });\n });\n };\n return FetchHttpHandler;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js ***! \********************************************************************************************************************/ /*! exports provided: FetchHttpHandler, streamCollector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _fetch_http_handler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./fetch-http-handler */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FetchHttpHandler\", function() { return _fetch_http_handler__WEBPACK_IMPORTED_MODULE_0__[\"FetchHttpHandler\"]; });\n\n/* harmony import */ var _stream_collector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stream-collector */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"streamCollector\", function() { return _stream_collector__WEBPACK_IMPORTED_MODULE_1__[\"streamCollector\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js ***! \******************************************************************************************************************************/ /*! exports provided: requestTimeout */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"requestTimeout\", function() { return requestTimeout; });\nfunction requestTimeout(timeoutInMs) {\n if (timeoutInMs === void 0) { timeoutInMs = 0; }\n return new Promise(function (resolve, reject) {\n if (timeoutInMs) {\n setTimeout(function () {\n var timeoutError = new Error(\"Request did not complete within \".concat(timeoutInMs, \" ms\"));\n timeoutError.name = \"TimeoutError\";\n reject(timeoutError);\n }, timeoutInMs);\n }\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js": /*!*******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js ***! \*******************************************************************************************************************************/ /*! exports provided: streamCollector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"streamCollector\", function() { return streamCollector; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js\");\n\n\nvar streamCollector = function (stream) {\n if (typeof Blob === \"function\" && stream instanceof Blob) {\n return collectBlob(stream);\n }\n return collectStream(stream);\n};\nfunction collectBlob(blob) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var base64, arrayBuffer;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, readToBase64(blob)];\n case 1:\n base64 = _a.sent();\n arrayBuffer = Object(_aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_1__[\"fromBase64\"])(base64);\n return [2, new Uint8Array(arrayBuffer)];\n }\n });\n });\n}\nfunction collectStream(stream) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var res, reader, isDone, _a, done, value, prior;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n res = new Uint8Array(0);\n reader = stream.getReader();\n isDone = false;\n _b.label = 1;\n case 1:\n if (!!isDone) return [3, 3];\n return [4, reader.read()];\n case 2:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (value) {\n prior = res;\n res = new Uint8Array(prior.length + value.length);\n res.set(prior);\n res.set(value, prior.length);\n }\n isDone = done;\n return [3, 1];\n case 3: return [2, res];\n }\n });\n });\n}\nfunction readToBase64(blob) {\n return new Promise(function (resolve, reject) {\n var reader = new FileReader();\n reader.onloadend = function () {\n var _a;\n if (reader.readyState !== 2) {\n return reject(new Error(\"Reader aborted too early\"));\n }\n var result = ((_a = reader.result) !== null && _a !== void 0 ? _a : \"\");\n var commaIndex = result.indexOf(\",\");\n var dataOffset = commaIndex > -1 ? commaIndex + 1 : result.length;\n resolve(result.substring(dataOffset));\n };\n reader.onabort = function () { return reject(new Error(\"Read aborted\")); };\n reader.onerror = function () { return reject(reader.error); };\n reader.readAsDataURL(blob);\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js ***! \********************************************************************************************************************/ /*! exports provided: invalidFunction, invalidProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _invalidFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./invalidFunction */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"invalidFunction\", function() { return _invalidFunction__WEBPACK_IMPORTED_MODULE_0__[\"invalidFunction\"]; });\n\n/* harmony import */ var _invalidProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./invalidProvider */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"invalidProvider\", function() { return _invalidProvider__WEBPACK_IMPORTED_MODULE_1__[\"invalidProvider\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js ***! \******************************************************************************************************************************/ /*! exports provided: invalidFunction */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invalidFunction\", function() { return invalidFunction; });\nvar invalidFunction = function (message) { return function () {\n throw new Error(message);\n}; };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js ***! \******************************************************************************************************************************/ /*! exports provided: invalidProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invalidProvider\", function() { return invalidProvider; });\nvar invalidProvider = function (message) { return function () { return Promise.reject(message); }; };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js ***! \*****************************************************************************************************************/ /*! exports provided: isArrayBuffer */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isArrayBuffer\", function() { return isArrayBuffer; });\nvar isArrayBuffer = function (arg) {\n return (typeof ArrayBuffer === \"function\" && arg instanceof ArrayBuffer) ||\n Object.prototype.toString.call(arg) === \"[object ArrayBuffer]\";\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js ***! \***************************************************************************************************************************/ /*! exports provided: contentLengthMiddleware, contentLengthMiddlewareOptions, getContentLengthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"contentLengthMiddleware\", function() { return contentLengthMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"contentLengthMiddlewareOptions\", function() { return contentLengthMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getContentLengthPlugin\", function() { return getContentLengthPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n\n\nvar CONTENT_LENGTH_HEADER = \"content-length\";\nfunction contentLengthMiddleware(bodyLengthChecker) {\n var _this = this;\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var request, body, headers, length_1;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n body = request.body, headers = request.headers;\n if (body &&\n Object.keys(headers)\n .map(function (str) { return str.toLowerCase(); })\n .indexOf(CONTENT_LENGTH_HEADER) === -1) {\n try {\n length_1 = bodyLengthChecker(body);\n request.headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request.headers), (_a = {}, _a[CONTENT_LENGTH_HEADER] = String(length_1), _a));\n }\n catch (error) {\n }\n }\n }\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n });\n }); };\n };\n}\nvar contentLengthMiddlewareOptions = {\n step: \"build\",\n tags: [\"SET_CONTENT_LENGTH\", \"CONTENT_LENGTH\"],\n name: \"contentLengthMiddleware\",\n override: true,\n};\nvar getContentLengthPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(contentLengthMiddleware(options.bodyLengthChecker), contentLengthMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js ***! \************************************************************************************************************************/ /*! exports provided: resolveHostHeaderConfig, hostHeaderMiddleware, hostHeaderMiddlewareOptions, getHostHeaderPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveHostHeaderConfig\", function() { return resolveHostHeaderConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hostHeaderMiddleware\", function() { return hostHeaderMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hostHeaderMiddlewareOptions\", function() { return hostHeaderMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHostHeaderPlugin\", function() { return getHostHeaderPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n\n\nfunction resolveHostHeaderConfig(input) {\n return input;\n}\nvar hostHeaderMiddleware = function (options) {\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, _a, handlerProtocol;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(args.request))\n return [2, next(args)];\n request = args.request;\n _a = (options.requestHandler.metadata || {}).handlerProtocol, handlerProtocol = _a === void 0 ? \"\" : _a;\n if (handlerProtocol.indexOf(\"h2\") >= 0 && !request.headers[\":authority\"]) {\n delete request.headers[\"host\"];\n request.headers[\":authority\"] = \"\";\n }\n else if (!request.headers[\"host\"]) {\n request.headers[\"host\"] = request.hostname;\n }\n return [2, next(args)];\n });\n }); };\n };\n};\nvar hostHeaderMiddlewareOptions = {\n name: \"hostHeaderMiddleware\",\n step: \"build\",\n priority: \"low\",\n tags: [\"HOST\"],\n override: true,\n};\nvar getHostHeaderPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(hostHeaderMiddleware(options), hostHeaderMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-logger/dist-es/index.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-logger/dist-es/index.js ***! \*******************************************************************************************************************/ /*! exports provided: loggerMiddleware, loggerMiddlewareOptions, getLoggerPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./loggerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddleware\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"loggerMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddlewareOptions\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"loggerMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLoggerPlugin\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"getLoggerPlugin\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-logger/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js ***! \******************************************************************************************************************************/ /*! exports provided: loggerMiddleware, loggerMiddlewareOptions, getLoggerPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddleware\", function() { return loggerMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddlewareOptions\", function() { return loggerMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getLoggerPlugin\", function() { return getLoggerPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar loggerMiddleware = function () {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var clientName, commandName, inputFilterSensitiveLog, logger, outputFilterSensitiveLog, response, _a, $metadata, outputWithoutMetadata;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n clientName = context.clientName, commandName = context.commandName, inputFilterSensitiveLog = context.inputFilterSensitiveLog, logger = context.logger, outputFilterSensitiveLog = context.outputFilterSensitiveLog;\n return [4, next(args)];\n case 1:\n response = _b.sent();\n if (!logger) {\n return [2, response];\n }\n if (typeof logger.info === \"function\") {\n _a = response.output, $metadata = _a.$metadata, outputWithoutMetadata = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"$metadata\"]);\n logger.info({\n clientName: clientName,\n commandName: commandName,\n input: inputFilterSensitiveLog(args.input),\n output: outputFilterSensitiveLog(outputWithoutMetadata),\n metadata: $metadata,\n });\n }\n return [2, response];\n }\n });\n }); };\n };\n};\nvar loggerMiddlewareOptions = {\n name: \"loggerMiddleware\",\n tags: [\"LOGGER\"],\n step: \"initialize\",\n override: true,\n};\nvar getLoggerPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(loggerMiddleware(), loggerMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js ***! \**********************************************************************************************************************************/ /*! exports provided: AdaptiveRetryStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AdaptiveRetryStrategy\", function() { return AdaptiveRetryStrategy; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony import */ var _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./DefaultRateLimiter */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js\");\n/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./StandardRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js\");\n\n\n\n\nvar AdaptiveRetryStrategy = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AdaptiveRetryStrategy, _super);\n function AdaptiveRetryStrategy(maxAttemptsProvider, options) {\n var _this = this;\n var _a = options !== null && options !== void 0 ? options : {}, rateLimiter = _a.rateLimiter, superOptions = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"rateLimiter\"]);\n _this = _super.call(this, maxAttemptsProvider, superOptions) || this;\n _this.rateLimiter = rateLimiter !== null && rateLimiter !== void 0 ? rateLimiter : new _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_2__[\"DefaultRateLimiter\"]();\n _this.mode = _config__WEBPACK_IMPORTED_MODULE_1__[\"RETRY_MODES\"].ADAPTIVE;\n return _this;\n }\n AdaptiveRetryStrategy.prototype.retry = function (next, args) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _this = this;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, _super.prototype.retry.call(this, next, args, {\n beforeRequest: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, this.rateLimiter.getSendToken()];\n });\n }); },\n afterRequest: function (response) {\n _this.rateLimiter.updateClientSendingRate(response);\n },\n })];\n });\n });\n };\n return AdaptiveRetryStrategy;\n}(_StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_3__[\"StandardRetryStrategy\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js": /*!*******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js ***! \*******************************************************************************************************************************/ /*! exports provided: DefaultRateLimiter */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultRateLimiter\", function() { return DefaultRateLimiter; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/index.js\");\n\n\nvar DefaultRateLimiter = (function () {\n function DefaultRateLimiter(options) {\n var _a, _b, _c, _d, _e;\n this.currentCapacity = 0;\n this.enabled = false;\n this.lastMaxRate = 0;\n this.measuredTxRate = 0;\n this.requestCount = 0;\n this.lastTimestamp = 0;\n this.timeWindow = 0;\n this.beta = (_a = options === null || options === void 0 ? void 0 : options.beta) !== null && _a !== void 0 ? _a : 0.7;\n this.minCapacity = (_b = options === null || options === void 0 ? void 0 : options.minCapacity) !== null && _b !== void 0 ? _b : 1;\n this.minFillRate = (_c = options === null || options === void 0 ? void 0 : options.minFillRate) !== null && _c !== void 0 ? _c : 0.5;\n this.scaleConstant = (_d = options === null || options === void 0 ? void 0 : options.scaleConstant) !== null && _d !== void 0 ? _d : 0.4;\n this.smooth = (_e = options === null || options === void 0 ? void 0 : options.smooth) !== null && _e !== void 0 ? _e : 0.8;\n var currentTimeInSeconds = this.getCurrentTimeInSeconds();\n this.lastThrottleTime = currentTimeInSeconds;\n this.lastTxRateBucket = Math.floor(this.getCurrentTimeInSeconds());\n this.fillRate = this.minFillRate;\n this.maxCapacity = this.minCapacity;\n }\n DefaultRateLimiter.prototype.getCurrentTimeInSeconds = function () {\n return Date.now() / 1000;\n };\n DefaultRateLimiter.prototype.getSendToken = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, this.acquireTokenBucket(1)];\n });\n });\n };\n DefaultRateLimiter.prototype.acquireTokenBucket = function (amount) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var delay_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!this.enabled) {\n return [2];\n }\n this.refillTokenBucket();\n if (!(amount > this.currentCapacity)) return [3, 2];\n delay_1 = ((amount - this.currentCapacity) / this.fillRate) * 1000;\n return [4, new Promise(function (resolve) { return setTimeout(resolve, delay_1); })];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n this.currentCapacity = this.currentCapacity - amount;\n return [2];\n }\n });\n });\n };\n DefaultRateLimiter.prototype.refillTokenBucket = function () {\n var timestamp = this.getCurrentTimeInSeconds();\n if (!this.lastTimestamp) {\n this.lastTimestamp = timestamp;\n return;\n }\n var fillAmount = (timestamp - this.lastTimestamp) * this.fillRate;\n this.currentCapacity = Math.min(this.maxCapacity, this.currentCapacity + fillAmount);\n this.lastTimestamp = timestamp;\n };\n DefaultRateLimiter.prototype.updateClientSendingRate = function (response) {\n var calculatedRate;\n this.updateMeasuredRate();\n if (Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_1__[\"isThrottlingError\"])(response)) {\n var rateToUse = !this.enabled ? this.measuredTxRate : Math.min(this.measuredTxRate, this.fillRate);\n this.lastMaxRate = rateToUse;\n this.calculateTimeWindow();\n this.lastThrottleTime = this.getCurrentTimeInSeconds();\n calculatedRate = this.cubicThrottle(rateToUse);\n this.enableTokenBucket();\n }\n else {\n this.calculateTimeWindow();\n calculatedRate = this.cubicSuccess(this.getCurrentTimeInSeconds());\n }\n var newRate = Math.min(calculatedRate, 2 * this.measuredTxRate);\n this.updateTokenBucketRate(newRate);\n };\n DefaultRateLimiter.prototype.calculateTimeWindow = function () {\n this.timeWindow = this.getPrecise(Math.pow((this.lastMaxRate * (1 - this.beta)) / this.scaleConstant, 1 / 3));\n };\n DefaultRateLimiter.prototype.cubicThrottle = function (rateToUse) {\n return this.getPrecise(rateToUse * this.beta);\n };\n DefaultRateLimiter.prototype.cubicSuccess = function (timestamp) {\n return this.getPrecise(this.scaleConstant * Math.pow(timestamp - this.lastThrottleTime - this.timeWindow, 3) + this.lastMaxRate);\n };\n DefaultRateLimiter.prototype.enableTokenBucket = function () {\n this.enabled = true;\n };\n DefaultRateLimiter.prototype.updateTokenBucketRate = function (newRate) {\n this.refillTokenBucket();\n this.fillRate = Math.max(newRate, this.minFillRate);\n this.maxCapacity = Math.max(newRate, this.minCapacity);\n this.currentCapacity = Math.min(this.currentCapacity, this.maxCapacity);\n };\n DefaultRateLimiter.prototype.updateMeasuredRate = function () {\n var t = this.getCurrentTimeInSeconds();\n var timeBucket = Math.floor(t * 2) / 2;\n this.requestCount++;\n if (timeBucket > this.lastTxRateBucket) {\n var currentRate = this.requestCount / (timeBucket - this.lastTxRateBucket);\n this.measuredTxRate = this.getPrecise(currentRate * this.smooth + this.measuredTxRate * (1 - this.smooth));\n this.requestCount = 0;\n this.lastTxRateBucket = timeBucket;\n }\n };\n DefaultRateLimiter.prototype.getPrecise = function (num) {\n return parseFloat(num.toFixed(8));\n };\n return DefaultRateLimiter;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js ***! \**********************************************************************************************************************************/ /*! exports provided: StandardRetryStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StandardRetryStrategy\", function() { return StandardRetryStrategy; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! uuid */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/index.js\");\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n/* harmony import */ var _defaultRetryQuota__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./defaultRetryQuota */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js\");\n/* harmony import */ var _delayDecider__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./delayDecider */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js\");\n/* harmony import */ var _retryDecider__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./retryDecider */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js\");\n\n\n\n\n\n\n\n\n\nvar StandardRetryStrategy = (function () {\n function StandardRetryStrategy(maxAttemptsProvider, options) {\n var _a, _b, _c;\n this.maxAttemptsProvider = maxAttemptsProvider;\n this.mode = _config__WEBPACK_IMPORTED_MODULE_4__[\"RETRY_MODES\"].STANDARD;\n this.retryDecider = (_a = options === null || options === void 0 ? void 0 : options.retryDecider) !== null && _a !== void 0 ? _a : _retryDecider__WEBPACK_IMPORTED_MODULE_8__[\"defaultRetryDecider\"];\n this.delayDecider = (_b = options === null || options === void 0 ? void 0 : options.delayDecider) !== null && _b !== void 0 ? _b : _delayDecider__WEBPACK_IMPORTED_MODULE_7__[\"defaultDelayDecider\"];\n this.retryQuota = (_c = options === null || options === void 0 ? void 0 : options.retryQuota) !== null && _c !== void 0 ? _c : Object(_defaultRetryQuota__WEBPACK_IMPORTED_MODULE_6__[\"getDefaultRetryQuota\"])(_constants__WEBPACK_IMPORTED_MODULE_5__[\"INITIAL_RETRY_TOKENS\"]);\n }\n StandardRetryStrategy.prototype.shouldRetry = function (error, attempts, maxAttempts) {\n return attempts < maxAttempts && this.retryDecider(error) && this.retryQuota.hasRetryTokens(error);\n };\n StandardRetryStrategy.prototype.getMaxAttempts = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var maxAttempts, error_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4, this.maxAttemptsProvider()];\n case 1:\n maxAttempts = _a.sent();\n return [3, 3];\n case 2:\n error_1 = _a.sent();\n maxAttempts = _config__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_MAX_ATTEMPTS\"];\n return [3, 3];\n case 3: return [2, maxAttempts];\n }\n });\n });\n };\n StandardRetryStrategy.prototype.retry = function (next, args, options) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var retryTokenAmount, attempts, totalDelay, maxAttempts, request, _loop_1, this_1, state_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n attempts = 0;\n totalDelay = 0;\n return [4, this.getMaxAttempts()];\n case 1:\n maxAttempts = _a.sent();\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_5__[\"INVOCATION_ID_HEADER\"]] = Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v4\"])();\n }\n _loop_1 = function () {\n var _b, response, output, e_1, err, delayFromDecider, delayFromResponse, delay_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _c.trys.push([0, 4, , 7]);\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_5__[\"REQUEST_HEADER\"]] = \"attempt=\".concat(attempts + 1, \"; max=\").concat(maxAttempts);\n }\n if (!(options === null || options === void 0 ? void 0 : options.beforeRequest)) return [3, 2];\n return [4, options.beforeRequest()];\n case 1:\n _c.sent();\n _c.label = 2;\n case 2: return [4, next(args)];\n case 3:\n _b = _c.sent(), response = _b.response, output = _b.output;\n if (options === null || options === void 0 ? void 0 : options.afterRequest) {\n options.afterRequest(response);\n }\n this_1.retryQuota.releaseRetryTokens(retryTokenAmount);\n output.$metadata.attempts = attempts + 1;\n output.$metadata.totalRetryDelay = totalDelay;\n return [2, { value: { response: response, output: output } }];\n case 4:\n e_1 = _c.sent();\n err = asSdkError(e_1);\n attempts++;\n if (!this_1.shouldRetry(err, attempts, maxAttempts)) return [3, 6];\n retryTokenAmount = this_1.retryQuota.retrieveRetryTokens(err);\n delayFromDecider = this_1.delayDecider(Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_2__[\"isThrottlingError\"])(err) ? _constants__WEBPACK_IMPORTED_MODULE_5__[\"THROTTLING_RETRY_DELAY_BASE\"] : _constants__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_RETRY_DELAY_BASE\"], attempts);\n delayFromResponse = getDelayFromRetryAfterHeader(err.$response);\n delay_1 = Math.max(delayFromResponse || 0, delayFromDecider);\n totalDelay += delay_1;\n return [4, new Promise(function (resolve) { return setTimeout(resolve, delay_1); })];\n case 5:\n _c.sent();\n return [2, \"continue\"];\n case 6:\n if (!err.$metadata) {\n err.$metadata = {};\n }\n err.$metadata.attempts = attempts;\n err.$metadata.totalRetryDelay = totalDelay;\n throw err;\n case 7: return [2];\n }\n });\n };\n this_1 = this;\n _a.label = 2;\n case 2:\n if (false) {}\n return [5, _loop_1()];\n case 3:\n state_1 = _a.sent();\n if (typeof state_1 === \"object\")\n return [2, state_1.value];\n return [3, 2];\n case 4: return [2];\n }\n });\n });\n };\n return StandardRetryStrategy;\n}());\n\nvar getDelayFromRetryAfterHeader = function (response) {\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"].isInstance(response))\n return;\n var retryAfterHeaderName = Object.keys(response.headers).find(function (key) { return key.toLowerCase() === \"retry-after\"; });\n if (!retryAfterHeaderName)\n return;\n var retryAfter = response.headers[retryAfterHeaderName];\n var retryAfterSeconds = Number(retryAfter);\n if (!Number.isNaN(retryAfterSeconds))\n return retryAfterSeconds * 1000;\n var retryAfterDate = new Date(retryAfter);\n return retryAfterDate.getTime() - Date.now();\n};\nvar asSdkError = function (error) {\n if (error instanceof Error)\n return error;\n if (error instanceof Object)\n return Object.assign(new Error(), error);\n if (typeof error === \"string\")\n return new Error(error);\n return new Error(\"AWS SDK error wrapper for \".concat(error));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/config.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/config.js ***! \*******************************************************************************************************************/ /*! exports provided: RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RETRY_MODES\", function() { return RETRY_MODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_ATTEMPTS\", function() { return DEFAULT_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_MODE\", function() { return DEFAULT_RETRY_MODE; });\nvar RETRY_MODES;\n(function (RETRY_MODES) {\n RETRY_MODES[\"STANDARD\"] = \"standard\";\n RETRY_MODES[\"ADAPTIVE\"] = \"adaptive\";\n})(RETRY_MODES || (RETRY_MODES = {}));\nvar DEFAULT_MAX_ATTEMPTS = 3;\nvar DEFAULT_RETRY_MODE = RETRY_MODES.STANDARD;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/config.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js ***! \***************************************************************************************************************************/ /*! exports provided: ENV_MAX_ATTEMPTS, CONFIG_MAX_ATTEMPTS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, ENV_RETRY_MODE, CONFIG_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_MAX_ATTEMPTS\", function() { return ENV_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_MAX_ATTEMPTS\", function() { return CONFIG_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\", function() { return NODE_MAX_ATTEMPT_CONFIG_OPTIONS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveRetryConfig\", function() { return resolveRetryConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_RETRY_MODE\", function() { return ENV_RETRY_MODE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_RETRY_MODE\", function() { return CONFIG_RETRY_MODE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_RETRY_MODE_CONFIG_OPTIONS\", function() { return NODE_RETRY_MODE_CONFIG_OPTIONS; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n/* harmony import */ var _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AdaptiveRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js\");\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./StandardRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js\");\n\n\n\n\n\nvar ENV_MAX_ATTEMPTS = \"AWS_MAX_ATTEMPTS\";\nvar CONFIG_MAX_ATTEMPTS = \"max_attempts\";\nvar NODE_MAX_ATTEMPT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n var value = env[ENV_MAX_ATTEMPTS];\n if (!value)\n return undefined;\n var maxAttempt = parseInt(value);\n if (Number.isNaN(maxAttempt)) {\n throw new Error(\"Environment variable \".concat(ENV_MAX_ATTEMPTS, \" mast be a number, got \\\"\").concat(value, \"\\\"\"));\n }\n return maxAttempt;\n },\n configFileSelector: function (profile) {\n var value = profile[CONFIG_MAX_ATTEMPTS];\n if (!value)\n return undefined;\n var maxAttempt = parseInt(value);\n if (Number.isNaN(maxAttempt)) {\n throw new Error(\"Shared config file entry \".concat(CONFIG_MAX_ATTEMPTS, \" mast be a number, got \\\"\").concat(value, \"\\\"\"));\n }\n return maxAttempt;\n },\n default: _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_MAX_ATTEMPTS\"],\n};\nvar resolveRetryConfig = function (input) {\n var _a;\n var maxAttempts = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])((_a = input.maxAttempts) !== null && _a !== void 0 ? _a : _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_MAX_ATTEMPTS\"]);\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { maxAttempts: maxAttempts, retryStrategy: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var retryMode;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (input.retryStrategy) {\n return [2, input.retryStrategy];\n }\n return [4, Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(input.retryMode)()];\n case 1:\n retryMode = _a.sent();\n if (retryMode === _config__WEBPACK_IMPORTED_MODULE_3__[\"RETRY_MODES\"].ADAPTIVE) {\n return [2, new _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_2__[\"AdaptiveRetryStrategy\"](maxAttempts)];\n }\n return [2, new _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_4__[\"StandardRetryStrategy\"](maxAttempts)];\n }\n });\n }); } });\n};\nvar ENV_RETRY_MODE = \"AWS_RETRY_MODE\";\nvar CONFIG_RETRY_MODE = \"retry_mode\";\nvar NODE_RETRY_MODE_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) { return env[ENV_RETRY_MODE]; },\n configFileSelector: function (profile) { return profile[CONFIG_RETRY_MODE]; },\n default: _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_RETRY_MODE\"],\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js ***! \**********************************************************************************************************************/ /*! exports provided: DEFAULT_RETRY_DELAY_BASE, MAXIMUM_RETRY_DELAY, THROTTLING_RETRY_DELAY_BASE, INITIAL_RETRY_TOKENS, RETRY_COST, TIMEOUT_RETRY_COST, NO_RETRY_INCREMENT, INVOCATION_ID_HEADER, REQUEST_HEADER */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_DELAY_BASE\", function() { return DEFAULT_RETRY_DELAY_BASE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAXIMUM_RETRY_DELAY\", function() { return MAXIMUM_RETRY_DELAY; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"THROTTLING_RETRY_DELAY_BASE\", function() { return THROTTLING_RETRY_DELAY_BASE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INITIAL_RETRY_TOKENS\", function() { return INITIAL_RETRY_TOKENS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RETRY_COST\", function() { return RETRY_COST; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TIMEOUT_RETRY_COST\", function() { return TIMEOUT_RETRY_COST; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NO_RETRY_INCREMENT\", function() { return NO_RETRY_INCREMENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INVOCATION_ID_HEADER\", function() { return INVOCATION_ID_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REQUEST_HEADER\", function() { return REQUEST_HEADER; });\nvar DEFAULT_RETRY_DELAY_BASE = 100;\nvar MAXIMUM_RETRY_DELAY = 20 * 1000;\nvar THROTTLING_RETRY_DELAY_BASE = 500;\nvar INITIAL_RETRY_TOKENS = 500;\nvar RETRY_COST = 5;\nvar TIMEOUT_RETRY_COST = 10;\nvar NO_RETRY_INCREMENT = 1;\nvar INVOCATION_ID_HEADER = \"amz-sdk-invocation-id\";\nvar REQUEST_HEADER = \"amz-sdk-request\";\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js ***! \******************************************************************************************************************************/ /*! exports provided: getDefaultRetryQuota */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getDefaultRetryQuota\", function() { return getDefaultRetryQuota; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n\nvar getDefaultRetryQuota = function (initialRetryTokens, options) {\n var _a, _b, _c;\n var MAX_CAPACITY = initialRetryTokens;\n var noRetryIncrement = (_a = options === null || options === void 0 ? void 0 : options.noRetryIncrement) !== null && _a !== void 0 ? _a : _constants__WEBPACK_IMPORTED_MODULE_0__[\"NO_RETRY_INCREMENT\"];\n var retryCost = (_b = options === null || options === void 0 ? void 0 : options.retryCost) !== null && _b !== void 0 ? _b : _constants__WEBPACK_IMPORTED_MODULE_0__[\"RETRY_COST\"];\n var timeoutRetryCost = (_c = options === null || options === void 0 ? void 0 : options.timeoutRetryCost) !== null && _c !== void 0 ? _c : _constants__WEBPACK_IMPORTED_MODULE_0__[\"TIMEOUT_RETRY_COST\"];\n var availableCapacity = initialRetryTokens;\n var getCapacityAmount = function (error) { return (error.name === \"TimeoutError\" ? timeoutRetryCost : retryCost); };\n var hasRetryTokens = function (error) { return getCapacityAmount(error) <= availableCapacity; };\n var retrieveRetryTokens = function (error) {\n if (!hasRetryTokens(error)) {\n throw new Error(\"No retry token available\");\n }\n var capacityAmount = getCapacityAmount(error);\n availableCapacity -= capacityAmount;\n return capacityAmount;\n };\n var releaseRetryTokens = function (capacityReleaseAmount) {\n availableCapacity += capacityReleaseAmount !== null && capacityReleaseAmount !== void 0 ? capacityReleaseAmount : noRetryIncrement;\n availableCapacity = Math.min(availableCapacity, MAX_CAPACITY);\n };\n return Object.freeze({\n hasRetryTokens: hasRetryTokens,\n retrieveRetryTokens: retrieveRetryTokens,\n releaseRetryTokens: releaseRetryTokens,\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js ***! \*************************************************************************************************************************/ /*! exports provided: defaultDelayDecider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultDelayDecider\", function() { return defaultDelayDecider; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n\nvar defaultDelayDecider = function (delayBase, attempts) {\n return Math.floor(Math.min(_constants__WEBPACK_IMPORTED_MODULE_0__[\"MAXIMUM_RETRY_DELAY\"], Math.random() * Math.pow(2, attempts) * delayBase));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/index.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/index.js ***! \******************************************************************************************************************/ /*! exports provided: AdaptiveRetryStrategy, DefaultRateLimiter, StandardRetryStrategy, RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, ENV_MAX_ATTEMPTS, CONFIG_MAX_ATTEMPTS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, ENV_RETRY_MODE, CONFIG_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, defaultDelayDecider, omitRetryHeadersMiddleware, omitRetryHeadersMiddlewareOptions, getOmitRetryHeadersPlugin, defaultRetryDecider, retryMiddleware, retryMiddlewareOptions, getRetryPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AdaptiveRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AdaptiveRetryStrategy\", function() { return _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_0__[\"AdaptiveRetryStrategy\"]; });\n\n/* harmony import */ var _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./DefaultRateLimiter */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultRateLimiter\", function() { return _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_1__[\"DefaultRateLimiter\"]; });\n\n/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./StandardRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StandardRetryStrategy\", function() { return _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_2__[\"StandardRetryStrategy\"]; });\n\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RETRY_MODES\", function() { return _config__WEBPACK_IMPORTED_MODULE_3__[\"RETRY_MODES\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_ATTEMPTS\", function() { return _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_MODE\", function() { return _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_RETRY_MODE\"]; });\n\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_MAX_ATTEMPTS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"ENV_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_MAX_ATTEMPTS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"CONFIG_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRetryConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"resolveRetryConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_RETRY_MODE\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"ENV_RETRY_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_RETRY_MODE\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"CONFIG_RETRY_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_RETRY_MODE_CONFIG_OPTIONS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"NODE_RETRY_MODE_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _delayDecider__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./delayDecider */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultDelayDecider\", function() { return _delayDecider__WEBPACK_IMPORTED_MODULE_5__[\"defaultDelayDecider\"]; });\n\n/* harmony import */ var _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./omitRetryHeadersMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddleware\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__[\"omitRetryHeadersMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddlewareOptions\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__[\"omitRetryHeadersMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getOmitRetryHeadersPlugin\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__[\"getOmitRetryHeadersPlugin\"]; });\n\n/* harmony import */ var _retryDecider__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./retryDecider */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultRetryDecider\", function() { return _retryDecider__WEBPACK_IMPORTED_MODULE_7__[\"defaultRetryDecider\"]; });\n\n/* harmony import */ var _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./retryMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retryMiddleware\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__[\"retryMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retryMiddlewareOptions\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__[\"retryMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRetryPlugin\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__[\"getRetryPlugin\"]; });\n\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/types.js\");\n/* empty/unused harmony star reexport */\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js": /*!***************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js ***! \***************************************************************************************************************************************/ /*! exports provided: omitRetryHeadersMiddleware, omitRetryHeadersMiddlewareOptions, getOmitRetryHeadersPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddleware\", function() { return omitRetryHeadersMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddlewareOptions\", function() { return omitRetryHeadersMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getOmitRetryHeadersPlugin\", function() { return getOmitRetryHeadersPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n\n\n\nvar omitRetryHeadersMiddleware = function () {\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n delete request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"INVOCATION_ID_HEADER\"]];\n delete request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"REQUEST_HEADER\"]];\n }\n return [2, next(args)];\n });\n }); };\n };\n};\nvar omitRetryHeadersMiddlewareOptions = {\n name: \"omitRetryHeadersMiddleware\",\n tags: [\"RETRY\", \"HEADERS\", \"OMIT_RETRY_HEADERS\"],\n relation: \"before\",\n toMiddleware: \"awsAuthMiddleware\",\n override: true,\n};\nvar getOmitRetryHeadersPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(omitRetryHeadersMiddleware(), omitRetryHeadersMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js ***! \*************************************************************************************************************************/ /*! exports provided: defaultRetryDecider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRetryDecider\", function() { return defaultRetryDecider; });\n/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/index.js\");\n\nvar defaultRetryDecider = function (error) {\n if (!error) {\n return false;\n }\n return Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isRetryableByTrait\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isClockSkewError\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isThrottlingError\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isTransientError\"])(error);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js ***! \****************************************************************************************************************************/ /*! exports provided: retryMiddleware, retryMiddlewareOptions, getRetryPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"retryMiddleware\", function() { return retryMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"retryMiddlewareOptions\", function() { return retryMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRetryPlugin\", function() { return getRetryPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar retryMiddleware = function (options) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var retryStrategy;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, options.retryStrategy()];\n case 1:\n retryStrategy = _a.sent();\n if (retryStrategy === null || retryStrategy === void 0 ? void 0 : retryStrategy.mode)\n context.userAgent = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])((context.userAgent || [])), false), [[\"cfg/retry-mode\", retryStrategy.mode]], false);\n return [2, retryStrategy.retry(next, args)];\n }\n });\n }); };\n };\n};\nvar retryMiddlewareOptions = {\n name: \"retryMiddleware\",\n tags: [\"RETRY\"],\n step: \"finalizeRequest\",\n priority: \"high\",\n override: true,\n};\nvar getRetryPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(retryMiddleware(options), retryMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/types.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/types.js ***! \******************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-retry/dist-es/types.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js": /*!***********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js ***! \***********************************************************************************************************************************/ /*! exports provided: deserializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddleware\", function() { return deserializerMiddleware; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar deserializerMiddleware = function (options, deserializer) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response, parsed, error_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, next(args)];\n case 1:\n response = (_a.sent()).response;\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4, deserializer(response, options)];\n case 3:\n parsed = _a.sent();\n return [2, {\n response: response,\n output: parsed,\n }];\n case 4:\n error_1 = _a.sent();\n Object.defineProperty(error_1, \"$response\", {\n value: response,\n });\n throw error_1;\n case 5: return [2];\n }\n });\n }); };\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/index.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/index.js ***! \******************************************************************************************************************/ /*! exports provided: deserializerMiddleware, deserializerMiddlewareOption, serializerMiddlewareOption, getSerdePlugin, serializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./deserializerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddleware\", function() { return _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"deserializerMiddleware\"]; });\n\n/* harmony import */ var _serdePlugin__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./serdePlugin */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddlewareOption\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_1__[\"deserializerMiddlewareOption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddlewareOption\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_1__[\"serializerMiddlewareOption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSerdePlugin\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"]; });\n\n/* harmony import */ var _serializerMiddleware__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./serializerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddleware\", function() { return _serializerMiddleware__WEBPACK_IMPORTED_MODULE_2__[\"serializerMiddleware\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js ***! \************************************************************************************************************************/ /*! exports provided: deserializerMiddlewareOption, serializerMiddlewareOption, getSerdePlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddlewareOption\", function() { return deserializerMiddlewareOption; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddlewareOption\", function() { return serializerMiddlewareOption; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSerdePlugin\", function() { return getSerdePlugin; });\n/* harmony import */ var _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./deserializerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js\");\n/* harmony import */ var _serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./serializerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js\");\n\n\nvar deserializerMiddlewareOption = {\n name: \"deserializerMiddleware\",\n step: \"deserialize\",\n tags: [\"DESERIALIZER\"],\n override: true,\n};\nvar serializerMiddlewareOption = {\n name: \"serializerMiddleware\",\n step: \"serialize\",\n tags: [\"SERIALIZER\"],\n override: true,\n};\nfunction getSerdePlugin(config, serializer, deserializer) {\n return {\n applyToStack: function (commandStack) {\n commandStack.add(Object(_deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"deserializerMiddleware\"])(config, deserializer), deserializerMiddlewareOption);\n commandStack.add(Object(_serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"serializerMiddleware\"])(config, serializer), serializerMiddlewareOption);\n },\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js": /*!*********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js ***! \*********************************************************************************************************************************/ /*! exports provided: serializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddleware\", function() { return serializerMiddleware; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar serializerMiddleware = function (options, serializer) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var endpoint, request;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n endpoint = ((_a = context.endpointV2) === null || _a === void 0 ? void 0 : _a.url) && options.urlParser\n ? function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, options.urlParser(context.endpointV2.url)];\n }); }); }\n : options.endpoint;\n if (!endpoint) {\n throw new Error(\"No valid endpoint provider available.\");\n }\n return [4, serializer(args.input, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, options), { endpoint: endpoint }))];\n case 1:\n request = _b.sent();\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n }); };\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js ***! \*****************************************************************************************************************************/ /*! exports provided: resolveAwsAuthConfig, resolveSigV4AuthConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveAwsAuthConfig\", function() { return resolveAwsAuthConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveSigV4AuthConfig\", function() { return resolveSigV4AuthConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/property-provider */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/signature-v4 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n\n\n\n\nvar CREDENTIAL_EXPIRE_WINDOW = 300000;\nvar resolveAwsAuthConfig = function (input) {\n var normalizedCreds = input.credentials\n ? normalizeCredentialProvider(input.credentials)\n : input.credentialDefaultProvider(input);\n var _a = input.signingEscapePath, signingEscapePath = _a === void 0 ? true : _a, _b = input.systemClockOffset, systemClockOffset = _b === void 0 ? input.systemClockOffset || 0 : _b, sha256 = input.sha256;\n var signer;\n if (input.signer) {\n signer = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(input.signer);\n }\n else if (input.regionInfoProvider) {\n signer = function () {\n return Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(input.region)()\n .then(function (region) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, _b, _c;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _b = (_a = input).regionInfoProvider;\n _c = [region];\n _d = {};\n return [4, input.useFipsEndpoint()];\n case 1:\n _d.useFipsEndpoint = _e.sent();\n return [4, input.useDualstackEndpoint()];\n case 2: return [4, _b.apply(_a, _c.concat([(_d.useDualstackEndpoint = _e.sent(),\n _d)]))];\n case 3: return [2, [\n (_e.sent()) || {},\n region\n ]];\n }\n });\n }); })\n .then(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), regionInfo = _b[0], region = _b[1];\n var signingRegion = regionInfo.signingRegion, signingService = regionInfo.signingService;\n input.signingRegion = input.signingRegion || signingRegion || region;\n input.signingName = input.signingName || signingService || input.serviceId;\n var params = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { credentials: normalizedCreds, region: input.signingRegion, service: input.signingName, sha256: sha256, uriEscapePath: signingEscapePath });\n var SignerCtor = input.signerConstructor || _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__[\"SignatureV4\"];\n return new SignerCtor(params);\n });\n };\n }\n else {\n signer = function (authScheme) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var signingRegion, signingService, params, SignerCtor;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (!authScheme) {\n throw new Error(\"Unexpected empty auth scheme config\");\n }\n signingRegion = authScheme.signingScope;\n signingService = authScheme.signingName;\n input.signingRegion = input.signingRegion || signingRegion;\n input.signingName = input.signingName || signingService || input.serviceId;\n params = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { credentials: normalizedCreds, region: input.signingRegion, service: input.signingName, sha256: sha256, uriEscapePath: signingEscapePath });\n SignerCtor = input.signerConstructor || _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__[\"SignatureV4\"];\n return [2, new SignerCtor(params)];\n });\n }); };\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { systemClockOffset: systemClockOffset, signingEscapePath: signingEscapePath, credentials: normalizedCreds, signer: signer });\n};\nvar resolveSigV4AuthConfig = function (input) {\n var normalizedCreds = input.credentials\n ? normalizeCredentialProvider(input.credentials)\n : input.credentialDefaultProvider(input);\n var _a = input.signingEscapePath, signingEscapePath = _a === void 0 ? true : _a, _b = input.systemClockOffset, systemClockOffset = _b === void 0 ? input.systemClockOffset || 0 : _b, sha256 = input.sha256;\n var signer;\n if (input.signer) {\n signer = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(input.signer);\n }\n else {\n signer = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(new _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__[\"SignatureV4\"]({\n credentials: normalizedCreds,\n region: input.region,\n service: input.signingName,\n sha256: sha256,\n uriEscapePath: signingEscapePath,\n }));\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { systemClockOffset: systemClockOffset, signingEscapePath: signingEscapePath, credentials: normalizedCreds, signer: signer });\n};\nvar normalizeCredentialProvider = function (credentials) {\n if (typeof credentials === \"function\") {\n return Object(_aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_1__[\"memoize\"])(credentials, function (credentials) {\n return credentials.expiration !== undefined &&\n credentials.expiration.getTime() - Date.now() < CREDENTIAL_EXPIRE_WINDOW;\n }, function (credentials) { return credentials.expiration !== undefined; });\n }\n return Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(credentials);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/index.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/index.js ***! \********************************************************************************************************************/ /*! exports provided: resolveAwsAuthConfig, resolveSigV4AuthConfig, awsAuthMiddleware, awsAuthMiddlewareOptions, getAwsAuthPlugin, getSigV4AuthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveAwsAuthConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveAwsAuthConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveSigV4AuthConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveSigV4AuthConfig\"]; });\n\n/* harmony import */ var _middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./middleware */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddleware\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"awsAuthMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddlewareOptions\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"awsAuthMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getAwsAuthPlugin\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"getAwsAuthPlugin\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSigV4AuthPlugin\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"getSigV4AuthPlugin\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js ***! \*************************************************************************************************************************/ /*! exports provided: awsAuthMiddleware, awsAuthMiddlewareOptions, getAwsAuthPlugin, getSigV4AuthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddleware\", function() { return awsAuthMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddlewareOptions\", function() { return awsAuthMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getAwsAuthPlugin\", function() { return getAwsAuthPlugin; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSigV4AuthPlugin\", function() { return getSigV4AuthPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _utils_getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/getSkewCorrectedDate */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js\");\n/* harmony import */ var _utils_getUpdatedSystemClockOffset__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/getUpdatedSystemClockOffset */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js\");\n\n\n\n\nvar awsAuthMiddleware = function (options) {\n return function (next, context) {\n return function (args) {\n var _a, _b, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var authScheme, signer, output, _d, _e, dateHeader;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(args.request))\n return [2, next(args)];\n authScheme = (_c = (_b = (_a = (context.endpointV2)) === null || _a === void 0 ? void 0 : _a.properties) === null || _b === void 0 ? void 0 : _b.authSchemes) === null || _c === void 0 ? void 0 : _c[0];\n return [4, options.signer(authScheme)];\n case 1:\n signer = _g.sent();\n _d = next;\n _e = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args)];\n _f = {};\n return [4, signer.sign(args.request, {\n signingDate: Object(_utils_getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_2__[\"getSkewCorrectedDate\"])(options.systemClockOffset),\n signingRegion: context[\"signing_region\"],\n signingService: context[\"signing_service\"],\n })];\n case 2: return [4, _d.apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_f.request = _g.sent(), _f)]))]).catch(function (error) {\n var _a;\n var serverTime = (_a = error.ServerTime) !== null && _a !== void 0 ? _a : getDateHeader(error.$response);\n if (serverTime) {\n options.systemClockOffset = Object(_utils_getUpdatedSystemClockOffset__WEBPACK_IMPORTED_MODULE_3__[\"getUpdatedSystemClockOffset\"])(serverTime, options.systemClockOffset);\n }\n throw error;\n })];\n case 3:\n output = _g.sent();\n dateHeader = getDateHeader(output.response);\n if (dateHeader) {\n options.systemClockOffset = Object(_utils_getUpdatedSystemClockOffset__WEBPACK_IMPORTED_MODULE_3__[\"getUpdatedSystemClockOffset\"])(dateHeader, options.systemClockOffset);\n }\n return [2, output];\n }\n });\n });\n };\n };\n};\nvar getDateHeader = function (response) { var _a, _b, _c; return _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"].isInstance(response) ? (_b = (_a = response.headers) === null || _a === void 0 ? void 0 : _a.date) !== null && _b !== void 0 ? _b : (_c = response.headers) === null || _c === void 0 ? void 0 : _c.Date : undefined; };\nvar awsAuthMiddlewareOptions = {\n name: \"awsAuthMiddleware\",\n tags: [\"SIGNATURE\", \"AWSAUTH\"],\n relation: \"after\",\n toMiddleware: \"retryMiddleware\",\n override: true,\n};\nvar getAwsAuthPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(awsAuthMiddleware(options), awsAuthMiddlewareOptions);\n },\n}); };\nvar getSigV4AuthPlugin = getAwsAuthPlugin;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js": /*!*****************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js ***! \*****************************************************************************************************************************************/ /*! exports provided: getSkewCorrectedDate */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSkewCorrectedDate\", function() { return getSkewCorrectedDate; });\nvar getSkewCorrectedDate = function (systemClockOffset) { return new Date(Date.now() + systemClockOffset); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js": /*!************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js ***! \************************************************************************************************************************************************/ /*! exports provided: getUpdatedSystemClockOffset */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUpdatedSystemClockOffset\", function() { return getUpdatedSystemClockOffset; });\n/* harmony import */ var _isClockSkewed__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isClockSkewed */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js\");\n\nvar getUpdatedSystemClockOffset = function (clockTime, currentSystemClockOffset) {\n var clockTimeInMs = Date.parse(clockTime);\n if (Object(_isClockSkewed__WEBPACK_IMPORTED_MODULE_0__[\"isClockSkewed\"])(clockTimeInMs, currentSystemClockOffset)) {\n return clockTimeInMs - Date.now();\n }\n return currentSystemClockOffset;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js ***! \**********************************************************************************************************************************/ /*! exports provided: isClockSkewed */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isClockSkewed\", function() { return isClockSkewed; });\n/* harmony import */ var _getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getSkewCorrectedDate */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js\");\n\nvar isClockSkewed = function (clockTime, systemClockOffset) {\n return Math.abs(Object(_getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_0__[\"getSkewCorrectedDate\"])(systemClockOffset).getTime() - clockTime) >= 300000;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js ***! \****************************************************************************************************************************/ /*! exports provided: constructStack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"constructStack\", function() { return constructStack; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar constructStack = function () {\n var absoluteEntries = [];\n var relativeEntries = [];\n var entriesNameSet = new Set();\n var sort = function (entries) {\n return entries.sort(function (a, b) {\n return stepWeights[b.step] - stepWeights[a.step] ||\n priorityWeights[b.priority || \"normal\"] - priorityWeights[a.priority || \"normal\"];\n });\n };\n var removeByName = function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n if (entry.name && entry.name === toRemove) {\n isRemoved = true;\n entriesNameSet.delete(toRemove);\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n };\n var removeByReference = function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n if (entry.middleware === toRemove) {\n isRemoved = true;\n if (entry.name)\n entriesNameSet.delete(entry.name);\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n };\n var cloneTo = function (toStack) {\n absoluteEntries.forEach(function (entry) {\n toStack.add(entry.middleware, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry));\n });\n relativeEntries.forEach(function (entry) {\n toStack.addRelativeTo(entry.middleware, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry));\n });\n return toStack;\n };\n var expandRelativeMiddlewareList = function (from) {\n var expandedMiddlewareList = [];\n from.before.forEach(function (entry) {\n if (entry.before.length === 0 && entry.after.length === 0) {\n expandedMiddlewareList.push(entry);\n }\n else {\n expandedMiddlewareList.push.apply(expandedMiddlewareList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(expandRelativeMiddlewareList(entry)), false));\n }\n });\n expandedMiddlewareList.push(from);\n from.after.reverse().forEach(function (entry) {\n if (entry.before.length === 0 && entry.after.length === 0) {\n expandedMiddlewareList.push(entry);\n }\n else {\n expandedMiddlewareList.push.apply(expandedMiddlewareList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(expandRelativeMiddlewareList(entry)), false));\n }\n });\n return expandedMiddlewareList;\n };\n var getMiddlewareList = function (debug) {\n if (debug === void 0) { debug = false; }\n var normalizedAbsoluteEntries = [];\n var normalizedRelativeEntries = [];\n var normalizedEntriesNameMap = {};\n absoluteEntries.forEach(function (entry) {\n var normalizedEntry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry), { before: [], after: [] });\n if (normalizedEntry.name)\n normalizedEntriesNameMap[normalizedEntry.name] = normalizedEntry;\n normalizedAbsoluteEntries.push(normalizedEntry);\n });\n relativeEntries.forEach(function (entry) {\n var normalizedEntry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry), { before: [], after: [] });\n if (normalizedEntry.name)\n normalizedEntriesNameMap[normalizedEntry.name] = normalizedEntry;\n normalizedRelativeEntries.push(normalizedEntry);\n });\n normalizedRelativeEntries.forEach(function (entry) {\n if (entry.toMiddleware) {\n var toMiddleware = normalizedEntriesNameMap[entry.toMiddleware];\n if (toMiddleware === undefined) {\n if (debug) {\n return;\n }\n throw new Error(\"\".concat(entry.toMiddleware, \" is not found when adding \").concat(entry.name || \"anonymous\", \" middleware \").concat(entry.relation, \" \").concat(entry.toMiddleware));\n }\n if (entry.relation === \"after\") {\n toMiddleware.after.push(entry);\n }\n if (entry.relation === \"before\") {\n toMiddleware.before.push(entry);\n }\n }\n });\n var mainChain = sort(normalizedAbsoluteEntries)\n .map(expandRelativeMiddlewareList)\n .reduce(function (wholeList, expendedMiddlewareList) {\n wholeList.push.apply(wholeList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(expendedMiddlewareList), false));\n return wholeList;\n }, []);\n return mainChain;\n };\n var stack = {\n add: function (middleware, options) {\n if (options === void 0) { options = {}; }\n var name = options.name, override = options.override;\n var entry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ step: \"initialize\", priority: \"normal\", middleware: middleware }, options);\n if (name) {\n if (entriesNameSet.has(name)) {\n if (!override)\n throw new Error(\"Duplicate middleware name '\".concat(name, \"'\"));\n var toOverrideIndex = absoluteEntries.findIndex(function (entry) { return entry.name === name; });\n var toOverride = absoluteEntries[toOverrideIndex];\n if (toOverride.step !== entry.step || toOverride.priority !== entry.priority) {\n throw new Error(\"\\\"\".concat(name, \"\\\" middleware with \").concat(toOverride.priority, \" priority in \").concat(toOverride.step, \" step cannot be \") +\n \"overridden by same-name middleware with \".concat(entry.priority, \" priority in \").concat(entry.step, \" step.\"));\n }\n absoluteEntries.splice(toOverrideIndex, 1);\n }\n entriesNameSet.add(name);\n }\n absoluteEntries.push(entry);\n },\n addRelativeTo: function (middleware, options) {\n var name = options.name, override = options.override;\n var entry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ middleware: middleware }, options);\n if (name) {\n if (entriesNameSet.has(name)) {\n if (!override)\n throw new Error(\"Duplicate middleware name '\".concat(name, \"'\"));\n var toOverrideIndex = relativeEntries.findIndex(function (entry) { return entry.name === name; });\n var toOverride = relativeEntries[toOverrideIndex];\n if (toOverride.toMiddleware !== entry.toMiddleware || toOverride.relation !== entry.relation) {\n throw new Error(\"\\\"\".concat(name, \"\\\" middleware \").concat(toOverride.relation, \" \\\"\").concat(toOverride.toMiddleware, \"\\\" middleware cannot be overridden \") +\n \"by same-name middleware \".concat(entry.relation, \" \\\"\").concat(entry.toMiddleware, \"\\\" middleware.\"));\n }\n relativeEntries.splice(toOverrideIndex, 1);\n }\n entriesNameSet.add(name);\n }\n relativeEntries.push(entry);\n },\n clone: function () { return cloneTo(constructStack()); },\n use: function (plugin) {\n plugin.applyToStack(stack);\n },\n remove: function (toRemove) {\n if (typeof toRemove === \"string\")\n return removeByName(toRemove);\n else\n return removeByReference(toRemove);\n },\n removeByTag: function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n var tags = entry.tags, name = entry.name;\n if (tags && tags.includes(toRemove)) {\n if (name)\n entriesNameSet.delete(name);\n isRemoved = true;\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n },\n concat: function (from) {\n var cloned = cloneTo(constructStack());\n cloned.use(from);\n return cloned;\n },\n applyToStack: cloneTo,\n identify: function () {\n return getMiddlewareList(true).map(function (mw) {\n return mw.name + \": \" + (mw.tags || []).join(\",\");\n });\n },\n resolve: function (handler, context) {\n var e_1, _a;\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(getMiddlewareList()\n .map(function (entry) { return entry.middleware; })\n .reverse()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var middleware = _c.value;\n handler = middleware(handler, context);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return handler;\n },\n };\n return stack;\n};\nvar stepWeights = {\n initialize: 5,\n serialize: 4,\n build: 3,\n finalizeRequest: 2,\n deserialize: 1,\n};\nvar priorityWeights = {\n high: 3,\n normal: 2,\n low: 1,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-stack/dist-es/index.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-stack/dist-es/index.js ***! \******************************************************************************************************************/ /*! exports provided: constructStack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _MiddlewareStack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./MiddlewareStack */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"constructStack\", function() { return _MiddlewareStack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-stack/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js": /*!********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js ***! \********************************************************************************************************************************/ /*! exports provided: resolveUserAgentConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveUserAgentConfig\", function() { return resolveUserAgentConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nfunction resolveUserAgentConfig(input) {\n 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 });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js ***! \***************************************************************************************************************************/ /*! exports provided: USER_AGENT, X_AMZ_USER_AGENT, SPACE, UA_ESCAPE_REGEX */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"USER_AGENT\", function() { return USER_AGENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"X_AMZ_USER_AGENT\", function() { return X_AMZ_USER_AGENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SPACE\", function() { return SPACE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UA_ESCAPE_REGEX\", function() { return UA_ESCAPE_REGEX; });\nvar USER_AGENT = \"user-agent\";\nvar X_AMZ_USER_AGENT = \"x-amz-user-agent\";\nvar SPACE = \" \";\nvar UA_ESCAPE_REGEX = /[^\\!\\#\\$\\%\\&\\'\\*\\+\\-\\.\\^\\_\\`\\|\\~\\d\\w]/g;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js ***! \***********************************************************************************************************************/ /*! exports provided: resolveUserAgentConfig, userAgentMiddleware, getUserAgentMiddlewareOptions, getUserAgentPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveUserAgentConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveUserAgentConfig\"]; });\n\n/* harmony import */ var _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./user-agent-middleware */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"userAgentMiddleware\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"userAgentMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentMiddlewareOptions\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"getUserAgentMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentPlugin\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"getUserAgentPlugin\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js": /*!***************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js ***! \***************************************************************************************************************************************/ /*! exports provided: userAgentMiddleware, getUserAgentMiddlewareOptions, getUserAgentPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"userAgentMiddleware\", function() { return userAgentMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentMiddlewareOptions\", function() { return getUserAgentMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentPlugin\", function() { return getUserAgentPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js\");\n\n\n\nvar userAgentMiddleware = function (options) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, headers, userAgent, defaultUserAgent, customUserAgent, sdkUserAgentValue, normalUAValue;\n var _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request))\n return [2, next(args)];\n headers = request.headers;\n userAgent = ((_a = context === null || context === void 0 ? void 0 : context.userAgent) === null || _a === void 0 ? void 0 : _a.map(escapeUserAgent)) || [];\n return [4, options.defaultUserAgentProvider()];\n case 1:\n defaultUserAgent = (_c.sent()).map(escapeUserAgent);\n customUserAgent = ((_b = options === null || options === void 0 ? void 0 : options.customUserAgent) === null || _b === void 0 ? void 0 : _b.map(escapeUserAgent)) || [];\n sdkUserAgentValue = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(defaultUserAgent), false), Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(userAgent), false), Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(customUserAgent), false).join(_constants__WEBPACK_IMPORTED_MODULE_2__[\"SPACE\"]);\n normalUAValue = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(defaultUserAgent.filter(function (section) { return section.startsWith(\"aws-sdk-\"); })), false), Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(customUserAgent), false).join(_constants__WEBPACK_IMPORTED_MODULE_2__[\"SPACE\"]);\n if (options.runtime !== \"browser\") {\n if (normalUAValue) {\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]] = headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]]\n ? \"\".concat(headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"USER_AGENT\"]], \" \").concat(normalUAValue)\n : normalUAValue;\n }\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"USER_AGENT\"]] = sdkUserAgentValue;\n }\n else {\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]] = sdkUserAgentValue;\n }\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n }); };\n };\n};\nvar escapeUserAgent = function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), name = _b[0], version = _b[1];\n var prefixSeparatorIndex = name.indexOf(\"/\");\n var prefix = name.substring(0, prefixSeparatorIndex);\n var uaName = name.substring(prefixSeparatorIndex + 1);\n if (prefix === \"api\") {\n uaName = uaName.toLowerCase();\n }\n return [prefix, uaName, version]\n .filter(function (item) { return item && item.length > 0; })\n .map(function (item) { return item === null || item === void 0 ? void 0 : item.replace(_constants__WEBPACK_IMPORTED_MODULE_2__[\"UA_ESCAPE_REGEX\"], \"_\"); })\n .join(\"/\");\n};\nvar getUserAgentMiddlewareOptions = {\n name: \"getUserAgentMiddleware\",\n step: \"build\",\n priority: \"low\",\n tags: [\"SET_USER_AGENT\", \"USER_AGENT\"],\n override: true,\n};\nvar getUserAgentPlugin = function (config) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(userAgentMiddleware(config), getUserAgentMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js": /*!**************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js ***! \**************************************************************************************************************************************/ /*! exports provided: CredentialsProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CredentialsProviderError\", function() { return CredentialsProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n\n\nvar CredentialsProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CredentialsProviderError, _super);\n function CredentialsProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message, tryNextLink) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"CredentialsProviderError\";\n Object.setPrototypeOf(_this, CredentialsProviderError.prototype);\n return _this;\n }\n return CredentialsProviderError;\n}(_ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js ***! \***************************************************************************************************************************/ /*! exports provided: ProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return ProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar ProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ProviderError, _super);\n function ProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"ProviderError\";\n Object.setPrototypeOf(_this, ProviderError.prototype);\n return _this;\n }\n ProviderError.from = function (error, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n return Object.assign(new this(error.message, tryNextLink), error);\n };\n return ProviderError;\n}(Error));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js": /*!********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js ***! \********************************************************************************************************************************/ /*! exports provided: TokenProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TokenProviderError\", function() { return TokenProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n\n\nvar TokenProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TokenProviderError, _super);\n function TokenProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message, tryNextLink) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"TokenProviderError\";\n Object.setPrototypeOf(_this, TokenProviderError.prototype);\n return _this;\n }\n return TokenProviderError;\n}(_ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/chain.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/chain.js ***! \*******************************************************************************************************************/ /*! exports provided: chain */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return chain; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n\n\nfunction chain() {\n var providers = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n providers[_i] = arguments[_i];\n }\n return function () {\n var e_1, _a;\n var promise = Promise.reject(new _ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"](\"No providers in chain\"));\n var _loop_1 = function (provider) {\n promise = promise.catch(function (err) {\n if (err === null || err === void 0 ? void 0 : err.tryNextLink) {\n return provider();\n }\n throw err;\n });\n };\n try {\n for (var providers_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(providers), providers_1_1 = providers_1.next(); !providers_1_1.done; providers_1_1 = providers_1.next()) {\n var provider = providers_1_1.value;\n _loop_1(provider);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (providers_1_1 && !providers_1_1.done && (_a = providers_1.return)) _a.call(providers_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return promise;\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/chain.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js ***! \************************************************************************************************************************/ /*! exports provided: fromStatic */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return fromStatic; });\nvar fromStatic = function (staticValue) {\n return function () {\n return Promise.resolve(staticValue);\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/index.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/index.js ***! \*******************************************************************************************************************/ /*! exports provided: CredentialsProviderError, ProviderError, TokenProviderError, chain, fromStatic, memoize */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _CredentialsProviderError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CredentialsProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CredentialsProviderError\", function() { return _CredentialsProviderError__WEBPACK_IMPORTED_MODULE_0__[\"CredentialsProviderError\"]; });\n\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return _ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]; });\n\n/* harmony import */ var _TokenProviderError__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./TokenProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TokenProviderError\", function() { return _TokenProviderError__WEBPACK_IMPORTED_MODULE_2__[\"TokenProviderError\"]; });\n\n/* harmony import */ var _chain__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./chain */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/chain.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return _chain__WEBPACK_IMPORTED_MODULE_3__[\"chain\"]; });\n\n/* harmony import */ var _fromStatic__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./fromStatic */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return _fromStatic__WEBPACK_IMPORTED_MODULE_4__[\"fromStatic\"]; });\n\n/* harmony import */ var _memoize__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./memoize */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/memoize.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return _memoize__WEBPACK_IMPORTED_MODULE_5__[\"memoize\"]; });\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/memoize.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/memoize.js ***! \*********************************************************************************************************************/ /*! exports provided: memoize */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return memoize; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar memoize = function (provider, isExpired, requiresRefresh) {\n var resolved;\n var pending;\n var hasResult;\n var isConstant = false;\n var coalesceProvider = function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!pending) {\n pending = provider();\n }\n _a.label = 1;\n case 1:\n _a.trys.push([1, , 3, 4]);\n return [4, pending];\n case 2:\n resolved = _a.sent();\n hasResult = true;\n isConstant = false;\n return [3, 4];\n case 3:\n pending = undefined;\n return [7];\n case 4: return [2, resolved];\n }\n });\n }); };\n if (isExpired === undefined) {\n return function (options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(!hasResult || (options === null || options === void 0 ? void 0 : options.forceRefresh))) return [3, 2];\n return [4, coalesceProvider()];\n case 1:\n resolved = _a.sent();\n _a.label = 2;\n case 2: return [2, resolved];\n }\n });\n }); };\n }\n return function (options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(!hasResult || (options === null || options === void 0 ? void 0 : options.forceRefresh))) return [3, 2];\n return [4, coalesceProvider()];\n case 1:\n resolved = _a.sent();\n _a.label = 2;\n case 2:\n if (isConstant) {\n return [2, resolved];\n }\n if (requiresRefresh && !requiresRefresh(resolved)) {\n isConstant = true;\n return [2, resolved];\n }\n if (!isExpired(resolved)) return [3, 4];\n return [4, coalesceProvider()];\n case 3:\n _a.sent();\n return [2, resolved];\n case 4: return [2, resolved];\n }\n });\n }); };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/property-provider/dist-es/memoize.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js ***! \*********************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js ***! \*********************************************************************************************************************/ /*! exports provided: HttpRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return HttpRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar HttpRequest = (function () {\n function HttpRequest(options) {\n this.method = options.method || \"GET\";\n this.hostname = options.hostname || \"localhost\";\n this.port = options.port;\n this.query = options.query || {};\n this.headers = options.headers || {};\n this.body = options.body;\n this.protocol = options.protocol\n ? options.protocol.slice(-1) !== \":\"\n ? \"\".concat(options.protocol, \":\")\n : options.protocol\n : \"https:\";\n this.path = options.path ? (options.path.charAt(0) !== \"/\" ? \"/\".concat(options.path) : options.path) : \"/\";\n }\n HttpRequest.isInstance = function (request) {\n if (!request)\n return false;\n var req = request;\n return (\"method\" in req &&\n \"protocol\" in req &&\n \"hostname\" in req &&\n \"path\" in req &&\n typeof req[\"query\"] === \"object\" &&\n typeof req[\"headers\"] === \"object\");\n };\n HttpRequest.prototype.clone = function () {\n var cloned = new HttpRequest(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this.headers) }));\n if (cloned.query)\n cloned.query = cloneQuery(cloned.query);\n return cloned;\n };\n return HttpRequest;\n}());\n\nfunction cloneQuery(query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(param), false) : param, _a));\n }, {});\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js ***! \**********************************************************************************************************************/ /*! exports provided: HttpResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return HttpResponse; });\nvar HttpResponse = (function () {\n function HttpResponse(options) {\n this.statusCode = options.statusCode;\n this.headers = options.headers || {};\n this.body = options.body;\n }\n HttpResponse.isInstance = function (response) {\n if (!response)\n return false;\n var resp = response;\n return typeof resp.statusCode === \"number\" && typeof resp.headers === \"object\";\n };\n return HttpResponse;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js ***! \***************************************************************************************************************/ /*! exports provided: HttpRequest, HttpResponse, isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _httpHandler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./httpHandler */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _httpRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./httpRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return _httpRequest__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]; });\n\n/* harmony import */ var _httpResponse__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./httpResponse */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return _httpResponse__WEBPACK_IMPORTED_MODULE_2__[\"HttpResponse\"]; });\n\n/* harmony import */ var _isValidHostname__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isValidHostname */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return _isValidHostname__WEBPACK_IMPORTED_MODULE_3__[\"isValidHostname\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js ***! \*************************************************************************************************************************/ /*! exports provided: isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return isValidHostname; });\nfunction isValidHostname(hostname) {\n var hostPattern = /^[a-z0-9][a-z0-9\\.\\-]*[a-z0-9]$/;\n return hostPattern.test(hostname);\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/querystring-builder/dist-es/index.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/querystring-builder/dist-es/index.js ***! \*********************************************************************************************************************/ /*! exports provided: buildQueryString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildQueryString\", function() { return buildQueryString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-uri-escape */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js\");\n\n\nfunction buildQueryString(query) {\n var e_1, _a;\n var parts = [];\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(query).sort()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n var value = query[key];\n key = Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key);\n if (Array.isArray(value)) {\n for (var i = 0, iLen = value.length; i < iLen; i++) {\n parts.push(\"\".concat(key, \"=\").concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value[i])));\n }\n }\n else {\n var qsEntry = key;\n if (value || typeof value === \"string\") {\n qsEntry += \"=\".concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value));\n }\n parts.push(qsEntry);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return parts.join(\"&\");\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/querystring-builder/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/querystring-parser/dist-es/index.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/querystring-parser/dist-es/index.js ***! \********************************************************************************************************************/ /*! exports provided: parseQueryString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseQueryString\", function() { return parseQueryString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nfunction parseQueryString(querystring) {\n var e_1, _a;\n var query = {};\n querystring = querystring.replace(/^\\?/, \"\");\n if (querystring) {\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(querystring.split(\"&\")), _c = _b.next(); !_c.done; _c = _b.next()) {\n var pair = _c.value;\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(pair.split(\"=\"), 2), key = _d[0], _e = _d[1], value = _e === void 0 ? null : _e;\n key = decodeURIComponent(key);\n if (value) {\n value = decodeURIComponent(value);\n }\n if (!(key in query)) {\n query[key] = value;\n }\n else if (Array.isArray(query[key])) {\n query[key].push(value);\n }\n else {\n query[key] = [query[key], value];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n }\n return query;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/querystring-parser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js ***! \**********************************************************************************************************************************/ /*! exports provided: CLOCK_SKEW_ERROR_CODES, THROTTLING_ERROR_CODES, TRANSIENT_ERROR_CODES, TRANSIENT_ERROR_STATUS_CODES, NODEJS_TIMEOUT_ERROR_CODES */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CLOCK_SKEW_ERROR_CODES\", function() { return CLOCK_SKEW_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"THROTTLING_ERROR_CODES\", function() { return THROTTLING_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TRANSIENT_ERROR_CODES\", function() { return TRANSIENT_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TRANSIENT_ERROR_STATUS_CODES\", function() { return TRANSIENT_ERROR_STATUS_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODEJS_TIMEOUT_ERROR_CODES\", function() { return NODEJS_TIMEOUT_ERROR_CODES; });\nvar CLOCK_SKEW_ERROR_CODES = [\n \"AuthFailure\",\n \"InvalidSignatureException\",\n \"RequestExpired\",\n \"RequestInTheFuture\",\n \"RequestTimeTooSkewed\",\n \"SignatureDoesNotMatch\",\n];\nvar THROTTLING_ERROR_CODES = [\n \"BandwidthLimitExceeded\",\n \"EC2ThrottledException\",\n \"LimitExceededException\",\n \"PriorRequestNotComplete\",\n \"ProvisionedThroughputExceededException\",\n \"RequestLimitExceeded\",\n \"RequestThrottled\",\n \"RequestThrottledException\",\n \"SlowDown\",\n \"ThrottledException\",\n \"Throttling\",\n \"ThrottlingException\",\n \"TooManyRequestsException\",\n \"TransactionInProgressException\",\n];\nvar TRANSIENT_ERROR_CODES = [\"AbortError\", \"TimeoutError\", \"RequestTimeout\", \"RequestTimeoutException\"];\nvar TRANSIENT_ERROR_STATUS_CODES = [500, 502, 503, 504];\nvar NODEJS_TIMEOUT_ERROR_CODES = [\"ECONNRESET\", \"EPIPE\", \"ETIMEDOUT\"];\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/index.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/index.js ***! \******************************************************************************************************************************/ /*! exports provided: isRetryableByTrait, isClockSkewError, isThrottlingError, isTransientError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isRetryableByTrait\", function() { return isRetryableByTrait; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isClockSkewError\", function() { return isClockSkewError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isThrottlingError\", function() { return isThrottlingError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTransientError\", function() { return isTransientError; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js\");\n\nvar isRetryableByTrait = function (error) { return error.$retryable !== undefined; };\nvar isClockSkewError = function (error) { return _constants__WEBPACK_IMPORTED_MODULE_0__[\"CLOCK_SKEW_ERROR_CODES\"].includes(error.name); };\nvar isThrottlingError = function (error) {\n var _a, _b;\n return ((_a = error.$metadata) === null || _a === void 0 ? void 0 : _a.httpStatusCode) === 429 ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"THROTTLING_ERROR_CODES\"].includes(error.name) ||\n ((_b = error.$retryable) === null || _b === void 0 ? void 0 : _b.throttling) == true;\n};\nvar isTransientError = function (error) {\n var _a;\n return _constants__WEBPACK_IMPORTED_MODULE_0__[\"TRANSIENT_ERROR_CODES\"].includes(error.name) ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"NODEJS_TIMEOUT_ERROR_CODES\"].includes((error === null || error === void 0 ? void 0 : error.code) || \"\") ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"TRANSIENT_ERROR_STATUS_CODES\"].includes(((_a = error.$metadata) === null || _a === void 0 ? void 0 : _a.httpStatusCode) || 0);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/service-error-classification/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js ***! \********************************************************************************************************************/ /*! exports provided: SignatureV4 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SignatureV4\", function() { return SignatureV4; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n/* harmony import */ var _credentialDerivation__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./credentialDerivation */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js\");\n/* harmony import */ var _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./getCanonicalHeaders */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js\");\n/* harmony import */ var _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./getCanonicalQuery */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js\");\n/* harmony import */ var _getPayloadHash__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./getPayloadHash */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js\");\n/* harmony import */ var _headerUtil__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./headerUtil */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js\");\n/* harmony import */ var _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./moveHeadersToQuery */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js\");\n/* harmony import */ var _prepareRequest__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./prepareRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js\");\n/* harmony import */ var _utilDate__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./utilDate */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js\");\n\n\n\n\n\n\n\n\n\n\n\n\nvar SignatureV4 = (function () {\n function SignatureV4(_a) {\n var applyChecksum = _a.applyChecksum, credentials = _a.credentials, region = _a.region, service = _a.service, sha256 = _a.sha256, _b = _a.uriEscapePath, uriEscapePath = _b === void 0 ? true : _b;\n this.service = service;\n this.sha256 = sha256;\n this.uriEscapePath = uriEscapePath;\n this.applyChecksum = typeof applyChecksum === \"boolean\" ? applyChecksum : true;\n this.regionProvider = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_2__[\"normalizeProvider\"])(region);\n this.credentialProvider = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_2__[\"normalizeProvider\"])(credentials);\n }\n SignatureV4.prototype.presign = function (originalRequest, options) {\n if (options === void 0) { options = {}; }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _a, signingDate, _b, expiresIn, unsignableHeaders, unhoistableHeaders, signableHeaders, signingRegion, signingService, credentials, region, _c, _d, longDate, shortDate, scope, request, canonicalHeaders, _e, _f, _g, _h, _j, _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = options.signingDate, signingDate = _a === void 0 ? new Date() : _a, _b = options.expiresIn, expiresIn = _b === void 0 ? 3600 : _b, unsignableHeaders = options.unsignableHeaders, unhoistableHeaders = options.unhoistableHeaders, signableHeaders = options.signableHeaders, signingRegion = options.signingRegion, signingService = options.signingService;\n return [4, this.credentialProvider()];\n case 1:\n credentials = _l.sent();\n this.validateResolvedCredentials(credentials);\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 2];\n _c = signingRegion;\n return [3, 4];\n case 2: return [4, this.regionProvider()];\n case 3:\n _c = (_l.sent());\n _l.label = 4;\n case 4:\n region = _c;\n _d = formatDate(signingDate), longDate = _d.longDate, shortDate = _d.shortDate;\n if (expiresIn > _constants__WEBPACK_IMPORTED_MODULE_3__[\"MAX_PRESIGNED_TTL\"]) {\n return [2, Promise.reject(\"Signature version 4 presigned URLs\" + \" must have an expiration date less than one week in\" + \" the future\")];\n }\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n request = Object(_moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_9__[\"moveHeadersToQuery\"])(Object(_prepareRequest__WEBPACK_IMPORTED_MODULE_10__[\"prepareRequest\"])(originalRequest), { unhoistableHeaders: unhoistableHeaders });\n if (credentials.sessionToken) {\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"TOKEN_QUERY_PARAM\"]] = credentials.sessionToken;\n }\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_QUERY_PARAM\"]] = _constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_IDENTIFIER\"];\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"CREDENTIAL_QUERY_PARAM\"]] = \"\".concat(credentials.accessKeyId, \"/\").concat(scope);\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"AMZ_DATE_QUERY_PARAM\"]] = longDate;\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"EXPIRES_QUERY_PARAM\"]] = expiresIn.toString(10);\n canonicalHeaders = Object(_getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_5__[\"getCanonicalHeaders\"])(request, unsignableHeaders, signableHeaders);\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"SIGNED_HEADERS_QUERY_PARAM\"]] = getCanonicalHeaderList(canonicalHeaders);\n _e = request.query;\n _f = _constants__WEBPACK_IMPORTED_MODULE_3__[\"SIGNATURE_QUERY_PARAM\"];\n _g = this.getSignature;\n _h = [longDate,\n scope,\n this.getSigningKey(credentials, region, shortDate, signingService)];\n _j = this.createCanonicalRequest;\n _k = [request, canonicalHeaders];\n return [4, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_7__[\"getPayloadHash\"])(originalRequest, this.sha256)];\n case 5: return [4, _g.apply(this, _h.concat([_j.apply(this, _k.concat([_l.sent()]))]))];\n case 6:\n _e[_f] = _l.sent();\n return [2, request];\n }\n });\n });\n };\n SignatureV4.prototype.sign = function (toSign, options) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (typeof toSign === \"string\") {\n return [2, this.signString(toSign, options)];\n }\n else if (toSign.headers && toSign.payload) {\n return [2, this.signEvent(toSign, options)];\n }\n else {\n return [2, this.signRequest(toSign, options)];\n }\n return [2];\n });\n });\n };\n SignatureV4.prototype.signEvent = function (_a, _b) {\n var headers = _a.headers, payload = _a.payload;\n var _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, priorSignature = _b.priorSignature, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var region, _d, _e, shortDate, longDate, scope, hashedPayload, hash, hashedHeaders, _f, stringToSign;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 1];\n _d = signingRegion;\n return [3, 3];\n case 1: return [4, this.regionProvider()];\n case 2:\n _d = (_g.sent());\n _g.label = 3;\n case 3:\n region = _d;\n _e = formatDate(signingDate), shortDate = _e.shortDate, longDate = _e.longDate;\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n return [4, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_7__[\"getPayloadHash\"])({ headers: {}, body: payload }, this.sha256)];\n case 4:\n hashedPayload = _g.sent();\n hash = new this.sha256();\n hash.update(headers);\n _f = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4, hash.digest()];\n case 5:\n hashedHeaders = _f.apply(void 0, [_g.sent()]);\n stringToSign = [\n _constants__WEBPACK_IMPORTED_MODULE_3__[\"EVENT_ALGORITHM_IDENTIFIER\"],\n longDate,\n scope,\n priorSignature,\n hashedHeaders,\n hashedPayload,\n ].join(\"\\n\");\n return [2, this.signString(stringToSign, { signingDate: signingDate, signingRegion: region, signingService: signingService })];\n }\n });\n });\n };\n SignatureV4.prototype.signString = function (stringToSign, _a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var credentials, region, _d, shortDate, hash, _e, _f, _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0: return [4, this.credentialProvider()];\n case 1:\n credentials = _h.sent();\n this.validateResolvedCredentials(credentials);\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 2];\n _d = signingRegion;\n return [3, 4];\n case 2: return [4, this.regionProvider()];\n case 3:\n _d = (_h.sent());\n _h.label = 4;\n case 4:\n region = _d;\n shortDate = formatDate(signingDate).shortDate;\n _f = (_e = this.sha256).bind;\n return [4, this.getSigningKey(credentials, region, shortDate, signingService)];\n case 5:\n hash = new (_f.apply(_e, [void 0, _h.sent()]))();\n hash.update(stringToSign);\n _g = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4, hash.digest()];\n case 6: return [2, _g.apply(void 0, [_h.sent()])];\n }\n });\n });\n };\n SignatureV4.prototype.signRequest = function (requestToSign, _a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, signableHeaders = _b.signableHeaders, unsignableHeaders = _b.unsignableHeaders, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var credentials, region, _d, request, _e, longDate, shortDate, scope, payloadHash, canonicalHeaders, signature;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0: return [4, this.credentialProvider()];\n case 1:\n credentials = _f.sent();\n this.validateResolvedCredentials(credentials);\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 2];\n _d = signingRegion;\n return [3, 4];\n case 2: return [4, this.regionProvider()];\n case 3:\n _d = (_f.sent());\n _f.label = 4;\n case 4:\n region = _d;\n request = Object(_prepareRequest__WEBPACK_IMPORTED_MODULE_10__[\"prepareRequest\"])(requestToSign);\n _e = formatDate(signingDate), longDate = _e.longDate, shortDate = _e.shortDate;\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"AMZ_DATE_HEADER\"]] = longDate;\n if (credentials.sessionToken) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"TOKEN_HEADER\"]] = credentials.sessionToken;\n }\n return [4, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_7__[\"getPayloadHash\"])(request, this.sha256)];\n case 5:\n payloadHash = _f.sent();\n if (!Object(_headerUtil__WEBPACK_IMPORTED_MODULE_8__[\"hasHeader\"])(_constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"], request.headers) && this.applyChecksum) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"]] = payloadHash;\n }\n canonicalHeaders = Object(_getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_5__[\"getCanonicalHeaders\"])(request, unsignableHeaders, signableHeaders);\n return [4, this.getSignature(longDate, scope, this.getSigningKey(credentials, region, shortDate, signingService), this.createCanonicalRequest(request, canonicalHeaders, payloadHash))];\n case 6:\n signature = _f.sent();\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"AUTH_HEADER\"]] =\n \"\".concat(_constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_IDENTIFIER\"], \" \") +\n \"Credential=\".concat(credentials.accessKeyId, \"/\").concat(scope, \", \") +\n \"SignedHeaders=\".concat(getCanonicalHeaderList(canonicalHeaders), \", \") +\n \"Signature=\".concat(signature);\n return [2, request];\n }\n });\n });\n };\n SignatureV4.prototype.createCanonicalRequest = function (request, canonicalHeaders, payloadHash) {\n var sortedHeaders = Object.keys(canonicalHeaders).sort();\n return \"\".concat(request.method, \"\\n\").concat(this.getCanonicalPath(request), \"\\n\").concat(Object(_getCanonicalQuery__WEBPACK_IMPORTED_MODULE_6__[\"getCanonicalQuery\"])(request), \"\\n\").concat(sortedHeaders.map(function (name) { return \"\".concat(name, \":\").concat(canonicalHeaders[name]); }).join(\"\\n\"), \"\\n\\n\").concat(sortedHeaders.join(\";\"), \"\\n\").concat(payloadHash);\n };\n SignatureV4.prototype.createStringToSign = function (longDate, credentialScope, canonicalRequest) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var hash, hashedRequest;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n hash = new this.sha256();\n hash.update(canonicalRequest);\n return [4, hash.digest()];\n case 1:\n hashedRequest = _a.sent();\n return [2, \"\".concat(_constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_IDENTIFIER\"], \"\\n\").concat(longDate, \"\\n\").concat(credentialScope, \"\\n\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(hashedRequest))];\n }\n });\n });\n };\n SignatureV4.prototype.getCanonicalPath = function (_a) {\n var e_1, _b;\n var path = _a.path;\n if (this.uriEscapePath) {\n var normalizedPathSegments = [];\n try {\n for (var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(path.split(\"/\")), _d = _c.next(); !_d.done; _d = _c.next()) {\n var pathSegment = _d.value;\n if ((pathSegment === null || pathSegment === void 0 ? void 0 : pathSegment.length) === 0)\n continue;\n if (pathSegment === \".\")\n continue;\n if (pathSegment === \"..\") {\n normalizedPathSegments.pop();\n }\n else {\n normalizedPathSegments.push(pathSegment);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_b = _c.return)) _b.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var normalizedPath = \"\".concat((path === null || path === void 0 ? void 0 : path.startsWith(\"/\")) ? \"/\" : \"\").concat(normalizedPathSegments.join(\"/\")).concat(normalizedPathSegments.length > 0 && (path === null || path === void 0 ? void 0 : path.endsWith(\"/\")) ? \"/\" : \"\");\n var doubleEncoded = encodeURIComponent(normalizedPath);\n return doubleEncoded.replace(/%2F/g, \"/\");\n }\n return path;\n };\n SignatureV4.prototype.getSignature = function (longDate, credentialScope, keyPromise, canonicalRequest) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var stringToSign, hash, _a, _b, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0: return [4, this.createStringToSign(longDate, credentialScope, canonicalRequest)];\n case 1:\n stringToSign = _d.sent();\n _b = (_a = this.sha256).bind;\n return [4, keyPromise];\n case 2:\n hash = new (_b.apply(_a, [void 0, _d.sent()]))();\n hash.update(stringToSign);\n _c = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4, hash.digest()];\n case 3: return [2, _c.apply(void 0, [_d.sent()])];\n }\n });\n });\n };\n SignatureV4.prototype.getSigningKey = function (credentials, region, shortDate, service) {\n return Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"getSigningKey\"])(this.sha256, credentials, shortDate, region, service || this.service);\n };\n SignatureV4.prototype.validateResolvedCredentials = function (credentials) {\n if (typeof credentials !== \"object\" ||\n typeof credentials.accessKeyId !== \"string\" ||\n typeof credentials.secretAccessKey !== \"string\") {\n throw new Error(\"Resolved credential object is not valid\");\n }\n };\n return SignatureV4;\n}());\n\nvar formatDate = function (now) {\n var longDate = Object(_utilDate__WEBPACK_IMPORTED_MODULE_11__[\"iso8601\"])(now).replace(/[\\-:]/g, \"\");\n return {\n longDate: longDate,\n shortDate: longDate.slice(0, 8),\n };\n};\nvar getCanonicalHeaderList = function (headers) { return Object.keys(headers).sort().join(\";\"); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js ***! \*********************************************************************************************************************/ /*! exports provided: cloneRequest, cloneQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cloneRequest\", function() { return cloneRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cloneQuery\", function() { return cloneQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar cloneRequest = function (_a) {\n var headers = _a.headers, query = _a.query, rest = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"headers\", \"query\"]);\n return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, rest), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, headers), query: query ? cloneQuery(query) : undefined }));\n};\nvar cloneQuery = function (query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(param), false) : param, _a));\n }, {});\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/constants.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/constants.js ***! \******************************************************************************************************************/ /*! exports provided: ALGORITHM_QUERY_PARAM, CREDENTIAL_QUERY_PARAM, AMZ_DATE_QUERY_PARAM, SIGNED_HEADERS_QUERY_PARAM, EXPIRES_QUERY_PARAM, SIGNATURE_QUERY_PARAM, TOKEN_QUERY_PARAM, REGION_SET_PARAM, AUTH_HEADER, AMZ_DATE_HEADER, DATE_HEADER, GENERATED_HEADERS, SIGNATURE_HEADER, SHA256_HEADER, TOKEN_HEADER, HOST_HEADER, ALWAYS_UNSIGNABLE_HEADERS, PROXY_HEADER_PATTERN, SEC_HEADER_PATTERN, UNSIGNABLE_PATTERNS, ALGORITHM_IDENTIFIER, ALGORITHM_IDENTIFIER_V4A, EVENT_ALGORITHM_IDENTIFIER, UNSIGNED_PAYLOAD, MAX_CACHE_SIZE, KEY_TYPE_IDENTIFIER, MAX_PRESIGNED_TTL */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_QUERY_PARAM\", function() { return ALGORITHM_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CREDENTIAL_QUERY_PARAM\", function() { return CREDENTIAL_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMZ_DATE_QUERY_PARAM\", function() { return AMZ_DATE_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNED_HEADERS_QUERY_PARAM\", function() { return SIGNED_HEADERS_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EXPIRES_QUERY_PARAM\", function() { return EXPIRES_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNATURE_QUERY_PARAM\", function() { return SIGNATURE_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TOKEN_QUERY_PARAM\", function() { return TOKEN_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_SET_PARAM\", function() { return REGION_SET_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AUTH_HEADER\", function() { return AUTH_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMZ_DATE_HEADER\", function() { return AMZ_DATE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DATE_HEADER\", function() { return DATE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GENERATED_HEADERS\", function() { return GENERATED_HEADERS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNATURE_HEADER\", function() { return SIGNATURE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SHA256_HEADER\", function() { return SHA256_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TOKEN_HEADER\", function() { return TOKEN_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HOST_HEADER\", function() { return HOST_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALWAYS_UNSIGNABLE_HEADERS\", function() { return ALWAYS_UNSIGNABLE_HEADERS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PROXY_HEADER_PATTERN\", function() { return PROXY_HEADER_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SEC_HEADER_PATTERN\", function() { return SEC_HEADER_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UNSIGNABLE_PATTERNS\", function() { return UNSIGNABLE_PATTERNS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_IDENTIFIER\", function() { return ALGORITHM_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_IDENTIFIER_V4A\", function() { return ALGORITHM_IDENTIFIER_V4A; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EVENT_ALGORITHM_IDENTIFIER\", function() { return EVENT_ALGORITHM_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UNSIGNED_PAYLOAD\", function() { return UNSIGNED_PAYLOAD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAX_CACHE_SIZE\", function() { return MAX_CACHE_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KEY_TYPE_IDENTIFIER\", function() { return KEY_TYPE_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAX_PRESIGNED_TTL\", function() { return MAX_PRESIGNED_TTL; });\nvar ALGORITHM_QUERY_PARAM = \"X-Amz-Algorithm\";\nvar CREDENTIAL_QUERY_PARAM = \"X-Amz-Credential\";\nvar AMZ_DATE_QUERY_PARAM = \"X-Amz-Date\";\nvar SIGNED_HEADERS_QUERY_PARAM = \"X-Amz-SignedHeaders\";\nvar EXPIRES_QUERY_PARAM = \"X-Amz-Expires\";\nvar SIGNATURE_QUERY_PARAM = \"X-Amz-Signature\";\nvar TOKEN_QUERY_PARAM = \"X-Amz-Security-Token\";\nvar REGION_SET_PARAM = \"X-Amz-Region-Set\";\nvar AUTH_HEADER = \"authorization\";\nvar AMZ_DATE_HEADER = AMZ_DATE_QUERY_PARAM.toLowerCase();\nvar DATE_HEADER = \"date\";\nvar GENERATED_HEADERS = [AUTH_HEADER, AMZ_DATE_HEADER, DATE_HEADER];\nvar SIGNATURE_HEADER = SIGNATURE_QUERY_PARAM.toLowerCase();\nvar SHA256_HEADER = \"x-amz-content-sha256\";\nvar TOKEN_HEADER = TOKEN_QUERY_PARAM.toLowerCase();\nvar HOST_HEADER = \"host\";\nvar ALWAYS_UNSIGNABLE_HEADERS = {\n authorization: true,\n \"cache-control\": true,\n connection: true,\n expect: true,\n from: true,\n \"keep-alive\": true,\n \"max-forwards\": true,\n pragma: true,\n referer: true,\n te: true,\n trailer: true,\n \"transfer-encoding\": true,\n upgrade: true,\n \"user-agent\": true,\n \"x-amzn-trace-id\": true,\n};\nvar PROXY_HEADER_PATTERN = /^proxy-/;\nvar SEC_HEADER_PATTERN = /^sec-/;\nvar UNSIGNABLE_PATTERNS = [/^proxy-/i, /^sec-/i];\nvar ALGORITHM_IDENTIFIER = \"AWS4-HMAC-SHA256\";\nvar ALGORITHM_IDENTIFIER_V4A = \"AWS4-ECDSA-P256-SHA256\";\nvar EVENT_ALGORITHM_IDENTIFIER = \"AWS4-HMAC-SHA256-PAYLOAD\";\nvar UNSIGNED_PAYLOAD = \"UNSIGNED-PAYLOAD\";\nvar MAX_CACHE_SIZE = 50;\nvar KEY_TYPE_IDENTIFIER = \"aws4_request\";\nvar MAX_PRESIGNED_TTL = 60 * 60 * 24 * 7;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js ***! \*****************************************************************************************************************************/ /*! exports provided: createScope, getSigningKey, clearCredentialCache */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createScope\", function() { return createScope; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSigningKey\", function() { return getSigningKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"clearCredentialCache\", function() { return clearCredentialCache; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\n\nvar signingKeyCache = {};\nvar cacheQueue = [];\nvar createScope = function (shortDate, region, service) {\n return \"\".concat(shortDate, \"/\").concat(region, \"/\").concat(service, \"/\").concat(_constants__WEBPACK_IMPORTED_MODULE_2__[\"KEY_TYPE_IDENTIFIER\"]);\n};\nvar getSigningKey = function (sha256Constructor, credentials, shortDate, region, service) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var credsHash, cacheKey, key, _a, _b, signable, e_1_1;\n var e_1, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0: return [4, hmac(sha256Constructor, credentials.secretAccessKey, credentials.accessKeyId)];\n case 1:\n credsHash = _d.sent();\n cacheKey = \"\".concat(shortDate, \":\").concat(region, \":\").concat(service, \":\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(credsHash), \":\").concat(credentials.sessionToken);\n if (cacheKey in signingKeyCache) {\n return [2, signingKeyCache[cacheKey]];\n }\n cacheQueue.push(cacheKey);\n while (cacheQueue.length > _constants__WEBPACK_IMPORTED_MODULE_2__[\"MAX_CACHE_SIZE\"]) {\n delete signingKeyCache[cacheQueue.shift()];\n }\n key = \"AWS4\".concat(credentials.secretAccessKey);\n _d.label = 2;\n case 2:\n _d.trys.push([2, 7, 8, 9]);\n _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])([shortDate, region, service, _constants__WEBPACK_IMPORTED_MODULE_2__[\"KEY_TYPE_IDENTIFIER\"]]), _b = _a.next();\n _d.label = 3;\n case 3:\n if (!!_b.done) return [3, 6];\n signable = _b.value;\n return [4, hmac(sha256Constructor, key, signable)];\n case 4:\n key = _d.sent();\n _d.label = 5;\n case 5:\n _b = _a.next();\n return [3, 3];\n case 6: return [3, 9];\n case 7:\n e_1_1 = _d.sent();\n e_1 = { error: e_1_1 };\n return [3, 9];\n case 8:\n try {\n if (_b && !_b.done && (_c = _a.return)) _c.call(_a);\n }\n finally { if (e_1) throw e_1.error; }\n return [7];\n case 9: return [2, (signingKeyCache[cacheKey] = key)];\n }\n });\n}); };\nvar clearCredentialCache = function () {\n cacheQueue.length = 0;\n Object.keys(signingKeyCache).forEach(function (cacheKey) {\n delete signingKeyCache[cacheKey];\n });\n};\nvar hmac = function (ctor, secret, data) {\n var hash = new ctor(secret);\n hash.update(data);\n return hash.digest();\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js ***! \****************************************************************************************************************************/ /*! exports provided: getCanonicalHeaders */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalHeaders\", function() { return getCanonicalHeaders; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\nvar getCanonicalHeaders = function (_a, unsignableHeaders, signableHeaders) {\n var e_1, _b;\n var headers = _a.headers;\n var canonical = {};\n try {\n for (var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers).sort()), _d = _c.next(); !_d.done; _d = _c.next()) {\n var headerName = _d.value;\n if (headers[headerName] == undefined) {\n continue;\n }\n var canonicalHeaderName = headerName.toLowerCase();\n if (canonicalHeaderName in _constants__WEBPACK_IMPORTED_MODULE_1__[\"ALWAYS_UNSIGNABLE_HEADERS\"] ||\n (unsignableHeaders === null || unsignableHeaders === void 0 ? void 0 : unsignableHeaders.has(canonicalHeaderName)) ||\n _constants__WEBPACK_IMPORTED_MODULE_1__[\"PROXY_HEADER_PATTERN\"].test(canonicalHeaderName) ||\n _constants__WEBPACK_IMPORTED_MODULE_1__[\"SEC_HEADER_PATTERN\"].test(canonicalHeaderName)) {\n if (!signableHeaders || (signableHeaders && !signableHeaders.has(canonicalHeaderName))) {\n continue;\n }\n }\n canonical[canonicalHeaderName] = headers[headerName].trim().replace(/\\s+/g, \" \");\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_b = _c.return)) _b.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return canonical;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js ***! \**************************************************************************************************************************/ /*! exports provided: getCanonicalQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalQuery\", function() { return getCanonicalQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-uri-escape */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\n\nvar getCanonicalQuery = function (_a) {\n var e_1, _b;\n var _c = _a.query, query = _c === void 0 ? {} : _c;\n var keys = [];\n var serialized = {};\n var _loop_1 = function (key) {\n if (key.toLowerCase() === _constants__WEBPACK_IMPORTED_MODULE_2__[\"SIGNATURE_HEADER\"]) {\n return \"continue\";\n }\n keys.push(key);\n var value = query[key];\n if (typeof value === \"string\") {\n serialized[key] = \"\".concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key), \"=\").concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value));\n }\n else if (Array.isArray(value)) {\n serialized[key] = value\n .slice(0)\n .sort()\n .reduce(function (encoded, value) { return encoded.concat([\"\".concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key), \"=\").concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value))]); }, [])\n .join(\"&\");\n }\n };\n try {\n for (var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(query).sort()), _e = _d.next(); !_e.done; _e = _d.next()) {\n var key = _e.value;\n _loop_1(key);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_e && !_e.done && (_b = _d.return)) _b.call(_d);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return keys\n .map(function (key) { return serialized[key]; })\n .filter(function (serialized) { return serialized; })\n .join(\"&\");\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js ***! \***********************************************************************************************************************/ /*! exports provided: getPayloadHash */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPayloadHash\", function() { return getPayloadHash; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/is-array-buffer */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\n\n\nvar getPayloadHash = function (_a, hashConstructor) {\n var headers = _a.headers, body = _a.body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _b, _c, headerName, hashCtor, _d;\n var e_1, _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n try {\n for (_b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n headerName = _c.value;\n if (headerName.toLowerCase() === _constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"]) {\n return [2, headers[headerName]];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_e = _b.return)) _e.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n if (!(body == undefined)) return [3, 1];\n return [2, \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"];\n case 1:\n if (!(typeof body === \"string\" || ArrayBuffer.isView(body) || Object(_aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__[\"isArrayBuffer\"])(body))) return [3, 3];\n hashCtor = new hashConstructor();\n hashCtor.update(body);\n _d = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__[\"toHex\"];\n return [4, hashCtor.digest()];\n case 2: return [2, _d.apply(void 0, [_f.sent()])];\n case 3: return [2, _constants__WEBPACK_IMPORTED_MODULE_3__[\"UNSIGNED_PAYLOAD\"]];\n }\n });\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js ***! \*******************************************************************************************************************/ /*! exports provided: hasHeader, getHeaderValue, deleteHeader */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasHeader\", function() { return hasHeader; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHeaderValue\", function() { return getHeaderValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deleteHeader\", function() { return deleteHeader; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar hasHeader = function (soughtHeader, headers) {\n var e_1, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n return true;\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return false;\n};\nvar getHeaderValue = function (soughtHeader, headers) {\n var e_2, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n return headers[headerName];\n }\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return undefined;\n};\nvar deleteHeader = function (soughtHeader, headers) {\n var e_3, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n delete headers[headerName];\n }\n }\n }\n catch (e_3_1) { e_3 = { error: e_3_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_3) throw e_3.error; }\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/index.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/index.js ***! \**************************************************************************************************************/ /*! exports provided: SignatureV4, getCanonicalHeaders, getCanonicalQuery, getPayloadHash, moveHeadersToQuery, prepareRequest, createScope, getSigningKey, clearCredentialCache */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _SignatureV4__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SignatureV4 */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SignatureV4\", function() { return _SignatureV4__WEBPACK_IMPORTED_MODULE_0__[\"SignatureV4\"]; });\n\n/* harmony import */ var _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getCanonicalHeaders */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalHeaders\", function() { return _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_1__[\"getCanonicalHeaders\"]; });\n\n/* harmony import */ var _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getCanonicalQuery */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalQuery\", function() { return _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_2__[\"getCanonicalQuery\"]; });\n\n/* harmony import */ var _getPayloadHash__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getPayloadHash */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getPayloadHash\", function() { return _getPayloadHash__WEBPACK_IMPORTED_MODULE_3__[\"getPayloadHash\"]; });\n\n/* harmony import */ var _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./moveHeadersToQuery */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"moveHeadersToQuery\", function() { return _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_4__[\"moveHeadersToQuery\"]; });\n\n/* harmony import */ var _prepareRequest__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./prepareRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"prepareRequest\", function() { return _prepareRequest__WEBPACK_IMPORTED_MODULE_5__[\"prepareRequest\"]; });\n\n/* harmony import */ var _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./credentialDerivation */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createScope\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__[\"createScope\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSigningKey\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__[\"getSigningKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"clearCredentialCache\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__[\"clearCredentialCache\"]; });\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js ***! \***************************************************************************************************************************/ /*! exports provided: moveHeadersToQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"moveHeadersToQuery\", function() { return moveHeadersToQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _cloneRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./cloneRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js\");\n\n\nvar moveHeadersToQuery = function (request, options) {\n var e_1, _a;\n var _b;\n if (options === void 0) { options = {}; }\n var _c = typeof request.clone === \"function\" ? request.clone() : Object(_cloneRequest__WEBPACK_IMPORTED_MODULE_1__[\"cloneRequest\"])(request), headers = _c.headers, _d = _c.query, query = _d === void 0 ? {} : _d;\n try {\n for (var _e = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _f = _e.next(); !_f.done; _f = _e.next()) {\n var name_1 = _f.value;\n var lname = name_1.toLowerCase();\n if (lname.slice(0, 6) === \"x-amz-\" && !((_b = options.unhoistableHeaders) === null || _b === void 0 ? void 0 : _b.has(lname))) {\n query[name_1] = headers[name_1];\n delete headers[name_1];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_f && !_f.done && (_a = _e.return)) _a.call(_e);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request), { headers: headers, query: query });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js ***! \***********************************************************************************************************************/ /*! exports provided: prepareRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"prepareRequest\", function() { return prepareRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _cloneRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./cloneRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\n\nvar prepareRequest = function (request) {\n var e_1, _a;\n request = typeof request.clone === \"function\" ? request.clone() : Object(_cloneRequest__WEBPACK_IMPORTED_MODULE_1__[\"cloneRequest\"])(request);\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(request.headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (_constants__WEBPACK_IMPORTED_MODULE_2__[\"GENERATED_HEADERS\"].indexOf(headerName.toLowerCase()) > -1) {\n delete request.headers[headerName];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return request;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js ***! \*****************************************************************************************************************/ /*! exports provided: iso8601, toDate */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"iso8601\", function() { return iso8601; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toDate\", function() { return toDate; });\nvar iso8601 = function (time) {\n return toDate(time)\n .toISOString()\n .replace(/\\.\\d{3}Z$/, \"Z\");\n};\nvar toDate = function (time) {\n if (typeof time === \"number\") {\n return new Date(time * 1000);\n }\n if (typeof time === \"string\") {\n if (Number(time)) {\n return new Date(Number(time) * 1000);\n }\n return new Date(time);\n }\n return time;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/client.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/client.js ***! \****************************************************************************************************************/ /*! exports provided: Client */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Client\", function() { return Client; });\n/* harmony import */ var _aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/middleware-stack */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-stack/dist-es/index.js\");\n\nvar Client = (function () {\n function Client(config) {\n this.middlewareStack = Object(_aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"])();\n this.config = config;\n }\n Client.prototype.send = function (command, optionsOrCb, cb) {\n var options = typeof optionsOrCb !== \"function\" ? optionsOrCb : undefined;\n var callback = typeof optionsOrCb === \"function\" ? optionsOrCb : cb;\n var handler = command.resolveMiddleware(this.middlewareStack, this.config, options);\n if (callback) {\n handler(command)\n .then(function (result) { return callback(null, result.output); }, function (err) { return callback(err); })\n .catch(function () { });\n }\n else {\n return handler(command).then(function (result) { return result.output; });\n }\n };\n Client.prototype.destroy = function () {\n if (this.config.requestHandler.destroy)\n this.config.requestHandler.destroy();\n };\n return Client;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/client.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/command.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/command.js ***! \*****************************************************************************************************************/ /*! exports provided: Command */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Command\", function() { return Command; });\n/* harmony import */ var _aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/middleware-stack */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/middleware-stack/dist-es/index.js\");\n\nvar Command = (function () {\n function Command() {\n this.middlewareStack = Object(_aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"])();\n }\n return Command;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/command.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/constants.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/constants.js ***! \*******************************************************************************************************************/ /*! exports provided: SENSITIVE_STRING */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SENSITIVE_STRING\", function() { return SENSITIVE_STRING; });\nvar SENSITIVE_STRING = \"***SensitiveInformation***\";\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js ***! \********************************************************************************************************************/ /*! exports provided: dateToUtcString, parseRfc3339DateTime, parseRfc7231DateTime, parseEpochTimestamp */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"dateToUtcString\", function() { return dateToUtcString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseRfc3339DateTime\", function() { return parseRfc3339DateTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseRfc7231DateTime\", function() { return parseRfc7231DateTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseEpochTimestamp\", function() { return parseEpochTimestamp; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _parse_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./parse-utils */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js\");\n\n\nvar DAYS = [\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\"];\nvar MONTHS = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"];\nfunction dateToUtcString(date) {\n var year = date.getUTCFullYear();\n var month = date.getUTCMonth();\n var dayOfWeek = date.getUTCDay();\n var dayOfMonthInt = date.getUTCDate();\n var hoursInt = date.getUTCHours();\n var minutesInt = date.getUTCMinutes();\n var secondsInt = date.getUTCSeconds();\n var dayOfMonthString = dayOfMonthInt < 10 ? \"0\".concat(dayOfMonthInt) : \"\".concat(dayOfMonthInt);\n var hoursString = hoursInt < 10 ? \"0\".concat(hoursInt) : \"\".concat(hoursInt);\n var minutesString = minutesInt < 10 ? \"0\".concat(minutesInt) : \"\".concat(minutesInt);\n var secondsString = secondsInt < 10 ? \"0\".concat(secondsInt) : \"\".concat(secondsInt);\n return \"\".concat(DAYS[dayOfWeek], \", \").concat(dayOfMonthString, \" \").concat(MONTHS[month], \" \").concat(year, \" \").concat(hoursString, \":\").concat(minutesString, \":\").concat(secondsString, \" GMT\");\n}\nvar RFC3339 = new RegExp(/^(\\d{4})-(\\d{2})-(\\d{2})[tT](\\d{2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))?[zZ]$/);\nvar parseRfc3339DateTime = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value !== \"string\") {\n throw new TypeError(\"RFC-3339 date-times must be expressed as strings\");\n }\n var match = RFC3339.exec(value);\n if (!match) {\n throw new TypeError(\"Invalid RFC-3339 date-time value\");\n }\n var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _ = _a[0], yearStr = _a[1], monthStr = _a[2], dayStr = _a[3], hours = _a[4], minutes = _a[5], seconds = _a[6], fractionalMilliseconds = _a[7];\n var year = Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(yearStr));\n var month = parseDateValue(monthStr, \"month\", 1, 12);\n var day = parseDateValue(dayStr, \"day\", 1, 31);\n return buildDate(year, month, day, { hours: hours, minutes: minutes, seconds: seconds, fractionalMilliseconds: fractionalMilliseconds });\n};\nvar IMF_FIXDATE = new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\\d{2}) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\\d{4}) (\\d{1,2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))? GMT$/);\nvar RFC_850_DATE = new RegExp(/^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\\d{2})-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\\d{2}) (\\d{1,2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))? GMT$/);\nvar ASC_TIME = new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( [1-9]|\\d{2}) (\\d{1,2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))? (\\d{4})$/);\nvar parseRfc7231DateTime = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value !== \"string\") {\n throw new TypeError(\"RFC-7231 date-times must be expressed as strings\");\n }\n var match = IMF_FIXDATE.exec(value);\n if (match) {\n var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _1 = _a[0], dayStr = _a[1], monthStr = _a[2], yearStr = _a[3], hours = _a[4], minutes = _a[5], seconds = _a[6], fractionalMilliseconds = _a[7];\n return buildDate(Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(yearStr)), parseMonthByShortName(monthStr), parseDateValue(dayStr, \"day\", 1, 31), { hours: hours, minutes: minutes, seconds: seconds, fractionalMilliseconds: fractionalMilliseconds });\n }\n match = RFC_850_DATE.exec(value);\n if (match) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _2 = _b[0], dayStr = _b[1], monthStr = _b[2], yearStr = _b[3], hours = _b[4], minutes = _b[5], seconds = _b[6], fractionalMilliseconds = _b[7];\n return adjustRfc850Year(buildDate(parseTwoDigitYear(yearStr), parseMonthByShortName(monthStr), parseDateValue(dayStr, \"day\", 1, 31), {\n hours: hours,\n minutes: minutes,\n seconds: seconds,\n fractionalMilliseconds: fractionalMilliseconds,\n }));\n }\n match = ASC_TIME.exec(value);\n if (match) {\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _3 = _c[0], monthStr = _c[1], dayStr = _c[2], hours = _c[3], minutes = _c[4], seconds = _c[5], fractionalMilliseconds = _c[6], yearStr = _c[7];\n return buildDate(Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(yearStr)), parseMonthByShortName(monthStr), parseDateValue(dayStr.trimLeft(), \"day\", 1, 31), { hours: hours, minutes: minutes, seconds: seconds, fractionalMilliseconds: fractionalMilliseconds });\n }\n throw new TypeError(\"Invalid RFC-7231 date-time value\");\n};\nvar parseEpochTimestamp = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n var valueAsDouble;\n if (typeof value === \"number\") {\n valueAsDouble = value;\n }\n else if (typeof value === \"string\") {\n valueAsDouble = Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseDouble\"])(value);\n }\n else {\n throw new TypeError(\"Epoch timestamps must be expressed as floating point numbers or their string representation\");\n }\n if (Number.isNaN(valueAsDouble) || valueAsDouble === Infinity || valueAsDouble === -Infinity) {\n throw new TypeError(\"Epoch timestamps must be valid, non-Infinite, non-NaN numerics\");\n }\n return new Date(Math.round(valueAsDouble * 1000));\n};\nvar buildDate = function (year, month, day, time) {\n var adjustedMonth = month - 1;\n validateDayOfMonth(year, adjustedMonth, day);\n return new Date(Date.UTC(year, adjustedMonth, day, parseDateValue(time.hours, \"hour\", 0, 23), parseDateValue(time.minutes, \"minute\", 0, 59), parseDateValue(time.seconds, \"seconds\", 0, 60), parseMilliseconds(time.fractionalMilliseconds)));\n};\nvar parseTwoDigitYear = function (value) {\n var thisYear = new Date().getUTCFullYear();\n var valueInThisCentury = Math.floor(thisYear / 100) * 100 + Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(value));\n if (valueInThisCentury < thisYear) {\n return valueInThisCentury + 100;\n }\n return valueInThisCentury;\n};\nvar FIFTY_YEARS_IN_MILLIS = 50 * 365 * 24 * 60 * 60 * 1000;\nvar adjustRfc850Year = function (input) {\n if (input.getTime() - new Date().getTime() > FIFTY_YEARS_IN_MILLIS) {\n return new Date(Date.UTC(input.getUTCFullYear() - 100, input.getUTCMonth(), input.getUTCDate(), input.getUTCHours(), input.getUTCMinutes(), input.getUTCSeconds(), input.getUTCMilliseconds()));\n }\n return input;\n};\nvar parseMonthByShortName = function (value) {\n var monthIdx = MONTHS.indexOf(value);\n if (monthIdx < 0) {\n throw new TypeError(\"Invalid month: \".concat(value));\n }\n return monthIdx + 1;\n};\nvar DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];\nvar validateDayOfMonth = function (year, month, day) {\n var maxDays = DAYS_IN_MONTH[month];\n if (month === 1 && isLeapYear(year)) {\n maxDays = 29;\n }\n if (day > maxDays) {\n throw new TypeError(\"Invalid day for \".concat(MONTHS[month], \" in \").concat(year, \": \").concat(day));\n }\n};\nvar isLeapYear = function (year) {\n return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);\n};\nvar parseDateValue = function (value, type, lower, upper) {\n var dateVal = Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseByte\"])(stripLeadingZeroes(value));\n if (dateVal < lower || dateVal > upper) {\n throw new TypeError(\"\".concat(type, \" must be between \").concat(lower, \" and \").concat(upper, \", inclusive\"));\n }\n return dateVal;\n};\nvar parseMilliseconds = function (value) {\n if (value === null || value === undefined) {\n return 0;\n }\n return Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseFloat32\"])(\"0.\" + value) * 1000;\n};\nvar stripLeadingZeroes = function (value) {\n var idx = 0;\n while (idx < value.length - 1 && value.charAt(idx) === \"0\") {\n idx++;\n }\n if (idx === 0) {\n return value;\n }\n return value.slice(idx);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js": /*!*******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js ***! \*******************************************************************************************************************************/ /*! exports provided: throwDefaultError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"throwDefaultError\", function() { return throwDefaultError; });\n/* harmony import */ var _exceptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./exceptions */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js\");\n\nvar throwDefaultError = function (_a) {\n var output = _a.output, parsedBody = _a.parsedBody, exceptionCtor = _a.exceptionCtor, errorCode = _a.errorCode;\n var $metadata = deserializeMetadata(output);\n var statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + \"\" : undefined;\n var response = new exceptionCtor({\n name: parsedBody.code || parsedBody.Code || errorCode || statusCode || \"UnknowError\",\n $fault: \"client\",\n $metadata: $metadata,\n });\n throw Object(_exceptions__WEBPACK_IMPORTED_MODULE_0__[\"decorateServiceException\"])(response, parsedBody);\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js ***! \***********************************************************************************************************************/ /*! exports provided: loadConfigsForDefaultMode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loadConfigsForDefaultMode\", function() { return loadConfigsForDefaultMode; });\nvar loadConfigsForDefaultMode = function (mode) {\n switch (mode) {\n case \"standard\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 3100,\n };\n case \"in-region\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 1100,\n };\n case \"cross-region\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 3100,\n };\n case \"mobile\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 30000,\n };\n default:\n return {};\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js": /*!*****************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js ***! \*****************************************************************************************************************************************/ /*! exports provided: emitWarningIfUnsupportedVersion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"emitWarningIfUnsupportedVersion\", function() { return emitWarningIfUnsupportedVersion; });\nvar warningEmitted = false;\nvar emitWarningIfUnsupportedVersion = function (version) {\n if (version && !warningEmitted && parseInt(version.substring(1, version.indexOf(\".\"))) < 14) {\n warningEmitted = true;\n process.emitWarning(\"The AWS SDK for JavaScript (v3) will\\n\" +\n \"no longer support Node.js \".concat(version, \" on November 1, 2022.\\n\\n\") +\n \"To continue receiving updates to AWS services, bug fixes, and security\\n\" +\n \"updates please upgrade to Node.js 14.x or later.\\n\\n\" +\n \"For details, please refer our blog post: https://a.co/48dbdYz\", \"NodeDeprecationWarning\");\n }\n};\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../node-libs-browser/mock/process.js */ \"./node_modules/node-libs-browser/mock/process.js\")))\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js ***! \********************************************************************************************************************/ /*! exports provided: ServiceException, decorateServiceException */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceException\", function() { return ServiceException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decorateServiceException\", function() { return decorateServiceException; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar ServiceException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ServiceException, _super);\n function ServiceException(options) {\n var _this = _super.call(this, options.message) || this;\n Object.setPrototypeOf(_this, ServiceException.prototype);\n _this.name = options.name;\n _this.$fault = options.$fault;\n _this.$metadata = options.$metadata;\n return _this;\n }\n return ServiceException;\n}(Error));\n\nvar decorateServiceException = function (exception, additions) {\n if (additions === void 0) { additions = {}; }\n Object.entries(additions)\n .filter(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), v = _b[1];\n return v !== undefined;\n })\n .forEach(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), k = _b[0], v = _b[1];\n if (exception[k] == undefined || exception[k] === \"\") {\n exception[k] = v;\n }\n });\n var message = exception.message || exception.Message || \"UnknownError\";\n exception.message = message;\n delete exception.Message;\n return exception;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js": /*!***************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js ***! \***************************************************************************************************************************************/ /*! exports provided: extendedEncodeURIComponent */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extendedEncodeURIComponent\", function() { return extendedEncodeURIComponent; });\nfunction extendedEncodeURIComponent(str) {\n return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {\n return \"%\" + c.charCodeAt(0).toString(16).toUpperCase();\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js ***! \**********************************************************************************************************************************/ /*! exports provided: getArrayIfSingleItem */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getArrayIfSingleItem\", function() { return getArrayIfSingleItem; });\nvar getArrayIfSingleItem = function (mayBeArray) {\n return Array.isArray(mayBeArray) ? mayBeArray : [mayBeArray];\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js ***! \**********************************************************************************************************************************/ /*! exports provided: getValueFromTextNode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getValueFromTextNode\", function() { return getValueFromTextNode; });\nvar getValueFromTextNode = function (obj) {\n var textNodeName = \"#text\";\n for (var key in obj) {\n if (obj.hasOwnProperty(key) && obj[key][textNodeName] !== undefined) {\n obj[key] = obj[key][textNodeName];\n }\n else if (typeof obj[key] === \"object\" && obj[key] !== null) {\n obj[key] = getValueFromTextNode(obj[key]);\n }\n }\n return obj;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js ***! \***************************************************************************************************************/ /*! exports provided: Client, Command, SENSITIVE_STRING, dateToUtcString, parseRfc3339DateTime, parseRfc7231DateTime, parseEpochTimestamp, throwDefaultError, loadConfigsForDefaultMode, emitWarningIfUnsupportedVersion, ServiceException, decorateServiceException, extendedEncodeURIComponent, getArrayIfSingleItem, getValueFromTextNode, StringWrapper, LazyJsonString, map, convertMap, parseBoolean, expectBoolean, expectNumber, expectFloat32, expectLong, expectInt, expectInt32, expectShort, expectByte, expectNonNull, expectObject, expectString, expectUnion, strictParseDouble, strictParseFloat, strictParseFloat32, limitedParseDouble, handleFloat, limitedParseFloat, limitedParseFloat32, strictParseLong, strictParseInt, strictParseInt32, strictParseShort, strictParseByte, logger, resolvedPath, serializeFloat, splitEvery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./client */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/client.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Client\", function() { return _client__WEBPACK_IMPORTED_MODULE_0__[\"Client\"]; });\n\n/* harmony import */ var _command__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./command */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/command.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Command\", function() { return _command__WEBPACK_IMPORTED_MODULE_1__[\"Command\"]; });\n\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/constants.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SENSITIVE_STRING\", function() { return _constants__WEBPACK_IMPORTED_MODULE_2__[\"SENSITIVE_STRING\"]; });\n\n/* harmony import */ var _date_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./date-utils */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"dateToUtcString\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseRfc3339DateTime\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"parseRfc3339DateTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseRfc7231DateTime\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"parseRfc7231DateTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseEpochTimestamp\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"parseEpochTimestamp\"]; });\n\n/* harmony import */ var _default_error_handler__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./default-error-handler */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"throwDefaultError\", function() { return _default_error_handler__WEBPACK_IMPORTED_MODULE_4__[\"throwDefaultError\"]; });\n\n/* harmony import */ var _defaults_mode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./defaults-mode */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loadConfigsForDefaultMode\", function() { return _defaults_mode__WEBPACK_IMPORTED_MODULE_5__[\"loadConfigsForDefaultMode\"]; });\n\n/* harmony import */ var _emitWarningIfUnsupportedVersion__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./emitWarningIfUnsupportedVersion */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"emitWarningIfUnsupportedVersion\", function() { return _emitWarningIfUnsupportedVersion__WEBPACK_IMPORTED_MODULE_6__[\"emitWarningIfUnsupportedVersion\"]; });\n\n/* harmony import */ var _exceptions__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./exceptions */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceException\", function() { return _exceptions__WEBPACK_IMPORTED_MODULE_7__[\"ServiceException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decorateServiceException\", function() { return _exceptions__WEBPACK_IMPORTED_MODULE_7__[\"decorateServiceException\"]; });\n\n/* harmony import */ var _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./extended-encode-uri-component */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"extendedEncodeURIComponent\", function() { return _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_8__[\"extendedEncodeURIComponent\"]; });\n\n/* harmony import */ var _get_array_if_single_item__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./get-array-if-single-item */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getArrayIfSingleItem\", function() { return _get_array_if_single_item__WEBPACK_IMPORTED_MODULE_9__[\"getArrayIfSingleItem\"]; });\n\n/* harmony import */ var _get_value_from_text_node__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./get-value-from-text-node */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getValueFromTextNode\", function() { return _get_value_from_text_node__WEBPACK_IMPORTED_MODULE_10__[\"getValueFromTextNode\"]; });\n\n/* harmony import */ var _lazy_json__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./lazy-json */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StringWrapper\", function() { return _lazy_json__WEBPACK_IMPORTED_MODULE_11__[\"StringWrapper\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LazyJsonString\", function() { return _lazy_json__WEBPACK_IMPORTED_MODULE_11__[\"LazyJsonString\"]; });\n\n/* harmony import */ var _object_mapping__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./object-mapping */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"map\", function() { return _object_mapping__WEBPACK_IMPORTED_MODULE_12__[\"map\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"convertMap\", function() { return _object_mapping__WEBPACK_IMPORTED_MODULE_12__[\"convertMap\"]; });\n\n/* harmony import */ var _parse_utils__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./parse-utils */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseBoolean\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"parseBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectBoolean\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectNumber\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectNumber\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectFloat32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectFloat32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectLong\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectLong\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectInt\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectInt\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectInt32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectInt32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectShort\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectShort\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectByte\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectByte\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectNonNull\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectNonNull\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectObject\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectObject\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectString\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectUnion\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectUnion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseDouble\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseDouble\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseFloat32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"limitedParseDouble\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"limitedParseDouble\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"handleFloat\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"handleFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"limitedParseFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"limitedParseFloat32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseLong\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseLong\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseInt\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseInt32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseShort\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseShort\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseByte\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseByte\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"logger\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"logger\"]; });\n\n/* harmony import */ var _resolve_path__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./resolve-path */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolvedPath\", function() { return _resolve_path__WEBPACK_IMPORTED_MODULE_14__[\"resolvedPath\"]; });\n\n/* harmony import */ var _ser_utils__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ser-utils */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializeFloat\", function() { return _ser_utils__WEBPACK_IMPORTED_MODULE_15__[\"serializeFloat\"]; });\n\n/* harmony import */ var _split_every__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./split-every */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"splitEvery\", function() { return _split_every__WEBPACK_IMPORTED_MODULE_16__[\"splitEvery\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js ***! \*******************************************************************************************************************/ /*! exports provided: StringWrapper, LazyJsonString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StringWrapper\", function() { return StringWrapper; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LazyJsonString\", function() { return LazyJsonString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar StringWrapper = function () {\n var Class = Object.getPrototypeOf(this).constructor;\n var Constructor = Function.bind.apply(String, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([null], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(arguments), false));\n var instance = new Constructor();\n Object.setPrototypeOf(instance, Class.prototype);\n return instance;\n};\nStringWrapper.prototype = Object.create(String.prototype, {\n constructor: {\n value: StringWrapper,\n enumerable: false,\n writable: true,\n configurable: true,\n },\n});\nObject.setPrototypeOf(StringWrapper, String);\nvar LazyJsonString = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LazyJsonString, _super);\n function LazyJsonString() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n LazyJsonString.prototype.deserializeJSON = function () {\n return JSON.parse(_super.prototype.toString.call(this));\n };\n LazyJsonString.prototype.toJSON = function () {\n return _super.prototype.toString.call(this);\n };\n LazyJsonString.fromObject = function (object) {\n if (object instanceof LazyJsonString) {\n return object;\n }\n else if (object instanceof String || typeof object === \"string\") {\n return new LazyJsonString(object);\n }\n return new LazyJsonString(JSON.stringify(object));\n };\n return LazyJsonString;\n}(StringWrapper));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js ***! \************************************************************************************************************************/ /*! exports provided: map, convertMap */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"map\", function() { return map; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"convertMap\", function() { return convertMap; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nfunction map(arg0, arg1, arg2) {\n var e_1, _a;\n var target;\n var filter;\n var instructions;\n if (typeof arg1 === \"undefined\" && typeof arg2 === \"undefined\") {\n target = {};\n instructions = arg0;\n }\n else {\n target = arg0;\n if (typeof arg1 === \"function\") {\n filter = arg1;\n instructions = arg2;\n return mapWithFilter(target, filter, instructions);\n }\n else {\n instructions = arg1;\n }\n }\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(instructions)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n if (!Array.isArray(instructions[key])) {\n target[key] = instructions[key];\n continue;\n }\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(instructions[key], 2), filter_1 = _d[0], value = _d[1];\n if (typeof value === \"function\") {\n var _value = void 0;\n var defaultFilterPassed = filter_1 === undefined && (_value = value()) != null;\n var customFilterPassed = (typeof filter_1 === \"function\" && !!filter_1(void 0)) || (typeof filter_1 !== \"function\" && !!filter_1);\n if (defaultFilterPassed) {\n target[key] = _value;\n }\n else if (customFilterPassed) {\n target[key] = value();\n }\n }\n else {\n var defaultFilterPassed = filter_1 === undefined && value != null;\n var customFilterPassed = (typeof filter_1 === \"function\" && !!filter_1(value)) || (typeof filter_1 !== \"function\" && !!filter_1);\n if (defaultFilterPassed || customFilterPassed) {\n target[key] = value;\n }\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return target;\n}\nvar convertMap = function (target) {\n var e_2, _a;\n var output = {};\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.entries(target || {})), _c = _b.next(); !_c.done; _c = _b.next()) {\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_c.value, 2), k = _d[0], v = _d[1];\n output[k] = [, v];\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return output;\n};\nvar mapWithFilter = function (target, filter, instructions) {\n return map(target, Object.entries(instructions).reduce(function (_instructions, _a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _b[0], value = _b[1];\n if (Array.isArray(value)) {\n _instructions[key] = value;\n }\n else {\n if (typeof value === \"function\") {\n _instructions[key] = [filter, value()];\n }\n else {\n _instructions[key] = [filter, value];\n }\n }\n return _instructions;\n }, {}));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js ***! \*********************************************************************************************************************/ /*! exports provided: parseBoolean, expectBoolean, expectNumber, expectFloat32, expectLong, expectInt, expectInt32, expectShort, expectByte, expectNonNull, expectObject, expectString, expectUnion, strictParseDouble, strictParseFloat, strictParseFloat32, limitedParseDouble, handleFloat, limitedParseFloat, limitedParseFloat32, strictParseLong, strictParseInt, strictParseInt32, strictParseShort, strictParseByte, logger */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseBoolean\", function() { return parseBoolean; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectBoolean\", function() { return expectBoolean; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectNumber\", function() { return expectNumber; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectFloat32\", function() { return expectFloat32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectLong\", function() { return expectLong; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectInt\", function() { return expectInt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectInt32\", function() { return expectInt32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectShort\", function() { return expectShort; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectByte\", function() { return expectByte; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectNonNull\", function() { return expectNonNull; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectObject\", function() { return expectObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectString\", function() { return expectString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectUnion\", function() { return expectUnion; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseDouble\", function() { return strictParseDouble; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat\", function() { return strictParseFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat32\", function() { return strictParseFloat32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"limitedParseDouble\", function() { return limitedParseDouble; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"handleFloat\", function() { return handleFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat\", function() { return limitedParseFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat32\", function() { return limitedParseFloat32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseLong\", function() { return strictParseLong; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt\", function() { return strictParseInt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt32\", function() { return strictParseInt32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseShort\", function() { return strictParseShort; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseByte\", function() { return strictParseByte; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"logger\", function() { return logger; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n\nvar parseBoolean = function (value) {\n switch (value) {\n case \"true\":\n return true;\n case \"false\":\n return false;\n default:\n throw new Error(\"Unable to parse boolean value \\\"\".concat(value, \"\\\"\"));\n }\n};\nvar expectBoolean = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"number\") {\n if (value === 0 || value === 1) {\n logger.warn(stackTraceWarning(\"Expected boolean, got \".concat(typeof value, \": \").concat(value)));\n }\n if (value === 0) {\n return false;\n }\n if (value === 1) {\n return true;\n }\n }\n if (typeof value === \"string\") {\n var lower = value.toLowerCase();\n if (lower === \"false\" || lower === \"true\") {\n logger.warn(stackTraceWarning(\"Expected boolean, got \".concat(typeof value, \": \").concat(value)));\n }\n if (lower === \"false\") {\n return false;\n }\n if (lower === \"true\") {\n return true;\n }\n }\n if (typeof value === \"boolean\") {\n return value;\n }\n throw new TypeError(\"Expected boolean, got \".concat(typeof value, \": \").concat(value));\n};\nvar expectNumber = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"string\") {\n var parsed = parseFloat(value);\n if (!Number.isNaN(parsed)) {\n if (String(parsed) !== String(value)) {\n logger.warn(stackTraceWarning(\"Expected number but observed string: \".concat(value)));\n }\n return parsed;\n }\n }\n if (typeof value === \"number\") {\n return value;\n }\n throw new TypeError(\"Expected number, got \".concat(typeof value, \": \").concat(value));\n};\nvar MAX_FLOAT = Math.ceil(Math.pow(2, 127) * (2 - Math.pow(2, -23)));\nvar expectFloat32 = function (value) {\n var expected = expectNumber(value);\n if (expected !== undefined && !Number.isNaN(expected) && expected !== Infinity && expected !== -Infinity) {\n if (Math.abs(expected) > MAX_FLOAT) {\n throw new TypeError(\"Expected 32-bit float, got \".concat(value));\n }\n }\n return expected;\n};\nvar expectLong = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (Number.isInteger(value) && !Number.isNaN(value)) {\n return value;\n }\n throw new TypeError(\"Expected integer, got \".concat(typeof value, \": \").concat(value));\n};\nvar expectInt = expectLong;\nvar expectInt32 = function (value) { return expectSizedInt(value, 32); };\nvar expectShort = function (value) { return expectSizedInt(value, 16); };\nvar expectByte = function (value) { return expectSizedInt(value, 8); };\nvar expectSizedInt = function (value, size) {\n var expected = expectLong(value);\n if (expected !== undefined && castInt(expected, size) !== expected) {\n throw new TypeError(\"Expected \".concat(size, \"-bit integer, got \").concat(value));\n }\n return expected;\n};\nvar castInt = function (value, size) {\n switch (size) {\n case 32:\n return Int32Array.of(value)[0];\n case 16:\n return Int16Array.of(value)[0];\n case 8:\n return Int8Array.of(value)[0];\n }\n};\nvar expectNonNull = function (value, location) {\n if (value === null || value === undefined) {\n if (location) {\n throw new TypeError(\"Expected a non-null value for \".concat(location));\n }\n throw new TypeError(\"Expected a non-null value\");\n }\n return value;\n};\nvar expectObject = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"object\" && !Array.isArray(value)) {\n return value;\n }\n var receivedType = Array.isArray(value) ? \"array\" : typeof value;\n throw new TypeError(\"Expected object, got \".concat(receivedType, \": \").concat(value));\n};\nvar expectString = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"string\") {\n return value;\n }\n if ([\"boolean\", \"number\", \"bigint\"].includes(typeof value)) {\n logger.warn(stackTraceWarning(\"Expected string, got \".concat(typeof value, \": \").concat(value)));\n return String(value);\n }\n throw new TypeError(\"Expected string, got \".concat(typeof value, \": \").concat(value));\n};\nvar expectUnion = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n var asObject = expectObject(value);\n var setKeys = Object.entries(asObject)\n .filter(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), v = _b[1];\n return v != null;\n })\n .map(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 1), k = _b[0];\n return k;\n });\n if (setKeys.length === 0) {\n throw new TypeError(\"Unions must have exactly one non-null member. None were found.\");\n }\n if (setKeys.length > 1) {\n throw new TypeError(\"Unions must have exactly one non-null member. Keys \".concat(setKeys, \" were not null.\"));\n }\n return asObject;\n};\nvar strictParseDouble = function (value) {\n if (typeof value == \"string\") {\n return expectNumber(parseNumber(value));\n }\n return expectNumber(value);\n};\nvar strictParseFloat = strictParseDouble;\nvar strictParseFloat32 = function (value) {\n if (typeof value == \"string\") {\n return expectFloat32(parseNumber(value));\n }\n return expectFloat32(value);\n};\nvar NUMBER_REGEX = /(-?(?:0|[1-9]\\d*)(?:\\.\\d+)?(?:[eE][+-]?\\d+)?)|(-?Infinity)|(NaN)/g;\nvar parseNumber = function (value) {\n var matches = value.match(NUMBER_REGEX);\n if (matches === null || matches[0].length !== value.length) {\n throw new TypeError(\"Expected real number, got implicit NaN\");\n }\n return parseFloat(value);\n};\nvar limitedParseDouble = function (value) {\n if (typeof value == \"string\") {\n return parseFloatString(value);\n }\n return expectNumber(value);\n};\nvar handleFloat = limitedParseDouble;\nvar limitedParseFloat = limitedParseDouble;\nvar limitedParseFloat32 = function (value) {\n if (typeof value == \"string\") {\n return parseFloatString(value);\n }\n return expectFloat32(value);\n};\nvar parseFloatString = function (value) {\n switch (value) {\n case \"NaN\":\n return NaN;\n case \"Infinity\":\n return Infinity;\n case \"-Infinity\":\n return -Infinity;\n default:\n throw new Error(\"Unable to parse float value: \".concat(value));\n }\n};\nvar strictParseLong = function (value) {\n if (typeof value === \"string\") {\n return expectLong(parseNumber(value));\n }\n return expectLong(value);\n};\nvar strictParseInt = strictParseLong;\nvar strictParseInt32 = function (value) {\n if (typeof value === \"string\") {\n return expectInt32(parseNumber(value));\n }\n return expectInt32(value);\n};\nvar strictParseShort = function (value) {\n if (typeof value === \"string\") {\n return expectShort(parseNumber(value));\n }\n return expectShort(value);\n};\nvar strictParseByte = function (value) {\n if (typeof value === \"string\") {\n return expectByte(parseNumber(value));\n }\n return expectByte(value);\n};\nvar stackTraceWarning = function (message) {\n return String(new TypeError(message).stack || message)\n .split(\"\\n\")\n .slice(0, 5)\n .filter(function (s) { return !s.includes(\"stackTraceWarning\"); })\n .join(\"\\n\");\n};\nvar logger = {\n warn: console.warn,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js ***! \**********************************************************************************************************************/ /*! exports provided: resolvedPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolvedPath\", function() { return resolvedPath; });\n/* harmony import */ var _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./extended-encode-uri-component */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js\");\n\nvar resolvedPath = function (resolvedPath, input, memberName, labelValueProvider, uriLabel, isGreedyLabel) {\n if (input != null && input[memberName] !== undefined) {\n var labelValue = labelValueProvider();\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: \" + memberName + \".\");\n }\n resolvedPath = resolvedPath.replace(uriLabel, isGreedyLabel\n ? labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_0__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\")\n : Object(_extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_0__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: \" + memberName + \".\");\n }\n return resolvedPath;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js ***! \*******************************************************************************************************************/ /*! exports provided: serializeFloat */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeFloat\", function() { return serializeFloat; });\nvar serializeFloat = function (value) {\n if (value !== value) {\n return \"NaN\";\n }\n switch (value) {\n case Infinity:\n return \"Infinity\";\n case -Infinity:\n return \"-Infinity\";\n default:\n return value;\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js ***! \*********************************************************************************************************************/ /*! exports provided: splitEvery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"splitEvery\", function() { return splitEvery; });\nfunction splitEvery(value, delimiter, numDelimiters) {\n if (numDelimiters <= 0 || !Number.isInteger(numDelimiters)) {\n throw new Error(\"Invalid number of delimiters (\" + numDelimiters + \") for splitEvery.\");\n }\n var segments = value.split(delimiter);\n if (numDelimiters === 1) {\n return segments;\n }\n var compoundSegments = [];\n var currentSegment = \"\";\n for (var i = 0; i < segments.length; i++) {\n if (currentSegment === \"\") {\n currentSegment = segments[i];\n }\n else {\n currentSegment += delimiter + segments[i];\n }\n if ((i + 1) % numDelimiters === 0) {\n compoundSegments.push(currentSegment);\n currentSegment = \"\";\n }\n }\n if (currentSegment !== \"\") {\n compoundSegments.push(currentSegment);\n }\n return compoundSegments;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/url-parser/dist-es/index.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/url-parser/dist-es/index.js ***! \************************************************************************************************************/ /*! exports provided: parseUrl */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseUrl\", function() { return parseUrl; });\n/* harmony import */ var _aws_sdk_querystring_parser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/querystring-parser */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/querystring-parser/dist-es/index.js\");\n\nvar parseUrl = function (url) {\n if (typeof url === 'string') {\n return parseUrl(new URL(url));\n }\n var _a = url, hostname = _a.hostname, pathname = _a.pathname, port = _a.port, protocol = _a.protocol, search = _a.search;\n var query;\n if (search) {\n query = Object(_aws_sdk_querystring_parser__WEBPACK_IMPORTED_MODULE_0__[\"parseQueryString\"])(search);\n }\n return {\n hostname: hostname,\n port: port ? parseInt(port) : undefined,\n protocol: protocol,\n path: pathname,\n query: query,\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/url-parser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js ***! \*********************************************************************************************************************/ /*! exports provided: fromBase64, toBase64 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromBase64\", function() { return fromBase64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toBase64\", function() { return toBase64; });\nvar alphabetByEncoding = {};\nvar alphabetByValue = new Array(64);\nfor (var i = 0, start = \"A\".charCodeAt(0), limit = \"Z\".charCodeAt(0); i + start <= limit; i++) {\n var char = String.fromCharCode(i + start);\n alphabetByEncoding[char] = i;\n alphabetByValue[i] = char;\n}\nfor (var i = 0, start = \"a\".charCodeAt(0), limit = \"z\".charCodeAt(0); i + start <= limit; i++) {\n var char = String.fromCharCode(i + start);\n var index = i + 26;\n alphabetByEncoding[char] = index;\n alphabetByValue[index] = char;\n}\nfor (var i = 0; i < 10; i++) {\n alphabetByEncoding[i.toString(10)] = i + 52;\n var char = i.toString(10);\n var index = i + 52;\n alphabetByEncoding[char] = index;\n alphabetByValue[index] = char;\n}\nalphabetByEncoding[\"+\"] = 62;\nalphabetByValue[62] = \"+\";\nalphabetByEncoding[\"/\"] = 63;\nalphabetByValue[63] = \"/\";\nvar bitsPerLetter = 6;\nvar bitsPerByte = 8;\nvar maxLetterValue = 63;\nfunction fromBase64(input) {\n var totalByteLength = (input.length / 4) * 3;\n if (input.slice(-2) === \"==\") {\n totalByteLength -= 2;\n }\n else if (input.slice(-1) === \"=\") {\n totalByteLength--;\n }\n var out = new ArrayBuffer(totalByteLength);\n var dataView = new DataView(out);\n for (var i = 0; i < input.length; i += 4) {\n var bits = 0;\n var bitLength = 0;\n for (var j = i, limit = i + 3; j <= limit; j++) {\n if (input[j] !== \"=\") {\n if (!(input[j] in alphabetByEncoding)) {\n throw new TypeError(\"Invalid character \".concat(input[j], \" in base64 string.\"));\n }\n bits |= alphabetByEncoding[input[j]] << ((limit - j) * bitsPerLetter);\n bitLength += bitsPerLetter;\n }\n else {\n bits >>= bitsPerLetter;\n }\n }\n var chunkOffset = (i / 4) * 3;\n bits >>= bitLength % bitsPerByte;\n var byteLength = Math.floor(bitLength / bitsPerByte);\n for (var k = 0; k < byteLength; k++) {\n var offset = (byteLength - k - 1) * bitsPerByte;\n dataView.setUint8(chunkOffset + k, (bits & (255 << offset)) >> offset);\n }\n }\n return new Uint8Array(out);\n}\nfunction toBase64(input) {\n var str = \"\";\n for (var i = 0; i < input.length; i += 3) {\n var bits = 0;\n var bitLength = 0;\n for (var j = i, limit = Math.min(i + 3, input.length); j < limit; j++) {\n bits |= input[j] << ((limit - j - 1) * bitsPerByte);\n bitLength += bitsPerByte;\n }\n var bitClusterCount = Math.ceil(bitLength / bitsPerLetter);\n bits <<= bitClusterCount * bitsPerLetter - bitLength;\n for (var k = 1; k <= bitClusterCount; k++) {\n var offset = (bitClusterCount - k) * bitsPerLetter;\n str += alphabetByValue[(bits & (maxLetterValue << offset)) >> offset];\n }\n str += \"==\".slice(0, 4 - bitClusterCount);\n }\n return str;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js": /*!****************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js ***! \****************************************************************************************************************************************/ /*! exports provided: calculateBodyLength */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"calculateBodyLength\", function() { return calculateBodyLength; });\nvar calculateBodyLength = function (body) {\n if (typeof body === \"string\") {\n var len = body.length;\n for (var i = len - 1; i >= 0; i--) {\n var code = body.charCodeAt(i);\n if (code > 0x7f && code <= 0x7ff)\n len++;\n else if (code > 0x7ff && code <= 0xffff)\n len += 2;\n if (code >= 0xdc00 && code <= 0xdfff)\n i--;\n }\n return len;\n }\n else if (typeof body.byteLength === \"number\") {\n return body.byteLength;\n }\n else if (typeof body.size === \"number\") {\n return body.size;\n }\n throw new Error(\"Body Length computation failed for \".concat(body));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js ***! \**************************************************************************************************************************/ /*! exports provided: calculateBodyLength */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _calculateBodyLength__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./calculateBodyLength */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"calculateBodyLength\", function() { return _calculateBodyLength__WEBPACK_IMPORTED_MODULE_0__[\"calculateBodyLength\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js ***! \*******************************************************************************************************************/ /*! exports provided: fromHex, toHex */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromHex\", function() { return fromHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toHex\", function() { return toHex; });\nvar SHORT_TO_HEX = {};\nvar HEX_TO_SHORT = {};\nfor (var i = 0; i < 256; i++) {\n var encodedByte = i.toString(16).toLowerCase();\n if (encodedByte.length === 1) {\n encodedByte = \"0\".concat(encodedByte);\n }\n SHORT_TO_HEX[i] = encodedByte;\n HEX_TO_SHORT[encodedByte] = i;\n}\nfunction fromHex(encoded) {\n if (encoded.length % 2 !== 0) {\n throw new Error(\"Hex encoded strings must have an even number length\");\n }\n var out = new Uint8Array(encoded.length / 2);\n for (var i = 0; i < encoded.length; i += 2) {\n var encodedByte = encoded.slice(i, i + 2).toLowerCase();\n if (encodedByte in HEX_TO_SHORT) {\n out[i / 2] = HEX_TO_SHORT[encodedByte];\n }\n else {\n throw new Error(\"Cannot decode unrecognized sequence \".concat(encodedByte, \" as hexadecimal\"));\n }\n }\n return out;\n}\nfunction toHex(bytes) {\n var out = \"\";\n for (var i = 0; i < bytes.byteLength; i++) {\n out += SHORT_TO_HEX[bytes[i]];\n }\n return out;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js ***! \***************************************************************************************************************************/ /*! exports provided: escapeUriPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeUriPath\", function() { return escapeUriPath; });\n/* harmony import */ var _escape_uri__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./escape-uri */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js\");\n\nvar escapeUriPath = function (uri) { return uri.split(\"/\").map(_escape_uri__WEBPACK_IMPORTED_MODULE_0__[\"escapeUri\"]).join(\"/\"); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js ***! \**********************************************************************************************************************/ /*! exports provided: escapeUri */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeUri\", function() { return escapeUri; });\nvar escapeUri = function (uri) {\n return encodeURIComponent(uri).replace(/[!'()*]/g, hexEncode);\n};\nvar hexEncode = function (c) { return \"%\".concat(c.charCodeAt(0).toString(16).toUpperCase()); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js ***! \*****************************************************************************************************************/ /*! exports provided: escapeUri, escapeUriPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _escape_uri__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./escape-uri */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"escapeUri\", function() { return _escape_uri__WEBPACK_IMPORTED_MODULE_0__[\"escapeUri\"]; });\n\n/* harmony import */ var _escape_uri_path__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./escape-uri-path */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"escapeUriPath\", function() { return _escape_uri_path__WEBPACK_IMPORTED_MODULE_1__[\"escapeUriPath\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js ***! \*************************************************************************************************************************/ /*! exports provided: defaultUserAgent */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultUserAgent\", function() { return defaultUserAgent; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! bowser */ \"./node_modules/bowser/es5.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(bowser__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar defaultUserAgent = function (_a) {\n var serviceId = _a.serviceId, clientVersion = _a.clientVersion;\n return function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedUA, sections;\n var _a, _b, _c, _d, _e, _f, _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n parsedUA = typeof window !== \"undefined\" && ((_a = window === null || window === void 0 ? void 0 : window.navigator) === null || _a === void 0 ? void 0 : _a.userAgent)\n ? bowser__WEBPACK_IMPORTED_MODULE_1___default.a.parse(window.navigator.userAgent)\n : undefined;\n sections = [\n [\"aws-sdk-js\", clientVersion],\n [\"os/\".concat(((_b = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.os) === null || _b === void 0 ? void 0 : _b.name) || \"other\"), (_c = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.os) === null || _c === void 0 ? void 0 : _c.version],\n [\"lang/js\"],\n [\"md/browser\", \"\".concat((_e = (_d = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.browser) === null || _d === void 0 ? void 0 : _d.name) !== null && _e !== void 0 ? _e : \"unknown\", \"_\").concat((_g = (_f = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.browser) === null || _f === void 0 ? void 0 : _f.version) !== null && _g !== void 0 ? _g : \"unknown\")],\n ];\n if (serviceId) {\n sections.push([\"api/\".concat(serviceId), clientVersion]);\n }\n return [2, sections];\n });\n }); };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js ***! \*******************************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\n/* harmony import */ var _pureJs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./pureJs */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js\");\n/* harmony import */ var _whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./whatwgEncodingApi */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js\");\n\n\nvar fromUtf8 = function (input) {\n return typeof TextEncoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"fromUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"fromUtf8\"])(input);\n};\nvar toUtf8 = function (input) {\n return typeof TextDecoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"toUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"toUtf8\"])(input);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js ***! \********************************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\nvar fromUtf8 = function (input) {\n var bytes = [];\n for (var i = 0, len = input.length; i < len; i++) {\n var value = input.charCodeAt(i);\n if (value < 0x80) {\n bytes.push(value);\n }\n else if (value < 0x800) {\n bytes.push((value >> 6) | 192, (value & 63) | 128);\n }\n else if (i + 1 < input.length && (value & 0xfc00) === 0xd800 && (input.charCodeAt(i + 1) & 0xfc00) === 0xdc00) {\n var surrogatePair = 0x10000 + ((value & 1023) << 10) + (input.charCodeAt(++i) & 1023);\n bytes.push((surrogatePair >> 18) | 240, ((surrogatePair >> 12) & 63) | 128, ((surrogatePair >> 6) & 63) | 128, (surrogatePair & 63) | 128);\n }\n else {\n bytes.push((value >> 12) | 224, ((value >> 6) & 63) | 128, (value & 63) | 128);\n }\n }\n return Uint8Array.from(bytes);\n};\nvar toUtf8 = function (input) {\n var decoded = \"\";\n for (var i = 0, len = input.length; i < len; i++) {\n var byte = input[i];\n if (byte < 0x80) {\n decoded += String.fromCharCode(byte);\n }\n else if (192 <= byte && byte < 224) {\n var nextByte = input[++i];\n decoded += String.fromCharCode(((byte & 31) << 6) | (nextByte & 63));\n }\n else if (240 <= byte && byte < 365) {\n var surrogatePair = [byte, input[++i], input[++i], input[++i]];\n var encoded = \"%\" + surrogatePair.map(function (byteValue) { return byteValue.toString(16); }).join(\"%\");\n decoded += decodeURIComponent(encoded);\n }\n else {\n decoded += String.fromCharCode(((byte & 15) << 12) | ((input[++i] & 63) << 6) | (input[++i] & 63));\n }\n }\n return decoded;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js": /*!*******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js ***! \*******************************************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\nfunction fromUtf8(input) {\n return new TextEncoder().encode(input);\n}\nfunction toUtf8(input) {\n return new TextDecoder(\"utf-8\").decode(input);\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js ***! \******************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/index.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/index.js ***! \******************************************************************************************************/ /*! exports provided: v1, v3, v4, v5, NIL, version, validate, stringify, parse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _v1_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v1.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v1.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v1\", function() { return _v1_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/* harmony import */ var _v3_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./v3.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v3.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v3\", function() { return _v3_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _v4_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./v4.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v4.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v4\", function() { return _v4_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n/* harmony import */ var _v5_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./v5.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v5.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v5\", function() { return _v5_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"]; });\n\n/* harmony import */ var _nil_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./nil.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/nil.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NIL\", function() { return _nil_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"]; });\n\n/* harmony import */ var _version_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./version.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/version.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return _version_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"]; });\n\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/validate.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validate\", function() { return _validate_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"]; });\n\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/stringify.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"stringify\", function() { return _stringify_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"]; });\n\n/* harmony import */ var _parse_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./parse.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/parse.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parse\", function() { return _parse_js__WEBPACK_IMPORTED_MODULE_8__[\"default\"]; });\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/md5.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/md5.js ***! \****************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/*\n * Browser-compatible JavaScript MD5\n *\n * Modification of JavaScript MD5\n * https://github.com/blueimp/JavaScript-MD5\n *\n * Copyright 2011, Sebastian Tschan\n * https://blueimp.net\n *\n * Licensed under the MIT license:\n * https://opensource.org/licenses/MIT\n *\n * Based on\n * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message\n * Digest Algorithm, as defined in RFC 1321.\n * Version 2.2 Copyright (C) Paul Johnston 1999 - 2009\n * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet\n * Distributed under the BSD License\n * See http://pajhome.org.uk/crypt/md5 for more info.\n */\nfunction md5(bytes) {\n if (typeof bytes === 'string') {\n var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape\n\n bytes = new Uint8Array(msg.length);\n\n for (var i = 0; i < msg.length; ++i) {\n bytes[i] = msg.charCodeAt(i);\n }\n }\n\n return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8));\n}\n/*\n * Convert an array of little-endian words to an array of bytes\n */\n\n\nfunction md5ToHexEncodedArray(input) {\n var output = [];\n var length32 = input.length * 32;\n var hexTab = '0123456789abcdef';\n\n for (var i = 0; i < length32; i += 8) {\n var x = input[i >> 5] >>> i % 32 & 0xff;\n var hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16);\n output.push(hex);\n }\n\n return output;\n}\n/**\n * Calculate output length with padding and bit length\n */\n\n\nfunction getOutputLength(inputLength8) {\n return (inputLength8 + 64 >>> 9 << 4) + 14 + 1;\n}\n/*\n * Calculate the MD5 of an array of little-endian words, and a bit length.\n */\n\n\nfunction wordsToMd5(x, len) {\n /* append padding */\n x[len >> 5] |= 0x80 << len % 32;\n x[getOutputLength(len) - 1] = len;\n var a = 1732584193;\n var b = -271733879;\n var c = -1732584194;\n var d = 271733878;\n\n for (var i = 0; i < x.length; i += 16) {\n var olda = a;\n var oldb = b;\n var oldc = c;\n var oldd = d;\n a = md5ff(a, b, c, d, x[i], 7, -680876936);\n d = md5ff(d, a, b, c, x[i + 1], 12, -389564586);\n c = md5ff(c, d, a, b, x[i + 2], 17, 606105819);\n b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330);\n a = md5ff(a, b, c, d, x[i + 4], 7, -176418897);\n d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426);\n c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341);\n b = md5ff(b, c, d, a, x[i + 7], 22, -45705983);\n a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416);\n d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417);\n c = md5ff(c, d, a, b, x[i + 10], 17, -42063);\n b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162);\n a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682);\n d = md5ff(d, a, b, c, x[i + 13], 12, -40341101);\n c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290);\n b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329);\n a = md5gg(a, b, c, d, x[i + 1], 5, -165796510);\n d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632);\n c = md5gg(c, d, a, b, x[i + 11], 14, 643717713);\n b = md5gg(b, c, d, a, x[i], 20, -373897302);\n a = md5gg(a, b, c, d, x[i + 5], 5, -701558691);\n d = md5gg(d, a, b, c, x[i + 10], 9, 38016083);\n c = md5gg(c, d, a, b, x[i + 15], 14, -660478335);\n b = md5gg(b, c, d, a, x[i + 4], 20, -405537848);\n a = md5gg(a, b, c, d, x[i + 9], 5, 568446438);\n d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690);\n c = md5gg(c, d, a, b, x[i + 3], 14, -187363961);\n b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501);\n a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467);\n d = md5gg(d, a, b, c, x[i + 2], 9, -51403784);\n c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473);\n b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734);\n a = md5hh(a, b, c, d, x[i + 5], 4, -378558);\n d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463);\n c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562);\n b = md5hh(b, c, d, a, x[i + 14], 23, -35309556);\n a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060);\n d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353);\n c = md5hh(c, d, a, b, x[i + 7], 16, -155497632);\n b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640);\n a = md5hh(a, b, c, d, x[i + 13], 4, 681279174);\n d = md5hh(d, a, b, c, x[i], 11, -358537222);\n c = md5hh(c, d, a, b, x[i + 3], 16, -722521979);\n b = md5hh(b, c, d, a, x[i + 6], 23, 76029189);\n a = md5hh(a, b, c, d, x[i + 9], 4, -640364487);\n d = md5hh(d, a, b, c, x[i + 12], 11, -421815835);\n c = md5hh(c, d, a, b, x[i + 15], 16, 530742520);\n b = md5hh(b, c, d, a, x[i + 2], 23, -995338651);\n a = md5ii(a, b, c, d, x[i], 6, -198630844);\n d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415);\n c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905);\n b = md5ii(b, c, d, a, x[i + 5], 21, -57434055);\n a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571);\n d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606);\n c = md5ii(c, d, a, b, x[i + 10], 15, -1051523);\n b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799);\n a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359);\n d = md5ii(d, a, b, c, x[i + 15], 10, -30611744);\n c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380);\n b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649);\n a = md5ii(a, b, c, d, x[i + 4], 6, -145523070);\n d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379);\n c = md5ii(c, d, a, b, x[i + 2], 15, 718787259);\n b = md5ii(b, c, d, a, x[i + 9], 21, -343485551);\n a = safeAdd(a, olda);\n b = safeAdd(b, oldb);\n c = safeAdd(c, oldc);\n d = safeAdd(d, oldd);\n }\n\n return [a, b, c, d];\n}\n/*\n * Convert an array bytes to an array of little-endian words\n * Characters >255 have their high-byte silently ignored.\n */\n\n\nfunction bytesToWords(input) {\n if (input.length === 0) {\n return [];\n }\n\n var length8 = input.length * 8;\n var output = new Uint32Array(getOutputLength(length8));\n\n for (var i = 0; i < length8; i += 8) {\n output[i >> 5] |= (input[i / 8] & 0xff) << i % 32;\n }\n\n return output;\n}\n/*\n * Add integers, wrapping at 2^32. This uses 16-bit operations internally\n * to work around bugs in some JS interpreters.\n */\n\n\nfunction safeAdd(x, y) {\n var lsw = (x & 0xffff) + (y & 0xffff);\n var msw = (x >> 16) + (y >> 16) + (lsw >> 16);\n return msw << 16 | lsw & 0xffff;\n}\n/*\n * Bitwise rotate a 32-bit number to the left.\n */\n\n\nfunction bitRotateLeft(num, cnt) {\n return num << cnt | num >>> 32 - cnt;\n}\n/*\n * These functions implement the four basic operations the algorithm uses.\n */\n\n\nfunction md5cmn(q, a, b, x, s, t) {\n return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b);\n}\n\nfunction md5ff(a, b, c, d, x, s, t) {\n return md5cmn(b & c | ~b & d, a, b, x, s, t);\n}\n\nfunction md5gg(a, b, c, d, x, s, t) {\n return md5cmn(b & d | c & ~d, a, b, x, s, t);\n}\n\nfunction md5hh(a, b, c, d, x, s, t) {\n return md5cmn(b ^ c ^ d, a, b, x, s, t);\n}\n\nfunction md5ii(a, b, c, d, x, s, t) {\n return md5cmn(c ^ (b | ~d), a, b, x, s, t);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (md5);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/md5.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/nil.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/nil.js ***! \****************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = ('00000000-0000-0000-0000-000000000000');\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/nil.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/parse.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/parse.js ***! \******************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/validate.js\");\n\n\nfunction parse(uuid) {\n if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(uuid)) {\n throw TypeError('Invalid UUID');\n }\n\n var v;\n var arr = new Uint8Array(16); // Parse ########-....-....-....-............\n\n arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24;\n arr[1] = v >>> 16 & 0xff;\n arr[2] = v >>> 8 & 0xff;\n arr[3] = v & 0xff; // Parse ........-####-....-....-............\n\n arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8;\n arr[5] = v & 0xff; // Parse ........-....-####-....-............\n\n arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8;\n arr[7] = v & 0xff; // Parse ........-....-....-####-............\n\n arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8;\n arr[9] = v & 0xff; // Parse ........-....-....-....-############\n // (Use \"/\" to avoid 32-bit truncation when bit-shifting high-order bytes)\n\n arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff;\n arr[11] = v / 0x100000000 & 0xff;\n arr[12] = v >>> 24 & 0xff;\n arr[13] = v >>> 16 & 0xff;\n arr[14] = v >>> 8 & 0xff;\n arr[15] = v & 0xff;\n return arr;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (parse);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/parse.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/regex.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/regex.js ***! \******************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/regex.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/rng.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/rng.js ***! \****************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return rng; });\n// Unique ID creation requires a high quality random # generator. In the browser we therefore\n// require the crypto API and do not support built-in fallback to lower quality random number\n// generators (like Math.random()).\nvar getRandomValues;\nvar rnds8 = new Uint8Array(16);\nfunction rng() {\n // lazy load so that environments that need to polyfill have a chance to do so\n if (!getRandomValues) {\n // getRandomValues needs to be invoked in a context where \"this\" is a Crypto implementation. Also,\n // find the complete implementation of crypto (msCrypto) on IE11.\n getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto);\n\n if (!getRandomValues) {\n throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');\n }\n }\n\n return getRandomValues(rnds8);\n}\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/rng.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/sha1.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/sha1.js ***! \*****************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n// Adapted from Chris Veness' SHA1 code at\n// http://www.movable-type.co.uk/scripts/sha1.html\nfunction f(s, x, y, z) {\n switch (s) {\n case 0:\n return x & y ^ ~x & z;\n\n case 1:\n return x ^ y ^ z;\n\n case 2:\n return x & y ^ x & z ^ y & z;\n\n case 3:\n return x ^ y ^ z;\n }\n}\n\nfunction ROTL(x, n) {\n return x << n | x >>> 32 - n;\n}\n\nfunction sha1(bytes) {\n var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];\n var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0];\n\n if (typeof bytes === 'string') {\n var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape\n\n bytes = [];\n\n for (var i = 0; i < msg.length; ++i) {\n bytes.push(msg.charCodeAt(i));\n }\n } else if (!Array.isArray(bytes)) {\n // Convert Array-like to Array\n bytes = Array.prototype.slice.call(bytes);\n }\n\n bytes.push(0x80);\n var l = bytes.length / 4 + 2;\n var N = Math.ceil(l / 16);\n var M = new Array(N);\n\n for (var _i = 0; _i < N; ++_i) {\n var arr = new Uint32Array(16);\n\n for (var j = 0; j < 16; ++j) {\n arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3];\n }\n\n M[_i] = arr;\n }\n\n M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32);\n M[N - 1][14] = Math.floor(M[N - 1][14]);\n M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff;\n\n for (var _i2 = 0; _i2 < N; ++_i2) {\n var W = new Uint32Array(80);\n\n for (var t = 0; t < 16; ++t) {\n W[t] = M[_i2][t];\n }\n\n for (var _t = 16; _t < 80; ++_t) {\n W[_t] = ROTL(W[_t - 3] ^ W[_t - 8] ^ W[_t - 14] ^ W[_t - 16], 1);\n }\n\n var a = H[0];\n var b = H[1];\n var c = H[2];\n var d = H[3];\n var e = H[4];\n\n for (var _t2 = 0; _t2 < 80; ++_t2) {\n var s = Math.floor(_t2 / 20);\n var T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[_t2] >>> 0;\n e = d;\n d = c;\n c = ROTL(b, 30) >>> 0;\n b = a;\n a = T;\n }\n\n H[0] = H[0] + a >>> 0;\n H[1] = H[1] + b >>> 0;\n H[2] = H[2] + c >>> 0;\n H[3] = H[3] + d >>> 0;\n H[4] = H[4] + e >>> 0;\n }\n\n return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff];\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (sha1);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/sha1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/stringify.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/stringify.js ***! \**********************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/validate.js\");\n\n/**\n * Convert array of 16 byte values to UUID string format of the form:\n * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\n */\n\nvar byteToHex = [];\n\nfor (var i = 0; i < 256; ++i) {\n byteToHex.push((i + 0x100).toString(16).substr(1));\n}\n\nfunction stringify(arr) {\n var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n // Note: Be careful editing this code! It's been tuned for performance\n // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434\n var uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one\n // of the following:\n // - One or more input array values don't map to a hex octet (leading to\n // \"undefined\" in the uuid)\n // - Invalid input values for the RFC `version` or `variant` fields\n\n if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(uuid)) {\n throw TypeError('Stringified UUID is invalid');\n }\n\n return uuid;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (stringify);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/stringify.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v1.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v1.js ***! \***************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./rng.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/rng.js\");\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/stringify.js\");\n\n // **`v1()` - Generate time-based UUID**\n//\n// Inspired by https://github.com/LiosK/UUID.js\n// and http://docs.python.org/library/uuid.html\n\nvar _nodeId;\n\nvar _clockseq; // Previous uuid creation time\n\n\nvar _lastMSecs = 0;\nvar _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details\n\nfunction v1(options, buf, offset) {\n var i = buf && offset || 0;\n var b = buf || new Array(16);\n options = options || {};\n var node = options.node || _nodeId;\n var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not\n // specified. We do this lazily to minimize issues related to insufficient\n // system entropy. See #189\n\n if (node == null || clockseq == null) {\n var seedBytes = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])();\n\n if (node == null) {\n // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)\n node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];\n }\n\n if (clockseq == null) {\n // Per 4.2.2, randomize (14 bit) clockseq\n clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;\n }\n } // UUID timestamps are 100 nano-second units since the Gregorian epoch,\n // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so\n // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'\n // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.\n\n\n var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock\n // cycle to simulate higher resolution clock\n\n var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)\n\n var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression\n\n if (dt < 0 && options.clockseq === undefined) {\n clockseq = clockseq + 1 & 0x3fff;\n } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new\n // time interval\n\n\n if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {\n nsecs = 0;\n } // Per 4.2.1.2 Throw error if too many uuids are requested\n\n\n if (nsecs >= 10000) {\n throw new Error(\"uuid.v1(): Can't create more than 10M uuids/sec\");\n }\n\n _lastMSecs = msecs;\n _lastNSecs = nsecs;\n _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch\n\n msecs += 12219292800000; // `time_low`\n\n var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;\n b[i++] = tl >>> 24 & 0xff;\n b[i++] = tl >>> 16 & 0xff;\n b[i++] = tl >>> 8 & 0xff;\n b[i++] = tl & 0xff; // `time_mid`\n\n var tmh = msecs / 0x100000000 * 10000 & 0xfffffff;\n b[i++] = tmh >>> 8 & 0xff;\n b[i++] = tmh & 0xff; // `time_high_and_version`\n\n b[i++] = tmh >>> 24 & 0xf | 0x10; // include version\n\n b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)\n\n b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`\n\n b[i++] = clockseq & 0xff; // `node`\n\n for (var n = 0; n < 6; ++n) {\n b[i + n] = node[n];\n }\n\n return buf || Object(_stringify_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(b);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (v1);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v3.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v3.js ***! \***************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _v35_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v35.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v35.js\");\n/* harmony import */ var _md5_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./md5.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/md5.js\");\n\n\nvar v3 = Object(_v35_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])('v3', 0x30, _md5_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = (v3);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v3.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v35.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v35.js ***! \****************************************************************************************************/ /*! exports provided: DNS, URL, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DNS\", function() { return DNS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"URL\", function() { return URL; });\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/stringify.js\");\n/* harmony import */ var _parse_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./parse.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/parse.js\");\n\n\n\nfunction stringToBytes(str) {\n str = unescape(encodeURIComponent(str)); // UTF8 escape\n\n var bytes = [];\n\n for (var i = 0; i < str.length; ++i) {\n bytes.push(str.charCodeAt(i));\n }\n\n return bytes;\n}\n\nvar DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';\nvar URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';\n/* harmony default export */ __webpack_exports__[\"default\"] = (function (name, version, hashfunc) {\n function generateUUID(value, namespace, buf, offset) {\n if (typeof value === 'string') {\n value = stringToBytes(value);\n }\n\n if (typeof namespace === 'string') {\n namespace = Object(_parse_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(namespace);\n }\n\n if (namespace.length !== 16) {\n throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');\n } // Compute hash of namespace and value, Per 4.3\n // Future: Use spread syntax when supported on all platforms, e.g. `bytes =\n // hashfunc([...namespace, ... value])`\n\n\n var bytes = new Uint8Array(16 + value.length);\n bytes.set(namespace);\n bytes.set(value, namespace.length);\n bytes = hashfunc(bytes);\n bytes[6] = bytes[6] & 0x0f | version;\n bytes[8] = bytes[8] & 0x3f | 0x80;\n\n if (buf) {\n offset = offset || 0;\n\n for (var i = 0; i < 16; ++i) {\n buf[offset + i] = bytes[i];\n }\n\n return buf;\n }\n\n return Object(_stringify_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(bytes);\n } // Function#name is not settable on some platforms (#270)\n\n\n try {\n generateUUID.name = name; // eslint-disable-next-line no-empty\n } catch (err) {} // For CommonJS default export support\n\n\n generateUUID.DNS = DNS;\n generateUUID.URL = URL;\n return generateUUID;\n});\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v35.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v4.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v4.js ***! \***************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./rng.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/rng.js\");\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/stringify.js\");\n\n\n\nfunction v4(options, buf, offset) {\n options = options || {};\n var rnds = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`\n\n rnds[6] = rnds[6] & 0x0f | 0x40;\n rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided\n\n if (buf) {\n offset = offset || 0;\n\n for (var i = 0; i < 16; ++i) {\n buf[offset + i] = rnds[i];\n }\n\n return buf;\n }\n\n return Object(_stringify_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(rnds);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (v4);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v4.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v5.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v5.js ***! \***************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _v35_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v35.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v35.js\");\n/* harmony import */ var _sha1_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./sha1.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/sha1.js\");\n\n\nvar v5 = Object(_v35_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])('v5', 0x50, _sha1_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = (v5);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/v5.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/validate.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/validate.js ***! \*********************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _regex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./regex.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/regex.js\");\n\n\nfunction validate(uuid) {\n return typeof uuid === 'string' && _regex_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].test(uuid);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validate);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/validate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/version.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/version.js ***! \********************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/validate.js\");\n\n\nfunction version(uuid) {\n if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(uuid)) {\n throw TypeError('Invalid UUID');\n }\n\n return parseInt(uuid.substr(14, 1), 16);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (version);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/node_modules/uuid/dist/esm-browser/version.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-service/package.json": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-service/package.json ***! \***********************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, sideEffects, dependencies, devDependencies, overrides, engines, typesVersions, files, author, license, browser, react-native, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-lex-runtime-service\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Lex Runtime Service Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.186.0\\\",\\\"scripts\\\":{\\\"build\\\":\\\"concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.cjs.json\\\",\\\"build:docs\\\":\\\"typedoc\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build:include:deps\\\":\\\"lerna run --scope $npm_package_name --include-dependencies build\\\",\\\"build:types\\\":\\\"tsc -p tsconfig.types.json\\\",\\\"build:types:downlevel\\\":\\\"downlevel-dts dist-types dist-types/ts3.4\\\",\\\"clean\\\":\\\"rimraf ./dist-* && rimraf *.tsbuildinfo\\\",\\\"test\\\":\\\"yarn test:unit\\\",\\\"test:unit\\\":\\\"ts-mocha test/**/*.spec.ts\\\"},\\\"main\\\":\\\"./dist-cjs/index.js\\\",\\\"types\\\":\\\"./dist-types/index.d.ts\\\",\\\"module\\\":\\\"./dist-es/index.js\\\",\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"2.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"2.0.0\\\",\\\"@aws-sdk/client-sts\\\":\\\"3.186.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.186.0\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.186.0\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-recursion-detection\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.186.0\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.186.0\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.186.0\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.186.0\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.186.0\\\",\\\"@aws-sdk/types\\\":\\\"3.186.0\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-defaults-mode-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-defaults-mode-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.186.0\\\",\\\"tslib\\\":\\\"^2.3.1\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/service-client-documentation-generator\\\":\\\"3.186.0\\\",\\\"@tsconfig/recommended\\\":\\\"1.0.1\\\",\\\"@types/chai\\\":\\\"^4.2.11\\\",\\\"@types/mocha\\\":\\\"^8.0.4\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"concurrently\\\":\\\"7.0.0\\\",\\\"downlevel-dts\\\":\\\"0.10.1\\\",\\\"rimraf\\\":\\\"3.0.2\\\",\\\"typedoc\\\":\\\"0.19.2\\\",\\\"typescript\\\":\\\"~4.6.2\\\"},\\\"overrides\\\":{\\\"typedoc\\\":{\\\"typescript\\\":\\\"~4.6.2\\\"}},\\\"engines\\\":{\\\"node\\\":\\\">=12.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"dist-types/*\\\":[\\\"dist-types/ts3.4/*\\\"]}},\\\"files\\\":[\\\"dist-*\\\"],\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"browser\\\":{\\\"./dist-es/runtimeConfig\\\":\\\"./dist-es/runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./dist-es/runtimeConfig\\\":\\\"./dist-es/runtimeConfig.native\\\"},\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-lex-runtime-service\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-lex-runtime-service\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-service/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/LexRuntimeV2.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/LexRuntimeV2.js ***! \*****************************************************************************/ /*! exports provided: LexRuntimeV2 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeV2\", function() { return LexRuntimeV2; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_DeleteSessionCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./commands/DeleteSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/DeleteSessionCommand.js\");\n/* harmony import */ var _commands_GetSessionCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/GetSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/GetSessionCommand.js\");\n/* harmony import */ var _commands_PutSessionCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/PutSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/PutSessionCommand.js\");\n/* harmony import */ var _commands_RecognizeTextCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/RecognizeTextCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeTextCommand.js\");\n/* harmony import */ var _commands_RecognizeUtteranceCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/RecognizeUtteranceCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeUtteranceCommand.js\");\n/* harmony import */ var _commands_StartConversationCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/StartConversationCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/StartConversationCommand.js\");\n/* harmony import */ var _LexRuntimeV2Client__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./LexRuntimeV2Client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/LexRuntimeV2Client.js\");\n\n\n\n\n\n\n\n\nvar LexRuntimeV2 = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LexRuntimeV2, _super);\n function LexRuntimeV2() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n LexRuntimeV2.prototype.deleteSession = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteSessionCommand__WEBPACK_IMPORTED_MODULE_1__[\"DeleteSessionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n LexRuntimeV2.prototype.getSession = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSessionCommand__WEBPACK_IMPORTED_MODULE_2__[\"GetSessionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n LexRuntimeV2.prototype.putSession = function (args, optionsOrCb, cb) {\n var command = new _commands_PutSessionCommand__WEBPACK_IMPORTED_MODULE_3__[\"PutSessionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n LexRuntimeV2.prototype.recognizeText = function (args, optionsOrCb, cb) {\n var command = new _commands_RecognizeTextCommand__WEBPACK_IMPORTED_MODULE_4__[\"RecognizeTextCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n LexRuntimeV2.prototype.recognizeUtterance = function (args, optionsOrCb, cb) {\n var command = new _commands_RecognizeUtteranceCommand__WEBPACK_IMPORTED_MODULE_5__[\"RecognizeUtteranceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n LexRuntimeV2.prototype.startConversation = function (args, optionsOrCb, cb) {\n var command = new _commands_StartConversationCommand__WEBPACK_IMPORTED_MODULE_6__[\"StartConversationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return LexRuntimeV2;\n}(_LexRuntimeV2Client__WEBPACK_IMPORTED_MODULE_7__[\"LexRuntimeV2Client\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/LexRuntimeV2.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/LexRuntimeV2Client.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/LexRuntimeV2Client.js ***! \***********************************************************************************/ /*! exports provided: LexRuntimeV2Client */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeV2Client\", function() { return LexRuntimeV2Client; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_eventstream_serde_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/eventstream-serde-config-resolver */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_eventstream__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-eventstream */ \"./node_modules/@aws-sdk/middleware-eventstream/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-logger/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_recursion_detection__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-recursion-detection */ \"./node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/runtimeConfig.browser.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar LexRuntimeV2Client = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LexRuntimeV2Client, _super);\n function LexRuntimeV2Client(configuration) {\n var _this = this;\n var _config_0 = Object(_runtimeConfig__WEBPACK_IMPORTED_MODULE_12__[\"getRuntimeConfig\"])(configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_8__[\"resolveRetryConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_5__[\"resolveHostHeaderConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_9__[\"resolveAwsAuthConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_eventstream__WEBPACK_IMPORTED_MODULE_4__[\"resolveEventStreamConfig\"])(_config_5);\n var _config_7 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_10__[\"resolveUserAgentConfig\"])(_config_6);\n var _config_8 = Object(_aws_sdk_eventstream_serde_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEventStreamSerdeConfig\"])(_config_7);\n _this = _super.call(this, _config_8) || this;\n _this.config = _config_8;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_8__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_5__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_6__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_recursion_detection__WEBPACK_IMPORTED_MODULE_7__[\"getRecursionDetectionPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_9__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_10__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n LexRuntimeV2Client.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return LexRuntimeV2Client;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_11__[\"Client\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/LexRuntimeV2Client.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/DeleteSessionCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/DeleteSessionCommand.js ***! \**********************************************************************************************/ /*! exports provided: DeleteSessionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionCommand\", function() { return DeleteSessionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DeleteSessionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteSessionCommand, _super);\n function DeleteSessionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DeleteSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeV2Client\";\n var commandName = \"DeleteSessionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteSessionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteSessionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteSessionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DeleteSessionCommand\"])(input, context);\n };\n DeleteSessionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DeleteSessionCommand\"])(output, context);\n };\n return DeleteSessionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/DeleteSessionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/GetSessionCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/GetSessionCommand.js ***! \*******************************************************************************************/ /*! exports provided: GetSessionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSessionCommand\", function() { return GetSessionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetSessionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSessionCommand, _super);\n function GetSessionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeV2Client\";\n var commandName = \"GetSessionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetSessionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetSessionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSessionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetSessionCommand\"])(input, context);\n };\n GetSessionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetSessionCommand\"])(output, context);\n };\n return GetSessionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/GetSessionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/PutSessionCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/PutSessionCommand.js ***! \*******************************************************************************************/ /*! exports provided: PutSessionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutSessionCommand\", function() { return PutSessionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar PutSessionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutSessionCommand, _super);\n function PutSessionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n PutSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeV2Client\";\n var commandName = \"PutSessionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PutSessionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PutSessionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutSessionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1PutSessionCommand\"])(input, context);\n };\n PutSessionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1PutSessionCommand\"])(output, context);\n };\n return PutSessionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/PutSessionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeTextCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeTextCommand.js ***! \**********************************************************************************************/ /*! exports provided: RecognizeTextCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecognizeTextCommand\", function() { return RecognizeTextCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar RecognizeTextCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(RecognizeTextCommand, _super);\n function RecognizeTextCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n RecognizeTextCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeV2Client\";\n var commandName = \"RecognizeTextCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeTextRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeTextResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n RecognizeTextCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1RecognizeTextCommand\"])(input, context);\n };\n RecognizeTextCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1RecognizeTextCommand\"])(output, context);\n };\n return RecognizeTextCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeTextCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeUtteranceCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeUtteranceCommand.js ***! \***************************************************************************************************/ /*! exports provided: RecognizeUtteranceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecognizeUtteranceCommand\", function() { return RecognizeUtteranceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar RecognizeUtteranceCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(RecognizeUtteranceCommand, _super);\n function RecognizeUtteranceCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n RecognizeUtteranceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeV2Client\";\n var commandName = \"RecognizeUtteranceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeUtteranceRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeUtteranceResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n RecognizeUtteranceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1RecognizeUtteranceCommand\"])(input, context);\n };\n RecognizeUtteranceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1RecognizeUtteranceCommand\"])(output, context);\n };\n return RecognizeUtteranceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeUtteranceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/StartConversationCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/StartConversationCommand.js ***! \**************************************************************************************************/ /*! exports provided: StartConversationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartConversationCommand\", function() { return StartConversationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_middleware_eventstream__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-eventstream */ \"./node_modules/@aws-sdk/middleware-eventstream/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\n\nvar StartConversationCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartConversationCommand, _super);\n function StartConversationCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n StartConversationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_2__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_eventstream__WEBPACK_IMPORTED_MODULE_1__[\"getEventStreamPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LexRuntimeV2Client\";\n var commandName = \"StartConversationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"StartConversationRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"StartConversationResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartConversationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_5__[\"serializeAws_restJson1StartConversationCommand\"])(input, context);\n };\n StartConversationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_5__[\"deserializeAws_restJson1StartConversationCommand\"])(output, context);\n };\n return StartConversationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/StartConversationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/index.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/index.js ***! \*******************************************************************************/ /*! exports provided: DeleteSessionCommand, GetSessionCommand, PutSessionCommand, RecognizeTextCommand, RecognizeUtteranceCommand, StartConversationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _DeleteSessionCommand__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./DeleteSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/DeleteSessionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionCommand\", function() { return _DeleteSessionCommand__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSessionCommand\"]; });\n\n/* harmony import */ var _GetSessionCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./GetSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/GetSessionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionCommand\", function() { return _GetSessionCommand__WEBPACK_IMPORTED_MODULE_1__[\"GetSessionCommand\"]; });\n\n/* harmony import */ var _PutSessionCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./PutSessionCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/PutSessionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionCommand\", function() { return _PutSessionCommand__WEBPACK_IMPORTED_MODULE_2__[\"PutSessionCommand\"]; });\n\n/* harmony import */ var _RecognizeTextCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./RecognizeTextCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeTextCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeTextCommand\", function() { return _RecognizeTextCommand__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeTextCommand\"]; });\n\n/* harmony import */ var _RecognizeUtteranceCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./RecognizeUtteranceCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/RecognizeUtteranceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeUtteranceCommand\", function() { return _RecognizeUtteranceCommand__WEBPACK_IMPORTED_MODULE_4__[\"RecognizeUtteranceCommand\"]; });\n\n/* harmony import */ var _StartConversationCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./StartConversationCommand */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/StartConversationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationCommand\", function() { return _StartConversationCommand__WEBPACK_IMPORTED_MODULE_5__[\"StartConversationCommand\"]; });\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/endpoints.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/endpoints.js ***! \**************************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/index.js\");\n\n\nvar regionHash = {};\nvar partitionHash = {\n aws: {\n regions: [\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-northeast-3\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ap-southeast-3\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-central-1\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n ],\n regionRegex: \"^(us|eu|ap|sa|ca|me|af)\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime-v2-lex.{region}.amazonaws.com\",\n tags: [],\n },\n {\n hostname: \"runtime-v2-lex-fips.{region}.amazonaws.com\",\n tags: [\"fips\"],\n },\n {\n hostname: \"runtime-v2-lex-fips.{region}.api.aws\",\n tags: [\"dualstack\", \"fips\"],\n },\n {\n hostname: \"runtime-v2-lex.{region}.api.aws\",\n tags: [\"dualstack\"],\n },\n ],\n },\n \"aws-cn\": {\n regions: [\"cn-north-1\", \"cn-northwest-1\"],\n regionRegex: \"^cn\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime-v2-lex.{region}.amazonaws.com.cn\",\n tags: [],\n },\n {\n hostname: \"runtime-v2-lex-fips.{region}.amazonaws.com.cn\",\n tags: [\"fips\"],\n },\n {\n hostname: \"runtime-v2-lex-fips.{region}.api.amazonwebservices.com.cn\",\n tags: [\"dualstack\", \"fips\"],\n },\n {\n hostname: \"runtime-v2-lex.{region}.api.amazonwebservices.com.cn\",\n tags: [\"dualstack\"],\n },\n ],\n },\n \"aws-iso\": {\n regions: [\"us-iso-east-1\", \"us-iso-west-1\"],\n regionRegex: \"^us\\\\-iso\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime-v2-lex.{region}.c2s.ic.gov\",\n tags: [],\n },\n {\n hostname: \"runtime-v2-lex-fips.{region}.c2s.ic.gov\",\n tags: [\"fips\"],\n },\n ],\n },\n \"aws-iso-b\": {\n regions: [\"us-isob-east-1\"],\n regionRegex: \"^us\\\\-isob\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime-v2-lex.{region}.sc2s.sgov.gov\",\n tags: [],\n },\n {\n hostname: \"runtime-v2-lex-fips.{region}.sc2s.sgov.gov\",\n tags: [\"fips\"],\n },\n ],\n },\n \"aws-us-gov\": {\n regions: [\"us-gov-east-1\", \"us-gov-west-1\"],\n regionRegex: \"^us\\\\-gov\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"runtime-v2-lex.{region}.amazonaws.com\",\n tags: [],\n },\n {\n hostname: \"runtime-v2-lex-fips.{region}.amazonaws.com\",\n tags: [\"fips\"],\n },\n {\n hostname: \"runtime-v2-lex-fips.{region}.api.aws\",\n tags: [\"dualstack\", \"fips\"],\n },\n {\n hostname: \"runtime-v2-lex.{region}.api.aws\",\n tags: [\"dualstack\"],\n },\n ],\n },\n};\nvar defaultRegionInfoProvider = function (region, options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__[\"getRegionInfo\"])(region, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, options), { signingService: \"lex\", regionHash: regionHash, partitionHash: partitionHash }))];\n });\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/index.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/index.js ***! \**********************************************************************/ /*! exports provided: LexRuntimeV2, LexRuntimeV2Client, DeleteSessionCommand, GetSessionCommand, PutSessionCommand, RecognizeTextCommand, RecognizeUtteranceCommand, StartConversationCommand, AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConfirmationState, Shape, IntentState, SentimentType, MessageContentType, StyleType, DialogActionType, BadGatewayException, DependencyFailedException, ConversationMode, InputMode, PlaybackInterruptionReason, StartConversationRequestEventStream, StartConversationResponseEventStream, ActiveContextTimeToLiveFilterSensitiveLog, ActiveContextFilterSensitiveLog, AudioInputEventFilterSensitiveLog, AudioResponseEventFilterSensitiveLog, DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, GetSessionRequestFilterSensitiveLog, ValueFilterSensitiveLog, ConfidenceScoreFilterSensitiveLog, SentimentScoreFilterSensitiveLog, SentimentResponseFilterSensitiveLog, ButtonFilterSensitiveLog, ImageResponseCardFilterSensitiveLog, MessageFilterSensitiveLog, RuntimeHintValueFilterSensitiveLog, PutSessionResponseFilterSensitiveLog, RecognizeUtteranceRequestFilterSensitiveLog, RecognizeUtteranceResponseFilterSensitiveLog, DisconnectionEventFilterSensitiveLog, DTMFInputEventFilterSensitiveLog, PlaybackCompletionEventFilterSensitiveLog, TextInputEventFilterSensitiveLog, HeartbeatEventFilterSensitiveLog, PlaybackInterruptionEventFilterSensitiveLog, TextResponseEventFilterSensitiveLog, TranscriptEventFilterSensitiveLog, ElicitSubSlotFilterSensitiveLog, DialogActionFilterSensitiveLog, RuntimeHintDetailsFilterSensitiveLog, RuntimeHintsFilterSensitiveLog, SlotFilterSensitiveLog, IntentFilterSensitiveLog, InterpretationFilterSensitiveLog, SessionStateFilterSensitiveLog, ConfigurationEventFilterSensitiveLog, PutSessionRequestFilterSensitiveLog, RecognizeTextRequestFilterSensitiveLog, StartConversationRequestEventStreamFilterSensitiveLog, StartConversationRequestFilterSensitiveLog, GetSessionResponseFilterSensitiveLog, IntentResultEventFilterSensitiveLog, RecognizeTextResponseFilterSensitiveLog, StartConversationResponseEventStreamFilterSensitiveLog, StartConversationResponseFilterSensitiveLog, LexRuntimeV2ServiceException */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _LexRuntimeV2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./LexRuntimeV2 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/LexRuntimeV2.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeV2\", function() { return _LexRuntimeV2__WEBPACK_IMPORTED_MODULE_0__[\"LexRuntimeV2\"]; });\n\n/* harmony import */ var _LexRuntimeV2Client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./LexRuntimeV2Client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/LexRuntimeV2Client.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeV2Client\", function() { return _LexRuntimeV2Client__WEBPACK_IMPORTED_MODULE_1__[\"LexRuntimeV2Client\"]; });\n\n/* harmony import */ var _commands__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/commands/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DeleteSessionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetSessionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"PutSessionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeTextCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"RecognizeTextCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeUtteranceCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"RecognizeUtteranceCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"StartConversationCommand\"]; });\n\n/* harmony import */ var _models__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./models */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"AccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"InternalServerException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ValidationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConfirmationState\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ConfirmationState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Shape\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"Shape\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentState\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"IntentState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentType\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SentimentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageContentType\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"MessageContentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StyleType\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"StyleType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogActionType\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DialogActionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadGatewayException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BadGatewayException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DependencyFailedException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DependencyFailedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConversationMode\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ConversationMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputMode\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"InputMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaybackInterruptionReason\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PlaybackInterruptionReason\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationRequestEventStream\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"StartConversationRequestEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationResponseEventStream\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"StartConversationResponseEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextTimeToLiveFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ActiveContextTimeToLiveFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ActiveContextFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AudioInputEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"AudioInputEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AudioResponseEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"AudioResponseEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValueFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ValueFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConfidenceScoreFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ConfidenceScoreFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentScoreFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SentimentScoreFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SentimentResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ButtonFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ButtonFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageResponseCardFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ImageResponseCardFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"MessageFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RuntimeHintValueFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RuntimeHintValueFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PutSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeUtteranceRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeUtteranceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeUtteranceResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeUtteranceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisconnectionEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DisconnectionEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DTMFInputEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DTMFInputEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaybackCompletionEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PlaybackCompletionEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextInputEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"TextInputEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeartbeatEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"HeartbeatEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaybackInterruptionEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PlaybackInterruptionEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextResponseEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"TextResponseEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TranscriptEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"TranscriptEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElicitSubSlotFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ElicitSubSlotFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogActionFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DialogActionFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RuntimeHintDetailsFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RuntimeHintDetailsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RuntimeHintsFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RuntimeHintsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SlotFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SlotFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"IntentFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InterpretationFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"InterpretationFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SessionStateFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SessionStateFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConfigurationEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ConfigurationEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PutSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeTextRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeTextRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationRequestEventStreamFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"StartConversationRequestEventStreamFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"StartConversationRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentResultEventFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"IntentResultEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeTextResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RecognizeTextResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationResponseEventStreamFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"StartConversationResponseEventStreamFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"StartConversationResponseFilterSensitiveLog\"]; });\n\n/* harmony import */ var _models_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./models/LexRuntimeV2ServiceException */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/LexRuntimeV2ServiceException.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeV2ServiceException\", function() { return _models_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_4__[\"LexRuntimeV2ServiceException\"]; });\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/LexRuntimeV2ServiceException.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/LexRuntimeV2ServiceException.js ***! \****************************************************************************************************/ /*! exports provided: LexRuntimeV2ServiceException */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexRuntimeV2ServiceException\", function() { return LexRuntimeV2ServiceException; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n\n\nvar LexRuntimeV2ServiceException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LexRuntimeV2ServiceException, _super);\n function LexRuntimeV2ServiceException(options) {\n var _this = _super.call(this, options) || this;\n Object.setPrototypeOf(_this, LexRuntimeV2ServiceException.prototype);\n return _this;\n }\n return LexRuntimeV2ServiceException;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"ServiceException\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/LexRuntimeV2ServiceException.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/index.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/index.js ***! \*****************************************************************************/ /*! exports provided: AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConfirmationState, Shape, IntentState, SentimentType, MessageContentType, StyleType, DialogActionType, BadGatewayException, DependencyFailedException, ConversationMode, InputMode, PlaybackInterruptionReason, StartConversationRequestEventStream, StartConversationResponseEventStream, ActiveContextTimeToLiveFilterSensitiveLog, ActiveContextFilterSensitiveLog, AudioInputEventFilterSensitiveLog, AudioResponseEventFilterSensitiveLog, DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, GetSessionRequestFilterSensitiveLog, ValueFilterSensitiveLog, ConfidenceScoreFilterSensitiveLog, SentimentScoreFilterSensitiveLog, SentimentResponseFilterSensitiveLog, ButtonFilterSensitiveLog, ImageResponseCardFilterSensitiveLog, MessageFilterSensitiveLog, RuntimeHintValueFilterSensitiveLog, PutSessionResponseFilterSensitiveLog, RecognizeUtteranceRequestFilterSensitiveLog, RecognizeUtteranceResponseFilterSensitiveLog, DisconnectionEventFilterSensitiveLog, DTMFInputEventFilterSensitiveLog, PlaybackCompletionEventFilterSensitiveLog, TextInputEventFilterSensitiveLog, HeartbeatEventFilterSensitiveLog, PlaybackInterruptionEventFilterSensitiveLog, TextResponseEventFilterSensitiveLog, TranscriptEventFilterSensitiveLog, ElicitSubSlotFilterSensitiveLog, DialogActionFilterSensitiveLog, RuntimeHintDetailsFilterSensitiveLog, RuntimeHintsFilterSensitiveLog, SlotFilterSensitiveLog, IntentFilterSensitiveLog, InterpretationFilterSensitiveLog, SessionStateFilterSensitiveLog, ConfigurationEventFilterSensitiveLog, PutSessionRequestFilterSensitiveLog, RecognizeTextRequestFilterSensitiveLog, StartConversationRequestEventStreamFilterSensitiveLog, StartConversationRequestFilterSensitiveLog, GetSessionResponseFilterSensitiveLog, IntentResultEventFilterSensitiveLog, RecognizeTextResponseFilterSensitiveLog, StartConversationResponseEventStreamFilterSensitiveLog, StartConversationResponseFilterSensitiveLog */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalServerException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ValidationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConfirmationState\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConfirmationState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Shape\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Shape\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentState\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IntentState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SentimentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageContentType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MessageContentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StyleType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StyleType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogActionType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DialogActionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadGatewayException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BadGatewayException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DependencyFailedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DependencyFailedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConversationMode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConversationMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputMode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InputMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaybackInterruptionReason\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PlaybackInterruptionReason\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationRequestEventStream\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartConversationRequestEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationResponseEventStream\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartConversationResponseEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextTimeToLiveFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ActiveContextTimeToLiveFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ActiveContextFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AudioInputEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AudioInputEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AudioResponseEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AudioResponseEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValueFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ValueFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConfidenceScoreFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConfidenceScoreFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentScoreFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SentimentScoreFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SentimentResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SentimentResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ButtonFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ButtonFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageResponseCardFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ImageResponseCardFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MessageFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RuntimeHintValueFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RuntimeHintValueFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeUtteranceRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RecognizeUtteranceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeUtteranceResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RecognizeUtteranceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisconnectionEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DisconnectionEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DTMFInputEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DTMFInputEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaybackCompletionEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PlaybackCompletionEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextInputEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextInputEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeartbeatEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HeartbeatEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaybackInterruptionEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PlaybackInterruptionEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextResponseEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextResponseEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TranscriptEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TranscriptEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElicitSubSlotFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ElicitSubSlotFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogActionFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DialogActionFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RuntimeHintDetailsFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RuntimeHintDetailsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RuntimeHintsFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RuntimeHintsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SlotFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SlotFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IntentFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InterpretationFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InterpretationFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SessionStateFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SessionStateFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConfigurationEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConfigurationEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutSessionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutSessionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeTextRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RecognizeTextRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationRequestEventStreamFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartConversationRequestEventStreamFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartConversationRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSessionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetSessionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntentResultEventFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IntentResultEventFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeTextResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RecognizeTextResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationResponseEventStreamFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartConversationResponseEventStreamFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartConversationResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartConversationResponseFilterSensitiveLog\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js ***! \********************************************************************************/ /*! exports provided: AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConfirmationState, Shape, IntentState, SentimentType, MessageContentType, StyleType, DialogActionType, BadGatewayException, DependencyFailedException, ConversationMode, InputMode, PlaybackInterruptionReason, StartConversationRequestEventStream, StartConversationResponseEventStream, ActiveContextTimeToLiveFilterSensitiveLog, ActiveContextFilterSensitiveLog, AudioInputEventFilterSensitiveLog, AudioResponseEventFilterSensitiveLog, DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, GetSessionRequestFilterSensitiveLog, ValueFilterSensitiveLog, ConfidenceScoreFilterSensitiveLog, SentimentScoreFilterSensitiveLog, SentimentResponseFilterSensitiveLog, ButtonFilterSensitiveLog, ImageResponseCardFilterSensitiveLog, MessageFilterSensitiveLog, RuntimeHintValueFilterSensitiveLog, PutSessionResponseFilterSensitiveLog, RecognizeUtteranceRequestFilterSensitiveLog, RecognizeUtteranceResponseFilterSensitiveLog, DisconnectionEventFilterSensitiveLog, DTMFInputEventFilterSensitiveLog, PlaybackCompletionEventFilterSensitiveLog, TextInputEventFilterSensitiveLog, HeartbeatEventFilterSensitiveLog, PlaybackInterruptionEventFilterSensitiveLog, TextResponseEventFilterSensitiveLog, TranscriptEventFilterSensitiveLog, ElicitSubSlotFilterSensitiveLog, DialogActionFilterSensitiveLog, RuntimeHintDetailsFilterSensitiveLog, RuntimeHintsFilterSensitiveLog, SlotFilterSensitiveLog, IntentFilterSensitiveLog, InterpretationFilterSensitiveLog, SessionStateFilterSensitiveLog, ConfigurationEventFilterSensitiveLog, PutSessionRequestFilterSensitiveLog, RecognizeTextRequestFilterSensitiveLog, StartConversationRequestEventStreamFilterSensitiveLog, StartConversationRequestFilterSensitiveLog, GetSessionResponseFilterSensitiveLog, IntentResultEventFilterSensitiveLog, RecognizeTextResponseFilterSensitiveLog, StartConversationResponseEventStreamFilterSensitiveLog, StartConversationResponseFilterSensitiveLog */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return AccessDeniedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return ConflictException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return InternalServerException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return ThrottlingException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ValidationException\", function() { return ValidationException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConfirmationState\", function() { return ConfirmationState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Shape\", function() { return Shape; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IntentState\", function() { return IntentState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SentimentType\", function() { return SentimentType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MessageContentType\", function() { return MessageContentType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StyleType\", function() { return StyleType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DialogActionType\", function() { return DialogActionType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BadGatewayException\", function() { return BadGatewayException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DependencyFailedException\", function() { return DependencyFailedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConversationMode\", function() { return ConversationMode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InputMode\", function() { return InputMode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PlaybackInterruptionReason\", function() { return PlaybackInterruptionReason; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartConversationRequestEventStream\", function() { return StartConversationRequestEventStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartConversationResponseEventStream\", function() { return StartConversationResponseEventStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextTimeToLiveFilterSensitiveLog\", function() { return ActiveContextTimeToLiveFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ActiveContextFilterSensitiveLog\", function() { return ActiveContextFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AudioInputEventFilterSensitiveLog\", function() { return AudioInputEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AudioResponseEventFilterSensitiveLog\", function() { return AudioResponseEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionRequestFilterSensitiveLog\", function() { return DeleteSessionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSessionResponseFilterSensitiveLog\", function() { return DeleteSessionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSessionRequestFilterSensitiveLog\", function() { return GetSessionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ValueFilterSensitiveLog\", function() { return ValueFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConfidenceScoreFilterSensitiveLog\", function() { return ConfidenceScoreFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SentimentScoreFilterSensitiveLog\", function() { return SentimentScoreFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SentimentResponseFilterSensitiveLog\", function() { return SentimentResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ButtonFilterSensitiveLog\", function() { return ButtonFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImageResponseCardFilterSensitiveLog\", function() { return ImageResponseCardFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MessageFilterSensitiveLog\", function() { return MessageFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RuntimeHintValueFilterSensitiveLog\", function() { return RuntimeHintValueFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutSessionResponseFilterSensitiveLog\", function() { return PutSessionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecognizeUtteranceRequestFilterSensitiveLog\", function() { return RecognizeUtteranceRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecognizeUtteranceResponseFilterSensitiveLog\", function() { return RecognizeUtteranceResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DisconnectionEventFilterSensitiveLog\", function() { return DisconnectionEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DTMFInputEventFilterSensitiveLog\", function() { return DTMFInputEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PlaybackCompletionEventFilterSensitiveLog\", function() { return PlaybackCompletionEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextInputEventFilterSensitiveLog\", function() { return TextInputEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HeartbeatEventFilterSensitiveLog\", function() { return HeartbeatEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PlaybackInterruptionEventFilterSensitiveLog\", function() { return PlaybackInterruptionEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextResponseEventFilterSensitiveLog\", function() { return TextResponseEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TranscriptEventFilterSensitiveLog\", function() { return TranscriptEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ElicitSubSlotFilterSensitiveLog\", function() { return ElicitSubSlotFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DialogActionFilterSensitiveLog\", function() { return DialogActionFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RuntimeHintDetailsFilterSensitiveLog\", function() { return RuntimeHintDetailsFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RuntimeHintsFilterSensitiveLog\", function() { return RuntimeHintsFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SlotFilterSensitiveLog\", function() { return SlotFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IntentFilterSensitiveLog\", function() { return IntentFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InterpretationFilterSensitiveLog\", function() { return InterpretationFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SessionStateFilterSensitiveLog\", function() { return SessionStateFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConfigurationEventFilterSensitiveLog\", function() { return ConfigurationEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutSessionRequestFilterSensitiveLog\", function() { return PutSessionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecognizeTextRequestFilterSensitiveLog\", function() { return RecognizeTextRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartConversationRequestEventStreamFilterSensitiveLog\", function() { return StartConversationRequestEventStreamFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartConversationRequestFilterSensitiveLog\", function() { return StartConversationRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSessionResponseFilterSensitiveLog\", function() { return GetSessionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IntentResultEventFilterSensitiveLog\", function() { return IntentResultEventFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecognizeTextResponseFilterSensitiveLog\", function() { return RecognizeTextResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartConversationResponseEventStreamFilterSensitiveLog\", function() { return StartConversationResponseEventStreamFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartConversationResponseFilterSensitiveLog\", function() { return StartConversationResponseFilterSensitiveLog; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./LexRuntimeV2ServiceException */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/LexRuntimeV2ServiceException.js\");\n\n\n\nvar AccessDeniedException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AccessDeniedException, _super);\n function AccessDeniedException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"AccessDeniedException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"AccessDeniedException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, AccessDeniedException.prototype);\n return _this;\n }\n return AccessDeniedException;\n}(_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeV2ServiceException\"]));\n\nvar ConflictException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ConflictException, _super);\n function ConflictException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ConflictException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ConflictException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, ConflictException.prototype);\n return _this;\n }\n return ConflictException;\n}(_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeV2ServiceException\"]));\n\nvar InternalServerException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(InternalServerException, _super);\n function InternalServerException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InternalServerException\", $fault: \"server\" }, opts)) || this;\n _this.name = \"InternalServerException\";\n _this.$fault = \"server\";\n Object.setPrototypeOf(_this, InternalServerException.prototype);\n return _this;\n }\n return InternalServerException;\n}(_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeV2ServiceException\"]));\n\nvar ResourceNotFoundException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ResourceNotFoundException, _super);\n function ResourceNotFoundException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotFoundException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ResourceNotFoundException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);\n return _this;\n }\n return ResourceNotFoundException;\n}(_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeV2ServiceException\"]));\n\nvar ThrottlingException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ThrottlingException, _super);\n function ThrottlingException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ThrottlingException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ThrottlingException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, ThrottlingException.prototype);\n return _this;\n }\n return ThrottlingException;\n}(_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeV2ServiceException\"]));\n\nvar ValidationException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ValidationException, _super);\n function ValidationException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ValidationException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ValidationException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, ValidationException.prototype);\n return _this;\n }\n return ValidationException;\n}(_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeV2ServiceException\"]));\n\nvar ConfirmationState;\n(function (ConfirmationState) {\n ConfirmationState[\"CONFIRMED\"] = \"Confirmed\";\n ConfirmationState[\"DENIED\"] = \"Denied\";\n ConfirmationState[\"NONE\"] = \"None\";\n})(ConfirmationState || (ConfirmationState = {}));\nvar Shape;\n(function (Shape) {\n Shape[\"COMPOSITE\"] = \"Composite\";\n Shape[\"LIST\"] = \"List\";\n Shape[\"SCALAR\"] = \"Scalar\";\n})(Shape || (Shape = {}));\nvar IntentState;\n(function (IntentState) {\n IntentState[\"FAILED\"] = \"Failed\";\n IntentState[\"FULFILLED\"] = \"Fulfilled\";\n IntentState[\"FULFILLMENT_IN_PROGRESS\"] = \"FulfillmentInProgress\";\n IntentState[\"IN_PROGRESS\"] = \"InProgress\";\n IntentState[\"READY_FOR_FULFILLMENT\"] = \"ReadyForFulfillment\";\n IntentState[\"WAITING\"] = \"Waiting\";\n})(IntentState || (IntentState = {}));\nvar SentimentType;\n(function (SentimentType) {\n SentimentType[\"MIXED\"] = \"MIXED\";\n SentimentType[\"NEGATIVE\"] = \"NEGATIVE\";\n SentimentType[\"NEUTRAL\"] = \"NEUTRAL\";\n SentimentType[\"POSITIVE\"] = \"POSITIVE\";\n})(SentimentType || (SentimentType = {}));\nvar MessageContentType;\n(function (MessageContentType) {\n MessageContentType[\"CUSTOM_PAYLOAD\"] = \"CustomPayload\";\n MessageContentType[\"IMAGE_RESPONSE_CARD\"] = \"ImageResponseCard\";\n MessageContentType[\"PLAIN_TEXT\"] = \"PlainText\";\n MessageContentType[\"SSML\"] = \"SSML\";\n})(MessageContentType || (MessageContentType = {}));\nvar StyleType;\n(function (StyleType) {\n StyleType[\"DEFAULT\"] = \"Default\";\n StyleType[\"SPELL_BY_LETTER\"] = \"SpellByLetter\";\n StyleType[\"SPELL_BY_WORD\"] = \"SpellByWord\";\n})(StyleType || (StyleType = {}));\nvar DialogActionType;\n(function (DialogActionType) {\n DialogActionType[\"CLOSE\"] = \"Close\";\n DialogActionType[\"CONFIRM_INTENT\"] = \"ConfirmIntent\";\n DialogActionType[\"DELEGATE\"] = \"Delegate\";\n DialogActionType[\"ELICIT_INTENT\"] = \"ElicitIntent\";\n DialogActionType[\"ELICIT_SLOT\"] = \"ElicitSlot\";\n DialogActionType[\"NONE\"] = \"None\";\n})(DialogActionType || (DialogActionType = {}));\nvar BadGatewayException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BadGatewayException, _super);\n function BadGatewayException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"BadGatewayException\", $fault: \"server\" }, opts)) || this;\n _this.name = \"BadGatewayException\";\n _this.$fault = \"server\";\n Object.setPrototypeOf(_this, BadGatewayException.prototype);\n return _this;\n }\n return BadGatewayException;\n}(_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeV2ServiceException\"]));\n\nvar DependencyFailedException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DependencyFailedException, _super);\n function DependencyFailedException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"DependencyFailedException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"DependencyFailedException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, DependencyFailedException.prototype);\n return _this;\n }\n return DependencyFailedException;\n}(_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LexRuntimeV2ServiceException\"]));\n\nvar ConversationMode;\n(function (ConversationMode) {\n ConversationMode[\"AUDIO\"] = \"AUDIO\";\n ConversationMode[\"TEXT\"] = \"TEXT\";\n})(ConversationMode || (ConversationMode = {}));\nvar InputMode;\n(function (InputMode) {\n InputMode[\"DTMF\"] = \"DTMF\";\n InputMode[\"SPEECH\"] = \"Speech\";\n InputMode[\"TEXT\"] = \"Text\";\n})(InputMode || (InputMode = {}));\nvar PlaybackInterruptionReason;\n(function (PlaybackInterruptionReason) {\n PlaybackInterruptionReason[\"DTMF_START_DETECTED\"] = \"DTMF_START_DETECTED\";\n PlaybackInterruptionReason[\"TEXT_DETECTED\"] = \"TEXT_DETECTED\";\n PlaybackInterruptionReason[\"VOICE_START_DETECTED\"] = \"VOICE_START_DETECTED\";\n})(PlaybackInterruptionReason || (PlaybackInterruptionReason = {}));\nvar StartConversationRequestEventStream;\n(function (StartConversationRequestEventStream) {\n StartConversationRequestEventStream.visit = function (value, visitor) {\n if (value.ConfigurationEvent !== undefined)\n return visitor.ConfigurationEvent(value.ConfigurationEvent);\n if (value.AudioInputEvent !== undefined)\n return visitor.AudioInputEvent(value.AudioInputEvent);\n if (value.DTMFInputEvent !== undefined)\n return visitor.DTMFInputEvent(value.DTMFInputEvent);\n if (value.TextInputEvent !== undefined)\n return visitor.TextInputEvent(value.TextInputEvent);\n if (value.PlaybackCompletionEvent !== undefined)\n return visitor.PlaybackCompletionEvent(value.PlaybackCompletionEvent);\n if (value.DisconnectionEvent !== undefined)\n return visitor.DisconnectionEvent(value.DisconnectionEvent);\n return visitor._(value.$unknown[0], value.$unknown[1]);\n };\n})(StartConversationRequestEventStream || (StartConversationRequestEventStream = {}));\nvar StartConversationResponseEventStream;\n(function (StartConversationResponseEventStream) {\n StartConversationResponseEventStream.visit = function (value, visitor) {\n if (value.PlaybackInterruptionEvent !== undefined)\n return visitor.PlaybackInterruptionEvent(value.PlaybackInterruptionEvent);\n if (value.TranscriptEvent !== undefined)\n return visitor.TranscriptEvent(value.TranscriptEvent);\n if (value.IntentResultEvent !== undefined)\n return visitor.IntentResultEvent(value.IntentResultEvent);\n if (value.TextResponseEvent !== undefined)\n return visitor.TextResponseEvent(value.TextResponseEvent);\n if (value.AudioResponseEvent !== undefined)\n return visitor.AudioResponseEvent(value.AudioResponseEvent);\n if (value.HeartbeatEvent !== undefined)\n return visitor.HeartbeatEvent(value.HeartbeatEvent);\n if (value.AccessDeniedException !== undefined)\n return visitor.AccessDeniedException(value.AccessDeniedException);\n if (value.ResourceNotFoundException !== undefined)\n return visitor.ResourceNotFoundException(value.ResourceNotFoundException);\n if (value.ValidationException !== undefined)\n return visitor.ValidationException(value.ValidationException);\n if (value.ThrottlingException !== undefined)\n return visitor.ThrottlingException(value.ThrottlingException);\n if (value.InternalServerException !== undefined)\n return visitor.InternalServerException(value.InternalServerException);\n if (value.ConflictException !== undefined)\n return visitor.ConflictException(value.ConflictException);\n if (value.DependencyFailedException !== undefined)\n return visitor.DependencyFailedException(value.DependencyFailedException);\n if (value.BadGatewayException !== undefined)\n return visitor.BadGatewayException(value.BadGatewayException);\n return visitor._(value.$unknown[0], value.$unknown[1]);\n };\n})(StartConversationResponseEventStream || (StartConversationResponseEventStream = {}));\nvar ActiveContextTimeToLiveFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ActiveContextFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.contextAttributes && { contextAttributes: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar AudioInputEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar AudioResponseEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteSessionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteSessionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetSessionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ValueFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ConfidenceScoreFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar SentimentScoreFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar SentimentResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ButtonFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ImageResponseCardFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar MessageFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.content && { content: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar RuntimeHintValueFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar PutSessionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar RecognizeUtteranceRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.sessionState && { sessionState: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.requestAttributes && { requestAttributes: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar RecognizeUtteranceResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DisconnectionEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DTMFInputEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.inputCharacter && { inputCharacter: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar PlaybackCompletionEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar TextInputEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.text && { text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar HeartbeatEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar PlaybackInterruptionEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar TextResponseEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.messages && { messages: obj.messages.map(function (item) { return MessageFilterSensitiveLog(item); }) }))); };\nvar TranscriptEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ElicitSubSlotFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DialogActionFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar RuntimeHintDetailsFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar RuntimeHintsFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar SlotFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar IntentFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar InterpretationFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar SessionStateFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.activeContexts && {\n activeContexts: obj.activeContexts.map(function (item) { return ActiveContextFilterSensitiveLog(item); }),\n}))); };\nvar ConfigurationEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.welcomeMessages && { welcomeMessages: obj.welcomeMessages.map(function (item) { return MessageFilterSensitiveLog(item); }) }))); };\nvar PutSessionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.messages && { messages: obj.messages.map(function (item) { return MessageFilterSensitiveLog(item); }) }))); };\nvar RecognizeTextRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.text && { text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar StartConversationRequestEventStreamFilterSensitiveLog = function (obj) {\n var _a;\n if (obj.ConfigurationEvent !== undefined)\n return { ConfigurationEvent: ConfigurationEventFilterSensitiveLog(obj.ConfigurationEvent) };\n if (obj.AudioInputEvent !== undefined)\n return { AudioInputEvent: AudioInputEventFilterSensitiveLog(obj.AudioInputEvent) };\n if (obj.DTMFInputEvent !== undefined)\n return { DTMFInputEvent: DTMFInputEventFilterSensitiveLog(obj.DTMFInputEvent) };\n if (obj.TextInputEvent !== undefined)\n return { TextInputEvent: TextInputEventFilterSensitiveLog(obj.TextInputEvent) };\n if (obj.PlaybackCompletionEvent !== undefined)\n return { PlaybackCompletionEvent: PlaybackCompletionEventFilterSensitiveLog(obj.PlaybackCompletionEvent) };\n if (obj.DisconnectionEvent !== undefined)\n return { DisconnectionEvent: DisconnectionEventFilterSensitiveLog(obj.DisconnectionEvent) };\n if (obj.$unknown !== undefined)\n return _a = {}, _a[obj.$unknown[0]] = \"UNKNOWN\", _a;\n};\nvar StartConversationRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.requestEventStream && { requestEventStream: \"STREAMING_CONTENT\" }))); };\nvar GetSessionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.messages && { messages: obj.messages.map(function (item) { return MessageFilterSensitiveLog(item); }) }))); };\nvar IntentResultEventFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar RecognizeTextResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.messages && { messages: obj.messages.map(function (item) { return MessageFilterSensitiveLog(item); }) }))); };\nvar StartConversationResponseEventStreamFilterSensitiveLog = function (obj) {\n var _a;\n if (obj.PlaybackInterruptionEvent !== undefined)\n return { PlaybackInterruptionEvent: PlaybackInterruptionEventFilterSensitiveLog(obj.PlaybackInterruptionEvent) };\n if (obj.TranscriptEvent !== undefined)\n return { TranscriptEvent: TranscriptEventFilterSensitiveLog(obj.TranscriptEvent) };\n if (obj.IntentResultEvent !== undefined)\n return { IntentResultEvent: IntentResultEventFilterSensitiveLog(obj.IntentResultEvent) };\n if (obj.TextResponseEvent !== undefined)\n return { TextResponseEvent: TextResponseEventFilterSensitiveLog(obj.TextResponseEvent) };\n if (obj.AudioResponseEvent !== undefined)\n return { AudioResponseEvent: AudioResponseEventFilterSensitiveLog(obj.AudioResponseEvent) };\n if (obj.HeartbeatEvent !== undefined)\n return { HeartbeatEvent: HeartbeatEventFilterSensitiveLog(obj.HeartbeatEvent) };\n if (obj.AccessDeniedException !== undefined)\n return { AccessDeniedException: obj.AccessDeniedException };\n if (obj.ResourceNotFoundException !== undefined)\n return { ResourceNotFoundException: obj.ResourceNotFoundException };\n if (obj.ValidationException !== undefined)\n return { ValidationException: obj.ValidationException };\n if (obj.ThrottlingException !== undefined)\n return { ThrottlingException: obj.ThrottlingException };\n if (obj.InternalServerException !== undefined)\n return { InternalServerException: obj.InternalServerException };\n if (obj.ConflictException !== undefined)\n return { ConflictException: obj.ConflictException };\n if (obj.DependencyFailedException !== undefined)\n return { DependencyFailedException: obj.DependencyFailedException };\n if (obj.BadGatewayException !== undefined)\n return { BadGatewayException: obj.BadGatewayException };\n if (obj.$unknown !== undefined)\n return _a = {}, _a[obj.$unknown[0]] = \"UNKNOWN\", _a;\n};\nvar StartConversationResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.responseEventStream && { responseEventStream: \"STREAMING_CONTENT\" }))); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/protocols/Aws_restJson1.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/protocols/Aws_restJson1.js ***! \****************************************************************************************/ /*! exports provided: serializeAws_restJson1DeleteSessionCommand, serializeAws_restJson1GetSessionCommand, serializeAws_restJson1PutSessionCommand, serializeAws_restJson1RecognizeTextCommand, serializeAws_restJson1RecognizeUtteranceCommand, serializeAws_restJson1StartConversationCommand, deserializeAws_restJson1DeleteSessionCommand, deserializeAws_restJson1GetSessionCommand, deserializeAws_restJson1PutSessionCommand, deserializeAws_restJson1RecognizeTextCommand, deserializeAws_restJson1RecognizeUtteranceCommand, deserializeAws_restJson1StartConversationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteSessionCommand\", function() { return serializeAws_restJson1DeleteSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSessionCommand\", function() { return serializeAws_restJson1GetSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PutSessionCommand\", function() { return serializeAws_restJson1PutSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1RecognizeTextCommand\", function() { return serializeAws_restJson1RecognizeTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1RecognizeUtteranceCommand\", function() { return serializeAws_restJson1RecognizeUtteranceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1StartConversationCommand\", function() { return serializeAws_restJson1StartConversationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteSessionCommand\", function() { return deserializeAws_restJson1DeleteSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSessionCommand\", function() { return deserializeAws_restJson1GetSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PutSessionCommand\", function() { return deserializeAws_restJson1PutSessionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1RecognizeTextCommand\", function() { return deserializeAws_restJson1RecognizeTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1RecognizeUtteranceCommand\", function() { return deserializeAws_restJson1RecognizeUtteranceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1StartConversationCommand\", function() { return deserializeAws_restJson1StartConversationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _models_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/LexRuntimeV2ServiceException */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/LexRuntimeV2ServiceException.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/models/models_0.js\");\n\n\n\n\n\nvar serializeAws_restJson1DeleteSessionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botId\", function () { return input.botId; }, \"{botId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAliasId\", function () { return input.botAliasId; }, \"{botAliasId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"localeId\", function () { return input.localeId; }, \"{localeId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"sessionId\", function () { return input.sessionId; }, \"{sessionId}\", false);\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSessionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botId\", function () { return input.botId; }, \"{botId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAliasId\", function () { return input.botAliasId; }, \"{botAliasId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"localeId\", function () { return input.localeId; }, \"{localeId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"sessionId\", function () { return input.sessionId; }, \"{sessionId}\", false);\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PutSessionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = map({}, isSerializableHeaderValue, {\n \"content-type\": \"application/json\",\n responsecontenttype: input.responseContentType,\n });\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botId\", function () { return input.botId; }, \"{botId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAliasId\", function () { return input.botAliasId; }, \"{botAliasId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"localeId\", function () { return input.localeId; }, \"{localeId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"sessionId\", function () { return input.sessionId; }, \"{sessionId}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.messages != null && { messages: serializeAws_restJson1Messages(input.messages, context) })), (input.requestAttributes != null && {\n requestAttributes: serializeAws_restJson1StringMap(input.requestAttributes, context),\n })), (input.sessionState != null && {\n sessionState: serializeAws_restJson1SessionState(input.sessionState, context),\n })));\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1RecognizeTextCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/text\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botId\", function () { return input.botId; }, \"{botId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAliasId\", function () { return input.botAliasId; }, \"{botAliasId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"localeId\", function () { return input.localeId; }, \"{localeId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"sessionId\", function () { return input.sessionId; }, \"{sessionId}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.requestAttributes != null && {\n requestAttributes: serializeAws_restJson1StringMap(input.requestAttributes, context),\n })), (input.sessionState != null && {\n sessionState: serializeAws_restJson1SessionState(input.sessionState, context),\n })), (input.text != null && { text: input.text })));\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1RecognizeUtteranceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = map({}, isSerializableHeaderValue, {\n \"x-amz-content-sha256\": \"UNSIGNED-PAYLOAD\",\n \"content-type\": input.requestContentType || \"application/octet-stream\",\n \"x-amz-lex-session-state\": input.sessionState,\n \"x-amz-lex-request-attributes\": input.requestAttributes,\n \"response-content-type\": input.responseContentType,\n });\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/utterance\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botId\", function () { return input.botId; }, \"{botId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAliasId\", function () { return input.botAliasId; }, \"{botAliasId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"localeId\", function () { return input.localeId; }, \"{localeId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"sessionId\", function () { return input.sessionId; }, \"{sessionId}\", false);\n if (input.inputStream !== undefined) {\n body = input.inputStream;\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1StartConversationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = map({}, isSerializableHeaderValue, {\n \"x-amz-lex-conversation-mode\": input.conversationMode,\n });\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/conversation\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botId\", function () { return input.botId; }, \"{botId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"botAliasId\", function () { return input.botAliasId; }, \"{botAliasId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"localeId\", function () { return input.localeId; }, \"{localeId}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"sessionId\", function () { return input.sessionId; }, \"{sessionId}\", false);\n if (input.requestEventStream !== undefined) {\n body = serializeAws_restJson1StartConversationRequestEventStream(input.requestEventStream, context);\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSessionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DeleteSessionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.botAliasId != null) {\n contents.botAliasId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.botAliasId);\n }\n if (data.botId != null) {\n contents.botId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.botId);\n }\n if (data.localeId != null) {\n contents.localeId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.localeId);\n }\n if (data.sessionId != null) {\n contents.sessionId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.sessionId);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSessionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.lexruntimev2#AccessDeniedException\": return [3, 2];\n case \"ConflictException\": return [3, 4];\n case \"com.amazonaws.lexruntimev2#ConflictException\": return [3, 4];\n case \"InternalServerException\": return [3, 6];\n case \"com.amazonaws.lexruntimev2#InternalServerException\": return [3, 6];\n case \"ResourceNotFoundException\": return [3, 8];\n case \"com.amazonaws.lexruntimev2#ResourceNotFoundException\": return [3, 8];\n case \"ThrottlingException\": return [3, 10];\n case \"com.amazonaws.lexruntimev2#ThrottlingException\": return [3, 10];\n case \"ValidationException\": return [3, 12];\n case \"com.amazonaws.lexruntimev2#ValidationException\": return [3, 12];\n }\n return [3, 14];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 13: throw _d.sent();\n case 14:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeV2ServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 15;\n case 15: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSessionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetSessionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.interpretations != null) {\n contents.interpretations = deserializeAws_restJson1Interpretations(data.interpretations, context);\n }\n if (data.messages != null) {\n contents.messages = deserializeAws_restJson1Messages(data.messages, context);\n }\n if (data.sessionId != null) {\n contents.sessionId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.sessionId);\n }\n if (data.sessionState != null) {\n contents.sessionState = deserializeAws_restJson1SessionState(data.sessionState, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSessionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.lexruntimev2#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.lexruntimev2#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.lexruntimev2#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.lexruntimev2#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.lexruntimev2#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeV2ServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1PutSessionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1PutSessionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n contentType: [, output.headers[\"content-type\"]],\n messages: [, output.headers[\"x-amz-lex-messages\"]],\n sessionState: [, output.headers[\"x-amz-lex-session-state\"]],\n requestAttributes: [, output.headers[\"x-amz-lex-request-attributes\"]],\n sessionId: [, output.headers[\"x-amz-lex-session-id\"]],\n });\n data = output.body;\n contents.audioStream = data;\n return [2, contents];\n });\n}); };\nvar deserializeAws_restJson1PutSessionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.lexruntimev2#AccessDeniedException\": return [3, 2];\n case \"BadGatewayException\": return [3, 4];\n case \"com.amazonaws.lexruntimev2#BadGatewayException\": return [3, 4];\n case \"ConflictException\": return [3, 6];\n case \"com.amazonaws.lexruntimev2#ConflictException\": return [3, 6];\n case \"DependencyFailedException\": return [3, 8];\n case \"com.amazonaws.lexruntimev2#DependencyFailedException\": return [3, 8];\n case \"InternalServerException\": return [3, 10];\n case \"com.amazonaws.lexruntimev2#InternalServerException\": return [3, 10];\n case \"ResourceNotFoundException\": return [3, 12];\n case \"com.amazonaws.lexruntimev2#ResourceNotFoundException\": return [3, 12];\n case \"ThrottlingException\": return [3, 14];\n case \"com.amazonaws.lexruntimev2#ThrottlingException\": return [3, 14];\n case \"ValidationException\": return [3, 16];\n case \"com.amazonaws.lexruntimev2#ValidationException\": return [3, 16];\n }\n return [3, 18];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1BadGatewayExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1DependencyFailedExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13: throw _d.sent();\n case 14: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15: throw _d.sent();\n case 16: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 17: throw _d.sent();\n case 18:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeV2ServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 19;\n case 19: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1RecognizeTextCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1RecognizeTextCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.interpretations != null) {\n contents.interpretations = deserializeAws_restJson1Interpretations(data.interpretations, context);\n }\n if (data.messages != null) {\n contents.messages = deserializeAws_restJson1Messages(data.messages, context);\n }\n if (data.requestAttributes != null) {\n contents.requestAttributes = deserializeAws_restJson1StringMap(data.requestAttributes, context);\n }\n if (data.sessionId != null) {\n contents.sessionId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.sessionId);\n }\n if (data.sessionState != null) {\n contents.sessionState = deserializeAws_restJson1SessionState(data.sessionState, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1RecognizeTextCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.lexruntimev2#AccessDeniedException\": return [3, 2];\n case \"BadGatewayException\": return [3, 4];\n case \"com.amazonaws.lexruntimev2#BadGatewayException\": return [3, 4];\n case \"ConflictException\": return [3, 6];\n case \"com.amazonaws.lexruntimev2#ConflictException\": return [3, 6];\n case \"DependencyFailedException\": return [3, 8];\n case \"com.amazonaws.lexruntimev2#DependencyFailedException\": return [3, 8];\n case \"InternalServerException\": return [3, 10];\n case \"com.amazonaws.lexruntimev2#InternalServerException\": return [3, 10];\n case \"ResourceNotFoundException\": return [3, 12];\n case \"com.amazonaws.lexruntimev2#ResourceNotFoundException\": return [3, 12];\n case \"ThrottlingException\": return [3, 14];\n case \"com.amazonaws.lexruntimev2#ThrottlingException\": return [3, 14];\n case \"ValidationException\": return [3, 16];\n case \"com.amazonaws.lexruntimev2#ValidationException\": return [3, 16];\n }\n return [3, 18];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1BadGatewayExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1DependencyFailedExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13: throw _d.sent();\n case 14: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15: throw _d.sent();\n case 16: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 17: throw _d.sent();\n case 18:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeV2ServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 19;\n case 19: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1RecognizeUtteranceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1RecognizeUtteranceCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n inputMode: [, output.headers[\"x-amz-lex-input-mode\"]],\n contentType: [, output.headers[\"content-type\"]],\n messages: [, output.headers[\"x-amz-lex-messages\"]],\n interpretations: [, output.headers[\"x-amz-lex-interpretations\"]],\n sessionState: [, output.headers[\"x-amz-lex-session-state\"]],\n requestAttributes: [, output.headers[\"x-amz-lex-request-attributes\"]],\n sessionId: [, output.headers[\"x-amz-lex-session-id\"]],\n inputTranscript: [, output.headers[\"x-amz-lex-input-transcript\"]],\n });\n data = output.body;\n contents.audioStream = data;\n return [2, contents];\n });\n}); };\nvar deserializeAws_restJson1RecognizeUtteranceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.lexruntimev2#AccessDeniedException\": return [3, 2];\n case \"BadGatewayException\": return [3, 4];\n case \"com.amazonaws.lexruntimev2#BadGatewayException\": return [3, 4];\n case \"ConflictException\": return [3, 6];\n case \"com.amazonaws.lexruntimev2#ConflictException\": return [3, 6];\n case \"DependencyFailedException\": return [3, 8];\n case \"com.amazonaws.lexruntimev2#DependencyFailedException\": return [3, 8];\n case \"InternalServerException\": return [3, 10];\n case \"com.amazonaws.lexruntimev2#InternalServerException\": return [3, 10];\n case \"ResourceNotFoundException\": return [3, 12];\n case \"com.amazonaws.lexruntimev2#ResourceNotFoundException\": return [3, 12];\n case \"ThrottlingException\": return [3, 14];\n case \"com.amazonaws.lexruntimev2#ThrottlingException\": return [3, 14];\n case \"ValidationException\": return [3, 16];\n case \"com.amazonaws.lexruntimev2#ValidationException\": return [3, 16];\n }\n return [3, 18];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1BadGatewayExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1DependencyFailedExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13: throw _d.sent();\n case 14: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15: throw _d.sent();\n case 16: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 17: throw _d.sent();\n case 18:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeV2ServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 19;\n case 19: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1StartConversationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1StartConversationCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n data = output.body;\n contents.responseEventStream = deserializeAws_restJson1StartConversationResponseEventStream(data, context);\n return [2, contents];\n });\n}); };\nvar deserializeAws_restJson1StartConversationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.lexruntimev2#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.lexruntimev2#InternalServerException\": return [3, 4];\n case \"ThrottlingException\": return [3, 6];\n case \"com.amazonaws.lexruntimev2#ThrottlingException\": return [3, 6];\n case \"ValidationException\": return [3, 8];\n case \"com.amazonaws.lexruntimev2#ValidationException\": return [3, 8];\n }\n return [3, 10];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LexRuntimeV2ServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LexRuntimeV2ServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 11;\n case 11: return [2];\n }\n });\n}); };\nvar map = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"map\"];\nvar deserializeAws_restJson1AccessDeniedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"AccessDeniedException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1BadGatewayExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"BadGatewayException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ConflictExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ConflictException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1DependencyFailedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"DependencyFailedException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1InternalServerExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"InternalServerException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ResourceNotFoundException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ThrottlingExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ThrottlingException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ValidationExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ValidationException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar serializeAws_restJson1StartConversationRequestEventStream = function (input, context) {\n var eventMarshallingVisitor = function (event) {\n return _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"StartConversationRequestEventStream\"].visit(event, {\n ConfigurationEvent: function (value) { return serializeAws_restJson1ConfigurationEvent_event(value, context); },\n AudioInputEvent: function (value) { return serializeAws_restJson1AudioInputEvent_event(value, context); },\n DTMFInputEvent: function (value) { return serializeAws_restJson1DTMFInputEvent_event(value, context); },\n TextInputEvent: function (value) { return serializeAws_restJson1TextInputEvent_event(value, context); },\n PlaybackCompletionEvent: function (value) { return serializeAws_restJson1PlaybackCompletionEvent_event(value, context); },\n DisconnectionEvent: function (value) { return serializeAws_restJson1DisconnectionEvent_event(value, context); },\n _: function (value) { return value; },\n });\n };\n return context.eventStreamMarshaller.serialize(input, eventMarshallingVisitor);\n};\nvar serializeAws_restJson1AudioInputEvent_event = function (input, context) {\n var headers = {\n \":event-type\": { type: \"string\", value: \"AudioInputEvent\" },\n \":message-type\": { type: \"string\", value: \"event\" },\n \":content-type\": { type: \"string\", value: \"application/json\" },\n };\n var body = new Uint8Array();\n body = serializeAws_restJson1AudioInputEvent(input, context);\n body = context.utf8Decoder(JSON.stringify(body));\n return { headers: headers, body: body };\n};\nvar serializeAws_restJson1ConfigurationEvent_event = function (input, context) {\n var headers = {\n \":event-type\": { type: \"string\", value: \"ConfigurationEvent\" },\n \":message-type\": { type: \"string\", value: \"event\" },\n \":content-type\": { type: \"string\", value: \"application/json\" },\n };\n var body = new Uint8Array();\n body = serializeAws_restJson1ConfigurationEvent(input, context);\n body = context.utf8Decoder(JSON.stringify(body));\n return { headers: headers, body: body };\n};\nvar serializeAws_restJson1DisconnectionEvent_event = function (input, context) {\n var headers = {\n \":event-type\": { type: \"string\", value: \"DisconnectionEvent\" },\n \":message-type\": { type: \"string\", value: \"event\" },\n \":content-type\": { type: \"string\", value: \"application/json\" },\n };\n var body = new Uint8Array();\n body = serializeAws_restJson1DisconnectionEvent(input, context);\n body = context.utf8Decoder(JSON.stringify(body));\n return { headers: headers, body: body };\n};\nvar serializeAws_restJson1DTMFInputEvent_event = function (input, context) {\n var headers = {\n \":event-type\": { type: \"string\", value: \"DTMFInputEvent\" },\n \":message-type\": { type: \"string\", value: \"event\" },\n \":content-type\": { type: \"string\", value: \"application/json\" },\n };\n var body = new Uint8Array();\n body = serializeAws_restJson1DTMFInputEvent(input, context);\n body = context.utf8Decoder(JSON.stringify(body));\n return { headers: headers, body: body };\n};\nvar serializeAws_restJson1PlaybackCompletionEvent_event = function (input, context) {\n var headers = {\n \":event-type\": { type: \"string\", value: \"PlaybackCompletionEvent\" },\n \":message-type\": { type: \"string\", value: \"event\" },\n \":content-type\": { type: \"string\", value: \"application/json\" },\n };\n var body = new Uint8Array();\n body = serializeAws_restJson1PlaybackCompletionEvent(input, context);\n body = context.utf8Decoder(JSON.stringify(body));\n return { headers: headers, body: body };\n};\nvar serializeAws_restJson1TextInputEvent_event = function (input, context) {\n var headers = {\n \":event-type\": { type: \"string\", value: \"TextInputEvent\" },\n \":message-type\": { type: \"string\", value: \"event\" },\n \":content-type\": { type: \"string\", value: \"application/json\" },\n };\n var body = new Uint8Array();\n body = serializeAws_restJson1TextInputEvent(input, context);\n body = context.utf8Decoder(JSON.stringify(body));\n return { headers: headers, body: body };\n};\nvar deserializeAws_restJson1StartConversationResponseEventStream = function (output, context) {\n return context.eventStreamMarshaller.deserialize(output, function (event) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_q) {\n switch (_q.label) {\n case 0:\n if (!(event[\"PlaybackInterruptionEvent\"] != null)) return [3, 2];\n _a = {};\n return [4, deserializeAws_restJson1PlaybackInterruptionEvent_event(event[\"PlaybackInterruptionEvent\"], context)];\n case 1: return [2, (_a.PlaybackInterruptionEvent = _q.sent(),\n _a)];\n case 2:\n if (!(event[\"TranscriptEvent\"] != null)) return [3, 4];\n _b = {};\n return [4, deserializeAws_restJson1TranscriptEvent_event(event[\"TranscriptEvent\"], context)];\n case 3: return [2, (_b.TranscriptEvent = _q.sent(),\n _b)];\n case 4:\n if (!(event[\"IntentResultEvent\"] != null)) return [3, 6];\n _c = {};\n return [4, deserializeAws_restJson1IntentResultEvent_event(event[\"IntentResultEvent\"], context)];\n case 5: return [2, (_c.IntentResultEvent = _q.sent(),\n _c)];\n case 6:\n if (!(event[\"TextResponseEvent\"] != null)) return [3, 8];\n _d = {};\n return [4, deserializeAws_restJson1TextResponseEvent_event(event[\"TextResponseEvent\"], context)];\n case 7: return [2, (_d.TextResponseEvent = _q.sent(),\n _d)];\n case 8:\n if (!(event[\"AudioResponseEvent\"] != null)) return [3, 10];\n _e = {};\n return [4, deserializeAws_restJson1AudioResponseEvent_event(event[\"AudioResponseEvent\"], context)];\n case 9: return [2, (_e.AudioResponseEvent = _q.sent(),\n _e)];\n case 10:\n if (!(event[\"HeartbeatEvent\"] != null)) return [3, 12];\n _f = {};\n return [4, deserializeAws_restJson1HeartbeatEvent_event(event[\"HeartbeatEvent\"], context)];\n case 11: return [2, (_f.HeartbeatEvent = _q.sent(),\n _f)];\n case 12:\n if (!(event[\"AccessDeniedException\"] != null)) return [3, 14];\n _g = {};\n return [4, deserializeAws_restJson1AccessDeniedException_event(event[\"AccessDeniedException\"], context)];\n case 13: return [2, (_g.AccessDeniedException = _q.sent(),\n _g)];\n case 14:\n if (!(event[\"ResourceNotFoundException\"] != null)) return [3, 16];\n _h = {};\n return [4, deserializeAws_restJson1ResourceNotFoundException_event(event[\"ResourceNotFoundException\"], context)];\n case 15: return [2, (_h.ResourceNotFoundException = _q.sent(),\n _h)];\n case 16:\n if (!(event[\"ValidationException\"] != null)) return [3, 18];\n _j = {};\n return [4, deserializeAws_restJson1ValidationException_event(event[\"ValidationException\"], context)];\n case 17: return [2, (_j.ValidationException = _q.sent(),\n _j)];\n case 18:\n if (!(event[\"ThrottlingException\"] != null)) return [3, 20];\n _k = {};\n return [4, deserializeAws_restJson1ThrottlingException_event(event[\"ThrottlingException\"], context)];\n case 19: return [2, (_k.ThrottlingException = _q.sent(),\n _k)];\n case 20:\n if (!(event[\"InternalServerException\"] != null)) return [3, 22];\n _l = {};\n return [4, deserializeAws_restJson1InternalServerException_event(event[\"InternalServerException\"], context)];\n case 21: return [2, (_l.InternalServerException = _q.sent(),\n _l)];\n case 22:\n if (!(event[\"ConflictException\"] != null)) return [3, 24];\n _m = {};\n return [4, deserializeAws_restJson1ConflictException_event(event[\"ConflictException\"], context)];\n case 23: return [2, (_m.ConflictException = _q.sent(),\n _m)];\n case 24:\n if (!(event[\"DependencyFailedException\"] != null)) return [3, 26];\n _o = {};\n return [4, deserializeAws_restJson1DependencyFailedException_event(event[\"DependencyFailedException\"], context)];\n case 25: return [2, (_o.DependencyFailedException = _q.sent(),\n _o)];\n case 26:\n if (!(event[\"BadGatewayException\"] != null)) return [3, 28];\n _p = {};\n return [4, deserializeAws_restJson1BadGatewayException_event(event[\"BadGatewayException\"], context)];\n case 27: return [2, (_p.BadGatewayException = _q.sent(),\n _p)];\n case 28: return [2, { $unknown: output }];\n }\n });\n }); });\n};\nvar deserializeAws_restJson1AccessDeniedException_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n return [2, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n }\n });\n}); };\nvar deserializeAws_restJson1AudioResponseEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n contents = {};\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n Object.assign(contents, deserializeAws_restJson1AudioResponseEvent(data, context));\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1BadGatewayException_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n return [2, deserializeAws_restJson1BadGatewayExceptionResponse(parsedOutput, context)];\n }\n });\n}); };\nvar deserializeAws_restJson1ConflictException_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n return [2, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n }\n });\n}); };\nvar deserializeAws_restJson1DependencyFailedException_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n return [2, deserializeAws_restJson1DependencyFailedExceptionResponse(parsedOutput, context)];\n }\n });\n}); };\nvar deserializeAws_restJson1HeartbeatEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n contents = {};\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n Object.assign(contents, deserializeAws_restJson1HeartbeatEvent(data, context));\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1IntentResultEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n contents = {};\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n Object.assign(contents, deserializeAws_restJson1IntentResultEvent(data, context));\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1InternalServerException_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n return [2, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n }\n });\n}); };\nvar deserializeAws_restJson1PlaybackInterruptionEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n contents = {};\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n Object.assign(contents, deserializeAws_restJson1PlaybackInterruptionEvent(data, context));\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ResourceNotFoundException_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n return [2, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n }\n });\n}); };\nvar deserializeAws_restJson1TextResponseEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n contents = {};\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n Object.assign(contents, deserializeAws_restJson1TextResponseEvent(data, context));\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ThrottlingException_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n return [2, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n }\n });\n}); };\nvar deserializeAws_restJson1TranscriptEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n contents = {};\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n Object.assign(contents, deserializeAws_restJson1TranscriptEvent(data, context));\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ValidationException_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n return [2, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n }\n });\n}); };\nvar serializeAws_restJson1ActiveContext = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.contextAttributes != null && {\n contextAttributes: serializeAws_restJson1ActiveContextParametersMap(input.contextAttributes, context),\n })), (input.name != null && { name: input.name })), (input.timeToLive != null && {\n timeToLive: serializeAws_restJson1ActiveContextTimeToLive(input.timeToLive, context),\n }));\n};\nvar serializeAws_restJson1ActiveContextParametersMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_restJson1ActiveContextsList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1ActiveContext(entry, context);\n });\n};\nvar serializeAws_restJson1ActiveContextTimeToLive = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.timeToLiveInSeconds != null && { timeToLiveInSeconds: input.timeToLiveInSeconds })), (input.turnsToLive != null && { turnsToLive: input.turnsToLive }));\n};\nvar serializeAws_restJson1AudioInputEvent = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.audioChunk != null && { audioChunk: context.base64Encoder(input.audioChunk) })), (input.clientTimestampMillis != null && { clientTimestampMillis: input.clientTimestampMillis })), (input.contentType != null && { contentType: input.contentType })), (input.eventId != null && { eventId: input.eventId }));\n};\nvar serializeAws_restJson1Button = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.text != null && { text: input.text })), (input.value != null && { value: input.value }));\n};\nvar serializeAws_restJson1ButtonsList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1Button(entry, context);\n });\n};\nvar serializeAws_restJson1ConfigurationEvent = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.clientTimestampMillis != null && { clientTimestampMillis: input.clientTimestampMillis })), (input.disablePlayback != null && { disablePlayback: input.disablePlayback })), (input.eventId != null && { eventId: input.eventId })), (input.requestAttributes != null && {\n requestAttributes: serializeAws_restJson1StringMap(input.requestAttributes, context),\n })), (input.responseContentType != null && { responseContentType: input.responseContentType })), (input.sessionState != null && {\n sessionState: serializeAws_restJson1SessionState(input.sessionState, context),\n })), (input.welcomeMessages != null && {\n welcomeMessages: serializeAws_restJson1Messages(input.welcomeMessages, context),\n }));\n};\nvar serializeAws_restJson1DialogAction = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.slotElicitationStyle != null && { slotElicitationStyle: input.slotElicitationStyle })), (input.slotToElicit != null && { slotToElicit: input.slotToElicit })), (input.subSlotToElicit != null && {\n subSlotToElicit: serializeAws_restJson1ElicitSubSlot(input.subSlotToElicit, context),\n })), (input.type != null && { type: input.type }));\n};\nvar serializeAws_restJson1DisconnectionEvent = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.clientTimestampMillis != null && { clientTimestampMillis: input.clientTimestampMillis })), (input.eventId != null && { eventId: input.eventId }));\n};\nvar serializeAws_restJson1DTMFInputEvent = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.clientTimestampMillis != null && { clientTimestampMillis: input.clientTimestampMillis })), (input.eventId != null && { eventId: input.eventId })), (input.inputCharacter != null && { inputCharacter: input.inputCharacter }));\n};\nvar serializeAws_restJson1ElicitSubSlot = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.name != null && { name: input.name })), (input.subSlotToElicit != null && {\n subSlotToElicit: serializeAws_restJson1ElicitSubSlot(input.subSlotToElicit, context),\n }));\n};\nvar serializeAws_restJson1ImageResponseCard = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.buttons != null && { buttons: serializeAws_restJson1ButtonsList(input.buttons, context) })), (input.imageUrl != null && { imageUrl: input.imageUrl })), (input.subtitle != null && { subtitle: input.subtitle })), (input.title != null && { title: input.title }));\n};\nvar serializeAws_restJson1Intent = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.confirmationState != null && { confirmationState: input.confirmationState })), (input.name != null && { name: input.name })), (input.slots != null && { slots: serializeAws_restJson1Slots(input.slots, context) })), (input.state != null && { state: input.state }));\n};\nvar serializeAws_restJson1Message = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.content != null && { content: input.content })), (input.contentType != null && { contentType: input.contentType })), (input.imageResponseCard != null && {\n imageResponseCard: serializeAws_restJson1ImageResponseCard(input.imageResponseCard, context),\n }));\n};\nvar serializeAws_restJson1Messages = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1Message(entry, context);\n });\n};\nvar serializeAws_restJson1PlaybackCompletionEvent = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.clientTimestampMillis != null && { clientTimestampMillis: input.clientTimestampMillis })), (input.eventId != null && { eventId: input.eventId }));\n};\nvar serializeAws_restJson1RuntimeHintDetails = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.runtimeHintValues != null && {\n runtimeHintValues: serializeAws_restJson1RuntimeHintValuesList(input.runtimeHintValues, context),\n })), (input.subSlotHints != null && {\n subSlotHints: serializeAws_restJson1SlotHintsSlotMap(input.subSlotHints, context),\n }));\n};\nvar serializeAws_restJson1RuntimeHints = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.slotHints != null && { slotHints: serializeAws_restJson1SlotHintsIntentMap(input.slotHints, context) }));\n};\nvar serializeAws_restJson1RuntimeHintValue = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.phrase != null && { phrase: input.phrase }));\n};\nvar serializeAws_restJson1RuntimeHintValuesList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1RuntimeHintValue(entry, context);\n });\n};\nvar serializeAws_restJson1SessionState = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.activeContexts != null && {\n activeContexts: serializeAws_restJson1ActiveContextsList(input.activeContexts, context),\n })), (input.dialogAction != null && {\n dialogAction: serializeAws_restJson1DialogAction(input.dialogAction, context),\n })), (input.intent != null && { intent: serializeAws_restJson1Intent(input.intent, context) })), (input.originatingRequestId != null && { originatingRequestId: input.originatingRequestId })), (input.runtimeHints != null && {\n runtimeHints: serializeAws_restJson1RuntimeHints(input.runtimeHints, context),\n })), (input.sessionAttributes != null && {\n sessionAttributes: serializeAws_restJson1StringMap(input.sessionAttributes, context),\n }));\n};\nvar serializeAws_restJson1Slot = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.shape != null && { shape: input.shape })), (input.subSlots != null && { subSlots: serializeAws_restJson1Slots(input.subSlots, context) })), (input.value != null && { value: serializeAws_restJson1Value(input.value, context) })), (input.values != null && { values: serializeAws_restJson1Values(input.values, context) }));\n};\nvar serializeAws_restJson1SlotHintsIntentMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1SlotHintsSlotMap(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1SlotHintsSlotMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1RuntimeHintDetails(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1Slots = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1Slot(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1StringList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return entry;\n });\n};\nvar serializeAws_restJson1StringMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_restJson1TextInputEvent = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.clientTimestampMillis != null && { clientTimestampMillis: input.clientTimestampMillis })), (input.eventId != null && { eventId: input.eventId })), (input.text != null && { text: input.text }));\n};\nvar serializeAws_restJson1Value = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.interpretedValue != null && { interpretedValue: input.interpretedValue })), (input.originalValue != null && { originalValue: input.originalValue })), (input.resolvedValues != null && {\n resolvedValues: serializeAws_restJson1StringList(input.resolvedValues, context),\n }));\n};\nvar serializeAws_restJson1Values = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1Slot(entry, context);\n });\n};\nvar deserializeAws_restJson1ActiveContext = function (output, context) {\n return {\n contextAttributes: output.contextAttributes != null\n ? deserializeAws_restJson1ActiveContextParametersMap(output.contextAttributes, context)\n : undefined,\n name: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.name),\n timeToLive: output.timeToLive != null\n ? deserializeAws_restJson1ActiveContextTimeToLive(output.timeToLive, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1ActiveContextParametersMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(value), _b));\n }, {});\n};\nvar deserializeAws_restJson1ActiveContextsList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ActiveContext(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ActiveContextTimeToLive = function (output, context) {\n return {\n timeToLiveInSeconds: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.timeToLiveInSeconds),\n turnsToLive: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.turnsToLive),\n };\n};\nvar deserializeAws_restJson1AudioResponseEvent = function (output, context) {\n return {\n audioChunk: output.audioChunk != null ? context.base64Decoder(output.audioChunk) : undefined,\n contentType: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.contentType),\n eventId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.eventId),\n };\n};\nvar deserializeAws_restJson1Button = function (output, context) {\n return {\n text: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.text),\n value: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.value),\n };\n};\nvar deserializeAws_restJson1ButtonsList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Button(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ConfidenceScore = function (output, context) {\n return {\n score: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.score),\n };\n};\nvar deserializeAws_restJson1DialogAction = function (output, context) {\n return {\n slotElicitationStyle: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.slotElicitationStyle),\n slotToElicit: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.slotToElicit),\n subSlotToElicit: output.subSlotToElicit != null\n ? deserializeAws_restJson1ElicitSubSlot(output.subSlotToElicit, context)\n : undefined,\n type: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.type),\n };\n};\nvar deserializeAws_restJson1ElicitSubSlot = function (output, context) {\n return {\n name: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.name),\n subSlotToElicit: output.subSlotToElicit != null\n ? deserializeAws_restJson1ElicitSubSlot(output.subSlotToElicit, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1HeartbeatEvent = function (output, context) {\n return {\n eventId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.eventId),\n };\n};\nvar deserializeAws_restJson1ImageResponseCard = function (output, context) {\n return {\n buttons: output.buttons != null ? deserializeAws_restJson1ButtonsList(output.buttons, context) : undefined,\n imageUrl: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.imageUrl),\n subtitle: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.subtitle),\n title: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.title),\n };\n};\nvar deserializeAws_restJson1Intent = function (output, context) {\n return {\n confirmationState: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.confirmationState),\n name: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.name),\n slots: output.slots != null ? deserializeAws_restJson1Slots(output.slots, context) : undefined,\n state: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.state),\n };\n};\nvar deserializeAws_restJson1IntentResultEvent = function (output, context) {\n return {\n eventId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.eventId),\n inputMode: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.inputMode),\n interpretations: output.interpretations != null\n ? deserializeAws_restJson1Interpretations(output.interpretations, context)\n : undefined,\n requestAttributes: output.requestAttributes != null\n ? deserializeAws_restJson1StringMap(output.requestAttributes, context)\n : undefined,\n sessionId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.sessionId),\n sessionState: output.sessionState != null ? deserializeAws_restJson1SessionState(output.sessionState, context) : undefined,\n };\n};\nvar deserializeAws_restJson1Interpretation = function (output, context) {\n return {\n intent: output.intent != null ? deserializeAws_restJson1Intent(output.intent, context) : undefined,\n nluConfidence: output.nluConfidence != null ? deserializeAws_restJson1ConfidenceScore(output.nluConfidence, context) : undefined,\n sentimentResponse: output.sentimentResponse != null\n ? deserializeAws_restJson1SentimentResponse(output.sentimentResponse, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1Interpretations = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Interpretation(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1Message = function (output, context) {\n return {\n content: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.content),\n contentType: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.contentType),\n imageResponseCard: output.imageResponseCard != null\n ? deserializeAws_restJson1ImageResponseCard(output.imageResponseCard, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1Messages = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Message(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1PlaybackInterruptionEvent = function (output, context) {\n return {\n causedByEventId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.causedByEventId),\n eventId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.eventId),\n eventReason: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.eventReason),\n };\n};\nvar deserializeAws_restJson1RuntimeHintDetails = function (output, context) {\n return {\n runtimeHintValues: output.runtimeHintValues != null\n ? deserializeAws_restJson1RuntimeHintValuesList(output.runtimeHintValues, context)\n : undefined,\n subSlotHints: output.subSlotHints != null ? deserializeAws_restJson1SlotHintsSlotMap(output.subSlotHints, context) : undefined,\n };\n};\nvar deserializeAws_restJson1RuntimeHints = function (output, context) {\n return {\n slotHints: output.slotHints != null ? deserializeAws_restJson1SlotHintsIntentMap(output.slotHints, context) : undefined,\n };\n};\nvar deserializeAws_restJson1RuntimeHintValue = function (output, context) {\n return {\n phrase: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.phrase),\n };\n};\nvar deserializeAws_restJson1RuntimeHintValuesList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1RuntimeHintValue(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1SentimentResponse = function (output, context) {\n return {\n sentiment: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.sentiment),\n sentimentScore: output.sentimentScore != null\n ? deserializeAws_restJson1SentimentScore(output.sentimentScore, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1SentimentScore = function (output, context) {\n return {\n mixed: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.mixed),\n negative: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.negative),\n neutral: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.neutral),\n positive: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.positive),\n };\n};\nvar deserializeAws_restJson1SessionState = function (output, context) {\n return {\n activeContexts: output.activeContexts != null\n ? deserializeAws_restJson1ActiveContextsList(output.activeContexts, context)\n : undefined,\n dialogAction: output.dialogAction != null ? deserializeAws_restJson1DialogAction(output.dialogAction, context) : undefined,\n intent: output.intent != null ? deserializeAws_restJson1Intent(output.intent, context) : undefined,\n originatingRequestId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.originatingRequestId),\n runtimeHints: output.runtimeHints != null ? deserializeAws_restJson1RuntimeHints(output.runtimeHints, context) : undefined,\n sessionAttributes: output.sessionAttributes != null\n ? deserializeAws_restJson1StringMap(output.sessionAttributes, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1Slot = function (output, context) {\n return {\n shape: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.shape),\n subSlots: output.subSlots != null ? deserializeAws_restJson1Slots(output.subSlots, context) : undefined,\n value: output.value != null ? deserializeAws_restJson1Value(output.value, context) : undefined,\n values: output.values != null ? deserializeAws_restJson1Values(output.values, context) : undefined,\n };\n};\nvar deserializeAws_restJson1SlotHintsIntentMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1SlotHintsSlotMap(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1SlotHintsSlotMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1RuntimeHintDetails(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1Slots = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1Slot(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1StringList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(entry);\n });\n return retVal;\n};\nvar deserializeAws_restJson1StringMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(value), _b));\n }, {});\n};\nvar deserializeAws_restJson1TextResponseEvent = function (output, context) {\n return {\n eventId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.eventId),\n messages: output.messages != null ? deserializeAws_restJson1Messages(output.messages, context) : undefined,\n };\n};\nvar deserializeAws_restJson1TranscriptEvent = function (output, context) {\n return {\n eventId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.eventId),\n transcript: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.transcript),\n };\n};\nvar deserializeAws_restJson1Value = function (output, context) {\n return {\n interpretedValue: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.interpretedValue),\n originalValue: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.originalValue),\n resolvedValues: output.resolvedValues != null ? deserializeAws_restJson1StringList(output.resolvedValues, context) : undefined,\n };\n};\nvar deserializeAws_restJson1Values = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Slot(entry, context);\n });\n return retVal;\n};\nvar deserializeMetadata = function (output) {\n var _a, _b;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_b = (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"]) !== null && _b !== void 0 ? _b : output.headers[\"x-amz-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar isSerializableHeaderValue = function (value) {\n return value !== undefined &&\n value !== null &&\n value !== \"\" &&\n (!Object.getOwnPropertyNames(value).includes(\"length\") || value.length != 0) &&\n (!Object.getOwnPropertyNames(value).includes(\"size\") || value.size != 0);\n};\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\nvar parseErrorBody = function (errorBody, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var value;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0: return [4, parseBody(errorBody, context)];\n case 1:\n value = _b.sent();\n value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;\n return [2, value];\n }\n });\n}); };\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (typeof cleanValue === \"number\") {\n cleanValue = cleanValue.toString();\n }\n if (cleanValue.indexOf(\",\") >= 0) {\n cleanValue = cleanValue.split(\",\")[0];\n }\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/protocols/Aws_restJson1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/runtimeConfig.browser.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/runtimeConfig.browser.js ***! \**************************************************************************************/ /*! exports provided: getRuntimeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRuntimeConfig\", function() { return getRuntimeConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../package.json */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ../package.json */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_eventstream_serde_browser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/eventstream-serde-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/runtimeConfig.shared.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_defaults_mode_browser__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! @aws-sdk/util-defaults-mode-browser */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/index.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar getRuntimeConfig = function (config) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;\n var defaultsMode = Object(_aws_sdk_util_defaults_mode_browser__WEBPACK_IMPORTED_MODULE_14__[\"resolveDefaultsModeConfig\"])(config);\n var defaultConfigProvider = function () { return defaultsMode().then(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_13__[\"loadConfigsForDefaultMode\"]); };\n var clientSharedValues = Object(_runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_12__[\"getRuntimeConfig\"])(config);\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, clientSharedValues), config), { runtime: \"browser\", defaultsMode: defaultsMode, base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_8__[\"fromBase64\"], base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_8__[\"toBase64\"], bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_9__[\"calculateBodyLength\"], credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_10__[\"defaultUserAgent\"])({ serviceId: clientSharedValues.serviceId, clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version }), eventStreamPayloadHandlerProvider: (_f = config === null || config === void 0 ? void 0 : config.eventStreamPayloadHandlerProvider) !== null && _f !== void 0 ? _f : (function () { return ({ handle: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_6__[\"invalidFunction\"])(\"event stream request is not supported in browser.\") }); }), eventStreamSerdeProvider: (_g = config === null || config === void 0 ? void 0 : config.eventStreamSerdeProvider) !== null && _g !== void 0 ? _g : _aws_sdk_eventstream_serde_browser__WEBPACK_IMPORTED_MODULE_4__[\"eventStreamSerdeProvider\"], maxAttempts: (_h = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _h !== void 0 ? _h : _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_7__[\"DEFAULT_MAX_ATTEMPTS\"], region: (_j = config === null || config === void 0 ? void 0 : config.region) !== null && _j !== void 0 ? _j : Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_6__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: (_k = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _k !== void 0 ? _k : new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_5__[\"FetchHttpHandler\"](defaultConfigProvider), retryMode: (_l = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _l !== void 0 ? _l : (function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, defaultConfigProvider()];\n case 1: return [2, (_a.sent()).retryMode || _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_7__[\"DEFAULT_RETRY_MODE\"]];\n }\n }); }); }), sha256: (_m = config === null || config === void 0 ? void 0 : config.sha256) !== null && _m !== void 0 ? _m : _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: (_o = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _o !== void 0 ? _o : _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_5__[\"streamCollector\"], useDualstackEndpoint: (_p = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _p !== void 0 ? _p : (function () { return Promise.resolve(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_USE_DUALSTACK_ENDPOINT\"]); }), useFipsEndpoint: (_q = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _q !== void 0 ? _q : (function () { return Promise.resolve(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_USE_FIPS_ENDPOINT\"]); }), utf8Decoder: (_r = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _r !== void 0 ? _r : _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_11__[\"fromUtf8\"], utf8Encoder: (_s = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _s !== void 0 ? _s : _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_11__[\"toUtf8\"] });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/runtimeConfig.shared.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/runtimeConfig.shared.js ***! \*************************************************************************************/ /*! exports provided: getRuntimeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRuntimeConfig\", function() { return getRuntimeConfig; });\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/url-parser/dist-es/index.js\");\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/endpoints.js\");\n\n\nvar getRuntimeConfig = function (config) {\n var _a, _b, _c, _d, _e;\n return ({\n apiVersion: \"2020-08-07\",\n disableHostPrefix: (_a = config === null || config === void 0 ? void 0 : config.disableHostPrefix) !== null && _a !== void 0 ? _a : false,\n logger: (_b = config === null || config === void 0 ? void 0 : config.logger) !== null && _b !== void 0 ? _b : {},\n regionInfoProvider: (_c = config === null || config === void 0 ? void 0 : config.regionInfoProvider) !== null && _c !== void 0 ? _c : _endpoints__WEBPACK_IMPORTED_MODULE_1__[\"defaultRegionInfoProvider\"],\n serviceId: (_d = config === null || config === void 0 ? void 0 : config.serviceId) !== null && _d !== void 0 ? _d : \"Lex Runtime V2\",\n urlParser: (_e = config === null || config === void 0 ? void 0 : config.urlParser) !== null && _e !== void 0 ? _e : _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_0__[\"parseUrl\"],\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/dist-es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js ***! \**********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=CryptoOperation.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/Key.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/Key.js ***! \**********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=Key.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/Key.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js ***! \*******************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=KeyOperation.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js ***! \*********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=MsSubtleCrypto.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js ***! \***************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isMsWindow = void 0;\nvar msSubtleCryptoMethods = [\n \"decrypt\",\n \"digest\",\n \"encrypt\",\n \"exportKey\",\n \"generateKey\",\n \"importKey\",\n \"sign\",\n \"verify\"\n];\nfunction quacksLikeAnMsWindow(window) {\n return \"MSInputMethodContext\" in window && \"msCrypto\" in window;\n}\n/**\n * Determines if the provided window is (or is like) the window object one would\n * expect to encounter in Internet Explorer 11.\n */\nfunction isMsWindow(window) {\n if (quacksLikeAnMsWindow(window) && window.msCrypto.subtle !== undefined) {\n var _a = window.msCrypto, getRandomValues = _a.getRandomValues, subtle_1 = _a.subtle;\n return msSubtleCryptoMethods\n .map(function (methodName) { return subtle_1[methodName]; })\n .concat(getRandomValues)\n .every(function (method) { return typeof method === \"function\"; });\n }\n return false;\n}\nexports.isMsWindow = isMsWindow;\n//# sourceMappingURL=MsWindow.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/index.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/index.js ***! \************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js\");\ntslib_1.__exportStar(__webpack_require__(/*! ./CryptoOperation */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./Key */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/Key.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./KeyOperation */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./MsSubtleCrypto */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./MsWindow */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js ***! \*****************************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/constants.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/constants.js ***! \****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EMPTY_DATA_SHA_256 = exports.SHA_256_HMAC_ALGO = exports.SHA_256_HASH = void 0;\nexports.SHA_256_HASH = { name: \"SHA-256\" };\nexports.SHA_256_HMAC_ALGO = {\n name: \"HMAC\",\n hash: exports.SHA_256_HASH\n};\nexports.EMPTY_DATA_SHA_256 = new Uint8Array([\n 227,\n 176,\n 196,\n 66,\n 152,\n 252,\n 28,\n 20,\n 154,\n 251,\n 244,\n 200,\n 153,\n 111,\n 185,\n 36,\n 39,\n 174,\n 65,\n 228,\n 100,\n 155,\n 147,\n 76,\n 164,\n 149,\n 153,\n 27,\n 120,\n 82,\n 184,\n 85\n]);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBYSxRQUFBLFlBQVksR0FBd0IsRUFBRSxJQUFJLEVBQUUsU0FBUyxFQUFFLENBQUM7QUFFeEQsUUFBQSxpQkFBaUIsR0FBZ0Q7SUFDNUUsSUFBSSxFQUFFLE1BQU07SUFDWixJQUFJLEVBQUUsb0JBQVk7Q0FDbkIsQ0FBQztBQUVXLFFBQUEsa0JBQWtCLEdBQUcsSUFBSSxVQUFVLENBQUM7SUFDL0MsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEVBQUU7SUFDRixHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEVBQUU7SUFDRixHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxFQUFFO0lBQ0YsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxFQUFFO0lBQ0YsR0FBRztJQUNILEVBQUU7Q0FDSCxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgU0hBXzI1Nl9IQVNIOiB7IG5hbWU6IFwiU0hBLTI1NlwiIH0gPSB7IG5hbWU6IFwiU0hBLTI1NlwiIH07XG5cbmV4cG9ydCBjb25zdCBTSEFfMjU2X0hNQUNfQUxHTzogeyBuYW1lOiBcIkhNQUNcIjsgaGFzaDogeyBuYW1lOiBcIlNIQS0yNTZcIiB9IH0gPSB7XG4gIG5hbWU6IFwiSE1BQ1wiLFxuICBoYXNoOiBTSEFfMjU2X0hBU0hcbn07XG5cbmV4cG9ydCBjb25zdCBFTVBUWV9EQVRBX1NIQV8yNTYgPSBuZXcgVWludDhBcnJheShbXG4gIDIyNyxcbiAgMTc2LFxuICAxOTYsXG4gIDY2LFxuICAxNTIsXG4gIDI1MixcbiAgMjgsXG4gIDIwLFxuICAxNTQsXG4gIDI1MSxcbiAgMjQ0LFxuICAyMDAsXG4gIDE1MyxcbiAgMTExLFxuICAxODUsXG4gIDM2LFxuICAzOSxcbiAgMTc0LFxuICA2NSxcbiAgMjI4LFxuICAxMDAsXG4gIDE1NSxcbiAgMTQ3LFxuICA3NixcbiAgMTY0LFxuICAxNDksXG4gIDE1MyxcbiAgMjcsXG4gIDEyMCxcbiAgODIsXG4gIDE4NCxcbiAgODVcbl0pO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js ***! \**************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar ie11Sha256_1 = __webpack_require__(/*! ./ie11Sha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js\");\nvar webCryptoSha256_1 = __webpack_require__(/*! ./webCryptoSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js\");\nvar sha256_js_1 = __webpack_require__(/*! @aws-crypto/sha256-js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/index.js\");\nvar supports_web_crypto_1 = __webpack_require__(/*! @aws-crypto/supports-web-crypto */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/build/index.js\");\nvar ie11_detection_1 = __webpack_require__(/*! @aws-crypto/ie11-detection */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/ie11-detection/build/index.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n if ((0, supports_web_crypto_1.supportsWebCrypto)((0, util_locate_window_1.locateWindow)())) {\n this.hash = new webCryptoSha256_1.Sha256(secret);\n }\n else if ((0, ie11_detection_1.isMsWindow)((0, util_locate_window_1.locateWindow)())) {\n this.hash = new ie11Sha256_1.Sha256(secret);\n }\n else {\n this.hash = new sha256_js_1.Sha256(secret);\n }\n }\n Sha256.prototype.update = function (data, encoding) {\n this.hash.update(data, encoding);\n };\n Sha256.prototype.digest = function () {\n return this.hash.digest();\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3Jvc3NQbGF0Zm9ybVNoYTI1Ni5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9jcm9zc1BsYXRmb3JtU2hhMjU2LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDJDQUFvRDtBQUNwRCxxREFBOEQ7QUFDOUQsbURBQTJEO0FBRTNELHVFQUFvRTtBQUNwRSw2REFBd0Q7QUFDeEQsa0VBQTJEO0FBRTNEO0lBR0UsZ0JBQVksTUFBbUI7UUFDN0IsSUFBSSxJQUFBLHVDQUFpQixFQUFDLElBQUEsaUNBQVksR0FBRSxDQUFDLEVBQUU7WUFDckMsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLHdCQUFlLENBQUMsTUFBTSxDQUFDLENBQUM7U0FDekM7YUFBTSxJQUFJLElBQUEsMkJBQVUsRUFBQyxJQUFBLGlDQUFZLEdBQUUsQ0FBQyxFQUFFO1lBQ3JDLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxtQkFBVSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1NBQ3BDO2FBQU07WUFDTCxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksa0JBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQztTQUNsQztJQUNILENBQUM7SUFFRCx1QkFBTSxHQUFOLFVBQU8sSUFBZ0IsRUFBRSxRQUFzQztRQUM3RCxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsUUFBUSxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVELHVCQUFNLEdBQU47UUFDRSxPQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDNUIsQ0FBQztJQUNILGFBQUM7QUFBRCxDQUFDLEFBcEJELElBb0JDO0FBcEJZLHdCQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2hhMjU2IGFzIEllMTFTaGEyNTYgfSBmcm9tIFwiLi9pZTExU2hhMjU2XCI7XG5pbXBvcnQgeyBTaGEyNTYgYXMgV2ViQ3J5cHRvU2hhMjU2IH0gZnJvbSBcIi4vd2ViQ3J5cHRvU2hhMjU2XCI7XG5pbXBvcnQgeyBTaGEyNTYgYXMgSnNTaGEyNTYgfSBmcm9tIFwiQGF3cy1jcnlwdG8vc2hhMjU2LWpzXCI7XG5pbXBvcnQgeyBIYXNoLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBzdXBwb3J0c1dlYkNyeXB0byB9IGZyb20gXCJAYXdzLWNyeXB0by9zdXBwb3J0cy13ZWItY3J5cHRvXCI7XG5pbXBvcnQgeyBpc01zV2luZG93IH0gZnJvbSBcIkBhd3MtY3J5cHRvL2llMTEtZGV0ZWN0aW9uXCI7XG5pbXBvcnQgeyBsb2NhdGVXaW5kb3cgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC1sb2NhdGUtd2luZG93XCI7XG5cbmV4cG9ydCBjbGFzcyBTaGEyNTYgaW1wbGVtZW50cyBIYXNoIHtcbiAgcHJpdmF0ZSByZWFkb25seSBoYXNoOiBIYXNoO1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc3VwcG9ydHNXZWJDcnlwdG8obG9jYXRlV2luZG93KCkpKSB7XG4gICAgICB0aGlzLmhhc2ggPSBuZXcgV2ViQ3J5cHRvU2hhMjU2KHNlY3JldCk7XG4gICAgfSBlbHNlIGlmIChpc01zV2luZG93KGxvY2F0ZVdpbmRvdygpKSkge1xuICAgICAgdGhpcy5oYXNoID0gbmV3IEllMTFTaGEyNTYoc2VjcmV0KTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5oYXNoID0gbmV3IEpzU2hhMjU2KHNlY3JldCk7XG4gICAgfVxuICB9XG5cbiAgdXBkYXRlKGRhdGE6IFNvdXJjZURhdGEsIGVuY29kaW5nPzogXCJ1dGY4XCIgfCBcImFzY2lpXCIgfCBcImxhdGluMVwiKTogdm9pZCB7XG4gICAgdGhpcy5oYXNoLnVwZGF0ZShkYXRhLCBlbmNvZGluZyk7XG4gIH1cblxuICBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMuaGFzaC5kaWdlc3QoKTtcbiAgfVxufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js ***! \*****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar isEmptyData_1 = __webpack_require__(/*! ./isEmptyData */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/constants.js\");\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n if (secret) {\n this.operation = getKeyPromise(secret).then(function (keyData) {\n return (0, util_locate_window_1.locateWindow)().msCrypto.subtle.sign(constants_1.SHA_256_HMAC_ALGO, keyData);\n });\n this.operation.catch(function () { });\n }\n else {\n this.operation = Promise.resolve((0, util_locate_window_1.locateWindow)().msCrypto.subtle.digest(\"SHA-256\"));\n }\n }\n Sha256.prototype.update = function (toHash) {\n var _this = this;\n if ((0, isEmptyData_1.isEmptyData)(toHash)) {\n return;\n }\n this.operation = this.operation.then(function (operation) {\n operation.onerror = function () {\n _this.operation = Promise.reject(new Error(\"Error encountered updating hash\"));\n };\n operation.process(toArrayBufferView(toHash));\n return operation;\n });\n this.operation.catch(function () { });\n };\n Sha256.prototype.digest = function () {\n return this.operation.then(function (operation) {\n return new Promise(function (resolve, reject) {\n operation.onerror = function () {\n reject(new Error(\"Error encountered finalizing hash\"));\n };\n operation.oncomplete = function () {\n if (operation.result) {\n resolve(new Uint8Array(operation.result));\n }\n reject(new Error(\"Error encountered finalizing hash\"));\n };\n operation.finish();\n });\n });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\nfunction getKeyPromise(secret) {\n return new Promise(function (resolve, reject) {\n var keyOperation = (0, util_locate_window_1.locateWindow)().msCrypto.subtle.importKey(\"raw\", toArrayBufferView(secret), constants_1.SHA_256_HMAC_ALGO, false, [\"sign\"]);\n keyOperation.oncomplete = function () {\n if (keyOperation.result) {\n resolve(keyOperation.result);\n }\n reject(new Error(\"ImportKey completed without importing key.\"));\n };\n keyOperation.onerror = function () {\n reject(new Error(\"ImportKey failed to import key.\"));\n };\n });\n}\nfunction toArrayBufferView(data) {\n if (typeof data === \"string\") {\n return (0, util_utf8_browser_1.fromUtf8)(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWUxMVNoYTI1Ni5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9pZTExU2hhMjU2LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDZDQUE0QztBQUM1Qyx5Q0FBZ0Q7QUFFaEQsZ0VBQXNEO0FBRXRELGtFQUEyRDtBQUUzRDtJQUdFLGdCQUFZLE1BQW1CO1FBQzdCLElBQUksTUFBTSxFQUFFO1lBQ1YsSUFBSSxDQUFDLFNBQVMsR0FBRyxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQUEsT0FBTztnQkFDakQsT0FBQyxJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksQ0FDL0MsNkJBQWlCLEVBQ2pCLE9BQU8sQ0FDUjtZQUhELENBR0MsQ0FDRixDQUFDO1lBQ0YsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsY0FBTyxDQUFDLENBQUMsQ0FBQztTQUNoQzthQUFNO1lBQ0wsSUFBSSxDQUFDLFNBQVMsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUM3QixJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FDL0QsQ0FBQztTQUNIO0lBQ0gsQ0FBQztJQUVELHVCQUFNLEdBQU4sVUFBTyxNQUFrQjtRQUF6QixpQkFnQkM7UUFmQyxJQUFJLElBQUEseUJBQVcsRUFBQyxNQUFNLENBQUMsRUFBRTtZQUN2QixPQUFPO1NBQ1I7UUFFRCxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFVBQUEsU0FBUztZQUM1QyxTQUFTLENBQUMsT0FBTyxHQUFHO2dCQUNsQixLQUFJLENBQUMsU0FBUyxHQUFHLE9BQU8sQ0FBQyxNQUFNLENBQzdCLElBQUksS0FBSyxDQUFDLGlDQUFpQyxDQUFDLENBQzdDLENBQUM7WUFDSixDQUFDLENBQUM7WUFDRixTQUFTLENBQUMsT0FBTyxDQUFDLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7WUFFN0MsT0FBTyxTQUFTLENBQUM7UUFDbkIsQ0FBQyxDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxjQUFPLENBQUMsQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFFRCx1QkFBTSxHQUFOO1FBQ0UsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FDeEIsVUFBQSxTQUFTO1lBQ1AsT0FBQSxJQUFJLE9BQU8sQ0FBQyxVQUFDLE9BQU8sRUFBRSxNQUFNO2dCQUMxQixTQUFTLENBQUMsT0FBTyxHQUFHO29CQUNsQixNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsbUNBQW1DLENBQUMsQ0FBQyxDQUFDO2dCQUN6RCxDQUFDLENBQUM7Z0JBQ0YsU0FBUyxDQUFDLFVBQVUsR0FBRztvQkFDckIsSUFBSSxTQUFTLENBQUMsTUFBTSxFQUFFO3dCQUNwQixPQUFPLENBQUMsSUFBSSxVQUFVLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7cUJBQzNDO29CQUNELE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxtQ0FBbUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ3pELENBQUMsQ0FBQztnQkFFRixTQUFTLENBQUMsTUFBTSxFQUFFLENBQUM7WUFDckIsQ0FBQyxDQUFDO1FBWkYsQ0FZRSxDQUNMLENBQUM7SUFDSixDQUFDO0lBQ0gsYUFBQztBQUFELENBQUMsQUF2REQsSUF1REM7QUF2RFksd0JBQU07QUF5RG5CLFNBQVMsYUFBYSxDQUFDLE1BQWtCO0lBQ3ZDLE9BQU8sSUFBSSxPQUFPLENBQUMsVUFBQyxPQUFPLEVBQUUsTUFBTTtRQUNqQyxJQUFNLFlBQVksR0FBSSxJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FDekUsS0FBSyxFQUNMLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxFQUN6Qiw2QkFBaUIsRUFDakIsS0FBSyxFQUNMLENBQUMsTUFBTSxDQUFDLENBQ1QsQ0FBQztRQUVGLFlBQVksQ0FBQyxVQUFVLEdBQUc7WUFDeEIsSUFBSSxZQUFZLENBQUMsTUFBTSxFQUFFO2dCQUN2QixPQUFPLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQyxDQUFDO2FBQzlCO1lBRUQsTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLDRDQUE0QyxDQUFDLENBQUMsQ0FBQztRQUNsRSxDQUFDLENBQUM7UUFDRixZQUFZLENBQUMsT0FBTyxHQUFHO1lBQ3JCLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxpQ0FBaUMsQ0FBQyxDQUFDLENBQUM7UUFDdkQsQ0FBQyxDQUFDO0lBQ0osQ0FBQyxDQUFDLENBQUM7QUFDTCxDQUFDO0FBRUQsU0FBUyxpQkFBaUIsQ0FBQyxJQUFnQjtJQUN6QyxJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVEsRUFBRTtRQUM1QixPQUFPLElBQUEsNEJBQVEsRUFBQyxJQUFJLENBQUMsQ0FBQztLQUN2QjtJQUVELElBQUksV0FBVyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsRUFBRTtRQUM1QixPQUFPLElBQUksVUFBVSxDQUNuQixJQUFJLENBQUMsTUFBTSxFQUNYLElBQUksQ0FBQyxVQUFVLEVBQ2YsSUFBSSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUMsaUJBQWlCLENBQy9DLENBQUM7S0FDSDtJQUVELE9BQU8sSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUM7QUFDOUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGlzRW1wdHlEYXRhIH0gZnJvbSBcIi4vaXNFbXB0eURhdGFcIjtcbmltcG9ydCB7IFNIQV8yNTZfSE1BQ19BTEdPIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5pbXBvcnQgeyBIYXNoLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBmcm9tVXRmOCB9IGZyb20gXCJAYXdzLXNkay91dGlsLXV0ZjgtYnJvd3NlclwiO1xuaW1wb3J0IHsgQ3J5cHRvT3BlcmF0aW9uLCBLZXksIE1zV2luZG93IH0gZnJvbSBcIkBhd3MtY3J5cHRvL2llMTEtZGV0ZWN0aW9uXCI7XG5pbXBvcnQgeyBsb2NhdGVXaW5kb3cgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC1sb2NhdGUtd2luZG93XCI7XG5cbmV4cG9ydCBjbGFzcyBTaGEyNTYgaW1wbGVtZW50cyBIYXNoIHtcbiAgcHJpdmF0ZSBvcGVyYXRpb246IFByb21pc2U8Q3J5cHRvT3BlcmF0aW9uPjtcblxuICBjb25zdHJ1Y3RvcihzZWNyZXQ/OiBTb3VyY2VEYXRhKSB7XG4gICAgaWYgKHNlY3JldCkge1xuICAgICAgdGhpcy5vcGVyYXRpb24gPSBnZXRLZXlQcm9taXNlKHNlY3JldCkudGhlbihrZXlEYXRhID0+XG4gICAgICAgIChsb2NhdGVXaW5kb3coKSBhcyBNc1dpbmRvdykubXNDcnlwdG8uc3VidGxlLnNpZ24oXG4gICAgICAgICAgU0hBXzI1Nl9ITUFDX0FMR08sXG4gICAgICAgICAga2V5RGF0YVxuICAgICAgICApXG4gICAgICApO1xuICAgICAgdGhpcy5vcGVyYXRpb24uY2F0Y2goKCkgPT4ge30pO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLm9wZXJhdGlvbiA9IFByb21pc2UucmVzb2x2ZShcbiAgICAgICAgKGxvY2F0ZVdpbmRvdygpIGFzIE1zV2luZG93KS5tc0NyeXB0by5zdWJ0bGUuZGlnZXN0KFwiU0hBLTI1NlwiKVxuICAgICAgKTtcbiAgICB9XG4gIH1cblxuICB1cGRhdGUodG9IYXNoOiBTb3VyY2VEYXRhKTogdm9pZCB7XG4gICAgaWYgKGlzRW1wdHlEYXRhKHRvSGFzaCkpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICB0aGlzLm9wZXJhdGlvbiA9IHRoaXMub3BlcmF0aW9uLnRoZW4ob3BlcmF0aW9uID0+IHtcbiAgICAgIG9wZXJhdGlvbi5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICB0aGlzLm9wZXJhdGlvbiA9IFByb21pc2UucmVqZWN0KFxuICAgICAgICAgIG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIHVwZGF0aW5nIGhhc2hcIilcbiAgICAgICAgKTtcbiAgICAgIH07XG4gICAgICBvcGVyYXRpb24ucHJvY2Vzcyh0b0FycmF5QnVmZmVyVmlldyh0b0hhc2gpKTtcblxuICAgICAgcmV0dXJuIG9wZXJhdGlvbjtcbiAgICB9KTtcbiAgICB0aGlzLm9wZXJhdGlvbi5jYXRjaCgoKSA9PiB7fSk7XG4gIH1cblxuICBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMub3BlcmF0aW9uLnRoZW48VWludDhBcnJheT4oXG4gICAgICBvcGVyYXRpb24gPT5cbiAgICAgICAgbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICAgIG9wZXJhdGlvbi5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIGZpbmFsaXppbmcgaGFzaFwiKSk7XG4gICAgICAgICAgfTtcbiAgICAgICAgICBvcGVyYXRpb24ub25jb21wbGV0ZSA9ICgpID0+IHtcbiAgICAgICAgICAgIGlmIChvcGVyYXRpb24ucmVzdWx0KSB7XG4gICAgICAgICAgICAgIHJlc29sdmUobmV3IFVpbnQ4QXJyYXkob3BlcmF0aW9uLnJlc3VsdCkpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIGZpbmFsaXppbmcgaGFzaFwiKSk7XG4gICAgICAgICAgfTtcblxuICAgICAgICAgIG9wZXJhdGlvbi5maW5pc2goKTtcbiAgICAgICAgfSlcbiAgICApO1xuICB9XG59XG5cbmZ1bmN0aW9uIGdldEtleVByb21pc2Uoc2VjcmV0OiBTb3VyY2VEYXRhKTogUHJvbWlzZTxLZXk+IHtcbiAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlLCByZWplY3QpID0+IHtcbiAgICBjb25zdCBrZXlPcGVyYXRpb24gPSAobG9jYXRlV2luZG93KCkgYXMgTXNXaW5kb3cpLm1zQ3J5cHRvLnN1YnRsZS5pbXBvcnRLZXkoXG4gICAgICBcInJhd1wiLFxuICAgICAgdG9BcnJheUJ1ZmZlclZpZXcoc2VjcmV0KSxcbiAgICAgIFNIQV8yNTZfSE1BQ19BTEdPLFxuICAgICAgZmFsc2UsXG4gICAgICBbXCJzaWduXCJdXG4gICAgKTtcblxuICAgIGtleU9wZXJhdGlvbi5vbmNvbXBsZXRlID0gKCkgPT4ge1xuICAgICAgaWYgKGtleU9wZXJhdGlvbi5yZXN1bHQpIHtcbiAgICAgICAgcmVzb2x2ZShrZXlPcGVyYXRpb24ucmVzdWx0KTtcbiAgICAgIH1cblxuICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkltcG9ydEtleSBjb21wbGV0ZWQgd2l0aG91dCBpbXBvcnRpbmcga2V5LlwiKSk7XG4gICAgfTtcbiAgICBrZXlPcGVyYXRpb24ub25lcnJvciA9ICgpID0+IHtcbiAgICAgIHJlamVjdChuZXcgRXJyb3IoXCJJbXBvcnRLZXkgZmFpbGVkIHRvIGltcG9ydCBrZXkuXCIpKTtcbiAgICB9O1xuICB9KTtcbn1cblxuZnVuY3Rpb24gdG9BcnJheUJ1ZmZlclZpZXcoZGF0YTogU291cmNlRGF0YSk6IFVpbnQ4QXJyYXkge1xuICBpZiAodHlwZW9mIGRhdGEgPT09IFwic3RyaW5nXCIpIHtcbiAgICByZXR1cm4gZnJvbVV0ZjgoZGF0YSk7XG4gIH1cblxuICBpZiAoQXJyYXlCdWZmZXIuaXNWaWV3KGRhdGEpKSB7XG4gICAgcmV0dXJuIG5ldyBVaW50OEFycmF5KFxuICAgICAgZGF0YS5idWZmZXIsXG4gICAgICBkYXRhLmJ5dGVPZmZzZXQsXG4gICAgICBkYXRhLmJ5dGVMZW5ndGggLyBVaW50OEFycmF5LkJZVEVTX1BFUl9FTEVNRU5UXG4gICAgKTtcbiAgfVxuXG4gIHJldHVybiBuZXcgVWludDhBcnJheShkYXRhKTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/index.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/index.js ***! \************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.WebCryptoSha256 = exports.Ie11Sha256 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js\");\n(0, tslib_1.__exportStar)(__webpack_require__(/*! ./crossPlatformSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js\"), exports);\nvar ie11Sha256_1 = __webpack_require__(/*! ./ie11Sha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js\");\nObject.defineProperty(exports, \"Ie11Sha256\", { enumerable: true, get: function () { return ie11Sha256_1.Sha256; } });\nvar webCryptoSha256_1 = __webpack_require__(/*! ./webCryptoSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js\");\nObject.defineProperty(exports, \"WebCryptoSha256\", { enumerable: true, get: function () { return webCryptoSha256_1.Sha256; } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHFFQUFzQztBQUN0QywyQ0FBb0Q7QUFBM0Msd0dBQUEsTUFBTSxPQUFjO0FBQzdCLHFEQUE4RDtBQUFyRCxrSEFBQSxNQUFNLE9BQW1CIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vY3Jvc3NQbGF0Zm9ybVNoYTI1NlwiO1xuZXhwb3J0IHsgU2hhMjU2IGFzIEllMTFTaGEyNTYgfSBmcm9tIFwiLi9pZTExU2hhMjU2XCI7XG5leHBvcnQgeyBTaGEyNTYgYXMgV2ViQ3J5cHRvU2hhMjU2IH0gZnJvbSBcIi4vd2ViQ3J5cHRvU2hhMjU2XCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js ***! \******************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isEmptyData = void 0;\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nexports.isEmptyData = isEmptyData;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNFbXB0eURhdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaXNFbXB0eURhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUEsU0FBZ0IsV0FBVyxDQUFDLElBQWdCO0lBQzFDLElBQUksT0FBTyxJQUFJLEtBQUssUUFBUSxFQUFFO1FBQzVCLE9BQU8sSUFBSSxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUM7S0FDMUI7SUFFRCxPQUFPLElBQUksQ0FBQyxVQUFVLEtBQUssQ0FBQyxDQUFDO0FBQy9CLENBQUM7QUFORCxrQ0FNQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGZ1bmN0aW9uIGlzRW1wdHlEYXRhKGRhdGE6IFNvdXJjZURhdGEpOiBib29sZWFuIHtcbiAgaWYgKHR5cGVvZiBkYXRhID09PSBcInN0cmluZ1wiKSB7XG4gICAgcmV0dXJuIGRhdGEubGVuZ3RoID09PSAwO1xuICB9XG5cbiAgcmV0dXJuIGRhdGEuYnl0ZUxlbmd0aCA9PT0gMDtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js ***! \**********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/index.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/constants.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n this.toHash = new Uint8Array(0);\n if (secret !== void 0) {\n this.key = new Promise(function (resolve, reject) {\n (0, util_locate_window_1.locateWindow)()\n .crypto.subtle.importKey(\"raw\", (0, util_1.convertToBuffer)(secret), constants_1.SHA_256_HMAC_ALGO, false, [\"sign\"])\n .then(resolve, reject);\n });\n this.key.catch(function () { });\n }\n }\n Sha256.prototype.update = function (data) {\n if ((0, util_1.isEmptyData)(data)) {\n return;\n }\n var update = (0, util_1.convertToBuffer)(data);\n var typedArray = new Uint8Array(this.toHash.byteLength + update.byteLength);\n typedArray.set(this.toHash, 0);\n typedArray.set(update, this.toHash.byteLength);\n this.toHash = typedArray;\n };\n Sha256.prototype.digest = function () {\n var _this = this;\n if (this.key) {\n return this.key.then(function (key) {\n return (0, util_locate_window_1.locateWindow)()\n .crypto.subtle.sign(constants_1.SHA_256_HMAC_ALGO, key, _this.toHash)\n .then(function (data) { return new Uint8Array(data); });\n });\n }\n if ((0, util_1.isEmptyData)(this.toHash)) {\n return Promise.resolve(constants_1.EMPTY_DATA_SHA_256);\n }\n return Promise.resolve()\n .then(function () {\n return (0, util_locate_window_1.locateWindow)().crypto.subtle.digest(constants_1.SHA_256_HASH, _this.toHash);\n })\n .then(function (data) { return Promise.resolve(new Uint8Array(data)); });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2ViQ3J5cHRvU2hhMjU2LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3dlYkNyeXB0b1NoYTI1Ni50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFDQSx5Q0FBZ0U7QUFDaEUseUNBSXFCO0FBQ3JCLGtFQUEyRDtBQUUzRDtJQUlFLGdCQUFZLE1BQW1CO1FBRnZCLFdBQU0sR0FBZSxJQUFJLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUc3QyxJQUFJLE1BQU0sS0FBSyxLQUFLLENBQUMsRUFBRTtZQUNyQixJQUFJLENBQUMsR0FBRyxHQUFHLElBQUksT0FBTyxDQUFDLFVBQUMsT0FBTyxFQUFFLE1BQU07Z0JBQ3JDLElBQUEsaUNBQVksR0FBRTtxQkFDWCxNQUFNLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FDdEIsS0FBSyxFQUNMLElBQUEsc0JBQWUsRUFBQyxNQUFNLENBQUMsRUFDdkIsNkJBQWlCLEVBQ2pCLEtBQUssRUFDTCxDQUFDLE1BQU0sQ0FBQyxDQUNUO3FCQUNBLElBQUksQ0FBQyxPQUFPLEVBQUUsTUFBTSxDQUFDLENBQUM7WUFDM0IsQ0FBQyxDQUFDLENBQUM7WUFDSCxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxjQUFPLENBQUMsQ0FBQyxDQUFDO1NBQzFCO0lBQ0gsQ0FBQztJQUVELHVCQUFNLEdBQU4sVUFBTyxJQUFnQjtRQUNyQixJQUFJLElBQUEsa0JBQVcsRUFBQyxJQUFJLENBQUMsRUFBRTtZQUNyQixPQUFPO1NBQ1I7UUFFRCxJQUFNLE1BQU0sR0FBRyxJQUFBLHNCQUFlLEVBQUMsSUFBSSxDQUFDLENBQUM7UUFDckMsSUFBTSxVQUFVLEdBQUcsSUFBSSxVQUFVLENBQy9CLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQzNDLENBQUM7UUFDRixVQUFVLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDL0IsVUFBVSxDQUFDLEdBQUcsQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUMvQyxJQUFJLENBQUMsTUFBTSxHQUFHLFVBQVUsQ0FBQztJQUMzQixDQUFDO0lBRUQsdUJBQU0sR0FBTjtRQUFBLGlCQWtCQztRQWpCQyxJQUFJLElBQUksQ0FBQyxHQUFHLEVBQUU7WUFDWixPQUFPLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFVBQUMsR0FBRztnQkFDdkIsT0FBQSxJQUFBLGlDQUFZLEdBQUU7cUJBQ1gsTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsNkJBQWlCLEVBQUUsR0FBRyxFQUFFLEtBQUksQ0FBQyxNQUFNLENBQUM7cUJBQ3ZELElBQUksQ0FBQyxVQUFDLElBQUksSUFBSyxPQUFBLElBQUksVUFBVSxDQUFDLElBQUksQ0FBQyxFQUFwQixDQUFvQixDQUFDO1lBRnZDLENBRXVDLENBQ3hDLENBQUM7U0FDSDtRQUVELElBQUksSUFBQSxrQkFBVyxFQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBRTtZQUM1QixPQUFPLE9BQU8sQ0FBQyxPQUFPLENBQUMsOEJBQWtCLENBQUMsQ0FBQztTQUM1QztRQUVELE9BQU8sT0FBTyxDQUFDLE9BQU8sRUFBRTthQUNyQixJQUFJLENBQUM7WUFDSixPQUFBLElBQUEsaUNBQVksR0FBRSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLHdCQUFZLEVBQUUsS0FBSSxDQUFDLE1BQU0sQ0FBQztRQUE5RCxDQUE4RCxDQUMvRDthQUNBLElBQUksQ0FBQyxVQUFDLElBQUksSUFBSyxPQUFBLE9BQU8sQ0FBQyxPQUFPLENBQUMsSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUMsRUFBckMsQ0FBcUMsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFDSCxhQUFDO0FBQUQsQ0FBQyxBQXRERCxJQXNEQztBQXREWSx3QkFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEhhc2gsIFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IGlzRW1wdHlEYXRhLCBjb252ZXJ0VG9CdWZmZXIgfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuaW1wb3J0IHtcbiAgRU1QVFlfREFUQV9TSEFfMjU2LFxuICBTSEFfMjU2X0hBU0gsXG4gIFNIQV8yNTZfSE1BQ19BTEdPLFxufSBmcm9tIFwiLi9jb25zdGFudHNcIjtcbmltcG9ydCB7IGxvY2F0ZVdpbmRvdyB9IGZyb20gXCJAYXdzLXNkay91dGlsLWxvY2F0ZS13aW5kb3dcIjtcblxuZXhwb3J0IGNsYXNzIFNoYTI1NiBpbXBsZW1lbnRzIEhhc2gge1xuICBwcml2YXRlIHJlYWRvbmx5IGtleTogUHJvbWlzZTxDcnlwdG9LZXk+IHwgdW5kZWZpbmVkO1xuICBwcml2YXRlIHRvSGFzaDogVWludDhBcnJheSA9IG5ldyBVaW50OEFycmF5KDApO1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc2VjcmV0ICE9PSB2b2lkIDApIHtcbiAgICAgIHRoaXMua2V5ID0gbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICBsb2NhdGVXaW5kb3coKVxuICAgICAgICAgIC5jcnlwdG8uc3VidGxlLmltcG9ydEtleShcbiAgICAgICAgICAgIFwicmF3XCIsXG4gICAgICAgICAgICBjb252ZXJ0VG9CdWZmZXIoc2VjcmV0KSxcbiAgICAgICAgICAgIFNIQV8yNTZfSE1BQ19BTEdPLFxuICAgICAgICAgICAgZmFsc2UsXG4gICAgICAgICAgICBbXCJzaWduXCJdXG4gICAgICAgICAgKVxuICAgICAgICAgIC50aGVuKHJlc29sdmUsIHJlamVjdCk7XG4gICAgICB9KTtcbiAgICAgIHRoaXMua2V5LmNhdGNoKCgpID0+IHt9KTtcbiAgICB9XG4gIH1cblxuICB1cGRhdGUoZGF0YTogU291cmNlRGF0YSk6IHZvaWQge1xuICAgIGlmIChpc0VtcHR5RGF0YShkYXRhKSkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGNvbnN0IHVwZGF0ZSA9IGNvbnZlcnRUb0J1ZmZlcihkYXRhKTtcbiAgICBjb25zdCB0eXBlZEFycmF5ID0gbmV3IFVpbnQ4QXJyYXkoXG4gICAgICB0aGlzLnRvSGFzaC5ieXRlTGVuZ3RoICsgdXBkYXRlLmJ5dGVMZW5ndGhcbiAgICApO1xuICAgIHR5cGVkQXJyYXkuc2V0KHRoaXMudG9IYXNoLCAwKTtcbiAgICB0eXBlZEFycmF5LnNldCh1cGRhdGUsIHRoaXMudG9IYXNoLmJ5dGVMZW5ndGgpO1xuICAgIHRoaXMudG9IYXNoID0gdHlwZWRBcnJheTtcbiAgfVxuXG4gIGRpZ2VzdCgpOiBQcm9taXNlPFVpbnQ4QXJyYXk+IHtcbiAgICBpZiAodGhpcy5rZXkpIHtcbiAgICAgIHJldHVybiB0aGlzLmtleS50aGVuKChrZXkpID0+XG4gICAgICAgIGxvY2F0ZVdpbmRvdygpXG4gICAgICAgICAgLmNyeXB0by5zdWJ0bGUuc2lnbihTSEFfMjU2X0hNQUNfQUxHTywga2V5LCB0aGlzLnRvSGFzaClcbiAgICAgICAgICAudGhlbigoZGF0YSkgPT4gbmV3IFVpbnQ4QXJyYXkoZGF0YSkpXG4gICAgICApO1xuICAgIH1cblxuICAgIGlmIChpc0VtcHR5RGF0YSh0aGlzLnRvSGFzaCkpIHtcbiAgICAgIHJldHVybiBQcm9taXNlLnJlc29sdmUoRU1QVFlfREFUQV9TSEFfMjU2KTtcbiAgICB9XG5cbiAgICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKClcbiAgICAgIC50aGVuKCgpID0+XG4gICAgICAgIGxvY2F0ZVdpbmRvdygpLmNyeXB0by5zdWJ0bGUuZGlnZXN0KFNIQV8yNTZfSEFTSCwgdGhpcy50b0hhc2gpXG4gICAgICApXG4gICAgICAudGhlbigoZGF0YSkgPT4gUHJvbWlzZS5yZXNvbHZlKG5ldyBVaW50OEFycmF5KGRhdGEpKSk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js ***! \*****************************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/RawSha256.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/RawSha256.js ***! \***********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.RawSha256 = void 0;\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/constants.js\");\n/**\n * @internal\n */\nvar RawSha256 = /** @class */ (function () {\n function RawSha256() {\n this.state = Int32Array.from(constants_1.INIT);\n this.temp = new Int32Array(64);\n this.buffer = new Uint8Array(64);\n this.bufferLength = 0;\n this.bytesHashed = 0;\n /**\n * @internal\n */\n this.finished = false;\n }\n RawSha256.prototype.update = function (data) {\n if (this.finished) {\n throw new Error(\"Attempted to update an already finished hash.\");\n }\n var position = 0;\n var byteLength = data.byteLength;\n this.bytesHashed += byteLength;\n if (this.bytesHashed * 8 > constants_1.MAX_HASHABLE_LENGTH) {\n throw new Error(\"Cannot hash more than 2^53 - 1 bits\");\n }\n while (byteLength > 0) {\n this.buffer[this.bufferLength++] = data[position++];\n byteLength--;\n if (this.bufferLength === constants_1.BLOCK_SIZE) {\n this.hashBuffer();\n this.bufferLength = 0;\n }\n }\n };\n RawSha256.prototype.digest = function () {\n if (!this.finished) {\n var bitsHashed = this.bytesHashed * 8;\n var bufferView = new DataView(this.buffer.buffer, this.buffer.byteOffset, this.buffer.byteLength);\n var undecoratedLength = this.bufferLength;\n bufferView.setUint8(this.bufferLength++, 0x80);\n // Ensure the final block has enough room for the hashed length\n if (undecoratedLength % constants_1.BLOCK_SIZE >= constants_1.BLOCK_SIZE - 8) {\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE; i++) {\n bufferView.setUint8(i, 0);\n }\n this.hashBuffer();\n this.bufferLength = 0;\n }\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE - 8; i++) {\n bufferView.setUint8(i, 0);\n }\n bufferView.setUint32(constants_1.BLOCK_SIZE - 8, Math.floor(bitsHashed / 0x100000000), true);\n bufferView.setUint32(constants_1.BLOCK_SIZE - 4, bitsHashed);\n this.hashBuffer();\n this.finished = true;\n }\n // The value in state is little-endian rather than big-endian, so flip\n // each word into a new Uint8Array\n var out = new Uint8Array(constants_1.DIGEST_LENGTH);\n for (var i = 0; i < 8; i++) {\n out[i * 4] = (this.state[i] >>> 24) & 0xff;\n out[i * 4 + 1] = (this.state[i] >>> 16) & 0xff;\n out[i * 4 + 2] = (this.state[i] >>> 8) & 0xff;\n out[i * 4 + 3] = (this.state[i] >>> 0) & 0xff;\n }\n return out;\n };\n RawSha256.prototype.hashBuffer = function () {\n var _a = this, buffer = _a.buffer, state = _a.state;\n var state0 = state[0], state1 = state[1], state2 = state[2], state3 = state[3], state4 = state[4], state5 = state[5], state6 = state[6], state7 = state[7];\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n if (i < 16) {\n this.temp[i] =\n ((buffer[i * 4] & 0xff) << 24) |\n ((buffer[i * 4 + 1] & 0xff) << 16) |\n ((buffer[i * 4 + 2] & 0xff) << 8) |\n (buffer[i * 4 + 3] & 0xff);\n }\n else {\n var u = this.temp[i - 2];\n var t1_1 = ((u >>> 17) | (u << 15)) ^ ((u >>> 19) | (u << 13)) ^ (u >>> 10);\n u = this.temp[i - 15];\n var t2_1 = ((u >>> 7) | (u << 25)) ^ ((u >>> 18) | (u << 14)) ^ (u >>> 3);\n this.temp[i] =\n ((t1_1 + this.temp[i - 7]) | 0) + ((t2_1 + this.temp[i - 16]) | 0);\n }\n var t1 = ((((((state4 >>> 6) | (state4 << 26)) ^\n ((state4 >>> 11) | (state4 << 21)) ^\n ((state4 >>> 25) | (state4 << 7))) +\n ((state4 & state5) ^ (~state4 & state6))) |\n 0) +\n ((state7 + ((constants_1.KEY[i] + this.temp[i]) | 0)) | 0)) |\n 0;\n var t2 = ((((state0 >>> 2) | (state0 << 30)) ^\n ((state0 >>> 13) | (state0 << 19)) ^\n ((state0 >>> 22) | (state0 << 10))) +\n ((state0 & state1) ^ (state0 & state2) ^ (state1 & state2))) |\n 0;\n state7 = state6;\n state6 = state5;\n state5 = state4;\n state4 = (state3 + t1) | 0;\n state3 = state2;\n state2 = state1;\n state1 = state0;\n state0 = (t1 + t2) | 0;\n }\n state[0] += state0;\n state[1] += state1;\n state[2] += state2;\n state[3] += state3;\n state[4] += state4;\n state[5] += state5;\n state[6] += state6;\n state[7] += state7;\n };\n return RawSha256;\n}());\nexports.RawSha256 = RawSha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUmF3U2hhMjU2LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL1Jhd1NoYTI1Ni50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FNcUI7QUFFckI7O0dBRUc7QUFDSDtJQUFBO1FBQ1UsVUFBSyxHQUFlLFVBQVUsQ0FBQyxJQUFJLENBQUMsZ0JBQUksQ0FBQyxDQUFDO1FBQzFDLFNBQUksR0FBZSxJQUFJLFVBQVUsQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUN0QyxXQUFNLEdBQWUsSUFBSSxVQUFVLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDeEMsaUJBQVksR0FBVyxDQUFDLENBQUM7UUFDekIsZ0JBQVcsR0FBVyxDQUFDLENBQUM7UUFFaEM7O1dBRUc7UUFDSCxhQUFRLEdBQVksS0FBSyxDQUFDO0lBOEk1QixDQUFDO0lBNUlDLDBCQUFNLEdBQU4sVUFBTyxJQUFnQjtRQUNyQixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDakIsTUFBTSxJQUFJLEtBQUssQ0FBQywrQ0FBK0MsQ0FBQyxDQUFDO1NBQ2xFO1FBRUQsSUFBSSxRQUFRLEdBQUcsQ0FBQyxDQUFDO1FBQ1gsSUFBQSxVQUFVLEdBQUssSUFBSSxXQUFULENBQVU7UUFDMUIsSUFBSSxDQUFDLFdBQVcsSUFBSSxVQUFVLENBQUM7UUFFL0IsSUFBSSxJQUFJLENBQUMsV0FBVyxHQUFHLENBQUMsR0FBRywrQkFBbUIsRUFBRTtZQUM5QyxNQUFNLElBQUksS0FBSyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7U0FDeEQ7UUFFRCxPQUFPLFVBQVUsR0FBRyxDQUFDLEVBQUU7WUFDckIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQztZQUNwRCxVQUFVLEVBQUUsQ0FBQztZQUViLElBQUksSUFBSSxDQUFDLFlBQVksS0FBSyxzQkFBVSxFQUFFO2dCQUNwQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7Z0JBQ2xCLElBQUksQ0FBQyxZQUFZLEdBQUcsQ0FBQyxDQUFDO2FBQ3ZCO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsMEJBQU0sR0FBTjtRQUNFLElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2xCLElBQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxDQUFDO1lBQ3hDLElBQU0sVUFBVSxHQUFHLElBQUksUUFBUSxDQUM3QixJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sRUFDbEIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLEVBQ3RCLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUN2QixDQUFDO1lBRUYsSUFBTSxpQkFBaUIsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDO1lBQzVDLFVBQVUsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO1lBRS9DLCtEQUErRDtZQUMvRCxJQUFJLGlCQUFpQixHQUFHLHNCQUFVLElBQUksc0JBQVUsR0FBRyxDQUFDLEVBQUU7Z0JBQ3BELEtBQUssSUFBSSxDQUFDLEdBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDLEdBQUcsc0JBQVUsRUFBRSxDQUFDLEVBQUUsRUFBRTtvQkFDbkQsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7aUJBQzNCO2dCQUNELElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztnQkFDbEIsSUFBSSxDQUFDLFlBQVksR0FBRyxDQUFDLENBQUM7YUFDdkI7WUFFRCxLQUFLLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQyxHQUFHLHNCQUFVLEdBQUcsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUN2RCxVQUFVLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQzthQUMzQjtZQUNELFVBQVUsQ0FBQyxTQUFTLENBQ2xCLHNCQUFVLEdBQUcsQ0FBQyxFQUNkLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxHQUFHLFdBQVcsQ0FBQyxFQUNwQyxJQUFJLENBQ0wsQ0FBQztZQUNGLFVBQVUsQ0FBQyxTQUFTLENBQUMsc0JBQVUsR0FBRyxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7WUFFakQsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBRWxCLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDO1NBQ3RCO1FBRUQsc0VBQXNFO1FBQ3RFLGtDQUFrQztRQUNsQyxJQUFNLEdBQUcsR0FBRyxJQUFJLFVBQVUsQ0FBQyx5QkFBYSxDQUFDLENBQUM7UUFDMUMsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRTtZQUMxQixHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUM7WUFDM0MsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxHQUFHLElBQUksQ0FBQztZQUMvQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDO1lBQzlDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUM7U0FDL0M7UUFFRCxPQUFPLEdBQUcsQ0FBQztJQUNiLENBQUM7SUFFTyw4QkFBVSxHQUFsQjtRQUNRLElBQUEsS0FBb0IsSUFBSSxFQUF0QixNQUFNLFlBQUEsRUFBRSxLQUFLLFdBQVMsQ0FBQztRQUUvQixJQUFJLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ25CLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFFcEIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLHNCQUFVLEVBQUUsQ0FBQyxFQUFFLEVBQUU7WUFDbkMsSUFBSSxDQUFDLEdBQUcsRUFBRSxFQUFFO2dCQUNWLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDO29CQUNWLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQzt3QkFDOUIsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQzt3QkFDbEMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQzt3QkFDakMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQzthQUM5QjtpQkFBTTtnQkFDTCxJQUFJLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztnQkFDekIsSUFBTSxJQUFFLEdBQ04sQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztnQkFFbkUsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDO2dCQUN0QixJQUFNLElBQUUsR0FDTixDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO2dCQUVqRSxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztvQkFDVixDQUFDLENBQUMsSUFBRSxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUUsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO2FBQ2xFO1lBRUQsSUFBTSxFQUFFLEdBQ04sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUNuQyxDQUFDLENBQUMsTUFBTSxLQUFLLEVBQUUsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUNsQyxDQUFDLENBQUMsTUFBTSxLQUFLLEVBQUUsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ2xDLENBQUMsQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUMsQ0FBQyxDQUFDO2dCQUN6QyxDQUFDLENBQUM7Z0JBQ0YsQ0FBQyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsZUFBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO2dCQUNqRCxDQUFDLENBQUM7WUFFSixJQUFNLEVBQUUsR0FDTixDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQztnQkFDakMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQztnQkFDbEMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDO2dCQUNuQyxDQUFDLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxDQUFDLENBQUM7Z0JBQzlELENBQUMsQ0FBQztZQUVKLE1BQU0sR0FBRyxNQUFNLENBQUM7WUFDaEIsTUFBTSxHQUFHLE1BQU0sQ0FBQztZQUNoQixNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQ2hCLE1BQU0sR0FBRyxDQUFDLE1BQU0sR0FBRyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDM0IsTUFBTSxHQUFHLE1BQU0sQ0FBQztZQUNoQixNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQ2hCLE1BQU0sR0FBRyxNQUFNLENBQUM7WUFDaEIsTUFBTSxHQUFHLENBQUMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQztTQUN4QjtRQUVELEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztRQUNuQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksTUFBTSxDQUFDO1FBQ25CLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztRQUNuQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksTUFBTSxDQUFDO1FBQ25CLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBQ0gsZ0JBQUM7QUFBRCxDQUFDLEFBeEpELElBd0pDO0FBeEpZLDhCQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQkxPQ0tfU0laRSxcbiAgRElHRVNUX0xFTkdUSCxcbiAgSU5JVCxcbiAgS0VZLFxuICBNQVhfSEFTSEFCTEVfTEVOR1RIXG59IGZyb20gXCIuL2NvbnN0YW50c1wiO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY2xhc3MgUmF3U2hhMjU2IHtcbiAgcHJpdmF0ZSBzdGF0ZTogSW50MzJBcnJheSA9IEludDMyQXJyYXkuZnJvbShJTklUKTtcbiAgcHJpdmF0ZSB0ZW1wOiBJbnQzMkFycmF5ID0gbmV3IEludDMyQXJyYXkoNjQpO1xuICBwcml2YXRlIGJ1ZmZlcjogVWludDhBcnJheSA9IG5ldyBVaW50OEFycmF5KDY0KTtcbiAgcHJpdmF0ZSBidWZmZXJMZW5ndGg6IG51bWJlciA9IDA7XG4gIHByaXZhdGUgYnl0ZXNIYXNoZWQ6IG51bWJlciA9IDA7XG5cbiAgLyoqXG4gICAqIEBpbnRlcm5hbFxuICAgKi9cbiAgZmluaXNoZWQ6IGJvb2xlYW4gPSBmYWxzZTtcblxuICB1cGRhdGUoZGF0YTogVWludDhBcnJheSk6IHZvaWQge1xuICAgIGlmICh0aGlzLmZpbmlzaGVkKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXCJBdHRlbXB0ZWQgdG8gdXBkYXRlIGFuIGFscmVhZHkgZmluaXNoZWQgaGFzaC5cIik7XG4gICAgfVxuXG4gICAgbGV0IHBvc2l0aW9uID0gMDtcbiAgICBsZXQgeyBieXRlTGVuZ3RoIH0gPSBkYXRhO1xuICAgIHRoaXMuYnl0ZXNIYXNoZWQgKz0gYnl0ZUxlbmd0aDtcblxuICAgIGlmICh0aGlzLmJ5dGVzSGFzaGVkICogOCA+IE1BWF9IQVNIQUJMRV9MRU5HVEgpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIkNhbm5vdCBoYXNoIG1vcmUgdGhhbiAyXjUzIC0gMSBiaXRzXCIpO1xuICAgIH1cblxuICAgIHdoaWxlIChieXRlTGVuZ3RoID4gMCkge1xuICAgICAgdGhpcy5idWZmZXJbdGhpcy5idWZmZXJMZW5ndGgrK10gPSBkYXRhW3Bvc2l0aW9uKytdO1xuICAgICAgYnl0ZUxlbmd0aC0tO1xuXG4gICAgICBpZiAodGhpcy5idWZmZXJMZW5ndGggPT09IEJMT0NLX1NJWkUpIHtcbiAgICAgICAgdGhpcy5oYXNoQnVmZmVyKCk7XG4gICAgICAgIHRoaXMuYnVmZmVyTGVuZ3RoID0gMDtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICBkaWdlc3QoKTogVWludDhBcnJheSB7XG4gICAgaWYgKCF0aGlzLmZpbmlzaGVkKSB7XG4gICAgICBjb25zdCBiaXRzSGFzaGVkID0gdGhpcy5ieXRlc0hhc2hlZCAqIDg7XG4gICAgICBjb25zdCBidWZmZXJWaWV3ID0gbmV3IERhdGFWaWV3KFxuICAgICAgICB0aGlzLmJ1ZmZlci5idWZmZXIsXG4gICAgICAgIHRoaXMuYnVmZmVyLmJ5dGVPZmZzZXQsXG4gICAgICAgIHRoaXMuYnVmZmVyLmJ5dGVMZW5ndGhcbiAgICAgICk7XG5cbiAgICAgIGNvbnN0IHVuZGVjb3JhdGVkTGVuZ3RoID0gdGhpcy5idWZmZXJMZW5ndGg7XG4gICAgICBidWZmZXJWaWV3LnNldFVpbnQ4KHRoaXMuYnVmZmVyTGVuZ3RoKyssIDB4ODApO1xuXG4gICAgICAvLyBFbnN1cmUgdGhlIGZpbmFsIGJsb2NrIGhhcyBlbm91Z2ggcm9vbSBmb3IgdGhlIGhhc2hlZCBsZW5ndGhcbiAgICAgIGlmICh1bmRlY29yYXRlZExlbmd0aCAlIEJMT0NLX1NJWkUgPj0gQkxPQ0tfU0laRSAtIDgpIHtcbiAgICAgICAgZm9yIChsZXQgaSA9IHRoaXMuYnVmZmVyTGVuZ3RoOyBpIDwgQkxPQ0tfU0laRTsgaSsrKSB7XG4gICAgICAgICAgYnVmZmVyVmlldy5zZXRVaW50OChpLCAwKTtcbiAgICAgICAgfVxuICAgICAgICB0aGlzLmhhc2hCdWZmZXIoKTtcbiAgICAgICAgdGhpcy5idWZmZXJMZW5ndGggPSAwO1xuICAgICAgfVxuXG4gICAgICBmb3IgKGxldCBpID0gdGhpcy5idWZmZXJMZW5ndGg7IGkgPCBCTE9DS19TSVpFIC0gODsgaSsrKSB7XG4gICAgICAgIGJ1ZmZlclZpZXcuc2V0VWludDgoaSwgMCk7XG4gICAgICB9XG4gICAgICBidWZmZXJWaWV3LnNldFVpbnQzMihcbiAgICAgICAgQkxPQ0tfU0laRSAtIDgsXG4gICAgICAgIE1hdGguZmxvb3IoYml0c0hhc2hlZCAvIDB4MTAwMDAwMDAwKSxcbiAgICAgICAgdHJ1ZVxuICAgICAgKTtcbiAgICAgIGJ1ZmZlclZpZXcuc2V0VWludDMyKEJMT0NLX1NJWkUgLSA0LCBiaXRzSGFzaGVkKTtcblxuICAgICAgdGhpcy5oYXNoQnVmZmVyKCk7XG5cbiAgICAgIHRoaXMuZmluaXNoZWQgPSB0cnVlO1xuICAgIH1cblxuICAgIC8vIFRoZSB2YWx1ZSBpbiBzdGF0ZSBpcyBsaXR0bGUtZW5kaWFuIHJhdGhlciB0aGFuIGJpZy1lbmRpYW4sIHNvIGZsaXBcbiAgICAvLyBlYWNoIHdvcmQgaW50byBhIG5ldyBVaW50OEFycmF5XG4gICAgY29uc3Qgb3V0ID0gbmV3IFVpbnQ4QXJyYXkoRElHRVNUX0xFTkdUSCk7XG4gICAgZm9yIChsZXQgaSA9IDA7IGkgPCA4OyBpKyspIHtcbiAgICAgIG91dFtpICogNF0gPSAodGhpcy5zdGF0ZVtpXSA+Pj4gMjQpICYgMHhmZjtcbiAgICAgIG91dFtpICogNCArIDFdID0gKHRoaXMuc3RhdGVbaV0gPj4+IDE2KSAmIDB4ZmY7XG4gICAgICBvdXRbaSAqIDQgKyAyXSA9ICh0aGlzLnN0YXRlW2ldID4+PiA4KSAmIDB4ZmY7XG4gICAgICBvdXRbaSAqIDQgKyAzXSA9ICh0aGlzLnN0YXRlW2ldID4+PiAwKSAmIDB4ZmY7XG4gICAgfVxuXG4gICAgcmV0dXJuIG91dDtcbiAgfVxuXG4gIHByaXZhdGUgaGFzaEJ1ZmZlcigpOiB2b2lkIHtcbiAgICBjb25zdCB7IGJ1ZmZlciwgc3RhdGUgfSA9IHRoaXM7XG5cbiAgICBsZXQgc3RhdGUwID0gc3RhdGVbMF0sXG4gICAgICBzdGF0ZTEgPSBzdGF0ZVsxXSxcbiAgICAgIHN0YXRlMiA9IHN0YXRlWzJdLFxuICAgICAgc3RhdGUzID0gc3RhdGVbM10sXG4gICAgICBzdGF0ZTQgPSBzdGF0ZVs0XSxcbiAgICAgIHN0YXRlNSA9IHN0YXRlWzVdLFxuICAgICAgc3RhdGU2ID0gc3RhdGVbNl0sXG4gICAgICBzdGF0ZTcgPSBzdGF0ZVs3XTtcblxuICAgIGZvciAobGV0IGkgPSAwOyBpIDwgQkxPQ0tfU0laRTsgaSsrKSB7XG4gICAgICBpZiAoaSA8IDE2KSB7XG4gICAgICAgIHRoaXMudGVtcFtpXSA9XG4gICAgICAgICAgKChidWZmZXJbaSAqIDRdICYgMHhmZikgPDwgMjQpIHxcbiAgICAgICAgICAoKGJ1ZmZlcltpICogNCArIDFdICYgMHhmZikgPDwgMTYpIHxcbiAgICAgICAgICAoKGJ1ZmZlcltpICogNCArIDJdICYgMHhmZikgPDwgOCkgfFxuICAgICAgICAgIChidWZmZXJbaSAqIDQgKyAzXSAmIDB4ZmYpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgbGV0IHUgPSB0aGlzLnRlbXBbaSAtIDJdO1xuICAgICAgICBjb25zdCB0MSA9XG4gICAgICAgICAgKCh1ID4+PiAxNykgfCAodSA8PCAxNSkpIF4gKCh1ID4+PiAxOSkgfCAodSA8PCAxMykpIF4gKHUgPj4+IDEwKTtcblxuICAgICAgICB1ID0gdGhpcy50ZW1wW2kgLSAxNV07XG4gICAgICAgIGNvbnN0IHQyID1cbiAgICAgICAgICAoKHUgPj4+IDcpIHwgKHUgPDwgMjUpKSBeICgodSA+Pj4gMTgpIHwgKHUgPDwgMTQpKSBeICh1ID4+PiAzKTtcblxuICAgICAgICB0aGlzLnRlbXBbaV0gPVxuICAgICAgICAgICgodDEgKyB0aGlzLnRlbXBbaSAtIDddKSB8IDApICsgKCh0MiArIHRoaXMudGVtcFtpIC0gMTZdKSB8IDApO1xuICAgICAgfVxuXG4gICAgICBjb25zdCB0MSA9XG4gICAgICAgICgoKCgoKHN0YXRlNCA+Pj4gNikgfCAoc3RhdGU0IDw8IDI2KSkgXlxuICAgICAgICAgICgoc3RhdGU0ID4+PiAxMSkgfCAoc3RhdGU0IDw8IDIxKSkgXlxuICAgICAgICAgICgoc3RhdGU0ID4+PiAyNSkgfCAoc3RhdGU0IDw8IDcpKSkgK1xuICAgICAgICAgICgoc3RhdGU0ICYgc3RhdGU1KSBeICh+c3RhdGU0ICYgc3RhdGU2KSkpIHxcbiAgICAgICAgICAwKSArXG4gICAgICAgICAgKChzdGF0ZTcgKyAoKEtFWVtpXSArIHRoaXMudGVtcFtpXSkgfCAwKSkgfCAwKSkgfFxuICAgICAgICAwO1xuXG4gICAgICBjb25zdCB0MiA9XG4gICAgICAgICgoKChzdGF0ZTAgPj4+IDIpIHwgKHN0YXRlMCA8PCAzMCkpIF5cbiAgICAgICAgICAoKHN0YXRlMCA+Pj4gMTMpIHwgKHN0YXRlMCA8PCAxOSkpIF5cbiAgICAgICAgICAoKHN0YXRlMCA+Pj4gMjIpIHwgKHN0YXRlMCA8PCAxMCkpKSArXG4gICAgICAgICAgKChzdGF0ZTAgJiBzdGF0ZTEpIF4gKHN0YXRlMCAmIHN0YXRlMikgXiAoc3RhdGUxICYgc3RhdGUyKSkpIHxcbiAgICAgICAgMDtcblxuICAgICAgc3RhdGU3ID0gc3RhdGU2O1xuICAgICAgc3RhdGU2ID0gc3RhdGU1O1xuICAgICAgc3RhdGU1ID0gc3RhdGU0O1xuICAgICAgc3RhdGU0ID0gKHN0YXRlMyArIHQxKSB8IDA7XG4gICAgICBzdGF0ZTMgPSBzdGF0ZTI7XG4gICAgICBzdGF0ZTIgPSBzdGF0ZTE7XG4gICAgICBzdGF0ZTEgPSBzdGF0ZTA7XG4gICAgICBzdGF0ZTAgPSAodDEgKyB0MikgfCAwO1xuICAgIH1cblxuICAgIHN0YXRlWzBdICs9IHN0YXRlMDtcbiAgICBzdGF0ZVsxXSArPSBzdGF0ZTE7XG4gICAgc3RhdGVbMl0gKz0gc3RhdGUyO1xuICAgIHN0YXRlWzNdICs9IHN0YXRlMztcbiAgICBzdGF0ZVs0XSArPSBzdGF0ZTQ7XG4gICAgc3RhdGVbNV0gKz0gc3RhdGU1O1xuICAgIHN0YXRlWzZdICs9IHN0YXRlNjtcbiAgICBzdGF0ZVs3XSArPSBzdGF0ZTc7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/RawSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/constants.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/constants.js ***! \***********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.MAX_HASHABLE_LENGTH = exports.INIT = exports.KEY = exports.DIGEST_LENGTH = exports.BLOCK_SIZE = void 0;\n/**\n * @internal\n */\nexports.BLOCK_SIZE = 64;\n/**\n * @internal\n */\nexports.DIGEST_LENGTH = 32;\n/**\n * @internal\n */\nexports.KEY = new Uint32Array([\n 0x428a2f98,\n 0x71374491,\n 0xb5c0fbcf,\n 0xe9b5dba5,\n 0x3956c25b,\n 0x59f111f1,\n 0x923f82a4,\n 0xab1c5ed5,\n 0xd807aa98,\n 0x12835b01,\n 0x243185be,\n 0x550c7dc3,\n 0x72be5d74,\n 0x80deb1fe,\n 0x9bdc06a7,\n 0xc19bf174,\n 0xe49b69c1,\n 0xefbe4786,\n 0x0fc19dc6,\n 0x240ca1cc,\n 0x2de92c6f,\n 0x4a7484aa,\n 0x5cb0a9dc,\n 0x76f988da,\n 0x983e5152,\n 0xa831c66d,\n 0xb00327c8,\n 0xbf597fc7,\n 0xc6e00bf3,\n 0xd5a79147,\n 0x06ca6351,\n 0x14292967,\n 0x27b70a85,\n 0x2e1b2138,\n 0x4d2c6dfc,\n 0x53380d13,\n 0x650a7354,\n 0x766a0abb,\n 0x81c2c92e,\n 0x92722c85,\n 0xa2bfe8a1,\n 0xa81a664b,\n 0xc24b8b70,\n 0xc76c51a3,\n 0xd192e819,\n 0xd6990624,\n 0xf40e3585,\n 0x106aa070,\n 0x19a4c116,\n 0x1e376c08,\n 0x2748774c,\n 0x34b0bcb5,\n 0x391c0cb3,\n 0x4ed8aa4a,\n 0x5b9cca4f,\n 0x682e6ff3,\n 0x748f82ee,\n 0x78a5636f,\n 0x84c87814,\n 0x8cc70208,\n 0x90befffa,\n 0xa4506ceb,\n 0xbef9a3f7,\n 0xc67178f2\n]);\n/**\n * @internal\n */\nexports.INIT = [\n 0x6a09e667,\n 0xbb67ae85,\n 0x3c6ef372,\n 0xa54ff53a,\n 0x510e527f,\n 0x9b05688c,\n 0x1f83d9ab,\n 0x5be0cd19\n];\n/**\n * @internal\n */\nexports.MAX_HASHABLE_LENGTH = Math.pow(2, 53) - 1;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQTs7R0FFRztBQUNVLFFBQUEsVUFBVSxHQUFXLEVBQUUsQ0FBQztBQUVyQzs7R0FFRztBQUNVLFFBQUEsYUFBYSxHQUFXLEVBQUUsQ0FBQztBQUV4Qzs7R0FFRztBQUNVLFFBQUEsR0FBRyxHQUFHLElBQUksV0FBVyxDQUFDO0lBQ2pDLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7Q0FDWCxDQUFDLENBQUM7QUFFSDs7R0FFRztBQUNVLFFBQUEsSUFBSSxHQUFHO0lBQ2xCLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0NBQ1gsQ0FBQztBQUVGOztHQUVHO0FBQ1UsUUFBQSxtQkFBbUIsR0FBRyxTQUFBLENBQUMsRUFBSSxFQUFFLENBQUEsR0FBRyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgQkxPQ0tfU0laRTogbnVtYmVyID0gNjQ7XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCBESUdFU1RfTEVOR1RIOiBudW1iZXIgPSAzMjtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IEtFWSA9IG5ldyBVaW50MzJBcnJheShbXG4gIDB4NDI4YTJmOTgsXG4gIDB4NzEzNzQ0OTEsXG4gIDB4YjVjMGZiY2YsXG4gIDB4ZTliNWRiYTUsXG4gIDB4Mzk1NmMyNWIsXG4gIDB4NTlmMTExZjEsXG4gIDB4OTIzZjgyYTQsXG4gIDB4YWIxYzVlZDUsXG4gIDB4ZDgwN2FhOTgsXG4gIDB4MTI4MzViMDEsXG4gIDB4MjQzMTg1YmUsXG4gIDB4NTUwYzdkYzMsXG4gIDB4NzJiZTVkNzQsXG4gIDB4ODBkZWIxZmUsXG4gIDB4OWJkYzA2YTcsXG4gIDB4YzE5YmYxNzQsXG4gIDB4ZTQ5YjY5YzEsXG4gIDB4ZWZiZTQ3ODYsXG4gIDB4MGZjMTlkYzYsXG4gIDB4MjQwY2ExY2MsXG4gIDB4MmRlOTJjNmYsXG4gIDB4NGE3NDg0YWEsXG4gIDB4NWNiMGE5ZGMsXG4gIDB4NzZmOTg4ZGEsXG4gIDB4OTgzZTUxNTIsXG4gIDB4YTgzMWM2NmQsXG4gIDB4YjAwMzI3YzgsXG4gIDB4YmY1OTdmYzcsXG4gIDB4YzZlMDBiZjMsXG4gIDB4ZDVhNzkxNDcsXG4gIDB4MDZjYTYzNTEsXG4gIDB4MTQyOTI5NjcsXG4gIDB4MjdiNzBhODUsXG4gIDB4MmUxYjIxMzgsXG4gIDB4NGQyYzZkZmMsXG4gIDB4NTMzODBkMTMsXG4gIDB4NjUwYTczNTQsXG4gIDB4NzY2YTBhYmIsXG4gIDB4ODFjMmM5MmUsXG4gIDB4OTI3MjJjODUsXG4gIDB4YTJiZmU4YTEsXG4gIDB4YTgxYTY2NGIsXG4gIDB4YzI0YjhiNzAsXG4gIDB4Yzc2YzUxYTMsXG4gIDB4ZDE5MmU4MTksXG4gIDB4ZDY5OTA2MjQsXG4gIDB4ZjQwZTM1ODUsXG4gIDB4MTA2YWEwNzAsXG4gIDB4MTlhNGMxMTYsXG4gIDB4MWUzNzZjMDgsXG4gIDB4Mjc0ODc3NGMsXG4gIDB4MzRiMGJjYjUsXG4gIDB4MzkxYzBjYjMsXG4gIDB4NGVkOGFhNGEsXG4gIDB4NWI5Y2NhNGYsXG4gIDB4NjgyZTZmZjMsXG4gIDB4NzQ4ZjgyZWUsXG4gIDB4NzhhNTYzNmYsXG4gIDB4ODRjODc4MTQsXG4gIDB4OGNjNzAyMDgsXG4gIDB4OTBiZWZmZmEsXG4gIDB4YTQ1MDZjZWIsXG4gIDB4YmVmOWEzZjcsXG4gIDB4YzY3MTc4ZjJcbl0pO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgSU5JVCA9IFtcbiAgMHg2YTA5ZTY2NyxcbiAgMHhiYjY3YWU4NSxcbiAgMHgzYzZlZjM3MixcbiAgMHhhNTRmZjUzYSxcbiAgMHg1MTBlNTI3ZixcbiAgMHg5YjA1Njg4YyxcbiAgMHgxZjgzZDlhYixcbiAgMHg1YmUwY2QxOVxuXTtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IE1BWF9IQVNIQUJMRV9MRU5HVEggPSAyICoqIDUzIC0gMTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/index.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/index.js ***! \*******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js\");\n(0, tslib_1.__exportStar)(__webpack_require__(/*! ./jsSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/jsSha256.js\"), exports);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsMERBQTJCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vanNTaGEyNTZcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/jsSha256.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/jsSha256.js ***! \**********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/constants.js\");\nvar RawSha256_1 = __webpack_require__(/*! ./RawSha256 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/RawSha256.js\");\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n this.hash = new RawSha256_1.RawSha256();\n if (secret) {\n this.outer = new RawSha256_1.RawSha256();\n var inner = bufferFromSecret(secret);\n var outer = new Uint8Array(constants_1.BLOCK_SIZE);\n outer.set(inner);\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n inner[i] ^= 0x36;\n outer[i] ^= 0x5c;\n }\n this.hash.update(inner);\n this.outer.update(outer);\n // overwrite the copied key in memory\n for (var i = 0; i < inner.byteLength; i++) {\n inner[i] = 0;\n }\n }\n }\n Sha256.prototype.update = function (toHash) {\n if ((0, util_1.isEmptyData)(toHash) || this.error) {\n return;\n }\n try {\n this.hash.update((0, util_1.convertToBuffer)(toHash));\n }\n catch (e) {\n this.error = e;\n }\n };\n /* This synchronous method keeps compatibility\n * with the v2 aws-sdk.\n */\n Sha256.prototype.digestSync = function () {\n if (this.error) {\n throw this.error;\n }\n if (this.outer) {\n if (!this.outer.finished) {\n this.outer.update(this.hash.digest());\n }\n return this.outer.digest();\n }\n return this.hash.digest();\n };\n /* The underlying digest method here is synchronous.\n * To keep the same interface with the other hash functions\n * the default is to expose this as an async method.\n * However, it can sometimes be useful to have a sync method.\n */\n Sha256.prototype.digest = function () {\n return (0, tslib_1.__awaiter)(this, void 0, void 0, function () {\n return (0, tslib_1.__generator)(this, function (_a) {\n return [2 /*return*/, this.digestSync()];\n });\n });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\nfunction bufferFromSecret(secret) {\n var input = (0, util_1.convertToBuffer)(secret);\n if (input.byteLength > constants_1.BLOCK_SIZE) {\n var bufferHash = new RawSha256_1.RawSha256();\n bufferHash.update(input);\n input = bufferHash.digest();\n }\n var buffer = new Uint8Array(constants_1.BLOCK_SIZE);\n buffer.set(input);\n return buffer;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianNTaGEyNTYuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvanNTaGEyNTYudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHlDQUF5QztBQUN6Qyx5Q0FBd0M7QUFFeEMseUNBQWdFO0FBRWhFO0lBS0UsZ0JBQVksTUFBbUI7UUFKZCxTQUFJLEdBQUcsSUFBSSxxQkFBUyxFQUFFLENBQUM7UUFLdEMsSUFBSSxNQUFNLEVBQUU7WUFDVixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUkscUJBQVMsRUFBRSxDQUFDO1lBQzdCLElBQU0sS0FBSyxHQUFHLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBQ3ZDLElBQU0sS0FBSyxHQUFHLElBQUksVUFBVSxDQUFDLHNCQUFVLENBQUMsQ0FBQztZQUN6QyxLQUFLLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBRWpCLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxzQkFBVSxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUNuQyxLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDO2dCQUNqQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDO2FBQ2xCO1lBRUQsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDeEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7WUFFekIscUNBQXFDO1lBQ3JDLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxLQUFLLENBQUMsVUFBVSxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUN6QyxLQUFLLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDO2FBQ2Q7U0FDRjtJQUNILENBQUM7SUFFRCx1QkFBTSxHQUFOLFVBQU8sTUFBa0I7UUFDdkIsSUFBSSxJQUFBLGtCQUFXLEVBQUMsTUFBTSxDQUFDLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNyQyxPQUFPO1NBQ1I7UUFFRCxJQUFJO1lBQ0YsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBQSxzQkFBZSxFQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7U0FDM0M7UUFBQyxPQUFPLENBQUMsRUFBRTtZQUNWLElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO1NBQ2hCO0lBQ0gsQ0FBQztJQUVEOztPQUVHO0lBQ0gsMkJBQVUsR0FBVjtRQUNFLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNkLE1BQU0sSUFBSSxDQUFDLEtBQUssQ0FBQztTQUNsQjtRQUVELElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNkLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsRUFBRTtnQkFDeEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDO2FBQ3ZDO1lBRUQsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxDQUFDO1NBQzVCO1FBRUQsT0FBTyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDO0lBQzVCLENBQUM7SUFFRDs7OztPQUlHO0lBQ0csdUJBQU0sR0FBWjs7O2dCQUNFLHNCQUFPLElBQUksQ0FBQyxVQUFVLEVBQUUsRUFBQzs7O0tBQzFCO0lBQ0gsYUFBQztBQUFELENBQUMsQUFsRUQsSUFrRUM7QUFsRVksd0JBQU07QUFvRW5CLFNBQVMsZ0JBQWdCLENBQUMsTUFBa0I7SUFDMUMsSUFBSSxLQUFLLEdBQUcsSUFBQSxzQkFBZSxFQUFDLE1BQU0sQ0FBQyxDQUFDO0lBRXBDLElBQUksS0FBSyxDQUFDLFVBQVUsR0FBRyxzQkFBVSxFQUFFO1FBQ2pDLElBQU0sVUFBVSxHQUFHLElBQUkscUJBQVMsRUFBRSxDQUFDO1FBQ25DLFVBQVUsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDekIsS0FBSyxHQUFHLFVBQVUsQ0FBQyxNQUFNLEVBQUUsQ0FBQztLQUM3QjtJQUVELElBQU0sTUFBTSxHQUFHLElBQUksVUFBVSxDQUFDLHNCQUFVLENBQUMsQ0FBQztJQUMxQyxNQUFNLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2xCLE9BQU8sTUFBTSxDQUFDO0FBQ2hCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCTE9DS19TSVpFIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5pbXBvcnQgeyBSYXdTaGEyNTYgfSBmcm9tIFwiLi9SYXdTaGEyNTZcIjtcbmltcG9ydCB7IEhhc2gsIFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IGlzRW1wdHlEYXRhLCBjb252ZXJ0VG9CdWZmZXIgfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuXG5leHBvcnQgY2xhc3MgU2hhMjU2IGltcGxlbWVudHMgSGFzaCB7XG4gIHByaXZhdGUgcmVhZG9ubHkgaGFzaCA9IG5ldyBSYXdTaGEyNTYoKTtcbiAgcHJpdmF0ZSByZWFkb25seSBvdXRlcj86IFJhd1NoYTI1NjtcbiAgcHJpdmF0ZSBlcnJvcjogYW55O1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc2VjcmV0KSB7XG4gICAgICB0aGlzLm91dGVyID0gbmV3IFJhd1NoYTI1NigpO1xuICAgICAgY29uc3QgaW5uZXIgPSBidWZmZXJGcm9tU2VjcmV0KHNlY3JldCk7XG4gICAgICBjb25zdCBvdXRlciA9IG5ldyBVaW50OEFycmF5KEJMT0NLX1NJWkUpO1xuICAgICAgb3V0ZXIuc2V0KGlubmVyKTtcblxuICAgICAgZm9yIChsZXQgaSA9IDA7IGkgPCBCTE9DS19TSVpFOyBpKyspIHtcbiAgICAgICAgaW5uZXJbaV0gXj0gMHgzNjtcbiAgICAgICAgb3V0ZXJbaV0gXj0gMHg1YztcbiAgICAgIH1cblxuICAgICAgdGhpcy5oYXNoLnVwZGF0ZShpbm5lcik7XG4gICAgICB0aGlzLm91dGVyLnVwZGF0ZShvdXRlcik7XG5cbiAgICAgIC8vIG92ZXJ3cml0ZSB0aGUgY29waWVkIGtleSBpbiBtZW1vcnlcbiAgICAgIGZvciAobGV0IGkgPSAwOyBpIDwgaW5uZXIuYnl0ZUxlbmd0aDsgaSsrKSB7XG4gICAgICAgIGlubmVyW2ldID0gMDtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICB1cGRhdGUodG9IYXNoOiBTb3VyY2VEYXRhKTogdm9pZCB7XG4gICAgaWYgKGlzRW1wdHlEYXRhKHRvSGFzaCkgfHwgdGhpcy5lcnJvcikge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHRyeSB7XG4gICAgICB0aGlzLmhhc2gudXBkYXRlKGNvbnZlcnRUb0J1ZmZlcih0b0hhc2gpKTtcbiAgICB9IGNhdGNoIChlKSB7XG4gICAgICB0aGlzLmVycm9yID0gZTtcbiAgICB9XG4gIH1cblxuICAvKiBUaGlzIHN5bmNocm9ub3VzIG1ldGhvZCBrZWVwcyBjb21wYXRpYmlsaXR5XG4gICAqIHdpdGggdGhlIHYyIGF3cy1zZGsuXG4gICAqL1xuICBkaWdlc3RTeW5jKCk6IFVpbnQ4QXJyYXkge1xuICAgIGlmICh0aGlzLmVycm9yKSB7XG4gICAgICB0aHJvdyB0aGlzLmVycm9yO1xuICAgIH1cblxuICAgIGlmICh0aGlzLm91dGVyKSB7XG4gICAgICBpZiAoIXRoaXMub3V0ZXIuZmluaXNoZWQpIHtcbiAgICAgICAgdGhpcy5vdXRlci51cGRhdGUodGhpcy5oYXNoLmRpZ2VzdCgpKTtcbiAgICAgIH1cblxuICAgICAgcmV0dXJuIHRoaXMub3V0ZXIuZGlnZXN0KCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXMuaGFzaC5kaWdlc3QoKTtcbiAgfVxuXG4gIC8qIFRoZSB1bmRlcmx5aW5nIGRpZ2VzdCBtZXRob2QgaGVyZSBpcyBzeW5jaHJvbm91cy5cbiAgICogVG8ga2VlcCB0aGUgc2FtZSBpbnRlcmZhY2Ugd2l0aCB0aGUgb3RoZXIgaGFzaCBmdW5jdGlvbnNcbiAgICogdGhlIGRlZmF1bHQgaXMgdG8gZXhwb3NlIHRoaXMgYXMgYW4gYXN5bmMgbWV0aG9kLlxuICAgKiBIb3dldmVyLCBpdCBjYW4gc29tZXRpbWVzIGJlIHVzZWZ1bCB0byBoYXZlIGEgc3luYyBtZXRob2QuXG4gICAqL1xuICBhc3luYyBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMuZGlnZXN0U3luYygpO1xuICB9XG59XG5cbmZ1bmN0aW9uIGJ1ZmZlckZyb21TZWNyZXQoc2VjcmV0OiBTb3VyY2VEYXRhKTogVWludDhBcnJheSB7XG4gIGxldCBpbnB1dCA9IGNvbnZlcnRUb0J1ZmZlcihzZWNyZXQpO1xuXG4gIGlmIChpbnB1dC5ieXRlTGVuZ3RoID4gQkxPQ0tfU0laRSkge1xuICAgIGNvbnN0IGJ1ZmZlckhhc2ggPSBuZXcgUmF3U2hhMjU2KCk7XG4gICAgYnVmZmVySGFzaC51cGRhdGUoaW5wdXQpO1xuICAgIGlucHV0ID0gYnVmZmVySGFzaC5kaWdlc3QoKTtcbiAgfVxuXG4gIGNvbnN0IGJ1ZmZlciA9IG5ldyBVaW50OEFycmF5KEJMT0NLX1NJWkUpO1xuICBidWZmZXIuc2V0KGlucHV0KTtcbiAgcmV0dXJuIGJ1ZmZlcjtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/build/jsSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js ***! \************************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/build/index.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/build/index.js ***! \*****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js\");\ntslib_1.__exportStar(__webpack_require__(/*! ./supportsWebCrypto */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js\"), exports);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsOERBQW9DIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vc3VwcG9ydHNXZWJDcnlwdG9cIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js ***! \*****************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.supportsZeroByteGCM = exports.supportsSubtleCrypto = exports.supportsSecureRandom = exports.supportsWebCrypto = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js\");\nvar subtleCryptoMethods = [\n \"decrypt\",\n \"digest\",\n \"encrypt\",\n \"exportKey\",\n \"generateKey\",\n \"importKey\",\n \"sign\",\n \"verify\"\n];\nfunction supportsWebCrypto(window) {\n if (supportsSecureRandom(window) &&\n typeof window.crypto.subtle === \"object\") {\n var subtle = window.crypto.subtle;\n return supportsSubtleCrypto(subtle);\n }\n return false;\n}\nexports.supportsWebCrypto = supportsWebCrypto;\nfunction supportsSecureRandom(window) {\n if (typeof window === \"object\" && typeof window.crypto === \"object\") {\n var getRandomValues = window.crypto.getRandomValues;\n return typeof getRandomValues === \"function\";\n }\n return false;\n}\nexports.supportsSecureRandom = supportsSecureRandom;\nfunction supportsSubtleCrypto(subtle) {\n return (subtle &&\n subtleCryptoMethods.every(function (methodName) { return typeof subtle[methodName] === \"function\"; }));\n}\nexports.supportsSubtleCrypto = supportsSubtleCrypto;\nfunction supportsZeroByteGCM(subtle) {\n return tslib_1.__awaiter(this, void 0, void 0, function () {\n var key, zeroByteAuthTag, _a;\n return tslib_1.__generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!supportsSubtleCrypto(subtle))\n return [2 /*return*/, false];\n _b.label = 1;\n case 1:\n _b.trys.push([1, 4, , 5]);\n return [4 /*yield*/, subtle.generateKey({ name: \"AES-GCM\", length: 128 }, false, [\"encrypt\"])];\n case 2:\n key = _b.sent();\n return [4 /*yield*/, subtle.encrypt({\n name: \"AES-GCM\",\n iv: new Uint8Array(Array(12)),\n additionalData: new Uint8Array(Array(16)),\n tagLength: 128\n }, key, new Uint8Array(0))];\n case 3:\n zeroByteAuthTag = _b.sent();\n return [2 /*return*/, zeroByteAuthTag.byteLength === 16];\n case 4:\n _a = _b.sent();\n return [2 /*return*/, false];\n case 5: return [2 /*return*/];\n }\n });\n });\n}\nexports.supportsZeroByteGCM = supportsZeroByteGCM;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwcG9ydHNXZWJDcnlwdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvc3VwcG9ydHNXZWJDcnlwdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQVVBLElBQU0sbUJBQW1CLEdBQThCO0lBQ3JELFNBQVM7SUFDVCxRQUFRO0lBQ1IsU0FBUztJQUNULFdBQVc7SUFDWCxhQUFhO0lBQ2IsV0FBVztJQUNYLE1BQU07SUFDTixRQUFRO0NBQ1QsQ0FBQztBQUVGLFNBQWdCLGlCQUFpQixDQUFDLE1BQWM7SUFDOUMsSUFDRSxvQkFBb0IsQ0FBQyxNQUFNLENBQUM7UUFDNUIsT0FBTyxNQUFNLENBQUMsTUFBTSxDQUFDLE1BQU0sS0FBSyxRQUFRLEVBQ3hDO1FBQ1EsSUFBQSxNQUFNLEdBQUssTUFBTSxDQUFDLE1BQU0sT0FBbEIsQ0FBbUI7UUFFakMsT0FBTyxvQkFBb0IsQ0FBQyxNQUFNLENBQUMsQ0FBQztLQUNyQztJQUVELE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQztBQVhELDhDQVdDO0FBRUQsU0FBZ0Isb0JBQW9CLENBQUMsTUFBYztJQUNqRCxJQUFJLE9BQU8sTUFBTSxLQUFLLFFBQVEsSUFBSSxPQUFPLE1BQU0sQ0FBQyxNQUFNLEtBQUssUUFBUSxFQUFFO1FBQzNELElBQUEsZUFBZSxHQUFLLE1BQU0sQ0FBQyxNQUFNLGdCQUFsQixDQUFtQjtRQUUxQyxPQUFPLE9BQU8sZUFBZSxLQUFLLFVBQVUsQ0FBQztLQUM5QztJQUVELE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQztBQVJELG9EQVFDO0FBRUQsU0FBZ0Isb0JBQW9CLENBQUMsTUFBb0I7SUFDdkQsT0FBTyxDQUNMLE1BQU07UUFDTixtQkFBbUIsQ0FBQyxLQUFLLENBQ3ZCLFVBQUEsVUFBVSxJQUFJLE9BQUEsT0FBTyxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUssVUFBVSxFQUF4QyxDQUF3QyxDQUN2RCxDQUNGLENBQUM7QUFDSixDQUFDO0FBUEQsb0RBT0M7QUFFRCxTQUFzQixtQkFBbUIsQ0FBQyxNQUFvQjs7Ozs7O29CQUM1RCxJQUFJLENBQUMsb0JBQW9CLENBQUMsTUFBTSxDQUFDO3dCQUFFLHNCQUFPLEtBQUssRUFBQzs7OztvQkFFbEMscUJBQU0sTUFBTSxDQUFDLFdBQVcsQ0FDbEMsRUFBRSxJQUFJLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxHQUFHLEVBQUUsRUFDaEMsS0FBSyxFQUNMLENBQUMsU0FBUyxDQUFDLENBQ1osRUFBQTs7b0JBSkssR0FBRyxHQUFHLFNBSVg7b0JBQ3VCLHFCQUFNLE1BQU0sQ0FBQyxPQUFPLENBQzFDOzRCQUNFLElBQUksRUFBRSxTQUFTOzRCQUNmLEVBQUUsRUFBRSxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7NEJBQzdCLGNBQWMsRUFBRSxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7NEJBQ3pDLFNBQVMsRUFBRSxHQUFHO3lCQUNmLEVBQ0QsR0FBRyxFQUNILElBQUksVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUNsQixFQUFBOztvQkFUSyxlQUFlLEdBQUcsU0FTdkI7b0JBQ0Qsc0JBQU8sZUFBZSxDQUFDLFVBQVUsS0FBSyxFQUFFLEVBQUM7OztvQkFFekMsc0JBQU8sS0FBSyxFQUFDOzs7OztDQUVoQjtBQXRCRCxrREFzQkMiLCJzb3VyY2VzQ29udGVudCI6WyJ0eXBlIFN1YnRsZUNyeXB0b01ldGhvZCA9XG4gIHwgXCJkZWNyeXB0XCJcbiAgfCBcImRpZ2VzdFwiXG4gIHwgXCJlbmNyeXB0XCJcbiAgfCBcImV4cG9ydEtleVwiXG4gIHwgXCJnZW5lcmF0ZUtleVwiXG4gIHwgXCJpbXBvcnRLZXlcIlxuICB8IFwic2lnblwiXG4gIHwgXCJ2ZXJpZnlcIjtcblxuY29uc3Qgc3VidGxlQ3J5cHRvTWV0aG9kczogQXJyYXk8U3VidGxlQ3J5cHRvTWV0aG9kPiA9IFtcbiAgXCJkZWNyeXB0XCIsXG4gIFwiZGlnZXN0XCIsXG4gIFwiZW5jcnlwdFwiLFxuICBcImV4cG9ydEtleVwiLFxuICBcImdlbmVyYXRlS2V5XCIsXG4gIFwiaW1wb3J0S2V5XCIsXG4gIFwic2lnblwiLFxuICBcInZlcmlmeVwiXG5dO1xuXG5leHBvcnQgZnVuY3Rpb24gc3VwcG9ydHNXZWJDcnlwdG8od2luZG93OiBXaW5kb3cpOiBib29sZWFuIHtcbiAgaWYgKFxuICAgIHN1cHBvcnRzU2VjdXJlUmFuZG9tKHdpbmRvdykgJiZcbiAgICB0eXBlb2Ygd2luZG93LmNyeXB0by5zdWJ0bGUgPT09IFwib2JqZWN0XCJcbiAgKSB7XG4gICAgY29uc3QgeyBzdWJ0bGUgfSA9IHdpbmRvdy5jcnlwdG87XG5cbiAgICByZXR1cm4gc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlKTtcbiAgfVxuXG4gIHJldHVybiBmYWxzZTtcbn1cblxuZXhwb3J0IGZ1bmN0aW9uIHN1cHBvcnRzU2VjdXJlUmFuZG9tKHdpbmRvdzogV2luZG93KTogYm9vbGVhbiB7XG4gIGlmICh0eXBlb2Ygd2luZG93ID09PSBcIm9iamVjdFwiICYmIHR5cGVvZiB3aW5kb3cuY3J5cHRvID09PSBcIm9iamVjdFwiKSB7XG4gICAgY29uc3QgeyBnZXRSYW5kb21WYWx1ZXMgfSA9IHdpbmRvdy5jcnlwdG87XG5cbiAgICByZXR1cm4gdHlwZW9mIGdldFJhbmRvbVZhbHVlcyA9PT0gXCJmdW5jdGlvblwiO1xuICB9XG5cbiAgcmV0dXJuIGZhbHNlO1xufVxuXG5leHBvcnQgZnVuY3Rpb24gc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlOiBTdWJ0bGVDcnlwdG8pIHtcbiAgcmV0dXJuIChcbiAgICBzdWJ0bGUgJiZcbiAgICBzdWJ0bGVDcnlwdG9NZXRob2RzLmV2ZXJ5KFxuICAgICAgbWV0aG9kTmFtZSA9PiB0eXBlb2Ygc3VidGxlW21ldGhvZE5hbWVdID09PSBcImZ1bmN0aW9uXCJcbiAgICApXG4gICk7XG59XG5cbmV4cG9ydCBhc3luYyBmdW5jdGlvbiBzdXBwb3J0c1plcm9CeXRlR0NNKHN1YnRsZTogU3VidGxlQ3J5cHRvKSB7XG4gIGlmICghc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlKSkgcmV0dXJuIGZhbHNlO1xuICB0cnkge1xuICAgIGNvbnN0IGtleSA9IGF3YWl0IHN1YnRsZS5nZW5lcmF0ZUtleShcbiAgICAgIHsgbmFtZTogXCJBRVMtR0NNXCIsIGxlbmd0aDogMTI4IH0sXG4gICAgICBmYWxzZSxcbiAgICAgIFtcImVuY3J5cHRcIl1cbiAgICApO1xuICAgIGNvbnN0IHplcm9CeXRlQXV0aFRhZyA9IGF3YWl0IHN1YnRsZS5lbmNyeXB0KFxuICAgICAge1xuICAgICAgICBuYW1lOiBcIkFFUy1HQ01cIixcbiAgICAgICAgaXY6IG5ldyBVaW50OEFycmF5KEFycmF5KDEyKSksXG4gICAgICAgIGFkZGl0aW9uYWxEYXRhOiBuZXcgVWludDhBcnJheShBcnJheSgxNikpLFxuICAgICAgICB0YWdMZW5ndGg6IDEyOFxuICAgICAgfSxcbiAgICAgIGtleSxcbiAgICAgIG5ldyBVaW50OEFycmF5KDApXG4gICAgKTtcbiAgICByZXR1cm4gemVyb0J5dGVBdXRoVGFnLmJ5dGVMZW5ndGggPT09IDE2O1xuICB9IGNhdGNoIHtcbiAgICByZXR1cm4gZmFsc2U7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js ***! \**********************************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/convertToBuffer.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/convertToBuffer.js ***! \************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/* WEBPACK VAR INJECTION */(function(Buffer) {\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.convertToBuffer = void 0;\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js\");\n// Quick polyfill\nvar fromUtf8 = typeof Buffer !== \"undefined\" && Buffer.from\n ? function (input) { return Buffer.from(input, \"utf8\"); }\n : util_utf8_browser_1.fromUtf8;\nfunction convertToBuffer(data) {\n // Already a Uint8, do nothing\n if (data instanceof Uint8Array)\n return data;\n if (typeof data === \"string\") {\n return fromUtf8(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\nexports.convertToBuffer = convertToBuffer;\n//# sourceMappingURL=convertToBuffer.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/convertToBuffer.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/index.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/index.js ***! \**************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = exports.numToUint8 = exports.isEmptyData = exports.convertToBuffer = void 0;\nvar convertToBuffer_1 = __webpack_require__(/*! ./convertToBuffer */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/convertToBuffer.js\");\nObject.defineProperty(exports, \"convertToBuffer\", { enumerable: true, get: function () { return convertToBuffer_1.convertToBuffer; } });\nvar isEmptyData_1 = __webpack_require__(/*! ./isEmptyData */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/isEmptyData.js\");\nObject.defineProperty(exports, \"isEmptyData\", { enumerable: true, get: function () { return isEmptyData_1.isEmptyData; } });\nvar numToUint8_1 = __webpack_require__(/*! ./numToUint8 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/numToUint8.js\");\nObject.defineProperty(exports, \"numToUint8\", { enumerable: true, get: function () { return numToUint8_1.numToUint8; } });\nvar uint32ArrayFrom_1 = __webpack_require__(/*! ./uint32ArrayFrom */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js\");\nObject.defineProperty(exports, \"uint32ArrayFrom\", { enumerable: true, get: function () { return uint32ArrayFrom_1.uint32ArrayFrom; } });\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/isEmptyData.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/isEmptyData.js ***! \********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isEmptyData = void 0;\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nexports.isEmptyData = isEmptyData;\n//# sourceMappingURL=isEmptyData.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/isEmptyData.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/numToUint8.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/numToUint8.js ***! \*******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.numToUint8 = void 0;\nfunction numToUint8(num) {\n return new Uint8Array([\n (num & 0xff000000) >> 24,\n (num & 0x00ff0000) >> 16,\n (num & 0x0000ff00) >> 8,\n num & 0x000000ff,\n ]);\n}\nexports.numToUint8 = numToUint8;\n//# sourceMappingURL=numToUint8.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/numToUint8.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js ***! \************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = void 0;\n// IE 11 does not support Array.from, so we do it manually\nfunction uint32ArrayFrom(a_lookUpTable) {\n if (!Uint32Array.from) {\n var return_array = new Uint32Array(a_lookUpTable.length);\n var a_index = 0;\n while (a_index < a_lookUpTable.length) {\n return_array[a_index] = a_lookUpTable[a_index];\n a_index += 1;\n }\n return return_array;\n }\n return Uint32Array.from(a_lookUpTable);\n}\nexports.uint32ArrayFrom = uint32ArrayFrom;\n//# sourceMappingURL=uint32ArrayFrom.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js": /*!************************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js ***! \************************************************************************************************************************************************************/ /*! exports provided: ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_DUALSTACK_ENDPOINT\", function() { return ENV_USE_DUALSTACK_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_DUALSTACK_ENDPOINT\", function() { return CONFIG_USE_DUALSTACK_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_DUALSTACK_ENDPOINT\", function() { return DEFAULT_USE_DUALSTACK_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\", function() { return NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS; });\n/* harmony import */ var _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/util-config-provider */ \"./node_modules/@aws-sdk/util-config-provider/dist-es/index.js\");\n\nvar ENV_USE_DUALSTACK_ENDPOINT = \"AWS_USE_DUALSTACK_ENDPOINT\";\nvar CONFIG_USE_DUALSTACK_ENDPOINT = \"use_dualstack_endpoint\";\nvar DEFAULT_USE_DUALSTACK_ENDPOINT = false;\nvar NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(env, ENV_USE_DUALSTACK_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].ENV);\n },\n configFileSelector: function (profile) { return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(profile, CONFIG_USE_DUALSTACK_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].CONFIG); },\n default: false,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js": /*!*******************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js ***! \*******************************************************************************************************************************************************/ /*! exports provided: ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_FIPS_ENDPOINT\", function() { return ENV_USE_FIPS_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_FIPS_ENDPOINT\", function() { return CONFIG_USE_FIPS_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_FIPS_ENDPOINT\", function() { return DEFAULT_USE_FIPS_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\", function() { return NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS; });\n/* harmony import */ var _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/util-config-provider */ \"./node_modules/@aws-sdk/util-config-provider/dist-es/index.js\");\n\nvar ENV_USE_FIPS_ENDPOINT = \"AWS_USE_FIPS_ENDPOINT\";\nvar CONFIG_USE_FIPS_ENDPOINT = \"use_fips_endpoint\";\nvar DEFAULT_USE_FIPS_ENDPOINT = false;\nvar NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(env, ENV_USE_FIPS_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].ENV);\n },\n configFileSelector: function (profile) { return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(profile, CONFIG_USE_FIPS_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].CONFIG); },\n default: false,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js ***! \****************************************************************************************************************************/ /*! exports provided: ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveCustomEndpointsConfig, resolveEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./NodeUseDualstackEndpointConfigOptions */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_DUALSTACK_ENDPOINT\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"ENV_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_DUALSTACK_ENDPOINT\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"CONFIG_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_DUALSTACK_ENDPOINT\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./NodeUseFipsEndpointConfigOptions */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_FIPS_ENDPOINT\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"ENV_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_FIPS_ENDPOINT\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"CONFIG_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_FIPS_ENDPOINT\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _resolveCustomEndpointsConfig__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./resolveCustomEndpointsConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveCustomEndpointsConfig\", function() { return _resolveCustomEndpointsConfig__WEBPACK_IMPORTED_MODULE_2__[\"resolveCustomEndpointsConfig\"]; });\n\n/* harmony import */ var _resolveEndpointsConfig__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./resolveEndpointsConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return _resolveEndpointsConfig__WEBPACK_IMPORTED_MODULE_3__[\"resolveEndpointsConfig\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js": /*!***************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js ***! \***************************************************************************************************************************************************/ /*! exports provided: resolveCustomEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveCustomEndpointsConfig\", function() { return resolveCustomEndpointsConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n\n\nvar resolveCustomEndpointsConfig = function (input) {\n var _a;\n var endpoint = input.endpoint, urlParser = input.urlParser;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { tls: (_a = input.tls) !== null && _a !== void 0 ? _a : true, endpoint: Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(typeof endpoint === \"string\" ? urlParser(endpoint) : endpoint), isCustomEndpoint: true, useDualstackEndpoint: Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(input.useDualstackEndpoint) });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js": /*!*********************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js ***! \*********************************************************************************************************************************************/ /*! exports provided: resolveEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return resolveEndpointsConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n/* harmony import */ var _utils_getEndpointFromRegion__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/getEndpointFromRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js\");\n\n\n\nvar resolveEndpointsConfig = function (input) {\n var _a;\n var useDualstackEndpoint = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(input.useDualstackEndpoint);\n var endpoint = input.endpoint, useFipsEndpoint = input.useFipsEndpoint, urlParser = input.urlParser;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { tls: (_a = input.tls) !== null && _a !== void 0 ? _a : true, endpoint: endpoint\n ? Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(typeof endpoint === \"string\" ? urlParser(endpoint) : endpoint)\n : function () { return Object(_utils_getEndpointFromRegion__WEBPACK_IMPORTED_MODULE_2__[\"getEndpointFromRegion\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { useDualstackEndpoint: useDualstackEndpoint, useFipsEndpoint: useFipsEndpoint })); }, isCustomEndpoint: !!endpoint, useDualstackEndpoint: useDualstackEndpoint });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js": /*!**************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js ***! \**************************************************************************************************************************************************/ /*! exports provided: getEndpointFromRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getEndpointFromRegion\", function() { return getEndpointFromRegion; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar getEndpointFromRegion = function (input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, tls, region, dnsHostRegex, useDualstackEndpoint, useFipsEndpoint, hostname;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = input.tls, tls = _a === void 0 ? true : _a;\n return [4, input.region()];\n case 1:\n region = _c.sent();\n dnsHostRegex = new RegExp(/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])$/);\n if (!dnsHostRegex.test(region)) {\n throw new Error(\"Invalid region in client config\");\n }\n return [4, input.useDualstackEndpoint()];\n case 2:\n useDualstackEndpoint = _c.sent();\n return [4, input.useFipsEndpoint()];\n case 3:\n useFipsEndpoint = _c.sent();\n return [4, input.regionInfoProvider(region, { useDualstackEndpoint: useDualstackEndpoint, useFipsEndpoint: useFipsEndpoint })];\n case 4:\n hostname = ((_b = (_c.sent())) !== null && _b !== void 0 ? _b : {}).hostname;\n if (!hostname) {\n throw new Error(\"Cannot resolve hostname from client config\");\n }\n return [2, input.urlParser(\"\".concat(tls ? \"https:\" : \"http:\", \"//\").concat(hostname))];\n }\n });\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/index.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/index.js ***! \************************************************************************************************************/ /*! exports provided: ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveCustomEndpointsConfig, resolveEndpointsConfig, REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig, getRegionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpointsConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_DUALSTACK_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"ENV_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_DUALSTACK_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"CONFIG_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_DUALSTACK_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_FIPS_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"ENV_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_FIPS_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"CONFIG_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_FIPS_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveCustomEndpointsConfig\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveCustomEndpointsConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveEndpointsConfig\"]; });\n\n/* harmony import */ var _regionConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./regionConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"REGION_ENV_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"REGION_INI_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"NODE_REGION_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"NODE_REGION_CONFIG_FILE_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"]; });\n\n/* harmony import */ var _regionInfo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./regionInfo */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRegionInfo\", function() { return _regionInfo__WEBPACK_IMPORTED_MODULE_2__[\"getRegionInfo\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js ***! \**************************************************************************************************************************/ /*! exports provided: REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return REGION_ENV_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return REGION_INI_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return NODE_REGION_CONFIG_OPTIONS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return NODE_REGION_CONFIG_FILE_OPTIONS; });\nvar REGION_ENV_NAME = \"AWS_REGION\";\nvar REGION_INI_NAME = \"region\";\nvar NODE_REGION_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) { return env[REGION_ENV_NAME]; },\n configFileSelector: function (profile) { return profile[REGION_INI_NAME]; },\n default: function () {\n throw new Error(\"Region is missing\");\n },\n};\nvar NODE_REGION_CONFIG_FILE_OPTIONS = {\n preferredFile: \"credentials\",\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js": /*!*********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js ***! \*********************************************************************************************************************************/ /*! exports provided: getRealRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRealRegion\", function() { return getRealRegion; });\n/* harmony import */ var _isFipsRegion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isFipsRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js\");\n\nvar getRealRegion = function (region) {\n return Object(_isFipsRegion__WEBPACK_IMPORTED_MODULE_0__[\"isFipsRegion\"])(region)\n ? [\"fips-aws-global\", \"aws-fips\"].includes(region)\n ? \"us-east-1\"\n : region.replace(/fips-(dkr-|prod-)?|-fips/, \"\")\n : region;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js ***! \*************************************************************************************************************************/ /*! exports provided: REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"REGION_ENV_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"REGION_INI_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"NODE_REGION_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"NODE_REGION_CONFIG_FILE_OPTIONS\"]; });\n\n/* harmony import */ var _resolveRegionConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./resolveRegionConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return _resolveRegionConfig__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js": /*!********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js ***! \********************************************************************************************************************************/ /*! exports provided: isFipsRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isFipsRegion\", function() { return isFipsRegion; });\nvar isFipsRegion = function (region) {\n return typeof region === \"string\" && (region.startsWith(\"fips-\") || region.endsWith(\"-fips\"));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js": /*!***************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js ***! \***************************************************************************************************************************************/ /*! exports provided: resolveRegionConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return resolveRegionConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _getRealRegion__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getRealRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js\");\n/* harmony import */ var _isFipsRegion__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isFipsRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js\");\n\n\n\nvar resolveRegionConfig = function (input) {\n var region = input.region, useFipsEndpoint = input.useFipsEndpoint;\n if (!region) {\n throw new Error(\"Region is missing\");\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { region: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var providedRegion;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (typeof region === \"string\") {\n return [2, Object(_getRealRegion__WEBPACK_IMPORTED_MODULE_1__[\"getRealRegion\"])(region)];\n }\n return [4, region()];\n case 1:\n providedRegion = _a.sent();\n return [2, Object(_getRealRegion__WEBPACK_IMPORTED_MODULE_1__[\"getRealRegion\"])(providedRegion)];\n }\n });\n }); }, useFipsEndpoint: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var providedRegion, _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!(typeof region === \"string\")) return [3, 1];\n _a = region;\n return [3, 3];\n case 1: return [4, region()];\n case 2:\n _a = _b.sent();\n _b.label = 3;\n case 3:\n providedRegion = _a;\n if (Object(_isFipsRegion__WEBPACK_IMPORTED_MODULE_2__[\"isFipsRegion\"])(providedRegion)) {\n return [2, true];\n }\n return [2, typeof useFipsEndpoint === \"boolean\" ? Promise.resolve(useFipsEndpoint) : useFipsEndpoint()];\n }\n });\n }); } });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js": /*!*******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js ***! \*******************************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js ***! \****************************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js": /*!*****************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js ***! \*****************************************************************************************************************************************/ /*! exports provided: getHostnameFromVariants */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHostnameFromVariants\", function() { return getHostnameFromVariants; });\nvar getHostnameFromVariants = function (variants, _a) {\n var _b;\n if (variants === void 0) { variants = []; }\n var useFipsEndpoint = _a.useFipsEndpoint, useDualstackEndpoint = _a.useDualstackEndpoint;\n return (_b = variants.find(function (_a) {\n var tags = _a.tags;\n return useFipsEndpoint === tags.includes(\"fips\") && useDualstackEndpoint === tags.includes(\"dualstack\");\n })) === null || _b === void 0 ? void 0 : _b.hostname;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js": /*!*******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js ***! \*******************************************************************************************************************************/ /*! exports provided: getRegionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRegionInfo\", function() { return getRegionInfo; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _getHostnameFromVariants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getHostnameFromVariants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js\");\n/* harmony import */ var _getResolvedHostname__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getResolvedHostname */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js\");\n/* harmony import */ var _getResolvedPartition__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getResolvedPartition */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js\");\n/* harmony import */ var _getResolvedSigningRegion__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getResolvedSigningRegion */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js\");\n\n\n\n\n\nvar getRegionInfo = function (region, _a) {\n var _b, _c, _d, _e, _f, _g;\n var _h = _a.useFipsEndpoint, useFipsEndpoint = _h === void 0 ? false : _h, _j = _a.useDualstackEndpoint, useDualstackEndpoint = _j === void 0 ? false : _j, signingService = _a.signingService, regionHash = _a.regionHash, partitionHash = _a.partitionHash;\n var partition = Object(_getResolvedPartition__WEBPACK_IMPORTED_MODULE_3__[\"getResolvedPartition\"])(region, { partitionHash: partitionHash });\n var resolvedRegion = region in regionHash ? region : (_c = (_b = partitionHash[partition]) === null || _b === void 0 ? void 0 : _b.endpoint) !== null && _c !== void 0 ? _c : region;\n var hostnameOptions = { useFipsEndpoint: useFipsEndpoint, useDualstackEndpoint: useDualstackEndpoint };\n var regionHostname = Object(_getHostnameFromVariants__WEBPACK_IMPORTED_MODULE_1__[\"getHostnameFromVariants\"])((_d = regionHash[resolvedRegion]) === null || _d === void 0 ? void 0 : _d.variants, hostnameOptions);\n var partitionHostname = Object(_getHostnameFromVariants__WEBPACK_IMPORTED_MODULE_1__[\"getHostnameFromVariants\"])((_e = partitionHash[partition]) === null || _e === void 0 ? void 0 : _e.variants, hostnameOptions);\n var hostname = Object(_getResolvedHostname__WEBPACK_IMPORTED_MODULE_2__[\"getResolvedHostname\"])(resolvedRegion, { regionHostname: regionHostname, partitionHostname: partitionHostname });\n if (hostname === undefined) {\n throw new Error(\"Endpoint resolution failed for: \".concat({ resolvedRegion: resolvedRegion, useFipsEndpoint: useFipsEndpoint, useDualstackEndpoint: useDualstackEndpoint }));\n }\n var signingRegion = Object(_getResolvedSigningRegion__WEBPACK_IMPORTED_MODULE_4__[\"getResolvedSigningRegion\"])(hostname, {\n signingRegion: (_f = regionHash[resolvedRegion]) === null || _f === void 0 ? void 0 : _f.signingRegion,\n regionRegex: partitionHash[partition].regionRegex,\n useFipsEndpoint: useFipsEndpoint,\n });\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ partition: partition, signingService: signingService, hostname: hostname }, (signingRegion && { signingRegion: signingRegion })), (((_g = regionHash[resolvedRegion]) === null || _g === void 0 ? void 0 : _g.signingService) && {\n signingService: regionHash[resolvedRegion].signingService,\n }));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js": /*!*************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js ***! \*************************************************************************************************************************************/ /*! exports provided: getResolvedHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResolvedHostname\", function() { return getResolvedHostname; });\nvar getResolvedHostname = function (resolvedRegion, _a) {\n var regionHostname = _a.regionHostname, partitionHostname = _a.partitionHostname;\n return regionHostname\n ? regionHostname\n : partitionHostname\n ? partitionHostname.replace(\"{region}\", resolvedRegion)\n : undefined;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js": /*!**************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js ***! \**************************************************************************************************************************************/ /*! exports provided: getResolvedPartition */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResolvedPartition\", function() { return getResolvedPartition; });\nvar getResolvedPartition = function (region, _a) {\n var _b;\n var partitionHash = _a.partitionHash;\n return (_b = Object.keys(partitionHash || {}).find(function (key) { return partitionHash[key].regions.includes(region); })) !== null && _b !== void 0 ? _b : \"aws\";\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js": /*!******************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js ***! \******************************************************************************************************************************************/ /*! exports provided: getResolvedSigningRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResolvedSigningRegion\", function() { return getResolvedSigningRegion; });\nvar getResolvedSigningRegion = function (hostname, _a) {\n var signingRegion = _a.signingRegion, regionRegex = _a.regionRegex, useFipsEndpoint = _a.useFipsEndpoint;\n if (signingRegion) {\n return signingRegion;\n }\n else if (useFipsEndpoint) {\n var regionRegexJs = regionRegex.replace(\"\\\\\\\\\", \"\\\\\").replace(/^\\^/g, \"\\\\.\").replace(/\\$$/g, \"\\\\.\");\n var regionRegexmatchArray = hostname.match(regionRegexJs);\n if (regionRegexmatchArray) {\n return regionRegexmatchArray[0].slice(1, -1);\n }\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js ***! \***********************************************************************************************************************/ /*! exports provided: getRegionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PartitionHash__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PartitionHash */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _RegionHash__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./RegionHash */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _getRegionInfo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getRegionInfo */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRegionInfo\", function() { return _getRegionInfo__WEBPACK_IMPORTED_MODULE_2__[\"getRegionInfo\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/EventStreamMarshaller.js": /*!**************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/EventStreamMarshaller.js ***! \**************************************************************************************************************************************/ /*! exports provided: EventStreamMarshaller */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return EventStreamMarshaller; });\n/* harmony import */ var _aws_sdk_eventstream_serde_universal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/eventstream-serde-universal */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/index.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/utils.js\");\n\n\nvar EventStreamMarshaller = (function () {\n function EventStreamMarshaller(_a) {\n var utf8Encoder = _a.utf8Encoder, utf8Decoder = _a.utf8Decoder;\n this.universalMarshaller = new _aws_sdk_eventstream_serde_universal__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamMarshaller\"]({\n utf8Decoder: utf8Decoder,\n utf8Encoder: utf8Encoder,\n });\n }\n EventStreamMarshaller.prototype.deserialize = function (body, deserializer) {\n var bodyIterable = isReadableStream(body) ? Object(_utils__WEBPACK_IMPORTED_MODULE_1__[\"readableStreamtoIterable\"])(body) : body;\n return this.universalMarshaller.deserialize(bodyIterable, deserializer);\n };\n EventStreamMarshaller.prototype.serialize = function (input, serializer) {\n var serialziedIterable = this.universalMarshaller.serialize(input, serializer);\n return typeof ReadableStream === \"function\" ? Object(_utils__WEBPACK_IMPORTED_MODULE_1__[\"iterableToReadableStream\"])(serialziedIterable) : serialziedIterable;\n };\n return EventStreamMarshaller;\n}());\n\nvar isReadableStream = function (body) {\n return typeof ReadableStream === \"function\" && body instanceof ReadableStream;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/EventStreamMarshaller.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/index.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/index.js ***! \**********************************************************************************************************************/ /*! exports provided: EventStreamMarshaller, eventStreamSerdeProvider, readableStreamtoIterable, iterableToReadableStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamMarshaller */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/EventStreamMarshaller.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamMarshaller\"]; });\n\n/* harmony import */ var _provider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./provider */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/provider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eventStreamSerdeProvider\", function() { return _provider__WEBPACK_IMPORTED_MODULE_1__[\"eventStreamSerdeProvider\"]; });\n\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"readableStreamtoIterable\", function() { return _utils__WEBPACK_IMPORTED_MODULE_2__[\"readableStreamtoIterable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"iterableToReadableStream\", function() { return _utils__WEBPACK_IMPORTED_MODULE_2__[\"iterableToReadableStream\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/provider.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/provider.js ***! \*************************************************************************************************************************/ /*! exports provided: eventStreamSerdeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"eventStreamSerdeProvider\", function() { return eventStreamSerdeProvider; });\n/* harmony import */ var _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamMarshaller */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/EventStreamMarshaller.js\");\n\nvar eventStreamSerdeProvider = function (options) { return new _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamMarshaller\"](options); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/provider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/utils.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/utils.js ***! \**********************************************************************************************************************/ /*! exports provided: readableStreamtoIterable, iterableToReadableStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"readableStreamtoIterable\", function() { return readableStreamtoIterable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"iterableToReadableStream\", function() { return iterableToReadableStream; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar readableStreamtoIterable = function (readableStream) {\n var _a;\n return (_a = {},\n _a[Symbol.asyncIterator] = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function () {\n var reader, _a, done, value;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n reader = readableStream.getReader();\n _b.label = 1;\n case 1:\n _b.trys.push([1, , 9, 10]);\n _b.label = 2;\n case 2:\n if (false) {}\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(reader.read())];\n case 3:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (!done) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(void 0)];\n case 4: return [2, _b.sent()];\n case 5: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(value)];\n case 6: return [4, _b.sent()];\n case 7:\n _b.sent();\n return [3, 2];\n case 8: return [3, 10];\n case 9:\n reader.releaseLock();\n return [7];\n case 10: return [2];\n }\n });\n });\n },\n _a);\n};\nvar iterableToReadableStream = function (asyncIterable) {\n var iterator = asyncIterable[Symbol.asyncIterator]();\n return new ReadableStream({\n pull: function (controller) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _a, done, value;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0: return [4, iterator.next()];\n case 1:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (done) {\n return [2, controller.close()];\n }\n controller.enqueue(value);\n return [2];\n }\n });\n });\n },\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-browser/dist-es/utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-es/EventStreamSerdeConfig.js": /*!***********************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-es/EventStreamSerdeConfig.js ***! \***********************************************************************************************************************************************/ /*! exports provided: resolveEventStreamSerdeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveEventStreamSerdeConfig\", function() { return resolveEventStreamSerdeConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar resolveEventStreamSerdeConfig = function (input) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { eventStreamMarshaller: input.eventStreamSerdeProvider(input) })); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-es/EventStreamSerdeConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-es/index.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-es/index.js ***! \******************************************************************************************************************************/ /*! exports provided: resolveEventStreamSerdeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _EventStreamSerdeConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamSerdeConfig */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-es/EventStreamSerdeConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEventStreamSerdeConfig\", function() { return _EventStreamSerdeConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveEventStreamSerdeConfig\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/EventStreamMarshaller.js": /*!****************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/EventStreamMarshaller.js ***! \****************************************************************************************************************************************/ /*! exports provided: EventStreamMarshaller */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return EventStreamMarshaller; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_eventstream_codec__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/eventstream-codec */ \"./node_modules/@aws-sdk/eventstream-codec/dist-es/index.js\");\n/* harmony import */ var _getChunkedStream__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getChunkedStream */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/getChunkedStream.js\");\n/* harmony import */ var _getUnmarshalledStream__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getUnmarshalledStream */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/getUnmarshalledStream.js\");\n\n\n\n\nvar EventStreamMarshaller = (function () {\n function EventStreamMarshaller(_a) {\n var utf8Encoder = _a.utf8Encoder, utf8Decoder = _a.utf8Decoder;\n this.eventStreamCodec = new _aws_sdk_eventstream_codec__WEBPACK_IMPORTED_MODULE_1__[\"EventStreamCodec\"](utf8Encoder, utf8Decoder);\n this.utfEncoder = utf8Encoder;\n }\n EventStreamMarshaller.prototype.deserialize = function (body, deserializer) {\n var chunkedStream = Object(_getChunkedStream__WEBPACK_IMPORTED_MODULE_2__[\"getChunkedStream\"])(body);\n var unmarshalledStream = Object(_getUnmarshalledStream__WEBPACK_IMPORTED_MODULE_3__[\"getUnmarshalledStream\"])(chunkedStream, {\n eventStreamCodec: this.eventStreamCodec,\n deserializer: deserializer,\n toUtf8: this.utfEncoder,\n });\n return unmarshalledStream;\n };\n EventStreamMarshaller.prototype.serialize = function (input, serializer) {\n var _a;\n var self = this;\n var serializedIterator = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function () {\n var input_1, input_1_1, chunk, payloadBuf, e_1_1;\n var e_1, _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n _b.trys.push([0, 7, 8, 13]);\n input_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncValues\"])(input);\n _b.label = 1;\n case 1: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(input_1.next())];\n case 2:\n if (!(input_1_1 = _b.sent(), !input_1_1.done)) return [3, 6];\n chunk = input_1_1.value;\n payloadBuf = self.eventStreamCodec.encode(serializer(chunk));\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(payloadBuf)];\n case 3: return [4, _b.sent()];\n case 4:\n _b.sent();\n _b.label = 5;\n case 5: return [3, 1];\n case 6: return [3, 13];\n case 7:\n e_1_1 = _b.sent();\n e_1 = { error: e_1_1 };\n return [3, 13];\n case 8:\n _b.trys.push([8, , 11, 12]);\n if (!(input_1_1 && !input_1_1.done && (_a = input_1.return))) return [3, 10];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(_a.call(input_1))];\n case 9:\n _b.sent();\n _b.label = 10;\n case 10: return [3, 12];\n case 11:\n if (e_1) throw e_1.error;\n return [7];\n case 12: return [7];\n case 13: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(new Uint8Array(0))];\n case 14: return [4, _b.sent()];\n case 15:\n _b.sent();\n return [2];\n }\n });\n });\n };\n return _a = {},\n _a[Symbol.asyncIterator] = serializedIterator,\n _a;\n };\n return EventStreamMarshaller;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/EventStreamMarshaller.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/getChunkedStream.js": /*!***********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/getChunkedStream.js ***! \***********************************************************************************************************************************/ /*! exports provided: getChunkedStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getChunkedStream\", function() { return getChunkedStream; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nfunction getChunkedStream(source) {\n var _a;\n var currentMessageTotalLength = 0;\n var currentMessagePendingLength = 0;\n var currentMessage = null;\n var messageLengthBuffer = null;\n var allocateMessage = function (size) {\n if (typeof size !== \"number\") {\n throw new Error(\"Attempted to allocate an event message where size was not a number: \" + size);\n }\n currentMessageTotalLength = size;\n currentMessagePendingLength = 4;\n currentMessage = new Uint8Array(size);\n var currentMessageView = new DataView(currentMessage.buffer);\n currentMessageView.setUint32(0, size, false);\n };\n var iterator = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function () {\n var sourceIterator, _a, value, done, chunkLength, currentOffset, bytesRemaining, numBytesForTotal, numBytesToWrite;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n sourceIterator = source[Symbol.asyncIterator]();\n _b.label = 1;\n case 1:\n if (false) {}\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(sourceIterator.next())];\n case 2:\n _a = _b.sent(), value = _a.value, done = _a.done;\n if (!done) return [3, 10];\n if (!!currentMessageTotalLength) return [3, 4];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(void 0)];\n case 3: return [2, _b.sent()];\n case 4:\n if (!(currentMessageTotalLength === currentMessagePendingLength)) return [3, 7];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(currentMessage)];\n case 5: return [4, _b.sent()];\n case 6:\n _b.sent();\n return [3, 8];\n case 7: throw new Error(\"Truncated event message received.\");\n case 8: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(void 0)];\n case 9: return [2, _b.sent()];\n case 10:\n chunkLength = value.length;\n currentOffset = 0;\n _b.label = 11;\n case 11:\n if (!(currentOffset < chunkLength)) return [3, 15];\n if (!currentMessage) {\n bytesRemaining = chunkLength - currentOffset;\n if (!messageLengthBuffer) {\n messageLengthBuffer = new Uint8Array(4);\n }\n numBytesForTotal = Math.min(4 - currentMessagePendingLength, bytesRemaining);\n messageLengthBuffer.set(value.slice(currentOffset, currentOffset + numBytesForTotal), currentMessagePendingLength);\n currentMessagePendingLength += numBytesForTotal;\n currentOffset += numBytesForTotal;\n if (currentMessagePendingLength < 4) {\n return [3, 15];\n }\n allocateMessage(new DataView(messageLengthBuffer.buffer).getUint32(0, false));\n messageLengthBuffer = null;\n }\n numBytesToWrite = Math.min(currentMessageTotalLength - currentMessagePendingLength, chunkLength - currentOffset);\n currentMessage.set(value.slice(currentOffset, currentOffset + numBytesToWrite), currentMessagePendingLength);\n currentMessagePendingLength += numBytesToWrite;\n currentOffset += numBytesToWrite;\n if (!(currentMessageTotalLength && currentMessageTotalLength === currentMessagePendingLength)) return [3, 14];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(currentMessage)];\n case 12: return [4, _b.sent()];\n case 13:\n _b.sent();\n currentMessage = null;\n currentMessageTotalLength = 0;\n currentMessagePendingLength = 0;\n _b.label = 14;\n case 14: return [3, 11];\n case 15: return [3, 1];\n case 16: return [2];\n }\n });\n });\n };\n return _a = {},\n _a[Symbol.asyncIterator] = iterator,\n _a;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/getChunkedStream.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/getUnmarshalledStream.js": /*!****************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/getUnmarshalledStream.js ***! \****************************************************************************************************************************************/ /*! exports provided: getUnmarshalledStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUnmarshalledStream\", function() { return getUnmarshalledStream; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nfunction getUnmarshalledStream(source, options) {\n var _a;\n return _a = {},\n _a[Symbol.asyncIterator] = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function () {\n var source_1, source_1_1, chunk, message, messageType, unmodeledError, code, exception, deserializedException, error, event_1, deserialized, e_1_1;\n var _a, _b;\n var e_1, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _d.trys.push([0, 12, 13, 18]);\n source_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncValues\"])(source);\n _d.label = 1;\n case 1: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(source_1.next())];\n case 2:\n if (!(source_1_1 = _d.sent(), !source_1_1.done)) return [3, 11];\n chunk = source_1_1.value;\n message = options.eventStreamCodec.decode(chunk);\n messageType = message.headers[\":message-type\"].value;\n if (!(messageType === \"error\")) return [3, 3];\n unmodeledError = new Error(message.headers[\":error-message\"].value || \"UnknownError\");\n unmodeledError.name = message.headers[\":error-code\"].value;\n throw unmodeledError;\n case 3:\n if (!(messageType === \"exception\")) return [3, 5];\n code = message.headers[\":exception-type\"].value;\n exception = (_a = {}, _a[code] = message, _a);\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(options.deserializer(exception))];\n case 4:\n deserializedException = _d.sent();\n if (deserializedException.$unknown) {\n error = new Error(options.toUtf8(message.body));\n error.name = code;\n throw error;\n }\n throw deserializedException[code];\n case 5:\n if (!(messageType === \"event\")) return [3, 9];\n event_1 = (_b = {},\n _b[message.headers[\":event-type\"].value] = message,\n _b);\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(options.deserializer(event_1))];\n case 6:\n deserialized = _d.sent();\n if (deserialized.$unknown)\n return [3, 10];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(deserialized)];\n case 7: return [4, _d.sent()];\n case 8:\n _d.sent();\n return [3, 10];\n case 9: throw Error(\"Unrecognizable event type: \".concat(message.headers[\":event-type\"].value));\n case 10: return [3, 1];\n case 11: return [3, 18];\n case 12:\n e_1_1 = _d.sent();\n e_1 = { error: e_1_1 };\n return [3, 18];\n case 13:\n _d.trys.push([13, , 16, 17]);\n if (!(source_1_1 && !source_1_1.done && (_c = source_1.return))) return [3, 15];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(_c.call(source_1))];\n case 14:\n _d.sent();\n _d.label = 15;\n case 15: return [3, 17];\n case 16:\n if (e_1) throw e_1.error;\n return [7];\n case 17: return [7];\n case 18: return [2];\n }\n });\n });\n },\n _a;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/getUnmarshalledStream.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/index.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/index.js ***! \************************************************************************************************************************/ /*! exports provided: EventStreamMarshaller, eventStreamSerdeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamMarshaller */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/EventStreamMarshaller.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamMarshaller\"]; });\n\n/* harmony import */ var _provider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./provider */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/provider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eventStreamSerdeProvider\", function() { return _provider__WEBPACK_IMPORTED_MODULE_1__[\"eventStreamSerdeProvider\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/provider.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/provider.js ***! \***************************************************************************************************************************/ /*! exports provided: eventStreamSerdeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"eventStreamSerdeProvider\", function() { return eventStreamSerdeProvider; });\n/* harmony import */ var _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamMarshaller */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/EventStreamMarshaller.js\");\n\nvar eventStreamSerdeProvider = function (options) { return new _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamMarshaller\"](options); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/eventstream-serde-universal/dist-es/provider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js ***! \****************************************************************************************************************************/ /*! exports provided: FetchHttpHandler */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FetchHttpHandler\", function() { return FetchHttpHandler; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/querystring-builder */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/querystring-builder/dist-es/index.js\");\n/* harmony import */ var _request_timeout__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./request-timeout */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js\");\n\n\n\n\nvar FetchHttpHandler = (function () {\n function FetchHttpHandler(options) {\n if (typeof options === \"function\") {\n this.configProvider = options().then(function (opts) { return opts || {}; });\n }\n else {\n this.config = options !== null && options !== void 0 ? options : {};\n this.configProvider = Promise.resolve(this.config);\n }\n }\n FetchHttpHandler.prototype.destroy = function () {\n };\n FetchHttpHandler.prototype.handle = function (request, _a) {\n var _b = _a === void 0 ? {} : _a, abortSignal = _b.abortSignal;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _c, requestTimeoutInMs, abortError, path, queryString, port, method, url, body, requestOptions, fetchRequest, raceOfPromises;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n if (!!this.config) return [3, 2];\n _c = this;\n return [4, this.configProvider];\n case 1:\n _c.config = _d.sent();\n _d.label = 2;\n case 2:\n requestTimeoutInMs = this.config.requestTimeout;\n if (abortSignal === null || abortSignal === void 0 ? void 0 : abortSignal.aborted) {\n abortError = new Error(\"Request aborted\");\n abortError.name = \"AbortError\";\n return [2, Promise.reject(abortError)];\n }\n path = request.path;\n if (request.query) {\n queryString = Object(_aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_2__[\"buildQueryString\"])(request.query);\n if (queryString) {\n path += \"?\".concat(queryString);\n }\n }\n port = request.port, method = request.method;\n url = \"\".concat(request.protocol, \"//\").concat(request.hostname).concat(port ? \":\".concat(port) : \"\").concat(path);\n body = method === \"GET\" || method === \"HEAD\" ? undefined : request.body;\n requestOptions = {\n body: body,\n headers: new Headers(request.headers),\n method: method,\n };\n if (typeof AbortController !== \"undefined\") {\n requestOptions[\"signal\"] = abortSignal;\n }\n fetchRequest = new Request(url, requestOptions);\n raceOfPromises = [\n fetch(fetchRequest).then(function (response) {\n var e_1, _a;\n var fetchHeaders = response.headers;\n var transformedHeaders = {};\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(fetchHeaders.entries()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var pair = _c.value;\n transformedHeaders[pair[0]] = pair[1];\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var hasReadableStream = response.body !== undefined;\n if (!hasReadableStream) {\n return response.blob().then(function (body) { return ({\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"]({\n headers: transformedHeaders,\n statusCode: response.status,\n body: body,\n }),\n }); });\n }\n return {\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"]({\n headers: transformedHeaders,\n statusCode: response.status,\n body: response.body,\n }),\n };\n }),\n Object(_request_timeout__WEBPACK_IMPORTED_MODULE_3__[\"requestTimeout\"])(requestTimeoutInMs),\n ];\n if (abortSignal) {\n raceOfPromises.push(new Promise(function (resolve, reject) {\n abortSignal.onabort = function () {\n var abortError = new Error(\"Request aborted\");\n abortError.name = \"AbortError\";\n reject(abortError);\n };\n }));\n }\n return [2, Promise.race(raceOfPromises)];\n }\n });\n });\n };\n return FetchHttpHandler;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js ***! \***************************************************************************************************************/ /*! exports provided: FetchHttpHandler, streamCollector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _fetch_http_handler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./fetch-http-handler */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FetchHttpHandler\", function() { return _fetch_http_handler__WEBPACK_IMPORTED_MODULE_0__[\"FetchHttpHandler\"]; });\n\n/* harmony import */ var _stream_collector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stream-collector */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"streamCollector\", function() { return _stream_collector__WEBPACK_IMPORTED_MODULE_1__[\"streamCollector\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js ***! \*************************************************************************************************************************/ /*! exports provided: requestTimeout */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"requestTimeout\", function() { return requestTimeout; });\nfunction requestTimeout(timeoutInMs) {\n if (timeoutInMs === void 0) { timeoutInMs = 0; }\n return new Promise(function (resolve, reject) {\n if (timeoutInMs) {\n setTimeout(function () {\n var timeoutError = new Error(\"Request did not complete within \".concat(timeoutInMs, \" ms\"));\n timeoutError.name = \"TimeoutError\";\n reject(timeoutError);\n }, timeoutInMs);\n }\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js ***! \**************************************************************************************************************************/ /*! exports provided: streamCollector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"streamCollector\", function() { return streamCollector; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js\");\n\n\nvar streamCollector = function (stream) {\n if (typeof Blob === \"function\" && stream instanceof Blob) {\n return collectBlob(stream);\n }\n return collectStream(stream);\n};\nfunction collectBlob(blob) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var base64, arrayBuffer;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, readToBase64(blob)];\n case 1:\n base64 = _a.sent();\n arrayBuffer = Object(_aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_1__[\"fromBase64\"])(base64);\n return [2, new Uint8Array(arrayBuffer)];\n }\n });\n });\n}\nfunction collectStream(stream) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var res, reader, isDone, _a, done, value, prior;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n res = new Uint8Array(0);\n reader = stream.getReader();\n isDone = false;\n _b.label = 1;\n case 1:\n if (!!isDone) return [3, 3];\n return [4, reader.read()];\n case 2:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (value) {\n prior = res;\n res = new Uint8Array(prior.length + value.length);\n res.set(prior);\n res.set(value, prior.length);\n }\n isDone = done;\n return [3, 1];\n case 3: return [2, res];\n }\n });\n });\n}\nfunction readToBase64(blob) {\n return new Promise(function (resolve, reject) {\n var reader = new FileReader();\n reader.onloadend = function () {\n var _a;\n if (reader.readyState !== 2) {\n return reject(new Error(\"Reader aborted too early\"));\n }\n var result = ((_a = reader.result) !== null && _a !== void 0 ? _a : \"\");\n var commaIndex = result.indexOf(\",\");\n var dataOffset = commaIndex > -1 ? commaIndex + 1 : result.length;\n resolve(result.substring(dataOffset));\n };\n reader.onabort = function () { return reject(new Error(\"Read aborted\")); };\n reader.onerror = function () { return reject(reader.error); };\n reader.readAsDataURL(blob);\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js ***! \***************************************************************************************************************/ /*! exports provided: invalidFunction, invalidProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _invalidFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./invalidFunction */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"invalidFunction\", function() { return _invalidFunction__WEBPACK_IMPORTED_MODULE_0__[\"invalidFunction\"]; });\n\n/* harmony import */ var _invalidProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./invalidProvider */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"invalidProvider\", function() { return _invalidProvider__WEBPACK_IMPORTED_MODULE_1__[\"invalidProvider\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js ***! \*************************************************************************************************************************/ /*! exports provided: invalidFunction */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invalidFunction\", function() { return invalidFunction; });\nvar invalidFunction = function (message) { return function () {\n throw new Error(message);\n}; };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js ***! \*************************************************************************************************************************/ /*! exports provided: invalidProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invalidProvider\", function() { return invalidProvider; });\nvar invalidProvider = function (message) { return function () { return Promise.reject(message); }; };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js ***! \************************************************************************************************************/ /*! exports provided: isArrayBuffer */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isArrayBuffer\", function() { return isArrayBuffer; });\nvar isArrayBuffer = function (arg) {\n return (typeof ArrayBuffer === \"function\" && arg instanceof ArrayBuffer) ||\n Object.prototype.toString.call(arg) === \"[object ArrayBuffer]\";\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js ***! \**********************************************************************************************************************/ /*! exports provided: contentLengthMiddleware, contentLengthMiddlewareOptions, getContentLengthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"contentLengthMiddleware\", function() { return contentLengthMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"contentLengthMiddlewareOptions\", function() { return contentLengthMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getContentLengthPlugin\", function() { return getContentLengthPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n\n\nvar CONTENT_LENGTH_HEADER = \"content-length\";\nfunction contentLengthMiddleware(bodyLengthChecker) {\n var _this = this;\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var request, body, headers, length_1;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n body = request.body, headers = request.headers;\n if (body &&\n Object.keys(headers)\n .map(function (str) { return str.toLowerCase(); })\n .indexOf(CONTENT_LENGTH_HEADER) === -1) {\n try {\n length_1 = bodyLengthChecker(body);\n request.headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request.headers), (_a = {}, _a[CONTENT_LENGTH_HEADER] = String(length_1), _a));\n }\n catch (error) {\n }\n }\n }\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n });\n }); };\n };\n}\nvar contentLengthMiddlewareOptions = {\n step: \"build\",\n tags: [\"SET_CONTENT_LENGTH\", \"CONTENT_LENGTH\"],\n name: \"contentLengthMiddleware\",\n override: true,\n};\nvar getContentLengthPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(contentLengthMiddleware(options.bodyLengthChecker), contentLengthMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js ***! \*******************************************************************************************************************/ /*! exports provided: resolveHostHeaderConfig, hostHeaderMiddleware, hostHeaderMiddlewareOptions, getHostHeaderPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveHostHeaderConfig\", function() { return resolveHostHeaderConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hostHeaderMiddleware\", function() { return hostHeaderMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hostHeaderMiddlewareOptions\", function() { return hostHeaderMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHostHeaderPlugin\", function() { return getHostHeaderPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n\n\nfunction resolveHostHeaderConfig(input) {\n return input;\n}\nvar hostHeaderMiddleware = function (options) {\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, _a, handlerProtocol;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(args.request))\n return [2, next(args)];\n request = args.request;\n _a = (options.requestHandler.metadata || {}).handlerProtocol, handlerProtocol = _a === void 0 ? \"\" : _a;\n if (handlerProtocol.indexOf(\"h2\") >= 0 && !request.headers[\":authority\"]) {\n delete request.headers[\"host\"];\n request.headers[\":authority\"] = \"\";\n }\n else if (!request.headers[\"host\"]) {\n request.headers[\"host\"] = request.hostname;\n }\n return [2, next(args)];\n });\n }); };\n };\n};\nvar hostHeaderMiddlewareOptions = {\n name: \"hostHeaderMiddleware\",\n step: \"build\",\n priority: \"low\",\n tags: [\"HOST\"],\n override: true,\n};\nvar getHostHeaderPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(hostHeaderMiddleware(options), hostHeaderMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-logger/dist-es/index.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-logger/dist-es/index.js ***! \**************************************************************************************************************/ /*! exports provided: loggerMiddleware, loggerMiddlewareOptions, getLoggerPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./loggerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddleware\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"loggerMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddlewareOptions\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"loggerMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLoggerPlugin\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"getLoggerPlugin\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-logger/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js ***! \*************************************************************************************************************************/ /*! exports provided: loggerMiddleware, loggerMiddlewareOptions, getLoggerPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddleware\", function() { return loggerMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddlewareOptions\", function() { return loggerMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getLoggerPlugin\", function() { return getLoggerPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar loggerMiddleware = function () {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var clientName, commandName, inputFilterSensitiveLog, logger, outputFilterSensitiveLog, response, _a, $metadata, outputWithoutMetadata;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n clientName = context.clientName, commandName = context.commandName, inputFilterSensitiveLog = context.inputFilterSensitiveLog, logger = context.logger, outputFilterSensitiveLog = context.outputFilterSensitiveLog;\n return [4, next(args)];\n case 1:\n response = _b.sent();\n if (!logger) {\n return [2, response];\n }\n if (typeof logger.info === \"function\") {\n _a = response.output, $metadata = _a.$metadata, outputWithoutMetadata = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"$metadata\"]);\n logger.info({\n clientName: clientName,\n commandName: commandName,\n input: inputFilterSensitiveLog(args.input),\n output: outputFilterSensitiveLog(outputWithoutMetadata),\n metadata: $metadata,\n });\n }\n return [2, response];\n }\n });\n }); };\n };\n};\nvar loggerMiddlewareOptions = {\n name: \"loggerMiddleware\",\n tags: [\"LOGGER\"],\n step: \"initialize\",\n override: true,\n};\nvar getLoggerPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(loggerMiddleware(), loggerMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js ***! \*****************************************************************************************************************************/ /*! exports provided: AdaptiveRetryStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AdaptiveRetryStrategy\", function() { return AdaptiveRetryStrategy; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony import */ var _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./DefaultRateLimiter */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js\");\n/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./StandardRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js\");\n\n\n\n\nvar AdaptiveRetryStrategy = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AdaptiveRetryStrategy, _super);\n function AdaptiveRetryStrategy(maxAttemptsProvider, options) {\n var _this = this;\n var _a = options !== null && options !== void 0 ? options : {}, rateLimiter = _a.rateLimiter, superOptions = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"rateLimiter\"]);\n _this = _super.call(this, maxAttemptsProvider, superOptions) || this;\n _this.rateLimiter = rateLimiter !== null && rateLimiter !== void 0 ? rateLimiter : new _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_2__[\"DefaultRateLimiter\"]();\n _this.mode = _config__WEBPACK_IMPORTED_MODULE_1__[\"RETRY_MODES\"].ADAPTIVE;\n return _this;\n }\n AdaptiveRetryStrategy.prototype.retry = function (next, args) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _this = this;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, _super.prototype.retry.call(this, next, args, {\n beforeRequest: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, this.rateLimiter.getSendToken()];\n });\n }); },\n afterRequest: function (response) {\n _this.rateLimiter.updateClientSendingRate(response);\n },\n })];\n });\n });\n };\n return AdaptiveRetryStrategy;\n}(_StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_3__[\"StandardRetryStrategy\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js ***! \**************************************************************************************************************************/ /*! exports provided: DefaultRateLimiter */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultRateLimiter\", function() { return DefaultRateLimiter; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/index.js\");\n\n\nvar DefaultRateLimiter = (function () {\n function DefaultRateLimiter(options) {\n var _a, _b, _c, _d, _e;\n this.currentCapacity = 0;\n this.enabled = false;\n this.lastMaxRate = 0;\n this.measuredTxRate = 0;\n this.requestCount = 0;\n this.lastTimestamp = 0;\n this.timeWindow = 0;\n this.beta = (_a = options === null || options === void 0 ? void 0 : options.beta) !== null && _a !== void 0 ? _a : 0.7;\n this.minCapacity = (_b = options === null || options === void 0 ? void 0 : options.minCapacity) !== null && _b !== void 0 ? _b : 1;\n this.minFillRate = (_c = options === null || options === void 0 ? void 0 : options.minFillRate) !== null && _c !== void 0 ? _c : 0.5;\n this.scaleConstant = (_d = options === null || options === void 0 ? void 0 : options.scaleConstant) !== null && _d !== void 0 ? _d : 0.4;\n this.smooth = (_e = options === null || options === void 0 ? void 0 : options.smooth) !== null && _e !== void 0 ? _e : 0.8;\n var currentTimeInSeconds = this.getCurrentTimeInSeconds();\n this.lastThrottleTime = currentTimeInSeconds;\n this.lastTxRateBucket = Math.floor(this.getCurrentTimeInSeconds());\n this.fillRate = this.minFillRate;\n this.maxCapacity = this.minCapacity;\n }\n DefaultRateLimiter.prototype.getCurrentTimeInSeconds = function () {\n return Date.now() / 1000;\n };\n DefaultRateLimiter.prototype.getSendToken = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, this.acquireTokenBucket(1)];\n });\n });\n };\n DefaultRateLimiter.prototype.acquireTokenBucket = function (amount) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var delay_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!this.enabled) {\n return [2];\n }\n this.refillTokenBucket();\n if (!(amount > this.currentCapacity)) return [3, 2];\n delay_1 = ((amount - this.currentCapacity) / this.fillRate) * 1000;\n return [4, new Promise(function (resolve) { return setTimeout(resolve, delay_1); })];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n this.currentCapacity = this.currentCapacity - amount;\n return [2];\n }\n });\n });\n };\n DefaultRateLimiter.prototype.refillTokenBucket = function () {\n var timestamp = this.getCurrentTimeInSeconds();\n if (!this.lastTimestamp) {\n this.lastTimestamp = timestamp;\n return;\n }\n var fillAmount = (timestamp - this.lastTimestamp) * this.fillRate;\n this.currentCapacity = Math.min(this.maxCapacity, this.currentCapacity + fillAmount);\n this.lastTimestamp = timestamp;\n };\n DefaultRateLimiter.prototype.updateClientSendingRate = function (response) {\n var calculatedRate;\n this.updateMeasuredRate();\n if (Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_1__[\"isThrottlingError\"])(response)) {\n var rateToUse = !this.enabled ? this.measuredTxRate : Math.min(this.measuredTxRate, this.fillRate);\n this.lastMaxRate = rateToUse;\n this.calculateTimeWindow();\n this.lastThrottleTime = this.getCurrentTimeInSeconds();\n calculatedRate = this.cubicThrottle(rateToUse);\n this.enableTokenBucket();\n }\n else {\n this.calculateTimeWindow();\n calculatedRate = this.cubicSuccess(this.getCurrentTimeInSeconds());\n }\n var newRate = Math.min(calculatedRate, 2 * this.measuredTxRate);\n this.updateTokenBucketRate(newRate);\n };\n DefaultRateLimiter.prototype.calculateTimeWindow = function () {\n this.timeWindow = this.getPrecise(Math.pow((this.lastMaxRate * (1 - this.beta)) / this.scaleConstant, 1 / 3));\n };\n DefaultRateLimiter.prototype.cubicThrottle = function (rateToUse) {\n return this.getPrecise(rateToUse * this.beta);\n };\n DefaultRateLimiter.prototype.cubicSuccess = function (timestamp) {\n return this.getPrecise(this.scaleConstant * Math.pow(timestamp - this.lastThrottleTime - this.timeWindow, 3) + this.lastMaxRate);\n };\n DefaultRateLimiter.prototype.enableTokenBucket = function () {\n this.enabled = true;\n };\n DefaultRateLimiter.prototype.updateTokenBucketRate = function (newRate) {\n this.refillTokenBucket();\n this.fillRate = Math.max(newRate, this.minFillRate);\n this.maxCapacity = Math.max(newRate, this.minCapacity);\n this.currentCapacity = Math.min(this.currentCapacity, this.maxCapacity);\n };\n DefaultRateLimiter.prototype.updateMeasuredRate = function () {\n var t = this.getCurrentTimeInSeconds();\n var timeBucket = Math.floor(t * 2) / 2;\n this.requestCount++;\n if (timeBucket > this.lastTxRateBucket) {\n var currentRate = this.requestCount / (timeBucket - this.lastTxRateBucket);\n this.measuredTxRate = this.getPrecise(currentRate * this.smooth + this.measuredTxRate * (1 - this.smooth));\n this.requestCount = 0;\n this.lastTxRateBucket = timeBucket;\n }\n };\n DefaultRateLimiter.prototype.getPrecise = function (num) {\n return parseFloat(num.toFixed(8));\n };\n return DefaultRateLimiter;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js ***! \*****************************************************************************************************************************/ /*! exports provided: StandardRetryStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StandardRetryStrategy\", function() { return StandardRetryStrategy; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! uuid */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/index.js\");\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n/* harmony import */ var _defaultRetryQuota__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./defaultRetryQuota */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js\");\n/* harmony import */ var _delayDecider__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./delayDecider */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js\");\n/* harmony import */ var _retryDecider__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./retryDecider */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js\");\n\n\n\n\n\n\n\n\n\nvar StandardRetryStrategy = (function () {\n function StandardRetryStrategy(maxAttemptsProvider, options) {\n var _a, _b, _c;\n this.maxAttemptsProvider = maxAttemptsProvider;\n this.mode = _config__WEBPACK_IMPORTED_MODULE_4__[\"RETRY_MODES\"].STANDARD;\n this.retryDecider = (_a = options === null || options === void 0 ? void 0 : options.retryDecider) !== null && _a !== void 0 ? _a : _retryDecider__WEBPACK_IMPORTED_MODULE_8__[\"defaultRetryDecider\"];\n this.delayDecider = (_b = options === null || options === void 0 ? void 0 : options.delayDecider) !== null && _b !== void 0 ? _b : _delayDecider__WEBPACK_IMPORTED_MODULE_7__[\"defaultDelayDecider\"];\n this.retryQuota = (_c = options === null || options === void 0 ? void 0 : options.retryQuota) !== null && _c !== void 0 ? _c : Object(_defaultRetryQuota__WEBPACK_IMPORTED_MODULE_6__[\"getDefaultRetryQuota\"])(_constants__WEBPACK_IMPORTED_MODULE_5__[\"INITIAL_RETRY_TOKENS\"]);\n }\n StandardRetryStrategy.prototype.shouldRetry = function (error, attempts, maxAttempts) {\n return attempts < maxAttempts && this.retryDecider(error) && this.retryQuota.hasRetryTokens(error);\n };\n StandardRetryStrategy.prototype.getMaxAttempts = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var maxAttempts, error_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4, this.maxAttemptsProvider()];\n case 1:\n maxAttempts = _a.sent();\n return [3, 3];\n case 2:\n error_1 = _a.sent();\n maxAttempts = _config__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_MAX_ATTEMPTS\"];\n return [3, 3];\n case 3: return [2, maxAttempts];\n }\n });\n });\n };\n StandardRetryStrategy.prototype.retry = function (next, args, options) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var retryTokenAmount, attempts, totalDelay, maxAttempts, request, _loop_1, this_1, state_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n attempts = 0;\n totalDelay = 0;\n return [4, this.getMaxAttempts()];\n case 1:\n maxAttempts = _a.sent();\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_5__[\"INVOCATION_ID_HEADER\"]] = Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v4\"])();\n }\n _loop_1 = function () {\n var _b, response, output, e_1, err, delayFromDecider, delayFromResponse, delay_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _c.trys.push([0, 4, , 7]);\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_5__[\"REQUEST_HEADER\"]] = \"attempt=\".concat(attempts + 1, \"; max=\").concat(maxAttempts);\n }\n if (!(options === null || options === void 0 ? void 0 : options.beforeRequest)) return [3, 2];\n return [4, options.beforeRequest()];\n case 1:\n _c.sent();\n _c.label = 2;\n case 2: return [4, next(args)];\n case 3:\n _b = _c.sent(), response = _b.response, output = _b.output;\n if (options === null || options === void 0 ? void 0 : options.afterRequest) {\n options.afterRequest(response);\n }\n this_1.retryQuota.releaseRetryTokens(retryTokenAmount);\n output.$metadata.attempts = attempts + 1;\n output.$metadata.totalRetryDelay = totalDelay;\n return [2, { value: { response: response, output: output } }];\n case 4:\n e_1 = _c.sent();\n err = asSdkError(e_1);\n attempts++;\n if (!this_1.shouldRetry(err, attempts, maxAttempts)) return [3, 6];\n retryTokenAmount = this_1.retryQuota.retrieveRetryTokens(err);\n delayFromDecider = this_1.delayDecider(Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_2__[\"isThrottlingError\"])(err) ? _constants__WEBPACK_IMPORTED_MODULE_5__[\"THROTTLING_RETRY_DELAY_BASE\"] : _constants__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_RETRY_DELAY_BASE\"], attempts);\n delayFromResponse = getDelayFromRetryAfterHeader(err.$response);\n delay_1 = Math.max(delayFromResponse || 0, delayFromDecider);\n totalDelay += delay_1;\n return [4, new Promise(function (resolve) { return setTimeout(resolve, delay_1); })];\n case 5:\n _c.sent();\n return [2, \"continue\"];\n case 6:\n if (!err.$metadata) {\n err.$metadata = {};\n }\n err.$metadata.attempts = attempts;\n err.$metadata.totalRetryDelay = totalDelay;\n throw err;\n case 7: return [2];\n }\n });\n };\n this_1 = this;\n _a.label = 2;\n case 2:\n if (false) {}\n return [5, _loop_1()];\n case 3:\n state_1 = _a.sent();\n if (typeof state_1 === \"object\")\n return [2, state_1.value];\n return [3, 2];\n case 4: return [2];\n }\n });\n });\n };\n return StandardRetryStrategy;\n}());\n\nvar getDelayFromRetryAfterHeader = function (response) {\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"].isInstance(response))\n return;\n var retryAfterHeaderName = Object.keys(response.headers).find(function (key) { return key.toLowerCase() === \"retry-after\"; });\n if (!retryAfterHeaderName)\n return;\n var retryAfter = response.headers[retryAfterHeaderName];\n var retryAfterSeconds = Number(retryAfter);\n if (!Number.isNaN(retryAfterSeconds))\n return retryAfterSeconds * 1000;\n var retryAfterDate = new Date(retryAfter);\n return retryAfterDate.getTime() - Date.now();\n};\nvar asSdkError = function (error) {\n if (error instanceof Error)\n return error;\n if (error instanceof Object)\n return Object.assign(new Error(), error);\n if (typeof error === \"string\")\n return new Error(error);\n return new Error(\"AWS SDK error wrapper for \".concat(error));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/config.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/config.js ***! \**************************************************************************************************************/ /*! exports provided: RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RETRY_MODES\", function() { return RETRY_MODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_ATTEMPTS\", function() { return DEFAULT_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_MODE\", function() { return DEFAULT_RETRY_MODE; });\nvar RETRY_MODES;\n(function (RETRY_MODES) {\n RETRY_MODES[\"STANDARD\"] = \"standard\";\n RETRY_MODES[\"ADAPTIVE\"] = \"adaptive\";\n})(RETRY_MODES || (RETRY_MODES = {}));\nvar DEFAULT_MAX_ATTEMPTS = 3;\nvar DEFAULT_RETRY_MODE = RETRY_MODES.STANDARD;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/config.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js ***! \**********************************************************************************************************************/ /*! exports provided: ENV_MAX_ATTEMPTS, CONFIG_MAX_ATTEMPTS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, ENV_RETRY_MODE, CONFIG_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_MAX_ATTEMPTS\", function() { return ENV_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_MAX_ATTEMPTS\", function() { return CONFIG_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\", function() { return NODE_MAX_ATTEMPT_CONFIG_OPTIONS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveRetryConfig\", function() { return resolveRetryConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_RETRY_MODE\", function() { return ENV_RETRY_MODE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_RETRY_MODE\", function() { return CONFIG_RETRY_MODE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_RETRY_MODE_CONFIG_OPTIONS\", function() { return NODE_RETRY_MODE_CONFIG_OPTIONS; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n/* harmony import */ var _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AdaptiveRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js\");\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./StandardRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js\");\n\n\n\n\n\nvar ENV_MAX_ATTEMPTS = \"AWS_MAX_ATTEMPTS\";\nvar CONFIG_MAX_ATTEMPTS = \"max_attempts\";\nvar NODE_MAX_ATTEMPT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n var value = env[ENV_MAX_ATTEMPTS];\n if (!value)\n return undefined;\n var maxAttempt = parseInt(value);\n if (Number.isNaN(maxAttempt)) {\n throw new Error(\"Environment variable \".concat(ENV_MAX_ATTEMPTS, \" mast be a number, got \\\"\").concat(value, \"\\\"\"));\n }\n return maxAttempt;\n },\n configFileSelector: function (profile) {\n var value = profile[CONFIG_MAX_ATTEMPTS];\n if (!value)\n return undefined;\n var maxAttempt = parseInt(value);\n if (Number.isNaN(maxAttempt)) {\n throw new Error(\"Shared config file entry \".concat(CONFIG_MAX_ATTEMPTS, \" mast be a number, got \\\"\").concat(value, \"\\\"\"));\n }\n return maxAttempt;\n },\n default: _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_MAX_ATTEMPTS\"],\n};\nvar resolveRetryConfig = function (input) {\n var _a;\n var maxAttempts = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])((_a = input.maxAttempts) !== null && _a !== void 0 ? _a : _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_MAX_ATTEMPTS\"]);\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { maxAttempts: maxAttempts, retryStrategy: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var retryMode;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (input.retryStrategy) {\n return [2, input.retryStrategy];\n }\n return [4, Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(input.retryMode)()];\n case 1:\n retryMode = _a.sent();\n if (retryMode === _config__WEBPACK_IMPORTED_MODULE_3__[\"RETRY_MODES\"].ADAPTIVE) {\n return [2, new _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_2__[\"AdaptiveRetryStrategy\"](maxAttempts)];\n }\n return [2, new _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_4__[\"StandardRetryStrategy\"](maxAttempts)];\n }\n });\n }); } });\n};\nvar ENV_RETRY_MODE = \"AWS_RETRY_MODE\";\nvar CONFIG_RETRY_MODE = \"retry_mode\";\nvar NODE_RETRY_MODE_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) { return env[ENV_RETRY_MODE]; },\n configFileSelector: function (profile) { return profile[CONFIG_RETRY_MODE]; },\n default: _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_RETRY_MODE\"],\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js ***! \*****************************************************************************************************************/ /*! exports provided: DEFAULT_RETRY_DELAY_BASE, MAXIMUM_RETRY_DELAY, THROTTLING_RETRY_DELAY_BASE, INITIAL_RETRY_TOKENS, RETRY_COST, TIMEOUT_RETRY_COST, NO_RETRY_INCREMENT, INVOCATION_ID_HEADER, REQUEST_HEADER */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_DELAY_BASE\", function() { return DEFAULT_RETRY_DELAY_BASE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAXIMUM_RETRY_DELAY\", function() { return MAXIMUM_RETRY_DELAY; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"THROTTLING_RETRY_DELAY_BASE\", function() { return THROTTLING_RETRY_DELAY_BASE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INITIAL_RETRY_TOKENS\", function() { return INITIAL_RETRY_TOKENS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RETRY_COST\", function() { return RETRY_COST; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TIMEOUT_RETRY_COST\", function() { return TIMEOUT_RETRY_COST; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NO_RETRY_INCREMENT\", function() { return NO_RETRY_INCREMENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INVOCATION_ID_HEADER\", function() { return INVOCATION_ID_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REQUEST_HEADER\", function() { return REQUEST_HEADER; });\nvar DEFAULT_RETRY_DELAY_BASE = 100;\nvar MAXIMUM_RETRY_DELAY = 20 * 1000;\nvar THROTTLING_RETRY_DELAY_BASE = 500;\nvar INITIAL_RETRY_TOKENS = 500;\nvar RETRY_COST = 5;\nvar TIMEOUT_RETRY_COST = 10;\nvar NO_RETRY_INCREMENT = 1;\nvar INVOCATION_ID_HEADER = \"amz-sdk-invocation-id\";\nvar REQUEST_HEADER = \"amz-sdk-request\";\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js ***! \*************************************************************************************************************************/ /*! exports provided: getDefaultRetryQuota */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getDefaultRetryQuota\", function() { return getDefaultRetryQuota; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n\nvar getDefaultRetryQuota = function (initialRetryTokens, options) {\n var _a, _b, _c;\n var MAX_CAPACITY = initialRetryTokens;\n var noRetryIncrement = (_a = options === null || options === void 0 ? void 0 : options.noRetryIncrement) !== null && _a !== void 0 ? _a : _constants__WEBPACK_IMPORTED_MODULE_0__[\"NO_RETRY_INCREMENT\"];\n var retryCost = (_b = options === null || options === void 0 ? void 0 : options.retryCost) !== null && _b !== void 0 ? _b : _constants__WEBPACK_IMPORTED_MODULE_0__[\"RETRY_COST\"];\n var timeoutRetryCost = (_c = options === null || options === void 0 ? void 0 : options.timeoutRetryCost) !== null && _c !== void 0 ? _c : _constants__WEBPACK_IMPORTED_MODULE_0__[\"TIMEOUT_RETRY_COST\"];\n var availableCapacity = initialRetryTokens;\n var getCapacityAmount = function (error) { return (error.name === \"TimeoutError\" ? timeoutRetryCost : retryCost); };\n var hasRetryTokens = function (error) { return getCapacityAmount(error) <= availableCapacity; };\n var retrieveRetryTokens = function (error) {\n if (!hasRetryTokens(error)) {\n throw new Error(\"No retry token available\");\n }\n var capacityAmount = getCapacityAmount(error);\n availableCapacity -= capacityAmount;\n return capacityAmount;\n };\n var releaseRetryTokens = function (capacityReleaseAmount) {\n availableCapacity += capacityReleaseAmount !== null && capacityReleaseAmount !== void 0 ? capacityReleaseAmount : noRetryIncrement;\n availableCapacity = Math.min(availableCapacity, MAX_CAPACITY);\n };\n return Object.freeze({\n hasRetryTokens: hasRetryTokens,\n retrieveRetryTokens: retrieveRetryTokens,\n releaseRetryTokens: releaseRetryTokens,\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js ***! \********************************************************************************************************************/ /*! exports provided: defaultDelayDecider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultDelayDecider\", function() { return defaultDelayDecider; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n\nvar defaultDelayDecider = function (delayBase, attempts) {\n return Math.floor(Math.min(_constants__WEBPACK_IMPORTED_MODULE_0__[\"MAXIMUM_RETRY_DELAY\"], Math.random() * Math.pow(2, attempts) * delayBase));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/index.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/index.js ***! \*************************************************************************************************************/ /*! exports provided: AdaptiveRetryStrategy, DefaultRateLimiter, StandardRetryStrategy, RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, ENV_MAX_ATTEMPTS, CONFIG_MAX_ATTEMPTS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, ENV_RETRY_MODE, CONFIG_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, defaultDelayDecider, omitRetryHeadersMiddleware, omitRetryHeadersMiddlewareOptions, getOmitRetryHeadersPlugin, defaultRetryDecider, retryMiddleware, retryMiddlewareOptions, getRetryPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AdaptiveRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AdaptiveRetryStrategy\", function() { return _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_0__[\"AdaptiveRetryStrategy\"]; });\n\n/* harmony import */ var _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./DefaultRateLimiter */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultRateLimiter\", function() { return _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_1__[\"DefaultRateLimiter\"]; });\n\n/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./StandardRetryStrategy */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StandardRetryStrategy\", function() { return _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_2__[\"StandardRetryStrategy\"]; });\n\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RETRY_MODES\", function() { return _config__WEBPACK_IMPORTED_MODULE_3__[\"RETRY_MODES\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_ATTEMPTS\", function() { return _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_MODE\", function() { return _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_RETRY_MODE\"]; });\n\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_MAX_ATTEMPTS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"ENV_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_MAX_ATTEMPTS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"CONFIG_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRetryConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"resolveRetryConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_RETRY_MODE\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"ENV_RETRY_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_RETRY_MODE\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"CONFIG_RETRY_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_RETRY_MODE_CONFIG_OPTIONS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"NODE_RETRY_MODE_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _delayDecider__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./delayDecider */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultDelayDecider\", function() { return _delayDecider__WEBPACK_IMPORTED_MODULE_5__[\"defaultDelayDecider\"]; });\n\n/* harmony import */ var _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./omitRetryHeadersMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddleware\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__[\"omitRetryHeadersMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddlewareOptions\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__[\"omitRetryHeadersMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getOmitRetryHeadersPlugin\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__[\"getOmitRetryHeadersPlugin\"]; });\n\n/* harmony import */ var _retryDecider__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./retryDecider */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultRetryDecider\", function() { return _retryDecider__WEBPACK_IMPORTED_MODULE_7__[\"defaultRetryDecider\"]; });\n\n/* harmony import */ var _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./retryMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retryMiddleware\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__[\"retryMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retryMiddlewareOptions\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__[\"retryMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRetryPlugin\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__[\"getRetryPlugin\"]; });\n\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/types.js\");\n/* empty/unused harmony star reexport */\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js ***! \**********************************************************************************************************************************/ /*! exports provided: omitRetryHeadersMiddleware, omitRetryHeadersMiddlewareOptions, getOmitRetryHeadersPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddleware\", function() { return omitRetryHeadersMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddlewareOptions\", function() { return omitRetryHeadersMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getOmitRetryHeadersPlugin\", function() { return getOmitRetryHeadersPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n\n\n\nvar omitRetryHeadersMiddleware = function () {\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n delete request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"INVOCATION_ID_HEADER\"]];\n delete request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"REQUEST_HEADER\"]];\n }\n return [2, next(args)];\n });\n }); };\n };\n};\nvar omitRetryHeadersMiddlewareOptions = {\n name: \"omitRetryHeadersMiddleware\",\n tags: [\"RETRY\", \"HEADERS\", \"OMIT_RETRY_HEADERS\"],\n relation: \"before\",\n toMiddleware: \"awsAuthMiddleware\",\n override: true,\n};\nvar getOmitRetryHeadersPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(omitRetryHeadersMiddleware(), omitRetryHeadersMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js ***! \********************************************************************************************************************/ /*! exports provided: defaultRetryDecider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRetryDecider\", function() { return defaultRetryDecider; });\n/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/index.js\");\n\nvar defaultRetryDecider = function (error) {\n if (!error) {\n return false;\n }\n return Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isRetryableByTrait\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isClockSkewError\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isThrottlingError\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isTransientError\"])(error);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js ***! \***********************************************************************************************************************/ /*! exports provided: retryMiddleware, retryMiddlewareOptions, getRetryPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"retryMiddleware\", function() { return retryMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"retryMiddlewareOptions\", function() { return retryMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRetryPlugin\", function() { return getRetryPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar retryMiddleware = function (options) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var retryStrategy;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, options.retryStrategy()];\n case 1:\n retryStrategy = _a.sent();\n if (retryStrategy === null || retryStrategy === void 0 ? void 0 : retryStrategy.mode)\n context.userAgent = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])((context.userAgent || [])), false), [[\"cfg/retry-mode\", retryStrategy.mode]], false);\n return [2, retryStrategy.retry(next, args)];\n }\n });\n }); };\n };\n};\nvar retryMiddlewareOptions = {\n name: \"retryMiddleware\",\n tags: [\"RETRY\"],\n step: \"finalizeRequest\",\n priority: \"high\",\n override: true,\n};\nvar getRetryPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(retryMiddleware(options), retryMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/types.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/types.js ***! \*************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-retry/dist-es/types.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js ***! \******************************************************************************************************************************/ /*! exports provided: deserializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddleware\", function() { return deserializerMiddleware; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar deserializerMiddleware = function (options, deserializer) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response, parsed, error_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, next(args)];\n case 1:\n response = (_a.sent()).response;\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4, deserializer(response, options)];\n case 3:\n parsed = _a.sent();\n return [2, {\n response: response,\n output: parsed,\n }];\n case 4:\n error_1 = _a.sent();\n Object.defineProperty(error_1, \"$response\", {\n value: response,\n });\n throw error_1;\n case 5: return [2];\n }\n });\n }); };\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/index.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/index.js ***! \*************************************************************************************************************/ /*! exports provided: deserializerMiddleware, deserializerMiddlewareOption, serializerMiddlewareOption, getSerdePlugin, serializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./deserializerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddleware\", function() { return _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"deserializerMiddleware\"]; });\n\n/* harmony import */ var _serdePlugin__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./serdePlugin */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddlewareOption\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_1__[\"deserializerMiddlewareOption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddlewareOption\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_1__[\"serializerMiddlewareOption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSerdePlugin\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"]; });\n\n/* harmony import */ var _serializerMiddleware__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./serializerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddleware\", function() { return _serializerMiddleware__WEBPACK_IMPORTED_MODULE_2__[\"serializerMiddleware\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js ***! \*******************************************************************************************************************/ /*! exports provided: deserializerMiddlewareOption, serializerMiddlewareOption, getSerdePlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddlewareOption\", function() { return deserializerMiddlewareOption; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddlewareOption\", function() { return serializerMiddlewareOption; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSerdePlugin\", function() { return getSerdePlugin; });\n/* harmony import */ var _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./deserializerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js\");\n/* harmony import */ var _serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./serializerMiddleware */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js\");\n\n\nvar deserializerMiddlewareOption = {\n name: \"deserializerMiddleware\",\n step: \"deserialize\",\n tags: [\"DESERIALIZER\"],\n override: true,\n};\nvar serializerMiddlewareOption = {\n name: \"serializerMiddleware\",\n step: \"serialize\",\n tags: [\"SERIALIZER\"],\n override: true,\n};\nfunction getSerdePlugin(config, serializer, deserializer) {\n return {\n applyToStack: function (commandStack) {\n commandStack.add(Object(_deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"deserializerMiddleware\"])(config, deserializer), deserializerMiddlewareOption);\n commandStack.add(Object(_serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"serializerMiddleware\"])(config, serializer), serializerMiddlewareOption);\n },\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js ***! \****************************************************************************************************************************/ /*! exports provided: serializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddleware\", function() { return serializerMiddleware; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar serializerMiddleware = function (options, serializer) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var endpoint, request;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n endpoint = ((_a = context.endpointV2) === null || _a === void 0 ? void 0 : _a.url) && options.urlParser\n ? function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, options.urlParser(context.endpointV2.url)];\n }); }); }\n : options.endpoint;\n if (!endpoint) {\n throw new Error(\"No valid endpoint provider available.\");\n }\n return [4, serializer(args.input, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, options), { endpoint: endpoint }))];\n case 1:\n request = _b.sent();\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n }); };\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js ***! \************************************************************************************************************************/ /*! exports provided: resolveAwsAuthConfig, resolveSigV4AuthConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveAwsAuthConfig\", function() { return resolveAwsAuthConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveSigV4AuthConfig\", function() { return resolveSigV4AuthConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/property-provider */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/signature-v4 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n\n\n\n\nvar CREDENTIAL_EXPIRE_WINDOW = 300000;\nvar resolveAwsAuthConfig = function (input) {\n var normalizedCreds = input.credentials\n ? normalizeCredentialProvider(input.credentials)\n : input.credentialDefaultProvider(input);\n var _a = input.signingEscapePath, signingEscapePath = _a === void 0 ? true : _a, _b = input.systemClockOffset, systemClockOffset = _b === void 0 ? input.systemClockOffset || 0 : _b, sha256 = input.sha256;\n var signer;\n if (input.signer) {\n signer = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(input.signer);\n }\n else if (input.regionInfoProvider) {\n signer = function () {\n return Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(input.region)()\n .then(function (region) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, _b, _c;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _b = (_a = input).regionInfoProvider;\n _c = [region];\n _d = {};\n return [4, input.useFipsEndpoint()];\n case 1:\n _d.useFipsEndpoint = _e.sent();\n return [4, input.useDualstackEndpoint()];\n case 2: return [4, _b.apply(_a, _c.concat([(_d.useDualstackEndpoint = _e.sent(),\n _d)]))];\n case 3: return [2, [\n (_e.sent()) || {},\n region\n ]];\n }\n });\n }); })\n .then(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), regionInfo = _b[0], region = _b[1];\n var signingRegion = regionInfo.signingRegion, signingService = regionInfo.signingService;\n input.signingRegion = input.signingRegion || signingRegion || region;\n input.signingName = input.signingName || signingService || input.serviceId;\n var params = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { credentials: normalizedCreds, region: input.signingRegion, service: input.signingName, sha256: sha256, uriEscapePath: signingEscapePath });\n var SignerCtor = input.signerConstructor || _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__[\"SignatureV4\"];\n return new SignerCtor(params);\n });\n };\n }\n else {\n signer = function (authScheme) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var signingRegion, signingService, params, SignerCtor;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (!authScheme) {\n throw new Error(\"Unexpected empty auth scheme config\");\n }\n signingRegion = authScheme.signingScope;\n signingService = authScheme.signingName;\n input.signingRegion = input.signingRegion || signingRegion;\n input.signingName = input.signingName || signingService || input.serviceId;\n params = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { credentials: normalizedCreds, region: input.signingRegion, service: input.signingName, sha256: sha256, uriEscapePath: signingEscapePath });\n SignerCtor = input.signerConstructor || _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__[\"SignatureV4\"];\n return [2, new SignerCtor(params)];\n });\n }); };\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { systemClockOffset: systemClockOffset, signingEscapePath: signingEscapePath, credentials: normalizedCreds, signer: signer });\n};\nvar resolveSigV4AuthConfig = function (input) {\n var normalizedCreds = input.credentials\n ? normalizeCredentialProvider(input.credentials)\n : input.credentialDefaultProvider(input);\n var _a = input.signingEscapePath, signingEscapePath = _a === void 0 ? true : _a, _b = input.systemClockOffset, systemClockOffset = _b === void 0 ? input.systemClockOffset || 0 : _b, sha256 = input.sha256;\n var signer;\n if (input.signer) {\n signer = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(input.signer);\n }\n else {\n signer = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(new _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__[\"SignatureV4\"]({\n credentials: normalizedCreds,\n region: input.region,\n service: input.signingName,\n sha256: sha256,\n uriEscapePath: signingEscapePath,\n }));\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { systemClockOffset: systemClockOffset, signingEscapePath: signingEscapePath, credentials: normalizedCreds, signer: signer });\n};\nvar normalizeCredentialProvider = function (credentials) {\n if (typeof credentials === \"function\") {\n return Object(_aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_1__[\"memoize\"])(credentials, function (credentials) {\n return credentials.expiration !== undefined &&\n credentials.expiration.getTime() - Date.now() < CREDENTIAL_EXPIRE_WINDOW;\n }, function (credentials) { return credentials.expiration !== undefined; });\n }\n return Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(credentials);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/index.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/index.js ***! \***************************************************************************************************************/ /*! exports provided: resolveAwsAuthConfig, resolveSigV4AuthConfig, awsAuthMiddleware, awsAuthMiddlewareOptions, getAwsAuthPlugin, getSigV4AuthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveAwsAuthConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveAwsAuthConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveSigV4AuthConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveSigV4AuthConfig\"]; });\n\n/* harmony import */ var _middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./middleware */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddleware\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"awsAuthMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddlewareOptions\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"awsAuthMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getAwsAuthPlugin\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"getAwsAuthPlugin\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSigV4AuthPlugin\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"getSigV4AuthPlugin\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js ***! \********************************************************************************************************************/ /*! exports provided: awsAuthMiddleware, awsAuthMiddlewareOptions, getAwsAuthPlugin, getSigV4AuthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddleware\", function() { return awsAuthMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddlewareOptions\", function() { return awsAuthMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getAwsAuthPlugin\", function() { return getAwsAuthPlugin; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSigV4AuthPlugin\", function() { return getSigV4AuthPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _utils_getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/getSkewCorrectedDate */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js\");\n/* harmony import */ var _utils_getUpdatedSystemClockOffset__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/getUpdatedSystemClockOffset */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js\");\n\n\n\n\nvar awsAuthMiddleware = function (options) {\n return function (next, context) {\n return function (args) {\n var _a, _b, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var authScheme, signer, output, _d, _e, dateHeader;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(args.request))\n return [2, next(args)];\n authScheme = (_c = (_b = (_a = (context.endpointV2)) === null || _a === void 0 ? void 0 : _a.properties) === null || _b === void 0 ? void 0 : _b.authSchemes) === null || _c === void 0 ? void 0 : _c[0];\n return [4, options.signer(authScheme)];\n case 1:\n signer = _g.sent();\n _d = next;\n _e = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args)];\n _f = {};\n return [4, signer.sign(args.request, {\n signingDate: Object(_utils_getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_2__[\"getSkewCorrectedDate\"])(options.systemClockOffset),\n signingRegion: context[\"signing_region\"],\n signingService: context[\"signing_service\"],\n })];\n case 2: return [4, _d.apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_f.request = _g.sent(), _f)]))]).catch(function (error) {\n var _a;\n var serverTime = (_a = error.ServerTime) !== null && _a !== void 0 ? _a : getDateHeader(error.$response);\n if (serverTime) {\n options.systemClockOffset = Object(_utils_getUpdatedSystemClockOffset__WEBPACK_IMPORTED_MODULE_3__[\"getUpdatedSystemClockOffset\"])(serverTime, options.systemClockOffset);\n }\n throw error;\n })];\n case 3:\n output = _g.sent();\n dateHeader = getDateHeader(output.response);\n if (dateHeader) {\n options.systemClockOffset = Object(_utils_getUpdatedSystemClockOffset__WEBPACK_IMPORTED_MODULE_3__[\"getUpdatedSystemClockOffset\"])(dateHeader, options.systemClockOffset);\n }\n return [2, output];\n }\n });\n });\n };\n };\n};\nvar getDateHeader = function (response) { var _a, _b, _c; return _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"].isInstance(response) ? (_b = (_a = response.headers) === null || _a === void 0 ? void 0 : _a.date) !== null && _b !== void 0 ? _b : (_c = response.headers) === null || _c === void 0 ? void 0 : _c.Date : undefined; };\nvar awsAuthMiddlewareOptions = {\n name: \"awsAuthMiddleware\",\n tags: [\"SIGNATURE\", \"AWSAUTH\"],\n relation: \"after\",\n toMiddleware: \"retryMiddleware\",\n override: true,\n};\nvar getAwsAuthPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(awsAuthMiddleware(options), awsAuthMiddlewareOptions);\n },\n}); };\nvar getSigV4AuthPlugin = getAwsAuthPlugin;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js": /*!************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js ***! \************************************************************************************************************************************/ /*! exports provided: getSkewCorrectedDate */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSkewCorrectedDate\", function() { return getSkewCorrectedDate; });\nvar getSkewCorrectedDate = function (systemClockOffset) { return new Date(Date.now() + systemClockOffset); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js": /*!*******************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js ***! \*******************************************************************************************************************************************/ /*! exports provided: getUpdatedSystemClockOffset */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUpdatedSystemClockOffset\", function() { return getUpdatedSystemClockOffset; });\n/* harmony import */ var _isClockSkewed__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isClockSkewed */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js\");\n\nvar getUpdatedSystemClockOffset = function (clockTime, currentSystemClockOffset) {\n var clockTimeInMs = Date.parse(clockTime);\n if (Object(_isClockSkewed__WEBPACK_IMPORTED_MODULE_0__[\"isClockSkewed\"])(clockTimeInMs, currentSystemClockOffset)) {\n return clockTimeInMs - Date.now();\n }\n return currentSystemClockOffset;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js ***! \*****************************************************************************************************************************/ /*! exports provided: isClockSkewed */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isClockSkewed\", function() { return isClockSkewed; });\n/* harmony import */ var _getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getSkewCorrectedDate */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js\");\n\nvar isClockSkewed = function (clockTime, systemClockOffset) {\n return Math.abs(Object(_getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_0__[\"getSkewCorrectedDate\"])(systemClockOffset).getTime() - clockTime) >= 300000;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js ***! \***********************************************************************************************************************/ /*! exports provided: constructStack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"constructStack\", function() { return constructStack; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar constructStack = function () {\n var absoluteEntries = [];\n var relativeEntries = [];\n var entriesNameSet = new Set();\n var sort = function (entries) {\n return entries.sort(function (a, b) {\n return stepWeights[b.step] - stepWeights[a.step] ||\n priorityWeights[b.priority || \"normal\"] - priorityWeights[a.priority || \"normal\"];\n });\n };\n var removeByName = function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n if (entry.name && entry.name === toRemove) {\n isRemoved = true;\n entriesNameSet.delete(toRemove);\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n };\n var removeByReference = function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n if (entry.middleware === toRemove) {\n isRemoved = true;\n if (entry.name)\n entriesNameSet.delete(entry.name);\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n };\n var cloneTo = function (toStack) {\n absoluteEntries.forEach(function (entry) {\n toStack.add(entry.middleware, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry));\n });\n relativeEntries.forEach(function (entry) {\n toStack.addRelativeTo(entry.middleware, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry));\n });\n return toStack;\n };\n var expandRelativeMiddlewareList = function (from) {\n var expandedMiddlewareList = [];\n from.before.forEach(function (entry) {\n if (entry.before.length === 0 && entry.after.length === 0) {\n expandedMiddlewareList.push(entry);\n }\n else {\n expandedMiddlewareList.push.apply(expandedMiddlewareList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(expandRelativeMiddlewareList(entry)), false));\n }\n });\n expandedMiddlewareList.push(from);\n from.after.reverse().forEach(function (entry) {\n if (entry.before.length === 0 && entry.after.length === 0) {\n expandedMiddlewareList.push(entry);\n }\n else {\n expandedMiddlewareList.push.apply(expandedMiddlewareList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(expandRelativeMiddlewareList(entry)), false));\n }\n });\n return expandedMiddlewareList;\n };\n var getMiddlewareList = function (debug) {\n if (debug === void 0) { debug = false; }\n var normalizedAbsoluteEntries = [];\n var normalizedRelativeEntries = [];\n var normalizedEntriesNameMap = {};\n absoluteEntries.forEach(function (entry) {\n var normalizedEntry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry), { before: [], after: [] });\n if (normalizedEntry.name)\n normalizedEntriesNameMap[normalizedEntry.name] = normalizedEntry;\n normalizedAbsoluteEntries.push(normalizedEntry);\n });\n relativeEntries.forEach(function (entry) {\n var normalizedEntry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry), { before: [], after: [] });\n if (normalizedEntry.name)\n normalizedEntriesNameMap[normalizedEntry.name] = normalizedEntry;\n normalizedRelativeEntries.push(normalizedEntry);\n });\n normalizedRelativeEntries.forEach(function (entry) {\n if (entry.toMiddleware) {\n var toMiddleware = normalizedEntriesNameMap[entry.toMiddleware];\n if (toMiddleware === undefined) {\n if (debug) {\n return;\n }\n throw new Error(\"\".concat(entry.toMiddleware, \" is not found when adding \").concat(entry.name || \"anonymous\", \" middleware \").concat(entry.relation, \" \").concat(entry.toMiddleware));\n }\n if (entry.relation === \"after\") {\n toMiddleware.after.push(entry);\n }\n if (entry.relation === \"before\") {\n toMiddleware.before.push(entry);\n }\n }\n });\n var mainChain = sort(normalizedAbsoluteEntries)\n .map(expandRelativeMiddlewareList)\n .reduce(function (wholeList, expendedMiddlewareList) {\n wholeList.push.apply(wholeList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(expendedMiddlewareList), false));\n return wholeList;\n }, []);\n return mainChain;\n };\n var stack = {\n add: function (middleware, options) {\n if (options === void 0) { options = {}; }\n var name = options.name, override = options.override;\n var entry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ step: \"initialize\", priority: \"normal\", middleware: middleware }, options);\n if (name) {\n if (entriesNameSet.has(name)) {\n if (!override)\n throw new Error(\"Duplicate middleware name '\".concat(name, \"'\"));\n var toOverrideIndex = absoluteEntries.findIndex(function (entry) { return entry.name === name; });\n var toOverride = absoluteEntries[toOverrideIndex];\n if (toOverride.step !== entry.step || toOverride.priority !== entry.priority) {\n throw new Error(\"\\\"\".concat(name, \"\\\" middleware with \").concat(toOverride.priority, \" priority in \").concat(toOverride.step, \" step cannot be \") +\n \"overridden by same-name middleware with \".concat(entry.priority, \" priority in \").concat(entry.step, \" step.\"));\n }\n absoluteEntries.splice(toOverrideIndex, 1);\n }\n entriesNameSet.add(name);\n }\n absoluteEntries.push(entry);\n },\n addRelativeTo: function (middleware, options) {\n var name = options.name, override = options.override;\n var entry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ middleware: middleware }, options);\n if (name) {\n if (entriesNameSet.has(name)) {\n if (!override)\n throw new Error(\"Duplicate middleware name '\".concat(name, \"'\"));\n var toOverrideIndex = relativeEntries.findIndex(function (entry) { return entry.name === name; });\n var toOverride = relativeEntries[toOverrideIndex];\n if (toOverride.toMiddleware !== entry.toMiddleware || toOverride.relation !== entry.relation) {\n throw new Error(\"\\\"\".concat(name, \"\\\" middleware \").concat(toOverride.relation, \" \\\"\").concat(toOverride.toMiddleware, \"\\\" middleware cannot be overridden \") +\n \"by same-name middleware \".concat(entry.relation, \" \\\"\").concat(entry.toMiddleware, \"\\\" middleware.\"));\n }\n relativeEntries.splice(toOverrideIndex, 1);\n }\n entriesNameSet.add(name);\n }\n relativeEntries.push(entry);\n },\n clone: function () { return cloneTo(constructStack()); },\n use: function (plugin) {\n plugin.applyToStack(stack);\n },\n remove: function (toRemove) {\n if (typeof toRemove === \"string\")\n return removeByName(toRemove);\n else\n return removeByReference(toRemove);\n },\n removeByTag: function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n var tags = entry.tags, name = entry.name;\n if (tags && tags.includes(toRemove)) {\n if (name)\n entriesNameSet.delete(name);\n isRemoved = true;\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n },\n concat: function (from) {\n var cloned = cloneTo(constructStack());\n cloned.use(from);\n return cloned;\n },\n applyToStack: cloneTo,\n identify: function () {\n return getMiddlewareList(true).map(function (mw) {\n return mw.name + \": \" + (mw.tags || []).join(\",\");\n });\n },\n resolve: function (handler, context) {\n var e_1, _a;\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(getMiddlewareList()\n .map(function (entry) { return entry.middleware; })\n .reverse()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var middleware = _c.value;\n handler = middleware(handler, context);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return handler;\n },\n };\n return stack;\n};\nvar stepWeights = {\n initialize: 5,\n serialize: 4,\n build: 3,\n finalizeRequest: 2,\n deserialize: 1,\n};\nvar priorityWeights = {\n high: 3,\n normal: 2,\n low: 1,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-stack/dist-es/index.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-stack/dist-es/index.js ***! \*************************************************************************************************************/ /*! exports provided: constructStack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _MiddlewareStack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./MiddlewareStack */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"constructStack\", function() { return _MiddlewareStack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-stack/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js ***! \***************************************************************************************************************************/ /*! exports provided: resolveUserAgentConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveUserAgentConfig\", function() { return resolveUserAgentConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nfunction resolveUserAgentConfig(input) {\n 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 });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js ***! \**********************************************************************************************************************/ /*! exports provided: USER_AGENT, X_AMZ_USER_AGENT, SPACE, UA_ESCAPE_REGEX */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"USER_AGENT\", function() { return USER_AGENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"X_AMZ_USER_AGENT\", function() { return X_AMZ_USER_AGENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SPACE\", function() { return SPACE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UA_ESCAPE_REGEX\", function() { return UA_ESCAPE_REGEX; });\nvar USER_AGENT = \"user-agent\";\nvar X_AMZ_USER_AGENT = \"x-amz-user-agent\";\nvar SPACE = \" \";\nvar UA_ESCAPE_REGEX = /[^\\!\\#\\$\\%\\&\\'\\*\\+\\-\\.\\^\\_\\`\\|\\~\\d\\w]/g;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js ***! \******************************************************************************************************************/ /*! exports provided: resolveUserAgentConfig, userAgentMiddleware, getUserAgentMiddlewareOptions, getUserAgentPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveUserAgentConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveUserAgentConfig\"]; });\n\n/* harmony import */ var _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./user-agent-middleware */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"userAgentMiddleware\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"userAgentMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentMiddlewareOptions\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"getUserAgentMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentPlugin\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"getUserAgentPlugin\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js ***! \**********************************************************************************************************************************/ /*! exports provided: userAgentMiddleware, getUserAgentMiddlewareOptions, getUserAgentPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"userAgentMiddleware\", function() { return userAgentMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentMiddlewareOptions\", function() { return getUserAgentMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentPlugin\", function() { return getUserAgentPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js\");\n\n\n\nvar userAgentMiddleware = function (options) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, headers, userAgent, defaultUserAgent, customUserAgent, sdkUserAgentValue, normalUAValue;\n var _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request))\n return [2, next(args)];\n headers = request.headers;\n userAgent = ((_a = context === null || context === void 0 ? void 0 : context.userAgent) === null || _a === void 0 ? void 0 : _a.map(escapeUserAgent)) || [];\n return [4, options.defaultUserAgentProvider()];\n case 1:\n defaultUserAgent = (_c.sent()).map(escapeUserAgent);\n customUserAgent = ((_b = options === null || options === void 0 ? void 0 : options.customUserAgent) === null || _b === void 0 ? void 0 : _b.map(escapeUserAgent)) || [];\n sdkUserAgentValue = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(defaultUserAgent), false), Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(userAgent), false), Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(customUserAgent), false).join(_constants__WEBPACK_IMPORTED_MODULE_2__[\"SPACE\"]);\n normalUAValue = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(defaultUserAgent.filter(function (section) { return section.startsWith(\"aws-sdk-\"); })), false), Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(customUserAgent), false).join(_constants__WEBPACK_IMPORTED_MODULE_2__[\"SPACE\"]);\n if (options.runtime !== \"browser\") {\n if (normalUAValue) {\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]] = headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]]\n ? \"\".concat(headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"USER_AGENT\"]], \" \").concat(normalUAValue)\n : normalUAValue;\n }\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"USER_AGENT\"]] = sdkUserAgentValue;\n }\n else {\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]] = sdkUserAgentValue;\n }\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n }); };\n };\n};\nvar escapeUserAgent = function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), name = _b[0], version = _b[1];\n var prefixSeparatorIndex = name.indexOf(\"/\");\n var prefix = name.substring(0, prefixSeparatorIndex);\n var uaName = name.substring(prefixSeparatorIndex + 1);\n if (prefix === \"api\") {\n uaName = uaName.toLowerCase();\n }\n return [prefix, uaName, version]\n .filter(function (item) { return item && item.length > 0; })\n .map(function (item) { return item === null || item === void 0 ? void 0 : item.replace(_constants__WEBPACK_IMPORTED_MODULE_2__[\"UA_ESCAPE_REGEX\"], \"_\"); })\n .join(\"/\");\n};\nvar getUserAgentMiddlewareOptions = {\n name: \"getUserAgentMiddleware\",\n step: \"build\",\n priority: \"low\",\n tags: [\"SET_USER_AGENT\", \"USER_AGENT\"],\n override: true,\n};\nvar getUserAgentPlugin = function (config) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(userAgentMiddleware(config), getUserAgentMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js": /*!*********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js ***! \*********************************************************************************************************************************/ /*! exports provided: CredentialsProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CredentialsProviderError\", function() { return CredentialsProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n\n\nvar CredentialsProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CredentialsProviderError, _super);\n function CredentialsProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message, tryNextLink) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"CredentialsProviderError\";\n Object.setPrototypeOf(_this, CredentialsProviderError.prototype);\n return _this;\n }\n return CredentialsProviderError;\n}(_ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js ***! \**********************************************************************************************************************/ /*! exports provided: ProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return ProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar ProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ProviderError, _super);\n function ProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"ProviderError\";\n Object.setPrototypeOf(_this, ProviderError.prototype);\n return _this;\n }\n ProviderError.from = function (error, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n return Object.assign(new this(error.message, tryNextLink), error);\n };\n return ProviderError;\n}(Error));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js ***! \***************************************************************************************************************************/ /*! exports provided: TokenProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TokenProviderError\", function() { return TokenProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n\n\nvar TokenProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TokenProviderError, _super);\n function TokenProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message, tryNextLink) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"TokenProviderError\";\n Object.setPrototypeOf(_this, TokenProviderError.prototype);\n return _this;\n }\n return TokenProviderError;\n}(_ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/chain.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/chain.js ***! \**************************************************************************************************************/ /*! exports provided: chain */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return chain; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n\n\nfunction chain() {\n var providers = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n providers[_i] = arguments[_i];\n }\n return function () {\n var e_1, _a;\n var promise = Promise.reject(new _ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"](\"No providers in chain\"));\n var _loop_1 = function (provider) {\n promise = promise.catch(function (err) {\n if (err === null || err === void 0 ? void 0 : err.tryNextLink) {\n return provider();\n }\n throw err;\n });\n };\n try {\n for (var providers_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(providers), providers_1_1 = providers_1.next(); !providers_1_1.done; providers_1_1 = providers_1.next()) {\n var provider = providers_1_1.value;\n _loop_1(provider);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (providers_1_1 && !providers_1_1.done && (_a = providers_1.return)) _a.call(providers_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return promise;\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/chain.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js ***! \*******************************************************************************************************************/ /*! exports provided: fromStatic */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return fromStatic; });\nvar fromStatic = function (staticValue) {\n return function () {\n return Promise.resolve(staticValue);\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/index.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/index.js ***! \**************************************************************************************************************/ /*! exports provided: CredentialsProviderError, ProviderError, TokenProviderError, chain, fromStatic, memoize */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _CredentialsProviderError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CredentialsProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CredentialsProviderError\", function() { return _CredentialsProviderError__WEBPACK_IMPORTED_MODULE_0__[\"CredentialsProviderError\"]; });\n\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return _ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]; });\n\n/* harmony import */ var _TokenProviderError__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./TokenProviderError */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TokenProviderError\", function() { return _TokenProviderError__WEBPACK_IMPORTED_MODULE_2__[\"TokenProviderError\"]; });\n\n/* harmony import */ var _chain__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./chain */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/chain.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return _chain__WEBPACK_IMPORTED_MODULE_3__[\"chain\"]; });\n\n/* harmony import */ var _fromStatic__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./fromStatic */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return _fromStatic__WEBPACK_IMPORTED_MODULE_4__[\"fromStatic\"]; });\n\n/* harmony import */ var _memoize__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./memoize */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/memoize.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return _memoize__WEBPACK_IMPORTED_MODULE_5__[\"memoize\"]; });\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/memoize.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/memoize.js ***! \****************************************************************************************************************/ /*! exports provided: memoize */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return memoize; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar memoize = function (provider, isExpired, requiresRefresh) {\n var resolved;\n var pending;\n var hasResult;\n var isConstant = false;\n var coalesceProvider = function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!pending) {\n pending = provider();\n }\n _a.label = 1;\n case 1:\n _a.trys.push([1, , 3, 4]);\n return [4, pending];\n case 2:\n resolved = _a.sent();\n hasResult = true;\n isConstant = false;\n return [3, 4];\n case 3:\n pending = undefined;\n return [7];\n case 4: return [2, resolved];\n }\n });\n }); };\n if (isExpired === undefined) {\n return function (options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(!hasResult || (options === null || options === void 0 ? void 0 : options.forceRefresh))) return [3, 2];\n return [4, coalesceProvider()];\n case 1:\n resolved = _a.sent();\n _a.label = 2;\n case 2: return [2, resolved];\n }\n });\n }); };\n }\n return function (options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(!hasResult || (options === null || options === void 0 ? void 0 : options.forceRefresh))) return [3, 2];\n return [4, coalesceProvider()];\n case 1:\n resolved = _a.sent();\n _a.label = 2;\n case 2:\n if (isConstant) {\n return [2, resolved];\n }\n if (requiresRefresh && !requiresRefresh(resolved)) {\n isConstant = true;\n return [2, resolved];\n }\n if (!isExpired(resolved)) return [3, 4];\n return [4, coalesceProvider()];\n case 3:\n _a.sent();\n return [2, resolved];\n case 4: return [2, resolved];\n }\n });\n }); };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/property-provider/dist-es/memoize.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js ***! \****************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js ***! \****************************************************************************************************************/ /*! exports provided: HttpRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return HttpRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar HttpRequest = (function () {\n function HttpRequest(options) {\n this.method = options.method || \"GET\";\n this.hostname = options.hostname || \"localhost\";\n this.port = options.port;\n this.query = options.query || {};\n this.headers = options.headers || {};\n this.body = options.body;\n this.protocol = options.protocol\n ? options.protocol.slice(-1) !== \":\"\n ? \"\".concat(options.protocol, \":\")\n : options.protocol\n : \"https:\";\n this.path = options.path ? (options.path.charAt(0) !== \"/\" ? \"/\".concat(options.path) : options.path) : \"/\";\n }\n HttpRequest.isInstance = function (request) {\n if (!request)\n return false;\n var req = request;\n return (\"method\" in req &&\n \"protocol\" in req &&\n \"hostname\" in req &&\n \"path\" in req &&\n typeof req[\"query\"] === \"object\" &&\n typeof req[\"headers\"] === \"object\");\n };\n HttpRequest.prototype.clone = function () {\n var cloned = new HttpRequest(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this.headers) }));\n if (cloned.query)\n cloned.query = cloneQuery(cloned.query);\n return cloned;\n };\n return HttpRequest;\n}());\n\nfunction cloneQuery(query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(param), false) : param, _a));\n }, {});\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js ***! \*****************************************************************************************************************/ /*! exports provided: HttpResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return HttpResponse; });\nvar HttpResponse = (function () {\n function HttpResponse(options) {\n this.statusCode = options.statusCode;\n this.headers = options.headers || {};\n this.body = options.body;\n }\n HttpResponse.isInstance = function (response) {\n if (!response)\n return false;\n var resp = response;\n return typeof resp.statusCode === \"number\" && typeof resp.headers === \"object\";\n };\n return HttpResponse;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js ***! \**********************************************************************************************************/ /*! exports provided: HttpRequest, HttpResponse, isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _httpHandler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./httpHandler */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _httpRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./httpRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return _httpRequest__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]; });\n\n/* harmony import */ var _httpResponse__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./httpResponse */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return _httpResponse__WEBPACK_IMPORTED_MODULE_2__[\"HttpResponse\"]; });\n\n/* harmony import */ var _isValidHostname__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isValidHostname */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return _isValidHostname__WEBPACK_IMPORTED_MODULE_3__[\"isValidHostname\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js ***! \********************************************************************************************************************/ /*! exports provided: isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return isValidHostname; });\nfunction isValidHostname(hostname) {\n var hostPattern = /^[a-z0-9][a-z0-9\\.\\-]*[a-z0-9]$/;\n return hostPattern.test(hostname);\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/querystring-builder/dist-es/index.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/querystring-builder/dist-es/index.js ***! \****************************************************************************************************************/ /*! exports provided: buildQueryString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildQueryString\", function() { return buildQueryString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-uri-escape */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js\");\n\n\nfunction buildQueryString(query) {\n var e_1, _a;\n var parts = [];\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(query).sort()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n var value = query[key];\n key = Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key);\n if (Array.isArray(value)) {\n for (var i = 0, iLen = value.length; i < iLen; i++) {\n parts.push(\"\".concat(key, \"=\").concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value[i])));\n }\n }\n else {\n var qsEntry = key;\n if (value || typeof value === \"string\") {\n qsEntry += \"=\".concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value));\n }\n parts.push(qsEntry);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return parts.join(\"&\");\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/querystring-builder/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/querystring-parser/dist-es/index.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/querystring-parser/dist-es/index.js ***! \***************************************************************************************************************/ /*! exports provided: parseQueryString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseQueryString\", function() { return parseQueryString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nfunction parseQueryString(querystring) {\n var e_1, _a;\n var query = {};\n querystring = querystring.replace(/^\\?/, \"\");\n if (querystring) {\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(querystring.split(\"&\")), _c = _b.next(); !_c.done; _c = _b.next()) {\n var pair = _c.value;\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(pair.split(\"=\"), 2), key = _d[0], _e = _d[1], value = _e === void 0 ? null : _e;\n key = decodeURIComponent(key);\n if (value) {\n value = decodeURIComponent(value);\n }\n if (!(key in query)) {\n query[key] = value;\n }\n else if (Array.isArray(query[key])) {\n query[key].push(value);\n }\n else {\n query[key] = [query[key], value];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n }\n return query;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/querystring-parser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js ***! \*****************************************************************************************************************************/ /*! exports provided: CLOCK_SKEW_ERROR_CODES, THROTTLING_ERROR_CODES, TRANSIENT_ERROR_CODES, TRANSIENT_ERROR_STATUS_CODES, NODEJS_TIMEOUT_ERROR_CODES */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CLOCK_SKEW_ERROR_CODES\", function() { return CLOCK_SKEW_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"THROTTLING_ERROR_CODES\", function() { return THROTTLING_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TRANSIENT_ERROR_CODES\", function() { return TRANSIENT_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TRANSIENT_ERROR_STATUS_CODES\", function() { return TRANSIENT_ERROR_STATUS_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODEJS_TIMEOUT_ERROR_CODES\", function() { return NODEJS_TIMEOUT_ERROR_CODES; });\nvar CLOCK_SKEW_ERROR_CODES = [\n \"AuthFailure\",\n \"InvalidSignatureException\",\n \"RequestExpired\",\n \"RequestInTheFuture\",\n \"RequestTimeTooSkewed\",\n \"SignatureDoesNotMatch\",\n];\nvar THROTTLING_ERROR_CODES = [\n \"BandwidthLimitExceeded\",\n \"EC2ThrottledException\",\n \"LimitExceededException\",\n \"PriorRequestNotComplete\",\n \"ProvisionedThroughputExceededException\",\n \"RequestLimitExceeded\",\n \"RequestThrottled\",\n \"RequestThrottledException\",\n \"SlowDown\",\n \"ThrottledException\",\n \"Throttling\",\n \"ThrottlingException\",\n \"TooManyRequestsException\",\n \"TransactionInProgressException\",\n];\nvar TRANSIENT_ERROR_CODES = [\"AbortError\", \"TimeoutError\", \"RequestTimeout\", \"RequestTimeoutException\"];\nvar TRANSIENT_ERROR_STATUS_CODES = [500, 502, 503, 504];\nvar NODEJS_TIMEOUT_ERROR_CODES = [\"ECONNRESET\", \"EPIPE\", \"ETIMEDOUT\"];\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/index.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/index.js ***! \*************************************************************************************************************************/ /*! exports provided: isRetryableByTrait, isClockSkewError, isThrottlingError, isTransientError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isRetryableByTrait\", function() { return isRetryableByTrait; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isClockSkewError\", function() { return isClockSkewError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isThrottlingError\", function() { return isThrottlingError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTransientError\", function() { return isTransientError; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js\");\n\nvar isRetryableByTrait = function (error) { return error.$retryable !== undefined; };\nvar isClockSkewError = function (error) { return _constants__WEBPACK_IMPORTED_MODULE_0__[\"CLOCK_SKEW_ERROR_CODES\"].includes(error.name); };\nvar isThrottlingError = function (error) {\n var _a, _b;\n return ((_a = error.$metadata) === null || _a === void 0 ? void 0 : _a.httpStatusCode) === 429 ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"THROTTLING_ERROR_CODES\"].includes(error.name) ||\n ((_b = error.$retryable) === null || _b === void 0 ? void 0 : _b.throttling) == true;\n};\nvar isTransientError = function (error) {\n var _a;\n return _constants__WEBPACK_IMPORTED_MODULE_0__[\"TRANSIENT_ERROR_CODES\"].includes(error.name) ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"NODEJS_TIMEOUT_ERROR_CODES\"].includes((error === null || error === void 0 ? void 0 : error.code) || \"\") ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"TRANSIENT_ERROR_STATUS_CODES\"].includes(((_a = error.$metadata) === null || _a === void 0 ? void 0 : _a.httpStatusCode) || 0);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/service-error-classification/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js ***! \***************************************************************************************************************/ /*! exports provided: SignatureV4 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SignatureV4\", function() { return SignatureV4; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n/* harmony import */ var _credentialDerivation__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./credentialDerivation */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js\");\n/* harmony import */ var _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./getCanonicalHeaders */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js\");\n/* harmony import */ var _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./getCanonicalQuery */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js\");\n/* harmony import */ var _getPayloadHash__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./getPayloadHash */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js\");\n/* harmony import */ var _headerUtil__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./headerUtil */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js\");\n/* harmony import */ var _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./moveHeadersToQuery */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js\");\n/* harmony import */ var _prepareRequest__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./prepareRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js\");\n/* harmony import */ var _utilDate__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./utilDate */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js\");\n\n\n\n\n\n\n\n\n\n\n\n\nvar SignatureV4 = (function () {\n function SignatureV4(_a) {\n var applyChecksum = _a.applyChecksum, credentials = _a.credentials, region = _a.region, service = _a.service, sha256 = _a.sha256, _b = _a.uriEscapePath, uriEscapePath = _b === void 0 ? true : _b;\n this.service = service;\n this.sha256 = sha256;\n this.uriEscapePath = uriEscapePath;\n this.applyChecksum = typeof applyChecksum === \"boolean\" ? applyChecksum : true;\n this.regionProvider = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_2__[\"normalizeProvider\"])(region);\n this.credentialProvider = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_2__[\"normalizeProvider\"])(credentials);\n }\n SignatureV4.prototype.presign = function (originalRequest, options) {\n if (options === void 0) { options = {}; }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _a, signingDate, _b, expiresIn, unsignableHeaders, unhoistableHeaders, signableHeaders, signingRegion, signingService, credentials, region, _c, _d, longDate, shortDate, scope, request, canonicalHeaders, _e, _f, _g, _h, _j, _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = options.signingDate, signingDate = _a === void 0 ? new Date() : _a, _b = options.expiresIn, expiresIn = _b === void 0 ? 3600 : _b, unsignableHeaders = options.unsignableHeaders, unhoistableHeaders = options.unhoistableHeaders, signableHeaders = options.signableHeaders, signingRegion = options.signingRegion, signingService = options.signingService;\n return [4, this.credentialProvider()];\n case 1:\n credentials = _l.sent();\n this.validateResolvedCredentials(credentials);\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 2];\n _c = signingRegion;\n return [3, 4];\n case 2: return [4, this.regionProvider()];\n case 3:\n _c = (_l.sent());\n _l.label = 4;\n case 4:\n region = _c;\n _d = formatDate(signingDate), longDate = _d.longDate, shortDate = _d.shortDate;\n if (expiresIn > _constants__WEBPACK_IMPORTED_MODULE_3__[\"MAX_PRESIGNED_TTL\"]) {\n return [2, Promise.reject(\"Signature version 4 presigned URLs\" + \" must have an expiration date less than one week in\" + \" the future\")];\n }\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n request = Object(_moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_9__[\"moveHeadersToQuery\"])(Object(_prepareRequest__WEBPACK_IMPORTED_MODULE_10__[\"prepareRequest\"])(originalRequest), { unhoistableHeaders: unhoistableHeaders });\n if (credentials.sessionToken) {\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"TOKEN_QUERY_PARAM\"]] = credentials.sessionToken;\n }\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_QUERY_PARAM\"]] = _constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_IDENTIFIER\"];\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"CREDENTIAL_QUERY_PARAM\"]] = \"\".concat(credentials.accessKeyId, \"/\").concat(scope);\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"AMZ_DATE_QUERY_PARAM\"]] = longDate;\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"EXPIRES_QUERY_PARAM\"]] = expiresIn.toString(10);\n canonicalHeaders = Object(_getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_5__[\"getCanonicalHeaders\"])(request, unsignableHeaders, signableHeaders);\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"SIGNED_HEADERS_QUERY_PARAM\"]] = getCanonicalHeaderList(canonicalHeaders);\n _e = request.query;\n _f = _constants__WEBPACK_IMPORTED_MODULE_3__[\"SIGNATURE_QUERY_PARAM\"];\n _g = this.getSignature;\n _h = [longDate,\n scope,\n this.getSigningKey(credentials, region, shortDate, signingService)];\n _j = this.createCanonicalRequest;\n _k = [request, canonicalHeaders];\n return [4, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_7__[\"getPayloadHash\"])(originalRequest, this.sha256)];\n case 5: return [4, _g.apply(this, _h.concat([_j.apply(this, _k.concat([_l.sent()]))]))];\n case 6:\n _e[_f] = _l.sent();\n return [2, request];\n }\n });\n });\n };\n SignatureV4.prototype.sign = function (toSign, options) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (typeof toSign === \"string\") {\n return [2, this.signString(toSign, options)];\n }\n else if (toSign.headers && toSign.payload) {\n return [2, this.signEvent(toSign, options)];\n }\n else {\n return [2, this.signRequest(toSign, options)];\n }\n return [2];\n });\n });\n };\n SignatureV4.prototype.signEvent = function (_a, _b) {\n var headers = _a.headers, payload = _a.payload;\n var _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, priorSignature = _b.priorSignature, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var region, _d, _e, shortDate, longDate, scope, hashedPayload, hash, hashedHeaders, _f, stringToSign;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 1];\n _d = signingRegion;\n return [3, 3];\n case 1: return [4, this.regionProvider()];\n case 2:\n _d = (_g.sent());\n _g.label = 3;\n case 3:\n region = _d;\n _e = formatDate(signingDate), shortDate = _e.shortDate, longDate = _e.longDate;\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n return [4, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_7__[\"getPayloadHash\"])({ headers: {}, body: payload }, this.sha256)];\n case 4:\n hashedPayload = _g.sent();\n hash = new this.sha256();\n hash.update(headers);\n _f = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4, hash.digest()];\n case 5:\n hashedHeaders = _f.apply(void 0, [_g.sent()]);\n stringToSign = [\n _constants__WEBPACK_IMPORTED_MODULE_3__[\"EVENT_ALGORITHM_IDENTIFIER\"],\n longDate,\n scope,\n priorSignature,\n hashedHeaders,\n hashedPayload,\n ].join(\"\\n\");\n return [2, this.signString(stringToSign, { signingDate: signingDate, signingRegion: region, signingService: signingService })];\n }\n });\n });\n };\n SignatureV4.prototype.signString = function (stringToSign, _a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var credentials, region, _d, shortDate, hash, _e, _f, _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0: return [4, this.credentialProvider()];\n case 1:\n credentials = _h.sent();\n this.validateResolvedCredentials(credentials);\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 2];\n _d = signingRegion;\n return [3, 4];\n case 2: return [4, this.regionProvider()];\n case 3:\n _d = (_h.sent());\n _h.label = 4;\n case 4:\n region = _d;\n shortDate = formatDate(signingDate).shortDate;\n _f = (_e = this.sha256).bind;\n return [4, this.getSigningKey(credentials, region, shortDate, signingService)];\n case 5:\n hash = new (_f.apply(_e, [void 0, _h.sent()]))();\n hash.update(stringToSign);\n _g = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4, hash.digest()];\n case 6: return [2, _g.apply(void 0, [_h.sent()])];\n }\n });\n });\n };\n SignatureV4.prototype.signRequest = function (requestToSign, _a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, signableHeaders = _b.signableHeaders, unsignableHeaders = _b.unsignableHeaders, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var credentials, region, _d, request, _e, longDate, shortDate, scope, payloadHash, canonicalHeaders, signature;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0: return [4, this.credentialProvider()];\n case 1:\n credentials = _f.sent();\n this.validateResolvedCredentials(credentials);\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 2];\n _d = signingRegion;\n return [3, 4];\n case 2: return [4, this.regionProvider()];\n case 3:\n _d = (_f.sent());\n _f.label = 4;\n case 4:\n region = _d;\n request = Object(_prepareRequest__WEBPACK_IMPORTED_MODULE_10__[\"prepareRequest\"])(requestToSign);\n _e = formatDate(signingDate), longDate = _e.longDate, shortDate = _e.shortDate;\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"AMZ_DATE_HEADER\"]] = longDate;\n if (credentials.sessionToken) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"TOKEN_HEADER\"]] = credentials.sessionToken;\n }\n return [4, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_7__[\"getPayloadHash\"])(request, this.sha256)];\n case 5:\n payloadHash = _f.sent();\n if (!Object(_headerUtil__WEBPACK_IMPORTED_MODULE_8__[\"hasHeader\"])(_constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"], request.headers) && this.applyChecksum) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"]] = payloadHash;\n }\n canonicalHeaders = Object(_getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_5__[\"getCanonicalHeaders\"])(request, unsignableHeaders, signableHeaders);\n return [4, this.getSignature(longDate, scope, this.getSigningKey(credentials, region, shortDate, signingService), this.createCanonicalRequest(request, canonicalHeaders, payloadHash))];\n case 6:\n signature = _f.sent();\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"AUTH_HEADER\"]] =\n \"\".concat(_constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_IDENTIFIER\"], \" \") +\n \"Credential=\".concat(credentials.accessKeyId, \"/\").concat(scope, \", \") +\n \"SignedHeaders=\".concat(getCanonicalHeaderList(canonicalHeaders), \", \") +\n \"Signature=\".concat(signature);\n return [2, request];\n }\n });\n });\n };\n SignatureV4.prototype.createCanonicalRequest = function (request, canonicalHeaders, payloadHash) {\n var sortedHeaders = Object.keys(canonicalHeaders).sort();\n return \"\".concat(request.method, \"\\n\").concat(this.getCanonicalPath(request), \"\\n\").concat(Object(_getCanonicalQuery__WEBPACK_IMPORTED_MODULE_6__[\"getCanonicalQuery\"])(request), \"\\n\").concat(sortedHeaders.map(function (name) { return \"\".concat(name, \":\").concat(canonicalHeaders[name]); }).join(\"\\n\"), \"\\n\\n\").concat(sortedHeaders.join(\";\"), \"\\n\").concat(payloadHash);\n };\n SignatureV4.prototype.createStringToSign = function (longDate, credentialScope, canonicalRequest) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var hash, hashedRequest;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n hash = new this.sha256();\n hash.update(canonicalRequest);\n return [4, hash.digest()];\n case 1:\n hashedRequest = _a.sent();\n return [2, \"\".concat(_constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_IDENTIFIER\"], \"\\n\").concat(longDate, \"\\n\").concat(credentialScope, \"\\n\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(hashedRequest))];\n }\n });\n });\n };\n SignatureV4.prototype.getCanonicalPath = function (_a) {\n var e_1, _b;\n var path = _a.path;\n if (this.uriEscapePath) {\n var normalizedPathSegments = [];\n try {\n for (var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(path.split(\"/\")), _d = _c.next(); !_d.done; _d = _c.next()) {\n var pathSegment = _d.value;\n if ((pathSegment === null || pathSegment === void 0 ? void 0 : pathSegment.length) === 0)\n continue;\n if (pathSegment === \".\")\n continue;\n if (pathSegment === \"..\") {\n normalizedPathSegments.pop();\n }\n else {\n normalizedPathSegments.push(pathSegment);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_b = _c.return)) _b.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var normalizedPath = \"\".concat((path === null || path === void 0 ? void 0 : path.startsWith(\"/\")) ? \"/\" : \"\").concat(normalizedPathSegments.join(\"/\")).concat(normalizedPathSegments.length > 0 && (path === null || path === void 0 ? void 0 : path.endsWith(\"/\")) ? \"/\" : \"\");\n var doubleEncoded = encodeURIComponent(normalizedPath);\n return doubleEncoded.replace(/%2F/g, \"/\");\n }\n return path;\n };\n SignatureV4.prototype.getSignature = function (longDate, credentialScope, keyPromise, canonicalRequest) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var stringToSign, hash, _a, _b, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0: return [4, this.createStringToSign(longDate, credentialScope, canonicalRequest)];\n case 1:\n stringToSign = _d.sent();\n _b = (_a = this.sha256).bind;\n return [4, keyPromise];\n case 2:\n hash = new (_b.apply(_a, [void 0, _d.sent()]))();\n hash.update(stringToSign);\n _c = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4, hash.digest()];\n case 3: return [2, _c.apply(void 0, [_d.sent()])];\n }\n });\n });\n };\n SignatureV4.prototype.getSigningKey = function (credentials, region, shortDate, service) {\n return Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"getSigningKey\"])(this.sha256, credentials, shortDate, region, service || this.service);\n };\n SignatureV4.prototype.validateResolvedCredentials = function (credentials) {\n if (typeof credentials !== \"object\" ||\n typeof credentials.accessKeyId !== \"string\" ||\n typeof credentials.secretAccessKey !== \"string\") {\n throw new Error(\"Resolved credential object is not valid\");\n }\n };\n return SignatureV4;\n}());\n\nvar formatDate = function (now) {\n var longDate = Object(_utilDate__WEBPACK_IMPORTED_MODULE_11__[\"iso8601\"])(now).replace(/[\\-:]/g, \"\");\n return {\n longDate: longDate,\n shortDate: longDate.slice(0, 8),\n };\n};\nvar getCanonicalHeaderList = function (headers) { return Object.keys(headers).sort().join(\";\"); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js ***! \****************************************************************************************************************/ /*! exports provided: cloneRequest, cloneQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cloneRequest\", function() { return cloneRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cloneQuery\", function() { return cloneQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar cloneRequest = function (_a) {\n var headers = _a.headers, query = _a.query, rest = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"headers\", \"query\"]);\n return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, rest), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, headers), query: query ? cloneQuery(query) : undefined }));\n};\nvar cloneQuery = function (query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(param), false) : param, _a));\n }, {});\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/constants.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/constants.js ***! \*************************************************************************************************************/ /*! exports provided: ALGORITHM_QUERY_PARAM, CREDENTIAL_QUERY_PARAM, AMZ_DATE_QUERY_PARAM, SIGNED_HEADERS_QUERY_PARAM, EXPIRES_QUERY_PARAM, SIGNATURE_QUERY_PARAM, TOKEN_QUERY_PARAM, REGION_SET_PARAM, AUTH_HEADER, AMZ_DATE_HEADER, DATE_HEADER, GENERATED_HEADERS, SIGNATURE_HEADER, SHA256_HEADER, TOKEN_HEADER, HOST_HEADER, ALWAYS_UNSIGNABLE_HEADERS, PROXY_HEADER_PATTERN, SEC_HEADER_PATTERN, UNSIGNABLE_PATTERNS, ALGORITHM_IDENTIFIER, ALGORITHM_IDENTIFIER_V4A, EVENT_ALGORITHM_IDENTIFIER, UNSIGNED_PAYLOAD, MAX_CACHE_SIZE, KEY_TYPE_IDENTIFIER, MAX_PRESIGNED_TTL */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_QUERY_PARAM\", function() { return ALGORITHM_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CREDENTIAL_QUERY_PARAM\", function() { return CREDENTIAL_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMZ_DATE_QUERY_PARAM\", function() { return AMZ_DATE_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNED_HEADERS_QUERY_PARAM\", function() { return SIGNED_HEADERS_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EXPIRES_QUERY_PARAM\", function() { return EXPIRES_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNATURE_QUERY_PARAM\", function() { return SIGNATURE_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TOKEN_QUERY_PARAM\", function() { return TOKEN_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_SET_PARAM\", function() { return REGION_SET_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AUTH_HEADER\", function() { return AUTH_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMZ_DATE_HEADER\", function() { return AMZ_DATE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DATE_HEADER\", function() { return DATE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GENERATED_HEADERS\", function() { return GENERATED_HEADERS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNATURE_HEADER\", function() { return SIGNATURE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SHA256_HEADER\", function() { return SHA256_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TOKEN_HEADER\", function() { return TOKEN_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HOST_HEADER\", function() { return HOST_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALWAYS_UNSIGNABLE_HEADERS\", function() { return ALWAYS_UNSIGNABLE_HEADERS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PROXY_HEADER_PATTERN\", function() { return PROXY_HEADER_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SEC_HEADER_PATTERN\", function() { return SEC_HEADER_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UNSIGNABLE_PATTERNS\", function() { return UNSIGNABLE_PATTERNS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_IDENTIFIER\", function() { return ALGORITHM_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_IDENTIFIER_V4A\", function() { return ALGORITHM_IDENTIFIER_V4A; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EVENT_ALGORITHM_IDENTIFIER\", function() { return EVENT_ALGORITHM_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UNSIGNED_PAYLOAD\", function() { return UNSIGNED_PAYLOAD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAX_CACHE_SIZE\", function() { return MAX_CACHE_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KEY_TYPE_IDENTIFIER\", function() { return KEY_TYPE_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAX_PRESIGNED_TTL\", function() { return MAX_PRESIGNED_TTL; });\nvar ALGORITHM_QUERY_PARAM = \"X-Amz-Algorithm\";\nvar CREDENTIAL_QUERY_PARAM = \"X-Amz-Credential\";\nvar AMZ_DATE_QUERY_PARAM = \"X-Amz-Date\";\nvar SIGNED_HEADERS_QUERY_PARAM = \"X-Amz-SignedHeaders\";\nvar EXPIRES_QUERY_PARAM = \"X-Amz-Expires\";\nvar SIGNATURE_QUERY_PARAM = \"X-Amz-Signature\";\nvar TOKEN_QUERY_PARAM = \"X-Amz-Security-Token\";\nvar REGION_SET_PARAM = \"X-Amz-Region-Set\";\nvar AUTH_HEADER = \"authorization\";\nvar AMZ_DATE_HEADER = AMZ_DATE_QUERY_PARAM.toLowerCase();\nvar DATE_HEADER = \"date\";\nvar GENERATED_HEADERS = [AUTH_HEADER, AMZ_DATE_HEADER, DATE_HEADER];\nvar SIGNATURE_HEADER = SIGNATURE_QUERY_PARAM.toLowerCase();\nvar SHA256_HEADER = \"x-amz-content-sha256\";\nvar TOKEN_HEADER = TOKEN_QUERY_PARAM.toLowerCase();\nvar HOST_HEADER = \"host\";\nvar ALWAYS_UNSIGNABLE_HEADERS = {\n authorization: true,\n \"cache-control\": true,\n connection: true,\n expect: true,\n from: true,\n \"keep-alive\": true,\n \"max-forwards\": true,\n pragma: true,\n referer: true,\n te: true,\n trailer: true,\n \"transfer-encoding\": true,\n upgrade: true,\n \"user-agent\": true,\n \"x-amzn-trace-id\": true,\n};\nvar PROXY_HEADER_PATTERN = /^proxy-/;\nvar SEC_HEADER_PATTERN = /^sec-/;\nvar UNSIGNABLE_PATTERNS = [/^proxy-/i, /^sec-/i];\nvar ALGORITHM_IDENTIFIER = \"AWS4-HMAC-SHA256\";\nvar ALGORITHM_IDENTIFIER_V4A = \"AWS4-ECDSA-P256-SHA256\";\nvar EVENT_ALGORITHM_IDENTIFIER = \"AWS4-HMAC-SHA256-PAYLOAD\";\nvar UNSIGNED_PAYLOAD = \"UNSIGNED-PAYLOAD\";\nvar MAX_CACHE_SIZE = 50;\nvar KEY_TYPE_IDENTIFIER = \"aws4_request\";\nvar MAX_PRESIGNED_TTL = 60 * 60 * 24 * 7;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js ***! \************************************************************************************************************************/ /*! exports provided: createScope, getSigningKey, clearCredentialCache */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createScope\", function() { return createScope; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSigningKey\", function() { return getSigningKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"clearCredentialCache\", function() { return clearCredentialCache; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\n\nvar signingKeyCache = {};\nvar cacheQueue = [];\nvar createScope = function (shortDate, region, service) {\n return \"\".concat(shortDate, \"/\").concat(region, \"/\").concat(service, \"/\").concat(_constants__WEBPACK_IMPORTED_MODULE_2__[\"KEY_TYPE_IDENTIFIER\"]);\n};\nvar getSigningKey = function (sha256Constructor, credentials, shortDate, region, service) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var credsHash, cacheKey, key, _a, _b, signable, e_1_1;\n var e_1, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0: return [4, hmac(sha256Constructor, credentials.secretAccessKey, credentials.accessKeyId)];\n case 1:\n credsHash = _d.sent();\n cacheKey = \"\".concat(shortDate, \":\").concat(region, \":\").concat(service, \":\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(credsHash), \":\").concat(credentials.sessionToken);\n if (cacheKey in signingKeyCache) {\n return [2, signingKeyCache[cacheKey]];\n }\n cacheQueue.push(cacheKey);\n while (cacheQueue.length > _constants__WEBPACK_IMPORTED_MODULE_2__[\"MAX_CACHE_SIZE\"]) {\n delete signingKeyCache[cacheQueue.shift()];\n }\n key = \"AWS4\".concat(credentials.secretAccessKey);\n _d.label = 2;\n case 2:\n _d.trys.push([2, 7, 8, 9]);\n _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])([shortDate, region, service, _constants__WEBPACK_IMPORTED_MODULE_2__[\"KEY_TYPE_IDENTIFIER\"]]), _b = _a.next();\n _d.label = 3;\n case 3:\n if (!!_b.done) return [3, 6];\n signable = _b.value;\n return [4, hmac(sha256Constructor, key, signable)];\n case 4:\n key = _d.sent();\n _d.label = 5;\n case 5:\n _b = _a.next();\n return [3, 3];\n case 6: return [3, 9];\n case 7:\n e_1_1 = _d.sent();\n e_1 = { error: e_1_1 };\n return [3, 9];\n case 8:\n try {\n if (_b && !_b.done && (_c = _a.return)) _c.call(_a);\n }\n finally { if (e_1) throw e_1.error; }\n return [7];\n case 9: return [2, (signingKeyCache[cacheKey] = key)];\n }\n });\n}); };\nvar clearCredentialCache = function () {\n cacheQueue.length = 0;\n Object.keys(signingKeyCache).forEach(function (cacheKey) {\n delete signingKeyCache[cacheKey];\n });\n};\nvar hmac = function (ctor, secret, data) {\n var hash = new ctor(secret);\n hash.update(data);\n return hash.digest();\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js ***! \***********************************************************************************************************************/ /*! exports provided: getCanonicalHeaders */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalHeaders\", function() { return getCanonicalHeaders; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\nvar getCanonicalHeaders = function (_a, unsignableHeaders, signableHeaders) {\n var e_1, _b;\n var headers = _a.headers;\n var canonical = {};\n try {\n for (var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers).sort()), _d = _c.next(); !_d.done; _d = _c.next()) {\n var headerName = _d.value;\n if (headers[headerName] == undefined) {\n continue;\n }\n var canonicalHeaderName = headerName.toLowerCase();\n if (canonicalHeaderName in _constants__WEBPACK_IMPORTED_MODULE_1__[\"ALWAYS_UNSIGNABLE_HEADERS\"] ||\n (unsignableHeaders === null || unsignableHeaders === void 0 ? void 0 : unsignableHeaders.has(canonicalHeaderName)) ||\n _constants__WEBPACK_IMPORTED_MODULE_1__[\"PROXY_HEADER_PATTERN\"].test(canonicalHeaderName) ||\n _constants__WEBPACK_IMPORTED_MODULE_1__[\"SEC_HEADER_PATTERN\"].test(canonicalHeaderName)) {\n if (!signableHeaders || (signableHeaders && !signableHeaders.has(canonicalHeaderName))) {\n continue;\n }\n }\n canonical[canonicalHeaderName] = headers[headerName].trim().replace(/\\s+/g, \" \");\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_b = _c.return)) _b.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return canonical;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js ***! \*********************************************************************************************************************/ /*! exports provided: getCanonicalQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalQuery\", function() { return getCanonicalQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-uri-escape */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\n\nvar getCanonicalQuery = function (_a) {\n var e_1, _b;\n var _c = _a.query, query = _c === void 0 ? {} : _c;\n var keys = [];\n var serialized = {};\n var _loop_1 = function (key) {\n if (key.toLowerCase() === _constants__WEBPACK_IMPORTED_MODULE_2__[\"SIGNATURE_HEADER\"]) {\n return \"continue\";\n }\n keys.push(key);\n var value = query[key];\n if (typeof value === \"string\") {\n serialized[key] = \"\".concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key), \"=\").concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value));\n }\n else if (Array.isArray(value)) {\n serialized[key] = value\n .slice(0)\n .sort()\n .reduce(function (encoded, value) { return encoded.concat([\"\".concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key), \"=\").concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value))]); }, [])\n .join(\"&\");\n }\n };\n try {\n for (var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(query).sort()), _e = _d.next(); !_e.done; _e = _d.next()) {\n var key = _e.value;\n _loop_1(key);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_e && !_e.done && (_b = _d.return)) _b.call(_d);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return keys\n .map(function (key) { return serialized[key]; })\n .filter(function (serialized) { return serialized; })\n .join(\"&\");\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js ***! \******************************************************************************************************************/ /*! exports provided: getPayloadHash */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPayloadHash\", function() { return getPayloadHash; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/is-array-buffer */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\n\n\nvar getPayloadHash = function (_a, hashConstructor) {\n var headers = _a.headers, body = _a.body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _b, _c, headerName, hashCtor, _d;\n var e_1, _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n try {\n for (_b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n headerName = _c.value;\n if (headerName.toLowerCase() === _constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"]) {\n return [2, headers[headerName]];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_e = _b.return)) _e.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n if (!(body == undefined)) return [3, 1];\n return [2, \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"];\n case 1:\n if (!(typeof body === \"string\" || ArrayBuffer.isView(body) || Object(_aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__[\"isArrayBuffer\"])(body))) return [3, 3];\n hashCtor = new hashConstructor();\n hashCtor.update(body);\n _d = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__[\"toHex\"];\n return [4, hashCtor.digest()];\n case 2: return [2, _d.apply(void 0, [_f.sent()])];\n case 3: return [2, _constants__WEBPACK_IMPORTED_MODULE_3__[\"UNSIGNED_PAYLOAD\"]];\n }\n });\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js ***! \**************************************************************************************************************/ /*! exports provided: hasHeader, getHeaderValue, deleteHeader */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasHeader\", function() { return hasHeader; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHeaderValue\", function() { return getHeaderValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deleteHeader\", function() { return deleteHeader; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar hasHeader = function (soughtHeader, headers) {\n var e_1, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n return true;\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return false;\n};\nvar getHeaderValue = function (soughtHeader, headers) {\n var e_2, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n return headers[headerName];\n }\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return undefined;\n};\nvar deleteHeader = function (soughtHeader, headers) {\n var e_3, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n delete headers[headerName];\n }\n }\n }\n catch (e_3_1) { e_3 = { error: e_3_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_3) throw e_3.error; }\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/index.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/index.js ***! \*********************************************************************************************************/ /*! exports provided: SignatureV4, getCanonicalHeaders, getCanonicalQuery, getPayloadHash, moveHeadersToQuery, prepareRequest, createScope, getSigningKey, clearCredentialCache */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _SignatureV4__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SignatureV4 */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SignatureV4\", function() { return _SignatureV4__WEBPACK_IMPORTED_MODULE_0__[\"SignatureV4\"]; });\n\n/* harmony import */ var _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getCanonicalHeaders */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalHeaders\", function() { return _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_1__[\"getCanonicalHeaders\"]; });\n\n/* harmony import */ var _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getCanonicalQuery */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalQuery\", function() { return _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_2__[\"getCanonicalQuery\"]; });\n\n/* harmony import */ var _getPayloadHash__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getPayloadHash */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getPayloadHash\", function() { return _getPayloadHash__WEBPACK_IMPORTED_MODULE_3__[\"getPayloadHash\"]; });\n\n/* harmony import */ var _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./moveHeadersToQuery */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"moveHeadersToQuery\", function() { return _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_4__[\"moveHeadersToQuery\"]; });\n\n/* harmony import */ var _prepareRequest__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./prepareRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"prepareRequest\", function() { return _prepareRequest__WEBPACK_IMPORTED_MODULE_5__[\"prepareRequest\"]; });\n\n/* harmony import */ var _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./credentialDerivation */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createScope\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__[\"createScope\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSigningKey\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__[\"getSigningKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"clearCredentialCache\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__[\"clearCredentialCache\"]; });\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js ***! \**********************************************************************************************************************/ /*! exports provided: moveHeadersToQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"moveHeadersToQuery\", function() { return moveHeadersToQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _cloneRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./cloneRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js\");\n\n\nvar moveHeadersToQuery = function (request, options) {\n var e_1, _a;\n var _b;\n if (options === void 0) { options = {}; }\n var _c = typeof request.clone === \"function\" ? request.clone() : Object(_cloneRequest__WEBPACK_IMPORTED_MODULE_1__[\"cloneRequest\"])(request), headers = _c.headers, _d = _c.query, query = _d === void 0 ? {} : _d;\n try {\n for (var _e = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _f = _e.next(); !_f.done; _f = _e.next()) {\n var name_1 = _f.value;\n var lname = name_1.toLowerCase();\n if (lname.slice(0, 6) === \"x-amz-\" && !((_b = options.unhoistableHeaders) === null || _b === void 0 ? void 0 : _b.has(lname))) {\n query[name_1] = headers[name_1];\n delete headers[name_1];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_f && !_f.done && (_a = _e.return)) _a.call(_e);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request), { headers: headers, query: query });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js ***! \******************************************************************************************************************/ /*! exports provided: prepareRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"prepareRequest\", function() { return prepareRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _cloneRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./cloneRequest */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/constants.js\");\n\n\n\nvar prepareRequest = function (request) {\n var e_1, _a;\n request = typeof request.clone === \"function\" ? request.clone() : Object(_cloneRequest__WEBPACK_IMPORTED_MODULE_1__[\"cloneRequest\"])(request);\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(request.headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (_constants__WEBPACK_IMPORTED_MODULE_2__[\"GENERATED_HEADERS\"].indexOf(headerName.toLowerCase()) > -1) {\n delete request.headers[headerName];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return request;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js ***! \************************************************************************************************************/ /*! exports provided: iso8601, toDate */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"iso8601\", function() { return iso8601; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toDate\", function() { return toDate; });\nvar iso8601 = function (time) {\n return toDate(time)\n .toISOString()\n .replace(/\\.\\d{3}Z$/, \"Z\");\n};\nvar toDate = function (time) {\n if (typeof time === \"number\") {\n return new Date(time * 1000);\n }\n if (typeof time === \"string\") {\n if (Number(time)) {\n return new Date(Number(time) * 1000);\n }\n return new Date(time);\n }\n return time;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/client.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/client.js ***! \***********************************************************************************************************/ /*! exports provided: Client */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Client\", function() { return Client; });\n/* harmony import */ var _aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/middleware-stack */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-stack/dist-es/index.js\");\n\nvar Client = (function () {\n function Client(config) {\n this.middlewareStack = Object(_aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"])();\n this.config = config;\n }\n Client.prototype.send = function (command, optionsOrCb, cb) {\n var options = typeof optionsOrCb !== \"function\" ? optionsOrCb : undefined;\n var callback = typeof optionsOrCb === \"function\" ? optionsOrCb : cb;\n var handler = command.resolveMiddleware(this.middlewareStack, this.config, options);\n if (callback) {\n handler(command)\n .then(function (result) { return callback(null, result.output); }, function (err) { return callback(err); })\n .catch(function () { });\n }\n else {\n return handler(command).then(function (result) { return result.output; });\n }\n };\n Client.prototype.destroy = function () {\n if (this.config.requestHandler.destroy)\n this.config.requestHandler.destroy();\n };\n return Client;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/client.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/command.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/command.js ***! \************************************************************************************************************/ /*! exports provided: Command */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Command\", function() { return Command; });\n/* harmony import */ var _aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/middleware-stack */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/middleware-stack/dist-es/index.js\");\n\nvar Command = (function () {\n function Command() {\n this.middlewareStack = Object(_aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"])();\n }\n return Command;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/command.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/constants.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/constants.js ***! \**************************************************************************************************************/ /*! exports provided: SENSITIVE_STRING */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SENSITIVE_STRING\", function() { return SENSITIVE_STRING; });\nvar SENSITIVE_STRING = \"***SensitiveInformation***\";\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js ***! \***************************************************************************************************************/ /*! exports provided: dateToUtcString, parseRfc3339DateTime, parseRfc7231DateTime, parseEpochTimestamp */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"dateToUtcString\", function() { return dateToUtcString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseRfc3339DateTime\", function() { return parseRfc3339DateTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseRfc7231DateTime\", function() { return parseRfc7231DateTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseEpochTimestamp\", function() { return parseEpochTimestamp; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _parse_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./parse-utils */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js\");\n\n\nvar DAYS = [\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\"];\nvar MONTHS = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"];\nfunction dateToUtcString(date) {\n var year = date.getUTCFullYear();\n var month = date.getUTCMonth();\n var dayOfWeek = date.getUTCDay();\n var dayOfMonthInt = date.getUTCDate();\n var hoursInt = date.getUTCHours();\n var minutesInt = date.getUTCMinutes();\n var secondsInt = date.getUTCSeconds();\n var dayOfMonthString = dayOfMonthInt < 10 ? \"0\".concat(dayOfMonthInt) : \"\".concat(dayOfMonthInt);\n var hoursString = hoursInt < 10 ? \"0\".concat(hoursInt) : \"\".concat(hoursInt);\n var minutesString = minutesInt < 10 ? \"0\".concat(minutesInt) : \"\".concat(minutesInt);\n var secondsString = secondsInt < 10 ? \"0\".concat(secondsInt) : \"\".concat(secondsInt);\n return \"\".concat(DAYS[dayOfWeek], \", \").concat(dayOfMonthString, \" \").concat(MONTHS[month], \" \").concat(year, \" \").concat(hoursString, \":\").concat(minutesString, \":\").concat(secondsString, \" GMT\");\n}\nvar RFC3339 = new RegExp(/^(\\d{4})-(\\d{2})-(\\d{2})[tT](\\d{2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))?[zZ]$/);\nvar parseRfc3339DateTime = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value !== \"string\") {\n throw new TypeError(\"RFC-3339 date-times must be expressed as strings\");\n }\n var match = RFC3339.exec(value);\n if (!match) {\n throw new TypeError(\"Invalid RFC-3339 date-time value\");\n }\n var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _ = _a[0], yearStr = _a[1], monthStr = _a[2], dayStr = _a[3], hours = _a[4], minutes = _a[5], seconds = _a[6], fractionalMilliseconds = _a[7];\n var year = Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(yearStr));\n var month = parseDateValue(monthStr, \"month\", 1, 12);\n var day = parseDateValue(dayStr, \"day\", 1, 31);\n return buildDate(year, month, day, { hours: hours, minutes: minutes, seconds: seconds, fractionalMilliseconds: fractionalMilliseconds });\n};\nvar IMF_FIXDATE = new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\\d{2}) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\\d{4}) (\\d{1,2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))? GMT$/);\nvar RFC_850_DATE = new RegExp(/^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\\d{2})-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\\d{2}) (\\d{1,2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))? GMT$/);\nvar ASC_TIME = new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( [1-9]|\\d{2}) (\\d{1,2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))? (\\d{4})$/);\nvar parseRfc7231DateTime = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value !== \"string\") {\n throw new TypeError(\"RFC-7231 date-times must be expressed as strings\");\n }\n var match = IMF_FIXDATE.exec(value);\n if (match) {\n var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _1 = _a[0], dayStr = _a[1], monthStr = _a[2], yearStr = _a[3], hours = _a[4], minutes = _a[5], seconds = _a[6], fractionalMilliseconds = _a[7];\n return buildDate(Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(yearStr)), parseMonthByShortName(monthStr), parseDateValue(dayStr, \"day\", 1, 31), { hours: hours, minutes: minutes, seconds: seconds, fractionalMilliseconds: fractionalMilliseconds });\n }\n match = RFC_850_DATE.exec(value);\n if (match) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _2 = _b[0], dayStr = _b[1], monthStr = _b[2], yearStr = _b[3], hours = _b[4], minutes = _b[5], seconds = _b[6], fractionalMilliseconds = _b[7];\n return adjustRfc850Year(buildDate(parseTwoDigitYear(yearStr), parseMonthByShortName(monthStr), parseDateValue(dayStr, \"day\", 1, 31), {\n hours: hours,\n minutes: minutes,\n seconds: seconds,\n fractionalMilliseconds: fractionalMilliseconds,\n }));\n }\n match = ASC_TIME.exec(value);\n if (match) {\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _3 = _c[0], monthStr = _c[1], dayStr = _c[2], hours = _c[3], minutes = _c[4], seconds = _c[5], fractionalMilliseconds = _c[6], yearStr = _c[7];\n return buildDate(Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(yearStr)), parseMonthByShortName(monthStr), parseDateValue(dayStr.trimLeft(), \"day\", 1, 31), { hours: hours, minutes: minutes, seconds: seconds, fractionalMilliseconds: fractionalMilliseconds });\n }\n throw new TypeError(\"Invalid RFC-7231 date-time value\");\n};\nvar parseEpochTimestamp = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n var valueAsDouble;\n if (typeof value === \"number\") {\n valueAsDouble = value;\n }\n else if (typeof value === \"string\") {\n valueAsDouble = Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseDouble\"])(value);\n }\n else {\n throw new TypeError(\"Epoch timestamps must be expressed as floating point numbers or their string representation\");\n }\n if (Number.isNaN(valueAsDouble) || valueAsDouble === Infinity || valueAsDouble === -Infinity) {\n throw new TypeError(\"Epoch timestamps must be valid, non-Infinite, non-NaN numerics\");\n }\n return new Date(Math.round(valueAsDouble * 1000));\n};\nvar buildDate = function (year, month, day, time) {\n var adjustedMonth = month - 1;\n validateDayOfMonth(year, adjustedMonth, day);\n return new Date(Date.UTC(year, adjustedMonth, day, parseDateValue(time.hours, \"hour\", 0, 23), parseDateValue(time.minutes, \"minute\", 0, 59), parseDateValue(time.seconds, \"seconds\", 0, 60), parseMilliseconds(time.fractionalMilliseconds)));\n};\nvar parseTwoDigitYear = function (value) {\n var thisYear = new Date().getUTCFullYear();\n var valueInThisCentury = Math.floor(thisYear / 100) * 100 + Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(value));\n if (valueInThisCentury < thisYear) {\n return valueInThisCentury + 100;\n }\n return valueInThisCentury;\n};\nvar FIFTY_YEARS_IN_MILLIS = 50 * 365 * 24 * 60 * 60 * 1000;\nvar adjustRfc850Year = function (input) {\n if (input.getTime() - new Date().getTime() > FIFTY_YEARS_IN_MILLIS) {\n return new Date(Date.UTC(input.getUTCFullYear() - 100, input.getUTCMonth(), input.getUTCDate(), input.getUTCHours(), input.getUTCMinutes(), input.getUTCSeconds(), input.getUTCMilliseconds()));\n }\n return input;\n};\nvar parseMonthByShortName = function (value) {\n var monthIdx = MONTHS.indexOf(value);\n if (monthIdx < 0) {\n throw new TypeError(\"Invalid month: \".concat(value));\n }\n return monthIdx + 1;\n};\nvar DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];\nvar validateDayOfMonth = function (year, month, day) {\n var maxDays = DAYS_IN_MONTH[month];\n if (month === 1 && isLeapYear(year)) {\n maxDays = 29;\n }\n if (day > maxDays) {\n throw new TypeError(\"Invalid day for \".concat(MONTHS[month], \" in \").concat(year, \": \").concat(day));\n }\n};\nvar isLeapYear = function (year) {\n return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);\n};\nvar parseDateValue = function (value, type, lower, upper) {\n var dateVal = Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseByte\"])(stripLeadingZeroes(value));\n if (dateVal < lower || dateVal > upper) {\n throw new TypeError(\"\".concat(type, \" must be between \").concat(lower, \" and \").concat(upper, \", inclusive\"));\n }\n return dateVal;\n};\nvar parseMilliseconds = function (value) {\n if (value === null || value === undefined) {\n return 0;\n }\n return Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseFloat32\"])(\"0.\" + value) * 1000;\n};\nvar stripLeadingZeroes = function (value) {\n var idx = 0;\n while (idx < value.length - 1 && value.charAt(idx) === \"0\") {\n idx++;\n }\n if (idx === 0) {\n return value;\n }\n return value.slice(idx);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js ***! \**************************************************************************************************************************/ /*! exports provided: throwDefaultError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"throwDefaultError\", function() { return throwDefaultError; });\n/* harmony import */ var _exceptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./exceptions */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js\");\n\nvar throwDefaultError = function (_a) {\n var output = _a.output, parsedBody = _a.parsedBody, exceptionCtor = _a.exceptionCtor, errorCode = _a.errorCode;\n var $metadata = deserializeMetadata(output);\n var statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + \"\" : undefined;\n var response = new exceptionCtor({\n name: parsedBody.code || parsedBody.Code || errorCode || statusCode || \"UnknowError\",\n $fault: \"client\",\n $metadata: $metadata,\n });\n throw Object(_exceptions__WEBPACK_IMPORTED_MODULE_0__[\"decorateServiceException\"])(response, parsedBody);\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js ***! \******************************************************************************************************************/ /*! exports provided: loadConfigsForDefaultMode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loadConfigsForDefaultMode\", function() { return loadConfigsForDefaultMode; });\nvar loadConfigsForDefaultMode = function (mode) {\n switch (mode) {\n case \"standard\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 3100,\n };\n case \"in-region\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 1100,\n };\n case \"cross-region\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 3100,\n };\n case \"mobile\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 30000,\n };\n default:\n return {};\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js": /*!************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js ***! \************************************************************************************************************************************/ /*! exports provided: emitWarningIfUnsupportedVersion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"emitWarningIfUnsupportedVersion\", function() { return emitWarningIfUnsupportedVersion; });\nvar warningEmitted = false;\nvar emitWarningIfUnsupportedVersion = function (version) {\n if (version && !warningEmitted && parseInt(version.substring(1, version.indexOf(\".\"))) < 14) {\n warningEmitted = true;\n process.emitWarning(\"The AWS SDK for JavaScript (v3) will\\n\" +\n \"no longer support Node.js \".concat(version, \" on November 1, 2022.\\n\\n\") +\n \"To continue receiving updates to AWS services, bug fixes, and security\\n\" +\n \"updates please upgrade to Node.js 14.x or later.\\n\\n\" +\n \"For details, please refer our blog post: https://a.co/48dbdYz\", \"NodeDeprecationWarning\");\n }\n};\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../node-libs-browser/mock/process.js */ \"./node_modules/node-libs-browser/mock/process.js\")))\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js ***! \***************************************************************************************************************/ /*! exports provided: ServiceException, decorateServiceException */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceException\", function() { return ServiceException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decorateServiceException\", function() { return decorateServiceException; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar ServiceException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ServiceException, _super);\n function ServiceException(options) {\n var _this = _super.call(this, options.message) || this;\n Object.setPrototypeOf(_this, ServiceException.prototype);\n _this.name = options.name;\n _this.$fault = options.$fault;\n _this.$metadata = options.$metadata;\n return _this;\n }\n return ServiceException;\n}(Error));\n\nvar decorateServiceException = function (exception, additions) {\n if (additions === void 0) { additions = {}; }\n Object.entries(additions)\n .filter(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), v = _b[1];\n return v !== undefined;\n })\n .forEach(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), k = _b[0], v = _b[1];\n if (exception[k] == undefined || exception[k] === \"\") {\n exception[k] = v;\n }\n });\n var message = exception.message || exception.Message || \"UnknownError\";\n exception.message = message;\n delete exception.Message;\n return exception;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js": /*!**********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js ***! \**********************************************************************************************************************************/ /*! exports provided: extendedEncodeURIComponent */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extendedEncodeURIComponent\", function() { return extendedEncodeURIComponent; });\nfunction extendedEncodeURIComponent(str) {\n return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {\n return \"%\" + c.charCodeAt(0).toString(16).toUpperCase();\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js ***! \*****************************************************************************************************************************/ /*! exports provided: getArrayIfSingleItem */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getArrayIfSingleItem\", function() { return getArrayIfSingleItem; });\nvar getArrayIfSingleItem = function (mayBeArray) {\n return Array.isArray(mayBeArray) ? mayBeArray : [mayBeArray];\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js ***! \*****************************************************************************************************************************/ /*! exports provided: getValueFromTextNode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getValueFromTextNode\", function() { return getValueFromTextNode; });\nvar getValueFromTextNode = function (obj) {\n var textNodeName = \"#text\";\n for (var key in obj) {\n if (obj.hasOwnProperty(key) && obj[key][textNodeName] !== undefined) {\n obj[key] = obj[key][textNodeName];\n }\n else if (typeof obj[key] === \"object\" && obj[key] !== null) {\n obj[key] = getValueFromTextNode(obj[key]);\n }\n }\n return obj;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js ***! \**********************************************************************************************************/ /*! exports provided: Client, Command, SENSITIVE_STRING, dateToUtcString, parseRfc3339DateTime, parseRfc7231DateTime, parseEpochTimestamp, throwDefaultError, loadConfigsForDefaultMode, emitWarningIfUnsupportedVersion, ServiceException, decorateServiceException, extendedEncodeURIComponent, getArrayIfSingleItem, getValueFromTextNode, StringWrapper, LazyJsonString, map, convertMap, parseBoolean, expectBoolean, expectNumber, expectFloat32, expectLong, expectInt, expectInt32, expectShort, expectByte, expectNonNull, expectObject, expectString, expectUnion, strictParseDouble, strictParseFloat, strictParseFloat32, limitedParseDouble, handleFloat, limitedParseFloat, limitedParseFloat32, strictParseLong, strictParseInt, strictParseInt32, strictParseShort, strictParseByte, logger, resolvedPath, serializeFloat, splitEvery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./client */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/client.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Client\", function() { return _client__WEBPACK_IMPORTED_MODULE_0__[\"Client\"]; });\n\n/* harmony import */ var _command__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./command */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/command.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Command\", function() { return _command__WEBPACK_IMPORTED_MODULE_1__[\"Command\"]; });\n\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/constants.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SENSITIVE_STRING\", function() { return _constants__WEBPACK_IMPORTED_MODULE_2__[\"SENSITIVE_STRING\"]; });\n\n/* harmony import */ var _date_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./date-utils */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"dateToUtcString\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseRfc3339DateTime\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"parseRfc3339DateTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseRfc7231DateTime\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"parseRfc7231DateTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseEpochTimestamp\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"parseEpochTimestamp\"]; });\n\n/* harmony import */ var _default_error_handler__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./default-error-handler */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"throwDefaultError\", function() { return _default_error_handler__WEBPACK_IMPORTED_MODULE_4__[\"throwDefaultError\"]; });\n\n/* harmony import */ var _defaults_mode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./defaults-mode */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loadConfigsForDefaultMode\", function() { return _defaults_mode__WEBPACK_IMPORTED_MODULE_5__[\"loadConfigsForDefaultMode\"]; });\n\n/* harmony import */ var _emitWarningIfUnsupportedVersion__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./emitWarningIfUnsupportedVersion */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"emitWarningIfUnsupportedVersion\", function() { return _emitWarningIfUnsupportedVersion__WEBPACK_IMPORTED_MODULE_6__[\"emitWarningIfUnsupportedVersion\"]; });\n\n/* harmony import */ var _exceptions__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./exceptions */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceException\", function() { return _exceptions__WEBPACK_IMPORTED_MODULE_7__[\"ServiceException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decorateServiceException\", function() { return _exceptions__WEBPACK_IMPORTED_MODULE_7__[\"decorateServiceException\"]; });\n\n/* harmony import */ var _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./extended-encode-uri-component */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"extendedEncodeURIComponent\", function() { return _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_8__[\"extendedEncodeURIComponent\"]; });\n\n/* harmony import */ var _get_array_if_single_item__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./get-array-if-single-item */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getArrayIfSingleItem\", function() { return _get_array_if_single_item__WEBPACK_IMPORTED_MODULE_9__[\"getArrayIfSingleItem\"]; });\n\n/* harmony import */ var _get_value_from_text_node__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./get-value-from-text-node */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getValueFromTextNode\", function() { return _get_value_from_text_node__WEBPACK_IMPORTED_MODULE_10__[\"getValueFromTextNode\"]; });\n\n/* harmony import */ var _lazy_json__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./lazy-json */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StringWrapper\", function() { return _lazy_json__WEBPACK_IMPORTED_MODULE_11__[\"StringWrapper\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LazyJsonString\", function() { return _lazy_json__WEBPACK_IMPORTED_MODULE_11__[\"LazyJsonString\"]; });\n\n/* harmony import */ var _object_mapping__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./object-mapping */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"map\", function() { return _object_mapping__WEBPACK_IMPORTED_MODULE_12__[\"map\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"convertMap\", function() { return _object_mapping__WEBPACK_IMPORTED_MODULE_12__[\"convertMap\"]; });\n\n/* harmony import */ var _parse_utils__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./parse-utils */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseBoolean\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"parseBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectBoolean\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectNumber\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectNumber\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectFloat32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectFloat32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectLong\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectLong\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectInt\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectInt\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectInt32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectInt32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectShort\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectShort\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectByte\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectByte\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectNonNull\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectNonNull\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectObject\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectObject\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectString\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectUnion\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectUnion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseDouble\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseDouble\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseFloat32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"limitedParseDouble\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"limitedParseDouble\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"handleFloat\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"handleFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"limitedParseFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"limitedParseFloat32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseLong\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseLong\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseInt\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseInt32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseShort\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseShort\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseByte\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseByte\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"logger\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"logger\"]; });\n\n/* harmony import */ var _resolve_path__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./resolve-path */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolvedPath\", function() { return _resolve_path__WEBPACK_IMPORTED_MODULE_14__[\"resolvedPath\"]; });\n\n/* harmony import */ var _ser_utils__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ser-utils */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializeFloat\", function() { return _ser_utils__WEBPACK_IMPORTED_MODULE_15__[\"serializeFloat\"]; });\n\n/* harmony import */ var _split_every__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./split-every */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"splitEvery\", function() { return _split_every__WEBPACK_IMPORTED_MODULE_16__[\"splitEvery\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js ***! \**************************************************************************************************************/ /*! exports provided: StringWrapper, LazyJsonString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StringWrapper\", function() { return StringWrapper; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LazyJsonString\", function() { return LazyJsonString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar StringWrapper = function () {\n var Class = Object.getPrototypeOf(this).constructor;\n var Constructor = Function.bind.apply(String, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([null], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(arguments), false));\n var instance = new Constructor();\n Object.setPrototypeOf(instance, Class.prototype);\n return instance;\n};\nStringWrapper.prototype = Object.create(String.prototype, {\n constructor: {\n value: StringWrapper,\n enumerable: false,\n writable: true,\n configurable: true,\n },\n});\nObject.setPrototypeOf(StringWrapper, String);\nvar LazyJsonString = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LazyJsonString, _super);\n function LazyJsonString() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n LazyJsonString.prototype.deserializeJSON = function () {\n return JSON.parse(_super.prototype.toString.call(this));\n };\n LazyJsonString.prototype.toJSON = function () {\n return _super.prototype.toString.call(this);\n };\n LazyJsonString.fromObject = function (object) {\n if (object instanceof LazyJsonString) {\n return object;\n }\n else if (object instanceof String || typeof object === \"string\") {\n return new LazyJsonString(object);\n }\n return new LazyJsonString(JSON.stringify(object));\n };\n return LazyJsonString;\n}(StringWrapper));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js ***! \*******************************************************************************************************************/ /*! exports provided: map, convertMap */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"map\", function() { return map; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"convertMap\", function() { return convertMap; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nfunction map(arg0, arg1, arg2) {\n var e_1, _a;\n var target;\n var filter;\n var instructions;\n if (typeof arg1 === \"undefined\" && typeof arg2 === \"undefined\") {\n target = {};\n instructions = arg0;\n }\n else {\n target = arg0;\n if (typeof arg1 === \"function\") {\n filter = arg1;\n instructions = arg2;\n return mapWithFilter(target, filter, instructions);\n }\n else {\n instructions = arg1;\n }\n }\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(instructions)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n if (!Array.isArray(instructions[key])) {\n target[key] = instructions[key];\n continue;\n }\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(instructions[key], 2), filter_1 = _d[0], value = _d[1];\n if (typeof value === \"function\") {\n var _value = void 0;\n var defaultFilterPassed = filter_1 === undefined && (_value = value()) != null;\n var customFilterPassed = (typeof filter_1 === \"function\" && !!filter_1(void 0)) || (typeof filter_1 !== \"function\" && !!filter_1);\n if (defaultFilterPassed) {\n target[key] = _value;\n }\n else if (customFilterPassed) {\n target[key] = value();\n }\n }\n else {\n var defaultFilterPassed = filter_1 === undefined && value != null;\n var customFilterPassed = (typeof filter_1 === \"function\" && !!filter_1(value)) || (typeof filter_1 !== \"function\" && !!filter_1);\n if (defaultFilterPassed || customFilterPassed) {\n target[key] = value;\n }\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return target;\n}\nvar convertMap = function (target) {\n var e_2, _a;\n var output = {};\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.entries(target || {})), _c = _b.next(); !_c.done; _c = _b.next()) {\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_c.value, 2), k = _d[0], v = _d[1];\n output[k] = [, v];\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return output;\n};\nvar mapWithFilter = function (target, filter, instructions) {\n return map(target, Object.entries(instructions).reduce(function (_instructions, _a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _b[0], value = _b[1];\n if (Array.isArray(value)) {\n _instructions[key] = value;\n }\n else {\n if (typeof value === \"function\") {\n _instructions[key] = [filter, value()];\n }\n else {\n _instructions[key] = [filter, value];\n }\n }\n return _instructions;\n }, {}));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js ***! \****************************************************************************************************************/ /*! exports provided: parseBoolean, expectBoolean, expectNumber, expectFloat32, expectLong, expectInt, expectInt32, expectShort, expectByte, expectNonNull, expectObject, expectString, expectUnion, strictParseDouble, strictParseFloat, strictParseFloat32, limitedParseDouble, handleFloat, limitedParseFloat, limitedParseFloat32, strictParseLong, strictParseInt, strictParseInt32, strictParseShort, strictParseByte, logger */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseBoolean\", function() { return parseBoolean; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectBoolean\", function() { return expectBoolean; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectNumber\", function() { return expectNumber; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectFloat32\", function() { return expectFloat32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectLong\", function() { return expectLong; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectInt\", function() { return expectInt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectInt32\", function() { return expectInt32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectShort\", function() { return expectShort; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectByte\", function() { return expectByte; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectNonNull\", function() { return expectNonNull; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectObject\", function() { return expectObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectString\", function() { return expectString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectUnion\", function() { return expectUnion; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseDouble\", function() { return strictParseDouble; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat\", function() { return strictParseFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat32\", function() { return strictParseFloat32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"limitedParseDouble\", function() { return limitedParseDouble; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"handleFloat\", function() { return handleFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat\", function() { return limitedParseFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat32\", function() { return limitedParseFloat32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseLong\", function() { return strictParseLong; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt\", function() { return strictParseInt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt32\", function() { return strictParseInt32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseShort\", function() { return strictParseShort; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseByte\", function() { return strictParseByte; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"logger\", function() { return logger; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n\nvar parseBoolean = function (value) {\n switch (value) {\n case \"true\":\n return true;\n case \"false\":\n return false;\n default:\n throw new Error(\"Unable to parse boolean value \\\"\".concat(value, \"\\\"\"));\n }\n};\nvar expectBoolean = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"number\") {\n if (value === 0 || value === 1) {\n logger.warn(stackTraceWarning(\"Expected boolean, got \".concat(typeof value, \": \").concat(value)));\n }\n if (value === 0) {\n return false;\n }\n if (value === 1) {\n return true;\n }\n }\n if (typeof value === \"string\") {\n var lower = value.toLowerCase();\n if (lower === \"false\" || lower === \"true\") {\n logger.warn(stackTraceWarning(\"Expected boolean, got \".concat(typeof value, \": \").concat(value)));\n }\n if (lower === \"false\") {\n return false;\n }\n if (lower === \"true\") {\n return true;\n }\n }\n if (typeof value === \"boolean\") {\n return value;\n }\n throw new TypeError(\"Expected boolean, got \".concat(typeof value, \": \").concat(value));\n};\nvar expectNumber = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"string\") {\n var parsed = parseFloat(value);\n if (!Number.isNaN(parsed)) {\n if (String(parsed) !== String(value)) {\n logger.warn(stackTraceWarning(\"Expected number but observed string: \".concat(value)));\n }\n return parsed;\n }\n }\n if (typeof value === \"number\") {\n return value;\n }\n throw new TypeError(\"Expected number, got \".concat(typeof value, \": \").concat(value));\n};\nvar MAX_FLOAT = Math.ceil(Math.pow(2, 127) * (2 - Math.pow(2, -23)));\nvar expectFloat32 = function (value) {\n var expected = expectNumber(value);\n if (expected !== undefined && !Number.isNaN(expected) && expected !== Infinity && expected !== -Infinity) {\n if (Math.abs(expected) > MAX_FLOAT) {\n throw new TypeError(\"Expected 32-bit float, got \".concat(value));\n }\n }\n return expected;\n};\nvar expectLong = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (Number.isInteger(value) && !Number.isNaN(value)) {\n return value;\n }\n throw new TypeError(\"Expected integer, got \".concat(typeof value, \": \").concat(value));\n};\nvar expectInt = expectLong;\nvar expectInt32 = function (value) { return expectSizedInt(value, 32); };\nvar expectShort = function (value) { return expectSizedInt(value, 16); };\nvar expectByte = function (value) { return expectSizedInt(value, 8); };\nvar expectSizedInt = function (value, size) {\n var expected = expectLong(value);\n if (expected !== undefined && castInt(expected, size) !== expected) {\n throw new TypeError(\"Expected \".concat(size, \"-bit integer, got \").concat(value));\n }\n return expected;\n};\nvar castInt = function (value, size) {\n switch (size) {\n case 32:\n return Int32Array.of(value)[0];\n case 16:\n return Int16Array.of(value)[0];\n case 8:\n return Int8Array.of(value)[0];\n }\n};\nvar expectNonNull = function (value, location) {\n if (value === null || value === undefined) {\n if (location) {\n throw new TypeError(\"Expected a non-null value for \".concat(location));\n }\n throw new TypeError(\"Expected a non-null value\");\n }\n return value;\n};\nvar expectObject = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"object\" && !Array.isArray(value)) {\n return value;\n }\n var receivedType = Array.isArray(value) ? \"array\" : typeof value;\n throw new TypeError(\"Expected object, got \".concat(receivedType, \": \").concat(value));\n};\nvar expectString = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"string\") {\n return value;\n }\n if ([\"boolean\", \"number\", \"bigint\"].includes(typeof value)) {\n logger.warn(stackTraceWarning(\"Expected string, got \".concat(typeof value, \": \").concat(value)));\n return String(value);\n }\n throw new TypeError(\"Expected string, got \".concat(typeof value, \": \").concat(value));\n};\nvar expectUnion = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n var asObject = expectObject(value);\n var setKeys = Object.entries(asObject)\n .filter(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), v = _b[1];\n return v != null;\n })\n .map(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 1), k = _b[0];\n return k;\n });\n if (setKeys.length === 0) {\n throw new TypeError(\"Unions must have exactly one non-null member. None were found.\");\n }\n if (setKeys.length > 1) {\n throw new TypeError(\"Unions must have exactly one non-null member. Keys \".concat(setKeys, \" were not null.\"));\n }\n return asObject;\n};\nvar strictParseDouble = function (value) {\n if (typeof value == \"string\") {\n return expectNumber(parseNumber(value));\n }\n return expectNumber(value);\n};\nvar strictParseFloat = strictParseDouble;\nvar strictParseFloat32 = function (value) {\n if (typeof value == \"string\") {\n return expectFloat32(parseNumber(value));\n }\n return expectFloat32(value);\n};\nvar NUMBER_REGEX = /(-?(?:0|[1-9]\\d*)(?:\\.\\d+)?(?:[eE][+-]?\\d+)?)|(-?Infinity)|(NaN)/g;\nvar parseNumber = function (value) {\n var matches = value.match(NUMBER_REGEX);\n if (matches === null || matches[0].length !== value.length) {\n throw new TypeError(\"Expected real number, got implicit NaN\");\n }\n return parseFloat(value);\n};\nvar limitedParseDouble = function (value) {\n if (typeof value == \"string\") {\n return parseFloatString(value);\n }\n return expectNumber(value);\n};\nvar handleFloat = limitedParseDouble;\nvar limitedParseFloat = limitedParseDouble;\nvar limitedParseFloat32 = function (value) {\n if (typeof value == \"string\") {\n return parseFloatString(value);\n }\n return expectFloat32(value);\n};\nvar parseFloatString = function (value) {\n switch (value) {\n case \"NaN\":\n return NaN;\n case \"Infinity\":\n return Infinity;\n case \"-Infinity\":\n return -Infinity;\n default:\n throw new Error(\"Unable to parse float value: \".concat(value));\n }\n};\nvar strictParseLong = function (value) {\n if (typeof value === \"string\") {\n return expectLong(parseNumber(value));\n }\n return expectLong(value);\n};\nvar strictParseInt = strictParseLong;\nvar strictParseInt32 = function (value) {\n if (typeof value === \"string\") {\n return expectInt32(parseNumber(value));\n }\n return expectInt32(value);\n};\nvar strictParseShort = function (value) {\n if (typeof value === \"string\") {\n return expectShort(parseNumber(value));\n }\n return expectShort(value);\n};\nvar strictParseByte = function (value) {\n if (typeof value === \"string\") {\n return expectByte(parseNumber(value));\n }\n return expectByte(value);\n};\nvar stackTraceWarning = function (message) {\n return String(new TypeError(message).stack || message)\n .split(\"\\n\")\n .slice(0, 5)\n .filter(function (s) { return !s.includes(\"stackTraceWarning\"); })\n .join(\"\\n\");\n};\nvar logger = {\n warn: console.warn,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js ***! \*****************************************************************************************************************/ /*! exports provided: resolvedPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolvedPath\", function() { return resolvedPath; });\n/* harmony import */ var _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./extended-encode-uri-component */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js\");\n\nvar resolvedPath = function (resolvedPath, input, memberName, labelValueProvider, uriLabel, isGreedyLabel) {\n if (input != null && input[memberName] !== undefined) {\n var labelValue = labelValueProvider();\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: \" + memberName + \".\");\n }\n resolvedPath = resolvedPath.replace(uriLabel, isGreedyLabel\n ? labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_0__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\")\n : Object(_extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_0__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: \" + memberName + \".\");\n }\n return resolvedPath;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js ***! \**************************************************************************************************************/ /*! exports provided: serializeFloat */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeFloat\", function() { return serializeFloat; });\nvar serializeFloat = function (value) {\n if (value !== value) {\n return \"NaN\";\n }\n switch (value) {\n case Infinity:\n return \"Infinity\";\n case -Infinity:\n return \"-Infinity\";\n default:\n return value;\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js ***! \****************************************************************************************************************/ /*! exports provided: splitEvery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"splitEvery\", function() { return splitEvery; });\nfunction splitEvery(value, delimiter, numDelimiters) {\n if (numDelimiters <= 0 || !Number.isInteger(numDelimiters)) {\n throw new Error(\"Invalid number of delimiters (\" + numDelimiters + \") for splitEvery.\");\n }\n var segments = value.split(delimiter);\n if (numDelimiters === 1) {\n return segments;\n }\n var compoundSegments = [];\n var currentSegment = \"\";\n for (var i = 0; i < segments.length; i++) {\n if (currentSegment === \"\") {\n currentSegment = segments[i];\n }\n else {\n currentSegment += delimiter + segments[i];\n }\n if ((i + 1) % numDelimiters === 0) {\n compoundSegments.push(currentSegment);\n currentSegment = \"\";\n }\n }\n if (currentSegment !== \"\") {\n compoundSegments.push(currentSegment);\n }\n return compoundSegments;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/url-parser/dist-es/index.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/url-parser/dist-es/index.js ***! \*******************************************************************************************************/ /*! exports provided: parseUrl */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseUrl\", function() { return parseUrl; });\n/* harmony import */ var _aws_sdk_querystring_parser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/querystring-parser */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/querystring-parser/dist-es/index.js\");\n\nvar parseUrl = function (url) {\n if (typeof url === 'string') {\n return parseUrl(new URL(url));\n }\n var _a = url, hostname = _a.hostname, pathname = _a.pathname, port = _a.port, protocol = _a.protocol, search = _a.search;\n var query;\n if (search) {\n query = Object(_aws_sdk_querystring_parser__WEBPACK_IMPORTED_MODULE_0__[\"parseQueryString\"])(search);\n }\n return {\n hostname: hostname,\n port: port ? parseInt(port) : undefined,\n protocol: protocol,\n path: pathname,\n query: query,\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/url-parser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js ***! \****************************************************************************************************************/ /*! exports provided: fromBase64, toBase64 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromBase64\", function() { return fromBase64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toBase64\", function() { return toBase64; });\nvar alphabetByEncoding = {};\nvar alphabetByValue = new Array(64);\nfor (var i = 0, start = \"A\".charCodeAt(0), limit = \"Z\".charCodeAt(0); i + start <= limit; i++) {\n var char = String.fromCharCode(i + start);\n alphabetByEncoding[char] = i;\n alphabetByValue[i] = char;\n}\nfor (var i = 0, start = \"a\".charCodeAt(0), limit = \"z\".charCodeAt(0); i + start <= limit; i++) {\n var char = String.fromCharCode(i + start);\n var index = i + 26;\n alphabetByEncoding[char] = index;\n alphabetByValue[index] = char;\n}\nfor (var i = 0; i < 10; i++) {\n alphabetByEncoding[i.toString(10)] = i + 52;\n var char = i.toString(10);\n var index = i + 52;\n alphabetByEncoding[char] = index;\n alphabetByValue[index] = char;\n}\nalphabetByEncoding[\"+\"] = 62;\nalphabetByValue[62] = \"+\";\nalphabetByEncoding[\"/\"] = 63;\nalphabetByValue[63] = \"/\";\nvar bitsPerLetter = 6;\nvar bitsPerByte = 8;\nvar maxLetterValue = 63;\nfunction fromBase64(input) {\n var totalByteLength = (input.length / 4) * 3;\n if (input.slice(-2) === \"==\") {\n totalByteLength -= 2;\n }\n else if (input.slice(-1) === \"=\") {\n totalByteLength--;\n }\n var out = new ArrayBuffer(totalByteLength);\n var dataView = new DataView(out);\n for (var i = 0; i < input.length; i += 4) {\n var bits = 0;\n var bitLength = 0;\n for (var j = i, limit = i + 3; j <= limit; j++) {\n if (input[j] !== \"=\") {\n if (!(input[j] in alphabetByEncoding)) {\n throw new TypeError(\"Invalid character \".concat(input[j], \" in base64 string.\"));\n }\n bits |= alphabetByEncoding[input[j]] << ((limit - j) * bitsPerLetter);\n bitLength += bitsPerLetter;\n }\n else {\n bits >>= bitsPerLetter;\n }\n }\n var chunkOffset = (i / 4) * 3;\n bits >>= bitLength % bitsPerByte;\n var byteLength = Math.floor(bitLength / bitsPerByte);\n for (var k = 0; k < byteLength; k++) {\n var offset = (byteLength - k - 1) * bitsPerByte;\n dataView.setUint8(chunkOffset + k, (bits & (255 << offset)) >> offset);\n }\n }\n return new Uint8Array(out);\n}\nfunction toBase64(input) {\n var str = \"\";\n for (var i = 0; i < input.length; i += 3) {\n var bits = 0;\n var bitLength = 0;\n for (var j = i, limit = Math.min(i + 3, input.length); j < limit; j++) {\n bits |= input[j] << ((limit - j - 1) * bitsPerByte);\n bitLength += bitsPerByte;\n }\n var bitClusterCount = Math.ceil(bitLength / bitsPerLetter);\n bits <<= bitClusterCount * bitsPerLetter - bitLength;\n for (var k = 1; k <= bitClusterCount; k++) {\n var offset = (bitClusterCount - k) * bitsPerLetter;\n str += alphabetByValue[(bits & (maxLetterValue << offset)) >> offset];\n }\n str += \"==\".slice(0, 4 - bitClusterCount);\n }\n return str;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js": /*!***********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js ***! \***********************************************************************************************************************************/ /*! exports provided: calculateBodyLength */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"calculateBodyLength\", function() { return calculateBodyLength; });\nvar calculateBodyLength = function (body) {\n if (typeof body === \"string\") {\n var len = body.length;\n for (var i = len - 1; i >= 0; i--) {\n var code = body.charCodeAt(i);\n if (code > 0x7f && code <= 0x7ff)\n len++;\n else if (code > 0x7ff && code <= 0xffff)\n len += 2;\n if (code >= 0xdc00 && code <= 0xdfff)\n i--;\n }\n return len;\n }\n else if (typeof body.byteLength === \"number\") {\n return body.byteLength;\n }\n else if (typeof body.size === \"number\") {\n return body.size;\n }\n throw new Error(\"Body Length computation failed for \".concat(body));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js ***! \*********************************************************************************************************************/ /*! exports provided: calculateBodyLength */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _calculateBodyLength__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./calculateBodyLength */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"calculateBodyLength\", function() { return _calculateBodyLength__WEBPACK_IMPORTED_MODULE_0__[\"calculateBodyLength\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js ***! \**************************************************************************************************************/ /*! exports provided: fromHex, toHex */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromHex\", function() { return fromHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toHex\", function() { return toHex; });\nvar SHORT_TO_HEX = {};\nvar HEX_TO_SHORT = {};\nfor (var i = 0; i < 256; i++) {\n var encodedByte = i.toString(16).toLowerCase();\n if (encodedByte.length === 1) {\n encodedByte = \"0\".concat(encodedByte);\n }\n SHORT_TO_HEX[i] = encodedByte;\n HEX_TO_SHORT[encodedByte] = i;\n}\nfunction fromHex(encoded) {\n if (encoded.length % 2 !== 0) {\n throw new Error(\"Hex encoded strings must have an even number length\");\n }\n var out = new Uint8Array(encoded.length / 2);\n for (var i = 0; i < encoded.length; i += 2) {\n var encodedByte = encoded.slice(i, i + 2).toLowerCase();\n if (encodedByte in HEX_TO_SHORT) {\n out[i / 2] = HEX_TO_SHORT[encodedByte];\n }\n else {\n throw new Error(\"Cannot decode unrecognized sequence \".concat(encodedByte, \" as hexadecimal\"));\n }\n }\n return out;\n}\nfunction toHex(bytes) {\n var out = \"\";\n for (var i = 0; i < bytes.byteLength; i++) {\n out += SHORT_TO_HEX[bytes[i]];\n }\n return out;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js ***! \**********************************************************************************************************************/ /*! exports provided: escapeUriPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeUriPath\", function() { return escapeUriPath; });\n/* harmony import */ var _escape_uri__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./escape-uri */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js\");\n\nvar escapeUriPath = function (uri) { return uri.split(\"/\").map(_escape_uri__WEBPACK_IMPORTED_MODULE_0__[\"escapeUri\"]).join(\"/\"); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js ***! \*****************************************************************************************************************/ /*! exports provided: escapeUri */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeUri\", function() { return escapeUri; });\nvar escapeUri = function (uri) {\n return encodeURIComponent(uri).replace(/[!'()*]/g, hexEncode);\n};\nvar hexEncode = function (c) { return \"%\".concat(c.charCodeAt(0).toString(16).toUpperCase()); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js ***! \************************************************************************************************************/ /*! exports provided: escapeUri, escapeUriPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _escape_uri__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./escape-uri */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"escapeUri\", function() { return _escape_uri__WEBPACK_IMPORTED_MODULE_0__[\"escapeUri\"]; });\n\n/* harmony import */ var _escape_uri_path__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./escape-uri-path */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"escapeUriPath\", function() { return _escape_uri_path__WEBPACK_IMPORTED_MODULE_1__[\"escapeUriPath\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js ***! \********************************************************************************************************************/ /*! exports provided: defaultUserAgent */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultUserAgent\", function() { return defaultUserAgent; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! bowser */ \"./node_modules/bowser/es5.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(bowser__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar defaultUserAgent = function (_a) {\n var serviceId = _a.serviceId, clientVersion = _a.clientVersion;\n return function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedUA, sections;\n var _a, _b, _c, _d, _e, _f, _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n parsedUA = typeof window !== \"undefined\" && ((_a = window === null || window === void 0 ? void 0 : window.navigator) === null || _a === void 0 ? void 0 : _a.userAgent)\n ? bowser__WEBPACK_IMPORTED_MODULE_1___default.a.parse(window.navigator.userAgent)\n : undefined;\n sections = [\n [\"aws-sdk-js\", clientVersion],\n [\"os/\".concat(((_b = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.os) === null || _b === void 0 ? void 0 : _b.name) || \"other\"), (_c = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.os) === null || _c === void 0 ? void 0 : _c.version],\n [\"lang/js\"],\n [\"md/browser\", \"\".concat((_e = (_d = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.browser) === null || _d === void 0 ? void 0 : _d.name) !== null && _e !== void 0 ? _e : \"unknown\", \"_\").concat((_g = (_f = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.browser) === null || _f === void 0 ? void 0 : _f.version) !== null && _g !== void 0 ? _g : \"unknown\")],\n ];\n if (serviceId) {\n sections.push([\"api/\".concat(serviceId), clientVersion]);\n }\n return [2, sections];\n });\n }); };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js ***! \**************************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\n/* harmony import */ var _pureJs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./pureJs */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js\");\n/* harmony import */ var _whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./whatwgEncodingApi */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js\");\n\n\nvar fromUtf8 = function (input) {\n return typeof TextEncoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"fromUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"fromUtf8\"])(input);\n};\nvar toUtf8 = function (input) {\n return typeof TextDecoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"toUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"toUtf8\"])(input);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js ***! \***************************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\nvar fromUtf8 = function (input) {\n var bytes = [];\n for (var i = 0, len = input.length; i < len; i++) {\n var value = input.charCodeAt(i);\n if (value < 0x80) {\n bytes.push(value);\n }\n else if (value < 0x800) {\n bytes.push((value >> 6) | 192, (value & 63) | 128);\n }\n else if (i + 1 < input.length && (value & 0xfc00) === 0xd800 && (input.charCodeAt(i + 1) & 0xfc00) === 0xdc00) {\n var surrogatePair = 0x10000 + ((value & 1023) << 10) + (input.charCodeAt(++i) & 1023);\n bytes.push((surrogatePair >> 18) | 240, ((surrogatePair >> 12) & 63) | 128, ((surrogatePair >> 6) & 63) | 128, (surrogatePair & 63) | 128);\n }\n else {\n bytes.push((value >> 12) | 224, ((value >> 6) & 63) | 128, (value & 63) | 128);\n }\n }\n return Uint8Array.from(bytes);\n};\nvar toUtf8 = function (input) {\n var decoded = \"\";\n for (var i = 0, len = input.length; i < len; i++) {\n var byte = input[i];\n if (byte < 0x80) {\n decoded += String.fromCharCode(byte);\n }\n else if (192 <= byte && byte < 224) {\n var nextByte = input[++i];\n decoded += String.fromCharCode(((byte & 31) << 6) | (nextByte & 63));\n }\n else if (240 <= byte && byte < 365) {\n var surrogatePair = [byte, input[++i], input[++i], input[++i]];\n var encoded = \"%\" + surrogatePair.map(function (byteValue) { return byteValue.toString(16); }).join(\"%\");\n decoded += decodeURIComponent(encoded);\n }\n else {\n decoded += String.fromCharCode(((byte & 15) << 12) | ((input[++i] & 63) << 6) | (input[++i] & 63));\n }\n }\n return decoded;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js ***! \**************************************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\nfunction fromUtf8(input) {\n return new TextEncoder().encode(input);\n}\nfunction toUtf8(input) {\n return new TextDecoder(\"utf-8\").decode(input);\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js ***! \*************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/index.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/index.js ***! \*************************************************************************************************/ /*! exports provided: v1, v3, v4, v5, NIL, version, validate, stringify, parse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _v1_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v1.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v1.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v1\", function() { return _v1_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/* harmony import */ var _v3_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./v3.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v3.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v3\", function() { return _v3_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _v4_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./v4.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v4.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v4\", function() { return _v4_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n/* harmony import */ var _v5_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./v5.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v5.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v5\", function() { return _v5_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"]; });\n\n/* harmony import */ var _nil_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./nil.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/nil.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NIL\", function() { return _nil_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"]; });\n\n/* harmony import */ var _version_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./version.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/version.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return _version_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"]; });\n\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/validate.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validate\", function() { return _validate_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"]; });\n\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/stringify.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"stringify\", function() { return _stringify_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"]; });\n\n/* harmony import */ var _parse_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./parse.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/parse.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parse\", function() { return _parse_js__WEBPACK_IMPORTED_MODULE_8__[\"default\"]; });\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/md5.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/md5.js ***! \***********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/*\n * Browser-compatible JavaScript MD5\n *\n * Modification of JavaScript MD5\n * https://github.com/blueimp/JavaScript-MD5\n *\n * Copyright 2011, Sebastian Tschan\n * https://blueimp.net\n *\n * Licensed under the MIT license:\n * https://opensource.org/licenses/MIT\n *\n * Based on\n * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message\n * Digest Algorithm, as defined in RFC 1321.\n * Version 2.2 Copyright (C) Paul Johnston 1999 - 2009\n * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet\n * Distributed under the BSD License\n * See http://pajhome.org.uk/crypt/md5 for more info.\n */\nfunction md5(bytes) {\n if (typeof bytes === 'string') {\n var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape\n\n bytes = new Uint8Array(msg.length);\n\n for (var i = 0; i < msg.length; ++i) {\n bytes[i] = msg.charCodeAt(i);\n }\n }\n\n return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8));\n}\n/*\n * Convert an array of little-endian words to an array of bytes\n */\n\n\nfunction md5ToHexEncodedArray(input) {\n var output = [];\n var length32 = input.length * 32;\n var hexTab = '0123456789abcdef';\n\n for (var i = 0; i < length32; i += 8) {\n var x = input[i >> 5] >>> i % 32 & 0xff;\n var hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16);\n output.push(hex);\n }\n\n return output;\n}\n/**\n * Calculate output length with padding and bit length\n */\n\n\nfunction getOutputLength(inputLength8) {\n return (inputLength8 + 64 >>> 9 << 4) + 14 + 1;\n}\n/*\n * Calculate the MD5 of an array of little-endian words, and a bit length.\n */\n\n\nfunction wordsToMd5(x, len) {\n /* append padding */\n x[len >> 5] |= 0x80 << len % 32;\n x[getOutputLength(len) - 1] = len;\n var a = 1732584193;\n var b = -271733879;\n var c = -1732584194;\n var d = 271733878;\n\n for (var i = 0; i < x.length; i += 16) {\n var olda = a;\n var oldb = b;\n var oldc = c;\n var oldd = d;\n a = md5ff(a, b, c, d, x[i], 7, -680876936);\n d = md5ff(d, a, b, c, x[i + 1], 12, -389564586);\n c = md5ff(c, d, a, b, x[i + 2], 17, 606105819);\n b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330);\n a = md5ff(a, b, c, d, x[i + 4], 7, -176418897);\n d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426);\n c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341);\n b = md5ff(b, c, d, a, x[i + 7], 22, -45705983);\n a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416);\n d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417);\n c = md5ff(c, d, a, b, x[i + 10], 17, -42063);\n b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162);\n a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682);\n d = md5ff(d, a, b, c, x[i + 13], 12, -40341101);\n c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290);\n b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329);\n a = md5gg(a, b, c, d, x[i + 1], 5, -165796510);\n d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632);\n c = md5gg(c, d, a, b, x[i + 11], 14, 643717713);\n b = md5gg(b, c, d, a, x[i], 20, -373897302);\n a = md5gg(a, b, c, d, x[i + 5], 5, -701558691);\n d = md5gg(d, a, b, c, x[i + 10], 9, 38016083);\n c = md5gg(c, d, a, b, x[i + 15], 14, -660478335);\n b = md5gg(b, c, d, a, x[i + 4], 20, -405537848);\n a = md5gg(a, b, c, d, x[i + 9], 5, 568446438);\n d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690);\n c = md5gg(c, d, a, b, x[i + 3], 14, -187363961);\n b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501);\n a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467);\n d = md5gg(d, a, b, c, x[i + 2], 9, -51403784);\n c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473);\n b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734);\n a = md5hh(a, b, c, d, x[i + 5], 4, -378558);\n d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463);\n c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562);\n b = md5hh(b, c, d, a, x[i + 14], 23, -35309556);\n a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060);\n d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353);\n c = md5hh(c, d, a, b, x[i + 7], 16, -155497632);\n b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640);\n a = md5hh(a, b, c, d, x[i + 13], 4, 681279174);\n d = md5hh(d, a, b, c, x[i], 11, -358537222);\n c = md5hh(c, d, a, b, x[i + 3], 16, -722521979);\n b = md5hh(b, c, d, a, x[i + 6], 23, 76029189);\n a = md5hh(a, b, c, d, x[i + 9], 4, -640364487);\n d = md5hh(d, a, b, c, x[i + 12], 11, -421815835);\n c = md5hh(c, d, a, b, x[i + 15], 16, 530742520);\n b = md5hh(b, c, d, a, x[i + 2], 23, -995338651);\n a = md5ii(a, b, c, d, x[i], 6, -198630844);\n d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415);\n c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905);\n b = md5ii(b, c, d, a, x[i + 5], 21, -57434055);\n a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571);\n d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606);\n c = md5ii(c, d, a, b, x[i + 10], 15, -1051523);\n b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799);\n a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359);\n d = md5ii(d, a, b, c, x[i + 15], 10, -30611744);\n c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380);\n b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649);\n a = md5ii(a, b, c, d, x[i + 4], 6, -145523070);\n d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379);\n c = md5ii(c, d, a, b, x[i + 2], 15, 718787259);\n b = md5ii(b, c, d, a, x[i + 9], 21, -343485551);\n a = safeAdd(a, olda);\n b = safeAdd(b, oldb);\n c = safeAdd(c, oldc);\n d = safeAdd(d, oldd);\n }\n\n return [a, b, c, d];\n}\n/*\n * Convert an array bytes to an array of little-endian words\n * Characters >255 have their high-byte silently ignored.\n */\n\n\nfunction bytesToWords(input) {\n if (input.length === 0) {\n return [];\n }\n\n var length8 = input.length * 8;\n var output = new Uint32Array(getOutputLength(length8));\n\n for (var i = 0; i < length8; i += 8) {\n output[i >> 5] |= (input[i / 8] & 0xff) << i % 32;\n }\n\n return output;\n}\n/*\n * Add integers, wrapping at 2^32. This uses 16-bit operations internally\n * to work around bugs in some JS interpreters.\n */\n\n\nfunction safeAdd(x, y) {\n var lsw = (x & 0xffff) + (y & 0xffff);\n var msw = (x >> 16) + (y >> 16) + (lsw >> 16);\n return msw << 16 | lsw & 0xffff;\n}\n/*\n * Bitwise rotate a 32-bit number to the left.\n */\n\n\nfunction bitRotateLeft(num, cnt) {\n return num << cnt | num >>> 32 - cnt;\n}\n/*\n * These functions implement the four basic operations the algorithm uses.\n */\n\n\nfunction md5cmn(q, a, b, x, s, t) {\n return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b);\n}\n\nfunction md5ff(a, b, c, d, x, s, t) {\n return md5cmn(b & c | ~b & d, a, b, x, s, t);\n}\n\nfunction md5gg(a, b, c, d, x, s, t) {\n return md5cmn(b & d | c & ~d, a, b, x, s, t);\n}\n\nfunction md5hh(a, b, c, d, x, s, t) {\n return md5cmn(b ^ c ^ d, a, b, x, s, t);\n}\n\nfunction md5ii(a, b, c, d, x, s, t) {\n return md5cmn(c ^ (b | ~d), a, b, x, s, t);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (md5);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/md5.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/nil.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/nil.js ***! \***********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = ('00000000-0000-0000-0000-000000000000');\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/nil.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/parse.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/parse.js ***! \*************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/validate.js\");\n\n\nfunction parse(uuid) {\n if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(uuid)) {\n throw TypeError('Invalid UUID');\n }\n\n var v;\n var arr = new Uint8Array(16); // Parse ########-....-....-....-............\n\n arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24;\n arr[1] = v >>> 16 & 0xff;\n arr[2] = v >>> 8 & 0xff;\n arr[3] = v & 0xff; // Parse ........-####-....-....-............\n\n arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8;\n arr[5] = v & 0xff; // Parse ........-....-####-....-............\n\n arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8;\n arr[7] = v & 0xff; // Parse ........-....-....-####-............\n\n arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8;\n arr[9] = v & 0xff; // Parse ........-....-....-....-############\n // (Use \"/\" to avoid 32-bit truncation when bit-shifting high-order bytes)\n\n arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff;\n arr[11] = v / 0x100000000 & 0xff;\n arr[12] = v >>> 24 & 0xff;\n arr[13] = v >>> 16 & 0xff;\n arr[14] = v >>> 8 & 0xff;\n arr[15] = v & 0xff;\n return arr;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (parse);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/parse.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/regex.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/regex.js ***! \*************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/regex.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/rng.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/rng.js ***! \***********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return rng; });\n// Unique ID creation requires a high quality random # generator. In the browser we therefore\n// require the crypto API and do not support built-in fallback to lower quality random number\n// generators (like Math.random()).\nvar getRandomValues;\nvar rnds8 = new Uint8Array(16);\nfunction rng() {\n // lazy load so that environments that need to polyfill have a chance to do so\n if (!getRandomValues) {\n // getRandomValues needs to be invoked in a context where \"this\" is a Crypto implementation. Also,\n // find the complete implementation of crypto (msCrypto) on IE11.\n getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto);\n\n if (!getRandomValues) {\n throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');\n }\n }\n\n return getRandomValues(rnds8);\n}\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/rng.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/sha1.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/sha1.js ***! \************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n// Adapted from Chris Veness' SHA1 code at\n// http://www.movable-type.co.uk/scripts/sha1.html\nfunction f(s, x, y, z) {\n switch (s) {\n case 0:\n return x & y ^ ~x & z;\n\n case 1:\n return x ^ y ^ z;\n\n case 2:\n return x & y ^ x & z ^ y & z;\n\n case 3:\n return x ^ y ^ z;\n }\n}\n\nfunction ROTL(x, n) {\n return x << n | x >>> 32 - n;\n}\n\nfunction sha1(bytes) {\n var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];\n var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0];\n\n if (typeof bytes === 'string') {\n var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape\n\n bytes = [];\n\n for (var i = 0; i < msg.length; ++i) {\n bytes.push(msg.charCodeAt(i));\n }\n } else if (!Array.isArray(bytes)) {\n // Convert Array-like to Array\n bytes = Array.prototype.slice.call(bytes);\n }\n\n bytes.push(0x80);\n var l = bytes.length / 4 + 2;\n var N = Math.ceil(l / 16);\n var M = new Array(N);\n\n for (var _i = 0; _i < N; ++_i) {\n var arr = new Uint32Array(16);\n\n for (var j = 0; j < 16; ++j) {\n arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3];\n }\n\n M[_i] = arr;\n }\n\n M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32);\n M[N - 1][14] = Math.floor(M[N - 1][14]);\n M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff;\n\n for (var _i2 = 0; _i2 < N; ++_i2) {\n var W = new Uint32Array(80);\n\n for (var t = 0; t < 16; ++t) {\n W[t] = M[_i2][t];\n }\n\n for (var _t = 16; _t < 80; ++_t) {\n W[_t] = ROTL(W[_t - 3] ^ W[_t - 8] ^ W[_t - 14] ^ W[_t - 16], 1);\n }\n\n var a = H[0];\n var b = H[1];\n var c = H[2];\n var d = H[3];\n var e = H[4];\n\n for (var _t2 = 0; _t2 < 80; ++_t2) {\n var s = Math.floor(_t2 / 20);\n var T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[_t2] >>> 0;\n e = d;\n d = c;\n c = ROTL(b, 30) >>> 0;\n b = a;\n a = T;\n }\n\n H[0] = H[0] + a >>> 0;\n H[1] = H[1] + b >>> 0;\n H[2] = H[2] + c >>> 0;\n H[3] = H[3] + d >>> 0;\n H[4] = H[4] + e >>> 0;\n }\n\n return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff];\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (sha1);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/sha1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/stringify.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/stringify.js ***! \*****************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/validate.js\");\n\n/**\n * Convert array of 16 byte values to UUID string format of the form:\n * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\n */\n\nvar byteToHex = [];\n\nfor (var i = 0; i < 256; ++i) {\n byteToHex.push((i + 0x100).toString(16).substr(1));\n}\n\nfunction stringify(arr) {\n var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n // Note: Be careful editing this code! It's been tuned for performance\n // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434\n var uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one\n // of the following:\n // - One or more input array values don't map to a hex octet (leading to\n // \"undefined\" in the uuid)\n // - Invalid input values for the RFC `version` or `variant` fields\n\n if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(uuid)) {\n throw TypeError('Stringified UUID is invalid');\n }\n\n return uuid;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (stringify);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/stringify.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v1.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v1.js ***! \**********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./rng.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/rng.js\");\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/stringify.js\");\n\n // **`v1()` - Generate time-based UUID**\n//\n// Inspired by https://github.com/LiosK/UUID.js\n// and http://docs.python.org/library/uuid.html\n\nvar _nodeId;\n\nvar _clockseq; // Previous uuid creation time\n\n\nvar _lastMSecs = 0;\nvar _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details\n\nfunction v1(options, buf, offset) {\n var i = buf && offset || 0;\n var b = buf || new Array(16);\n options = options || {};\n var node = options.node || _nodeId;\n var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not\n // specified. We do this lazily to minimize issues related to insufficient\n // system entropy. See #189\n\n if (node == null || clockseq == null) {\n var seedBytes = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])();\n\n if (node == null) {\n // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)\n node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];\n }\n\n if (clockseq == null) {\n // Per 4.2.2, randomize (14 bit) clockseq\n clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;\n }\n } // UUID timestamps are 100 nano-second units since the Gregorian epoch,\n // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so\n // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'\n // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.\n\n\n var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock\n // cycle to simulate higher resolution clock\n\n var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)\n\n var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression\n\n if (dt < 0 && options.clockseq === undefined) {\n clockseq = clockseq + 1 & 0x3fff;\n } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new\n // time interval\n\n\n if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {\n nsecs = 0;\n } // Per 4.2.1.2 Throw error if too many uuids are requested\n\n\n if (nsecs >= 10000) {\n throw new Error(\"uuid.v1(): Can't create more than 10M uuids/sec\");\n }\n\n _lastMSecs = msecs;\n _lastNSecs = nsecs;\n _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch\n\n msecs += 12219292800000; // `time_low`\n\n var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;\n b[i++] = tl >>> 24 & 0xff;\n b[i++] = tl >>> 16 & 0xff;\n b[i++] = tl >>> 8 & 0xff;\n b[i++] = tl & 0xff; // `time_mid`\n\n var tmh = msecs / 0x100000000 * 10000 & 0xfffffff;\n b[i++] = tmh >>> 8 & 0xff;\n b[i++] = tmh & 0xff; // `time_high_and_version`\n\n b[i++] = tmh >>> 24 & 0xf | 0x10; // include version\n\n b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)\n\n b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`\n\n b[i++] = clockseq & 0xff; // `node`\n\n for (var n = 0; n < 6; ++n) {\n b[i + n] = node[n];\n }\n\n return buf || Object(_stringify_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(b);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (v1);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v3.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v3.js ***! \**********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _v35_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v35.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v35.js\");\n/* harmony import */ var _md5_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./md5.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/md5.js\");\n\n\nvar v3 = Object(_v35_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])('v3', 0x30, _md5_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = (v3);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v3.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v35.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v35.js ***! \***********************************************************************************************/ /*! exports provided: DNS, URL, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DNS\", function() { return DNS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"URL\", function() { return URL; });\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/stringify.js\");\n/* harmony import */ var _parse_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./parse.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/parse.js\");\n\n\n\nfunction stringToBytes(str) {\n str = unescape(encodeURIComponent(str)); // UTF8 escape\n\n var bytes = [];\n\n for (var i = 0; i < str.length; ++i) {\n bytes.push(str.charCodeAt(i));\n }\n\n return bytes;\n}\n\nvar DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';\nvar URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';\n/* harmony default export */ __webpack_exports__[\"default\"] = (function (name, version, hashfunc) {\n function generateUUID(value, namespace, buf, offset) {\n if (typeof value === 'string') {\n value = stringToBytes(value);\n }\n\n if (typeof namespace === 'string') {\n namespace = Object(_parse_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(namespace);\n }\n\n if (namespace.length !== 16) {\n throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');\n } // Compute hash of namespace and value, Per 4.3\n // Future: Use spread syntax when supported on all platforms, e.g. `bytes =\n // hashfunc([...namespace, ... value])`\n\n\n var bytes = new Uint8Array(16 + value.length);\n bytes.set(namespace);\n bytes.set(value, namespace.length);\n bytes = hashfunc(bytes);\n bytes[6] = bytes[6] & 0x0f | version;\n bytes[8] = bytes[8] & 0x3f | 0x80;\n\n if (buf) {\n offset = offset || 0;\n\n for (var i = 0; i < 16; ++i) {\n buf[offset + i] = bytes[i];\n }\n\n return buf;\n }\n\n return Object(_stringify_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(bytes);\n } // Function#name is not settable on some platforms (#270)\n\n\n try {\n generateUUID.name = name; // eslint-disable-next-line no-empty\n } catch (err) {} // For CommonJS default export support\n\n\n generateUUID.DNS = DNS;\n generateUUID.URL = URL;\n return generateUUID;\n});\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v35.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v4.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v4.js ***! \**********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./rng.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/rng.js\");\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/stringify.js\");\n\n\n\nfunction v4(options, buf, offset) {\n options = options || {};\n var rnds = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`\n\n rnds[6] = rnds[6] & 0x0f | 0x40;\n rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided\n\n if (buf) {\n offset = offset || 0;\n\n for (var i = 0; i < 16; ++i) {\n buf[offset + i] = rnds[i];\n }\n\n return buf;\n }\n\n return Object(_stringify_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(rnds);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (v4);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v4.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v5.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v5.js ***! \**********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _v35_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v35.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v35.js\");\n/* harmony import */ var _sha1_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./sha1.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/sha1.js\");\n\n\nvar v5 = Object(_v35_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])('v5', 0x50, _sha1_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = (v5);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/v5.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/validate.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/validate.js ***! \****************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _regex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./regex.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/regex.js\");\n\n\nfunction validate(uuid) {\n return typeof uuid === 'string' && _regex_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].test(uuid);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validate);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/validate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/version.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/version.js ***! \***************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/validate.js\");\n\n\nfunction version(uuid) {\n if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(uuid)) {\n throw TypeError('Invalid UUID');\n }\n\n return parseInt(uuid.substr(14, 1), 16);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (version);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/node_modules/uuid/dist/esm-browser/version.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-lex-runtime-v2/package.json": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-lex-runtime-v2/package.json ***! \******************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, sideEffects, dependencies, devDependencies, overrides, engines, typesVersions, files, author, license, browser, react-native, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-lex-runtime-v2\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Lex Runtime V2 Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.186.0\\\",\\\"scripts\\\":{\\\"build\\\":\\\"concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.cjs.json\\\",\\\"build:docs\\\":\\\"typedoc\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build:include:deps\\\":\\\"lerna run --scope $npm_package_name --include-dependencies build\\\",\\\"build:types\\\":\\\"tsc -p tsconfig.types.json\\\",\\\"build:types:downlevel\\\":\\\"downlevel-dts dist-types dist-types/ts3.4\\\",\\\"clean\\\":\\\"rimraf ./dist-* && rimraf *.tsbuildinfo\\\"},\\\"main\\\":\\\"./dist-cjs/index.js\\\",\\\"types\\\":\\\"./dist-types/index.d.ts\\\",\\\"module\\\":\\\"./dist-es/index.js\\\",\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"2.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"2.0.0\\\",\\\"@aws-sdk/client-sts\\\":\\\"3.186.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.186.0\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/eventstream-handler-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/eventstream-serde-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/eventstream-serde-config-resolver\\\":\\\"3.186.0\\\",\\\"@aws-sdk/eventstream-serde-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.186.0\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-eventstream\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-recursion-detection\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.186.0\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.186.0\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.186.0\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.186.0\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.186.0\\\",\\\"@aws-sdk/types\\\":\\\"3.186.0\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-defaults-mode-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-defaults-mode-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.186.0\\\",\\\"tslib\\\":\\\"^2.3.1\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/service-client-documentation-generator\\\":\\\"3.186.0\\\",\\\"@tsconfig/recommended\\\":\\\"1.0.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"concurrently\\\":\\\"7.0.0\\\",\\\"downlevel-dts\\\":\\\"0.10.1\\\",\\\"rimraf\\\":\\\"3.0.2\\\",\\\"typedoc\\\":\\\"0.19.2\\\",\\\"typescript\\\":\\\"~4.6.2\\\"},\\\"overrides\\\":{\\\"typedoc\\\":{\\\"typescript\\\":\\\"~4.6.2\\\"}},\\\"engines\\\":{\\\"node\\\":\\\">=12.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"dist-types/*\\\":[\\\"dist-types/ts3.4/*\\\"]}},\\\"files\\\":[\\\"dist-*\\\"],\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"browser\\\":{\\\"./dist-es/runtimeConfig\\\":\\\"./dist-es/runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./dist-es/runtimeConfig\\\":\\\"./dist-es/runtimeConfig.native\\\"},\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-lex-runtime-v2\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-lex-runtime-v2\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-lex-runtime-v2/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/Location.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/Location.js ***! \*******************************************************************/ /*! exports provided: Location */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Location\", function() { return Location; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_AssociateTrackerConsumerCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./commands/AssociateTrackerConsumerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/AssociateTrackerConsumerCommand.js\");\n/* harmony import */ var _commands_BatchDeleteDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/BatchDeleteDevicePositionHistoryCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteDevicePositionHistoryCommand.js\");\n/* harmony import */ var _commands_BatchDeleteGeofenceCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/BatchDeleteGeofenceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteGeofenceCommand.js\");\n/* harmony import */ var _commands_BatchEvaluateGeofencesCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/BatchEvaluateGeofencesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchEvaluateGeofencesCommand.js\");\n/* harmony import */ var _commands_BatchGetDevicePositionCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/BatchGetDevicePositionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchGetDevicePositionCommand.js\");\n/* harmony import */ var _commands_BatchPutGeofenceCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/BatchPutGeofenceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchPutGeofenceCommand.js\");\n/* harmony import */ var _commands_BatchUpdateDevicePositionCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/BatchUpdateDevicePositionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchUpdateDevicePositionCommand.js\");\n/* harmony import */ var _commands_CalculateRouteCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/CalculateRouteCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteCommand.js\");\n/* harmony import */ var _commands_CalculateRouteMatrixCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/CalculateRouteMatrixCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteMatrixCommand.js\");\n/* harmony import */ var _commands_CreateGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/CreateGeofenceCollectionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreateGeofenceCollectionCommand.js\");\n/* harmony import */ var _commands_CreateMapCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/CreateMapCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreateMapCommand.js\");\n/* harmony import */ var _commands_CreatePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/CreatePlaceIndexCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreatePlaceIndexCommand.js\");\n/* harmony import */ var _commands_CreateRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/CreateRouteCalculatorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreateRouteCalculatorCommand.js\");\n/* harmony import */ var _commands_CreateTrackerCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/CreateTrackerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreateTrackerCommand.js\");\n/* harmony import */ var _commands_DeleteGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DeleteGeofenceCollectionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteGeofenceCollectionCommand.js\");\n/* harmony import */ var _commands_DeleteMapCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/DeleteMapCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteMapCommand.js\");\n/* harmony import */ var _commands_DeletePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DeletePlaceIndexCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeletePlaceIndexCommand.js\");\n/* harmony import */ var _commands_DeleteRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DeleteRouteCalculatorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteRouteCalculatorCommand.js\");\n/* harmony import */ var _commands_DeleteTrackerCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DeleteTrackerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteTrackerCommand.js\");\n/* harmony import */ var _commands_DescribeGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DescribeGeofenceCollectionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeGeofenceCollectionCommand.js\");\n/* harmony import */ var _commands_DescribeMapCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DescribeMapCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeMapCommand.js\");\n/* harmony import */ var _commands_DescribePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DescribePlaceIndexCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribePlaceIndexCommand.js\");\n/* harmony import */ var _commands_DescribeRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/DescribeRouteCalculatorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeRouteCalculatorCommand.js\");\n/* harmony import */ var _commands_DescribeTrackerCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/DescribeTrackerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeTrackerCommand.js\");\n/* harmony import */ var _commands_DisassociateTrackerConsumerCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/DisassociateTrackerConsumerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DisassociateTrackerConsumerCommand.js\");\n/* harmony import */ var _commands_GetDevicePositionCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/GetDevicePositionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionCommand.js\");\n/* harmony import */ var _commands_GetDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/GetDevicePositionHistoryCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionHistoryCommand.js\");\n/* harmony import */ var _commands_GetGeofenceCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/GetGeofenceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetGeofenceCommand.js\");\n/* harmony import */ var _commands_GetMapGlyphsCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/GetMapGlyphsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapGlyphsCommand.js\");\n/* harmony import */ var _commands_GetMapSpritesCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/GetMapSpritesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapSpritesCommand.js\");\n/* harmony import */ var _commands_GetMapStyleDescriptorCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/GetMapStyleDescriptorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapStyleDescriptorCommand.js\");\n/* harmony import */ var _commands_GetMapTileCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/GetMapTileCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapTileCommand.js\");\n/* harmony import */ var _commands_GetPlaceCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/GetPlaceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetPlaceCommand.js\");\n/* harmony import */ var _commands_ListDevicePositionsCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./commands/ListDevicePositionsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListDevicePositionsCommand.js\");\n/* harmony import */ var _commands_ListGeofenceCollectionsCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/ListGeofenceCollectionsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofenceCollectionsCommand.js\");\n/* harmony import */ var _commands_ListGeofencesCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./commands/ListGeofencesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofencesCommand.js\");\n/* harmony import */ var _commands_ListMapsCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/ListMapsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListMapsCommand.js\");\n/* harmony import */ var _commands_ListPlaceIndexesCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/ListPlaceIndexesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListPlaceIndexesCommand.js\");\n/* harmony import */ var _commands_ListRouteCalculatorsCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/ListRouteCalculatorsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListRouteCalculatorsCommand.js\");\n/* harmony import */ var _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/ListTagsForResourceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListTagsForResourceCommand.js\");\n/* harmony import */ var _commands_ListTrackerConsumersCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/ListTrackerConsumersCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackerConsumersCommand.js\");\n/* harmony import */ var _commands_ListTrackersCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/ListTrackersCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackersCommand.js\");\n/* harmony import */ var _commands_PutGeofenceCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/PutGeofenceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/PutGeofenceCommand.js\");\n/* harmony import */ var _commands_SearchPlaceIndexForPositionCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/SearchPlaceIndexForPositionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForPositionCommand.js\");\n/* harmony import */ var _commands_SearchPlaceIndexForSuggestionsCommand__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./commands/SearchPlaceIndexForSuggestionsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForSuggestionsCommand.js\");\n/* harmony import */ var _commands_SearchPlaceIndexForTextCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/SearchPlaceIndexForTextCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForTextCommand.js\");\n/* harmony import */ var _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./commands/TagResourceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/TagResourceCommand.js\");\n/* harmony import */ var _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./commands/UntagResourceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UntagResourceCommand.js\");\n/* harmony import */ var _commands_UpdateGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./commands/UpdateGeofenceCollectionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateGeofenceCollectionCommand.js\");\n/* harmony import */ var _commands_UpdateMapCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./commands/UpdateMapCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateMapCommand.js\");\n/* harmony import */ var _commands_UpdatePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./commands/UpdatePlaceIndexCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdatePlaceIndexCommand.js\");\n/* harmony import */ var _commands_UpdateRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./commands/UpdateRouteCalculatorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateRouteCalculatorCommand.js\");\n/* harmony import */ var _commands_UpdateTrackerCommand__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./commands/UpdateTrackerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateTrackerCommand.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar Location = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(Location, _super);\n function Location() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Location.prototype.associateTrackerConsumer = function (args, optionsOrCb, cb) {\n var command = new _commands_AssociateTrackerConsumerCommand__WEBPACK_IMPORTED_MODULE_1__[\"AssociateTrackerConsumerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.batchDeleteDevicePositionHistory = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchDeleteDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_2__[\"BatchDeleteDevicePositionHistoryCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.batchDeleteGeofence = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchDeleteGeofenceCommand__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteGeofenceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.batchEvaluateGeofences = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchEvaluateGeofencesCommand__WEBPACK_IMPORTED_MODULE_4__[\"BatchEvaluateGeofencesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.batchGetDevicePosition = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchGetDevicePositionCommand__WEBPACK_IMPORTED_MODULE_5__[\"BatchGetDevicePositionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.batchPutGeofence = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchPutGeofenceCommand__WEBPACK_IMPORTED_MODULE_6__[\"BatchPutGeofenceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.batchUpdateDevicePosition = function (args, optionsOrCb, cb) {\n var command = new _commands_BatchUpdateDevicePositionCommand__WEBPACK_IMPORTED_MODULE_7__[\"BatchUpdateDevicePositionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.calculateRoute = function (args, optionsOrCb, cb) {\n var command = new _commands_CalculateRouteCommand__WEBPACK_IMPORTED_MODULE_8__[\"CalculateRouteCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.calculateRouteMatrix = function (args, optionsOrCb, cb) {\n var command = new _commands_CalculateRouteMatrixCommand__WEBPACK_IMPORTED_MODULE_9__[\"CalculateRouteMatrixCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.createGeofenceCollection = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_10__[\"CreateGeofenceCollectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.createMap = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateMapCommand__WEBPACK_IMPORTED_MODULE_11__[\"CreateMapCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.createPlaceIndex = function (args, optionsOrCb, cb) {\n var command = new _commands_CreatePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_12__[\"CreatePlaceIndexCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.createRouteCalculator = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_13__[\"CreateRouteCalculatorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.createTracker = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateTrackerCommand__WEBPACK_IMPORTED_MODULE_14__[\"CreateTrackerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.deleteGeofenceCollection = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_15__[\"DeleteGeofenceCollectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.deleteMap = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteMapCommand__WEBPACK_IMPORTED_MODULE_16__[\"DeleteMapCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.deletePlaceIndex = function (args, optionsOrCb, cb) {\n var command = new _commands_DeletePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_17__[\"DeletePlaceIndexCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.deleteRouteCalculator = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_18__[\"DeleteRouteCalculatorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.deleteTracker = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteTrackerCommand__WEBPACK_IMPORTED_MODULE_19__[\"DeleteTrackerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.describeGeofenceCollection = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_20__[\"DescribeGeofenceCollectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.describeMap = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeMapCommand__WEBPACK_IMPORTED_MODULE_21__[\"DescribeMapCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.describePlaceIndex = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_22__[\"DescribePlaceIndexCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.describeRouteCalculator = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_23__[\"DescribeRouteCalculatorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.describeTracker = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeTrackerCommand__WEBPACK_IMPORTED_MODULE_24__[\"DescribeTrackerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.disassociateTrackerConsumer = function (args, optionsOrCb, cb) {\n var command = new _commands_DisassociateTrackerConsumerCommand__WEBPACK_IMPORTED_MODULE_25__[\"DisassociateTrackerConsumerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.getDevicePosition = function (args, optionsOrCb, cb) {\n var command = new _commands_GetDevicePositionCommand__WEBPACK_IMPORTED_MODULE_26__[\"GetDevicePositionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.getDevicePositionHistory = function (args, optionsOrCb, cb) {\n var command = new _commands_GetDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_27__[\"GetDevicePositionHistoryCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.getGeofence = function (args, optionsOrCb, cb) {\n var command = new _commands_GetGeofenceCommand__WEBPACK_IMPORTED_MODULE_28__[\"GetGeofenceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.getMapGlyphs = function (args, optionsOrCb, cb) {\n var command = new _commands_GetMapGlyphsCommand__WEBPACK_IMPORTED_MODULE_29__[\"GetMapGlyphsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.getMapSprites = function (args, optionsOrCb, cb) {\n var command = new _commands_GetMapSpritesCommand__WEBPACK_IMPORTED_MODULE_30__[\"GetMapSpritesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.getMapStyleDescriptor = function (args, optionsOrCb, cb) {\n var command = new _commands_GetMapStyleDescriptorCommand__WEBPACK_IMPORTED_MODULE_31__[\"GetMapStyleDescriptorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.getMapTile = function (args, optionsOrCb, cb) {\n var command = new _commands_GetMapTileCommand__WEBPACK_IMPORTED_MODULE_32__[\"GetMapTileCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.getPlace = function (args, optionsOrCb, cb) {\n var command = new _commands_GetPlaceCommand__WEBPACK_IMPORTED_MODULE_33__[\"GetPlaceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.listDevicePositions = function (args, optionsOrCb, cb) {\n var command = new _commands_ListDevicePositionsCommand__WEBPACK_IMPORTED_MODULE_34__[\"ListDevicePositionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.listGeofenceCollections = function (args, optionsOrCb, cb) {\n var command = new _commands_ListGeofenceCollectionsCommand__WEBPACK_IMPORTED_MODULE_35__[\"ListGeofenceCollectionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.listGeofences = function (args, optionsOrCb, cb) {\n var command = new _commands_ListGeofencesCommand__WEBPACK_IMPORTED_MODULE_36__[\"ListGeofencesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.listMaps = function (args, optionsOrCb, cb) {\n var command = new _commands_ListMapsCommand__WEBPACK_IMPORTED_MODULE_37__[\"ListMapsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.listPlaceIndexes = function (args, optionsOrCb, cb) {\n var command = new _commands_ListPlaceIndexesCommand__WEBPACK_IMPORTED_MODULE_38__[\"ListPlaceIndexesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.listRouteCalculators = function (args, optionsOrCb, cb) {\n var command = new _commands_ListRouteCalculatorsCommand__WEBPACK_IMPORTED_MODULE_39__[\"ListRouteCalculatorsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.listTagsForResource = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_40__[\"ListTagsForResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.listTrackerConsumers = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTrackerConsumersCommand__WEBPACK_IMPORTED_MODULE_41__[\"ListTrackerConsumersCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.listTrackers = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTrackersCommand__WEBPACK_IMPORTED_MODULE_42__[\"ListTrackersCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.putGeofence = function (args, optionsOrCb, cb) {\n var command = new _commands_PutGeofenceCommand__WEBPACK_IMPORTED_MODULE_43__[\"PutGeofenceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.searchPlaceIndexForPosition = function (args, optionsOrCb, cb) {\n var command = new _commands_SearchPlaceIndexForPositionCommand__WEBPACK_IMPORTED_MODULE_44__[\"SearchPlaceIndexForPositionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.searchPlaceIndexForSuggestions = function (args, optionsOrCb, cb) {\n var command = new _commands_SearchPlaceIndexForSuggestionsCommand__WEBPACK_IMPORTED_MODULE_45__[\"SearchPlaceIndexForSuggestionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.searchPlaceIndexForText = function (args, optionsOrCb, cb) {\n var command = new _commands_SearchPlaceIndexForTextCommand__WEBPACK_IMPORTED_MODULE_46__[\"SearchPlaceIndexForTextCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.tagResource = function (args, optionsOrCb, cb) {\n var command = new _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_47__[\"TagResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.untagResource = function (args, optionsOrCb, cb) {\n var command = new _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_48__[\"UntagResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.updateGeofenceCollection = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_49__[\"UpdateGeofenceCollectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.updateMap = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateMapCommand__WEBPACK_IMPORTED_MODULE_50__[\"UpdateMapCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.updatePlaceIndex = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdatePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_51__[\"UpdatePlaceIndexCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.updateRouteCalculator = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_52__[\"UpdateRouteCalculatorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Location.prototype.updateTracker = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateTrackerCommand__WEBPACK_IMPORTED_MODULE_53__[\"UpdateTrackerCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \".concat(typeof optionsOrCb));\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return Location;\n}(_LocationClient__WEBPACK_IMPORTED_MODULE_54__[\"LocationClient\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/Location.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js ***! \*************************************************************************/ /*! exports provided: LocationClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LocationClient\", function() { return LocationClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-logger/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_recursion_detection__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-recursion-detection */ \"./node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-location/dist-es/runtimeConfig.browser.js\");\n\n\n\n\n\n\n\n\n\n\n\nvar LocationClient = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LocationClient, _super);\n function LocationClient(configuration) {\n var _this = this;\n var _config_0 = Object(_runtimeConfig__WEBPACK_IMPORTED_MODULE_10__[\"getRuntimeConfig\"])(configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_3__[\"resolveHostHeaderConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_2__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_3__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_4__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_recursion_detection__WEBPACK_IMPORTED_MODULE_5__[\"getRecursionDetectionPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n LocationClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return LocationClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/AssociateTrackerConsumerCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/AssociateTrackerConsumerCommand.js ***! \***************************************************************************************************/ /*! exports provided: AssociateTrackerConsumerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AssociateTrackerConsumerCommand\", function() { return AssociateTrackerConsumerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar AssociateTrackerConsumerCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AssociateTrackerConsumerCommand, _super);\n function AssociateTrackerConsumerCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n AssociateTrackerConsumerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"AssociateTrackerConsumerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"AssociateTrackerConsumerRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"AssociateTrackerConsumerResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n AssociateTrackerConsumerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1AssociateTrackerConsumerCommand\"])(input, context);\n };\n AssociateTrackerConsumerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1AssociateTrackerConsumerCommand\"])(output, context);\n };\n return AssociateTrackerConsumerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/AssociateTrackerConsumerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteDevicePositionHistoryCommand.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteDevicePositionHistoryCommand.js ***! \***********************************************************************************************************/ /*! exports provided: BatchDeleteDevicePositionHistoryCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryCommand\", function() { return BatchDeleteDevicePositionHistoryCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar BatchDeleteDevicePositionHistoryCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchDeleteDevicePositionHistoryCommand, _super);\n function BatchDeleteDevicePositionHistoryCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n BatchDeleteDevicePositionHistoryCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"BatchDeleteDevicePositionHistoryCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchDeleteDevicePositionHistoryCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1BatchDeleteDevicePositionHistoryCommand\"])(input, context);\n };\n BatchDeleteDevicePositionHistoryCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1BatchDeleteDevicePositionHistoryCommand\"])(output, context);\n };\n return BatchDeleteDevicePositionHistoryCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteDevicePositionHistoryCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteGeofenceCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteGeofenceCommand.js ***! \**********************************************************************************************/ /*! exports provided: BatchDeleteGeofenceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceCommand\", function() { return BatchDeleteGeofenceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar BatchDeleteGeofenceCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchDeleteGeofenceCommand, _super);\n function BatchDeleteGeofenceCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n BatchDeleteGeofenceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"BatchDeleteGeofenceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteGeofenceRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteGeofenceResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchDeleteGeofenceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1BatchDeleteGeofenceCommand\"])(input, context);\n };\n BatchDeleteGeofenceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1BatchDeleteGeofenceCommand\"])(output, context);\n };\n return BatchDeleteGeofenceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteGeofenceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/BatchEvaluateGeofencesCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/BatchEvaluateGeofencesCommand.js ***! \*************************************************************************************************/ /*! exports provided: BatchEvaluateGeofencesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesCommand\", function() { return BatchEvaluateGeofencesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar BatchEvaluateGeofencesCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchEvaluateGeofencesCommand, _super);\n function BatchEvaluateGeofencesCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n BatchEvaluateGeofencesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"BatchEvaluateGeofencesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchEvaluateGeofencesRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchEvaluateGeofencesResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchEvaluateGeofencesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1BatchEvaluateGeofencesCommand\"])(input, context);\n };\n BatchEvaluateGeofencesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1BatchEvaluateGeofencesCommand\"])(output, context);\n };\n return BatchEvaluateGeofencesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/BatchEvaluateGeofencesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/BatchGetDevicePositionCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/BatchGetDevicePositionCommand.js ***! \*************************************************************************************************/ /*! exports provided: BatchGetDevicePositionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionCommand\", function() { return BatchGetDevicePositionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar BatchGetDevicePositionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchGetDevicePositionCommand, _super);\n function BatchGetDevicePositionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n BatchGetDevicePositionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"BatchGetDevicePositionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchGetDevicePositionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchGetDevicePositionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchGetDevicePositionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1BatchGetDevicePositionCommand\"])(input, context);\n };\n BatchGetDevicePositionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1BatchGetDevicePositionCommand\"])(output, context);\n };\n return BatchGetDevicePositionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/BatchGetDevicePositionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/BatchPutGeofenceCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/BatchPutGeofenceCommand.js ***! \*******************************************************************************************/ /*! exports provided: BatchPutGeofenceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceCommand\", function() { return BatchPutGeofenceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar BatchPutGeofenceCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchPutGeofenceCommand, _super);\n function BatchPutGeofenceCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n BatchPutGeofenceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"BatchPutGeofenceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchPutGeofenceRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchPutGeofenceResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchPutGeofenceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1BatchPutGeofenceCommand\"])(input, context);\n };\n BatchPutGeofenceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1BatchPutGeofenceCommand\"])(output, context);\n };\n return BatchPutGeofenceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/BatchPutGeofenceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/BatchUpdateDevicePositionCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/BatchUpdateDevicePositionCommand.js ***! \****************************************************************************************************/ /*! exports provided: BatchUpdateDevicePositionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionCommand\", function() { return BatchUpdateDevicePositionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar BatchUpdateDevicePositionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(BatchUpdateDevicePositionCommand, _super);\n function BatchUpdateDevicePositionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n BatchUpdateDevicePositionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"BatchUpdateDevicePositionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchUpdateDevicePositionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"BatchUpdateDevicePositionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n BatchUpdateDevicePositionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1BatchUpdateDevicePositionCommand\"])(input, context);\n };\n BatchUpdateDevicePositionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1BatchUpdateDevicePositionCommand\"])(output, context);\n };\n return BatchUpdateDevicePositionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/BatchUpdateDevicePositionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteCommand.js ***! \*****************************************************************************************/ /*! exports provided: CalculateRouteCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteCommand\", function() { return CalculateRouteCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar CalculateRouteCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CalculateRouteCommand, _super);\n function CalculateRouteCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n CalculateRouteCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"CalculateRouteCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CalculateRouteCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1CalculateRouteCommand\"])(input, context);\n };\n CalculateRouteCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1CalculateRouteCommand\"])(output, context);\n };\n return CalculateRouteCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteMatrixCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteMatrixCommand.js ***! \***********************************************************************************************/ /*! exports provided: CalculateRouteMatrixCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixCommand\", function() { return CalculateRouteMatrixCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar CalculateRouteMatrixCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CalculateRouteMatrixCommand, _super);\n function CalculateRouteMatrixCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n CalculateRouteMatrixCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"CalculateRouteMatrixCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteMatrixRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteMatrixResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CalculateRouteMatrixCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1CalculateRouteMatrixCommand\"])(input, context);\n };\n CalculateRouteMatrixCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1CalculateRouteMatrixCommand\"])(output, context);\n };\n return CalculateRouteMatrixCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteMatrixCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/CreateGeofenceCollectionCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/CreateGeofenceCollectionCommand.js ***! \***************************************************************************************************/ /*! exports provided: CreateGeofenceCollectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateGeofenceCollectionCommand\", function() { return CreateGeofenceCollectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar CreateGeofenceCollectionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateGeofenceCollectionCommand, _super);\n function CreateGeofenceCollectionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n CreateGeofenceCollectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"CreateGeofenceCollectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreateGeofenceCollectionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreateGeofenceCollectionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateGeofenceCollectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1CreateGeofenceCollectionCommand\"])(input, context);\n };\n CreateGeofenceCollectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1CreateGeofenceCollectionCommand\"])(output, context);\n };\n return CreateGeofenceCollectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/CreateGeofenceCollectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/CreateMapCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/CreateMapCommand.js ***! \************************************************************************************/ /*! exports provided: CreateMapCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateMapCommand\", function() { return CreateMapCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar CreateMapCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateMapCommand, _super);\n function CreateMapCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n CreateMapCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"CreateMapCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreateMapRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreateMapResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateMapCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1CreateMapCommand\"])(input, context);\n };\n CreateMapCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1CreateMapCommand\"])(output, context);\n };\n return CreateMapCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/CreateMapCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/CreatePlaceIndexCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/CreatePlaceIndexCommand.js ***! \*******************************************************************************************/ /*! exports provided: CreatePlaceIndexCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreatePlaceIndexCommand\", function() { return CreatePlaceIndexCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar CreatePlaceIndexCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreatePlaceIndexCommand, _super);\n function CreatePlaceIndexCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n CreatePlaceIndexCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"CreatePlaceIndexCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreatePlaceIndexRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreatePlaceIndexResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreatePlaceIndexCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1CreatePlaceIndexCommand\"])(input, context);\n };\n CreatePlaceIndexCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1CreatePlaceIndexCommand\"])(output, context);\n };\n return CreatePlaceIndexCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/CreatePlaceIndexCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/CreateRouteCalculatorCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/CreateRouteCalculatorCommand.js ***! \************************************************************************************************/ /*! exports provided: CreateRouteCalculatorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateRouteCalculatorCommand\", function() { return CreateRouteCalculatorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar CreateRouteCalculatorCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateRouteCalculatorCommand, _super);\n function CreateRouteCalculatorCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n CreateRouteCalculatorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"CreateRouteCalculatorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreateRouteCalculatorRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreateRouteCalculatorResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateRouteCalculatorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1CreateRouteCalculatorCommand\"])(input, context);\n };\n CreateRouteCalculatorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1CreateRouteCalculatorCommand\"])(output, context);\n };\n return CreateRouteCalculatorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/CreateRouteCalculatorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/CreateTrackerCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/CreateTrackerCommand.js ***! \****************************************************************************************/ /*! exports provided: CreateTrackerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateTrackerCommand\", function() { return CreateTrackerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar CreateTrackerCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateTrackerCommand, _super);\n function CreateTrackerCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n CreateTrackerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"CreateTrackerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreateTrackerRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"CreateTrackerResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateTrackerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1CreateTrackerCommand\"])(input, context);\n };\n CreateTrackerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1CreateTrackerCommand\"])(output, context);\n };\n return CreateTrackerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/CreateTrackerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteGeofenceCollectionCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteGeofenceCollectionCommand.js ***! \***************************************************************************************************/ /*! exports provided: DeleteGeofenceCollectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteGeofenceCollectionCommand\", function() { return DeleteGeofenceCollectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DeleteGeofenceCollectionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteGeofenceCollectionCommand, _super);\n function DeleteGeofenceCollectionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DeleteGeofenceCollectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DeleteGeofenceCollectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteGeofenceCollectionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteGeofenceCollectionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteGeofenceCollectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DeleteGeofenceCollectionCommand\"])(input, context);\n };\n DeleteGeofenceCollectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DeleteGeofenceCollectionCommand\"])(output, context);\n };\n return DeleteGeofenceCollectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteGeofenceCollectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteMapCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteMapCommand.js ***! \************************************************************************************/ /*! exports provided: DeleteMapCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteMapCommand\", function() { return DeleteMapCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DeleteMapCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteMapCommand, _super);\n function DeleteMapCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DeleteMapCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DeleteMapCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteMapRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteMapResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteMapCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DeleteMapCommand\"])(input, context);\n };\n DeleteMapCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DeleteMapCommand\"])(output, context);\n };\n return DeleteMapCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteMapCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DeletePlaceIndexCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DeletePlaceIndexCommand.js ***! \*******************************************************************************************/ /*! exports provided: DeletePlaceIndexCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeletePlaceIndexCommand\", function() { return DeletePlaceIndexCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DeletePlaceIndexCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeletePlaceIndexCommand, _super);\n function DeletePlaceIndexCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DeletePlaceIndexCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DeletePlaceIndexCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeletePlaceIndexRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeletePlaceIndexResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeletePlaceIndexCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DeletePlaceIndexCommand\"])(input, context);\n };\n DeletePlaceIndexCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DeletePlaceIndexCommand\"])(output, context);\n };\n return DeletePlaceIndexCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DeletePlaceIndexCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteRouteCalculatorCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteRouteCalculatorCommand.js ***! \************************************************************************************************/ /*! exports provided: DeleteRouteCalculatorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteRouteCalculatorCommand\", function() { return DeleteRouteCalculatorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DeleteRouteCalculatorCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteRouteCalculatorCommand, _super);\n function DeleteRouteCalculatorCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DeleteRouteCalculatorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DeleteRouteCalculatorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteRouteCalculatorRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteRouteCalculatorResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteRouteCalculatorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DeleteRouteCalculatorCommand\"])(input, context);\n };\n DeleteRouteCalculatorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DeleteRouteCalculatorCommand\"])(output, context);\n };\n return DeleteRouteCalculatorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteRouteCalculatorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteTrackerCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteTrackerCommand.js ***! \****************************************************************************************/ /*! exports provided: DeleteTrackerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteTrackerCommand\", function() { return DeleteTrackerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DeleteTrackerCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteTrackerCommand, _super);\n function DeleteTrackerCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DeleteTrackerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DeleteTrackerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteTrackerRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DeleteTrackerResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteTrackerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DeleteTrackerCommand\"])(input, context);\n };\n DeleteTrackerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DeleteTrackerCommand\"])(output, context);\n };\n return DeleteTrackerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteTrackerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeGeofenceCollectionCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeGeofenceCollectionCommand.js ***! \*****************************************************************************************************/ /*! exports provided: DescribeGeofenceCollectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeGeofenceCollectionCommand\", function() { return DescribeGeofenceCollectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DescribeGeofenceCollectionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeGeofenceCollectionCommand, _super);\n function DescribeGeofenceCollectionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DescribeGeofenceCollectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DescribeGeofenceCollectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribeGeofenceCollectionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribeGeofenceCollectionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeGeofenceCollectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DescribeGeofenceCollectionCommand\"])(input, context);\n };\n DescribeGeofenceCollectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DescribeGeofenceCollectionCommand\"])(output, context);\n };\n return DescribeGeofenceCollectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeGeofenceCollectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeMapCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeMapCommand.js ***! \**************************************************************************************/ /*! exports provided: DescribeMapCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeMapCommand\", function() { return DescribeMapCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DescribeMapCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeMapCommand, _super);\n function DescribeMapCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DescribeMapCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DescribeMapCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribeMapRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribeMapResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeMapCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DescribeMapCommand\"])(input, context);\n };\n DescribeMapCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DescribeMapCommand\"])(output, context);\n };\n return DescribeMapCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeMapCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DescribePlaceIndexCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DescribePlaceIndexCommand.js ***! \*********************************************************************************************/ /*! exports provided: DescribePlaceIndexCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribePlaceIndexCommand\", function() { return DescribePlaceIndexCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DescribePlaceIndexCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribePlaceIndexCommand, _super);\n function DescribePlaceIndexCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DescribePlaceIndexCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DescribePlaceIndexCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribePlaceIndexRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribePlaceIndexResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribePlaceIndexCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DescribePlaceIndexCommand\"])(input, context);\n };\n DescribePlaceIndexCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DescribePlaceIndexCommand\"])(output, context);\n };\n return DescribePlaceIndexCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DescribePlaceIndexCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeRouteCalculatorCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeRouteCalculatorCommand.js ***! \**************************************************************************************************/ /*! exports provided: DescribeRouteCalculatorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeRouteCalculatorCommand\", function() { return DescribeRouteCalculatorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DescribeRouteCalculatorCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeRouteCalculatorCommand, _super);\n function DescribeRouteCalculatorCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DescribeRouteCalculatorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DescribeRouteCalculatorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribeRouteCalculatorRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribeRouteCalculatorResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeRouteCalculatorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DescribeRouteCalculatorCommand\"])(input, context);\n };\n DescribeRouteCalculatorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DescribeRouteCalculatorCommand\"])(output, context);\n };\n return DescribeRouteCalculatorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeRouteCalculatorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeTrackerCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeTrackerCommand.js ***! \******************************************************************************************/ /*! exports provided: DescribeTrackerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeTrackerCommand\", function() { return DescribeTrackerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DescribeTrackerCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeTrackerCommand, _super);\n function DescribeTrackerCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DescribeTrackerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DescribeTrackerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribeTrackerRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DescribeTrackerResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeTrackerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DescribeTrackerCommand\"])(input, context);\n };\n DescribeTrackerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DescribeTrackerCommand\"])(output, context);\n };\n return DescribeTrackerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeTrackerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/DisassociateTrackerConsumerCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/DisassociateTrackerConsumerCommand.js ***! \******************************************************************************************************/ /*! exports provided: DisassociateTrackerConsumerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DisassociateTrackerConsumerCommand\", function() { return DisassociateTrackerConsumerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar DisassociateTrackerConsumerCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DisassociateTrackerConsumerCommand, _super);\n function DisassociateTrackerConsumerCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n DisassociateTrackerConsumerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"DisassociateTrackerConsumerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DisassociateTrackerConsumerRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"DisassociateTrackerConsumerResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DisassociateTrackerConsumerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1DisassociateTrackerConsumerCommand\"])(input, context);\n };\n DisassociateTrackerConsumerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1DisassociateTrackerConsumerCommand\"])(output, context);\n };\n return DisassociateTrackerConsumerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/DisassociateTrackerConsumerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionCommand.js ***! \********************************************************************************************/ /*! exports provided: GetDevicePositionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionCommand\", function() { return GetDevicePositionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetDevicePositionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetDevicePositionCommand, _super);\n function GetDevicePositionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetDevicePositionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"GetDevicePositionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetDevicePositionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetDevicePositionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetDevicePositionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetDevicePositionCommand\"])(input, context);\n };\n GetDevicePositionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetDevicePositionCommand\"])(output, context);\n };\n return GetDevicePositionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionHistoryCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionHistoryCommand.js ***! \***************************************************************************************************/ /*! exports provided: GetDevicePositionHistoryCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionHistoryCommand\", function() { return GetDevicePositionHistoryCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetDevicePositionHistoryCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetDevicePositionHistoryCommand, _super);\n function GetDevicePositionHistoryCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetDevicePositionHistoryCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"GetDevicePositionHistoryCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetDevicePositionHistoryRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetDevicePositionHistoryResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetDevicePositionHistoryCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetDevicePositionHistoryCommand\"])(input, context);\n };\n GetDevicePositionHistoryCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetDevicePositionHistoryCommand\"])(output, context);\n };\n return GetDevicePositionHistoryCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionHistoryCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/GetGeofenceCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/GetGeofenceCommand.js ***! \**************************************************************************************/ /*! exports provided: GetGeofenceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetGeofenceCommand\", function() { return GetGeofenceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetGeofenceCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetGeofenceCommand, _super);\n function GetGeofenceCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetGeofenceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"GetGeofenceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetGeofenceRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetGeofenceResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetGeofenceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetGeofenceCommand\"])(input, context);\n };\n GetGeofenceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetGeofenceCommand\"])(output, context);\n };\n return GetGeofenceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/GetGeofenceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapGlyphsCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapGlyphsCommand.js ***! \***************************************************************************************/ /*! exports provided: GetMapGlyphsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapGlyphsCommand\", function() { return GetMapGlyphsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetMapGlyphsCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetMapGlyphsCommand, _super);\n function GetMapGlyphsCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetMapGlyphsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"GetMapGlyphsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetMapGlyphsRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetMapGlyphsResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetMapGlyphsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetMapGlyphsCommand\"])(input, context);\n };\n GetMapGlyphsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetMapGlyphsCommand\"])(output, context);\n };\n return GetMapGlyphsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapGlyphsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapSpritesCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapSpritesCommand.js ***! \****************************************************************************************/ /*! exports provided: GetMapSpritesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapSpritesCommand\", function() { return GetMapSpritesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetMapSpritesCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetMapSpritesCommand, _super);\n function GetMapSpritesCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetMapSpritesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"GetMapSpritesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetMapSpritesRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetMapSpritesResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetMapSpritesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetMapSpritesCommand\"])(input, context);\n };\n GetMapSpritesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetMapSpritesCommand\"])(output, context);\n };\n return GetMapSpritesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapSpritesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapStyleDescriptorCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapStyleDescriptorCommand.js ***! \************************************************************************************************/ /*! exports provided: GetMapStyleDescriptorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapStyleDescriptorCommand\", function() { return GetMapStyleDescriptorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetMapStyleDescriptorCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetMapStyleDescriptorCommand, _super);\n function GetMapStyleDescriptorCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetMapStyleDescriptorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"GetMapStyleDescriptorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetMapStyleDescriptorRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetMapStyleDescriptorResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetMapStyleDescriptorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetMapStyleDescriptorCommand\"])(input, context);\n };\n GetMapStyleDescriptorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetMapStyleDescriptorCommand\"])(output, context);\n };\n return GetMapStyleDescriptorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapStyleDescriptorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapTileCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapTileCommand.js ***! \*************************************************************************************/ /*! exports provided: GetMapTileCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapTileCommand\", function() { return GetMapTileCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetMapTileCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetMapTileCommand, _super);\n function GetMapTileCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetMapTileCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"GetMapTileCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetMapTileRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetMapTileResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetMapTileCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetMapTileCommand\"])(input, context);\n };\n GetMapTileCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetMapTileCommand\"])(output, context);\n };\n return GetMapTileCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapTileCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/GetPlaceCommand.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/GetPlaceCommand.js ***! \***********************************************************************************/ /*! exports provided: GetPlaceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPlaceCommand\", function() { return GetPlaceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar GetPlaceCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetPlaceCommand, _super);\n function GetPlaceCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n GetPlaceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"GetPlaceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetPlaceRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"GetPlaceResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetPlaceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1GetPlaceCommand\"])(input, context);\n };\n GetPlaceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1GetPlaceCommand\"])(output, context);\n };\n return GetPlaceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/GetPlaceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/ListDevicePositionsCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/ListDevicePositionsCommand.js ***! \**********************************************************************************************/ /*! exports provided: ListDevicePositionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsCommand\", function() { return ListDevicePositionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar ListDevicePositionsCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListDevicePositionsCommand, _super);\n function ListDevicePositionsCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n ListDevicePositionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"ListDevicePositionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListDevicePositionsRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListDevicePositionsResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListDevicePositionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1ListDevicePositionsCommand\"])(input, context);\n };\n ListDevicePositionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1ListDevicePositionsCommand\"])(output, context);\n };\n return ListDevicePositionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/ListDevicePositionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofenceCollectionsCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofenceCollectionsCommand.js ***! \**************************************************************************************************/ /*! exports provided: ListGeofenceCollectionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsCommand\", function() { return ListGeofenceCollectionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar ListGeofenceCollectionsCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListGeofenceCollectionsCommand, _super);\n function ListGeofenceCollectionsCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n ListGeofenceCollectionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"ListGeofenceCollectionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofenceCollectionsRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofenceCollectionsResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListGeofenceCollectionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1ListGeofenceCollectionsCommand\"])(input, context);\n };\n ListGeofenceCollectionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1ListGeofenceCollectionsCommand\"])(output, context);\n };\n return ListGeofenceCollectionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofenceCollectionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofencesCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofencesCommand.js ***! \****************************************************************************************/ /*! exports provided: ListGeofencesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListGeofencesCommand\", function() { return ListGeofencesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar ListGeofencesCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListGeofencesCommand, _super);\n function ListGeofencesCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n ListGeofencesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"ListGeofencesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofencesRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofencesResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListGeofencesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1ListGeofencesCommand\"])(input, context);\n };\n ListGeofencesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1ListGeofencesCommand\"])(output, context);\n };\n return ListGeofencesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofencesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/ListMapsCommand.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/ListMapsCommand.js ***! \***********************************************************************************/ /*! exports provided: ListMapsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListMapsCommand\", function() { return ListMapsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar ListMapsCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListMapsCommand, _super);\n function ListMapsCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n ListMapsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"ListMapsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListMapsRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListMapsResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListMapsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1ListMapsCommand\"])(input, context);\n };\n ListMapsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1ListMapsCommand\"])(output, context);\n };\n return ListMapsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/ListMapsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/ListPlaceIndexesCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/ListPlaceIndexesCommand.js ***! \*******************************************************************************************/ /*! exports provided: ListPlaceIndexesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesCommand\", function() { return ListPlaceIndexesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar ListPlaceIndexesCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListPlaceIndexesCommand, _super);\n function ListPlaceIndexesCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n ListPlaceIndexesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"ListPlaceIndexesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListPlaceIndexesRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListPlaceIndexesResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListPlaceIndexesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1ListPlaceIndexesCommand\"])(input, context);\n };\n ListPlaceIndexesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1ListPlaceIndexesCommand\"])(output, context);\n };\n return ListPlaceIndexesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/ListPlaceIndexesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/ListRouteCalculatorsCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/ListRouteCalculatorsCommand.js ***! \***********************************************************************************************/ /*! exports provided: ListRouteCalculatorsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsCommand\", function() { return ListRouteCalculatorsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar ListRouteCalculatorsCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListRouteCalculatorsCommand, _super);\n function ListRouteCalculatorsCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n ListRouteCalculatorsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"ListRouteCalculatorsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListRouteCalculatorsRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListRouteCalculatorsResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListRouteCalculatorsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1ListRouteCalculatorsCommand\"])(input, context);\n };\n ListRouteCalculatorsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1ListRouteCalculatorsCommand\"])(output, context);\n };\n return ListRouteCalculatorsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/ListRouteCalculatorsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/ListTagsForResourceCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/ListTagsForResourceCommand.js ***! \**********************************************************************************************/ /*! exports provided: ListTagsForResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceCommand\", function() { return ListTagsForResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar ListTagsForResourceCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTagsForResourceCommand, _super);\n function ListTagsForResourceCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"ListTagsForResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListTagsForResourceRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListTagsForResourceResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTagsForResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1ListTagsForResourceCommand\"])(input, context);\n };\n ListTagsForResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1ListTagsForResourceCommand\"])(output, context);\n };\n return ListTagsForResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/ListTagsForResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackerConsumersCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackerConsumersCommand.js ***! \***********************************************************************************************/ /*! exports provided: ListTrackerConsumersCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTrackerConsumersCommand\", function() { return ListTrackerConsumersCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar ListTrackerConsumersCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTrackerConsumersCommand, _super);\n function ListTrackerConsumersCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n ListTrackerConsumersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"ListTrackerConsumersCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListTrackerConsumersRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListTrackerConsumersResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTrackerConsumersCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1ListTrackerConsumersCommand\"])(input, context);\n };\n ListTrackerConsumersCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1ListTrackerConsumersCommand\"])(output, context);\n };\n return ListTrackerConsumersCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackerConsumersCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackersCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackersCommand.js ***! \***************************************************************************************/ /*! exports provided: ListTrackersCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersCommand\", function() { return ListTrackersCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar ListTrackersCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTrackersCommand, _super);\n function ListTrackersCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n ListTrackersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"ListTrackersCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListTrackersRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"ListTrackersResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTrackersCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1ListTrackersCommand\"])(input, context);\n };\n ListTrackersCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1ListTrackersCommand\"])(output, context);\n };\n return ListTrackersCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackersCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/PutGeofenceCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/PutGeofenceCommand.js ***! \**************************************************************************************/ /*! exports provided: PutGeofenceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutGeofenceCommand\", function() { return PutGeofenceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar PutGeofenceCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutGeofenceCommand, _super);\n function PutGeofenceCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n PutGeofenceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"PutGeofenceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PutGeofenceRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"PutGeofenceResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutGeofenceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1PutGeofenceCommand\"])(input, context);\n };\n PutGeofenceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1PutGeofenceCommand\"])(output, context);\n };\n return PutGeofenceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/PutGeofenceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForPositionCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForPositionCommand.js ***! \******************************************************************************************************/ /*! exports provided: SearchPlaceIndexForPositionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionCommand\", function() { return SearchPlaceIndexForPositionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar SearchPlaceIndexForPositionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SearchPlaceIndexForPositionCommand, _super);\n function SearchPlaceIndexForPositionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n SearchPlaceIndexForPositionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"SearchPlaceIndexForPositionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForPositionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForPositionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SearchPlaceIndexForPositionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1SearchPlaceIndexForPositionCommand\"])(input, context);\n };\n SearchPlaceIndexForPositionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1SearchPlaceIndexForPositionCommand\"])(output, context);\n };\n return SearchPlaceIndexForPositionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForPositionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForSuggestionsCommand.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForSuggestionsCommand.js ***! \*********************************************************************************************************/ /*! exports provided: SearchPlaceIndexForSuggestionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsCommand\", function() { return SearchPlaceIndexForSuggestionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar SearchPlaceIndexForSuggestionsCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SearchPlaceIndexForSuggestionsCommand, _super);\n function SearchPlaceIndexForSuggestionsCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n SearchPlaceIndexForSuggestionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"SearchPlaceIndexForSuggestionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SearchPlaceIndexForSuggestionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1SearchPlaceIndexForSuggestionsCommand\"])(input, context);\n };\n SearchPlaceIndexForSuggestionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1SearchPlaceIndexForSuggestionsCommand\"])(output, context);\n };\n return SearchPlaceIndexForSuggestionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForSuggestionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForTextCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForTextCommand.js ***! \**************************************************************************************************/ /*! exports provided: SearchPlaceIndexForTextCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextCommand\", function() { return SearchPlaceIndexForTextCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar SearchPlaceIndexForTextCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SearchPlaceIndexForTextCommand, _super);\n function SearchPlaceIndexForTextCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n SearchPlaceIndexForTextCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"SearchPlaceIndexForTextCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForTextRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForTextResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SearchPlaceIndexForTextCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1SearchPlaceIndexForTextCommand\"])(input, context);\n };\n SearchPlaceIndexForTextCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1SearchPlaceIndexForTextCommand\"])(output, context);\n };\n return SearchPlaceIndexForTextCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForTextCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/TagResourceCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/TagResourceCommand.js ***! \**************************************************************************************/ /*! exports provided: TagResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceCommand\", function() { return TagResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar TagResourceCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TagResourceCommand, _super);\n function TagResourceCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n TagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"TagResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"TagResourceRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"TagResourceResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n TagResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1TagResourceCommand\"])(input, context);\n };\n TagResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1TagResourceCommand\"])(output, context);\n };\n return TagResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/TagResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/UntagResourceCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/UntagResourceCommand.js ***! \****************************************************************************************/ /*! exports provided: UntagResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceCommand\", function() { return UntagResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar UntagResourceCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UntagResourceCommand, _super);\n function UntagResourceCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n UntagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"UntagResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UntagResourceRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UntagResourceResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UntagResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1UntagResourceCommand\"])(input, context);\n };\n UntagResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1UntagResourceCommand\"])(output, context);\n };\n return UntagResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/UntagResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateGeofenceCollectionCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateGeofenceCollectionCommand.js ***! \***************************************************************************************************/ /*! exports provided: UpdateGeofenceCollectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateGeofenceCollectionCommand\", function() { return UpdateGeofenceCollectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar UpdateGeofenceCollectionCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateGeofenceCollectionCommand, _super);\n function UpdateGeofenceCollectionCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n UpdateGeofenceCollectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"UpdateGeofenceCollectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdateGeofenceCollectionRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdateGeofenceCollectionResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateGeofenceCollectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1UpdateGeofenceCollectionCommand\"])(input, context);\n };\n UpdateGeofenceCollectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1UpdateGeofenceCollectionCommand\"])(output, context);\n };\n return UpdateGeofenceCollectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateGeofenceCollectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateMapCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateMapCommand.js ***! \************************************************************************************/ /*! exports provided: UpdateMapCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateMapCommand\", function() { return UpdateMapCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar UpdateMapCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateMapCommand, _super);\n function UpdateMapCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n UpdateMapCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"UpdateMapCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdateMapRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdateMapResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateMapCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1UpdateMapCommand\"])(input, context);\n };\n UpdateMapCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1UpdateMapCommand\"])(output, context);\n };\n return UpdateMapCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateMapCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/UpdatePlaceIndexCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/UpdatePlaceIndexCommand.js ***! \*******************************************************************************************/ /*! exports provided: UpdatePlaceIndexCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdatePlaceIndexCommand\", function() { return UpdatePlaceIndexCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar UpdatePlaceIndexCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdatePlaceIndexCommand, _super);\n function UpdatePlaceIndexCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n UpdatePlaceIndexCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"UpdatePlaceIndexCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdatePlaceIndexRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdatePlaceIndexResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdatePlaceIndexCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1UpdatePlaceIndexCommand\"])(input, context);\n };\n UpdatePlaceIndexCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1UpdatePlaceIndexCommand\"])(output, context);\n };\n return UpdatePlaceIndexCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/UpdatePlaceIndexCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateRouteCalculatorCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateRouteCalculatorCommand.js ***! \************************************************************************************************/ /*! exports provided: UpdateRouteCalculatorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateRouteCalculatorCommand\", function() { return UpdateRouteCalculatorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar UpdateRouteCalculatorCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateRouteCalculatorCommand, _super);\n function UpdateRouteCalculatorCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n UpdateRouteCalculatorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"UpdateRouteCalculatorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdateRouteCalculatorRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdateRouteCalculatorResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateRouteCalculatorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1UpdateRouteCalculatorCommand\"])(input, context);\n };\n UpdateRouteCalculatorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1UpdateRouteCalculatorCommand\"])(output, context);\n };\n return UpdateRouteCalculatorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateRouteCalculatorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateTrackerCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateTrackerCommand.js ***! \****************************************************************************************/ /*! exports provided: UpdateTrackerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateTrackerCommand\", function() { return UpdateTrackerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js\");\n\n\n\n\n\nvar UpdateTrackerCommand = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateTrackerCommand, _super);\n function UpdateTrackerCommand(input) {\n var _this = _super.call(this) || this;\n _this.input = input;\n return _this;\n }\n UpdateTrackerCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"LocationClient\";\n var commandName = \"UpdateTrackerCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdateTrackerRequestFilterSensitiveLog\"],\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_3__[\"UpdateTrackerResponseFilterSensitiveLog\"],\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateTrackerCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"serializeAws_restJson1UpdateTrackerCommand\"])(input, context);\n };\n UpdateTrackerCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_4__[\"deserializeAws_restJson1UpdateTrackerCommand\"])(output, context);\n };\n return UpdateTrackerCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"Command\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateTrackerCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/commands/index.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/commands/index.js ***! \*************************************************************************/ /*! exports provided: AssociateTrackerConsumerCommand, BatchDeleteDevicePositionHistoryCommand, BatchDeleteGeofenceCommand, BatchEvaluateGeofencesCommand, BatchGetDevicePositionCommand, BatchPutGeofenceCommand, BatchUpdateDevicePositionCommand, CalculateRouteCommand, CalculateRouteMatrixCommand, CreateGeofenceCollectionCommand, CreateMapCommand, CreatePlaceIndexCommand, CreateRouteCalculatorCommand, CreateTrackerCommand, DeleteGeofenceCollectionCommand, DeleteMapCommand, DeletePlaceIndexCommand, DeleteRouteCalculatorCommand, DeleteTrackerCommand, DescribeGeofenceCollectionCommand, DescribeMapCommand, DescribePlaceIndexCommand, DescribeRouteCalculatorCommand, DescribeTrackerCommand, DisassociateTrackerConsumerCommand, GetDevicePositionCommand, GetDevicePositionHistoryCommand, GetGeofenceCommand, GetMapGlyphsCommand, GetMapSpritesCommand, GetMapStyleDescriptorCommand, GetMapTileCommand, GetPlaceCommand, ListDevicePositionsCommand, ListGeofenceCollectionsCommand, ListGeofencesCommand, ListMapsCommand, ListPlaceIndexesCommand, ListRouteCalculatorsCommand, ListTagsForResourceCommand, ListTrackerConsumersCommand, ListTrackersCommand, PutGeofenceCommand, SearchPlaceIndexForPositionCommand, SearchPlaceIndexForSuggestionsCommand, SearchPlaceIndexForTextCommand, TagResourceCommand, UntagResourceCommand, UpdateGeofenceCollectionCommand, UpdateMapCommand, UpdatePlaceIndexCommand, UpdateRouteCalculatorCommand, UpdateTrackerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AssociateTrackerConsumerCommand__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AssociateTrackerConsumerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/AssociateTrackerConsumerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AssociateTrackerConsumerCommand\", function() { return _AssociateTrackerConsumerCommand__WEBPACK_IMPORTED_MODULE_0__[\"AssociateTrackerConsumerCommand\"]; });\n\n/* harmony import */ var _BatchDeleteDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BatchDeleteDevicePositionHistoryCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteDevicePositionHistoryCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryCommand\", function() { return _BatchDeleteDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_1__[\"BatchDeleteDevicePositionHistoryCommand\"]; });\n\n/* harmony import */ var _BatchDeleteGeofenceCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BatchDeleteGeofenceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteGeofenceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceCommand\", function() { return _BatchDeleteGeofenceCommand__WEBPACK_IMPORTED_MODULE_2__[\"BatchDeleteGeofenceCommand\"]; });\n\n/* harmony import */ var _BatchEvaluateGeofencesCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./BatchEvaluateGeofencesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchEvaluateGeofencesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesCommand\", function() { return _BatchEvaluateGeofencesCommand__WEBPACK_IMPORTED_MODULE_3__[\"BatchEvaluateGeofencesCommand\"]; });\n\n/* harmony import */ var _BatchGetDevicePositionCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./BatchGetDevicePositionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchGetDevicePositionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionCommand\", function() { return _BatchGetDevicePositionCommand__WEBPACK_IMPORTED_MODULE_4__[\"BatchGetDevicePositionCommand\"]; });\n\n/* harmony import */ var _BatchPutGeofenceCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./BatchPutGeofenceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchPutGeofenceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceCommand\", function() { return _BatchPutGeofenceCommand__WEBPACK_IMPORTED_MODULE_5__[\"BatchPutGeofenceCommand\"]; });\n\n/* harmony import */ var _BatchUpdateDevicePositionCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BatchUpdateDevicePositionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/BatchUpdateDevicePositionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionCommand\", function() { return _BatchUpdateDevicePositionCommand__WEBPACK_IMPORTED_MODULE_6__[\"BatchUpdateDevicePositionCommand\"]; });\n\n/* harmony import */ var _CalculateRouteCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./CalculateRouteCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteCommand\", function() { return _CalculateRouteCommand__WEBPACK_IMPORTED_MODULE_7__[\"CalculateRouteCommand\"]; });\n\n/* harmony import */ var _CalculateRouteMatrixCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./CalculateRouteMatrixCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CalculateRouteMatrixCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixCommand\", function() { return _CalculateRouteMatrixCommand__WEBPACK_IMPORTED_MODULE_8__[\"CalculateRouteMatrixCommand\"]; });\n\n/* harmony import */ var _CreateGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./CreateGeofenceCollectionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreateGeofenceCollectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateGeofenceCollectionCommand\", function() { return _CreateGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_9__[\"CreateGeofenceCollectionCommand\"]; });\n\n/* harmony import */ var _CreateMapCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./CreateMapCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreateMapCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMapCommand\", function() { return _CreateMapCommand__WEBPACK_IMPORTED_MODULE_10__[\"CreateMapCommand\"]; });\n\n/* harmony import */ var _CreatePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./CreatePlaceIndexCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreatePlaceIndexCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePlaceIndexCommand\", function() { return _CreatePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_11__[\"CreatePlaceIndexCommand\"]; });\n\n/* harmony import */ var _CreateRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./CreateRouteCalculatorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreateRouteCalculatorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRouteCalculatorCommand\", function() { return _CreateRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_12__[\"CreateRouteCalculatorCommand\"]; });\n\n/* harmony import */ var _CreateTrackerCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./CreateTrackerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/CreateTrackerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateTrackerCommand\", function() { return _CreateTrackerCommand__WEBPACK_IMPORTED_MODULE_13__[\"CreateTrackerCommand\"]; });\n\n/* harmony import */ var _DeleteGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./DeleteGeofenceCollectionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteGeofenceCollectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGeofenceCollectionCommand\", function() { return _DeleteGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_14__[\"DeleteGeofenceCollectionCommand\"]; });\n\n/* harmony import */ var _DeleteMapCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./DeleteMapCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteMapCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMapCommand\", function() { return _DeleteMapCommand__WEBPACK_IMPORTED_MODULE_15__[\"DeleteMapCommand\"]; });\n\n/* harmony import */ var _DeletePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./DeletePlaceIndexCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeletePlaceIndexCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePlaceIndexCommand\", function() { return _DeletePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_16__[\"DeletePlaceIndexCommand\"]; });\n\n/* harmony import */ var _DeleteRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./DeleteRouteCalculatorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteRouteCalculatorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRouteCalculatorCommand\", function() { return _DeleteRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_17__[\"DeleteRouteCalculatorCommand\"]; });\n\n/* harmony import */ var _DeleteTrackerCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./DeleteTrackerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DeleteTrackerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteTrackerCommand\", function() { return _DeleteTrackerCommand__WEBPACK_IMPORTED_MODULE_18__[\"DeleteTrackerCommand\"]; });\n\n/* harmony import */ var _DescribeGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./DescribeGeofenceCollectionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeGeofenceCollectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeGeofenceCollectionCommand\", function() { return _DescribeGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_19__[\"DescribeGeofenceCollectionCommand\"]; });\n\n/* harmony import */ var _DescribeMapCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./DescribeMapCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeMapCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMapCommand\", function() { return _DescribeMapCommand__WEBPACK_IMPORTED_MODULE_20__[\"DescribeMapCommand\"]; });\n\n/* harmony import */ var _DescribePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./DescribePlaceIndexCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribePlaceIndexCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePlaceIndexCommand\", function() { return _DescribePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_21__[\"DescribePlaceIndexCommand\"]; });\n\n/* harmony import */ var _DescribeRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./DescribeRouteCalculatorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeRouteCalculatorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeRouteCalculatorCommand\", function() { return _DescribeRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_22__[\"DescribeRouteCalculatorCommand\"]; });\n\n/* harmony import */ var _DescribeTrackerCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./DescribeTrackerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DescribeTrackerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTrackerCommand\", function() { return _DescribeTrackerCommand__WEBPACK_IMPORTED_MODULE_23__[\"DescribeTrackerCommand\"]; });\n\n/* harmony import */ var _DisassociateTrackerConsumerCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./DisassociateTrackerConsumerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/DisassociateTrackerConsumerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisassociateTrackerConsumerCommand\", function() { return _DisassociateTrackerConsumerCommand__WEBPACK_IMPORTED_MODULE_24__[\"DisassociateTrackerConsumerCommand\"]; });\n\n/* harmony import */ var _GetDevicePositionCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./GetDevicePositionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionCommand\", function() { return _GetDevicePositionCommand__WEBPACK_IMPORTED_MODULE_25__[\"GetDevicePositionCommand\"]; });\n\n/* harmony import */ var _GetDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./GetDevicePositionHistoryCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionHistoryCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionHistoryCommand\", function() { return _GetDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_26__[\"GetDevicePositionHistoryCommand\"]; });\n\n/* harmony import */ var _GetGeofenceCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./GetGeofenceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetGeofenceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGeofenceCommand\", function() { return _GetGeofenceCommand__WEBPACK_IMPORTED_MODULE_27__[\"GetGeofenceCommand\"]; });\n\n/* harmony import */ var _GetMapGlyphsCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./GetMapGlyphsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapGlyphsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapGlyphsCommand\", function() { return _GetMapGlyphsCommand__WEBPACK_IMPORTED_MODULE_28__[\"GetMapGlyphsCommand\"]; });\n\n/* harmony import */ var _GetMapSpritesCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./GetMapSpritesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapSpritesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapSpritesCommand\", function() { return _GetMapSpritesCommand__WEBPACK_IMPORTED_MODULE_29__[\"GetMapSpritesCommand\"]; });\n\n/* harmony import */ var _GetMapStyleDescriptorCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./GetMapStyleDescriptorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapStyleDescriptorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapStyleDescriptorCommand\", function() { return _GetMapStyleDescriptorCommand__WEBPACK_IMPORTED_MODULE_30__[\"GetMapStyleDescriptorCommand\"]; });\n\n/* harmony import */ var _GetMapTileCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./GetMapTileCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetMapTileCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapTileCommand\", function() { return _GetMapTileCommand__WEBPACK_IMPORTED_MODULE_31__[\"GetMapTileCommand\"]; });\n\n/* harmony import */ var _GetPlaceCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./GetPlaceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetPlaceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPlaceCommand\", function() { return _GetPlaceCommand__WEBPACK_IMPORTED_MODULE_32__[\"GetPlaceCommand\"]; });\n\n/* harmony import */ var _ListDevicePositionsCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./ListDevicePositionsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListDevicePositionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsCommand\", function() { return _ListDevicePositionsCommand__WEBPACK_IMPORTED_MODULE_33__[\"ListDevicePositionsCommand\"]; });\n\n/* harmony import */ var _ListGeofenceCollectionsCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./ListGeofenceCollectionsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofenceCollectionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsCommand\", function() { return _ListGeofenceCollectionsCommand__WEBPACK_IMPORTED_MODULE_34__[\"ListGeofenceCollectionsCommand\"]; });\n\n/* harmony import */ var _ListGeofencesCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./ListGeofencesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofencesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofencesCommand\", function() { return _ListGeofencesCommand__WEBPACK_IMPORTED_MODULE_35__[\"ListGeofencesCommand\"]; });\n\n/* harmony import */ var _ListMapsCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./ListMapsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListMapsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMapsCommand\", function() { return _ListMapsCommand__WEBPACK_IMPORTED_MODULE_36__[\"ListMapsCommand\"]; });\n\n/* harmony import */ var _ListPlaceIndexesCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./ListPlaceIndexesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListPlaceIndexesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesCommand\", function() { return _ListPlaceIndexesCommand__WEBPACK_IMPORTED_MODULE_37__[\"ListPlaceIndexesCommand\"]; });\n\n/* harmony import */ var _ListRouteCalculatorsCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./ListRouteCalculatorsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListRouteCalculatorsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsCommand\", function() { return _ListRouteCalculatorsCommand__WEBPACK_IMPORTED_MODULE_38__[\"ListRouteCalculatorsCommand\"]; });\n\n/* harmony import */ var _ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./ListTagsForResourceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListTagsForResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceCommand\", function() { return _ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_39__[\"ListTagsForResourceCommand\"]; });\n\n/* harmony import */ var _ListTrackerConsumersCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./ListTrackerConsumersCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackerConsumersCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackerConsumersCommand\", function() { return _ListTrackerConsumersCommand__WEBPACK_IMPORTED_MODULE_40__[\"ListTrackerConsumersCommand\"]; });\n\n/* harmony import */ var _ListTrackersCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./ListTrackersCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackersCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersCommand\", function() { return _ListTrackersCommand__WEBPACK_IMPORTED_MODULE_41__[\"ListTrackersCommand\"]; });\n\n/* harmony import */ var _PutGeofenceCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./PutGeofenceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/PutGeofenceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutGeofenceCommand\", function() { return _PutGeofenceCommand__WEBPACK_IMPORTED_MODULE_42__[\"PutGeofenceCommand\"]; });\n\n/* harmony import */ var _SearchPlaceIndexForPositionCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./SearchPlaceIndexForPositionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForPositionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionCommand\", function() { return _SearchPlaceIndexForPositionCommand__WEBPACK_IMPORTED_MODULE_43__[\"SearchPlaceIndexForPositionCommand\"]; });\n\n/* harmony import */ var _SearchPlaceIndexForSuggestionsCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./SearchPlaceIndexForSuggestionsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForSuggestionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsCommand\", function() { return _SearchPlaceIndexForSuggestionsCommand__WEBPACK_IMPORTED_MODULE_44__[\"SearchPlaceIndexForSuggestionsCommand\"]; });\n\n/* harmony import */ var _SearchPlaceIndexForTextCommand__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./SearchPlaceIndexForTextCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/SearchPlaceIndexForTextCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextCommand\", function() { return _SearchPlaceIndexForTextCommand__WEBPACK_IMPORTED_MODULE_45__[\"SearchPlaceIndexForTextCommand\"]; });\n\n/* harmony import */ var _TagResourceCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./TagResourceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/TagResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceCommand\", function() { return _TagResourceCommand__WEBPACK_IMPORTED_MODULE_46__[\"TagResourceCommand\"]; });\n\n/* harmony import */ var _UntagResourceCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./UntagResourceCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UntagResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceCommand\", function() { return _UntagResourceCommand__WEBPACK_IMPORTED_MODULE_47__[\"UntagResourceCommand\"]; });\n\n/* harmony import */ var _UpdateGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./UpdateGeofenceCollectionCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateGeofenceCollectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGeofenceCollectionCommand\", function() { return _UpdateGeofenceCollectionCommand__WEBPACK_IMPORTED_MODULE_48__[\"UpdateGeofenceCollectionCommand\"]; });\n\n/* harmony import */ var _UpdateMapCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./UpdateMapCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateMapCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateMapCommand\", function() { return _UpdateMapCommand__WEBPACK_IMPORTED_MODULE_49__[\"UpdateMapCommand\"]; });\n\n/* harmony import */ var _UpdatePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./UpdatePlaceIndexCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdatePlaceIndexCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePlaceIndexCommand\", function() { return _UpdatePlaceIndexCommand__WEBPACK_IMPORTED_MODULE_50__[\"UpdatePlaceIndexCommand\"]; });\n\n/* harmony import */ var _UpdateRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./UpdateRouteCalculatorCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateRouteCalculatorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRouteCalculatorCommand\", function() { return _UpdateRouteCalculatorCommand__WEBPACK_IMPORTED_MODULE_51__[\"UpdateRouteCalculatorCommand\"]; });\n\n/* harmony import */ var _UpdateTrackerCommand__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./UpdateTrackerCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/UpdateTrackerCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTrackerCommand\", function() { return _UpdateTrackerCommand__WEBPACK_IMPORTED_MODULE_52__[\"UpdateTrackerCommand\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/commands/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/endpoints.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/endpoints.js ***! \********************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar regionHash = {};\nvar partitionHash = {\n aws: {\n regions: [\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-northeast-3\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ap-southeast-3\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-central-1\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n ],\n regionRegex: \"^(us|eu|ap|sa|ca|me|af)\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"geo.{region}.amazonaws.com\",\n tags: [],\n },\n {\n hostname: \"geo-fips.{region}.amazonaws.com\",\n tags: [\"fips\"],\n },\n {\n hostname: \"geo-fips.{region}.api.aws\",\n tags: [\"dualstack\", \"fips\"],\n },\n {\n hostname: \"geo.{region}.api.aws\",\n tags: [\"dualstack\"],\n },\n ],\n },\n \"aws-cn\": {\n regions: [\"cn-north-1\", \"cn-northwest-1\"],\n regionRegex: \"^cn\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"geo.{region}.amazonaws.com.cn\",\n tags: [],\n },\n {\n hostname: \"geo-fips.{region}.amazonaws.com.cn\",\n tags: [\"fips\"],\n },\n {\n hostname: \"geo-fips.{region}.api.amazonwebservices.com.cn\",\n tags: [\"dualstack\", \"fips\"],\n },\n {\n hostname: \"geo.{region}.api.amazonwebservices.com.cn\",\n tags: [\"dualstack\"],\n },\n ],\n },\n \"aws-iso\": {\n regions: [\"us-iso-east-1\", \"us-iso-west-1\"],\n regionRegex: \"^us\\\\-iso\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"geo.{region}.c2s.ic.gov\",\n tags: [],\n },\n {\n hostname: \"geo-fips.{region}.c2s.ic.gov\",\n tags: [\"fips\"],\n },\n ],\n },\n \"aws-iso-b\": {\n regions: [\"us-isob-east-1\"],\n regionRegex: \"^us\\\\-isob\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"geo.{region}.sc2s.sgov.gov\",\n tags: [],\n },\n {\n hostname: \"geo-fips.{region}.sc2s.sgov.gov\",\n tags: [\"fips\"],\n },\n ],\n },\n \"aws-us-gov\": {\n regions: [\"us-gov-east-1\", \"us-gov-west-1\"],\n regionRegex: \"^us\\\\-gov\\\\-\\\\w+\\\\-\\\\d+$\",\n variants: [\n {\n hostname: \"geo.{region}.amazonaws.com\",\n tags: [],\n },\n {\n hostname: \"geo-fips.{region}.amazonaws.com\",\n tags: [\"fips\"],\n },\n {\n hostname: \"geo-fips.{region}.api.aws\",\n tags: [\"dualstack\", \"fips\"],\n },\n {\n hostname: \"geo.{region}.api.aws\",\n tags: [\"dualstack\"],\n },\n ],\n },\n};\nvar defaultRegionInfoProvider = function (region, options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__[\"getRegionInfo\"])(region, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, options), { signingService: \"geo\", regionHash: regionHash, partitionHash: partitionHash }))];\n });\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/index.js ***! \****************************************************************/ /*! exports provided: Location, LocationClient, AssociateTrackerConsumerCommand, BatchDeleteDevicePositionHistoryCommand, BatchDeleteGeofenceCommand, BatchEvaluateGeofencesCommand, BatchGetDevicePositionCommand, BatchPutGeofenceCommand, BatchUpdateDevicePositionCommand, CalculateRouteCommand, CalculateRouteMatrixCommand, CreateGeofenceCollectionCommand, CreateMapCommand, CreatePlaceIndexCommand, CreateRouteCalculatorCommand, CreateTrackerCommand, DeleteGeofenceCollectionCommand, DeleteMapCommand, DeletePlaceIndexCommand, DeleteRouteCalculatorCommand, DeleteTrackerCommand, DescribeGeofenceCollectionCommand, DescribeMapCommand, DescribePlaceIndexCommand, DescribeRouteCalculatorCommand, DescribeTrackerCommand, DisassociateTrackerConsumerCommand, GetDevicePositionCommand, GetDevicePositionHistoryCommand, GetGeofenceCommand, GetMapGlyphsCommand, GetMapSpritesCommand, GetMapStyleDescriptorCommand, GetMapTileCommand, GetPlaceCommand, ListDevicePositionsCommand, ListGeofenceCollectionsCommand, ListGeofencesCommand, ListMapsCommand, ListPlaceIndexesCommand, ListRouteCalculatorsCommand, ListTagsForResourceCommand, ListTrackerConsumersCommand, ListTrackersCommand, PutGeofenceCommand, SearchPlaceIndexForPositionCommand, SearchPlaceIndexForSuggestionsCommand, SearchPlaceIndexForTextCommand, TagResourceCommand, UntagResourceCommand, UpdateGeofenceCollectionCommand, UpdateMapCommand, UpdatePlaceIndexCommand, UpdateRouteCalculatorCommand, UpdateTrackerCommand, AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AssociateTrackerConsumerRequestFilterSensitiveLog, AssociateTrackerConsumerResponseFilterSensitiveLog, ValidationExceptionFieldFilterSensitiveLog, BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog, BatchItemErrorFilterSensitiveLog, BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog, BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog, BatchDeleteGeofenceRequestFilterSensitiveLog, BatchDeleteGeofenceErrorFilterSensitiveLog, BatchDeleteGeofenceResponseFilterSensitiveLog, PositionalAccuracyFilterSensitiveLog, DevicePositionUpdateFilterSensitiveLog, BatchEvaluateGeofencesRequestFilterSensitiveLog, BatchEvaluateGeofencesErrorFilterSensitiveLog, BatchEvaluateGeofencesResponseFilterSensitiveLog, BatchGetDevicePositionRequestFilterSensitiveLog, DevicePositionFilterSensitiveLog, BatchGetDevicePositionErrorFilterSensitiveLog, BatchGetDevicePositionResponseFilterSensitiveLog, CircleFilterSensitiveLog, GeofenceGeometryFilterSensitiveLog, BatchPutGeofenceRequestEntryFilterSensitiveLog, BatchPutGeofenceRequestFilterSensitiveLog, BatchPutGeofenceErrorFilterSensitiveLog, BatchPutGeofenceSuccessFilterSensitiveLog, BatchPutGeofenceResponseFilterSensitiveLog, BatchUpdateDevicePositionRequestFilterSensitiveLog, BatchUpdateDevicePositionErrorFilterSensitiveLog, BatchUpdateDevicePositionResponseFilterSensitiveLog, CalculateRouteCarModeOptionsFilterSensitiveLog, TruckDimensionsFilterSensitiveLog, TruckWeightFilterSensitiveLog, CalculateRouteTruckModeOptionsFilterSensitiveLog, CalculateRouteRequestFilterSensitiveLog, LegGeometryFilterSensitiveLog, StepFilterSensitiveLog, LegFilterSensitiveLog, CalculateRouteSummaryFilterSensitiveLog, CalculateRouteResponseFilterSensitiveLog, CalculateRouteMatrixRequestFilterSensitiveLog, RouteMatrixEntryErrorFilterSensitiveLog, RouteMatrixEntryFilterSensitiveLog, CalculateRouteMatrixSummaryFilterSensitiveLog, CalculateRouteMatrixResponseFilterSensitiveLog, CreateGeofenceCollectionRequestFilterSensitiveLog, CreateGeofenceCollectionResponseFilterSensitiveLog, MapConfigurationFilterSensitiveLog, CreateMapRequestFilterSensitiveLog, CreateMapResponseFilterSensitiveLog, DataSourceConfigurationFilterSensitiveLog, CreatePlaceIndexRequestFilterSensitiveLog, CreatePlaceIndexResponseFilterSensitiveLog, CreateRouteCalculatorRequestFilterSensitiveLog, CreateRouteCalculatorResponseFilterSensitiveLog, CreateTrackerRequestFilterSensitiveLog, CreateTrackerResponseFilterSensitiveLog, DeleteGeofenceCollectionRequestFilterSensitiveLog, DeleteGeofenceCollectionResponseFilterSensitiveLog, DeleteMapRequestFilterSensitiveLog, DeleteMapResponseFilterSensitiveLog, DeletePlaceIndexRequestFilterSensitiveLog, DeletePlaceIndexResponseFilterSensitiveLog, DeleteRouteCalculatorRequestFilterSensitiveLog, DeleteRouteCalculatorResponseFilterSensitiveLog, DeleteTrackerRequestFilterSensitiveLog, DeleteTrackerResponseFilterSensitiveLog, DescribeGeofenceCollectionRequestFilterSensitiveLog, DescribeGeofenceCollectionResponseFilterSensitiveLog, DescribeMapRequestFilterSensitiveLog, DescribeMapResponseFilterSensitiveLog, DescribePlaceIndexRequestFilterSensitiveLog, DescribePlaceIndexResponseFilterSensitiveLog, DescribeRouteCalculatorRequestFilterSensitiveLog, DescribeRouteCalculatorResponseFilterSensitiveLog, DescribeTrackerRequestFilterSensitiveLog, DescribeTrackerResponseFilterSensitiveLog, DisassociateTrackerConsumerRequestFilterSensitiveLog, DisassociateTrackerConsumerResponseFilterSensitiveLog, ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, GetGeofenceRequestFilterSensitiveLog, GetGeofenceResponseFilterSensitiveLog, ListGeofenceCollectionsRequestFilterSensitiveLog, ListGeofenceCollectionsResponseEntryFilterSensitiveLog, ListGeofenceCollectionsResponseFilterSensitiveLog, ListGeofencesRequestFilterSensitiveLog, ListGeofenceResponseEntryFilterSensitiveLog, ListGeofencesResponseFilterSensitiveLog, PutGeofenceRequestFilterSensitiveLog, PutGeofenceResponseFilterSensitiveLog, UpdateGeofenceCollectionRequestFilterSensitiveLog, UpdateGeofenceCollectionResponseFilterSensitiveLog, GetDevicePositionRequestFilterSensitiveLog, GetDevicePositionResponseFilterSensitiveLog, GetDevicePositionHistoryRequestFilterSensitiveLog, GetDevicePositionHistoryResponseFilterSensitiveLog, GetMapGlyphsRequestFilterSensitiveLog, GetMapGlyphsResponseFilterSensitiveLog, GetMapSpritesRequestFilterSensitiveLog, GetMapSpritesResponseFilterSensitiveLog, GetMapStyleDescriptorRequestFilterSensitiveLog, GetMapStyleDescriptorResponseFilterSensitiveLog, GetMapTileRequestFilterSensitiveLog, GetMapTileResponseFilterSensitiveLog, GetPlaceRequestFilterSensitiveLog, PlaceGeometryFilterSensitiveLog, TimeZoneFilterSensitiveLog, PlaceFilterSensitiveLog, GetPlaceResponseFilterSensitiveLog, ListDevicePositionsRequestFilterSensitiveLog, ListDevicePositionsResponseEntryFilterSensitiveLog, ListDevicePositionsResponseFilterSensitiveLog, ListMapsRequestFilterSensitiveLog, ListMapsResponseEntryFilterSensitiveLog, ListMapsResponseFilterSensitiveLog, ListPlaceIndexesRequestFilterSensitiveLog, ListPlaceIndexesResponseEntryFilterSensitiveLog, ListPlaceIndexesResponseFilterSensitiveLog, ListRouteCalculatorsRequestFilterSensitiveLog, ListRouteCalculatorsResponseEntryFilterSensitiveLog, ListRouteCalculatorsResponseFilterSensitiveLog, ListTrackerConsumersRequestFilterSensitiveLog, ListTrackerConsumersResponseFilterSensitiveLog, ListTrackersRequestFilterSensitiveLog, ListTrackersResponseEntryFilterSensitiveLog, ListTrackersResponseFilterSensitiveLog, UpdateMapRequestFilterSensitiveLog, UpdateMapResponseFilterSensitiveLog, SearchPlaceIndexForPositionRequestFilterSensitiveLog, SearchForPositionResultFilterSensitiveLog, SearchPlaceIndexForPositionSummaryFilterSensitiveLog, SearchPlaceIndexForPositionResponseFilterSensitiveLog, SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog, SearchForSuggestionsResultFilterSensitiveLog, SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog, SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog, SearchPlaceIndexForTextRequestFilterSensitiveLog, SearchForTextResultFilterSensitiveLog, SearchPlaceIndexForTextSummaryFilterSensitiveLog, SearchPlaceIndexForTextResponseFilterSensitiveLog, UpdatePlaceIndexRequestFilterSensitiveLog, UpdatePlaceIndexResponseFilterSensitiveLog, UpdateRouteCalculatorRequestFilterSensitiveLog, UpdateRouteCalculatorResponseFilterSensitiveLog, UpdateTrackerRequestFilterSensitiveLog, UpdateTrackerResponseFilterSensitiveLog, paginateGetDevicePositionHistory, paginateListDevicePositions, paginateListGeofenceCollections, paginateListGeofences, paginateListMaps, paginateListPlaceIndexes, paginateListRouteCalculators, paginateListTrackerConsumers, paginateListTrackers, LocationServiceException */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Location\", function() { return _Location__WEBPACK_IMPORTED_MODULE_0__[\"Location\"]; });\n\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LocationClient\", function() { return _LocationClient__WEBPACK_IMPORTED_MODULE_1__[\"LocationClient\"]; });\n\n/* harmony import */ var _commands__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AssociateTrackerConsumerCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"AssociateTrackerConsumerCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"BatchDeleteDevicePositionHistoryCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"BatchDeleteGeofenceCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"BatchEvaluateGeofencesCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"BatchGetDevicePositionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"BatchPutGeofenceCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"BatchUpdateDevicePositionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"CalculateRouteCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"CalculateRouteMatrixCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateGeofenceCollectionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"CreateGeofenceCollectionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMapCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"CreateMapCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePlaceIndexCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"CreatePlaceIndexCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRouteCalculatorCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"CreateRouteCalculatorCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateTrackerCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"CreateTrackerCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGeofenceCollectionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DeleteGeofenceCollectionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMapCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DeleteMapCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePlaceIndexCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DeletePlaceIndexCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRouteCalculatorCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DeleteRouteCalculatorCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteTrackerCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DeleteTrackerCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeGeofenceCollectionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DescribeGeofenceCollectionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMapCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DescribeMapCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePlaceIndexCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DescribePlaceIndexCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeRouteCalculatorCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DescribeRouteCalculatorCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTrackerCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DescribeTrackerCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisassociateTrackerConsumerCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"DisassociateTrackerConsumerCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetDevicePositionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionHistoryCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetDevicePositionHistoryCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGeofenceCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetGeofenceCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapGlyphsCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetMapGlyphsCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapSpritesCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetMapSpritesCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapStyleDescriptorCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetMapStyleDescriptorCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapTileCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetMapTileCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPlaceCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"GetPlaceCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"ListDevicePositionsCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"ListGeofenceCollectionsCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofencesCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"ListGeofencesCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMapsCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"ListMapsCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"ListPlaceIndexesCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"ListRouteCalculatorsCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"ListTagsForResourceCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackerConsumersCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"ListTrackerConsumersCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"ListTrackersCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutGeofenceCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"PutGeofenceCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"SearchPlaceIndexForPositionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"SearchPlaceIndexForSuggestionsCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"SearchPlaceIndexForTextCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"TagResourceCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"UntagResourceCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGeofenceCollectionCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"UpdateGeofenceCollectionCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateMapCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"UpdateMapCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePlaceIndexCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"UpdatePlaceIndexCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRouteCalculatorCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"UpdateRouteCalculatorCommand\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTrackerCommand\", function() { return _commands__WEBPACK_IMPORTED_MODULE_2__[\"UpdateTrackerCommand\"]; });\n\n/* harmony import */ var _models__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./models */ \"./node_modules/@aws-sdk/client-location/dist-es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"AccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"InternalServerException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceQuotaExceededException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ServiceQuotaExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationException\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ValidationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AssociateTrackerConsumerRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"AssociateTrackerConsumerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AssociateTrackerConsumerResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"AssociateTrackerConsumerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationExceptionFieldFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ValidationExceptionFieldFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchItemErrorFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchItemErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteGeofenceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceErrorFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteGeofenceErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchDeleteGeofenceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PositionalAccuracyFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PositionalAccuracyFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DevicePositionUpdateFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DevicePositionUpdateFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchEvaluateGeofencesRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesErrorFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchEvaluateGeofencesErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchEvaluateGeofencesResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchGetDevicePositionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DevicePositionFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DevicePositionFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionErrorFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchGetDevicePositionErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchGetDevicePositionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CircleFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CircleFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GeofenceGeometryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GeofenceGeometryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceRequestEntryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchPutGeofenceRequestEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchPutGeofenceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceErrorFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchPutGeofenceErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceSuccessFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchPutGeofenceSuccessFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchPutGeofenceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchUpdateDevicePositionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionErrorFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchUpdateDevicePositionErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"BatchUpdateDevicePositionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteCarModeOptionsFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteCarModeOptionsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TruckDimensionsFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"TruckDimensionsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TruckWeightFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"TruckWeightFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteTruckModeOptionsFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteTruckModeOptionsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LegGeometryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"LegGeometryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StepFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"StepFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LegFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"LegFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteSummaryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteMatrixRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RouteMatrixEntryErrorFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RouteMatrixEntryErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RouteMatrixEntryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"RouteMatrixEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixSummaryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteMatrixSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CalculateRouteMatrixResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateGeofenceCollectionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreateGeofenceCollectionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateGeofenceCollectionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreateGeofenceCollectionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MapConfigurationFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"MapConfigurationFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMapRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreateMapRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMapResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreateMapResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DataSourceConfigurationFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DataSourceConfigurationFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePlaceIndexRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreatePlaceIndexRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePlaceIndexResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreatePlaceIndexResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRouteCalculatorRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreateRouteCalculatorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRouteCalculatorResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreateRouteCalculatorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateTrackerRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreateTrackerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateTrackerResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"CreateTrackerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGeofenceCollectionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteGeofenceCollectionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGeofenceCollectionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteGeofenceCollectionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMapRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteMapRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMapResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteMapResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePlaceIndexRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeletePlaceIndexRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePlaceIndexResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeletePlaceIndexResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRouteCalculatorRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteRouteCalculatorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRouteCalculatorResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteRouteCalculatorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteTrackerRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteTrackerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteTrackerResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DeleteTrackerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeGeofenceCollectionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribeGeofenceCollectionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeGeofenceCollectionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribeGeofenceCollectionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMapRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribeMapRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMapResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribeMapResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePlaceIndexRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribePlaceIndexRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePlaceIndexResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribePlaceIndexResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeRouteCalculatorRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribeRouteCalculatorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeRouteCalculatorResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribeRouteCalculatorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTrackerRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribeTrackerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTrackerResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DescribeTrackerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisassociateTrackerConsumerRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DisassociateTrackerConsumerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisassociateTrackerConsumerResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"DisassociateTrackerConsumerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListTagsForResourceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListTagsForResourceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"TagResourceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"TagResourceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UntagResourceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UntagResourceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGeofenceRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetGeofenceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGeofenceResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetGeofenceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofenceCollectionsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsResponseEntryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofenceCollectionsResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofenceCollectionsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofencesRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofencesRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceResponseEntryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofenceResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofencesResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListGeofencesResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutGeofenceRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PutGeofenceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutGeofenceResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PutGeofenceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGeofenceCollectionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdateGeofenceCollectionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGeofenceCollectionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdateGeofenceCollectionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetDevicePositionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetDevicePositionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionHistoryRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetDevicePositionHistoryRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionHistoryResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetDevicePositionHistoryResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapGlyphsRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetMapGlyphsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapGlyphsResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetMapGlyphsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapSpritesRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetMapSpritesRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapSpritesResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetMapSpritesResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapStyleDescriptorRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetMapStyleDescriptorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapStyleDescriptorResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetMapStyleDescriptorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapTileRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetMapTileRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapTileResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetMapTileResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPlaceRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetPlaceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaceGeometryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PlaceGeometryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TimeZoneFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"TimeZoneFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaceFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"PlaceFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPlaceResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"GetPlaceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListDevicePositionsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsResponseEntryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListDevicePositionsResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListDevicePositionsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMapsRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListMapsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMapsResponseEntryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListMapsResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMapsResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListMapsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListPlaceIndexesRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesResponseEntryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListPlaceIndexesResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListPlaceIndexesResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListRouteCalculatorsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsResponseEntryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListRouteCalculatorsResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListRouteCalculatorsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackerConsumersRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListTrackerConsumersRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackerConsumersResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListTrackerConsumersResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListTrackersRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersResponseEntryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListTrackersResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"ListTrackersResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateMapRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdateMapRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateMapResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdateMapResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForPositionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchForPositionResultFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchForPositionResultFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionSummaryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForPositionSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForPositionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchForSuggestionsResultFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchForSuggestionsResultFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForTextRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchForTextResultFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchForTextResultFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextSummaryFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForTextSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"SearchPlaceIndexForTextResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePlaceIndexRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdatePlaceIndexRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePlaceIndexResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdatePlaceIndexResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRouteCalculatorRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdateRouteCalculatorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRouteCalculatorResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdateRouteCalculatorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTrackerRequestFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdateTrackerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTrackerResponseFilterSensitiveLog\", function() { return _models__WEBPACK_IMPORTED_MODULE_3__[\"UpdateTrackerResponseFilterSensitiveLog\"]; });\n\n/* harmony import */ var _pagination__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./pagination */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetDevicePositionHistory\", function() { return _pagination__WEBPACK_IMPORTED_MODULE_4__[\"paginateGetDevicePositionHistory\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListDevicePositions\", function() { return _pagination__WEBPACK_IMPORTED_MODULE_4__[\"paginateListDevicePositions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListGeofenceCollections\", function() { return _pagination__WEBPACK_IMPORTED_MODULE_4__[\"paginateListGeofenceCollections\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListGeofences\", function() { return _pagination__WEBPACK_IMPORTED_MODULE_4__[\"paginateListGeofences\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListMaps\", function() { return _pagination__WEBPACK_IMPORTED_MODULE_4__[\"paginateListMaps\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListPlaceIndexes\", function() { return _pagination__WEBPACK_IMPORTED_MODULE_4__[\"paginateListPlaceIndexes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListRouteCalculators\", function() { return _pagination__WEBPACK_IMPORTED_MODULE_4__[\"paginateListRouteCalculators\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListTrackerConsumers\", function() { return _pagination__WEBPACK_IMPORTED_MODULE_4__[\"paginateListTrackerConsumers\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListTrackers\", function() { return _pagination__WEBPACK_IMPORTED_MODULE_4__[\"paginateListTrackers\"]; });\n\n/* harmony import */ var _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./models/LocationServiceException */ \"./node_modules/@aws-sdk/client-location/dist-es/models/LocationServiceException.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LocationServiceException\", function() { return _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_5__[\"LocationServiceException\"]; });\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/models/LocationServiceException.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/models/LocationServiceException.js ***! \******************************************************************************************/ /*! exports provided: LocationServiceException */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LocationServiceException\", function() { return LocationServiceException; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar LocationServiceException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LocationServiceException, _super);\n function LocationServiceException(options) {\n var _this = _super.call(this, options) || this;\n Object.setPrototypeOf(_this, LocationServiceException.prototype);\n return _this;\n }\n return LocationServiceException;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"ServiceException\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/models/LocationServiceException.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/models/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/models/index.js ***! \***********************************************************************/ /*! exports provided: AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AssociateTrackerConsumerRequestFilterSensitiveLog, AssociateTrackerConsumerResponseFilterSensitiveLog, ValidationExceptionFieldFilterSensitiveLog, BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog, BatchItemErrorFilterSensitiveLog, BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog, BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog, BatchDeleteGeofenceRequestFilterSensitiveLog, BatchDeleteGeofenceErrorFilterSensitiveLog, BatchDeleteGeofenceResponseFilterSensitiveLog, PositionalAccuracyFilterSensitiveLog, DevicePositionUpdateFilterSensitiveLog, BatchEvaluateGeofencesRequestFilterSensitiveLog, BatchEvaluateGeofencesErrorFilterSensitiveLog, BatchEvaluateGeofencesResponseFilterSensitiveLog, BatchGetDevicePositionRequestFilterSensitiveLog, DevicePositionFilterSensitiveLog, BatchGetDevicePositionErrorFilterSensitiveLog, BatchGetDevicePositionResponseFilterSensitiveLog, CircleFilterSensitiveLog, GeofenceGeometryFilterSensitiveLog, BatchPutGeofenceRequestEntryFilterSensitiveLog, BatchPutGeofenceRequestFilterSensitiveLog, BatchPutGeofenceErrorFilterSensitiveLog, BatchPutGeofenceSuccessFilterSensitiveLog, BatchPutGeofenceResponseFilterSensitiveLog, BatchUpdateDevicePositionRequestFilterSensitiveLog, BatchUpdateDevicePositionErrorFilterSensitiveLog, BatchUpdateDevicePositionResponseFilterSensitiveLog, CalculateRouteCarModeOptionsFilterSensitiveLog, TruckDimensionsFilterSensitiveLog, TruckWeightFilterSensitiveLog, CalculateRouteTruckModeOptionsFilterSensitiveLog, CalculateRouteRequestFilterSensitiveLog, LegGeometryFilterSensitiveLog, StepFilterSensitiveLog, LegFilterSensitiveLog, CalculateRouteSummaryFilterSensitiveLog, CalculateRouteResponseFilterSensitiveLog, CalculateRouteMatrixRequestFilterSensitiveLog, RouteMatrixEntryErrorFilterSensitiveLog, RouteMatrixEntryFilterSensitiveLog, CalculateRouteMatrixSummaryFilterSensitiveLog, CalculateRouteMatrixResponseFilterSensitiveLog, CreateGeofenceCollectionRequestFilterSensitiveLog, CreateGeofenceCollectionResponseFilterSensitiveLog, MapConfigurationFilterSensitiveLog, CreateMapRequestFilterSensitiveLog, CreateMapResponseFilterSensitiveLog, DataSourceConfigurationFilterSensitiveLog, CreatePlaceIndexRequestFilterSensitiveLog, CreatePlaceIndexResponseFilterSensitiveLog, CreateRouteCalculatorRequestFilterSensitiveLog, CreateRouteCalculatorResponseFilterSensitiveLog, CreateTrackerRequestFilterSensitiveLog, CreateTrackerResponseFilterSensitiveLog, DeleteGeofenceCollectionRequestFilterSensitiveLog, DeleteGeofenceCollectionResponseFilterSensitiveLog, DeleteMapRequestFilterSensitiveLog, DeleteMapResponseFilterSensitiveLog, DeletePlaceIndexRequestFilterSensitiveLog, DeletePlaceIndexResponseFilterSensitiveLog, DeleteRouteCalculatorRequestFilterSensitiveLog, DeleteRouteCalculatorResponseFilterSensitiveLog, DeleteTrackerRequestFilterSensitiveLog, DeleteTrackerResponseFilterSensitiveLog, DescribeGeofenceCollectionRequestFilterSensitiveLog, DescribeGeofenceCollectionResponseFilterSensitiveLog, DescribeMapRequestFilterSensitiveLog, DescribeMapResponseFilterSensitiveLog, DescribePlaceIndexRequestFilterSensitiveLog, DescribePlaceIndexResponseFilterSensitiveLog, DescribeRouteCalculatorRequestFilterSensitiveLog, DescribeRouteCalculatorResponseFilterSensitiveLog, DescribeTrackerRequestFilterSensitiveLog, DescribeTrackerResponseFilterSensitiveLog, DisassociateTrackerConsumerRequestFilterSensitiveLog, DisassociateTrackerConsumerResponseFilterSensitiveLog, ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, GetGeofenceRequestFilterSensitiveLog, GetGeofenceResponseFilterSensitiveLog, ListGeofenceCollectionsRequestFilterSensitiveLog, ListGeofenceCollectionsResponseEntryFilterSensitiveLog, ListGeofenceCollectionsResponseFilterSensitiveLog, ListGeofencesRequestFilterSensitiveLog, ListGeofenceResponseEntryFilterSensitiveLog, ListGeofencesResponseFilterSensitiveLog, PutGeofenceRequestFilterSensitiveLog, PutGeofenceResponseFilterSensitiveLog, UpdateGeofenceCollectionRequestFilterSensitiveLog, UpdateGeofenceCollectionResponseFilterSensitiveLog, GetDevicePositionRequestFilterSensitiveLog, GetDevicePositionResponseFilterSensitiveLog, GetDevicePositionHistoryRequestFilterSensitiveLog, GetDevicePositionHistoryResponseFilterSensitiveLog, GetMapGlyphsRequestFilterSensitiveLog, GetMapGlyphsResponseFilterSensitiveLog, GetMapSpritesRequestFilterSensitiveLog, GetMapSpritesResponseFilterSensitiveLog, GetMapStyleDescriptorRequestFilterSensitiveLog, GetMapStyleDescriptorResponseFilterSensitiveLog, GetMapTileRequestFilterSensitiveLog, GetMapTileResponseFilterSensitiveLog, GetPlaceRequestFilterSensitiveLog, PlaceGeometryFilterSensitiveLog, TimeZoneFilterSensitiveLog, PlaceFilterSensitiveLog, GetPlaceResponseFilterSensitiveLog, ListDevicePositionsRequestFilterSensitiveLog, ListDevicePositionsResponseEntryFilterSensitiveLog, ListDevicePositionsResponseFilterSensitiveLog, ListMapsRequestFilterSensitiveLog, ListMapsResponseEntryFilterSensitiveLog, ListMapsResponseFilterSensitiveLog, ListPlaceIndexesRequestFilterSensitiveLog, ListPlaceIndexesResponseEntryFilterSensitiveLog, ListPlaceIndexesResponseFilterSensitiveLog, ListRouteCalculatorsRequestFilterSensitiveLog, ListRouteCalculatorsResponseEntryFilterSensitiveLog, ListRouteCalculatorsResponseFilterSensitiveLog, ListTrackerConsumersRequestFilterSensitiveLog, ListTrackerConsumersResponseFilterSensitiveLog, ListTrackersRequestFilterSensitiveLog, ListTrackersResponseEntryFilterSensitiveLog, ListTrackersResponseFilterSensitiveLog, UpdateMapRequestFilterSensitiveLog, UpdateMapResponseFilterSensitiveLog, SearchPlaceIndexForPositionRequestFilterSensitiveLog, SearchForPositionResultFilterSensitiveLog, SearchPlaceIndexForPositionSummaryFilterSensitiveLog, SearchPlaceIndexForPositionResponseFilterSensitiveLog, SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog, SearchForSuggestionsResultFilterSensitiveLog, SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog, SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog, SearchPlaceIndexForTextRequestFilterSensitiveLog, SearchForTextResultFilterSensitiveLog, SearchPlaceIndexForTextSummaryFilterSensitiveLog, SearchPlaceIndexForTextResponseFilterSensitiveLog, UpdatePlaceIndexRequestFilterSensitiveLog, UpdatePlaceIndexResponseFilterSensitiveLog, UpdateRouteCalculatorRequestFilterSensitiveLog, UpdateRouteCalculatorResponseFilterSensitiveLog, UpdateTrackerRequestFilterSensitiveLog, UpdateTrackerResponseFilterSensitiveLog */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-location/dist-es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalServerException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceQuotaExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ServiceQuotaExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ValidationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AssociateTrackerConsumerRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AssociateTrackerConsumerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AssociateTrackerConsumerResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AssociateTrackerConsumerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationExceptionFieldFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ValidationExceptionFieldFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchItemErrorFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchItemErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDeleteGeofenceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceErrorFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDeleteGeofenceErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchDeleteGeofenceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PositionalAccuracyFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PositionalAccuracyFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DevicePositionUpdateFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DevicePositionUpdateFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchEvaluateGeofencesRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesErrorFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchEvaluateGeofencesErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchEvaluateGeofencesResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchGetDevicePositionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DevicePositionFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DevicePositionFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionErrorFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchGetDevicePositionErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchGetDevicePositionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CircleFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CircleFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GeofenceGeometryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GeofenceGeometryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceRequestEntryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchPutGeofenceRequestEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchPutGeofenceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceErrorFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchPutGeofenceErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceSuccessFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchPutGeofenceSuccessFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchPutGeofenceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchUpdateDevicePositionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionErrorFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchUpdateDevicePositionErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BatchUpdateDevicePositionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteCarModeOptionsFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CalculateRouteCarModeOptionsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TruckDimensionsFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TruckDimensionsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TruckWeightFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TruckWeightFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteTruckModeOptionsFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CalculateRouteTruckModeOptionsFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CalculateRouteRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LegGeometryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LegGeometryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StepFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StepFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LegFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LegFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteSummaryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CalculateRouteSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CalculateRouteResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CalculateRouteMatrixRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RouteMatrixEntryErrorFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RouteMatrixEntryErrorFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RouteMatrixEntryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RouteMatrixEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixSummaryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CalculateRouteMatrixSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CalculateRouteMatrixResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateGeofenceCollectionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateGeofenceCollectionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateGeofenceCollectionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateGeofenceCollectionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MapConfigurationFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MapConfigurationFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMapRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateMapRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMapResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateMapResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DataSourceConfigurationFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DataSourceConfigurationFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePlaceIndexRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreatePlaceIndexRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePlaceIndexResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreatePlaceIndexResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRouteCalculatorRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateRouteCalculatorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRouteCalculatorResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateRouteCalculatorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateTrackerRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateTrackerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateTrackerResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateTrackerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGeofenceCollectionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteGeofenceCollectionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGeofenceCollectionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteGeofenceCollectionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMapRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteMapRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMapResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteMapResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePlaceIndexRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeletePlaceIndexRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePlaceIndexResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeletePlaceIndexResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRouteCalculatorRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteRouteCalculatorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRouteCalculatorResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteRouteCalculatorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteTrackerRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteTrackerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteTrackerResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteTrackerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeGeofenceCollectionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeGeofenceCollectionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeGeofenceCollectionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeGeofenceCollectionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMapRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeMapRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeMapResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeMapResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePlaceIndexRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribePlaceIndexRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribePlaceIndexResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribePlaceIndexResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeRouteCalculatorRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeRouteCalculatorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeRouteCalculatorResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeRouteCalculatorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTrackerRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeTrackerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTrackerResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeTrackerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisassociateTrackerConsumerRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DisassociateTrackerConsumerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DisassociateTrackerConsumerResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DisassociateTrackerConsumerResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForResourceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTagsForResourceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TagResourceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TagResourceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UntagResourceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UntagResourceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGeofenceRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetGeofenceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGeofenceResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetGeofenceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListGeofenceCollectionsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsResponseEntryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListGeofenceCollectionsResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListGeofenceCollectionsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofencesRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListGeofencesRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceResponseEntryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListGeofenceResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListGeofencesResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListGeofencesResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutGeofenceRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutGeofenceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutGeofenceResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutGeofenceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGeofenceCollectionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateGeofenceCollectionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGeofenceCollectionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateGeofenceCollectionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetDevicePositionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetDevicePositionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionHistoryRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetDevicePositionHistoryRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionHistoryResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetDevicePositionHistoryResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapGlyphsRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetMapGlyphsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapGlyphsResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetMapGlyphsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapSpritesRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetMapSpritesRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapSpritesResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetMapSpritesResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapStyleDescriptorRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetMapStyleDescriptorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapStyleDescriptorResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetMapStyleDescriptorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapTileRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetMapTileRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetMapTileResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetMapTileResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPlaceRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetPlaceRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaceGeometryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PlaceGeometryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TimeZoneFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TimeZoneFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlaceFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PlaceFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPlaceResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetPlaceResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDevicePositionsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsResponseEntryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDevicePositionsResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListDevicePositionsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMapsRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListMapsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMapsResponseEntryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListMapsResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMapsResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListMapsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListPlaceIndexesRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesResponseEntryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListPlaceIndexesResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListPlaceIndexesResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListRouteCalculatorsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsResponseEntryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListRouteCalculatorsResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListRouteCalculatorsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackerConsumersRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTrackerConsumersRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackerConsumersResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTrackerConsumersResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTrackersRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersResponseEntryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTrackersResponseEntryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTrackersResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateMapRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateMapRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateMapResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateMapResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchPlaceIndexForPositionRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchForPositionResultFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchForPositionResultFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionSummaryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchPlaceIndexForPositionSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchPlaceIndexForPositionResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchForSuggestionsResultFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchForSuggestionsResultFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchPlaceIndexForTextRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchForTextResultFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchForTextResultFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextSummaryFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchPlaceIndexForTextSummaryFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchPlaceIndexForTextResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePlaceIndexRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdatePlaceIndexRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePlaceIndexResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdatePlaceIndexResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRouteCalculatorRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateRouteCalculatorRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRouteCalculatorResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateRouteCalculatorResponseFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTrackerRequestFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateTrackerRequestFilterSensitiveLog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTrackerResponseFilterSensitiveLog\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateTrackerResponseFilterSensitiveLog\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/models/models_0.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/models/models_0.js ***! \**************************************************************************/ /*! exports provided: AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AssociateTrackerConsumerRequestFilterSensitiveLog, AssociateTrackerConsumerResponseFilterSensitiveLog, ValidationExceptionFieldFilterSensitiveLog, BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog, BatchItemErrorFilterSensitiveLog, BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog, BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog, BatchDeleteGeofenceRequestFilterSensitiveLog, BatchDeleteGeofenceErrorFilterSensitiveLog, BatchDeleteGeofenceResponseFilterSensitiveLog, PositionalAccuracyFilterSensitiveLog, DevicePositionUpdateFilterSensitiveLog, BatchEvaluateGeofencesRequestFilterSensitiveLog, BatchEvaluateGeofencesErrorFilterSensitiveLog, BatchEvaluateGeofencesResponseFilterSensitiveLog, BatchGetDevicePositionRequestFilterSensitiveLog, DevicePositionFilterSensitiveLog, BatchGetDevicePositionErrorFilterSensitiveLog, BatchGetDevicePositionResponseFilterSensitiveLog, CircleFilterSensitiveLog, GeofenceGeometryFilterSensitiveLog, BatchPutGeofenceRequestEntryFilterSensitiveLog, BatchPutGeofenceRequestFilterSensitiveLog, BatchPutGeofenceErrorFilterSensitiveLog, BatchPutGeofenceSuccessFilterSensitiveLog, BatchPutGeofenceResponseFilterSensitiveLog, BatchUpdateDevicePositionRequestFilterSensitiveLog, BatchUpdateDevicePositionErrorFilterSensitiveLog, BatchUpdateDevicePositionResponseFilterSensitiveLog, CalculateRouteCarModeOptionsFilterSensitiveLog, TruckDimensionsFilterSensitiveLog, TruckWeightFilterSensitiveLog, CalculateRouteTruckModeOptionsFilterSensitiveLog, CalculateRouteRequestFilterSensitiveLog, LegGeometryFilterSensitiveLog, StepFilterSensitiveLog, LegFilterSensitiveLog, CalculateRouteSummaryFilterSensitiveLog, CalculateRouteResponseFilterSensitiveLog, CalculateRouteMatrixRequestFilterSensitiveLog, RouteMatrixEntryErrorFilterSensitiveLog, RouteMatrixEntryFilterSensitiveLog, CalculateRouteMatrixSummaryFilterSensitiveLog, CalculateRouteMatrixResponseFilterSensitiveLog, CreateGeofenceCollectionRequestFilterSensitiveLog, CreateGeofenceCollectionResponseFilterSensitiveLog, MapConfigurationFilterSensitiveLog, CreateMapRequestFilterSensitiveLog, CreateMapResponseFilterSensitiveLog, DataSourceConfigurationFilterSensitiveLog, CreatePlaceIndexRequestFilterSensitiveLog, CreatePlaceIndexResponseFilterSensitiveLog, CreateRouteCalculatorRequestFilterSensitiveLog, CreateRouteCalculatorResponseFilterSensitiveLog, CreateTrackerRequestFilterSensitiveLog, CreateTrackerResponseFilterSensitiveLog, DeleteGeofenceCollectionRequestFilterSensitiveLog, DeleteGeofenceCollectionResponseFilterSensitiveLog, DeleteMapRequestFilterSensitiveLog, DeleteMapResponseFilterSensitiveLog, DeletePlaceIndexRequestFilterSensitiveLog, DeletePlaceIndexResponseFilterSensitiveLog, DeleteRouteCalculatorRequestFilterSensitiveLog, DeleteRouteCalculatorResponseFilterSensitiveLog, DeleteTrackerRequestFilterSensitiveLog, DeleteTrackerResponseFilterSensitiveLog, DescribeGeofenceCollectionRequestFilterSensitiveLog, DescribeGeofenceCollectionResponseFilterSensitiveLog, DescribeMapRequestFilterSensitiveLog, DescribeMapResponseFilterSensitiveLog, DescribePlaceIndexRequestFilterSensitiveLog, DescribePlaceIndexResponseFilterSensitiveLog, DescribeRouteCalculatorRequestFilterSensitiveLog, DescribeRouteCalculatorResponseFilterSensitiveLog, DescribeTrackerRequestFilterSensitiveLog, DescribeTrackerResponseFilterSensitiveLog, DisassociateTrackerConsumerRequestFilterSensitiveLog, DisassociateTrackerConsumerResponseFilterSensitiveLog, ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, GetGeofenceRequestFilterSensitiveLog, GetGeofenceResponseFilterSensitiveLog, ListGeofenceCollectionsRequestFilterSensitiveLog, ListGeofenceCollectionsResponseEntryFilterSensitiveLog, ListGeofenceCollectionsResponseFilterSensitiveLog, ListGeofencesRequestFilterSensitiveLog, ListGeofenceResponseEntryFilterSensitiveLog, ListGeofencesResponseFilterSensitiveLog, PutGeofenceRequestFilterSensitiveLog, PutGeofenceResponseFilterSensitiveLog, UpdateGeofenceCollectionRequestFilterSensitiveLog, UpdateGeofenceCollectionResponseFilterSensitiveLog, GetDevicePositionRequestFilterSensitiveLog, GetDevicePositionResponseFilterSensitiveLog, GetDevicePositionHistoryRequestFilterSensitiveLog, GetDevicePositionHistoryResponseFilterSensitiveLog, GetMapGlyphsRequestFilterSensitiveLog, GetMapGlyphsResponseFilterSensitiveLog, GetMapSpritesRequestFilterSensitiveLog, GetMapSpritesResponseFilterSensitiveLog, GetMapStyleDescriptorRequestFilterSensitiveLog, GetMapStyleDescriptorResponseFilterSensitiveLog, GetMapTileRequestFilterSensitiveLog, GetMapTileResponseFilterSensitiveLog, GetPlaceRequestFilterSensitiveLog, PlaceGeometryFilterSensitiveLog, TimeZoneFilterSensitiveLog, PlaceFilterSensitiveLog, GetPlaceResponseFilterSensitiveLog, ListDevicePositionsRequestFilterSensitiveLog, ListDevicePositionsResponseEntryFilterSensitiveLog, ListDevicePositionsResponseFilterSensitiveLog, ListMapsRequestFilterSensitiveLog, ListMapsResponseEntryFilterSensitiveLog, ListMapsResponseFilterSensitiveLog, ListPlaceIndexesRequestFilterSensitiveLog, ListPlaceIndexesResponseEntryFilterSensitiveLog, ListPlaceIndexesResponseFilterSensitiveLog, ListRouteCalculatorsRequestFilterSensitiveLog, ListRouteCalculatorsResponseEntryFilterSensitiveLog, ListRouteCalculatorsResponseFilterSensitiveLog, ListTrackerConsumersRequestFilterSensitiveLog, ListTrackerConsumersResponseFilterSensitiveLog, ListTrackersRequestFilterSensitiveLog, ListTrackersResponseEntryFilterSensitiveLog, ListTrackersResponseFilterSensitiveLog, UpdateMapRequestFilterSensitiveLog, UpdateMapResponseFilterSensitiveLog, SearchPlaceIndexForPositionRequestFilterSensitiveLog, SearchForPositionResultFilterSensitiveLog, SearchPlaceIndexForPositionSummaryFilterSensitiveLog, SearchPlaceIndexForPositionResponseFilterSensitiveLog, SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog, SearchForSuggestionsResultFilterSensitiveLog, SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog, SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog, SearchPlaceIndexForTextRequestFilterSensitiveLog, SearchForTextResultFilterSensitiveLog, SearchPlaceIndexForTextSummaryFilterSensitiveLog, SearchPlaceIndexForTextResponseFilterSensitiveLog, UpdatePlaceIndexRequestFilterSensitiveLog, UpdatePlaceIndexResponseFilterSensitiveLog, UpdateRouteCalculatorRequestFilterSensitiveLog, UpdateRouteCalculatorResponseFilterSensitiveLog, UpdateTrackerRequestFilterSensitiveLog, UpdateTrackerResponseFilterSensitiveLog */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return AccessDeniedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return ConflictException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return InternalServerException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceQuotaExceededException\", function() { return ServiceQuotaExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return ThrottlingException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ValidationException\", function() { return ValidationException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AssociateTrackerConsumerRequestFilterSensitiveLog\", function() { return AssociateTrackerConsumerRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AssociateTrackerConsumerResponseFilterSensitiveLog\", function() { return AssociateTrackerConsumerResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ValidationExceptionFieldFilterSensitiveLog\", function() { return ValidationExceptionFieldFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog\", function() { return BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchItemErrorFilterSensitiveLog\", function() { return BatchItemErrorFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog\", function() { return BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog\", function() { return BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceRequestFilterSensitiveLog\", function() { return BatchDeleteGeofenceRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceErrorFilterSensitiveLog\", function() { return BatchDeleteGeofenceErrorFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchDeleteGeofenceResponseFilterSensitiveLog\", function() { return BatchDeleteGeofenceResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PositionalAccuracyFilterSensitiveLog\", function() { return PositionalAccuracyFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DevicePositionUpdateFilterSensitiveLog\", function() { return DevicePositionUpdateFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesRequestFilterSensitiveLog\", function() { return BatchEvaluateGeofencesRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesErrorFilterSensitiveLog\", function() { return BatchEvaluateGeofencesErrorFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchEvaluateGeofencesResponseFilterSensitiveLog\", function() { return BatchEvaluateGeofencesResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionRequestFilterSensitiveLog\", function() { return BatchGetDevicePositionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DevicePositionFilterSensitiveLog\", function() { return DevicePositionFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionErrorFilterSensitiveLog\", function() { return BatchGetDevicePositionErrorFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchGetDevicePositionResponseFilterSensitiveLog\", function() { return BatchGetDevicePositionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CircleFilterSensitiveLog\", function() { return CircleFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GeofenceGeometryFilterSensitiveLog\", function() { return GeofenceGeometryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceRequestEntryFilterSensitiveLog\", function() { return BatchPutGeofenceRequestEntryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceRequestFilterSensitiveLog\", function() { return BatchPutGeofenceRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceErrorFilterSensitiveLog\", function() { return BatchPutGeofenceErrorFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceSuccessFilterSensitiveLog\", function() { return BatchPutGeofenceSuccessFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchPutGeofenceResponseFilterSensitiveLog\", function() { return BatchPutGeofenceResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionRequestFilterSensitiveLog\", function() { return BatchUpdateDevicePositionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionErrorFilterSensitiveLog\", function() { return BatchUpdateDevicePositionErrorFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BatchUpdateDevicePositionResponseFilterSensitiveLog\", function() { return BatchUpdateDevicePositionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteCarModeOptionsFilterSensitiveLog\", function() { return CalculateRouteCarModeOptionsFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TruckDimensionsFilterSensitiveLog\", function() { return TruckDimensionsFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TruckWeightFilterSensitiveLog\", function() { return TruckWeightFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteTruckModeOptionsFilterSensitiveLog\", function() { return CalculateRouteTruckModeOptionsFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteRequestFilterSensitiveLog\", function() { return CalculateRouteRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LegGeometryFilterSensitiveLog\", function() { return LegGeometryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StepFilterSensitiveLog\", function() { return StepFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LegFilterSensitiveLog\", function() { return LegFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteSummaryFilterSensitiveLog\", function() { return CalculateRouteSummaryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteResponseFilterSensitiveLog\", function() { return CalculateRouteResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixRequestFilterSensitiveLog\", function() { return CalculateRouteMatrixRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RouteMatrixEntryErrorFilterSensitiveLog\", function() { return RouteMatrixEntryErrorFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RouteMatrixEntryFilterSensitiveLog\", function() { return RouteMatrixEntryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixSummaryFilterSensitiveLog\", function() { return CalculateRouteMatrixSummaryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CalculateRouteMatrixResponseFilterSensitiveLog\", function() { return CalculateRouteMatrixResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateGeofenceCollectionRequestFilterSensitiveLog\", function() { return CreateGeofenceCollectionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateGeofenceCollectionResponseFilterSensitiveLog\", function() { return CreateGeofenceCollectionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MapConfigurationFilterSensitiveLog\", function() { return MapConfigurationFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateMapRequestFilterSensitiveLog\", function() { return CreateMapRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateMapResponseFilterSensitiveLog\", function() { return CreateMapResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DataSourceConfigurationFilterSensitiveLog\", function() { return DataSourceConfigurationFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreatePlaceIndexRequestFilterSensitiveLog\", function() { return CreatePlaceIndexRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreatePlaceIndexResponseFilterSensitiveLog\", function() { return CreatePlaceIndexResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateRouteCalculatorRequestFilterSensitiveLog\", function() { return CreateRouteCalculatorRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateRouteCalculatorResponseFilterSensitiveLog\", function() { return CreateRouteCalculatorResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateTrackerRequestFilterSensitiveLog\", function() { return CreateTrackerRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateTrackerResponseFilterSensitiveLog\", function() { return CreateTrackerResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteGeofenceCollectionRequestFilterSensitiveLog\", function() { return DeleteGeofenceCollectionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteGeofenceCollectionResponseFilterSensitiveLog\", function() { return DeleteGeofenceCollectionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteMapRequestFilterSensitiveLog\", function() { return DeleteMapRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteMapResponseFilterSensitiveLog\", function() { return DeleteMapResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeletePlaceIndexRequestFilterSensitiveLog\", function() { return DeletePlaceIndexRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeletePlaceIndexResponseFilterSensitiveLog\", function() { return DeletePlaceIndexResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteRouteCalculatorRequestFilterSensitiveLog\", function() { return DeleteRouteCalculatorRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteRouteCalculatorResponseFilterSensitiveLog\", function() { return DeleteRouteCalculatorResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteTrackerRequestFilterSensitiveLog\", function() { return DeleteTrackerRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteTrackerResponseFilterSensitiveLog\", function() { return DeleteTrackerResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeGeofenceCollectionRequestFilterSensitiveLog\", function() { return DescribeGeofenceCollectionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeGeofenceCollectionResponseFilterSensitiveLog\", function() { return DescribeGeofenceCollectionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeMapRequestFilterSensitiveLog\", function() { return DescribeMapRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeMapResponseFilterSensitiveLog\", function() { return DescribeMapResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribePlaceIndexRequestFilterSensitiveLog\", function() { return DescribePlaceIndexRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribePlaceIndexResponseFilterSensitiveLog\", function() { return DescribePlaceIndexResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeRouteCalculatorRequestFilterSensitiveLog\", function() { return DescribeRouteCalculatorRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeRouteCalculatorResponseFilterSensitiveLog\", function() { return DescribeRouteCalculatorResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeTrackerRequestFilterSensitiveLog\", function() { return DescribeTrackerRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeTrackerResponseFilterSensitiveLog\", function() { return DescribeTrackerResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DisassociateTrackerConsumerRequestFilterSensitiveLog\", function() { return DisassociateTrackerConsumerRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DisassociateTrackerConsumerResponseFilterSensitiveLog\", function() { return DisassociateTrackerConsumerResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceRequestFilterSensitiveLog\", function() { return ListTagsForResourceRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponseFilterSensitiveLog\", function() { return ListTagsForResourceResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceRequestFilterSensitiveLog\", function() { return TagResourceRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceResponseFilterSensitiveLog\", function() { return TagResourceResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceRequestFilterSensitiveLog\", function() { return UntagResourceRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceResponseFilterSensitiveLog\", function() { return UntagResourceResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetGeofenceRequestFilterSensitiveLog\", function() { return GetGeofenceRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetGeofenceResponseFilterSensitiveLog\", function() { return GetGeofenceResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsRequestFilterSensitiveLog\", function() { return ListGeofenceCollectionsRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsResponseEntryFilterSensitiveLog\", function() { return ListGeofenceCollectionsResponseEntryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceCollectionsResponseFilterSensitiveLog\", function() { return ListGeofenceCollectionsResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListGeofencesRequestFilterSensitiveLog\", function() { return ListGeofencesRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListGeofenceResponseEntryFilterSensitiveLog\", function() { return ListGeofenceResponseEntryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListGeofencesResponseFilterSensitiveLog\", function() { return ListGeofencesResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutGeofenceRequestFilterSensitiveLog\", function() { return PutGeofenceRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutGeofenceResponseFilterSensitiveLog\", function() { return PutGeofenceResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateGeofenceCollectionRequestFilterSensitiveLog\", function() { return UpdateGeofenceCollectionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateGeofenceCollectionResponseFilterSensitiveLog\", function() { return UpdateGeofenceCollectionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionRequestFilterSensitiveLog\", function() { return GetDevicePositionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionResponseFilterSensitiveLog\", function() { return GetDevicePositionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionHistoryRequestFilterSensitiveLog\", function() { return GetDevicePositionHistoryRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDevicePositionHistoryResponseFilterSensitiveLog\", function() { return GetDevicePositionHistoryResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapGlyphsRequestFilterSensitiveLog\", function() { return GetMapGlyphsRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapGlyphsResponseFilterSensitiveLog\", function() { return GetMapGlyphsResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapSpritesRequestFilterSensitiveLog\", function() { return GetMapSpritesRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapSpritesResponseFilterSensitiveLog\", function() { return GetMapSpritesResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapStyleDescriptorRequestFilterSensitiveLog\", function() { return GetMapStyleDescriptorRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapStyleDescriptorResponseFilterSensitiveLog\", function() { return GetMapStyleDescriptorResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapTileRequestFilterSensitiveLog\", function() { return GetMapTileRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetMapTileResponseFilterSensitiveLog\", function() { return GetMapTileResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPlaceRequestFilterSensitiveLog\", function() { return GetPlaceRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PlaceGeometryFilterSensitiveLog\", function() { return PlaceGeometryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TimeZoneFilterSensitiveLog\", function() { return TimeZoneFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PlaceFilterSensitiveLog\", function() { return PlaceFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPlaceResponseFilterSensitiveLog\", function() { return GetPlaceResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsRequestFilterSensitiveLog\", function() { return ListDevicePositionsRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsResponseEntryFilterSensitiveLog\", function() { return ListDevicePositionsResponseEntryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListDevicePositionsResponseFilterSensitiveLog\", function() { return ListDevicePositionsResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListMapsRequestFilterSensitiveLog\", function() { return ListMapsRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListMapsResponseEntryFilterSensitiveLog\", function() { return ListMapsResponseEntryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListMapsResponseFilterSensitiveLog\", function() { return ListMapsResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesRequestFilterSensitiveLog\", function() { return ListPlaceIndexesRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesResponseEntryFilterSensitiveLog\", function() { return ListPlaceIndexesResponseEntryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPlaceIndexesResponseFilterSensitiveLog\", function() { return ListPlaceIndexesResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsRequestFilterSensitiveLog\", function() { return ListRouteCalculatorsRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsResponseEntryFilterSensitiveLog\", function() { return ListRouteCalculatorsResponseEntryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListRouteCalculatorsResponseFilterSensitiveLog\", function() { return ListRouteCalculatorsResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTrackerConsumersRequestFilterSensitiveLog\", function() { return ListTrackerConsumersRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTrackerConsumersResponseFilterSensitiveLog\", function() { return ListTrackerConsumersResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersRequestFilterSensitiveLog\", function() { return ListTrackersRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersResponseEntryFilterSensitiveLog\", function() { return ListTrackersResponseEntryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTrackersResponseFilterSensitiveLog\", function() { return ListTrackersResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateMapRequestFilterSensitiveLog\", function() { return UpdateMapRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateMapResponseFilterSensitiveLog\", function() { return UpdateMapResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionRequestFilterSensitiveLog\", function() { return SearchPlaceIndexForPositionRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchForPositionResultFilterSensitiveLog\", function() { return SearchForPositionResultFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionSummaryFilterSensitiveLog\", function() { return SearchPlaceIndexForPositionSummaryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForPositionResponseFilterSensitiveLog\", function() { return SearchPlaceIndexForPositionResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog\", function() { return SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchForSuggestionsResultFilterSensitiveLog\", function() { return SearchForSuggestionsResultFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog\", function() { return SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog\", function() { return SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextRequestFilterSensitiveLog\", function() { return SearchPlaceIndexForTextRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchForTextResultFilterSensitiveLog\", function() { return SearchForTextResultFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextSummaryFilterSensitiveLog\", function() { return SearchPlaceIndexForTextSummaryFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchPlaceIndexForTextResponseFilterSensitiveLog\", function() { return SearchPlaceIndexForTextResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdatePlaceIndexRequestFilterSensitiveLog\", function() { return UpdatePlaceIndexRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdatePlaceIndexResponseFilterSensitiveLog\", function() { return UpdatePlaceIndexResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateRouteCalculatorRequestFilterSensitiveLog\", function() { return UpdateRouteCalculatorRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateRouteCalculatorResponseFilterSensitiveLog\", function() { return UpdateRouteCalculatorResponseFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateTrackerRequestFilterSensitiveLog\", function() { return UpdateTrackerRequestFilterSensitiveLog; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateTrackerResponseFilterSensitiveLog\", function() { return UpdateTrackerResponseFilterSensitiveLog; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* harmony import */ var _LocationServiceException__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./LocationServiceException */ \"./node_modules/@aws-sdk/client-location/dist-es/models/LocationServiceException.js\");\n\n\n\nvar AccessDeniedException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AccessDeniedException, _super);\n function AccessDeniedException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"AccessDeniedException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"AccessDeniedException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, AccessDeniedException.prototype);\n _this.Message = opts.Message;\n return _this;\n }\n return AccessDeniedException;\n}(_LocationServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LocationServiceException\"]));\n\nvar ConflictException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ConflictException, _super);\n function ConflictException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ConflictException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ConflictException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, ConflictException.prototype);\n _this.Message = opts.Message;\n return _this;\n }\n return ConflictException;\n}(_LocationServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LocationServiceException\"]));\n\nvar InternalServerException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(InternalServerException, _super);\n function InternalServerException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InternalServerException\", $fault: \"server\" }, opts)) || this;\n _this.name = \"InternalServerException\";\n _this.$fault = \"server\";\n _this.$retryable = {};\n Object.setPrototypeOf(_this, InternalServerException.prototype);\n _this.Message = opts.Message;\n return _this;\n }\n return InternalServerException;\n}(_LocationServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LocationServiceException\"]));\n\nvar ResourceNotFoundException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ResourceNotFoundException, _super);\n function ResourceNotFoundException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotFoundException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ResourceNotFoundException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);\n _this.Message = opts.Message;\n return _this;\n }\n return ResourceNotFoundException;\n}(_LocationServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LocationServiceException\"]));\n\nvar ServiceQuotaExceededException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ServiceQuotaExceededException, _super);\n function ServiceQuotaExceededException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ServiceQuotaExceededException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ServiceQuotaExceededException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);\n _this.Message = opts.Message;\n return _this;\n }\n return ServiceQuotaExceededException;\n}(_LocationServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LocationServiceException\"]));\n\nvar ThrottlingException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ThrottlingException, _super);\n function ThrottlingException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ThrottlingException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ThrottlingException\";\n _this.$fault = \"client\";\n _this.$retryable = {};\n Object.setPrototypeOf(_this, ThrottlingException.prototype);\n _this.Message = opts.Message;\n return _this;\n }\n return ThrottlingException;\n}(_LocationServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LocationServiceException\"]));\n\nvar ValidationException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ValidationException, _super);\n function ValidationException(opts) {\n var _this = _super.call(this, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ValidationException\", $fault: \"client\" }, opts)) || this;\n _this.name = \"ValidationException\";\n _this.$fault = \"client\";\n Object.setPrototypeOf(_this, ValidationException.prototype);\n _this.Message = opts.Message;\n _this.Reason = opts.Reason;\n _this.FieldList = opts.FieldList;\n return _this;\n }\n return ValidationException;\n}(_LocationServiceException__WEBPACK_IMPORTED_MODULE_2__[\"LocationServiceException\"]));\n\nvar AssociateTrackerConsumerRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar AssociateTrackerConsumerResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ValidationExceptionFieldFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchItemErrorFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchDeleteDevicePositionHistoryErrorFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchDeleteDevicePositionHistoryResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchDeleteGeofenceRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchDeleteGeofenceErrorFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchDeleteGeofenceResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar PositionalAccuracyFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DevicePositionUpdateFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Position && { Position: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.PositionProperties && { PositionProperties: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar BatchEvaluateGeofencesRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.DevicePositionUpdates && {\n DevicePositionUpdates: obj.DevicePositionUpdates.map(function (item) { return DevicePositionUpdateFilterSensitiveLog(item); }),\n}))); };\nvar BatchEvaluateGeofencesErrorFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchEvaluateGeofencesResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchGetDevicePositionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DevicePositionFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Position && { Position: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.PositionProperties && { PositionProperties: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar BatchGetDevicePositionErrorFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchGetDevicePositionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.DevicePositions && {\n DevicePositions: obj.DevicePositions.map(function (item) { return DevicePositionFilterSensitiveLog(item); }),\n}))); };\nvar CircleFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Center && { Center: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar GeofenceGeometryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Polygon && { Polygon: obj.Polygon.map(function (item) { return _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"]; }) })), (obj.Circle && { Circle: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar BatchPutGeofenceRequestEntryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Geometry && { Geometry: GeofenceGeometryFilterSensitiveLog(obj.Geometry) }))); };\nvar BatchPutGeofenceRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Entries && { Entries: obj.Entries.map(function (item) { return BatchPutGeofenceRequestEntryFilterSensitiveLog(item); }) }))); };\nvar BatchPutGeofenceErrorFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchPutGeofenceSuccessFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchPutGeofenceResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchUpdateDevicePositionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Updates && { Updates: obj.Updates.map(function (item) { return DevicePositionUpdateFilterSensitiveLog(item); }) }))); };\nvar BatchUpdateDevicePositionErrorFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar BatchUpdateDevicePositionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CalculateRouteCarModeOptionsFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar TruckDimensionsFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar TruckWeightFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CalculateRouteTruckModeOptionsFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CalculateRouteRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.DeparturePosition && { DeparturePosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.DestinationPosition && { DestinationPosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.WaypointPositions && { WaypointPositions: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar LegGeometryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.LineString && { LineString: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar StepFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.StartPosition && { StartPosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.EndPosition && { EndPosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar LegFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.StartPosition && { StartPosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.EndPosition && { EndPosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.Geometry && { Geometry: LegGeometryFilterSensitiveLog(obj.Geometry) })), (obj.Steps && { Steps: obj.Steps.map(function (item) { return StepFilterSensitiveLog(item); }) }))); };\nvar CalculateRouteSummaryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.RouteBBox && { RouteBBox: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar CalculateRouteResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Legs && { Legs: obj.Legs.map(function (item) { return LegFilterSensitiveLog(item); }) })), (obj.Summary && { Summary: CalculateRouteSummaryFilterSensitiveLog(obj.Summary) }))); };\nvar CalculateRouteMatrixRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.DeparturePositions && { DeparturePositions: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.DestinationPositions && { DestinationPositions: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar RouteMatrixEntryErrorFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar RouteMatrixEntryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CalculateRouteMatrixSummaryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CalculateRouteMatrixResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SnappedDeparturePositions && { SnappedDeparturePositions: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SnappedDestinationPositions && { SnappedDestinationPositions: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar CreateGeofenceCollectionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CreateGeofenceCollectionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar MapConfigurationFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CreateMapRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CreateMapResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DataSourceConfigurationFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CreatePlaceIndexRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CreatePlaceIndexResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CreateRouteCalculatorRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CreateRouteCalculatorResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CreateTrackerRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar CreateTrackerResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteGeofenceCollectionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteGeofenceCollectionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteMapRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteMapResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeletePlaceIndexRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeletePlaceIndexResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteRouteCalculatorRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteRouteCalculatorResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteTrackerRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DeleteTrackerResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribeGeofenceCollectionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribeGeofenceCollectionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribeMapRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribeMapResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribePlaceIndexRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribePlaceIndexResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribeRouteCalculatorRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribeRouteCalculatorResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribeTrackerRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DescribeTrackerResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DisassociateTrackerConsumerRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar DisassociateTrackerConsumerResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar TagResourceRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar TagResourceResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UntagResourceRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UntagResourceResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetGeofenceRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetGeofenceResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Geometry && { Geometry: GeofenceGeometryFilterSensitiveLog(obj.Geometry) }))); };\nvar ListGeofenceCollectionsRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListGeofenceCollectionsResponseEntryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListGeofenceCollectionsResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListGeofencesRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListGeofenceResponseEntryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Geometry && { Geometry: GeofenceGeometryFilterSensitiveLog(obj.Geometry) }))); };\nvar ListGeofencesResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Entries && { Entries: obj.Entries.map(function (item) { return ListGeofenceResponseEntryFilterSensitiveLog(item); }) }))); };\nvar PutGeofenceRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Geometry && { Geometry: GeofenceGeometryFilterSensitiveLog(obj.Geometry) }))); };\nvar PutGeofenceResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UpdateGeofenceCollectionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UpdateGeofenceCollectionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetDevicePositionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetDevicePositionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Position && { Position: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.PositionProperties && { PositionProperties: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar GetDevicePositionHistoryRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetDevicePositionHistoryResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.DevicePositions && {\n DevicePositions: obj.DevicePositions.map(function (item) { return DevicePositionFilterSensitiveLog(item); }),\n}))); };\nvar GetMapGlyphsRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetMapGlyphsResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetMapSpritesRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetMapSpritesResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetMapStyleDescriptorRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetMapStyleDescriptorResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetMapTileRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetMapTileResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar GetPlaceRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar PlaceGeometryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Point && { Point: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar TimeZoneFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar PlaceFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Geometry && { Geometry: PlaceGeometryFilterSensitiveLog(obj.Geometry) }))); };\nvar GetPlaceResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Place && { Place: PlaceFilterSensitiveLog(obj.Place) }))); };\nvar ListDevicePositionsRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListDevicePositionsResponseEntryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Position && { Position: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.PositionProperties && { PositionProperties: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar ListDevicePositionsResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Entries && { Entries: obj.Entries.map(function (item) { return ListDevicePositionsResponseEntryFilterSensitiveLog(item); }) }))); };\nvar ListMapsRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListMapsResponseEntryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListMapsResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListPlaceIndexesRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListPlaceIndexesResponseEntryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListPlaceIndexesResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListRouteCalculatorsRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListRouteCalculatorsResponseEntryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListRouteCalculatorsResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListTrackerConsumersRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListTrackerConsumersResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListTrackersRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListTrackersResponseEntryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar ListTrackersResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UpdateMapRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UpdateMapResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar SearchPlaceIndexForPositionRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Position && { Position: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar SearchForPositionResultFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Place && { Place: PlaceFilterSensitiveLog(obj.Place) }))); };\nvar SearchPlaceIndexForPositionSummaryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Position && { Position: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar SearchPlaceIndexForPositionResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Summary && { Summary: SearchPlaceIndexForPositionSummaryFilterSensitiveLog(obj.Summary) })), (obj.Results && { Results: obj.Results.map(function (item) { return SearchForPositionResultFilterSensitiveLog(item); }) }))); };\nvar SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.BiasPosition && { BiasPosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.FilterBBox && { FilterBBox: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar SearchForSuggestionsResultFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.BiasPosition && { BiasPosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.FilterBBox && { FilterBBox: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Summary && { Summary: SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog(obj.Summary) }))); };\nvar SearchPlaceIndexForTextRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.BiasPosition && { BiasPosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.FilterBBox && { FilterBBox: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar SearchForTextResultFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Place && { Place: PlaceFilterSensitiveLog(obj.Place) }))); };\nvar SearchPlaceIndexForTextSummaryFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Text && { Text: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.BiasPosition && { BiasPosition: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.FilterBBox && { FilterBBox: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.ResultBBox && { ResultBBox: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\nvar SearchPlaceIndexForTextResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Summary && { Summary: SearchPlaceIndexForTextSummaryFilterSensitiveLog(obj.Summary) })), (obj.Results && { Results: obj.Results.map(function (item) { return SearchForTextResultFilterSensitiveLog(item); }) }))); };\nvar UpdatePlaceIndexRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UpdatePlaceIndexResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UpdateRouteCalculatorRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UpdateRouteCalculatorResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UpdateTrackerRequestFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\nvar UpdateTrackerResponseFilterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/GetDevicePositionHistoryPaginator.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/GetDevicePositionHistoryPaginator.js ***! \*******************************************************************************************************/ /*! exports provided: paginateGetDevicePositionHistory */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetDevicePositionHistory\", function() { return paginateGetDevicePositionHistory; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_GetDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/GetDevicePositionHistoryCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionHistoryCommand.js\");\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([new _commands_GetDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_1__[\"GetDevicePositionHistoryCommand\"](input)], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.getDevicePositionHistory.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetDevicePositionHistory(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetDevicePositionHistory_1() {\n var token, hasNext, page, prevToken;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Location__WEBPACK_IMPORTED_MODULE_2__[\"Location\"])) return [3, 3];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 2:\n page = _a.sent();\n return [3, 6];\n case 3:\n if (!(config.client instanceof _LocationClient__WEBPACK_IMPORTED_MODULE_3__[\"LocationClient\"])) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 4:\n page = _a.sent();\n return [3, 6];\n case 5: throw new Error(\"Invalid client, expected Location | LocationClient\");\n case 6: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4, _a.sent()];\n case 8:\n _a.sent();\n prevToken = token;\n token = page.NextToken;\n hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));\n return [3, 1];\n case 9: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: return [2, _a.sent()];\n }\n });\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/GetDevicePositionHistoryPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/Interfaces.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/Interfaces.js ***! \********************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/Interfaces.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/ListDevicePositionsPaginator.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/ListDevicePositionsPaginator.js ***! \**************************************************************************************************/ /*! exports provided: paginateListDevicePositions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListDevicePositions\", function() { return paginateListDevicePositions; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_ListDevicePositionsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListDevicePositionsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListDevicePositionsCommand.js\");\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([new _commands_ListDevicePositionsCommand__WEBPACK_IMPORTED_MODULE_1__[\"ListDevicePositionsCommand\"](input)], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.listDevicePositions.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nfunction paginateListDevicePositions(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListDevicePositions_1() {\n var token, hasNext, page, prevToken;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Location__WEBPACK_IMPORTED_MODULE_2__[\"Location\"])) return [3, 3];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 2:\n page = _a.sent();\n return [3, 6];\n case 3:\n if (!(config.client instanceof _LocationClient__WEBPACK_IMPORTED_MODULE_3__[\"LocationClient\"])) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 4:\n page = _a.sent();\n return [3, 6];\n case 5: throw new Error(\"Invalid client, expected Location | LocationClient\");\n case 6: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4, _a.sent()];\n case 8:\n _a.sent();\n prevToken = token;\n token = page.NextToken;\n hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));\n return [3, 1];\n case 9: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: return [2, _a.sent()];\n }\n });\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/ListDevicePositionsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/ListGeofenceCollectionsPaginator.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/ListGeofenceCollectionsPaginator.js ***! \******************************************************************************************************/ /*! exports provided: paginateListGeofenceCollections */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListGeofenceCollections\", function() { return paginateListGeofenceCollections; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_ListGeofenceCollectionsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListGeofenceCollectionsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofenceCollectionsCommand.js\");\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([new _commands_ListGeofenceCollectionsCommand__WEBPACK_IMPORTED_MODULE_1__[\"ListGeofenceCollectionsCommand\"](input)], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.listGeofenceCollections.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nfunction paginateListGeofenceCollections(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListGeofenceCollections_1() {\n var token, hasNext, page, prevToken;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Location__WEBPACK_IMPORTED_MODULE_2__[\"Location\"])) return [3, 3];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 2:\n page = _a.sent();\n return [3, 6];\n case 3:\n if (!(config.client instanceof _LocationClient__WEBPACK_IMPORTED_MODULE_3__[\"LocationClient\"])) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 4:\n page = _a.sent();\n return [3, 6];\n case 5: throw new Error(\"Invalid client, expected Location | LocationClient\");\n case 6: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4, _a.sent()];\n case 8:\n _a.sent();\n prevToken = token;\n token = page.NextToken;\n hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));\n return [3, 1];\n case 9: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: return [2, _a.sent()];\n }\n });\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/ListGeofenceCollectionsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/ListGeofencesPaginator.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/ListGeofencesPaginator.js ***! \********************************************************************************************/ /*! exports provided: paginateListGeofences */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListGeofences\", function() { return paginateListGeofences; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_ListGeofencesCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListGeofencesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofencesCommand.js\");\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([new _commands_ListGeofencesCommand__WEBPACK_IMPORTED_MODULE_1__[\"ListGeofencesCommand\"](input)], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.listGeofences.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nfunction paginateListGeofences(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListGeofences_1() {\n var token, hasNext, page, prevToken;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Location__WEBPACK_IMPORTED_MODULE_2__[\"Location\"])) return [3, 3];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 2:\n page = _a.sent();\n return [3, 6];\n case 3:\n if (!(config.client instanceof _LocationClient__WEBPACK_IMPORTED_MODULE_3__[\"LocationClient\"])) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 4:\n page = _a.sent();\n return [3, 6];\n case 5: throw new Error(\"Invalid client, expected Location | LocationClient\");\n case 6: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4, _a.sent()];\n case 8:\n _a.sent();\n prevToken = token;\n token = page.NextToken;\n hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));\n return [3, 1];\n case 9: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: return [2, _a.sent()];\n }\n });\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/ListGeofencesPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/ListMapsPaginator.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/ListMapsPaginator.js ***! \***************************************************************************************/ /*! exports provided: paginateListMaps */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListMaps\", function() { return paginateListMaps; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_ListMapsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListMapsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListMapsCommand.js\");\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([new _commands_ListMapsCommand__WEBPACK_IMPORTED_MODULE_1__[\"ListMapsCommand\"](input)], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.listMaps.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nfunction paginateListMaps(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListMaps_1() {\n var token, hasNext, page, prevToken;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Location__WEBPACK_IMPORTED_MODULE_2__[\"Location\"])) return [3, 3];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 2:\n page = _a.sent();\n return [3, 6];\n case 3:\n if (!(config.client instanceof _LocationClient__WEBPACK_IMPORTED_MODULE_3__[\"LocationClient\"])) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 4:\n page = _a.sent();\n return [3, 6];\n case 5: throw new Error(\"Invalid client, expected Location | LocationClient\");\n case 6: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4, _a.sent()];\n case 8:\n _a.sent();\n prevToken = token;\n token = page.NextToken;\n hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));\n return [3, 1];\n case 9: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: return [2, _a.sent()];\n }\n });\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/ListMapsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/ListPlaceIndexesPaginator.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/ListPlaceIndexesPaginator.js ***! \***********************************************************************************************/ /*! exports provided: paginateListPlaceIndexes */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListPlaceIndexes\", function() { return paginateListPlaceIndexes; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_ListPlaceIndexesCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListPlaceIndexesCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListPlaceIndexesCommand.js\");\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([new _commands_ListPlaceIndexesCommand__WEBPACK_IMPORTED_MODULE_1__[\"ListPlaceIndexesCommand\"](input)], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.listPlaceIndexes.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nfunction paginateListPlaceIndexes(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListPlaceIndexes_1() {\n var token, hasNext, page, prevToken;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Location__WEBPACK_IMPORTED_MODULE_2__[\"Location\"])) return [3, 3];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 2:\n page = _a.sent();\n return [3, 6];\n case 3:\n if (!(config.client instanceof _LocationClient__WEBPACK_IMPORTED_MODULE_3__[\"LocationClient\"])) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 4:\n page = _a.sent();\n return [3, 6];\n case 5: throw new Error(\"Invalid client, expected Location | LocationClient\");\n case 6: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4, _a.sent()];\n case 8:\n _a.sent();\n prevToken = token;\n token = page.NextToken;\n hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));\n return [3, 1];\n case 9: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: return [2, _a.sent()];\n }\n });\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/ListPlaceIndexesPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/ListRouteCalculatorsPaginator.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/ListRouteCalculatorsPaginator.js ***! \***************************************************************************************************/ /*! exports provided: paginateListRouteCalculators */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListRouteCalculators\", function() { return paginateListRouteCalculators; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_ListRouteCalculatorsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListRouteCalculatorsCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListRouteCalculatorsCommand.js\");\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([new _commands_ListRouteCalculatorsCommand__WEBPACK_IMPORTED_MODULE_1__[\"ListRouteCalculatorsCommand\"](input)], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.listRouteCalculators.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nfunction paginateListRouteCalculators(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListRouteCalculators_1() {\n var token, hasNext, page, prevToken;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Location__WEBPACK_IMPORTED_MODULE_2__[\"Location\"])) return [3, 3];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 2:\n page = _a.sent();\n return [3, 6];\n case 3:\n if (!(config.client instanceof _LocationClient__WEBPACK_IMPORTED_MODULE_3__[\"LocationClient\"])) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 4:\n page = _a.sent();\n return [3, 6];\n case 5: throw new Error(\"Invalid client, expected Location | LocationClient\");\n case 6: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4, _a.sent()];\n case 8:\n _a.sent();\n prevToken = token;\n token = page.NextToken;\n hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));\n return [3, 1];\n case 9: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: return [2, _a.sent()];\n }\n });\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/ListRouteCalculatorsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/ListTrackerConsumersPaginator.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/ListTrackerConsumersPaginator.js ***! \***************************************************************************************************/ /*! exports provided: paginateListTrackerConsumers */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListTrackerConsumers\", function() { return paginateListTrackerConsumers; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_ListTrackerConsumersCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListTrackerConsumersCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackerConsumersCommand.js\");\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([new _commands_ListTrackerConsumersCommand__WEBPACK_IMPORTED_MODULE_1__[\"ListTrackerConsumersCommand\"](input)], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.listTrackerConsumers.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nfunction paginateListTrackerConsumers(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListTrackerConsumers_1() {\n var token, hasNext, page, prevToken;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Location__WEBPACK_IMPORTED_MODULE_2__[\"Location\"])) return [3, 3];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 2:\n page = _a.sent();\n return [3, 6];\n case 3:\n if (!(config.client instanceof _LocationClient__WEBPACK_IMPORTED_MODULE_3__[\"LocationClient\"])) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 4:\n page = _a.sent();\n return [3, 6];\n case 5: throw new Error(\"Invalid client, expected Location | LocationClient\");\n case 6: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4, _a.sent()];\n case 8:\n _a.sent();\n prevToken = token;\n token = page.NextToken;\n hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));\n return [3, 1];\n case 9: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: return [2, _a.sent()];\n }\n });\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/ListTrackerConsumersPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/ListTrackersPaginator.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/ListTrackersPaginator.js ***! \*******************************************************************************************/ /*! exports provided: paginateListTrackers */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListTrackers\", function() { return paginateListTrackers; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_ListTrackersCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListTrackersCommand */ \"./node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackersCommand.js\");\n/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ \"./node_modules/@aws-sdk/client-location/dist-es/Location.js\");\n/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ \"./node_modules/@aws-sdk/client-location/dist-es/LocationClient.js\");\n\n\n\n\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([new _commands_ListTrackersCommand__WEBPACK_IMPORTED_MODULE_1__[\"ListTrackersCommand\"](input)], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, client.listTrackers.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(args), false))];\n case 1: return [2, _a.sent()];\n }\n });\n });\n};\nfunction paginateListTrackers(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListTrackers_1() {\n var token, hasNext, page, prevToken;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Location__WEBPACK_IMPORTED_MODULE_2__[\"Location\"])) return [3, 3];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 2:\n page = _a.sent();\n return [3, 6];\n case 3:\n if (!(config.client instanceof _LocationClient__WEBPACK_IMPORTED_MODULE_3__[\"LocationClient\"])) return [3, 5];\n return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([config.client, input], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(additionalArguments), false)))];\n case 4:\n page = _a.sent();\n return [3, 6];\n case 5: throw new Error(\"Invalid client, expected Location | LocationClient\");\n case 6: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4, _a.sent()];\n case 8:\n _a.sent();\n prevToken = token;\n token = page.NextToken;\n hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));\n return [3, 1];\n case 9: return [4, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: return [2, _a.sent()];\n }\n });\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/ListTrackersPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/pagination/index.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/pagination/index.js ***! \***************************************************************************/ /*! exports provided: paginateGetDevicePositionHistory, paginateListDevicePositions, paginateListGeofenceCollections, paginateListGeofences, paginateListMaps, paginateListPlaceIndexes, paginateListRouteCalculators, paginateListTrackerConsumers, paginateListTrackers */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _GetDevicePositionHistoryPaginator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./GetDevicePositionHistoryPaginator */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/GetDevicePositionHistoryPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetDevicePositionHistory\", function() { return _GetDevicePositionHistoryPaginator__WEBPACK_IMPORTED_MODULE_0__[\"paginateGetDevicePositionHistory\"]; });\n\n/* harmony import */ var _Interfaces__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Interfaces */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/Interfaces.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _ListDevicePositionsPaginator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ListDevicePositionsPaginator */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/ListDevicePositionsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListDevicePositions\", function() { return _ListDevicePositionsPaginator__WEBPACK_IMPORTED_MODULE_2__[\"paginateListDevicePositions\"]; });\n\n/* harmony import */ var _ListGeofenceCollectionsPaginator__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ListGeofenceCollectionsPaginator */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/ListGeofenceCollectionsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListGeofenceCollections\", function() { return _ListGeofenceCollectionsPaginator__WEBPACK_IMPORTED_MODULE_3__[\"paginateListGeofenceCollections\"]; });\n\n/* harmony import */ var _ListGeofencesPaginator__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ListGeofencesPaginator */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/ListGeofencesPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListGeofences\", function() { return _ListGeofencesPaginator__WEBPACK_IMPORTED_MODULE_4__[\"paginateListGeofences\"]; });\n\n/* harmony import */ var _ListMapsPaginator__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ListMapsPaginator */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/ListMapsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListMaps\", function() { return _ListMapsPaginator__WEBPACK_IMPORTED_MODULE_5__[\"paginateListMaps\"]; });\n\n/* harmony import */ var _ListPlaceIndexesPaginator__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./ListPlaceIndexesPaginator */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/ListPlaceIndexesPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListPlaceIndexes\", function() { return _ListPlaceIndexesPaginator__WEBPACK_IMPORTED_MODULE_6__[\"paginateListPlaceIndexes\"]; });\n\n/* harmony import */ var _ListRouteCalculatorsPaginator__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ListRouteCalculatorsPaginator */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/ListRouteCalculatorsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListRouteCalculators\", function() { return _ListRouteCalculatorsPaginator__WEBPACK_IMPORTED_MODULE_7__[\"paginateListRouteCalculators\"]; });\n\n/* harmony import */ var _ListTrackerConsumersPaginator__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ListTrackerConsumersPaginator */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/ListTrackerConsumersPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListTrackerConsumers\", function() { return _ListTrackerConsumersPaginator__WEBPACK_IMPORTED_MODULE_8__[\"paginateListTrackerConsumers\"]; });\n\n/* harmony import */ var _ListTrackersPaginator__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./ListTrackersPaginator */ \"./node_modules/@aws-sdk/client-location/dist-es/pagination/ListTrackersPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListTrackers\", function() { return _ListTrackersPaginator__WEBPACK_IMPORTED_MODULE_9__[\"paginateListTrackers\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/pagination/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js ***! \**********************************************************************************/ /*! exports provided: serializeAws_restJson1AssociateTrackerConsumerCommand, serializeAws_restJson1BatchDeleteDevicePositionHistoryCommand, serializeAws_restJson1BatchDeleteGeofenceCommand, serializeAws_restJson1BatchEvaluateGeofencesCommand, serializeAws_restJson1BatchGetDevicePositionCommand, serializeAws_restJson1BatchPutGeofenceCommand, serializeAws_restJson1BatchUpdateDevicePositionCommand, serializeAws_restJson1CalculateRouteCommand, serializeAws_restJson1CalculateRouteMatrixCommand, serializeAws_restJson1CreateGeofenceCollectionCommand, serializeAws_restJson1CreateMapCommand, serializeAws_restJson1CreatePlaceIndexCommand, serializeAws_restJson1CreateRouteCalculatorCommand, serializeAws_restJson1CreateTrackerCommand, serializeAws_restJson1DeleteGeofenceCollectionCommand, serializeAws_restJson1DeleteMapCommand, serializeAws_restJson1DeletePlaceIndexCommand, serializeAws_restJson1DeleteRouteCalculatorCommand, serializeAws_restJson1DeleteTrackerCommand, serializeAws_restJson1DescribeGeofenceCollectionCommand, serializeAws_restJson1DescribeMapCommand, serializeAws_restJson1DescribePlaceIndexCommand, serializeAws_restJson1DescribeRouteCalculatorCommand, serializeAws_restJson1DescribeTrackerCommand, serializeAws_restJson1DisassociateTrackerConsumerCommand, serializeAws_restJson1GetDevicePositionCommand, serializeAws_restJson1GetDevicePositionHistoryCommand, serializeAws_restJson1GetGeofenceCommand, serializeAws_restJson1GetMapGlyphsCommand, serializeAws_restJson1GetMapSpritesCommand, serializeAws_restJson1GetMapStyleDescriptorCommand, serializeAws_restJson1GetMapTileCommand, serializeAws_restJson1GetPlaceCommand, serializeAws_restJson1ListDevicePositionsCommand, serializeAws_restJson1ListGeofenceCollectionsCommand, serializeAws_restJson1ListGeofencesCommand, serializeAws_restJson1ListMapsCommand, serializeAws_restJson1ListPlaceIndexesCommand, serializeAws_restJson1ListRouteCalculatorsCommand, serializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTrackerConsumersCommand, serializeAws_restJson1ListTrackersCommand, serializeAws_restJson1PutGeofenceCommand, serializeAws_restJson1SearchPlaceIndexForPositionCommand, serializeAws_restJson1SearchPlaceIndexForSuggestionsCommand, serializeAws_restJson1SearchPlaceIndexForTextCommand, serializeAws_restJson1TagResourceCommand, serializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UpdateGeofenceCollectionCommand, serializeAws_restJson1UpdateMapCommand, serializeAws_restJson1UpdatePlaceIndexCommand, serializeAws_restJson1UpdateRouteCalculatorCommand, serializeAws_restJson1UpdateTrackerCommand, deserializeAws_restJson1AssociateTrackerConsumerCommand, deserializeAws_restJson1BatchDeleteDevicePositionHistoryCommand, deserializeAws_restJson1BatchDeleteGeofenceCommand, deserializeAws_restJson1BatchEvaluateGeofencesCommand, deserializeAws_restJson1BatchGetDevicePositionCommand, deserializeAws_restJson1BatchPutGeofenceCommand, deserializeAws_restJson1BatchUpdateDevicePositionCommand, deserializeAws_restJson1CalculateRouteCommand, deserializeAws_restJson1CalculateRouteMatrixCommand, deserializeAws_restJson1CreateGeofenceCollectionCommand, deserializeAws_restJson1CreateMapCommand, deserializeAws_restJson1CreatePlaceIndexCommand, deserializeAws_restJson1CreateRouteCalculatorCommand, deserializeAws_restJson1CreateTrackerCommand, deserializeAws_restJson1DeleteGeofenceCollectionCommand, deserializeAws_restJson1DeleteMapCommand, deserializeAws_restJson1DeletePlaceIndexCommand, deserializeAws_restJson1DeleteRouteCalculatorCommand, deserializeAws_restJson1DeleteTrackerCommand, deserializeAws_restJson1DescribeGeofenceCollectionCommand, deserializeAws_restJson1DescribeMapCommand, deserializeAws_restJson1DescribePlaceIndexCommand, deserializeAws_restJson1DescribeRouteCalculatorCommand, deserializeAws_restJson1DescribeTrackerCommand, deserializeAws_restJson1DisassociateTrackerConsumerCommand, deserializeAws_restJson1GetDevicePositionCommand, deserializeAws_restJson1GetDevicePositionHistoryCommand, deserializeAws_restJson1GetGeofenceCommand, deserializeAws_restJson1GetMapGlyphsCommand, deserializeAws_restJson1GetMapSpritesCommand, deserializeAws_restJson1GetMapStyleDescriptorCommand, deserializeAws_restJson1GetMapTileCommand, deserializeAws_restJson1GetPlaceCommand, deserializeAws_restJson1ListDevicePositionsCommand, deserializeAws_restJson1ListGeofenceCollectionsCommand, deserializeAws_restJson1ListGeofencesCommand, deserializeAws_restJson1ListMapsCommand, deserializeAws_restJson1ListPlaceIndexesCommand, deserializeAws_restJson1ListRouteCalculatorsCommand, deserializeAws_restJson1ListTagsForResourceCommand, deserializeAws_restJson1ListTrackerConsumersCommand, deserializeAws_restJson1ListTrackersCommand, deserializeAws_restJson1PutGeofenceCommand, deserializeAws_restJson1SearchPlaceIndexForPositionCommand, deserializeAws_restJson1SearchPlaceIndexForSuggestionsCommand, deserializeAws_restJson1SearchPlaceIndexForTextCommand, deserializeAws_restJson1TagResourceCommand, deserializeAws_restJson1UntagResourceCommand, deserializeAws_restJson1UpdateGeofenceCollectionCommand, deserializeAws_restJson1UpdateMapCommand, deserializeAws_restJson1UpdatePlaceIndexCommand, deserializeAws_restJson1UpdateRouteCalculatorCommand, deserializeAws_restJson1UpdateTrackerCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1AssociateTrackerConsumerCommand\", function() { return serializeAws_restJson1AssociateTrackerConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1BatchDeleteDevicePositionHistoryCommand\", function() { return serializeAws_restJson1BatchDeleteDevicePositionHistoryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1BatchDeleteGeofenceCommand\", function() { return serializeAws_restJson1BatchDeleteGeofenceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1BatchEvaluateGeofencesCommand\", function() { return serializeAws_restJson1BatchEvaluateGeofencesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1BatchGetDevicePositionCommand\", function() { return serializeAws_restJson1BatchGetDevicePositionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1BatchPutGeofenceCommand\", function() { return serializeAws_restJson1BatchPutGeofenceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1BatchUpdateDevicePositionCommand\", function() { return serializeAws_restJson1BatchUpdateDevicePositionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CalculateRouteCommand\", function() { return serializeAws_restJson1CalculateRouteCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CalculateRouteMatrixCommand\", function() { return serializeAws_restJson1CalculateRouteMatrixCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateGeofenceCollectionCommand\", function() { return serializeAws_restJson1CreateGeofenceCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateMapCommand\", function() { return serializeAws_restJson1CreateMapCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreatePlaceIndexCommand\", function() { return serializeAws_restJson1CreatePlaceIndexCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateRouteCalculatorCommand\", function() { return serializeAws_restJson1CreateRouteCalculatorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateTrackerCommand\", function() { return serializeAws_restJson1CreateTrackerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteGeofenceCollectionCommand\", function() { return serializeAws_restJson1DeleteGeofenceCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteMapCommand\", function() { return serializeAws_restJson1DeleteMapCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeletePlaceIndexCommand\", function() { return serializeAws_restJson1DeletePlaceIndexCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteRouteCalculatorCommand\", function() { return serializeAws_restJson1DeleteRouteCalculatorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteTrackerCommand\", function() { return serializeAws_restJson1DeleteTrackerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DescribeGeofenceCollectionCommand\", function() { return serializeAws_restJson1DescribeGeofenceCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DescribeMapCommand\", function() { return serializeAws_restJson1DescribeMapCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DescribePlaceIndexCommand\", function() { return serializeAws_restJson1DescribePlaceIndexCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DescribeRouteCalculatorCommand\", function() { return serializeAws_restJson1DescribeRouteCalculatorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DescribeTrackerCommand\", function() { return serializeAws_restJson1DescribeTrackerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DisassociateTrackerConsumerCommand\", function() { return serializeAws_restJson1DisassociateTrackerConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetDevicePositionCommand\", function() { return serializeAws_restJson1GetDevicePositionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetDevicePositionHistoryCommand\", function() { return serializeAws_restJson1GetDevicePositionHistoryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetGeofenceCommand\", function() { return serializeAws_restJson1GetGeofenceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetMapGlyphsCommand\", function() { return serializeAws_restJson1GetMapGlyphsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetMapSpritesCommand\", function() { return serializeAws_restJson1GetMapSpritesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetMapStyleDescriptorCommand\", function() { return serializeAws_restJson1GetMapStyleDescriptorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetMapTileCommand\", function() { return serializeAws_restJson1GetMapTileCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetPlaceCommand\", function() { return serializeAws_restJson1GetPlaceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListDevicePositionsCommand\", function() { return serializeAws_restJson1ListDevicePositionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListGeofenceCollectionsCommand\", function() { return serializeAws_restJson1ListGeofenceCollectionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListGeofencesCommand\", function() { return serializeAws_restJson1ListGeofencesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListMapsCommand\", function() { return serializeAws_restJson1ListMapsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListPlaceIndexesCommand\", function() { return serializeAws_restJson1ListPlaceIndexesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListRouteCalculatorsCommand\", function() { return serializeAws_restJson1ListRouteCalculatorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListTagsForResourceCommand\", function() { return serializeAws_restJson1ListTagsForResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListTrackerConsumersCommand\", function() { return serializeAws_restJson1ListTrackerConsumersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListTrackersCommand\", function() { return serializeAws_restJson1ListTrackersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PutGeofenceCommand\", function() { return serializeAws_restJson1PutGeofenceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1SearchPlaceIndexForPositionCommand\", function() { return serializeAws_restJson1SearchPlaceIndexForPositionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1SearchPlaceIndexForSuggestionsCommand\", function() { return serializeAws_restJson1SearchPlaceIndexForSuggestionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1SearchPlaceIndexForTextCommand\", function() { return serializeAws_restJson1SearchPlaceIndexForTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1TagResourceCommand\", function() { return serializeAws_restJson1TagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UntagResourceCommand\", function() { return serializeAws_restJson1UntagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateGeofenceCollectionCommand\", function() { return serializeAws_restJson1UpdateGeofenceCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateMapCommand\", function() { return serializeAws_restJson1UpdateMapCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdatePlaceIndexCommand\", function() { return serializeAws_restJson1UpdatePlaceIndexCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateRouteCalculatorCommand\", function() { return serializeAws_restJson1UpdateRouteCalculatorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateTrackerCommand\", function() { return serializeAws_restJson1UpdateTrackerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1AssociateTrackerConsumerCommand\", function() { return deserializeAws_restJson1AssociateTrackerConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1BatchDeleteDevicePositionHistoryCommand\", function() { return deserializeAws_restJson1BatchDeleteDevicePositionHistoryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1BatchDeleteGeofenceCommand\", function() { return deserializeAws_restJson1BatchDeleteGeofenceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1BatchEvaluateGeofencesCommand\", function() { return deserializeAws_restJson1BatchEvaluateGeofencesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1BatchGetDevicePositionCommand\", function() { return deserializeAws_restJson1BatchGetDevicePositionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1BatchPutGeofenceCommand\", function() { return deserializeAws_restJson1BatchPutGeofenceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1BatchUpdateDevicePositionCommand\", function() { return deserializeAws_restJson1BatchUpdateDevicePositionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CalculateRouteCommand\", function() { return deserializeAws_restJson1CalculateRouteCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CalculateRouteMatrixCommand\", function() { return deserializeAws_restJson1CalculateRouteMatrixCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateGeofenceCollectionCommand\", function() { return deserializeAws_restJson1CreateGeofenceCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateMapCommand\", function() { return deserializeAws_restJson1CreateMapCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreatePlaceIndexCommand\", function() { return deserializeAws_restJson1CreatePlaceIndexCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateRouteCalculatorCommand\", function() { return deserializeAws_restJson1CreateRouteCalculatorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateTrackerCommand\", function() { return deserializeAws_restJson1CreateTrackerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteGeofenceCollectionCommand\", function() { return deserializeAws_restJson1DeleteGeofenceCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteMapCommand\", function() { return deserializeAws_restJson1DeleteMapCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeletePlaceIndexCommand\", function() { return deserializeAws_restJson1DeletePlaceIndexCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteRouteCalculatorCommand\", function() { return deserializeAws_restJson1DeleteRouteCalculatorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteTrackerCommand\", function() { return deserializeAws_restJson1DeleteTrackerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DescribeGeofenceCollectionCommand\", function() { return deserializeAws_restJson1DescribeGeofenceCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DescribeMapCommand\", function() { return deserializeAws_restJson1DescribeMapCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DescribePlaceIndexCommand\", function() { return deserializeAws_restJson1DescribePlaceIndexCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DescribeRouteCalculatorCommand\", function() { return deserializeAws_restJson1DescribeRouteCalculatorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DescribeTrackerCommand\", function() { return deserializeAws_restJson1DescribeTrackerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DisassociateTrackerConsumerCommand\", function() { return deserializeAws_restJson1DisassociateTrackerConsumerCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetDevicePositionCommand\", function() { return deserializeAws_restJson1GetDevicePositionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetDevicePositionHistoryCommand\", function() { return deserializeAws_restJson1GetDevicePositionHistoryCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetGeofenceCommand\", function() { return deserializeAws_restJson1GetGeofenceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetMapGlyphsCommand\", function() { return deserializeAws_restJson1GetMapGlyphsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetMapSpritesCommand\", function() { return deserializeAws_restJson1GetMapSpritesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetMapStyleDescriptorCommand\", function() { return deserializeAws_restJson1GetMapStyleDescriptorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetMapTileCommand\", function() { return deserializeAws_restJson1GetMapTileCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetPlaceCommand\", function() { return deserializeAws_restJson1GetPlaceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListDevicePositionsCommand\", function() { return deserializeAws_restJson1ListDevicePositionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListGeofenceCollectionsCommand\", function() { return deserializeAws_restJson1ListGeofenceCollectionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListGeofencesCommand\", function() { return deserializeAws_restJson1ListGeofencesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListMapsCommand\", function() { return deserializeAws_restJson1ListMapsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListPlaceIndexesCommand\", function() { return deserializeAws_restJson1ListPlaceIndexesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListRouteCalculatorsCommand\", function() { return deserializeAws_restJson1ListRouteCalculatorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListTagsForResourceCommand\", function() { return deserializeAws_restJson1ListTagsForResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListTrackerConsumersCommand\", function() { return deserializeAws_restJson1ListTrackerConsumersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListTrackersCommand\", function() { return deserializeAws_restJson1ListTrackersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PutGeofenceCommand\", function() { return deserializeAws_restJson1PutGeofenceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1SearchPlaceIndexForPositionCommand\", function() { return deserializeAws_restJson1SearchPlaceIndexForPositionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1SearchPlaceIndexForSuggestionsCommand\", function() { return deserializeAws_restJson1SearchPlaceIndexForSuggestionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1SearchPlaceIndexForTextCommand\", function() { return deserializeAws_restJson1SearchPlaceIndexForTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1TagResourceCommand\", function() { return deserializeAws_restJson1TagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UntagResourceCommand\", function() { return deserializeAws_restJson1UntagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateGeofenceCollectionCommand\", function() { return deserializeAws_restJson1UpdateGeofenceCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateMapCommand\", function() { return deserializeAws_restJson1UpdateMapCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdatePlaceIndexCommand\", function() { return deserializeAws_restJson1UpdatePlaceIndexCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateRouteCalculatorCommand\", function() { return deserializeAws_restJson1UpdateRouteCalculatorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateTrackerCommand\", function() { return deserializeAws_restJson1UpdateTrackerCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/LocationServiceException */ \"./node_modules/@aws-sdk/client-location/dist-es/models/LocationServiceException.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-location/dist-es/models/models_0.js\");\n\n\n\n\n\nvar serializeAws_restJson1AssociateTrackerConsumerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/tracking/v0/trackers/{TrackerName}/consumers\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ConsumerArn != null && { ConsumerArn: input.ConsumerArn })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1BatchDeleteDevicePositionHistoryCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/tracking/v0/trackers/{TrackerName}/delete-positions\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeviceIds != null && { DeviceIds: serializeAws_restJson1DeviceIdsList(input.DeviceIds, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1BatchDeleteGeofenceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/geofencing/v0/collections/{CollectionName}/delete-geofences\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CollectionName\", function () { return input.CollectionName; }, \"{CollectionName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.GeofenceIds != null && { GeofenceIds: serializeAws_restJson1IdList(input.GeofenceIds, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1BatchEvaluateGeofencesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/geofencing/v0/collections/{CollectionName}/positions\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CollectionName\", function () { return input.CollectionName; }, \"{CollectionName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DevicePositionUpdates != null && {\n DevicePositionUpdates: serializeAws_restJson1DevicePositionUpdateList(input.DevicePositionUpdates, context),\n })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1BatchGetDevicePositionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/tracking/v0/trackers/{TrackerName}/get-positions\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeviceIds != null && { DeviceIds: serializeAws_restJson1IdList(input.DeviceIds, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1BatchPutGeofenceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/geofencing/v0/collections/{CollectionName}/put-geofences\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CollectionName\", function () { return input.CollectionName; }, \"{CollectionName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Entries != null && {\n Entries: serializeAws_restJson1BatchPutGeofenceRequestEntryList(input.Entries, context),\n })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1BatchUpdateDevicePositionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/tracking/v0/trackers/{TrackerName}/positions\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Updates != null && { Updates: serializeAws_restJson1DevicePositionUpdateList(input.Updates, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CalculateRouteCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/routes/v0/calculators/{CalculatorName}/calculate/route\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CalculatorName\", function () { return input.CalculatorName; }, \"{CalculatorName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CarModeOptions != null && {\n CarModeOptions: serializeAws_restJson1CalculateRouteCarModeOptions(input.CarModeOptions, context),\n })), (input.DepartNow != null && { DepartNow: input.DepartNow })), (input.DeparturePosition != null && {\n DeparturePosition: serializeAws_restJson1Position(input.DeparturePosition, context),\n })), (input.DepartureTime != null && { DepartureTime: input.DepartureTime.toISOString().split(\".\")[0] + \"Z\" })), (input.DestinationPosition != null && {\n DestinationPosition: serializeAws_restJson1Position(input.DestinationPosition, context),\n })), (input.DistanceUnit != null && { DistanceUnit: input.DistanceUnit })), (input.IncludeLegGeometry != null && { IncludeLegGeometry: input.IncludeLegGeometry })), (input.TravelMode != null && { TravelMode: input.TravelMode })), (input.TruckModeOptions != null && {\n TruckModeOptions: serializeAws_restJson1CalculateRouteTruckModeOptions(input.TruckModeOptions, context),\n })), (input.WaypointPositions != null && {\n WaypointPositions: serializeAws_restJson1WaypointPositionList(input.WaypointPositions, context),\n })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"routes.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CalculateRouteMatrixCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/routes/v0/calculators/{CalculatorName}/calculate/route-matrix\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CalculatorName\", function () { return input.CalculatorName; }, \"{CalculatorName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CarModeOptions != null && {\n CarModeOptions: serializeAws_restJson1CalculateRouteCarModeOptions(input.CarModeOptions, context),\n })), (input.DepartNow != null && { DepartNow: input.DepartNow })), (input.DeparturePositions != null && {\n DeparturePositions: serializeAws_restJson1PositionList(input.DeparturePositions, context),\n })), (input.DepartureTime != null && { DepartureTime: input.DepartureTime.toISOString().split(\".\")[0] + \"Z\" })), (input.DestinationPositions != null && {\n DestinationPositions: serializeAws_restJson1PositionList(input.DestinationPositions, context),\n })), (input.DistanceUnit != null && { DistanceUnit: input.DistanceUnit })), (input.TravelMode != null && { TravelMode: input.TravelMode })), (input.TruckModeOptions != null && {\n TruckModeOptions: serializeAws_restJson1CalculateRouteTruckModeOptions(input.TruckModeOptions, context),\n })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"routes.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateGeofenceCollectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/geofencing/v0/collections\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionName != null && { CollectionName: input.CollectionName })), (input.Description != null && { Description: input.Description })), (input.KmsKeyId != null && { KmsKeyId: input.KmsKeyId })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })), (input.PricingPlanDataSource != null && { PricingPlanDataSource: input.PricingPlanDataSource })), (input.Tags != null && { Tags: serializeAws_restJson1TagMap(input.Tags, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateMapCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/maps/v0/maps\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Configuration != null && {\n Configuration: serializeAws_restJson1MapConfiguration(input.Configuration, context),\n })), (input.Description != null && { Description: input.Description })), (input.MapName != null && { MapName: input.MapName })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })), (input.Tags != null && { Tags: serializeAws_restJson1TagMap(input.Tags, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"maps.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreatePlaceIndexCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/places/v0/indexes\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DataSource != null && { DataSource: input.DataSource })), (input.DataSourceConfiguration != null && {\n DataSourceConfiguration: serializeAws_restJson1DataSourceConfiguration(input.DataSourceConfiguration, context),\n })), (input.Description != null && { Description: input.Description })), (input.IndexName != null && { IndexName: input.IndexName })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })), (input.Tags != null && { Tags: serializeAws_restJson1TagMap(input.Tags, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"places.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateRouteCalculatorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/routes/v0/calculators\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CalculatorName != null && { CalculatorName: input.CalculatorName })), (input.DataSource != null && { DataSource: input.DataSource })), (input.Description != null && { Description: input.Description })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })), (input.Tags != null && { Tags: serializeAws_restJson1TagMap(input.Tags, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"routes.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateTrackerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/tracking/v0/trackers\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Description != null && { Description: input.Description })), (input.KmsKeyId != null && { KmsKeyId: input.KmsKeyId })), (input.PositionFiltering != null && { PositionFiltering: input.PositionFiltering })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })), (input.PricingPlanDataSource != null && { PricingPlanDataSource: input.PricingPlanDataSource })), (input.Tags != null && { Tags: serializeAws_restJson1TagMap(input.Tags, context) })), (input.TrackerName != null && { TrackerName: input.TrackerName })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteGeofenceCollectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/geofencing/v0/collections/{CollectionName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CollectionName\", function () { return input.CollectionName; }, \"{CollectionName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteMapCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/maps/v0/maps/{MapName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"MapName\", function () { return input.MapName; }, \"{MapName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"maps.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeletePlaceIndexCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/places/v0/indexes/{IndexName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"IndexName\", function () { return input.IndexName; }, \"{IndexName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"places.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteRouteCalculatorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/routes/v0/calculators/{CalculatorName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CalculatorName\", function () { return input.CalculatorName; }, \"{CalculatorName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"routes.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteTrackerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/tracking/v0/trackers/{TrackerName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DescribeGeofenceCollectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/geofencing/v0/collections/{CollectionName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CollectionName\", function () { return input.CollectionName; }, \"{CollectionName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DescribeMapCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/maps/v0/maps/{MapName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"MapName\", function () { return input.MapName; }, \"{MapName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"maps.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DescribePlaceIndexCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/places/v0/indexes/{IndexName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"IndexName\", function () { return input.IndexName; }, \"{IndexName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"places.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DescribeRouteCalculatorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/routes/v0/calculators/{CalculatorName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CalculatorName\", function () { return input.CalculatorName; }, \"{CalculatorName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"routes.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DescribeTrackerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/tracking/v0/trackers/{TrackerName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DisassociateTrackerConsumerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/tracking/v0/trackers/{TrackerName}/consumers/{ConsumerArn}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"ConsumerArn\", function () { return input.ConsumerArn; }, \"{ConsumerArn}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetDevicePositionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/tracking/v0/trackers/{TrackerName}/devices/{DeviceId}/positions/latest\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"DeviceId\", function () { return input.DeviceId; }, \"{DeviceId}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetDevicePositionHistoryCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/tracking/v0/trackers/{TrackerName}/devices/{DeviceId}/list-positions\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"DeviceId\", function () { return input.DeviceId; }, \"{DeviceId}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndTimeExclusive != null && {\n EndTimeExclusive: input.EndTimeExclusive.toISOString().split(\".\")[0] + \"Z\",\n })), (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })), (input.StartTimeInclusive != null && {\n StartTimeInclusive: input.StartTimeInclusive.toISOString().split(\".\")[0] + \"Z\",\n })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetGeofenceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/geofencing/v0/collections/{CollectionName}/geofences/{GeofenceId}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CollectionName\", function () { return input.CollectionName; }, \"{CollectionName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"GeofenceId\", function () { return input.GeofenceId; }, \"{GeofenceId}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetMapGlyphsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/maps/v0/maps/{MapName}/glyphs/{FontStack}/{FontUnicodeRange}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"MapName\", function () { return input.MapName; }, \"{MapName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"FontStack\", function () { return input.FontStack; }, \"{FontStack}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"FontUnicodeRange\", function () { return input.FontUnicodeRange; }, \"{FontUnicodeRange}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"maps.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetMapSpritesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/maps/v0/maps/{MapName}/sprites/{FileName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"MapName\", function () { return input.MapName; }, \"{MapName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"FileName\", function () { return input.FileName; }, \"{FileName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"maps.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetMapStyleDescriptorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/maps/v0/maps/{MapName}/style-descriptor\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"MapName\", function () { return input.MapName; }, \"{MapName}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"maps.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetMapTileCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/maps/v0/maps/{MapName}/tiles/{Z}/{X}/{Y}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"MapName\", function () { return input.MapName; }, \"{MapName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"Z\", function () { return input.Z; }, \"{Z}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"X\", function () { return input.X; }, \"{X}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"Y\", function () { return input.Y; }, \"{Y}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"maps.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetPlaceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, query, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/places/v0/indexes/{IndexName}/places/{PlaceId}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"IndexName\", function () { return input.IndexName; }, \"{IndexName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"PlaceId\", function () { return input.PlaceId; }, \"{PlaceId}\", false);\n query = map({\n language: [, input.Language],\n });\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"places.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListDevicePositionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/tracking/v0/trackers/{TrackerName}/list-positions\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListGeofenceCollectionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/geofencing/v0/list-collections\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListGeofencesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/geofencing/v0/collections/{CollectionName}/list-geofences\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CollectionName\", function () { return input.CollectionName; }, \"{CollectionName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListMapsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/maps/v0/list-maps\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"maps.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListPlaceIndexesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/places/v0/list-indexes\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"places.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListRouteCalculatorsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/routes/v0/list-calculators\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"routes.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListTagsForResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/tags/{ResourceArn}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"ResourceArn\", function () { return input.ResourceArn; }, \"{ResourceArn}\", false);\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"metadata.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListTrackerConsumersCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/tracking/v0/trackers/{TrackerName}/list-consumers\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListTrackersCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/tracking/v0/list-trackers\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PutGeofenceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/geofencing/v0/collections/{CollectionName}/geofences/{GeofenceId}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CollectionName\", function () { return input.CollectionName; }, \"{CollectionName}\", false);\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"GeofenceId\", function () { return input.GeofenceId; }, \"{GeofenceId}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Geometry != null && { Geometry: serializeAws_restJson1GeofenceGeometry(input.Geometry, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1SearchPlaceIndexForPositionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/places/v0/indexes/{IndexName}/search/position\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"IndexName\", function () { return input.IndexName; }, \"{IndexName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Language != null && { Language: input.Language })), (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.Position != null && { Position: serializeAws_restJson1Position(input.Position, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"places.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1SearchPlaceIndexForSuggestionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/places/v0/indexes/{IndexName}/search/suggestions\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"IndexName\", function () { return input.IndexName; }, \"{IndexName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BiasPosition != null && { BiasPosition: serializeAws_restJson1Position(input.BiasPosition, context) })), (input.FilterBBox != null && { FilterBBox: serializeAws_restJson1BoundingBox(input.FilterBBox, context) })), (input.FilterCountries != null && {\n FilterCountries: serializeAws_restJson1CountryCodeList(input.FilterCountries, context),\n })), (input.Language != null && { Language: input.Language })), (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.Text != null && { Text: input.Text })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"places.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1SearchPlaceIndexForTextCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/places/v0/indexes/{IndexName}/search/text\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"IndexName\", function () { return input.IndexName; }, \"{IndexName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BiasPosition != null && { BiasPosition: serializeAws_restJson1Position(input.BiasPosition, context) })), (input.FilterBBox != null && { FilterBBox: serializeAws_restJson1BoundingBox(input.FilterBBox, context) })), (input.FilterCountries != null && {\n FilterCountries: serializeAws_restJson1CountryCodeList(input.FilterCountries, context),\n })), (input.Language != null && { Language: input.Language })), (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.Text != null && { Text: input.Text })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"places.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1TagResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/tags/{ResourceArn}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"ResourceArn\", function () { return input.ResourceArn; }, \"{ResourceArn}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Tags != null && { Tags: serializeAws_restJson1TagMap(input.Tags, context) })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"metadata.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UntagResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, query, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {};\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/tags/{ResourceArn}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"ResourceArn\", function () { return input.ResourceArn; }, \"{ResourceArn}\", false);\n query = map({\n tagKeys: [function () { return input.TagKeys !== void 0; }, function () { return (input.TagKeys || []).map(function (_entry) { return _entry; }); }],\n });\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"metadata.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateGeofenceCollectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") +\n \"/geofencing/v0/collections/{CollectionName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CollectionName\", function () { return input.CollectionName; }, \"{CollectionName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Description != null && { Description: input.Description })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })), (input.PricingPlanDataSource != null && { PricingPlanDataSource: input.PricingPlanDataSource })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"geofencing.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"PATCH\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateMapCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/maps/v0/maps/{MapName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"MapName\", function () { return input.MapName; }, \"{MapName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Description != null && { Description: input.Description })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"maps.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"PATCH\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdatePlaceIndexCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/places/v0/indexes/{IndexName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"IndexName\", function () { return input.IndexName; }, \"{IndexName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DataSourceConfiguration != null && {\n DataSourceConfiguration: serializeAws_restJson1DataSourceConfiguration(input.DataSourceConfiguration, context),\n })), (input.Description != null && { Description: input.Description })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"places.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"PATCH\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateRouteCalculatorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/routes/v0/calculators/{CalculatorName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"CalculatorName\", function () { return input.CalculatorName; }, \"{CalculatorName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Description != null && { Description: input.Description })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"routes.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"PATCH\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateTrackerCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body, resolvedHostname;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port, basePath = _a.path;\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"\".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith(\"/\")) ? basePath.slice(0, -1) : basePath || \"\") + \"/tracking/v0/trackers/{TrackerName}\";\n resolvedPath = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"resolvedPath\"])(resolvedPath, input, \"TrackerName\", function () { return input.TrackerName; }, \"{TrackerName}\", false);\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Description != null && { Description: input.Description })), (input.PositionFiltering != null && { PositionFiltering: input.PositionFiltering })), (input.PricingPlan != null && { PricingPlan: input.PricingPlan })), (input.PricingPlanDataSource != null && { PricingPlanDataSource: input.PricingPlanDataSource })));\n return [4, context.endpoint()];\n case 2:\n resolvedHostname = (_c.sent()).hostname;\n if (context.disableHostPrefix !== true) {\n resolvedHostname = \"tracking.\" + resolvedHostname;\n if (!Object(_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"isValidHostname\"])(resolvedHostname)) {\n throw new Error(\"ValidationError: prefixed hostname must be hostname compatible.\");\n }\n }\n return [2, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: resolvedHostname,\n port: port,\n method: \"PATCH\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar deserializeAws_restJson1AssociateTrackerConsumerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1AssociateTrackerConsumerCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n return [4, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1AssociateTrackerConsumerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"ConflictException\": return [3, 4];\n case \"com.amazonaws.location#ConflictException\": return [3, 4];\n case \"InternalServerException\": return [3, 6];\n case \"com.amazonaws.location#InternalServerException\": return [3, 6];\n case \"ResourceNotFoundException\": return [3, 8];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 8];\n case \"ServiceQuotaExceededException\": return [3, 10];\n case \"com.amazonaws.location#ServiceQuotaExceededException\": return [3, 10];\n case \"ThrottlingException\": return [3, 12];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 12];\n case \"ValidationException\": return [3, 14];\n case \"com.amazonaws.location#ValidationException\": return [3, 14];\n }\n return [3, 16];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ServiceQuotaExceededExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13: throw _d.sent();\n case 14: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 15: throw _d.sent();\n case 16:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 17;\n case 17: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchDeleteDevicePositionHistoryCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1BatchDeleteDevicePositionHistoryCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Errors != null) {\n contents.Errors = deserializeAws_restJson1BatchDeleteDevicePositionHistoryErrorList(data.Errors, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchDeleteDevicePositionHistoryCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchDeleteGeofenceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1BatchDeleteGeofenceCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Errors != null) {\n contents.Errors = deserializeAws_restJson1BatchDeleteGeofenceErrorList(data.Errors, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchDeleteGeofenceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchEvaluateGeofencesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1BatchEvaluateGeofencesCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Errors != null) {\n contents.Errors = deserializeAws_restJson1BatchEvaluateGeofencesErrorList(data.Errors, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchEvaluateGeofencesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchGetDevicePositionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1BatchGetDevicePositionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.DevicePositions != null) {\n contents.DevicePositions = deserializeAws_restJson1DevicePositionList(data.DevicePositions, context);\n }\n if (data.Errors != null) {\n contents.Errors = deserializeAws_restJson1BatchGetDevicePositionErrorList(data.Errors, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchGetDevicePositionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchPutGeofenceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1BatchPutGeofenceCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Errors != null) {\n contents.Errors = deserializeAws_restJson1BatchPutGeofenceErrorList(data.Errors, context);\n }\n if (data.Successes != null) {\n contents.Successes = deserializeAws_restJson1BatchPutGeofenceSuccessList(data.Successes, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchPutGeofenceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchUpdateDevicePositionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1BatchUpdateDevicePositionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Errors != null) {\n contents.Errors = deserializeAws_restJson1BatchUpdateDevicePositionErrorList(data.Errors, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1BatchUpdateDevicePositionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1CalculateRouteCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1CalculateRouteCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Legs != null) {\n contents.Legs = deserializeAws_restJson1LegList(data.Legs, context);\n }\n if (data.Summary != null) {\n contents.Summary = deserializeAws_restJson1CalculateRouteSummary(data.Summary, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1CalculateRouteCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1CalculateRouteMatrixCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1CalculateRouteMatrixCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.RouteMatrix != null) {\n contents.RouteMatrix = deserializeAws_restJson1RouteMatrix(data.RouteMatrix, context);\n }\n if (data.SnappedDeparturePositions != null) {\n contents.SnappedDeparturePositions = deserializeAws_restJson1PositionList(data.SnappedDeparturePositions, context);\n }\n if (data.SnappedDestinationPositions != null) {\n contents.SnappedDestinationPositions = deserializeAws_restJson1PositionList(data.SnappedDestinationPositions, context);\n }\n if (data.Summary != null) {\n contents.Summary = deserializeAws_restJson1CalculateRouteMatrixSummary(data.Summary, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1CalculateRouteMatrixCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateGeofenceCollectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1CreateGeofenceCollectionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CollectionArn != null) {\n contents.CollectionArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CollectionArn);\n }\n if (data.CollectionName != null) {\n contents.CollectionName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CollectionName);\n }\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateGeofenceCollectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"ConflictException\": return [3, 4];\n case \"com.amazonaws.location#ConflictException\": return [3, 4];\n case \"InternalServerException\": return [3, 6];\n case \"com.amazonaws.location#InternalServerException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateMapCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1CreateMapCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.MapArn != null) {\n contents.MapArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.MapArn);\n }\n if (data.MapName != null) {\n contents.MapName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.MapName);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateMapCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"ConflictException\": return [3, 4];\n case \"com.amazonaws.location#ConflictException\": return [3, 4];\n case \"InternalServerException\": return [3, 6];\n case \"com.amazonaws.location#InternalServerException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1CreatePlaceIndexCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1CreatePlaceIndexCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.IndexArn != null) {\n contents.IndexArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.IndexArn);\n }\n if (data.IndexName != null) {\n contents.IndexName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.IndexName);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1CreatePlaceIndexCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"ConflictException\": return [3, 4];\n case \"com.amazonaws.location#ConflictException\": return [3, 4];\n case \"InternalServerException\": return [3, 6];\n case \"com.amazonaws.location#InternalServerException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateRouteCalculatorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1CreateRouteCalculatorCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CalculatorArn != null) {\n contents.CalculatorArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CalculatorArn);\n }\n if (data.CalculatorName != null) {\n contents.CalculatorName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CalculatorName);\n }\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateRouteCalculatorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"ConflictException\": return [3, 4];\n case \"com.amazonaws.location#ConflictException\": return [3, 4];\n case \"InternalServerException\": return [3, 6];\n case \"com.amazonaws.location#InternalServerException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateTrackerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1CreateTrackerCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.TrackerArn != null) {\n contents.TrackerArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.TrackerArn);\n }\n if (data.TrackerName != null) {\n contents.TrackerName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.TrackerName);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateTrackerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"ConflictException\": return [3, 4];\n case \"com.amazonaws.location#ConflictException\": return [3, 4];\n case \"InternalServerException\": return [3, 6];\n case \"com.amazonaws.location#InternalServerException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteGeofenceCollectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DeleteGeofenceCollectionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n return [4, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteGeofenceCollectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteMapCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DeleteMapCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n return [4, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteMapCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DeletePlaceIndexCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DeletePlaceIndexCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n return [4, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DeletePlaceIndexCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteRouteCalculatorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DeleteRouteCalculatorCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n return [4, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteRouteCalculatorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteTrackerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DeleteTrackerCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n return [4, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteTrackerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeGeofenceCollectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DescribeGeofenceCollectionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CollectionArn != null) {\n contents.CollectionArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CollectionArn);\n }\n if (data.CollectionName != null) {\n contents.CollectionName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CollectionName);\n }\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.Description != null) {\n contents.Description = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.Description);\n }\n if (data.KmsKeyId != null) {\n contents.KmsKeyId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.KmsKeyId);\n }\n if (data.PricingPlan != null) {\n contents.PricingPlan = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.PricingPlan);\n }\n if (data.PricingPlanDataSource != null) {\n contents.PricingPlanDataSource = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.PricingPlanDataSource);\n }\n if (data.Tags != null) {\n contents.Tags = deserializeAws_restJson1TagMap(data.Tags, context);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeGeofenceCollectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeMapCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DescribeMapCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Configuration != null) {\n contents.Configuration = deserializeAws_restJson1MapConfiguration(data.Configuration, context);\n }\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.DataSource != null) {\n contents.DataSource = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.DataSource);\n }\n if (data.Description != null) {\n contents.Description = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.Description);\n }\n if (data.MapArn != null) {\n contents.MapArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.MapArn);\n }\n if (data.MapName != null) {\n contents.MapName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.MapName);\n }\n if (data.PricingPlan != null) {\n contents.PricingPlan = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.PricingPlan);\n }\n if (data.Tags != null) {\n contents.Tags = deserializeAws_restJson1TagMap(data.Tags, context);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeMapCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribePlaceIndexCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DescribePlaceIndexCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.DataSource != null) {\n contents.DataSource = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.DataSource);\n }\n if (data.DataSourceConfiguration != null) {\n contents.DataSourceConfiguration = deserializeAws_restJson1DataSourceConfiguration(data.DataSourceConfiguration, context);\n }\n if (data.Description != null) {\n contents.Description = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.Description);\n }\n if (data.IndexArn != null) {\n contents.IndexArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.IndexArn);\n }\n if (data.IndexName != null) {\n contents.IndexName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.IndexName);\n }\n if (data.PricingPlan != null) {\n contents.PricingPlan = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.PricingPlan);\n }\n if (data.Tags != null) {\n contents.Tags = deserializeAws_restJson1TagMap(data.Tags, context);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribePlaceIndexCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeRouteCalculatorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DescribeRouteCalculatorCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CalculatorArn != null) {\n contents.CalculatorArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CalculatorArn);\n }\n if (data.CalculatorName != null) {\n contents.CalculatorName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CalculatorName);\n }\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.DataSource != null) {\n contents.DataSource = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.DataSource);\n }\n if (data.Description != null) {\n contents.Description = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.Description);\n }\n if (data.PricingPlan != null) {\n contents.PricingPlan = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.PricingPlan);\n }\n if (data.Tags != null) {\n contents.Tags = deserializeAws_restJson1TagMap(data.Tags, context);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeRouteCalculatorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeTrackerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DescribeTrackerCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.Description != null) {\n contents.Description = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.Description);\n }\n if (data.KmsKeyId != null) {\n contents.KmsKeyId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.KmsKeyId);\n }\n if (data.PositionFiltering != null) {\n contents.PositionFiltering = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.PositionFiltering);\n }\n if (data.PricingPlan != null) {\n contents.PricingPlan = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.PricingPlan);\n }\n if (data.PricingPlanDataSource != null) {\n contents.PricingPlanDataSource = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.PricingPlanDataSource);\n }\n if (data.Tags != null) {\n contents.Tags = deserializeAws_restJson1TagMap(data.Tags, context);\n }\n if (data.TrackerArn != null) {\n contents.TrackerArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.TrackerArn);\n }\n if (data.TrackerName != null) {\n contents.TrackerName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.TrackerName);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeTrackerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1DisassociateTrackerConsumerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1DisassociateTrackerConsumerCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n return [4, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1DisassociateTrackerConsumerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetDevicePositionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetDevicePositionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Accuracy != null) {\n contents.Accuracy = deserializeAws_restJson1PositionalAccuracy(data.Accuracy, context);\n }\n if (data.DeviceId != null) {\n contents.DeviceId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.DeviceId);\n }\n if (data.Position != null) {\n contents.Position = deserializeAws_restJson1Position(data.Position, context);\n }\n if (data.PositionProperties != null) {\n contents.PositionProperties = deserializeAws_restJson1PropertyMap(data.PositionProperties, context);\n }\n if (data.ReceivedTime != null) {\n contents.ReceivedTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.ReceivedTime));\n }\n if (data.SampleTime != null) {\n contents.SampleTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.SampleTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetDevicePositionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetDevicePositionHistoryCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetDevicePositionHistoryCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.DevicePositions != null) {\n contents.DevicePositions = deserializeAws_restJson1DevicePositionList(data.DevicePositions, context);\n }\n if (data.NextToken != null) {\n contents.NextToken = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.NextToken);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetDevicePositionHistoryCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetGeofenceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetGeofenceCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.GeofenceId != null) {\n contents.GeofenceId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.GeofenceId);\n }\n if (data.Geometry != null) {\n contents.Geometry = deserializeAws_restJson1GeofenceGeometry(data.Geometry, context);\n }\n if (data.Status != null) {\n contents.Status = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.Status);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetGeofenceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetMapGlyphsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetMapGlyphsCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n ContentType: [, output.headers[\"content-type\"]],\n });\n return [4, collectBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.Blob = data;\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetMapGlyphsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetMapSpritesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetMapSpritesCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n ContentType: [, output.headers[\"content-type\"]],\n });\n return [4, collectBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.Blob = data;\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetMapSpritesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetMapStyleDescriptorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetMapStyleDescriptorCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n ContentType: [, output.headers[\"content-type\"]],\n });\n return [4, collectBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.Blob = data;\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetMapStyleDescriptorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetMapTileCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetMapTileCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n ContentType: [, output.headers[\"content-type\"]],\n });\n return [4, collectBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.Blob = data;\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetMapTileCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1GetPlaceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1GetPlaceCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Place != null) {\n contents.Place = deserializeAws_restJson1Place(data.Place, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1GetPlaceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1ListDevicePositionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1ListDevicePositionsCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Entries != null) {\n contents.Entries = deserializeAws_restJson1ListDevicePositionsResponseEntryList(data.Entries, context);\n }\n if (data.NextToken != null) {\n contents.NextToken = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.NextToken);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ListDevicePositionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ThrottlingException\": return [3, 6];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 6];\n case \"ValidationException\": return [3, 8];\n case \"com.amazonaws.location#ValidationException\": return [3, 8];\n }\n return [3, 10];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 11;\n case 11: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1ListGeofenceCollectionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1ListGeofenceCollectionsCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Entries != null) {\n contents.Entries = deserializeAws_restJson1ListGeofenceCollectionsResponseEntryList(data.Entries, context);\n }\n if (data.NextToken != null) {\n contents.NextToken = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.NextToken);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ListGeofenceCollectionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ThrottlingException\": return [3, 6];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 6];\n case \"ValidationException\": return [3, 8];\n case \"com.amazonaws.location#ValidationException\": return [3, 8];\n }\n return [3, 10];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 11;\n case 11: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1ListGeofencesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1ListGeofencesCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Entries != null) {\n contents.Entries = deserializeAws_restJson1ListGeofenceResponseEntryList(data.Entries, context);\n }\n if (data.NextToken != null) {\n contents.NextToken = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.NextToken);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ListGeofencesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1ListMapsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1ListMapsCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Entries != null) {\n contents.Entries = deserializeAws_restJson1ListMapsResponseEntryList(data.Entries, context);\n }\n if (data.NextToken != null) {\n contents.NextToken = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.NextToken);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ListMapsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ThrottlingException\": return [3, 6];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 6];\n case \"ValidationException\": return [3, 8];\n case \"com.amazonaws.location#ValidationException\": return [3, 8];\n }\n return [3, 10];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 11;\n case 11: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1ListPlaceIndexesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1ListPlaceIndexesCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Entries != null) {\n contents.Entries = deserializeAws_restJson1ListPlaceIndexesResponseEntryList(data.Entries, context);\n }\n if (data.NextToken != null) {\n contents.NextToken = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.NextToken);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ListPlaceIndexesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ThrottlingException\": return [3, 6];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 6];\n case \"ValidationException\": return [3, 8];\n case \"com.amazonaws.location#ValidationException\": return [3, 8];\n }\n return [3, 10];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 11;\n case 11: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1ListRouteCalculatorsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1ListRouteCalculatorsCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Entries != null) {\n contents.Entries = deserializeAws_restJson1ListRouteCalculatorsResponseEntryList(data.Entries, context);\n }\n if (data.NextToken != null) {\n contents.NextToken = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.NextToken);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ListRouteCalculatorsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ThrottlingException\": return [3, 6];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 6];\n case \"ValidationException\": return [3, 8];\n case \"com.amazonaws.location#ValidationException\": return [3, 8];\n }\n return [3, 10];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 11;\n case 11: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTagsForResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1ListTagsForResourceCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Tags != null) {\n contents.Tags = deserializeAws_restJson1TagMap(data.Tags, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTagsForResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTrackerConsumersCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1ListTrackerConsumersCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.ConsumerArns != null) {\n contents.ConsumerArns = deserializeAws_restJson1ArnList(data.ConsumerArns, context);\n }\n if (data.NextToken != null) {\n contents.NextToken = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.NextToken);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTrackerConsumersCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTrackersCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1ListTrackersCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Entries != null) {\n contents.Entries = deserializeAws_restJson1ListTrackersResponseEntryList(data.Entries, context);\n }\n if (data.NextToken != null) {\n contents.NextToken = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.NextToken);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTrackersCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ThrottlingException\": return [3, 6];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 6];\n case \"ValidationException\": return [3, 8];\n case \"com.amazonaws.location#ValidationException\": return [3, 8];\n }\n return [3, 10];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 11;\n case 11: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1PutGeofenceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1PutGeofenceCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CreateTime != null) {\n contents.CreateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.CreateTime));\n }\n if (data.GeofenceId != null) {\n contents.GeofenceId = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.GeofenceId);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1PutGeofenceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"ConflictException\": return [3, 4];\n case \"com.amazonaws.location#ConflictException\": return [3, 4];\n case \"InternalServerException\": return [3, 6];\n case \"com.amazonaws.location#InternalServerException\": return [3, 6];\n case \"ResourceNotFoundException\": return [3, 8];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 8];\n case \"ThrottlingException\": return [3, 10];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 10];\n case \"ValidationException\": return [3, 12];\n case \"com.amazonaws.location#ValidationException\": return [3, 12];\n }\n return [3, 14];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 13: throw _d.sent();\n case 14:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 15;\n case 15: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1SearchPlaceIndexForPositionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1SearchPlaceIndexForPositionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Results != null) {\n contents.Results = deserializeAws_restJson1SearchForPositionResultList(data.Results, context);\n }\n if (data.Summary != null) {\n contents.Summary = deserializeAws_restJson1SearchPlaceIndexForPositionSummary(data.Summary, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1SearchPlaceIndexForPositionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1SearchPlaceIndexForSuggestionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1SearchPlaceIndexForSuggestionsCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Results != null) {\n contents.Results = deserializeAws_restJson1SearchForSuggestionsResultList(data.Results, context);\n }\n if (data.Summary != null) {\n contents.Summary = deserializeAws_restJson1SearchPlaceIndexForSuggestionsSummary(data.Summary, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1SearchPlaceIndexForSuggestionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1SearchPlaceIndexForTextCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1SearchPlaceIndexForTextCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.Results != null) {\n contents.Results = deserializeAws_restJson1SearchForTextResultList(data.Results, context);\n }\n if (data.Summary != null) {\n contents.Summary = deserializeAws_restJson1SearchPlaceIndexForTextSummary(data.Summary, context);\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1SearchPlaceIndexForTextCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1TagResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1TagResourceCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n return [4, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1TagResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1UntagResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1UntagResourceCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n return [4, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1UntagResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateGeofenceCollectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1UpdateGeofenceCollectionCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CollectionArn != null) {\n contents.CollectionArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CollectionArn);\n }\n if (data.CollectionName != null) {\n contents.CollectionName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CollectionName);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateGeofenceCollectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateMapCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1UpdateMapCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.MapArn != null) {\n contents.MapArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.MapArn);\n }\n if (data.MapName != null) {\n contents.MapName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.MapName);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateMapCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdatePlaceIndexCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1UpdatePlaceIndexCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.IndexArn != null) {\n contents.IndexArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.IndexArn);\n }\n if (data.IndexName != null) {\n contents.IndexName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.IndexName);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdatePlaceIndexCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateRouteCalculatorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1UpdateRouteCalculatorCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.CalculatorArn != null) {\n contents.CalculatorArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CalculatorArn);\n }\n if (data.CalculatorName != null) {\n contents.CalculatorName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.CalculatorName);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateRouteCalculatorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateTrackerCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2, deserializeAws_restJson1UpdateTrackerCommandError(output, context)];\n }\n contents = map({\n $metadata: deserializeMetadata(output),\n });\n _a = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"];\n _b = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectObject\"];\n return [4, parseBody(output.body, context)];\n case 1:\n data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), \"body\"]);\n if (data.TrackerArn != null) {\n contents.TrackerArn = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.TrackerArn);\n }\n if (data.TrackerName != null) {\n contents.TrackerName = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.TrackerName);\n }\n if (data.UpdateTime != null) {\n contents.UpdateTime = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(data.UpdateTime));\n }\n return [2, contents];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateTrackerCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, errorCode, _b, parsedBody;\n var _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _c = {};\n return [4, parseErrorBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3, 2];\n case \"com.amazonaws.location#AccessDeniedException\": return [3, 2];\n case \"InternalServerException\": return [3, 4];\n case \"com.amazonaws.location#InternalServerException\": return [3, 4];\n case \"ResourceNotFoundException\": return [3, 6];\n case \"com.amazonaws.location#ResourceNotFoundException\": return [3, 6];\n case \"ThrottlingException\": return [3, 8];\n case \"com.amazonaws.location#ThrottlingException\": return [3, 8];\n case \"ValidationException\": return [3, 10];\n case \"com.amazonaws.location#ValidationException\": return [3, 10];\n }\n return [3, 12];\n case 2: return [4, deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3: throw _d.sent();\n case 4: return [4, deserializeAws_restJson1InternalServerExceptionResponse(parsedOutput, context)];\n case 5: throw _d.sent();\n case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7: throw _d.sent();\n case 8: return [4, deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context)];\n case 9: throw _d.sent();\n case 10: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];\n case 11: throw _d.sent();\n case 12:\n parsedBody = parsedOutput.body;\n Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"throwDefaultError\"])({\n output: output,\n parsedBody: parsedBody,\n exceptionCtor: _models_LocationServiceException__WEBPACK_IMPORTED_MODULE_3__[\"LocationServiceException\"],\n errorCode: errorCode,\n });\n _d.label = 13;\n case 13: return [2];\n }\n });\n}); };\nvar map = _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"map\"];\nvar deserializeAws_restJson1AccessDeniedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"AccessDeniedException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ConflictExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ConflictException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1InternalServerExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"InternalServerException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ResourceNotFoundException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ServiceQuotaExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ServiceQuotaExceededException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ThrottlingExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ThrottlingException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar deserializeAws_restJson1ValidationExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data, exception;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = map({});\n data = parsedOutput.body;\n if (data.fieldList != null) {\n contents.FieldList = deserializeAws_restJson1ValidationExceptionFieldList(data.fieldList, context);\n }\n if (data.message != null) {\n contents.Message = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.message);\n }\n if (data.reason != null) {\n contents.Reason = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(data.reason);\n }\n exception = new _models_models_0__WEBPACK_IMPORTED_MODULE_4__[\"ValidationException\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(parsedOutput) }, contents));\n return [2, Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"decorateServiceException\"])(exception, parsedOutput.body)];\n });\n}); };\nvar serializeAws_restJson1BatchPutGeofenceRequestEntry = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.GeofenceId != null && { GeofenceId: input.GeofenceId })), (input.Geometry != null && { Geometry: serializeAws_restJson1GeofenceGeometry(input.Geometry, context) }));\n};\nvar serializeAws_restJson1BatchPutGeofenceRequestEntryList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1BatchPutGeofenceRequestEntry(entry, context);\n });\n};\nvar serializeAws_restJson1BoundingBox = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"serializeFloat\"])(entry);\n });\n};\nvar serializeAws_restJson1CalculateRouteCarModeOptions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AvoidFerries != null && { AvoidFerries: input.AvoidFerries })), (input.AvoidTolls != null && { AvoidTolls: input.AvoidTolls }));\n};\nvar serializeAws_restJson1CalculateRouteTruckModeOptions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AvoidFerries != null && { AvoidFerries: input.AvoidFerries })), (input.AvoidTolls != null && { AvoidTolls: input.AvoidTolls })), (input.Dimensions != null && { Dimensions: serializeAws_restJson1TruckDimensions(input.Dimensions, context) })), (input.Weight != null && { Weight: serializeAws_restJson1TruckWeight(input.Weight, context) }));\n};\nvar serializeAws_restJson1Circle = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Center != null && { Center: serializeAws_restJson1Position(input.Center, context) })), (input.Radius != null && { Radius: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"serializeFloat\"])(input.Radius) }));\n};\nvar serializeAws_restJson1CountryCodeList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return entry;\n });\n};\nvar serializeAws_restJson1DataSourceConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IntendedUse != null && { IntendedUse: input.IntendedUse }));\n};\nvar serializeAws_restJson1DeviceIdsList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return entry;\n });\n};\nvar serializeAws_restJson1DevicePositionUpdate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Accuracy != null && { Accuracy: serializeAws_restJson1PositionalAccuracy(input.Accuracy, context) })), (input.DeviceId != null && { DeviceId: input.DeviceId })), (input.Position != null && { Position: serializeAws_restJson1Position(input.Position, context) })), (input.PositionProperties != null && {\n PositionProperties: serializeAws_restJson1PropertyMap(input.PositionProperties, context),\n })), (input.SampleTime != null && { SampleTime: input.SampleTime.toISOString().split(\".\")[0] + \"Z\" }));\n};\nvar serializeAws_restJson1DevicePositionUpdateList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1DevicePositionUpdate(entry, context);\n });\n};\nvar serializeAws_restJson1GeofenceGeometry = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Circle != null && { Circle: serializeAws_restJson1Circle(input.Circle, context) })), (input.Polygon != null && { Polygon: serializeAws_restJson1LinearRings(input.Polygon, context) }));\n};\nvar serializeAws_restJson1IdList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return entry;\n });\n};\nvar serializeAws_restJson1LinearRing = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1Position(entry, context);\n });\n};\nvar serializeAws_restJson1LinearRings = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1LinearRing(entry, context);\n });\n};\nvar serializeAws_restJson1MapConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Style != null && { Style: input.Style }));\n};\nvar serializeAws_restJson1Position = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"serializeFloat\"])(entry);\n });\n};\nvar serializeAws_restJson1PositionalAccuracy = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Horizontal != null && { Horizontal: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"serializeFloat\"])(input.Horizontal) }));\n};\nvar serializeAws_restJson1PositionList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1Position(entry, context);\n });\n};\nvar serializeAws_restJson1PropertyMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_restJson1TagMap = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_restJson1TruckDimensions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Height != null && { Height: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"serializeFloat\"])(input.Height) })), (input.Length != null && { Length: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"serializeFloat\"])(input.Length) })), (input.Unit != null && { Unit: input.Unit })), (input.Width != null && { Width: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"serializeFloat\"])(input.Width) }));\n};\nvar serializeAws_restJson1TruckWeight = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Total != null && { Total: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"serializeFloat\"])(input.Total) })), (input.Unit != null && { Unit: input.Unit }));\n};\nvar serializeAws_restJson1WaypointPositionList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n return serializeAws_restJson1Position(entry, context);\n });\n};\nvar deserializeAws_restJson1ArnList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(entry);\n });\n return retVal;\n};\nvar deserializeAws_restJson1BatchDeleteDevicePositionHistoryError = function (output, context) {\n return {\n DeviceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DeviceId),\n Error: output.Error != null ? deserializeAws_restJson1BatchItemError(output.Error, context) : undefined,\n };\n};\nvar deserializeAws_restJson1BatchDeleteDevicePositionHistoryErrorList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1BatchDeleteDevicePositionHistoryError(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1BatchDeleteGeofenceError = function (output, context) {\n return {\n Error: output.Error != null ? deserializeAws_restJson1BatchItemError(output.Error, context) : undefined,\n GeofenceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.GeofenceId),\n };\n};\nvar deserializeAws_restJson1BatchDeleteGeofenceErrorList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1BatchDeleteGeofenceError(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1BatchEvaluateGeofencesError = function (output, context) {\n return {\n DeviceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DeviceId),\n Error: output.Error != null ? deserializeAws_restJson1BatchItemError(output.Error, context) : undefined,\n SampleTime: output.SampleTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.SampleTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1BatchEvaluateGeofencesErrorList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1BatchEvaluateGeofencesError(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1BatchGetDevicePositionError = function (output, context) {\n return {\n DeviceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DeviceId),\n Error: output.Error != null ? deserializeAws_restJson1BatchItemError(output.Error, context) : undefined,\n };\n};\nvar deserializeAws_restJson1BatchGetDevicePositionErrorList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1BatchGetDevicePositionError(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1BatchItemError = function (output, context) {\n return {\n Code: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Code),\n Message: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Message),\n };\n};\nvar deserializeAws_restJson1BatchPutGeofenceError = function (output, context) {\n return {\n Error: output.Error != null ? deserializeAws_restJson1BatchItemError(output.Error, context) : undefined,\n GeofenceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.GeofenceId),\n };\n};\nvar deserializeAws_restJson1BatchPutGeofenceErrorList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1BatchPutGeofenceError(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1BatchPutGeofenceSuccess = function (output, context) {\n return {\n CreateTime: output.CreateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.CreateTime)) : undefined,\n GeofenceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.GeofenceId),\n UpdateTime: output.UpdateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.UpdateTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1BatchPutGeofenceSuccessList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1BatchPutGeofenceSuccess(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1BatchUpdateDevicePositionError = function (output, context) {\n return {\n DeviceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DeviceId),\n Error: output.Error != null ? deserializeAws_restJson1BatchItemError(output.Error, context) : undefined,\n SampleTime: output.SampleTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.SampleTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1BatchUpdateDevicePositionErrorList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1BatchUpdateDevicePositionError(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1BoundingBox = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(entry);\n });\n return retVal;\n};\nvar deserializeAws_restJson1CalculateRouteMatrixSummary = function (output, context) {\n return {\n DataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DataSource),\n DistanceUnit: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DistanceUnit),\n ErrorCount: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.ErrorCount),\n RouteCount: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.RouteCount),\n };\n};\nvar deserializeAws_restJson1CalculateRouteSummary = function (output, context) {\n return {\n DataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DataSource),\n Distance: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.Distance),\n DistanceUnit: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DistanceUnit),\n DurationSeconds: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.DurationSeconds),\n RouteBBox: output.RouteBBox != null ? deserializeAws_restJson1BoundingBox(output.RouteBBox, context) : undefined,\n };\n};\nvar deserializeAws_restJson1Circle = function (output, context) {\n return {\n Center: output.Center != null ? deserializeAws_restJson1Position(output.Center, context) : undefined,\n Radius: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.Radius),\n };\n};\nvar deserializeAws_restJson1CountryCodeList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(entry);\n });\n return retVal;\n};\nvar deserializeAws_restJson1DataSourceConfiguration = function (output, context) {\n return {\n IntendedUse: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.IntendedUse),\n };\n};\nvar deserializeAws_restJson1DevicePosition = function (output, context) {\n return {\n Accuracy: output.Accuracy != null ? deserializeAws_restJson1PositionalAccuracy(output.Accuracy, context) : undefined,\n DeviceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DeviceId),\n Position: output.Position != null ? deserializeAws_restJson1Position(output.Position, context) : undefined,\n PositionProperties: output.PositionProperties != null\n ? deserializeAws_restJson1PropertyMap(output.PositionProperties, context)\n : undefined,\n ReceivedTime: output.ReceivedTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.ReceivedTime)) : undefined,\n SampleTime: output.SampleTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.SampleTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1DevicePositionList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1DevicePosition(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1GeofenceGeometry = function (output, context) {\n return {\n Circle: output.Circle != null ? deserializeAws_restJson1Circle(output.Circle, context) : undefined,\n Polygon: output.Polygon != null ? deserializeAws_restJson1LinearRings(output.Polygon, context) : undefined,\n };\n};\nvar deserializeAws_restJson1Leg = function (output, context) {\n return {\n Distance: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.Distance),\n DurationSeconds: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.DurationSeconds),\n EndPosition: output.EndPosition != null ? deserializeAws_restJson1Position(output.EndPosition, context) : undefined,\n Geometry: output.Geometry != null ? deserializeAws_restJson1LegGeometry(output.Geometry, context) : undefined,\n StartPosition: output.StartPosition != null ? deserializeAws_restJson1Position(output.StartPosition, context) : undefined,\n Steps: output.Steps != null ? deserializeAws_restJson1StepList(output.Steps, context) : undefined,\n };\n};\nvar deserializeAws_restJson1LegGeometry = function (output, context) {\n return {\n LineString: output.LineString != null ? deserializeAws_restJson1LineString(output.LineString, context) : undefined,\n };\n};\nvar deserializeAws_restJson1LegList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Leg(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1LinearRing = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Position(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1LinearRings = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1LinearRing(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1LineString = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Position(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ListDevicePositionsResponseEntry = function (output, context) {\n return {\n Accuracy: output.Accuracy != null ? deserializeAws_restJson1PositionalAccuracy(output.Accuracy, context) : undefined,\n DeviceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DeviceId),\n Position: output.Position != null ? deserializeAws_restJson1Position(output.Position, context) : undefined,\n PositionProperties: output.PositionProperties != null\n ? deserializeAws_restJson1PropertyMap(output.PositionProperties, context)\n : undefined,\n SampleTime: output.SampleTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.SampleTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1ListDevicePositionsResponseEntryList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ListDevicePositionsResponseEntry(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ListGeofenceCollectionsResponseEntry = function (output, context) {\n return {\n CollectionName: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.CollectionName),\n CreateTime: output.CreateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.CreateTime)) : undefined,\n Description: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Description),\n PricingPlan: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PricingPlan),\n PricingPlanDataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PricingPlanDataSource),\n UpdateTime: output.UpdateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.UpdateTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1ListGeofenceCollectionsResponseEntryList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ListGeofenceCollectionsResponseEntry(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ListGeofenceResponseEntry = function (output, context) {\n return {\n CreateTime: output.CreateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.CreateTime)) : undefined,\n GeofenceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.GeofenceId),\n Geometry: output.Geometry != null ? deserializeAws_restJson1GeofenceGeometry(output.Geometry, context) : undefined,\n Status: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Status),\n UpdateTime: output.UpdateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.UpdateTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1ListGeofenceResponseEntryList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ListGeofenceResponseEntry(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ListMapsResponseEntry = function (output, context) {\n return {\n CreateTime: output.CreateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.CreateTime)) : undefined,\n DataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DataSource),\n Description: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Description),\n MapName: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.MapName),\n PricingPlan: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PricingPlan),\n UpdateTime: output.UpdateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.UpdateTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1ListMapsResponseEntryList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ListMapsResponseEntry(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ListPlaceIndexesResponseEntry = function (output, context) {\n return {\n CreateTime: output.CreateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.CreateTime)) : undefined,\n DataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DataSource),\n Description: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Description),\n IndexName: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.IndexName),\n PricingPlan: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PricingPlan),\n UpdateTime: output.UpdateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.UpdateTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1ListPlaceIndexesResponseEntryList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ListPlaceIndexesResponseEntry(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ListRouteCalculatorsResponseEntry = function (output, context) {\n return {\n CalculatorName: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.CalculatorName),\n CreateTime: output.CreateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.CreateTime)) : undefined,\n DataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DataSource),\n Description: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Description),\n PricingPlan: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PricingPlan),\n UpdateTime: output.UpdateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.UpdateTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1ListRouteCalculatorsResponseEntryList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ListRouteCalculatorsResponseEntry(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1ListTrackersResponseEntry = function (output, context) {\n return {\n CreateTime: output.CreateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.CreateTime)) : undefined,\n Description: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Description),\n PricingPlan: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PricingPlan),\n PricingPlanDataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PricingPlanDataSource),\n TrackerName: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.TrackerName),\n UpdateTime: output.UpdateTime != null ? Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectNonNull\"])(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"parseRfc3339DateTime\"])(output.UpdateTime)) : undefined,\n };\n};\nvar deserializeAws_restJson1ListTrackersResponseEntryList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ListTrackersResponseEntry(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1MapConfiguration = function (output, context) {\n return {\n Style: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Style),\n };\n};\nvar deserializeAws_restJson1Place = function (output, context) {\n return {\n AddressNumber: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.AddressNumber),\n Country: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Country),\n Geometry: output.Geometry != null ? deserializeAws_restJson1PlaceGeometry(output.Geometry, context) : undefined,\n Interpolated: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectBoolean\"])(output.Interpolated),\n Label: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Label),\n Municipality: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Municipality),\n Neighborhood: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Neighborhood),\n PostalCode: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PostalCode),\n Region: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Region),\n Street: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Street),\n SubRegion: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.SubRegion),\n TimeZone: output.TimeZone != null ? deserializeAws_restJson1TimeZone(output.TimeZone, context) : undefined,\n UnitNumber: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.UnitNumber),\n UnitType: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.UnitType),\n };\n};\nvar deserializeAws_restJson1PlaceGeometry = function (output, context) {\n return {\n Point: output.Point != null ? deserializeAws_restJson1Position(output.Point, context) : undefined,\n };\n};\nvar deserializeAws_restJson1Position = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(entry);\n });\n return retVal;\n};\nvar deserializeAws_restJson1PositionalAccuracy = function (output, context) {\n return {\n Horizontal: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.Horizontal),\n };\n};\nvar deserializeAws_restJson1PositionList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Position(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1PropertyMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(value), _b));\n }, {});\n};\nvar deserializeAws_restJson1RouteMatrix = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1RouteMatrixRow(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1RouteMatrixEntry = function (output, context) {\n return {\n Distance: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.Distance),\n DurationSeconds: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.DurationSeconds),\n Error: output.Error != null ? deserializeAws_restJson1RouteMatrixEntryError(output.Error, context) : undefined,\n };\n};\nvar deserializeAws_restJson1RouteMatrixEntryError = function (output, context) {\n return {\n Code: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Code),\n Message: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Message),\n };\n};\nvar deserializeAws_restJson1RouteMatrixRow = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1RouteMatrixEntry(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1SearchForPositionResult = function (output, context) {\n return {\n Distance: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.Distance),\n Place: output.Place != null ? deserializeAws_restJson1Place(output.Place, context) : undefined,\n PlaceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PlaceId),\n };\n};\nvar deserializeAws_restJson1SearchForPositionResultList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1SearchForPositionResult(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1SearchForSuggestionsResult = function (output, context) {\n return {\n PlaceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PlaceId),\n Text: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Text),\n };\n};\nvar deserializeAws_restJson1SearchForSuggestionsResultList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1SearchForSuggestionsResult(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1SearchForTextResult = function (output, context) {\n return {\n Distance: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.Distance),\n Place: output.Place != null ? deserializeAws_restJson1Place(output.Place, context) : undefined,\n PlaceId: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.PlaceId),\n Relevance: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.Relevance),\n };\n};\nvar deserializeAws_restJson1SearchForTextResultList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1SearchForTextResult(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1SearchPlaceIndexForPositionSummary = function (output, context) {\n return {\n DataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DataSource),\n Language: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Language),\n MaxResults: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.MaxResults),\n Position: output.Position != null ? deserializeAws_restJson1Position(output.Position, context) : undefined,\n };\n};\nvar deserializeAws_restJson1SearchPlaceIndexForSuggestionsSummary = function (output, context) {\n return {\n BiasPosition: output.BiasPosition != null ? deserializeAws_restJson1Position(output.BiasPosition, context) : undefined,\n DataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DataSource),\n FilterBBox: output.FilterBBox != null ? deserializeAws_restJson1BoundingBox(output.FilterBBox, context) : undefined,\n FilterCountries: output.FilterCountries != null\n ? deserializeAws_restJson1CountryCodeList(output.FilterCountries, context)\n : undefined,\n Language: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Language),\n MaxResults: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.MaxResults),\n Text: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Text),\n };\n};\nvar deserializeAws_restJson1SearchPlaceIndexForTextSummary = function (output, context) {\n return {\n BiasPosition: output.BiasPosition != null ? deserializeAws_restJson1Position(output.BiasPosition, context) : undefined,\n DataSource: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.DataSource),\n FilterBBox: output.FilterBBox != null ? deserializeAws_restJson1BoundingBox(output.FilterBBox, context) : undefined,\n FilterCountries: output.FilterCountries != null\n ? deserializeAws_restJson1CountryCodeList(output.FilterCountries, context)\n : undefined,\n Language: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Language),\n MaxResults: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.MaxResults),\n ResultBBox: output.ResultBBox != null ? deserializeAws_restJson1BoundingBox(output.ResultBBox, context) : undefined,\n Text: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Text),\n };\n};\nvar deserializeAws_restJson1Step = function (output, context) {\n return {\n Distance: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.Distance),\n DurationSeconds: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"limitedParseDouble\"])(output.DurationSeconds),\n EndPosition: output.EndPosition != null ? deserializeAws_restJson1Position(output.EndPosition, context) : undefined,\n GeometryOffset: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.GeometryOffset),\n StartPosition: output.StartPosition != null ? deserializeAws_restJson1Position(output.StartPosition, context) : undefined,\n };\n};\nvar deserializeAws_restJson1StepList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Step(entry, context);\n });\n return retVal;\n};\nvar deserializeAws_restJson1TagMap = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(value), _b));\n }, {});\n};\nvar deserializeAws_restJson1TimeZone = function (output, context) {\n return {\n Name: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.Name),\n Offset: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectInt32\"])(output.Offset),\n };\n};\nvar deserializeAws_restJson1ValidationExceptionField = function (output, context) {\n return {\n Message: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.message),\n Name: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"expectString\"])(output.name),\n };\n};\nvar deserializeAws_restJson1ValidationExceptionFieldList = function (output, context) {\n var retVal = (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ValidationExceptionField(entry, context);\n });\n return retVal;\n};\nvar deserializeMetadata = function (output) {\n var _a, _b;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_b = (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"]) !== null && _b !== void 0 ? _b : output.headers[\"x-amz-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar isSerializableHeaderValue = function (value) {\n return value !== undefined &&\n value !== null &&\n value !== \"\" &&\n (!Object.getOwnPropertyNames(value).includes(\"length\") || value.length != 0) &&\n (!Object.getOwnPropertyNames(value).includes(\"size\") || value.size != 0);\n};\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\nvar parseErrorBody = function (errorBody, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var value;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0: return [4, parseBody(errorBody, context)];\n case 1:\n value = _b.sent();\n value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;\n return [2, value];\n }\n });\n}); };\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (typeof cleanValue === \"number\") {\n cleanValue = cleanValue.toString();\n }\n if (cleanValue.indexOf(\",\") >= 0) {\n cleanValue = cleanValue.split(\",\")[0];\n }\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/protocols/Aws_restJson1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/runtimeConfig.browser.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/runtimeConfig.browser.js ***! \********************************************************************************/ /*! exports provided: getRuntimeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRuntimeConfig\", function() { return getRuntimeConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../package.json */ \"./node_modules/@aws-sdk/client-location/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ../package.json */ \"./node_modules/@aws-sdk/client-location/package.json\", 1);\n/* 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\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-location/dist-es/runtimeConfig.shared.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js\");\n/* harmony import */ var _aws_sdk_util_defaults_mode_browser__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! @aws-sdk/util-defaults-mode-browser */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/index.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar getRuntimeConfig = function (config) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;\n var defaultsMode = Object(_aws_sdk_util_defaults_mode_browser__WEBPACK_IMPORTED_MODULE_13__[\"resolveDefaultsModeConfig\"])(config);\n var defaultConfigProvider = function () { return defaultsMode().then(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_12__[\"loadConfigsForDefaultMode\"]); };\n var clientSharedValues = Object(_runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_11__[\"getRuntimeConfig\"])(config);\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, clientSharedValues), config), { runtime: \"browser\", defaultsMode: defaultsMode, base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_7__[\"fromBase64\"], base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_7__[\"toBase64\"], bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_8__[\"calculateBodyLength\"], credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_9__[\"defaultUserAgent\"])({ serviceId: clientSharedValues.serviceId, clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"DEFAULT_MAX_ATTEMPTS\"], region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_5__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__[\"FetchHttpHandler\"](defaultConfigProvider), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, defaultConfigProvider()];\n case 1: return [2, (_a.sent()).retryMode || _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"DEFAULT_RETRY_MODE\"]];\n }\n }); }); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__[\"streamCollector\"], useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (function () { return Promise.resolve(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_USE_DUALSTACK_ENDPOINT\"]); }), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (function () { return Promise.resolve(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_USE_FIPS_ENDPOINT\"]); }), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_10__[\"fromUtf8\"], utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_10__[\"toUtf8\"] });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/dist-es/runtimeConfig.shared.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/dist-es/runtimeConfig.shared.js ***! \*******************************************************************************/ /*! exports provided: getRuntimeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRuntimeConfig\", function() { return getRuntimeConfig; });\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/url-parser/dist-es/index.js\");\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-location/dist-es/endpoints.js\");\n\n\nvar getRuntimeConfig = function (config) {\n var _a, _b, _c, _d, _e;\n return ({\n apiVersion: \"2020-11-19\",\n disableHostPrefix: (_a = config === null || config === void 0 ? void 0 : config.disableHostPrefix) !== null && _a !== void 0 ? _a : false,\n logger: (_b = config === null || config === void 0 ? void 0 : config.logger) !== null && _b !== void 0 ? _b : {},\n regionInfoProvider: (_c = config === null || config === void 0 ? void 0 : config.regionInfoProvider) !== null && _c !== void 0 ? _c : _endpoints__WEBPACK_IMPORTED_MODULE_1__[\"defaultRegionInfoProvider\"],\n serviceId: (_d = config === null || config === void 0 ? void 0 : config.serviceId) !== null && _d !== void 0 ? _d : \"Location\",\n urlParser: (_e = config === null || config === void 0 ? void 0 : config.urlParser) !== null && _e !== void 0 ? _e : _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_0__[\"parseUrl\"],\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/dist-es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js ***! \****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=CryptoOperation.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/Key.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/Key.js ***! \****************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=Key.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/Key.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js ***! \*************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=KeyOperation.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js ***! \***************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=MsSubtleCrypto.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js ***! \*********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isMsWindow = void 0;\nvar msSubtleCryptoMethods = [\n \"decrypt\",\n \"digest\",\n \"encrypt\",\n \"exportKey\",\n \"generateKey\",\n \"importKey\",\n \"sign\",\n \"verify\"\n];\nfunction quacksLikeAnMsWindow(window) {\n return \"MSInputMethodContext\" in window && \"msCrypto\" in window;\n}\n/**\n * Determines if the provided window is (or is like) the window object one would\n * expect to encounter in Internet Explorer 11.\n */\nfunction isMsWindow(window) {\n if (quacksLikeAnMsWindow(window) && window.msCrypto.subtle !== undefined) {\n var _a = window.msCrypto, getRandomValues = _a.getRandomValues, subtle_1 = _a.subtle;\n return msSubtleCryptoMethods\n .map(function (methodName) { return subtle_1[methodName]; })\n .concat(getRandomValues)\n .every(function (method) { return typeof method === \"function\"; });\n }\n return false;\n}\nexports.isMsWindow = isMsWindow;\n//# sourceMappingURL=MsWindow.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/index.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/index.js ***! \******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js\");\ntslib_1.__exportStar(__webpack_require__(/*! ./CryptoOperation */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./Key */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/Key.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./KeyOperation */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./MsSubtleCrypto */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js\"), exports);\ntslib_1.__exportStar(__webpack_require__(/*! ./MsWindow */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js\"), exports);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js ***! \***********************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/constants.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/constants.js ***! \**********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EMPTY_DATA_SHA_256 = exports.SHA_256_HMAC_ALGO = exports.SHA_256_HASH = void 0;\nexports.SHA_256_HASH = { name: \"SHA-256\" };\nexports.SHA_256_HMAC_ALGO = {\n name: \"HMAC\",\n hash: exports.SHA_256_HASH\n};\nexports.EMPTY_DATA_SHA_256 = new Uint8Array([\n 227,\n 176,\n 196,\n 66,\n 152,\n 252,\n 28,\n 20,\n 154,\n 251,\n 244,\n 200,\n 153,\n 111,\n 185,\n 36,\n 39,\n 174,\n 65,\n 228,\n 100,\n 155,\n 147,\n 76,\n 164,\n 149,\n 153,\n 27,\n 120,\n 82,\n 184,\n 85\n]);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBYSxRQUFBLFlBQVksR0FBd0IsRUFBRSxJQUFJLEVBQUUsU0FBUyxFQUFFLENBQUM7QUFFeEQsUUFBQSxpQkFBaUIsR0FBZ0Q7SUFDNUUsSUFBSSxFQUFFLE1BQU07SUFDWixJQUFJLEVBQUUsb0JBQVk7Q0FDbkIsQ0FBQztBQUVXLFFBQUEsa0JBQWtCLEdBQUcsSUFBSSxVQUFVLENBQUM7SUFDL0MsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEVBQUU7SUFDRixHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEVBQUU7SUFDRixHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxHQUFHO0lBQ0gsR0FBRztJQUNILEdBQUc7SUFDSCxFQUFFO0lBQ0YsR0FBRztJQUNILEdBQUc7SUFDSCxHQUFHO0lBQ0gsRUFBRTtJQUNGLEdBQUc7SUFDSCxFQUFFO0lBQ0YsR0FBRztJQUNILEVBQUU7Q0FDSCxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgU0hBXzI1Nl9IQVNIOiB7IG5hbWU6IFwiU0hBLTI1NlwiIH0gPSB7IG5hbWU6IFwiU0hBLTI1NlwiIH07XG5cbmV4cG9ydCBjb25zdCBTSEFfMjU2X0hNQUNfQUxHTzogeyBuYW1lOiBcIkhNQUNcIjsgaGFzaDogeyBuYW1lOiBcIlNIQS0yNTZcIiB9IH0gPSB7XG4gIG5hbWU6IFwiSE1BQ1wiLFxuICBoYXNoOiBTSEFfMjU2X0hBU0hcbn07XG5cbmV4cG9ydCBjb25zdCBFTVBUWV9EQVRBX1NIQV8yNTYgPSBuZXcgVWludDhBcnJheShbXG4gIDIyNyxcbiAgMTc2LFxuICAxOTYsXG4gIDY2LFxuICAxNTIsXG4gIDI1MixcbiAgMjgsXG4gIDIwLFxuICAxNTQsXG4gIDI1MSxcbiAgMjQ0LFxuICAyMDAsXG4gIDE1MyxcbiAgMTExLFxuICAxODUsXG4gIDM2LFxuICAzOSxcbiAgMTc0LFxuICA2NSxcbiAgMjI4LFxuICAxMDAsXG4gIDE1NSxcbiAgMTQ3LFxuICA3NixcbiAgMTY0LFxuICAxNDksXG4gIDE1MyxcbiAgMjcsXG4gIDEyMCxcbiAgODIsXG4gIDE4NCxcbiAgODVcbl0pO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js ***! \********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar ie11Sha256_1 = __webpack_require__(/*! ./ie11Sha256 */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js\");\nvar webCryptoSha256_1 = __webpack_require__(/*! ./webCryptoSha256 */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js\");\nvar sha256_js_1 = __webpack_require__(/*! @aws-crypto/sha256-js */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/index.js\");\nvar supports_web_crypto_1 = __webpack_require__(/*! @aws-crypto/supports-web-crypto */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/build/index.js\");\nvar ie11_detection_1 = __webpack_require__(/*! @aws-crypto/ie11-detection */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/ie11-detection/build/index.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n if ((0, supports_web_crypto_1.supportsWebCrypto)((0, util_locate_window_1.locateWindow)())) {\n this.hash = new webCryptoSha256_1.Sha256(secret);\n }\n else if ((0, ie11_detection_1.isMsWindow)((0, util_locate_window_1.locateWindow)())) {\n this.hash = new ie11Sha256_1.Sha256(secret);\n }\n else {\n this.hash = new sha256_js_1.Sha256(secret);\n }\n }\n Sha256.prototype.update = function (data, encoding) {\n this.hash.update(data, encoding);\n };\n Sha256.prototype.digest = function () {\n return this.hash.digest();\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3Jvc3NQbGF0Zm9ybVNoYTI1Ni5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9jcm9zc1BsYXRmb3JtU2hhMjU2LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDJDQUFvRDtBQUNwRCxxREFBOEQ7QUFDOUQsbURBQTJEO0FBRTNELHVFQUFvRTtBQUNwRSw2REFBd0Q7QUFDeEQsa0VBQTJEO0FBRTNEO0lBR0UsZ0JBQVksTUFBbUI7UUFDN0IsSUFBSSxJQUFBLHVDQUFpQixFQUFDLElBQUEsaUNBQVksR0FBRSxDQUFDLEVBQUU7WUFDckMsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLHdCQUFlLENBQUMsTUFBTSxDQUFDLENBQUM7U0FDekM7YUFBTSxJQUFJLElBQUEsMkJBQVUsRUFBQyxJQUFBLGlDQUFZLEdBQUUsQ0FBQyxFQUFFO1lBQ3JDLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxtQkFBVSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1NBQ3BDO2FBQU07WUFDTCxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksa0JBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQztTQUNsQztJQUNILENBQUM7SUFFRCx1QkFBTSxHQUFOLFVBQU8sSUFBZ0IsRUFBRSxRQUFzQztRQUM3RCxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsUUFBUSxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVELHVCQUFNLEdBQU47UUFDRSxPQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDNUIsQ0FBQztJQUNILGFBQUM7QUFBRCxDQUFDLEFBcEJELElBb0JDO0FBcEJZLHdCQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2hhMjU2IGFzIEllMTFTaGEyNTYgfSBmcm9tIFwiLi9pZTExU2hhMjU2XCI7XG5pbXBvcnQgeyBTaGEyNTYgYXMgV2ViQ3J5cHRvU2hhMjU2IH0gZnJvbSBcIi4vd2ViQ3J5cHRvU2hhMjU2XCI7XG5pbXBvcnQgeyBTaGEyNTYgYXMgSnNTaGEyNTYgfSBmcm9tIFwiQGF3cy1jcnlwdG8vc2hhMjU2LWpzXCI7XG5pbXBvcnQgeyBIYXNoLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBzdXBwb3J0c1dlYkNyeXB0byB9IGZyb20gXCJAYXdzLWNyeXB0by9zdXBwb3J0cy13ZWItY3J5cHRvXCI7XG5pbXBvcnQgeyBpc01zV2luZG93IH0gZnJvbSBcIkBhd3MtY3J5cHRvL2llMTEtZGV0ZWN0aW9uXCI7XG5pbXBvcnQgeyBsb2NhdGVXaW5kb3cgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC1sb2NhdGUtd2luZG93XCI7XG5cbmV4cG9ydCBjbGFzcyBTaGEyNTYgaW1wbGVtZW50cyBIYXNoIHtcbiAgcHJpdmF0ZSByZWFkb25seSBoYXNoOiBIYXNoO1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc3VwcG9ydHNXZWJDcnlwdG8obG9jYXRlV2luZG93KCkpKSB7XG4gICAgICB0aGlzLmhhc2ggPSBuZXcgV2ViQ3J5cHRvU2hhMjU2KHNlY3JldCk7XG4gICAgfSBlbHNlIGlmIChpc01zV2luZG93KGxvY2F0ZVdpbmRvdygpKSkge1xuICAgICAgdGhpcy5oYXNoID0gbmV3IEllMTFTaGEyNTYoc2VjcmV0KTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5oYXNoID0gbmV3IEpzU2hhMjU2KHNlY3JldCk7XG4gICAgfVxuICB9XG5cbiAgdXBkYXRlKGRhdGE6IFNvdXJjZURhdGEsIGVuY29kaW5nPzogXCJ1dGY4XCIgfCBcImFzY2lpXCIgfCBcImxhdGluMVwiKTogdm9pZCB7XG4gICAgdGhpcy5oYXNoLnVwZGF0ZShkYXRhLCBlbmNvZGluZyk7XG4gIH1cblxuICBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMuaGFzaC5kaWdlc3QoKTtcbiAgfVxufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js ***! \***********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar isEmptyData_1 = __webpack_require__(/*! ./isEmptyData */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/constants.js\");\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n if (secret) {\n this.operation = getKeyPromise(secret).then(function (keyData) {\n return (0, util_locate_window_1.locateWindow)().msCrypto.subtle.sign(constants_1.SHA_256_HMAC_ALGO, keyData);\n });\n this.operation.catch(function () { });\n }\n else {\n this.operation = Promise.resolve((0, util_locate_window_1.locateWindow)().msCrypto.subtle.digest(\"SHA-256\"));\n }\n }\n Sha256.prototype.update = function (toHash) {\n var _this = this;\n if ((0, isEmptyData_1.isEmptyData)(toHash)) {\n return;\n }\n this.operation = this.operation.then(function (operation) {\n operation.onerror = function () {\n _this.operation = Promise.reject(new Error(\"Error encountered updating hash\"));\n };\n operation.process(toArrayBufferView(toHash));\n return operation;\n });\n this.operation.catch(function () { });\n };\n Sha256.prototype.digest = function () {\n return this.operation.then(function (operation) {\n return new Promise(function (resolve, reject) {\n operation.onerror = function () {\n reject(new Error(\"Error encountered finalizing hash\"));\n };\n operation.oncomplete = function () {\n if (operation.result) {\n resolve(new Uint8Array(operation.result));\n }\n reject(new Error(\"Error encountered finalizing hash\"));\n };\n operation.finish();\n });\n });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\nfunction getKeyPromise(secret) {\n return new Promise(function (resolve, reject) {\n var keyOperation = (0, util_locate_window_1.locateWindow)().msCrypto.subtle.importKey(\"raw\", toArrayBufferView(secret), constants_1.SHA_256_HMAC_ALGO, false, [\"sign\"]);\n keyOperation.oncomplete = function () {\n if (keyOperation.result) {\n resolve(keyOperation.result);\n }\n reject(new Error(\"ImportKey completed without importing key.\"));\n };\n keyOperation.onerror = function () {\n reject(new Error(\"ImportKey failed to import key.\"));\n };\n });\n}\nfunction toArrayBufferView(data) {\n if (typeof data === \"string\") {\n return (0, util_utf8_browser_1.fromUtf8)(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWUxMVNoYTI1Ni5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9pZTExU2hhMjU2LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDZDQUE0QztBQUM1Qyx5Q0FBZ0Q7QUFFaEQsZ0VBQXNEO0FBRXRELGtFQUEyRDtBQUUzRDtJQUdFLGdCQUFZLE1BQW1CO1FBQzdCLElBQUksTUFBTSxFQUFFO1lBQ1YsSUFBSSxDQUFDLFNBQVMsR0FBRyxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQUEsT0FBTztnQkFDakQsT0FBQyxJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksQ0FDL0MsNkJBQWlCLEVBQ2pCLE9BQU8sQ0FDUjtZQUhELENBR0MsQ0FDRixDQUFDO1lBQ0YsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsY0FBTyxDQUFDLENBQUMsQ0FBQztTQUNoQzthQUFNO1lBQ0wsSUFBSSxDQUFDLFNBQVMsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUM3QixJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FDL0QsQ0FBQztTQUNIO0lBQ0gsQ0FBQztJQUVELHVCQUFNLEdBQU4sVUFBTyxNQUFrQjtRQUF6QixpQkFnQkM7UUFmQyxJQUFJLElBQUEseUJBQVcsRUFBQyxNQUFNLENBQUMsRUFBRTtZQUN2QixPQUFPO1NBQ1I7UUFFRCxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFVBQUEsU0FBUztZQUM1QyxTQUFTLENBQUMsT0FBTyxHQUFHO2dCQUNsQixLQUFJLENBQUMsU0FBUyxHQUFHLE9BQU8sQ0FBQyxNQUFNLENBQzdCLElBQUksS0FBSyxDQUFDLGlDQUFpQyxDQUFDLENBQzdDLENBQUM7WUFDSixDQUFDLENBQUM7WUFDRixTQUFTLENBQUMsT0FBTyxDQUFDLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7WUFFN0MsT0FBTyxTQUFTLENBQUM7UUFDbkIsQ0FBQyxDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxjQUFPLENBQUMsQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFFRCx1QkFBTSxHQUFOO1FBQ0UsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FDeEIsVUFBQSxTQUFTO1lBQ1AsT0FBQSxJQUFJLE9BQU8sQ0FBQyxVQUFDLE9BQU8sRUFBRSxNQUFNO2dCQUMxQixTQUFTLENBQUMsT0FBTyxHQUFHO29CQUNsQixNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsbUNBQW1DLENBQUMsQ0FBQyxDQUFDO2dCQUN6RCxDQUFDLENBQUM7Z0JBQ0YsU0FBUyxDQUFDLFVBQVUsR0FBRztvQkFDckIsSUFBSSxTQUFTLENBQUMsTUFBTSxFQUFFO3dCQUNwQixPQUFPLENBQUMsSUFBSSxVQUFVLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7cUJBQzNDO29CQUNELE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxtQ0FBbUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ3pELENBQUMsQ0FBQztnQkFFRixTQUFTLENBQUMsTUFBTSxFQUFFLENBQUM7WUFDckIsQ0FBQyxDQUFDO1FBWkYsQ0FZRSxDQUNMLENBQUM7SUFDSixDQUFDO0lBQ0gsYUFBQztBQUFELENBQUMsQUF2REQsSUF1REM7QUF2RFksd0JBQU07QUF5RG5CLFNBQVMsYUFBYSxDQUFDLE1BQWtCO0lBQ3ZDLE9BQU8sSUFBSSxPQUFPLENBQUMsVUFBQyxPQUFPLEVBQUUsTUFBTTtRQUNqQyxJQUFNLFlBQVksR0FBSSxJQUFBLGlDQUFZLEdBQWUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FDekUsS0FBSyxFQUNMLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxFQUN6Qiw2QkFBaUIsRUFDakIsS0FBSyxFQUNMLENBQUMsTUFBTSxDQUFDLENBQ1QsQ0FBQztRQUVGLFlBQVksQ0FBQyxVQUFVLEdBQUc7WUFDeEIsSUFBSSxZQUFZLENBQUMsTUFBTSxFQUFFO2dCQUN2QixPQUFPLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQyxDQUFDO2FBQzlCO1lBRUQsTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLDRDQUE0QyxDQUFDLENBQUMsQ0FBQztRQUNsRSxDQUFDLENBQUM7UUFDRixZQUFZLENBQUMsT0FBTyxHQUFHO1lBQ3JCLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxpQ0FBaUMsQ0FBQyxDQUFDLENBQUM7UUFDdkQsQ0FBQyxDQUFDO0lBQ0osQ0FBQyxDQUFDLENBQUM7QUFDTCxDQUFDO0FBRUQsU0FBUyxpQkFBaUIsQ0FBQyxJQUFnQjtJQUN6QyxJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVEsRUFBRTtRQUM1QixPQUFPLElBQUEsNEJBQVEsRUFBQyxJQUFJLENBQUMsQ0FBQztLQUN2QjtJQUVELElBQUksV0FBVyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsRUFBRTtRQUM1QixPQUFPLElBQUksVUFBVSxDQUNuQixJQUFJLENBQUMsTUFBTSxFQUNYLElBQUksQ0FBQyxVQUFVLEVBQ2YsSUFBSSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUMsaUJBQWlCLENBQy9DLENBQUM7S0FDSDtJQUVELE9BQU8sSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUM7QUFDOUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGlzRW1wdHlEYXRhIH0gZnJvbSBcIi4vaXNFbXB0eURhdGFcIjtcbmltcG9ydCB7IFNIQV8yNTZfSE1BQ19BTEdPIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5pbXBvcnQgeyBIYXNoLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBmcm9tVXRmOCB9IGZyb20gXCJAYXdzLXNkay91dGlsLXV0ZjgtYnJvd3NlclwiO1xuaW1wb3J0IHsgQ3J5cHRvT3BlcmF0aW9uLCBLZXksIE1zV2luZG93IH0gZnJvbSBcIkBhd3MtY3J5cHRvL2llMTEtZGV0ZWN0aW9uXCI7XG5pbXBvcnQgeyBsb2NhdGVXaW5kb3cgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC1sb2NhdGUtd2luZG93XCI7XG5cbmV4cG9ydCBjbGFzcyBTaGEyNTYgaW1wbGVtZW50cyBIYXNoIHtcbiAgcHJpdmF0ZSBvcGVyYXRpb246IFByb21pc2U8Q3J5cHRvT3BlcmF0aW9uPjtcblxuICBjb25zdHJ1Y3RvcihzZWNyZXQ/OiBTb3VyY2VEYXRhKSB7XG4gICAgaWYgKHNlY3JldCkge1xuICAgICAgdGhpcy5vcGVyYXRpb24gPSBnZXRLZXlQcm9taXNlKHNlY3JldCkudGhlbihrZXlEYXRhID0+XG4gICAgICAgIChsb2NhdGVXaW5kb3coKSBhcyBNc1dpbmRvdykubXNDcnlwdG8uc3VidGxlLnNpZ24oXG4gICAgICAgICAgU0hBXzI1Nl9ITUFDX0FMR08sXG4gICAgICAgICAga2V5RGF0YVxuICAgICAgICApXG4gICAgICApO1xuICAgICAgdGhpcy5vcGVyYXRpb24uY2F0Y2goKCkgPT4ge30pO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLm9wZXJhdGlvbiA9IFByb21pc2UucmVzb2x2ZShcbiAgICAgICAgKGxvY2F0ZVdpbmRvdygpIGFzIE1zV2luZG93KS5tc0NyeXB0by5zdWJ0bGUuZGlnZXN0KFwiU0hBLTI1NlwiKVxuICAgICAgKTtcbiAgICB9XG4gIH1cblxuICB1cGRhdGUodG9IYXNoOiBTb3VyY2VEYXRhKTogdm9pZCB7XG4gICAgaWYgKGlzRW1wdHlEYXRhKHRvSGFzaCkpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICB0aGlzLm9wZXJhdGlvbiA9IHRoaXMub3BlcmF0aW9uLnRoZW4ob3BlcmF0aW9uID0+IHtcbiAgICAgIG9wZXJhdGlvbi5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICB0aGlzLm9wZXJhdGlvbiA9IFByb21pc2UucmVqZWN0KFxuICAgICAgICAgIG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIHVwZGF0aW5nIGhhc2hcIilcbiAgICAgICAgKTtcbiAgICAgIH07XG4gICAgICBvcGVyYXRpb24ucHJvY2Vzcyh0b0FycmF5QnVmZmVyVmlldyh0b0hhc2gpKTtcblxuICAgICAgcmV0dXJuIG9wZXJhdGlvbjtcbiAgICB9KTtcbiAgICB0aGlzLm9wZXJhdGlvbi5jYXRjaCgoKSA9PiB7fSk7XG4gIH1cblxuICBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMub3BlcmF0aW9uLnRoZW48VWludDhBcnJheT4oXG4gICAgICBvcGVyYXRpb24gPT5cbiAgICAgICAgbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICAgIG9wZXJhdGlvbi5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIGZpbmFsaXppbmcgaGFzaFwiKSk7XG4gICAgICAgICAgfTtcbiAgICAgICAgICBvcGVyYXRpb24ub25jb21wbGV0ZSA9ICgpID0+IHtcbiAgICAgICAgICAgIGlmIChvcGVyYXRpb24ucmVzdWx0KSB7XG4gICAgICAgICAgICAgIHJlc29sdmUobmV3IFVpbnQ4QXJyYXkob3BlcmF0aW9uLnJlc3VsdCkpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkVycm9yIGVuY291bnRlcmVkIGZpbmFsaXppbmcgaGFzaFwiKSk7XG4gICAgICAgICAgfTtcblxuICAgICAgICAgIG9wZXJhdGlvbi5maW5pc2goKTtcbiAgICAgICAgfSlcbiAgICApO1xuICB9XG59XG5cbmZ1bmN0aW9uIGdldEtleVByb21pc2Uoc2VjcmV0OiBTb3VyY2VEYXRhKTogUHJvbWlzZTxLZXk+IHtcbiAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlLCByZWplY3QpID0+IHtcbiAgICBjb25zdCBrZXlPcGVyYXRpb24gPSAobG9jYXRlV2luZG93KCkgYXMgTXNXaW5kb3cpLm1zQ3J5cHRvLnN1YnRsZS5pbXBvcnRLZXkoXG4gICAgICBcInJhd1wiLFxuICAgICAgdG9BcnJheUJ1ZmZlclZpZXcoc2VjcmV0KSxcbiAgICAgIFNIQV8yNTZfSE1BQ19BTEdPLFxuICAgICAgZmFsc2UsXG4gICAgICBbXCJzaWduXCJdXG4gICAgKTtcblxuICAgIGtleU9wZXJhdGlvbi5vbmNvbXBsZXRlID0gKCkgPT4ge1xuICAgICAgaWYgKGtleU9wZXJhdGlvbi5yZXN1bHQpIHtcbiAgICAgICAgcmVzb2x2ZShrZXlPcGVyYXRpb24ucmVzdWx0KTtcbiAgICAgIH1cblxuICAgICAgcmVqZWN0KG5ldyBFcnJvcihcIkltcG9ydEtleSBjb21wbGV0ZWQgd2l0aG91dCBpbXBvcnRpbmcga2V5LlwiKSk7XG4gICAgfTtcbiAgICBrZXlPcGVyYXRpb24ub25lcnJvciA9ICgpID0+IHtcbiAgICAgIHJlamVjdChuZXcgRXJyb3IoXCJJbXBvcnRLZXkgZmFpbGVkIHRvIGltcG9ydCBrZXkuXCIpKTtcbiAgICB9O1xuICB9KTtcbn1cblxuZnVuY3Rpb24gdG9BcnJheUJ1ZmZlclZpZXcoZGF0YTogU291cmNlRGF0YSk6IFVpbnQ4QXJyYXkge1xuICBpZiAodHlwZW9mIGRhdGEgPT09IFwic3RyaW5nXCIpIHtcbiAgICByZXR1cm4gZnJvbVV0ZjgoZGF0YSk7XG4gIH1cblxuICBpZiAoQXJyYXlCdWZmZXIuaXNWaWV3KGRhdGEpKSB7XG4gICAgcmV0dXJuIG5ldyBVaW50OEFycmF5KFxuICAgICAgZGF0YS5idWZmZXIsXG4gICAgICBkYXRhLmJ5dGVPZmZzZXQsXG4gICAgICBkYXRhLmJ5dGVMZW5ndGggLyBVaW50OEFycmF5LkJZVEVTX1BFUl9FTEVNRU5UXG4gICAgKTtcbiAgfVxuXG4gIHJldHVybiBuZXcgVWludDhBcnJheShkYXRhKTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/index.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/index.js ***! \******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.WebCryptoSha256 = exports.Ie11Sha256 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js\");\n(0, tslib_1.__exportStar)(__webpack_require__(/*! ./crossPlatformSha256 */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js\"), exports);\nvar ie11Sha256_1 = __webpack_require__(/*! ./ie11Sha256 */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js\");\nObject.defineProperty(exports, \"Ie11Sha256\", { enumerable: true, get: function () { return ie11Sha256_1.Sha256; } });\nvar webCryptoSha256_1 = __webpack_require__(/*! ./webCryptoSha256 */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js\");\nObject.defineProperty(exports, \"WebCryptoSha256\", { enumerable: true, get: function () { return webCryptoSha256_1.Sha256; } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHFFQUFzQztBQUN0QywyQ0FBb0Q7QUFBM0Msd0dBQUEsTUFBTSxPQUFjO0FBQzdCLHFEQUE4RDtBQUFyRCxrSEFBQSxNQUFNLE9BQW1CIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vY3Jvc3NQbGF0Zm9ybVNoYTI1NlwiO1xuZXhwb3J0IHsgU2hhMjU2IGFzIEllMTFTaGEyNTYgfSBmcm9tIFwiLi9pZTExU2hhMjU2XCI7XG5leHBvcnQgeyBTaGEyNTYgYXMgV2ViQ3J5cHRvU2hhMjU2IH0gZnJvbSBcIi4vd2ViQ3J5cHRvU2hhMjU2XCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js ***! \************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isEmptyData = void 0;\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nexports.isEmptyData = isEmptyData;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNFbXB0eURhdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaXNFbXB0eURhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUEsU0FBZ0IsV0FBVyxDQUFDLElBQWdCO0lBQzFDLElBQUksT0FBTyxJQUFJLEtBQUssUUFBUSxFQUFFO1FBQzVCLE9BQU8sSUFBSSxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUM7S0FDMUI7SUFFRCxPQUFPLElBQUksQ0FBQyxVQUFVLEtBQUssQ0FBQyxDQUFDO0FBQy9CLENBQUM7QUFORCxrQ0FNQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGZ1bmN0aW9uIGlzRW1wdHlEYXRhKGRhdGE6IFNvdXJjZURhdGEpOiBib29sZWFuIHtcbiAgaWYgKHR5cGVvZiBkYXRhID09PSBcInN0cmluZ1wiKSB7XG4gICAgcmV0dXJuIGRhdGEubGVuZ3RoID09PSAwO1xuICB9XG5cbiAgcmV0dXJuIGRhdGEuYnl0ZUxlbmd0aCA9PT0gMDtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js ***! \****************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/index.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/constants.js\");\nvar util_locate_window_1 = __webpack_require__(/*! @aws-sdk/util-locate-window */ \"./node_modules/@aws-sdk/util-locate-window/dist-es/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n this.toHash = new Uint8Array(0);\n if (secret !== void 0) {\n this.key = new Promise(function (resolve, reject) {\n (0, util_locate_window_1.locateWindow)()\n .crypto.subtle.importKey(\"raw\", (0, util_1.convertToBuffer)(secret), constants_1.SHA_256_HMAC_ALGO, false, [\"sign\"])\n .then(resolve, reject);\n });\n this.key.catch(function () { });\n }\n }\n Sha256.prototype.update = function (data) {\n if ((0, util_1.isEmptyData)(data)) {\n return;\n }\n var update = (0, util_1.convertToBuffer)(data);\n var typedArray = new Uint8Array(this.toHash.byteLength + update.byteLength);\n typedArray.set(this.toHash, 0);\n typedArray.set(update, this.toHash.byteLength);\n this.toHash = typedArray;\n };\n Sha256.prototype.digest = function () {\n var _this = this;\n if (this.key) {\n return this.key.then(function (key) {\n return (0, util_locate_window_1.locateWindow)()\n .crypto.subtle.sign(constants_1.SHA_256_HMAC_ALGO, key, _this.toHash)\n .then(function (data) { return new Uint8Array(data); });\n });\n }\n if ((0, util_1.isEmptyData)(this.toHash)) {\n return Promise.resolve(constants_1.EMPTY_DATA_SHA_256);\n }\n return Promise.resolve()\n .then(function () {\n return (0, util_locate_window_1.locateWindow)().crypto.subtle.digest(constants_1.SHA_256_HASH, _this.toHash);\n })\n .then(function (data) { return Promise.resolve(new Uint8Array(data)); });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2ViQ3J5cHRvU2hhMjU2LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3dlYkNyeXB0b1NoYTI1Ni50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFDQSx5Q0FBZ0U7QUFDaEUseUNBSXFCO0FBQ3JCLGtFQUEyRDtBQUUzRDtJQUlFLGdCQUFZLE1BQW1CO1FBRnZCLFdBQU0sR0FBZSxJQUFJLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUc3QyxJQUFJLE1BQU0sS0FBSyxLQUFLLENBQUMsRUFBRTtZQUNyQixJQUFJLENBQUMsR0FBRyxHQUFHLElBQUksT0FBTyxDQUFDLFVBQUMsT0FBTyxFQUFFLE1BQU07Z0JBQ3JDLElBQUEsaUNBQVksR0FBRTtxQkFDWCxNQUFNLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FDdEIsS0FBSyxFQUNMLElBQUEsc0JBQWUsRUFBQyxNQUFNLENBQUMsRUFDdkIsNkJBQWlCLEVBQ2pCLEtBQUssRUFDTCxDQUFDLE1BQU0sQ0FBQyxDQUNUO3FCQUNBLElBQUksQ0FBQyxPQUFPLEVBQUUsTUFBTSxDQUFDLENBQUM7WUFDM0IsQ0FBQyxDQUFDLENBQUM7WUFDSCxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxjQUFPLENBQUMsQ0FBQyxDQUFDO1NBQzFCO0lBQ0gsQ0FBQztJQUVELHVCQUFNLEdBQU4sVUFBTyxJQUFnQjtRQUNyQixJQUFJLElBQUEsa0JBQVcsRUFBQyxJQUFJLENBQUMsRUFBRTtZQUNyQixPQUFPO1NBQ1I7UUFFRCxJQUFNLE1BQU0sR0FBRyxJQUFBLHNCQUFlLEVBQUMsSUFBSSxDQUFDLENBQUM7UUFDckMsSUFBTSxVQUFVLEdBQUcsSUFBSSxVQUFVLENBQy9CLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQzNDLENBQUM7UUFDRixVQUFVLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDL0IsVUFBVSxDQUFDLEdBQUcsQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUMvQyxJQUFJLENBQUMsTUFBTSxHQUFHLFVBQVUsQ0FBQztJQUMzQixDQUFDO0lBRUQsdUJBQU0sR0FBTjtRQUFBLGlCQWtCQztRQWpCQyxJQUFJLElBQUksQ0FBQyxHQUFHLEVBQUU7WUFDWixPQUFPLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFVBQUMsR0FBRztnQkFDdkIsT0FBQSxJQUFBLGlDQUFZLEdBQUU7cUJBQ1gsTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsNkJBQWlCLEVBQUUsR0FBRyxFQUFFLEtBQUksQ0FBQyxNQUFNLENBQUM7cUJBQ3ZELElBQUksQ0FBQyxVQUFDLElBQUksSUFBSyxPQUFBLElBQUksVUFBVSxDQUFDLElBQUksQ0FBQyxFQUFwQixDQUFvQixDQUFDO1lBRnZDLENBRXVDLENBQ3hDLENBQUM7U0FDSDtRQUVELElBQUksSUFBQSxrQkFBVyxFQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBRTtZQUM1QixPQUFPLE9BQU8sQ0FBQyxPQUFPLENBQUMsOEJBQWtCLENBQUMsQ0FBQztTQUM1QztRQUVELE9BQU8sT0FBTyxDQUFDLE9BQU8sRUFBRTthQUNyQixJQUFJLENBQUM7WUFDSixPQUFBLElBQUEsaUNBQVksR0FBRSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLHdCQUFZLEVBQUUsS0FBSSxDQUFDLE1BQU0sQ0FBQztRQUE5RCxDQUE4RCxDQUMvRDthQUNBLElBQUksQ0FBQyxVQUFDLElBQUksSUFBSyxPQUFBLE9BQU8sQ0FBQyxPQUFPLENBQUMsSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUMsRUFBckMsQ0FBcUMsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFDSCxhQUFDO0FBQUQsQ0FBQyxBQXRERCxJQXNEQztBQXREWSx3QkFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEhhc2gsIFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IGlzRW1wdHlEYXRhLCBjb252ZXJ0VG9CdWZmZXIgfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuaW1wb3J0IHtcbiAgRU1QVFlfREFUQV9TSEFfMjU2LFxuICBTSEFfMjU2X0hBU0gsXG4gIFNIQV8yNTZfSE1BQ19BTEdPLFxufSBmcm9tIFwiLi9jb25zdGFudHNcIjtcbmltcG9ydCB7IGxvY2F0ZVdpbmRvdyB9IGZyb20gXCJAYXdzLXNkay91dGlsLWxvY2F0ZS13aW5kb3dcIjtcblxuZXhwb3J0IGNsYXNzIFNoYTI1NiBpbXBsZW1lbnRzIEhhc2gge1xuICBwcml2YXRlIHJlYWRvbmx5IGtleTogUHJvbWlzZTxDcnlwdG9LZXk+IHwgdW5kZWZpbmVkO1xuICBwcml2YXRlIHRvSGFzaDogVWludDhBcnJheSA9IG5ldyBVaW50OEFycmF5KDApO1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc2VjcmV0ICE9PSB2b2lkIDApIHtcbiAgICAgIHRoaXMua2V5ID0gbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICBsb2NhdGVXaW5kb3coKVxuICAgICAgICAgIC5jcnlwdG8uc3VidGxlLmltcG9ydEtleShcbiAgICAgICAgICAgIFwicmF3XCIsXG4gICAgICAgICAgICBjb252ZXJ0VG9CdWZmZXIoc2VjcmV0KSxcbiAgICAgICAgICAgIFNIQV8yNTZfSE1BQ19BTEdPLFxuICAgICAgICAgICAgZmFsc2UsXG4gICAgICAgICAgICBbXCJzaWduXCJdXG4gICAgICAgICAgKVxuICAgICAgICAgIC50aGVuKHJlc29sdmUsIHJlamVjdCk7XG4gICAgICB9KTtcbiAgICAgIHRoaXMua2V5LmNhdGNoKCgpID0+IHt9KTtcbiAgICB9XG4gIH1cblxuICB1cGRhdGUoZGF0YTogU291cmNlRGF0YSk6IHZvaWQge1xuICAgIGlmIChpc0VtcHR5RGF0YShkYXRhKSkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGNvbnN0IHVwZGF0ZSA9IGNvbnZlcnRUb0J1ZmZlcihkYXRhKTtcbiAgICBjb25zdCB0eXBlZEFycmF5ID0gbmV3IFVpbnQ4QXJyYXkoXG4gICAgICB0aGlzLnRvSGFzaC5ieXRlTGVuZ3RoICsgdXBkYXRlLmJ5dGVMZW5ndGhcbiAgICApO1xuICAgIHR5cGVkQXJyYXkuc2V0KHRoaXMudG9IYXNoLCAwKTtcbiAgICB0eXBlZEFycmF5LnNldCh1cGRhdGUsIHRoaXMudG9IYXNoLmJ5dGVMZW5ndGgpO1xuICAgIHRoaXMudG9IYXNoID0gdHlwZWRBcnJheTtcbiAgfVxuXG4gIGRpZ2VzdCgpOiBQcm9taXNlPFVpbnQ4QXJyYXk+IHtcbiAgICBpZiAodGhpcy5rZXkpIHtcbiAgICAgIHJldHVybiB0aGlzLmtleS50aGVuKChrZXkpID0+XG4gICAgICAgIGxvY2F0ZVdpbmRvdygpXG4gICAgICAgICAgLmNyeXB0by5zdWJ0bGUuc2lnbihTSEFfMjU2X0hNQUNfQUxHTywga2V5LCB0aGlzLnRvSGFzaClcbiAgICAgICAgICAudGhlbigoZGF0YSkgPT4gbmV3IFVpbnQ4QXJyYXkoZGF0YSkpXG4gICAgICApO1xuICAgIH1cblxuICAgIGlmIChpc0VtcHR5RGF0YSh0aGlzLnRvSGFzaCkpIHtcbiAgICAgIHJldHVybiBQcm9taXNlLnJlc29sdmUoRU1QVFlfREFUQV9TSEFfMjU2KTtcbiAgICB9XG5cbiAgICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKClcbiAgICAgIC50aGVuKCgpID0+XG4gICAgICAgIGxvY2F0ZVdpbmRvdygpLmNyeXB0by5zdWJ0bGUuZGlnZXN0KFNIQV8yNTZfSEFTSCwgdGhpcy50b0hhc2gpXG4gICAgICApXG4gICAgICAudGhlbigoZGF0YSkgPT4gUHJvbWlzZS5yZXNvbHZlKG5ldyBVaW50OEFycmF5KGRhdGEpKSk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js ***! \***********************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/RawSha256.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/RawSha256.js ***! \*****************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.RawSha256 = void 0;\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/constants.js\");\n/**\n * @internal\n */\nvar RawSha256 = /** @class */ (function () {\n function RawSha256() {\n this.state = Int32Array.from(constants_1.INIT);\n this.temp = new Int32Array(64);\n this.buffer = new Uint8Array(64);\n this.bufferLength = 0;\n this.bytesHashed = 0;\n /**\n * @internal\n */\n this.finished = false;\n }\n RawSha256.prototype.update = function (data) {\n if (this.finished) {\n throw new Error(\"Attempted to update an already finished hash.\");\n }\n var position = 0;\n var byteLength = data.byteLength;\n this.bytesHashed += byteLength;\n if (this.bytesHashed * 8 > constants_1.MAX_HASHABLE_LENGTH) {\n throw new Error(\"Cannot hash more than 2^53 - 1 bits\");\n }\n while (byteLength > 0) {\n this.buffer[this.bufferLength++] = data[position++];\n byteLength--;\n if (this.bufferLength === constants_1.BLOCK_SIZE) {\n this.hashBuffer();\n this.bufferLength = 0;\n }\n }\n };\n RawSha256.prototype.digest = function () {\n if (!this.finished) {\n var bitsHashed = this.bytesHashed * 8;\n var bufferView = new DataView(this.buffer.buffer, this.buffer.byteOffset, this.buffer.byteLength);\n var undecoratedLength = this.bufferLength;\n bufferView.setUint8(this.bufferLength++, 0x80);\n // Ensure the final block has enough room for the hashed length\n if (undecoratedLength % constants_1.BLOCK_SIZE >= constants_1.BLOCK_SIZE - 8) {\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE; i++) {\n bufferView.setUint8(i, 0);\n }\n this.hashBuffer();\n this.bufferLength = 0;\n }\n for (var i = this.bufferLength; i < constants_1.BLOCK_SIZE - 8; i++) {\n bufferView.setUint8(i, 0);\n }\n bufferView.setUint32(constants_1.BLOCK_SIZE - 8, Math.floor(bitsHashed / 0x100000000), true);\n bufferView.setUint32(constants_1.BLOCK_SIZE - 4, bitsHashed);\n this.hashBuffer();\n this.finished = true;\n }\n // The value in state is little-endian rather than big-endian, so flip\n // each word into a new Uint8Array\n var out = new Uint8Array(constants_1.DIGEST_LENGTH);\n for (var i = 0; i < 8; i++) {\n out[i * 4] = (this.state[i] >>> 24) & 0xff;\n out[i * 4 + 1] = (this.state[i] >>> 16) & 0xff;\n out[i * 4 + 2] = (this.state[i] >>> 8) & 0xff;\n out[i * 4 + 3] = (this.state[i] >>> 0) & 0xff;\n }\n return out;\n };\n RawSha256.prototype.hashBuffer = function () {\n var _a = this, buffer = _a.buffer, state = _a.state;\n var state0 = state[0], state1 = state[1], state2 = state[2], state3 = state[3], state4 = state[4], state5 = state[5], state6 = state[6], state7 = state[7];\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n if (i < 16) {\n this.temp[i] =\n ((buffer[i * 4] & 0xff) << 24) |\n ((buffer[i * 4 + 1] & 0xff) << 16) |\n ((buffer[i * 4 + 2] & 0xff) << 8) |\n (buffer[i * 4 + 3] & 0xff);\n }\n else {\n var u = this.temp[i - 2];\n var t1_1 = ((u >>> 17) | (u << 15)) ^ ((u >>> 19) | (u << 13)) ^ (u >>> 10);\n u = this.temp[i - 15];\n var t2_1 = ((u >>> 7) | (u << 25)) ^ ((u >>> 18) | (u << 14)) ^ (u >>> 3);\n this.temp[i] =\n ((t1_1 + this.temp[i - 7]) | 0) + ((t2_1 + this.temp[i - 16]) | 0);\n }\n var t1 = ((((((state4 >>> 6) | (state4 << 26)) ^\n ((state4 >>> 11) | (state4 << 21)) ^\n ((state4 >>> 25) | (state4 << 7))) +\n ((state4 & state5) ^ (~state4 & state6))) |\n 0) +\n ((state7 + ((constants_1.KEY[i] + this.temp[i]) | 0)) | 0)) |\n 0;\n var t2 = ((((state0 >>> 2) | (state0 << 30)) ^\n ((state0 >>> 13) | (state0 << 19)) ^\n ((state0 >>> 22) | (state0 << 10))) +\n ((state0 & state1) ^ (state0 & state2) ^ (state1 & state2))) |\n 0;\n state7 = state6;\n state6 = state5;\n state5 = state4;\n state4 = (state3 + t1) | 0;\n state3 = state2;\n state2 = state1;\n state1 = state0;\n state0 = (t1 + t2) | 0;\n }\n state[0] += state0;\n state[1] += state1;\n state[2] += state2;\n state[3] += state3;\n state[4] += state4;\n state[5] += state5;\n state[6] += state6;\n state[7] += state7;\n };\n return RawSha256;\n}());\nexports.RawSha256 = RawSha256;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUmF3U2hhMjU2LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL1Jhd1NoYTI1Ni50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FNcUI7QUFFckI7O0dBRUc7QUFDSDtJQUFBO1FBQ1UsVUFBSyxHQUFlLFVBQVUsQ0FBQyxJQUFJLENBQUMsZ0JBQUksQ0FBQyxDQUFDO1FBQzFDLFNBQUksR0FBZSxJQUFJLFVBQVUsQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUN0QyxXQUFNLEdBQWUsSUFBSSxVQUFVLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDeEMsaUJBQVksR0FBVyxDQUFDLENBQUM7UUFDekIsZ0JBQVcsR0FBVyxDQUFDLENBQUM7UUFFaEM7O1dBRUc7UUFDSCxhQUFRLEdBQVksS0FBSyxDQUFDO0lBOEk1QixDQUFDO0lBNUlDLDBCQUFNLEdBQU4sVUFBTyxJQUFnQjtRQUNyQixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDakIsTUFBTSxJQUFJLEtBQUssQ0FBQywrQ0FBK0MsQ0FBQyxDQUFDO1NBQ2xFO1FBRUQsSUFBSSxRQUFRLEdBQUcsQ0FBQyxDQUFDO1FBQ1gsSUFBQSxVQUFVLEdBQUssSUFBSSxXQUFULENBQVU7UUFDMUIsSUFBSSxDQUFDLFdBQVcsSUFBSSxVQUFVLENBQUM7UUFFL0IsSUFBSSxJQUFJLENBQUMsV0FBVyxHQUFHLENBQUMsR0FBRywrQkFBbUIsRUFBRTtZQUM5QyxNQUFNLElBQUksS0FBSyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7U0FDeEQ7UUFFRCxPQUFPLFVBQVUsR0FBRyxDQUFDLEVBQUU7WUFDckIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQztZQUNwRCxVQUFVLEVBQUUsQ0FBQztZQUViLElBQUksSUFBSSxDQUFDLFlBQVksS0FBSyxzQkFBVSxFQUFFO2dCQUNwQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7Z0JBQ2xCLElBQUksQ0FBQyxZQUFZLEdBQUcsQ0FBQyxDQUFDO2FBQ3ZCO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsMEJBQU0sR0FBTjtRQUNFLElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2xCLElBQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxDQUFDO1lBQ3hDLElBQU0sVUFBVSxHQUFHLElBQUksUUFBUSxDQUM3QixJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sRUFDbEIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLEVBQ3RCLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUN2QixDQUFDO1lBRUYsSUFBTSxpQkFBaUIsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDO1lBQzVDLFVBQVUsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO1lBRS9DLCtEQUErRDtZQUMvRCxJQUFJLGlCQUFpQixHQUFHLHNCQUFVLElBQUksc0JBQVUsR0FBRyxDQUFDLEVBQUU7Z0JBQ3BELEtBQUssSUFBSSxDQUFDLEdBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDLEdBQUcsc0JBQVUsRUFBRSxDQUFDLEVBQUUsRUFBRTtvQkFDbkQsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7aUJBQzNCO2dCQUNELElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztnQkFDbEIsSUFBSSxDQUFDLFlBQVksR0FBRyxDQUFDLENBQUM7YUFDdkI7WUFFRCxLQUFLLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQyxHQUFHLHNCQUFVLEdBQUcsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUN2RCxVQUFVLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQzthQUMzQjtZQUNELFVBQVUsQ0FBQyxTQUFTLENBQ2xCLHNCQUFVLEdBQUcsQ0FBQyxFQUNkLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxHQUFHLFdBQVcsQ0FBQyxFQUNwQyxJQUFJLENBQ0wsQ0FBQztZQUNGLFVBQVUsQ0FBQyxTQUFTLENBQUMsc0JBQVUsR0FBRyxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7WUFFakQsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBRWxCLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDO1NBQ3RCO1FBRUQsc0VBQXNFO1FBQ3RFLGtDQUFrQztRQUNsQyxJQUFNLEdBQUcsR0FBRyxJQUFJLFVBQVUsQ0FBQyx5QkFBYSxDQUFDLENBQUM7UUFDMUMsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRTtZQUMxQixHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUM7WUFDM0MsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxHQUFHLElBQUksQ0FBQztZQUMvQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDO1lBQzlDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUM7U0FDL0M7UUFFRCxPQUFPLEdBQUcsQ0FBQztJQUNiLENBQUM7SUFFTyw4QkFBVSxHQUFsQjtRQUNRLElBQUEsS0FBb0IsSUFBSSxFQUF0QixNQUFNLFlBQUEsRUFBRSxLQUFLLFdBQVMsQ0FBQztRQUUvQixJQUFJLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ25CLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ2pCLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFFcEIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLHNCQUFVLEVBQUUsQ0FBQyxFQUFFLEVBQUU7WUFDbkMsSUFBSSxDQUFDLEdBQUcsRUFBRSxFQUFFO2dCQUNWLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDO29CQUNWLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQzt3QkFDOUIsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQzt3QkFDbEMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQzt3QkFDakMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQzthQUM5QjtpQkFBTTtnQkFDTCxJQUFJLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztnQkFDekIsSUFBTSxJQUFFLEdBQ04sQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztnQkFFbkUsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDO2dCQUN0QixJQUFNLElBQUUsR0FDTixDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO2dCQUVqRSxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztvQkFDVixDQUFDLENBQUMsSUFBRSxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUUsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO2FBQ2xFO1lBRUQsSUFBTSxFQUFFLEdBQ04sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUNuQyxDQUFDLENBQUMsTUFBTSxLQUFLLEVBQUUsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUNsQyxDQUFDLENBQUMsTUFBTSxLQUFLLEVBQUUsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ2xDLENBQUMsQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUMsQ0FBQyxDQUFDO2dCQUN6QyxDQUFDLENBQUM7Z0JBQ0YsQ0FBQyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsZUFBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO2dCQUNqRCxDQUFDLENBQUM7WUFFSixJQUFNLEVBQUUsR0FDTixDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQztnQkFDakMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQztnQkFDbEMsQ0FBQyxDQUFDLE1BQU0sS0FBSyxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDO2dCQUNuQyxDQUFDLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQyxDQUFDLENBQUM7Z0JBQzlELENBQUMsQ0FBQztZQUVKLE1BQU0sR0FBRyxNQUFNLENBQUM7WUFDaEIsTUFBTSxHQUFHLE1BQU0sQ0FBQztZQUNoQixNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQ2hCLE1BQU0sR0FBRyxDQUFDLE1BQU0sR0FBRyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDM0IsTUFBTSxHQUFHLE1BQU0sQ0FBQztZQUNoQixNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQ2hCLE1BQU0sR0FBRyxNQUFNLENBQUM7WUFDaEIsTUFBTSxHQUFHLENBQUMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQztTQUN4QjtRQUVELEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztRQUNuQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksTUFBTSxDQUFDO1FBQ25CLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztRQUNuQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksTUFBTSxDQUFDO1FBQ25CLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUM7UUFDbkIsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBQ0gsZ0JBQUM7QUFBRCxDQUFDLEFBeEpELElBd0pDO0FBeEpZLDhCQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQkxPQ0tfU0laRSxcbiAgRElHRVNUX0xFTkdUSCxcbiAgSU5JVCxcbiAgS0VZLFxuICBNQVhfSEFTSEFCTEVfTEVOR1RIXG59IGZyb20gXCIuL2NvbnN0YW50c1wiO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY2xhc3MgUmF3U2hhMjU2IHtcbiAgcHJpdmF0ZSBzdGF0ZTogSW50MzJBcnJheSA9IEludDMyQXJyYXkuZnJvbShJTklUKTtcbiAgcHJpdmF0ZSB0ZW1wOiBJbnQzMkFycmF5ID0gbmV3IEludDMyQXJyYXkoNjQpO1xuICBwcml2YXRlIGJ1ZmZlcjogVWludDhBcnJheSA9IG5ldyBVaW50OEFycmF5KDY0KTtcbiAgcHJpdmF0ZSBidWZmZXJMZW5ndGg6IG51bWJlciA9IDA7XG4gIHByaXZhdGUgYnl0ZXNIYXNoZWQ6IG51bWJlciA9IDA7XG5cbiAgLyoqXG4gICAqIEBpbnRlcm5hbFxuICAgKi9cbiAgZmluaXNoZWQ6IGJvb2xlYW4gPSBmYWxzZTtcblxuICB1cGRhdGUoZGF0YTogVWludDhBcnJheSk6IHZvaWQge1xuICAgIGlmICh0aGlzLmZpbmlzaGVkKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXCJBdHRlbXB0ZWQgdG8gdXBkYXRlIGFuIGFscmVhZHkgZmluaXNoZWQgaGFzaC5cIik7XG4gICAgfVxuXG4gICAgbGV0IHBvc2l0aW9uID0gMDtcbiAgICBsZXQgeyBieXRlTGVuZ3RoIH0gPSBkYXRhO1xuICAgIHRoaXMuYnl0ZXNIYXNoZWQgKz0gYnl0ZUxlbmd0aDtcblxuICAgIGlmICh0aGlzLmJ5dGVzSGFzaGVkICogOCA+IE1BWF9IQVNIQUJMRV9MRU5HVEgpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIkNhbm5vdCBoYXNoIG1vcmUgdGhhbiAyXjUzIC0gMSBiaXRzXCIpO1xuICAgIH1cblxuICAgIHdoaWxlIChieXRlTGVuZ3RoID4gMCkge1xuICAgICAgdGhpcy5idWZmZXJbdGhpcy5idWZmZXJMZW5ndGgrK10gPSBkYXRhW3Bvc2l0aW9uKytdO1xuICAgICAgYnl0ZUxlbmd0aC0tO1xuXG4gICAgICBpZiAodGhpcy5idWZmZXJMZW5ndGggPT09IEJMT0NLX1NJWkUpIHtcbiAgICAgICAgdGhpcy5oYXNoQnVmZmVyKCk7XG4gICAgICAgIHRoaXMuYnVmZmVyTGVuZ3RoID0gMDtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICBkaWdlc3QoKTogVWludDhBcnJheSB7XG4gICAgaWYgKCF0aGlzLmZpbmlzaGVkKSB7XG4gICAgICBjb25zdCBiaXRzSGFzaGVkID0gdGhpcy5ieXRlc0hhc2hlZCAqIDg7XG4gICAgICBjb25zdCBidWZmZXJWaWV3ID0gbmV3IERhdGFWaWV3KFxuICAgICAgICB0aGlzLmJ1ZmZlci5idWZmZXIsXG4gICAgICAgIHRoaXMuYnVmZmVyLmJ5dGVPZmZzZXQsXG4gICAgICAgIHRoaXMuYnVmZmVyLmJ5dGVMZW5ndGhcbiAgICAgICk7XG5cbiAgICAgIGNvbnN0IHVuZGVjb3JhdGVkTGVuZ3RoID0gdGhpcy5idWZmZXJMZW5ndGg7XG4gICAgICBidWZmZXJWaWV3LnNldFVpbnQ4KHRoaXMuYnVmZmVyTGVuZ3RoKyssIDB4ODApO1xuXG4gICAgICAvLyBFbnN1cmUgdGhlIGZpbmFsIGJsb2NrIGhhcyBlbm91Z2ggcm9vbSBmb3IgdGhlIGhhc2hlZCBsZW5ndGhcbiAgICAgIGlmICh1bmRlY29yYXRlZExlbmd0aCAlIEJMT0NLX1NJWkUgPj0gQkxPQ0tfU0laRSAtIDgpIHtcbiAgICAgICAgZm9yIChsZXQgaSA9IHRoaXMuYnVmZmVyTGVuZ3RoOyBpIDwgQkxPQ0tfU0laRTsgaSsrKSB7XG4gICAgICAgICAgYnVmZmVyVmlldy5zZXRVaW50OChpLCAwKTtcbiAgICAgICAgfVxuICAgICAgICB0aGlzLmhhc2hCdWZmZXIoKTtcbiAgICAgICAgdGhpcy5idWZmZXJMZW5ndGggPSAwO1xuICAgICAgfVxuXG4gICAgICBmb3IgKGxldCBpID0gdGhpcy5idWZmZXJMZW5ndGg7IGkgPCBCTE9DS19TSVpFIC0gODsgaSsrKSB7XG4gICAgICAgIGJ1ZmZlclZpZXcuc2V0VWludDgoaSwgMCk7XG4gICAgICB9XG4gICAgICBidWZmZXJWaWV3LnNldFVpbnQzMihcbiAgICAgICAgQkxPQ0tfU0laRSAtIDgsXG4gICAgICAgIE1hdGguZmxvb3IoYml0c0hhc2hlZCAvIDB4MTAwMDAwMDAwKSxcbiAgICAgICAgdHJ1ZVxuICAgICAgKTtcbiAgICAgIGJ1ZmZlclZpZXcuc2V0VWludDMyKEJMT0NLX1NJWkUgLSA0LCBiaXRzSGFzaGVkKTtcblxuICAgICAgdGhpcy5oYXNoQnVmZmVyKCk7XG5cbiAgICAgIHRoaXMuZmluaXNoZWQgPSB0cnVlO1xuICAgIH1cblxuICAgIC8vIFRoZSB2YWx1ZSBpbiBzdGF0ZSBpcyBsaXR0bGUtZW5kaWFuIHJhdGhlciB0aGFuIGJpZy1lbmRpYW4sIHNvIGZsaXBcbiAgICAvLyBlYWNoIHdvcmQgaW50byBhIG5ldyBVaW50OEFycmF5XG4gICAgY29uc3Qgb3V0ID0gbmV3IFVpbnQ4QXJyYXkoRElHRVNUX0xFTkdUSCk7XG4gICAgZm9yIChsZXQgaSA9IDA7IGkgPCA4OyBpKyspIHtcbiAgICAgIG91dFtpICogNF0gPSAodGhpcy5zdGF0ZVtpXSA+Pj4gMjQpICYgMHhmZjtcbiAgICAgIG91dFtpICogNCArIDFdID0gKHRoaXMuc3RhdGVbaV0gPj4+IDE2KSAmIDB4ZmY7XG4gICAgICBvdXRbaSAqIDQgKyAyXSA9ICh0aGlzLnN0YXRlW2ldID4+PiA4KSAmIDB4ZmY7XG4gICAgICBvdXRbaSAqIDQgKyAzXSA9ICh0aGlzLnN0YXRlW2ldID4+PiAwKSAmIDB4ZmY7XG4gICAgfVxuXG4gICAgcmV0dXJuIG91dDtcbiAgfVxuXG4gIHByaXZhdGUgaGFzaEJ1ZmZlcigpOiB2b2lkIHtcbiAgICBjb25zdCB7IGJ1ZmZlciwgc3RhdGUgfSA9IHRoaXM7XG5cbiAgICBsZXQgc3RhdGUwID0gc3RhdGVbMF0sXG4gICAgICBzdGF0ZTEgPSBzdGF0ZVsxXSxcbiAgICAgIHN0YXRlMiA9IHN0YXRlWzJdLFxuICAgICAgc3RhdGUzID0gc3RhdGVbM10sXG4gICAgICBzdGF0ZTQgPSBzdGF0ZVs0XSxcbiAgICAgIHN0YXRlNSA9IHN0YXRlWzVdLFxuICAgICAgc3RhdGU2ID0gc3RhdGVbNl0sXG4gICAgICBzdGF0ZTcgPSBzdGF0ZVs3XTtcblxuICAgIGZvciAobGV0IGkgPSAwOyBpIDwgQkxPQ0tfU0laRTsgaSsrKSB7XG4gICAgICBpZiAoaSA8IDE2KSB7XG4gICAgICAgIHRoaXMudGVtcFtpXSA9XG4gICAgICAgICAgKChidWZmZXJbaSAqIDRdICYgMHhmZikgPDwgMjQpIHxcbiAgICAgICAgICAoKGJ1ZmZlcltpICogNCArIDFdICYgMHhmZikgPDwgMTYpIHxcbiAgICAgICAgICAoKGJ1ZmZlcltpICogNCArIDJdICYgMHhmZikgPDwgOCkgfFxuICAgICAgICAgIChidWZmZXJbaSAqIDQgKyAzXSAmIDB4ZmYpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgbGV0IHUgPSB0aGlzLnRlbXBbaSAtIDJdO1xuICAgICAgICBjb25zdCB0MSA9XG4gICAgICAgICAgKCh1ID4+PiAxNykgfCAodSA8PCAxNSkpIF4gKCh1ID4+PiAxOSkgfCAodSA8PCAxMykpIF4gKHUgPj4+IDEwKTtcblxuICAgICAgICB1ID0gdGhpcy50ZW1wW2kgLSAxNV07XG4gICAgICAgIGNvbnN0IHQyID1cbiAgICAgICAgICAoKHUgPj4+IDcpIHwgKHUgPDwgMjUpKSBeICgodSA+Pj4gMTgpIHwgKHUgPDwgMTQpKSBeICh1ID4+PiAzKTtcblxuICAgICAgICB0aGlzLnRlbXBbaV0gPVxuICAgICAgICAgICgodDEgKyB0aGlzLnRlbXBbaSAtIDddKSB8IDApICsgKCh0MiArIHRoaXMudGVtcFtpIC0gMTZdKSB8IDApO1xuICAgICAgfVxuXG4gICAgICBjb25zdCB0MSA9XG4gICAgICAgICgoKCgoKHN0YXRlNCA+Pj4gNikgfCAoc3RhdGU0IDw8IDI2KSkgXlxuICAgICAgICAgICgoc3RhdGU0ID4+PiAxMSkgfCAoc3RhdGU0IDw8IDIxKSkgXlxuICAgICAgICAgICgoc3RhdGU0ID4+PiAyNSkgfCAoc3RhdGU0IDw8IDcpKSkgK1xuICAgICAgICAgICgoc3RhdGU0ICYgc3RhdGU1KSBeICh+c3RhdGU0ICYgc3RhdGU2KSkpIHxcbiAgICAgICAgICAwKSArXG4gICAgICAgICAgKChzdGF0ZTcgKyAoKEtFWVtpXSArIHRoaXMudGVtcFtpXSkgfCAwKSkgfCAwKSkgfFxuICAgICAgICAwO1xuXG4gICAgICBjb25zdCB0MiA9XG4gICAgICAgICgoKChzdGF0ZTAgPj4+IDIpIHwgKHN0YXRlMCA8PCAzMCkpIF5cbiAgICAgICAgICAoKHN0YXRlMCA+Pj4gMTMpIHwgKHN0YXRlMCA8PCAxOSkpIF5cbiAgICAgICAgICAoKHN0YXRlMCA+Pj4gMjIpIHwgKHN0YXRlMCA8PCAxMCkpKSArXG4gICAgICAgICAgKChzdGF0ZTAgJiBzdGF0ZTEpIF4gKHN0YXRlMCAmIHN0YXRlMikgXiAoc3RhdGUxICYgc3RhdGUyKSkpIHxcbiAgICAgICAgMDtcblxuICAgICAgc3RhdGU3ID0gc3RhdGU2O1xuICAgICAgc3RhdGU2ID0gc3RhdGU1O1xuICAgICAgc3RhdGU1ID0gc3RhdGU0O1xuICAgICAgc3RhdGU0ID0gKHN0YXRlMyArIHQxKSB8IDA7XG4gICAgICBzdGF0ZTMgPSBzdGF0ZTI7XG4gICAgICBzdGF0ZTIgPSBzdGF0ZTE7XG4gICAgICBzdGF0ZTEgPSBzdGF0ZTA7XG4gICAgICBzdGF0ZTAgPSAodDEgKyB0MikgfCAwO1xuICAgIH1cblxuICAgIHN0YXRlWzBdICs9IHN0YXRlMDtcbiAgICBzdGF0ZVsxXSArPSBzdGF0ZTE7XG4gICAgc3RhdGVbMl0gKz0gc3RhdGUyO1xuICAgIHN0YXRlWzNdICs9IHN0YXRlMztcbiAgICBzdGF0ZVs0XSArPSBzdGF0ZTQ7XG4gICAgc3RhdGVbNV0gKz0gc3RhdGU1O1xuICAgIHN0YXRlWzZdICs9IHN0YXRlNjtcbiAgICBzdGF0ZVs3XSArPSBzdGF0ZTc7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/RawSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/constants.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/constants.js ***! \*****************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.MAX_HASHABLE_LENGTH = exports.INIT = exports.KEY = exports.DIGEST_LENGTH = exports.BLOCK_SIZE = void 0;\n/**\n * @internal\n */\nexports.BLOCK_SIZE = 64;\n/**\n * @internal\n */\nexports.DIGEST_LENGTH = 32;\n/**\n * @internal\n */\nexports.KEY = new Uint32Array([\n 0x428a2f98,\n 0x71374491,\n 0xb5c0fbcf,\n 0xe9b5dba5,\n 0x3956c25b,\n 0x59f111f1,\n 0x923f82a4,\n 0xab1c5ed5,\n 0xd807aa98,\n 0x12835b01,\n 0x243185be,\n 0x550c7dc3,\n 0x72be5d74,\n 0x80deb1fe,\n 0x9bdc06a7,\n 0xc19bf174,\n 0xe49b69c1,\n 0xefbe4786,\n 0x0fc19dc6,\n 0x240ca1cc,\n 0x2de92c6f,\n 0x4a7484aa,\n 0x5cb0a9dc,\n 0x76f988da,\n 0x983e5152,\n 0xa831c66d,\n 0xb00327c8,\n 0xbf597fc7,\n 0xc6e00bf3,\n 0xd5a79147,\n 0x06ca6351,\n 0x14292967,\n 0x27b70a85,\n 0x2e1b2138,\n 0x4d2c6dfc,\n 0x53380d13,\n 0x650a7354,\n 0x766a0abb,\n 0x81c2c92e,\n 0x92722c85,\n 0xa2bfe8a1,\n 0xa81a664b,\n 0xc24b8b70,\n 0xc76c51a3,\n 0xd192e819,\n 0xd6990624,\n 0xf40e3585,\n 0x106aa070,\n 0x19a4c116,\n 0x1e376c08,\n 0x2748774c,\n 0x34b0bcb5,\n 0x391c0cb3,\n 0x4ed8aa4a,\n 0x5b9cca4f,\n 0x682e6ff3,\n 0x748f82ee,\n 0x78a5636f,\n 0x84c87814,\n 0x8cc70208,\n 0x90befffa,\n 0xa4506ceb,\n 0xbef9a3f7,\n 0xc67178f2\n]);\n/**\n * @internal\n */\nexports.INIT = [\n 0x6a09e667,\n 0xbb67ae85,\n 0x3c6ef372,\n 0xa54ff53a,\n 0x510e527f,\n 0x9b05688c,\n 0x1f83d9ab,\n 0x5be0cd19\n];\n/**\n * @internal\n */\nexports.MAX_HASHABLE_LENGTH = Math.pow(2, 53) - 1;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQTs7R0FFRztBQUNVLFFBQUEsVUFBVSxHQUFXLEVBQUUsQ0FBQztBQUVyQzs7R0FFRztBQUNVLFFBQUEsYUFBYSxHQUFXLEVBQUUsQ0FBQztBQUV4Qzs7R0FFRztBQUNVLFFBQUEsR0FBRyxHQUFHLElBQUksV0FBVyxDQUFDO0lBQ2pDLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7Q0FDWCxDQUFDLENBQUM7QUFFSDs7R0FFRztBQUNVLFFBQUEsSUFBSSxHQUFHO0lBQ2xCLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0lBQ1YsVUFBVTtJQUNWLFVBQVU7SUFDVixVQUFVO0NBQ1gsQ0FBQztBQUVGOztHQUVHO0FBQ1UsUUFBQSxtQkFBbUIsR0FBRyxTQUFBLENBQUMsRUFBSSxFQUFFLENBQUEsR0FBRyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgQkxPQ0tfU0laRTogbnVtYmVyID0gNjQ7XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCBESUdFU1RfTEVOR1RIOiBudW1iZXIgPSAzMjtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IEtFWSA9IG5ldyBVaW50MzJBcnJheShbXG4gIDB4NDI4YTJmOTgsXG4gIDB4NzEzNzQ0OTEsXG4gIDB4YjVjMGZiY2YsXG4gIDB4ZTliNWRiYTUsXG4gIDB4Mzk1NmMyNWIsXG4gIDB4NTlmMTExZjEsXG4gIDB4OTIzZjgyYTQsXG4gIDB4YWIxYzVlZDUsXG4gIDB4ZDgwN2FhOTgsXG4gIDB4MTI4MzViMDEsXG4gIDB4MjQzMTg1YmUsXG4gIDB4NTUwYzdkYzMsXG4gIDB4NzJiZTVkNzQsXG4gIDB4ODBkZWIxZmUsXG4gIDB4OWJkYzA2YTcsXG4gIDB4YzE5YmYxNzQsXG4gIDB4ZTQ5YjY5YzEsXG4gIDB4ZWZiZTQ3ODYsXG4gIDB4MGZjMTlkYzYsXG4gIDB4MjQwY2ExY2MsXG4gIDB4MmRlOTJjNmYsXG4gIDB4NGE3NDg0YWEsXG4gIDB4NWNiMGE5ZGMsXG4gIDB4NzZmOTg4ZGEsXG4gIDB4OTgzZTUxNTIsXG4gIDB4YTgzMWM2NmQsXG4gIDB4YjAwMzI3YzgsXG4gIDB4YmY1OTdmYzcsXG4gIDB4YzZlMDBiZjMsXG4gIDB4ZDVhNzkxNDcsXG4gIDB4MDZjYTYzNTEsXG4gIDB4MTQyOTI5NjcsXG4gIDB4MjdiNzBhODUsXG4gIDB4MmUxYjIxMzgsXG4gIDB4NGQyYzZkZmMsXG4gIDB4NTMzODBkMTMsXG4gIDB4NjUwYTczNTQsXG4gIDB4NzY2YTBhYmIsXG4gIDB4ODFjMmM5MmUsXG4gIDB4OTI3MjJjODUsXG4gIDB4YTJiZmU4YTEsXG4gIDB4YTgxYTY2NGIsXG4gIDB4YzI0YjhiNzAsXG4gIDB4Yzc2YzUxYTMsXG4gIDB4ZDE5MmU4MTksXG4gIDB4ZDY5OTA2MjQsXG4gIDB4ZjQwZTM1ODUsXG4gIDB4MTA2YWEwNzAsXG4gIDB4MTlhNGMxMTYsXG4gIDB4MWUzNzZjMDgsXG4gIDB4Mjc0ODc3NGMsXG4gIDB4MzRiMGJjYjUsXG4gIDB4MzkxYzBjYjMsXG4gIDB4NGVkOGFhNGEsXG4gIDB4NWI5Y2NhNGYsXG4gIDB4NjgyZTZmZjMsXG4gIDB4NzQ4ZjgyZWUsXG4gIDB4NzhhNTYzNmYsXG4gIDB4ODRjODc4MTQsXG4gIDB4OGNjNzAyMDgsXG4gIDB4OTBiZWZmZmEsXG4gIDB4YTQ1MDZjZWIsXG4gIDB4YmVmOWEzZjcsXG4gIDB4YzY3MTc4ZjJcbl0pO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgSU5JVCA9IFtcbiAgMHg2YTA5ZTY2NyxcbiAgMHhiYjY3YWU4NSxcbiAgMHgzYzZlZjM3MixcbiAgMHhhNTRmZjUzYSxcbiAgMHg1MTBlNTI3ZixcbiAgMHg5YjA1Njg4YyxcbiAgMHgxZjgzZDlhYixcbiAgMHg1YmUwY2QxOVxuXTtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IE1BWF9IQVNIQUJMRV9MRU5HVEggPSAyICoqIDUzIC0gMTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/index.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/index.js ***! \*************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js\");\n(0, tslib_1.__exportStar)(__webpack_require__(/*! ./jsSha256 */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/jsSha256.js\"), exports);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsMERBQTJCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vanNTaGEyNTZcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/jsSha256.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/jsSha256.js ***! \****************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Sha256 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js\");\nvar constants_1 = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/constants.js\");\nvar RawSha256_1 = __webpack_require__(/*! ./RawSha256 */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/RawSha256.js\");\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/index.js\");\nvar Sha256 = /** @class */ (function () {\n function Sha256(secret) {\n this.hash = new RawSha256_1.RawSha256();\n if (secret) {\n this.outer = new RawSha256_1.RawSha256();\n var inner = bufferFromSecret(secret);\n var outer = new Uint8Array(constants_1.BLOCK_SIZE);\n outer.set(inner);\n for (var i = 0; i < constants_1.BLOCK_SIZE; i++) {\n inner[i] ^= 0x36;\n outer[i] ^= 0x5c;\n }\n this.hash.update(inner);\n this.outer.update(outer);\n // overwrite the copied key in memory\n for (var i = 0; i < inner.byteLength; i++) {\n inner[i] = 0;\n }\n }\n }\n Sha256.prototype.update = function (toHash) {\n if ((0, util_1.isEmptyData)(toHash) || this.error) {\n return;\n }\n try {\n this.hash.update((0, util_1.convertToBuffer)(toHash));\n }\n catch (e) {\n this.error = e;\n }\n };\n /* This synchronous method keeps compatibility\n * with the v2 aws-sdk.\n */\n Sha256.prototype.digestSync = function () {\n if (this.error) {\n throw this.error;\n }\n if (this.outer) {\n if (!this.outer.finished) {\n this.outer.update(this.hash.digest());\n }\n return this.outer.digest();\n }\n return this.hash.digest();\n };\n /* The underlying digest method here is synchronous.\n * To keep the same interface with the other hash functions\n * the default is to expose this as an async method.\n * However, it can sometimes be useful to have a sync method.\n */\n Sha256.prototype.digest = function () {\n return (0, tslib_1.__awaiter)(this, void 0, void 0, function () {\n return (0, tslib_1.__generator)(this, function (_a) {\n return [2 /*return*/, this.digestSync()];\n });\n });\n };\n return Sha256;\n}());\nexports.Sha256 = Sha256;\nfunction bufferFromSecret(secret) {\n var input = (0, util_1.convertToBuffer)(secret);\n if (input.byteLength > constants_1.BLOCK_SIZE) {\n var bufferHash = new RawSha256_1.RawSha256();\n bufferHash.update(input);\n input = bufferHash.digest();\n }\n var buffer = new Uint8Array(constants_1.BLOCK_SIZE);\n buffer.set(input);\n return buffer;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianNTaGEyNTYuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvanNTaGEyNTYudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHlDQUF5QztBQUN6Qyx5Q0FBd0M7QUFFeEMseUNBQWdFO0FBRWhFO0lBS0UsZ0JBQVksTUFBbUI7UUFKZCxTQUFJLEdBQUcsSUFBSSxxQkFBUyxFQUFFLENBQUM7UUFLdEMsSUFBSSxNQUFNLEVBQUU7WUFDVixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUkscUJBQVMsRUFBRSxDQUFDO1lBQzdCLElBQU0sS0FBSyxHQUFHLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBQ3ZDLElBQU0sS0FBSyxHQUFHLElBQUksVUFBVSxDQUFDLHNCQUFVLENBQUMsQ0FBQztZQUN6QyxLQUFLLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBRWpCLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxzQkFBVSxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUNuQyxLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDO2dCQUNqQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDO2FBQ2xCO1lBRUQsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDeEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7WUFFekIscUNBQXFDO1lBQ3JDLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxLQUFLLENBQUMsVUFBVSxFQUFFLENBQUMsRUFBRSxFQUFFO2dCQUN6QyxLQUFLLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDO2FBQ2Q7U0FDRjtJQUNILENBQUM7SUFFRCx1QkFBTSxHQUFOLFVBQU8sTUFBa0I7UUFDdkIsSUFBSSxJQUFBLGtCQUFXLEVBQUMsTUFBTSxDQUFDLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNyQyxPQUFPO1NBQ1I7UUFFRCxJQUFJO1lBQ0YsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBQSxzQkFBZSxFQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7U0FDM0M7UUFBQyxPQUFPLENBQUMsRUFBRTtZQUNWLElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO1NBQ2hCO0lBQ0gsQ0FBQztJQUVEOztPQUVHO0lBQ0gsMkJBQVUsR0FBVjtRQUNFLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNkLE1BQU0sSUFBSSxDQUFDLEtBQUssQ0FBQztTQUNsQjtRQUVELElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNkLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsRUFBRTtnQkFDeEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDO2FBQ3ZDO1lBRUQsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxDQUFDO1NBQzVCO1FBRUQsT0FBTyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDO0lBQzVCLENBQUM7SUFFRDs7OztPQUlHO0lBQ0csdUJBQU0sR0FBWjs7O2dCQUNFLHNCQUFPLElBQUksQ0FBQyxVQUFVLEVBQUUsRUFBQzs7O0tBQzFCO0lBQ0gsYUFBQztBQUFELENBQUMsQUFsRUQsSUFrRUM7QUFsRVksd0JBQU07QUFvRW5CLFNBQVMsZ0JBQWdCLENBQUMsTUFBa0I7SUFDMUMsSUFBSSxLQUFLLEdBQUcsSUFBQSxzQkFBZSxFQUFDLE1BQU0sQ0FBQyxDQUFDO0lBRXBDLElBQUksS0FBSyxDQUFDLFVBQVUsR0FBRyxzQkFBVSxFQUFFO1FBQ2pDLElBQU0sVUFBVSxHQUFHLElBQUkscUJBQVMsRUFBRSxDQUFDO1FBQ25DLFVBQVUsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDekIsS0FBSyxHQUFHLFVBQVUsQ0FBQyxNQUFNLEVBQUUsQ0FBQztLQUM3QjtJQUVELElBQU0sTUFBTSxHQUFHLElBQUksVUFBVSxDQUFDLHNCQUFVLENBQUMsQ0FBQztJQUMxQyxNQUFNLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2xCLE9BQU8sTUFBTSxDQUFDO0FBQ2hCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCTE9DS19TSVpFIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5pbXBvcnQgeyBSYXdTaGEyNTYgfSBmcm9tIFwiLi9SYXdTaGEyNTZcIjtcbmltcG9ydCB7IEhhc2gsIFNvdXJjZURhdGEgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IGlzRW1wdHlEYXRhLCBjb252ZXJ0VG9CdWZmZXIgfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuXG5leHBvcnQgY2xhc3MgU2hhMjU2IGltcGxlbWVudHMgSGFzaCB7XG4gIHByaXZhdGUgcmVhZG9ubHkgaGFzaCA9IG5ldyBSYXdTaGEyNTYoKTtcbiAgcHJpdmF0ZSByZWFkb25seSBvdXRlcj86IFJhd1NoYTI1NjtcbiAgcHJpdmF0ZSBlcnJvcjogYW55O1xuXG4gIGNvbnN0cnVjdG9yKHNlY3JldD86IFNvdXJjZURhdGEpIHtcbiAgICBpZiAoc2VjcmV0KSB7XG4gICAgICB0aGlzLm91dGVyID0gbmV3IFJhd1NoYTI1NigpO1xuICAgICAgY29uc3QgaW5uZXIgPSBidWZmZXJGcm9tU2VjcmV0KHNlY3JldCk7XG4gICAgICBjb25zdCBvdXRlciA9IG5ldyBVaW50OEFycmF5KEJMT0NLX1NJWkUpO1xuICAgICAgb3V0ZXIuc2V0KGlubmVyKTtcblxuICAgICAgZm9yIChsZXQgaSA9IDA7IGkgPCBCTE9DS19TSVpFOyBpKyspIHtcbiAgICAgICAgaW5uZXJbaV0gXj0gMHgzNjtcbiAgICAgICAgb3V0ZXJbaV0gXj0gMHg1YztcbiAgICAgIH1cblxuICAgICAgdGhpcy5oYXNoLnVwZGF0ZShpbm5lcik7XG4gICAgICB0aGlzLm91dGVyLnVwZGF0ZShvdXRlcik7XG5cbiAgICAgIC8vIG92ZXJ3cml0ZSB0aGUgY29waWVkIGtleSBpbiBtZW1vcnlcbiAgICAgIGZvciAobGV0IGkgPSAwOyBpIDwgaW5uZXIuYnl0ZUxlbmd0aDsgaSsrKSB7XG4gICAgICAgIGlubmVyW2ldID0gMDtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICB1cGRhdGUodG9IYXNoOiBTb3VyY2VEYXRhKTogdm9pZCB7XG4gICAgaWYgKGlzRW1wdHlEYXRhKHRvSGFzaCkgfHwgdGhpcy5lcnJvcikge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHRyeSB7XG4gICAgICB0aGlzLmhhc2gudXBkYXRlKGNvbnZlcnRUb0J1ZmZlcih0b0hhc2gpKTtcbiAgICB9IGNhdGNoIChlKSB7XG4gICAgICB0aGlzLmVycm9yID0gZTtcbiAgICB9XG4gIH1cblxuICAvKiBUaGlzIHN5bmNocm9ub3VzIG1ldGhvZCBrZWVwcyBjb21wYXRpYmlsaXR5XG4gICAqIHdpdGggdGhlIHYyIGF3cy1zZGsuXG4gICAqL1xuICBkaWdlc3RTeW5jKCk6IFVpbnQ4QXJyYXkge1xuICAgIGlmICh0aGlzLmVycm9yKSB7XG4gICAgICB0aHJvdyB0aGlzLmVycm9yO1xuICAgIH1cblxuICAgIGlmICh0aGlzLm91dGVyKSB7XG4gICAgICBpZiAoIXRoaXMub3V0ZXIuZmluaXNoZWQpIHtcbiAgICAgICAgdGhpcy5vdXRlci51cGRhdGUodGhpcy5oYXNoLmRpZ2VzdCgpKTtcbiAgICAgIH1cblxuICAgICAgcmV0dXJuIHRoaXMub3V0ZXIuZGlnZXN0KCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXMuaGFzaC5kaWdlc3QoKTtcbiAgfVxuXG4gIC8qIFRoZSB1bmRlcmx5aW5nIGRpZ2VzdCBtZXRob2QgaGVyZSBpcyBzeW5jaHJvbm91cy5cbiAgICogVG8ga2VlcCB0aGUgc2FtZSBpbnRlcmZhY2Ugd2l0aCB0aGUgb3RoZXIgaGFzaCBmdW5jdGlvbnNcbiAgICogdGhlIGRlZmF1bHQgaXMgdG8gZXhwb3NlIHRoaXMgYXMgYW4gYXN5bmMgbWV0aG9kLlxuICAgKiBIb3dldmVyLCBpdCBjYW4gc29tZXRpbWVzIGJlIHVzZWZ1bCB0byBoYXZlIGEgc3luYyBtZXRob2QuXG4gICAqL1xuICBhc3luYyBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIHRoaXMuZGlnZXN0U3luYygpO1xuICB9XG59XG5cbmZ1bmN0aW9uIGJ1ZmZlckZyb21TZWNyZXQoc2VjcmV0OiBTb3VyY2VEYXRhKTogVWludDhBcnJheSB7XG4gIGxldCBpbnB1dCA9IGNvbnZlcnRUb0J1ZmZlcihzZWNyZXQpO1xuXG4gIGlmIChpbnB1dC5ieXRlTGVuZ3RoID4gQkxPQ0tfU0laRSkge1xuICAgIGNvbnN0IGJ1ZmZlckhhc2ggPSBuZXcgUmF3U2hhMjU2KCk7XG4gICAgYnVmZmVySGFzaC51cGRhdGUoaW5wdXQpO1xuICAgIGlucHV0ID0gYnVmZmVySGFzaC5kaWdlc3QoKTtcbiAgfVxuXG4gIGNvbnN0IGJ1ZmZlciA9IG5ldyBVaW50OEFycmF5KEJMT0NLX1NJWkUpO1xuICBidWZmZXIuc2V0KGlucHV0KTtcbiAgcmV0dXJuIGJ1ZmZlcjtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/build/jsSha256.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js ***! \******************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/build/index.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/build/index.js ***! \***********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js\");\ntslib_1.__exportStar(__webpack_require__(/*! ./supportsWebCrypto */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js\"), exports);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsOERBQW9DIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vc3VwcG9ydHNXZWJDcnlwdG9cIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js ***! \***********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.supportsZeroByteGCM = exports.supportsSubtleCrypto = exports.supportsSecureRandom = exports.supportsWebCrypto = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js\");\nvar subtleCryptoMethods = [\n \"decrypt\",\n \"digest\",\n \"encrypt\",\n \"exportKey\",\n \"generateKey\",\n \"importKey\",\n \"sign\",\n \"verify\"\n];\nfunction supportsWebCrypto(window) {\n if (supportsSecureRandom(window) &&\n typeof window.crypto.subtle === \"object\") {\n var subtle = window.crypto.subtle;\n return supportsSubtleCrypto(subtle);\n }\n return false;\n}\nexports.supportsWebCrypto = supportsWebCrypto;\nfunction supportsSecureRandom(window) {\n if (typeof window === \"object\" && typeof window.crypto === \"object\") {\n var getRandomValues = window.crypto.getRandomValues;\n return typeof getRandomValues === \"function\";\n }\n return false;\n}\nexports.supportsSecureRandom = supportsSecureRandom;\nfunction supportsSubtleCrypto(subtle) {\n return (subtle &&\n subtleCryptoMethods.every(function (methodName) { return typeof subtle[methodName] === \"function\"; }));\n}\nexports.supportsSubtleCrypto = supportsSubtleCrypto;\nfunction supportsZeroByteGCM(subtle) {\n return tslib_1.__awaiter(this, void 0, void 0, function () {\n var key, zeroByteAuthTag, _a;\n return tslib_1.__generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!supportsSubtleCrypto(subtle))\n return [2 /*return*/, false];\n _b.label = 1;\n case 1:\n _b.trys.push([1, 4, , 5]);\n return [4 /*yield*/, subtle.generateKey({ name: \"AES-GCM\", length: 128 }, false, [\"encrypt\"])];\n case 2:\n key = _b.sent();\n return [4 /*yield*/, subtle.encrypt({\n name: \"AES-GCM\",\n iv: new Uint8Array(Array(12)),\n additionalData: new Uint8Array(Array(16)),\n tagLength: 128\n }, key, new Uint8Array(0))];\n case 3:\n zeroByteAuthTag = _b.sent();\n return [2 /*return*/, zeroByteAuthTag.byteLength === 16];\n case 4:\n _a = _b.sent();\n return [2 /*return*/, false];\n case 5: return [2 /*return*/];\n }\n });\n });\n}\nexports.supportsZeroByteGCM = supportsZeroByteGCM;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VwcG9ydHNXZWJDcnlwdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvc3VwcG9ydHNXZWJDcnlwdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQVVBLElBQU0sbUJBQW1CLEdBQThCO0lBQ3JELFNBQVM7SUFDVCxRQUFRO0lBQ1IsU0FBUztJQUNULFdBQVc7SUFDWCxhQUFhO0lBQ2IsV0FBVztJQUNYLE1BQU07SUFDTixRQUFRO0NBQ1QsQ0FBQztBQUVGLFNBQWdCLGlCQUFpQixDQUFDLE1BQWM7SUFDOUMsSUFDRSxvQkFBb0IsQ0FBQyxNQUFNLENBQUM7UUFDNUIsT0FBTyxNQUFNLENBQUMsTUFBTSxDQUFDLE1BQU0sS0FBSyxRQUFRLEVBQ3hDO1FBQ1EsSUFBQSxNQUFNLEdBQUssTUFBTSxDQUFDLE1BQU0sT0FBbEIsQ0FBbUI7UUFFakMsT0FBTyxvQkFBb0IsQ0FBQyxNQUFNLENBQUMsQ0FBQztLQUNyQztJQUVELE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQztBQVhELDhDQVdDO0FBRUQsU0FBZ0Isb0JBQW9CLENBQUMsTUFBYztJQUNqRCxJQUFJLE9BQU8sTUFBTSxLQUFLLFFBQVEsSUFBSSxPQUFPLE1BQU0sQ0FBQyxNQUFNLEtBQUssUUFBUSxFQUFFO1FBQzNELElBQUEsZUFBZSxHQUFLLE1BQU0sQ0FBQyxNQUFNLGdCQUFsQixDQUFtQjtRQUUxQyxPQUFPLE9BQU8sZUFBZSxLQUFLLFVBQVUsQ0FBQztLQUM5QztJQUVELE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQztBQVJELG9EQVFDO0FBRUQsU0FBZ0Isb0JBQW9CLENBQUMsTUFBb0I7SUFDdkQsT0FBTyxDQUNMLE1BQU07UUFDTixtQkFBbUIsQ0FBQyxLQUFLLENBQ3ZCLFVBQUEsVUFBVSxJQUFJLE9BQUEsT0FBTyxNQUFNLENBQUMsVUFBVSxDQUFDLEtBQUssVUFBVSxFQUF4QyxDQUF3QyxDQUN2RCxDQUNGLENBQUM7QUFDSixDQUFDO0FBUEQsb0RBT0M7QUFFRCxTQUFzQixtQkFBbUIsQ0FBQyxNQUFvQjs7Ozs7O29CQUM1RCxJQUFJLENBQUMsb0JBQW9CLENBQUMsTUFBTSxDQUFDO3dCQUFFLHNCQUFPLEtBQUssRUFBQzs7OztvQkFFbEMscUJBQU0sTUFBTSxDQUFDLFdBQVcsQ0FDbEMsRUFBRSxJQUFJLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxHQUFHLEVBQUUsRUFDaEMsS0FBSyxFQUNMLENBQUMsU0FBUyxDQUFDLENBQ1osRUFBQTs7b0JBSkssR0FBRyxHQUFHLFNBSVg7b0JBQ3VCLHFCQUFNLE1BQU0sQ0FBQyxPQUFPLENBQzFDOzRCQUNFLElBQUksRUFBRSxTQUFTOzRCQUNmLEVBQUUsRUFBRSxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7NEJBQzdCLGNBQWMsRUFBRSxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7NEJBQ3pDLFNBQVMsRUFBRSxHQUFHO3lCQUNmLEVBQ0QsR0FBRyxFQUNILElBQUksVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUNsQixFQUFBOztvQkFUSyxlQUFlLEdBQUcsU0FTdkI7b0JBQ0Qsc0JBQU8sZUFBZSxDQUFDLFVBQVUsS0FBSyxFQUFFLEVBQUM7OztvQkFFekMsc0JBQU8sS0FBSyxFQUFDOzs7OztDQUVoQjtBQXRCRCxrREFzQkMiLCJzb3VyY2VzQ29udGVudCI6WyJ0eXBlIFN1YnRsZUNyeXB0b01ldGhvZCA9XG4gIHwgXCJkZWNyeXB0XCJcbiAgfCBcImRpZ2VzdFwiXG4gIHwgXCJlbmNyeXB0XCJcbiAgfCBcImV4cG9ydEtleVwiXG4gIHwgXCJnZW5lcmF0ZUtleVwiXG4gIHwgXCJpbXBvcnRLZXlcIlxuICB8IFwic2lnblwiXG4gIHwgXCJ2ZXJpZnlcIjtcblxuY29uc3Qgc3VidGxlQ3J5cHRvTWV0aG9kczogQXJyYXk8U3VidGxlQ3J5cHRvTWV0aG9kPiA9IFtcbiAgXCJkZWNyeXB0XCIsXG4gIFwiZGlnZXN0XCIsXG4gIFwiZW5jcnlwdFwiLFxuICBcImV4cG9ydEtleVwiLFxuICBcImdlbmVyYXRlS2V5XCIsXG4gIFwiaW1wb3J0S2V5XCIsXG4gIFwic2lnblwiLFxuICBcInZlcmlmeVwiXG5dO1xuXG5leHBvcnQgZnVuY3Rpb24gc3VwcG9ydHNXZWJDcnlwdG8od2luZG93OiBXaW5kb3cpOiBib29sZWFuIHtcbiAgaWYgKFxuICAgIHN1cHBvcnRzU2VjdXJlUmFuZG9tKHdpbmRvdykgJiZcbiAgICB0eXBlb2Ygd2luZG93LmNyeXB0by5zdWJ0bGUgPT09IFwib2JqZWN0XCJcbiAgKSB7XG4gICAgY29uc3QgeyBzdWJ0bGUgfSA9IHdpbmRvdy5jcnlwdG87XG5cbiAgICByZXR1cm4gc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlKTtcbiAgfVxuXG4gIHJldHVybiBmYWxzZTtcbn1cblxuZXhwb3J0IGZ1bmN0aW9uIHN1cHBvcnRzU2VjdXJlUmFuZG9tKHdpbmRvdzogV2luZG93KTogYm9vbGVhbiB7XG4gIGlmICh0eXBlb2Ygd2luZG93ID09PSBcIm9iamVjdFwiICYmIHR5cGVvZiB3aW5kb3cuY3J5cHRvID09PSBcIm9iamVjdFwiKSB7XG4gICAgY29uc3QgeyBnZXRSYW5kb21WYWx1ZXMgfSA9IHdpbmRvdy5jcnlwdG87XG5cbiAgICByZXR1cm4gdHlwZW9mIGdldFJhbmRvbVZhbHVlcyA9PT0gXCJmdW5jdGlvblwiO1xuICB9XG5cbiAgcmV0dXJuIGZhbHNlO1xufVxuXG5leHBvcnQgZnVuY3Rpb24gc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlOiBTdWJ0bGVDcnlwdG8pIHtcbiAgcmV0dXJuIChcbiAgICBzdWJ0bGUgJiZcbiAgICBzdWJ0bGVDcnlwdG9NZXRob2RzLmV2ZXJ5KFxuICAgICAgbWV0aG9kTmFtZSA9PiB0eXBlb2Ygc3VidGxlW21ldGhvZE5hbWVdID09PSBcImZ1bmN0aW9uXCJcbiAgICApXG4gICk7XG59XG5cbmV4cG9ydCBhc3luYyBmdW5jdGlvbiBzdXBwb3J0c1plcm9CeXRlR0NNKHN1YnRsZTogU3VidGxlQ3J5cHRvKSB7XG4gIGlmICghc3VwcG9ydHNTdWJ0bGVDcnlwdG8oc3VidGxlKSkgcmV0dXJuIGZhbHNlO1xuICB0cnkge1xuICAgIGNvbnN0IGtleSA9IGF3YWl0IHN1YnRsZS5nZW5lcmF0ZUtleShcbiAgICAgIHsgbmFtZTogXCJBRVMtR0NNXCIsIGxlbmd0aDogMTI4IH0sXG4gICAgICBmYWxzZSxcbiAgICAgIFtcImVuY3J5cHRcIl1cbiAgICApO1xuICAgIGNvbnN0IHplcm9CeXRlQXV0aFRhZyA9IGF3YWl0IHN1YnRsZS5lbmNyeXB0KFxuICAgICAge1xuICAgICAgICBuYW1lOiBcIkFFUy1HQ01cIixcbiAgICAgICAgaXY6IG5ldyBVaW50OEFycmF5KEFycmF5KDEyKSksXG4gICAgICAgIGFkZGl0aW9uYWxEYXRhOiBuZXcgVWludDhBcnJheShBcnJheSgxNikpLFxuICAgICAgICB0YWdMZW5ndGg6IDEyOFxuICAgICAgfSxcbiAgICAgIGtleSxcbiAgICAgIG5ldyBVaW50OEFycmF5KDApXG4gICAgKTtcbiAgICByZXR1cm4gemVyb0J5dGVBdXRoVGFnLmJ5dGVMZW5ndGggPT09IDE2O1xuICB9IGNhdGNoIHtcbiAgICByZXR1cm4gZmFsc2U7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js ***! \****************************************************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/convertToBuffer.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/convertToBuffer.js ***! \******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/* WEBPACK VAR INJECTION */(function(Buffer) {\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.convertToBuffer = void 0;\nvar util_utf8_browser_1 = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js\");\n// Quick polyfill\nvar fromUtf8 = typeof Buffer !== \"undefined\" && Buffer.from\n ? function (input) { return Buffer.from(input, \"utf8\"); }\n : util_utf8_browser_1.fromUtf8;\nfunction convertToBuffer(data) {\n // Already a Uint8, do nothing\n if (data instanceof Uint8Array)\n return data;\n if (typeof data === \"string\") {\n return fromUtf8(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\nexports.convertToBuffer = convertToBuffer;\n//# sourceMappingURL=convertToBuffer.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/convertToBuffer.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/index.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/index.js ***! \********************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = exports.numToUint8 = exports.isEmptyData = exports.convertToBuffer = void 0;\nvar convertToBuffer_1 = __webpack_require__(/*! ./convertToBuffer */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/convertToBuffer.js\");\nObject.defineProperty(exports, \"convertToBuffer\", { enumerable: true, get: function () { return convertToBuffer_1.convertToBuffer; } });\nvar isEmptyData_1 = __webpack_require__(/*! ./isEmptyData */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/isEmptyData.js\");\nObject.defineProperty(exports, \"isEmptyData\", { enumerable: true, get: function () { return isEmptyData_1.isEmptyData; } });\nvar numToUint8_1 = __webpack_require__(/*! ./numToUint8 */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/numToUint8.js\");\nObject.defineProperty(exports, \"numToUint8\", { enumerable: true, get: function () { return numToUint8_1.numToUint8; } });\nvar uint32ArrayFrom_1 = __webpack_require__(/*! ./uint32ArrayFrom */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js\");\nObject.defineProperty(exports, \"uint32ArrayFrom\", { enumerable: true, get: function () { return uint32ArrayFrom_1.uint32ArrayFrom; } });\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/isEmptyData.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/isEmptyData.js ***! \**************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isEmptyData = void 0;\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nexports.isEmptyData = isEmptyData;\n//# sourceMappingURL=isEmptyData.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/isEmptyData.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/numToUint8.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/numToUint8.js ***! \*************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.numToUint8 = void 0;\nfunction numToUint8(num) {\n return new Uint8Array([\n (num & 0xff000000) >> 24,\n (num & 0x00ff0000) >> 16,\n (num & 0x0000ff00) >> 8,\n num & 0x000000ff,\n ]);\n}\nexports.numToUint8 = numToUint8;\n//# sourceMappingURL=numToUint8.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/numToUint8.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js ***! \******************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.uint32ArrayFrom = void 0;\n// IE 11 does not support Array.from, so we do it manually\nfunction uint32ArrayFrom(a_lookUpTable) {\n if (!Uint32Array.from) {\n var return_array = new Uint32Array(a_lookUpTable.length);\n var a_index = 0;\n while (a_index < a_lookUpTable.length) {\n return_array[a_index] = a_lookUpTable[a_index];\n a_index += 1;\n }\n return return_array;\n }\n return Uint32Array.from(a_lookUpTable);\n}\nexports.uint32ArrayFrom = uint32ArrayFrom;\n//# sourceMappingURL=uint32ArrayFrom.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js": /*!******************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js ***! \******************************************************************************************************************************************************/ /*! exports provided: ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_DUALSTACK_ENDPOINT\", function() { return ENV_USE_DUALSTACK_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_DUALSTACK_ENDPOINT\", function() { return CONFIG_USE_DUALSTACK_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_DUALSTACK_ENDPOINT\", function() { return DEFAULT_USE_DUALSTACK_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\", function() { return NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS; });\n/* harmony import */ var _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/util-config-provider */ \"./node_modules/@aws-sdk/util-config-provider/dist-es/index.js\");\n\nvar ENV_USE_DUALSTACK_ENDPOINT = \"AWS_USE_DUALSTACK_ENDPOINT\";\nvar CONFIG_USE_DUALSTACK_ENDPOINT = \"use_dualstack_endpoint\";\nvar DEFAULT_USE_DUALSTACK_ENDPOINT = false;\nvar NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(env, ENV_USE_DUALSTACK_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].ENV);\n },\n configFileSelector: function (profile) { return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(profile, CONFIG_USE_DUALSTACK_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].CONFIG); },\n default: false,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js": /*!*************************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js ***! \*************************************************************************************************************************************************/ /*! exports provided: ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_FIPS_ENDPOINT\", function() { return ENV_USE_FIPS_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_FIPS_ENDPOINT\", function() { return CONFIG_USE_FIPS_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_FIPS_ENDPOINT\", function() { return DEFAULT_USE_FIPS_ENDPOINT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\", function() { return NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS; });\n/* harmony import */ var _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/util-config-provider */ \"./node_modules/@aws-sdk/util-config-provider/dist-es/index.js\");\n\nvar ENV_USE_FIPS_ENDPOINT = \"AWS_USE_FIPS_ENDPOINT\";\nvar CONFIG_USE_FIPS_ENDPOINT = \"use_fips_endpoint\";\nvar DEFAULT_USE_FIPS_ENDPOINT = false;\nvar NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(env, ENV_USE_FIPS_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].ENV);\n },\n configFileSelector: function (profile) { return Object(_aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"])(profile, CONFIG_USE_FIPS_ENDPOINT, _aws_sdk_util_config_provider__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"].CONFIG); },\n default: false,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js ***! \**********************************************************************************************************************/ /*! exports provided: ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveCustomEndpointsConfig, resolveEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./NodeUseDualstackEndpointConfigOptions */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_DUALSTACK_ENDPOINT\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"ENV_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_DUALSTACK_ENDPOINT\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"CONFIG_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_DUALSTACK_ENDPOINT\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\", function() { return _NodeUseDualstackEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_0__[\"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./NodeUseFipsEndpointConfigOptions */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_FIPS_ENDPOINT\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"ENV_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_FIPS_ENDPOINT\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"CONFIG_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_FIPS_ENDPOINT\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\", function() { return _NodeUseFipsEndpointConfigOptions__WEBPACK_IMPORTED_MODULE_1__[\"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _resolveCustomEndpointsConfig__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./resolveCustomEndpointsConfig */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveCustomEndpointsConfig\", function() { return _resolveCustomEndpointsConfig__WEBPACK_IMPORTED_MODULE_2__[\"resolveCustomEndpointsConfig\"]; });\n\n/* harmony import */ var _resolveEndpointsConfig__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./resolveEndpointsConfig */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return _resolveEndpointsConfig__WEBPACK_IMPORTED_MODULE_3__[\"resolveEndpointsConfig\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js": /*!*********************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js ***! \*********************************************************************************************************************************************/ /*! exports provided: resolveCustomEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveCustomEndpointsConfig\", function() { return resolveCustomEndpointsConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n\n\nvar resolveCustomEndpointsConfig = function (input) {\n var _a;\n var endpoint = input.endpoint, urlParser = input.urlParser;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { tls: (_a = input.tls) !== null && _a !== void 0 ? _a : true, endpoint: Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(typeof endpoint === \"string\" ? urlParser(endpoint) : endpoint), isCustomEndpoint: true, useDualstackEndpoint: Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(input.useDualstackEndpoint) });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js": /*!***************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js ***! \***************************************************************************************************************************************/ /*! exports provided: resolveEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return resolveEndpointsConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n/* harmony import */ var _utils_getEndpointFromRegion__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/getEndpointFromRegion */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js\");\n\n\n\nvar resolveEndpointsConfig = function (input) {\n var _a;\n var useDualstackEndpoint = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(input.useDualstackEndpoint);\n var endpoint = input.endpoint, useFipsEndpoint = input.useFipsEndpoint, urlParser = input.urlParser;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { tls: (_a = input.tls) !== null && _a !== void 0 ? _a : true, endpoint: endpoint\n ? Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(typeof endpoint === \"string\" ? urlParser(endpoint) : endpoint)\n : function () { return Object(_utils_getEndpointFromRegion__WEBPACK_IMPORTED_MODULE_2__[\"getEndpointFromRegion\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { useDualstackEndpoint: useDualstackEndpoint, useFipsEndpoint: useFipsEndpoint })); }, isCustomEndpoint: !!endpoint, useDualstackEndpoint: useDualstackEndpoint });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js": /*!********************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js ***! \********************************************************************************************************************************************/ /*! exports provided: getEndpointFromRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getEndpointFromRegion\", function() { return getEndpointFromRegion; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar getEndpointFromRegion = function (input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, tls, region, dnsHostRegex, useDualstackEndpoint, useFipsEndpoint, hostname;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = input.tls, tls = _a === void 0 ? true : _a;\n return [4, input.region()];\n case 1:\n region = _c.sent();\n dnsHostRegex = new RegExp(/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])$/);\n if (!dnsHostRegex.test(region)) {\n throw new Error(\"Invalid region in client config\");\n }\n return [4, input.useDualstackEndpoint()];\n case 2:\n useDualstackEndpoint = _c.sent();\n return [4, input.useFipsEndpoint()];\n case 3:\n useFipsEndpoint = _c.sent();\n return [4, input.regionInfoProvider(region, { useDualstackEndpoint: useDualstackEndpoint, useFipsEndpoint: useFipsEndpoint })];\n case 4:\n hostname = ((_b = (_c.sent())) !== null && _b !== void 0 ? _b : {}).hostname;\n if (!hostname) {\n throw new Error(\"Cannot resolve hostname from client config\");\n }\n return [2, input.urlParser(\"\".concat(tls ? \"https:\" : \"http:\", \"//\").concat(hostname))];\n }\n });\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/index.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/index.js ***! \******************************************************************************************************/ /*! exports provided: ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveCustomEndpointsConfig, resolveEndpointsConfig, REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig, getRegionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpointsConfig */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_DUALSTACK_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"ENV_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_DUALSTACK_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"CONFIG_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_DUALSTACK_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_USE_DUALSTACK_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_USE_FIPS_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"ENV_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_USE_FIPS_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"CONFIG_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_USE_FIPS_ENDPOINT\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_USE_FIPS_ENDPOINT\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveCustomEndpointsConfig\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveCustomEndpointsConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return _endpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveEndpointsConfig\"]; });\n\n/* harmony import */ var _regionConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./regionConfig */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"REGION_ENV_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"REGION_INI_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"NODE_REGION_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"NODE_REGION_CONFIG_FILE_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return _regionConfig__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"]; });\n\n/* harmony import */ var _regionInfo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./regionInfo */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRegionInfo\", function() { return _regionInfo__WEBPACK_IMPORTED_MODULE_2__[\"getRegionInfo\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js ***! \********************************************************************************************************************/ /*! exports provided: REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return REGION_ENV_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return REGION_INI_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return NODE_REGION_CONFIG_OPTIONS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return NODE_REGION_CONFIG_FILE_OPTIONS; });\nvar REGION_ENV_NAME = \"AWS_REGION\";\nvar REGION_INI_NAME = \"region\";\nvar NODE_REGION_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) { return env[REGION_ENV_NAME]; },\n configFileSelector: function (profile) { return profile[REGION_INI_NAME]; },\n default: function () {\n throw new Error(\"Region is missing\");\n },\n};\nvar NODE_REGION_CONFIG_FILE_OPTIONS = {\n preferredFile: \"credentials\",\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js ***! \***************************************************************************************************************************/ /*! exports provided: getRealRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRealRegion\", function() { return getRealRegion; });\n/* harmony import */ var _isFipsRegion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isFipsRegion */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js\");\n\nvar getRealRegion = function (region) {\n return Object(_isFipsRegion__WEBPACK_IMPORTED_MODULE_0__[\"isFipsRegion\"])(region)\n ? [\"fips-aws-global\", \"aws-fips\"].includes(region)\n ? \"us-east-1\"\n : region.replace(/fips-(dkr-|prod-)?|-fips/, \"\")\n : region;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js ***! \*******************************************************************************************************************/ /*! exports provided: REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"REGION_ENV_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"REGION_INI_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"NODE_REGION_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return _config__WEBPACK_IMPORTED_MODULE_0__[\"NODE_REGION_CONFIG_FILE_OPTIONS\"]; });\n\n/* harmony import */ var _resolveRegionConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./resolveRegionConfig */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return _resolveRegionConfig__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js ***! \**************************************************************************************************************************/ /*! exports provided: isFipsRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isFipsRegion\", function() { return isFipsRegion; });\nvar isFipsRegion = function (region) {\n return typeof region === \"string\" && (region.startsWith(\"fips-\") || region.endsWith(\"-fips\"));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js": /*!*********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js ***! \*********************************************************************************************************************************/ /*! exports provided: resolveRegionConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return resolveRegionConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n\n\n\nvar resolveRegionConfig = function (input) {\n var region = input.region, useFipsEndpoint = input.useFipsEndpoint;\n if (!region) {\n throw new Error(\"Region is missing\");\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { region: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var providedRegion;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (typeof region === \"string\") {\n return [2, Object(_getRealRegion__WEBPACK_IMPORTED_MODULE_1__[\"getRealRegion\"])(region)];\n }\n return [4, region()];\n case 1:\n providedRegion = _a.sent();\n return [2, Object(_getRealRegion__WEBPACK_IMPORTED_MODULE_1__[\"getRealRegion\"])(providedRegion)];\n }\n });\n }); }, useFipsEndpoint: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var providedRegion, _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!(typeof region === \"string\")) return [3, 1];\n _a = region;\n return [3, 3];\n case 1: return [4, region()];\n case 2:\n _a = _b.sent();\n _b.label = 3;\n case 3:\n providedRegion = _a;\n if (Object(_isFipsRegion__WEBPACK_IMPORTED_MODULE_2__[\"isFipsRegion\"])(providedRegion)) {\n return [2, true];\n }\n return [2, typeof useFipsEndpoint === \"boolean\" ? Promise.resolve(useFipsEndpoint) : useFipsEndpoint()];\n }\n });\n }); } });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js ***! \*************************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js ***! \**********************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js": /*!***********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js ***! \***********************************************************************************************************************************/ /*! exports provided: getHostnameFromVariants */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHostnameFromVariants\", function() { return getHostnameFromVariants; });\nvar getHostnameFromVariants = function (variants, _a) {\n var _b;\n if (variants === void 0) { variants = []; }\n var useFipsEndpoint = _a.useFipsEndpoint, useDualstackEndpoint = _a.useDualstackEndpoint;\n return (_b = variants.find(function (_a) {\n var tags = _a.tags;\n return useFipsEndpoint === tags.includes(\"fips\") && useDualstackEndpoint === tags.includes(\"dualstack\");\n })) === null || _b === void 0 ? void 0 : _b.hostname;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js ***! \*************************************************************************************************************************/ /*! exports provided: getRegionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRegionInfo\", function() { return getRegionInfo; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _getResolvedSigningRegion__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getResolvedSigningRegion */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js\");\n\n\n\n\n\nvar getRegionInfo = function (region, _a) {\n var _b, _c, _d, _e, _f, _g;\n var _h = _a.useFipsEndpoint, useFipsEndpoint = _h === void 0 ? false : _h, _j = _a.useDualstackEndpoint, useDualstackEndpoint = _j === void 0 ? false : _j, signingService = _a.signingService, regionHash = _a.regionHash, partitionHash = _a.partitionHash;\n var partition = Object(_getResolvedPartition__WEBPACK_IMPORTED_MODULE_3__[\"getResolvedPartition\"])(region, { partitionHash: partitionHash });\n var resolvedRegion = region in regionHash ? region : (_c = (_b = partitionHash[partition]) === null || _b === void 0 ? void 0 : _b.endpoint) !== null && _c !== void 0 ? _c : region;\n var hostnameOptions = { useFipsEndpoint: useFipsEndpoint, useDualstackEndpoint: useDualstackEndpoint };\n var regionHostname = Object(_getHostnameFromVariants__WEBPACK_IMPORTED_MODULE_1__[\"getHostnameFromVariants\"])((_d = regionHash[resolvedRegion]) === null || _d === void 0 ? void 0 : _d.variants, hostnameOptions);\n var partitionHostname = Object(_getHostnameFromVariants__WEBPACK_IMPORTED_MODULE_1__[\"getHostnameFromVariants\"])((_e = partitionHash[partition]) === null || _e === void 0 ? void 0 : _e.variants, hostnameOptions);\n var hostname = Object(_getResolvedHostname__WEBPACK_IMPORTED_MODULE_2__[\"getResolvedHostname\"])(resolvedRegion, { regionHostname: regionHostname, partitionHostname: partitionHostname });\n if (hostname === undefined) {\n throw new Error(\"Endpoint resolution failed for: \".concat({ resolvedRegion: resolvedRegion, useFipsEndpoint: useFipsEndpoint, useDualstackEndpoint: useDualstackEndpoint }));\n }\n var signingRegion = Object(_getResolvedSigningRegion__WEBPACK_IMPORTED_MODULE_4__[\"getResolvedSigningRegion\"])(hostname, {\n signingRegion: (_f = regionHash[resolvedRegion]) === null || _f === void 0 ? void 0 : _f.signingRegion,\n regionRegex: partitionHash[partition].regionRegex,\n useFipsEndpoint: useFipsEndpoint,\n });\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ partition: partition, signingService: signingService, hostname: hostname }, (signingRegion && { signingRegion: signingRegion })), (((_g = regionHash[resolvedRegion]) === null || _g === void 0 ? void 0 : _g.signingService) && {\n signingService: regionHash[resolvedRegion].signingService,\n }));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js": /*!*******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js ***! \*******************************************************************************************************************************/ /*! exports provided: getResolvedHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResolvedHostname\", function() { return getResolvedHostname; });\nvar getResolvedHostname = function (resolvedRegion, _a) {\n var regionHostname = _a.regionHostname, partitionHostname = _a.partitionHostname;\n return regionHostname\n ? regionHostname\n : partitionHostname\n ? partitionHostname.replace(\"{region}\", resolvedRegion)\n : undefined;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js": /*!********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js ***! \********************************************************************************************************************************/ /*! exports provided: getResolvedPartition */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResolvedPartition\", function() { return getResolvedPartition; });\nvar getResolvedPartition = function (region, _a) {\n var _b;\n var partitionHash = _a.partitionHash;\n return (_b = Object.keys(partitionHash || {}).find(function (key) { return partitionHash[key].regions.includes(region); })) !== null && _b !== void 0 ? _b : \"aws\";\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js": /*!************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js ***! \************************************************************************************************************************************/ /*! exports provided: getResolvedSigningRegion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResolvedSigningRegion\", function() { return getResolvedSigningRegion; });\nvar getResolvedSigningRegion = function (hostname, _a) {\n var signingRegion = _a.signingRegion, regionRegex = _a.regionRegex, useFipsEndpoint = _a.useFipsEndpoint;\n if (signingRegion) {\n return signingRegion;\n }\n else if (useFipsEndpoint) {\n var regionRegexJs = regionRegex.replace(\"\\\\\\\\\", \"\\\\\").replace(/^\\^/g, \"\\\\.\").replace(/\\$$/g, \"\\\\.\");\n var regionRegexmatchArray = hostname.match(regionRegexJs);\n if (regionRegexmatchArray) {\n return regionRegexmatchArray[0].slice(1, -1);\n }\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js ***! \*****************************************************************************************************************/ /*! exports provided: getRegionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PartitionHash__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PartitionHash */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _RegionHash__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./RegionHash */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _getRegionInfo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getRegionInfo */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRegionInfo\", function() { return _getRegionInfo__WEBPACK_IMPORTED_MODULE_2__[\"getRegionInfo\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js ***! \**********************************************************************************************************************/ /*! exports provided: FetchHttpHandler */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FetchHttpHandler\", function() { return FetchHttpHandler; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n\n\n\n\nvar FetchHttpHandler = (function () {\n function FetchHttpHandler(options) {\n if (typeof options === \"function\") {\n this.configProvider = options().then(function (opts) { return opts || {}; });\n }\n else {\n this.config = options !== null && options !== void 0 ? options : {};\n this.configProvider = Promise.resolve(this.config);\n }\n }\n FetchHttpHandler.prototype.destroy = function () {\n };\n FetchHttpHandler.prototype.handle = function (request, _a) {\n var _b = _a === void 0 ? {} : _a, abortSignal = _b.abortSignal;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _c, requestTimeoutInMs, abortError, path, queryString, port, method, url, body, requestOptions, fetchRequest, raceOfPromises;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n if (!!this.config) return [3, 2];\n _c = this;\n return [4, this.configProvider];\n case 1:\n _c.config = _d.sent();\n _d.label = 2;\n case 2:\n requestTimeoutInMs = this.config.requestTimeout;\n if (abortSignal === null || abortSignal === void 0 ? void 0 : abortSignal.aborted) {\n abortError = new Error(\"Request aborted\");\n abortError.name = \"AbortError\";\n return [2, Promise.reject(abortError)];\n }\n path = request.path;\n if (request.query) {\n queryString = Object(_aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_2__[\"buildQueryString\"])(request.query);\n if (queryString) {\n path += \"?\".concat(queryString);\n }\n }\n port = request.port, method = request.method;\n url = \"\".concat(request.protocol, \"//\").concat(request.hostname).concat(port ? \":\".concat(port) : \"\").concat(path);\n body = method === \"GET\" || method === \"HEAD\" ? undefined : request.body;\n requestOptions = {\n body: body,\n headers: new Headers(request.headers),\n method: method,\n };\n if (typeof AbortController !== \"undefined\") {\n requestOptions[\"signal\"] = abortSignal;\n }\n fetchRequest = new Request(url, requestOptions);\n raceOfPromises = [\n fetch(fetchRequest).then(function (response) {\n var e_1, _a;\n var fetchHeaders = response.headers;\n var transformedHeaders = {};\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(fetchHeaders.entries()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var pair = _c.value;\n transformedHeaders[pair[0]] = pair[1];\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var hasReadableStream = response.body !== undefined;\n if (!hasReadableStream) {\n return response.blob().then(function (body) { return ({\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"]({\n headers: transformedHeaders,\n statusCode: response.status,\n body: body,\n }),\n }); });\n }\n return {\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"]({\n headers: transformedHeaders,\n statusCode: response.status,\n body: response.body,\n }),\n };\n }),\n Object(_request_timeout__WEBPACK_IMPORTED_MODULE_3__[\"requestTimeout\"])(requestTimeoutInMs),\n ];\n if (abortSignal) {\n raceOfPromises.push(new Promise(function (resolve, reject) {\n abortSignal.onabort = function () {\n var abortError = new Error(\"Request aborted\");\n abortError.name = \"AbortError\";\n reject(abortError);\n };\n }));\n }\n return [2, Promise.race(raceOfPromises)];\n }\n });\n });\n };\n return FetchHttpHandler;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js ***! \*********************************************************************************************************/ /*! exports provided: FetchHttpHandler, streamCollector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _fetch_http_handler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./fetch-http-handler */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FetchHttpHandler\", function() { return _fetch_http_handler__WEBPACK_IMPORTED_MODULE_0__[\"FetchHttpHandler\"]; });\n\n/* harmony import */ var _stream_collector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stream-collector */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"streamCollector\", function() { return _stream_collector__WEBPACK_IMPORTED_MODULE_1__[\"streamCollector\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js ***! \*******************************************************************************************************************/ /*! exports provided: requestTimeout */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"requestTimeout\", function() { return requestTimeout; });\nfunction requestTimeout(timeoutInMs) {\n if (timeoutInMs === void 0) { timeoutInMs = 0; }\n return new Promise(function (resolve, reject) {\n if (timeoutInMs) {\n setTimeout(function () {\n var timeoutError = new Error(\"Request did not complete within \".concat(timeoutInMs, \" ms\"));\n timeoutError.name = \"TimeoutError\";\n reject(timeoutError);\n }, timeoutInMs);\n }\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js ***! \********************************************************************************************************************/ /*! exports provided: streamCollector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"streamCollector\", function() { return streamCollector; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar streamCollector = function (stream) {\n if (typeof Blob === \"function\" && stream instanceof Blob) {\n return collectBlob(stream);\n }\n return collectStream(stream);\n};\nfunction collectBlob(blob) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var base64, arrayBuffer;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, readToBase64(blob)];\n case 1:\n base64 = _a.sent();\n arrayBuffer = Object(_aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_1__[\"fromBase64\"])(base64);\n return [2, new Uint8Array(arrayBuffer)];\n }\n });\n });\n}\nfunction collectStream(stream) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var res, reader, isDone, _a, done, value, prior;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n res = new Uint8Array(0);\n reader = stream.getReader();\n isDone = false;\n _b.label = 1;\n case 1:\n if (!!isDone) return [3, 3];\n return [4, reader.read()];\n case 2:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (value) {\n prior = res;\n res = new Uint8Array(prior.length + value.length);\n res.set(prior);\n res.set(value, prior.length);\n }\n isDone = done;\n return [3, 1];\n case 3: return [2, res];\n }\n });\n });\n}\nfunction readToBase64(blob) {\n return new Promise(function (resolve, reject) {\n var reader = new FileReader();\n reader.onloadend = function () {\n var _a;\n if (reader.readyState !== 2) {\n return reject(new Error(\"Reader aborted too early\"));\n }\n var result = ((_a = reader.result) !== null && _a !== void 0 ? _a : \"\");\n var commaIndex = result.indexOf(\",\");\n var dataOffset = commaIndex > -1 ? commaIndex + 1 : result.length;\n resolve(result.substring(dataOffset));\n };\n reader.onabort = function () { return reject(new Error(\"Read aborted\")); };\n reader.onerror = function () { return reject(reader.error); };\n reader.readAsDataURL(blob);\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js ***! \*********************************************************************************************************/ /*! exports provided: invalidFunction, invalidProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _invalidFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./invalidFunction */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"invalidFunction\", function() { return _invalidFunction__WEBPACK_IMPORTED_MODULE_0__[\"invalidFunction\"]; });\n\n/* harmony import */ var _invalidProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./invalidProvider */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"invalidProvider\", function() { return _invalidProvider__WEBPACK_IMPORTED_MODULE_1__[\"invalidProvider\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js ***! \*******************************************************************************************************************/ /*! exports provided: invalidFunction */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invalidFunction\", function() { return invalidFunction; });\nvar invalidFunction = function (message) { return function () {\n throw new Error(message);\n}; };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js ***! \*******************************************************************************************************************/ /*! exports provided: invalidProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invalidProvider\", function() { return invalidProvider; });\nvar invalidProvider = function (message) { return function () { return Promise.reject(message); }; };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js ***! \******************************************************************************************************/ /*! exports provided: isArrayBuffer */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isArrayBuffer\", function() { return isArrayBuffer; });\nvar isArrayBuffer = function (arg) {\n return (typeof ArrayBuffer === \"function\" && arg instanceof ArrayBuffer) ||\n Object.prototype.toString.call(arg) === \"[object ArrayBuffer]\";\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js ***! \****************************************************************************************************************/ /*! exports provided: contentLengthMiddleware, contentLengthMiddlewareOptions, getContentLengthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"contentLengthMiddleware\", function() { return contentLengthMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"contentLengthMiddlewareOptions\", function() { return contentLengthMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getContentLengthPlugin\", function() { return getContentLengthPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar CONTENT_LENGTH_HEADER = \"content-length\";\nfunction contentLengthMiddleware(bodyLengthChecker) {\n var _this = this;\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var request, body, headers, length_1;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n body = request.body, headers = request.headers;\n if (body &&\n Object.keys(headers)\n .map(function (str) { return str.toLowerCase(); })\n .indexOf(CONTENT_LENGTH_HEADER) === -1) {\n try {\n length_1 = bodyLengthChecker(body);\n request.headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request.headers), (_a = {}, _a[CONTENT_LENGTH_HEADER] = String(length_1), _a));\n }\n catch (error) {\n }\n }\n }\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n });\n }); };\n };\n}\nvar contentLengthMiddlewareOptions = {\n step: \"build\",\n tags: [\"SET_CONTENT_LENGTH\", \"CONTENT_LENGTH\"],\n name: \"contentLengthMiddleware\",\n override: true,\n};\nvar getContentLengthPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(contentLengthMiddleware(options.bodyLengthChecker), contentLengthMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js ***! \*************************************************************************************************************/ /*! exports provided: resolveHostHeaderConfig, hostHeaderMiddleware, hostHeaderMiddlewareOptions, getHostHeaderPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveHostHeaderConfig\", function() { return resolveHostHeaderConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hostHeaderMiddleware\", function() { return hostHeaderMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hostHeaderMiddlewareOptions\", function() { return hostHeaderMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHostHeaderPlugin\", function() { return getHostHeaderPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nfunction resolveHostHeaderConfig(input) {\n return input;\n}\nvar hostHeaderMiddleware = function (options) {\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, _a, handlerProtocol;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(args.request))\n return [2, next(args)];\n request = args.request;\n _a = (options.requestHandler.metadata || {}).handlerProtocol, handlerProtocol = _a === void 0 ? \"\" : _a;\n if (handlerProtocol.indexOf(\"h2\") >= 0 && !request.headers[\":authority\"]) {\n delete request.headers[\"host\"];\n request.headers[\":authority\"] = \"\";\n }\n else if (!request.headers[\"host\"]) {\n request.headers[\"host\"] = request.hostname;\n }\n return [2, next(args)];\n });\n }); };\n };\n};\nvar hostHeaderMiddlewareOptions = {\n name: \"hostHeaderMiddleware\",\n step: \"build\",\n priority: \"low\",\n tags: [\"HOST\"],\n override: true,\n};\nvar getHostHeaderPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(hostHeaderMiddleware(options), hostHeaderMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-logger/dist-es/index.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-logger/dist-es/index.js ***! \********************************************************************************************************/ /*! exports provided: loggerMiddleware, loggerMiddlewareOptions, getLoggerPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./loggerMiddleware */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddleware\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"loggerMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddlewareOptions\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"loggerMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLoggerPlugin\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"getLoggerPlugin\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-logger/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js ***! \*******************************************************************************************************************/ /*! exports provided: loggerMiddleware, loggerMiddlewareOptions, getLoggerPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddleware\", function() { return loggerMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddlewareOptions\", function() { return loggerMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getLoggerPlugin\", function() { return getLoggerPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar loggerMiddleware = function () {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var clientName, commandName, inputFilterSensitiveLog, logger, outputFilterSensitiveLog, response, _a, $metadata, outputWithoutMetadata;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n clientName = context.clientName, commandName = context.commandName, inputFilterSensitiveLog = context.inputFilterSensitiveLog, logger = context.logger, outputFilterSensitiveLog = context.outputFilterSensitiveLog;\n return [4, next(args)];\n case 1:\n response = _b.sent();\n if (!logger) {\n return [2, response];\n }\n if (typeof logger.info === \"function\") {\n _a = response.output, $metadata = _a.$metadata, outputWithoutMetadata = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"$metadata\"]);\n logger.info({\n clientName: clientName,\n commandName: commandName,\n input: inputFilterSensitiveLog(args.input),\n output: outputFilterSensitiveLog(outputWithoutMetadata),\n metadata: $metadata,\n });\n }\n return [2, response];\n }\n });\n }); };\n };\n};\nvar loggerMiddlewareOptions = {\n name: \"loggerMiddleware\",\n tags: [\"LOGGER\"],\n step: \"initialize\",\n override: true,\n};\nvar getLoggerPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(loggerMiddleware(), loggerMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js ***! \***********************************************************************************************************************/ /*! exports provided: AdaptiveRetryStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AdaptiveRetryStrategy\", function() { return AdaptiveRetryStrategy; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n\n\n\n\nvar AdaptiveRetryStrategy = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AdaptiveRetryStrategy, _super);\n function AdaptiveRetryStrategy(maxAttemptsProvider, options) {\n var _this = this;\n var _a = options !== null && options !== void 0 ? options : {}, rateLimiter = _a.rateLimiter, superOptions = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"rateLimiter\"]);\n _this = _super.call(this, maxAttemptsProvider, superOptions) || this;\n _this.rateLimiter = rateLimiter !== null && rateLimiter !== void 0 ? rateLimiter : new _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_2__[\"DefaultRateLimiter\"]();\n _this.mode = _config__WEBPACK_IMPORTED_MODULE_1__[\"RETRY_MODES\"].ADAPTIVE;\n return _this;\n }\n AdaptiveRetryStrategy.prototype.retry = function (next, args) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _this = this;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, _super.prototype.retry.call(this, next, args, {\n beforeRequest: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, this.rateLimiter.getSendToken()];\n });\n }); },\n afterRequest: function (response) {\n _this.rateLimiter.updateClientSendingRate(response);\n },\n })];\n });\n });\n };\n return AdaptiveRetryStrategy;\n}(_StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_3__[\"StandardRetryStrategy\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js ***! \********************************************************************************************************************/ /*! exports provided: DefaultRateLimiter */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultRateLimiter\", function() { return DefaultRateLimiter; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar DefaultRateLimiter = (function () {\n function DefaultRateLimiter(options) {\n var _a, _b, _c, _d, _e;\n this.currentCapacity = 0;\n this.enabled = false;\n this.lastMaxRate = 0;\n this.measuredTxRate = 0;\n this.requestCount = 0;\n this.lastTimestamp = 0;\n this.timeWindow = 0;\n this.beta = (_a = options === null || options === void 0 ? void 0 : options.beta) !== null && _a !== void 0 ? _a : 0.7;\n this.minCapacity = (_b = options === null || options === void 0 ? void 0 : options.minCapacity) !== null && _b !== void 0 ? _b : 1;\n this.minFillRate = (_c = options === null || options === void 0 ? void 0 : options.minFillRate) !== null && _c !== void 0 ? _c : 0.5;\n this.scaleConstant = (_d = options === null || options === void 0 ? void 0 : options.scaleConstant) !== null && _d !== void 0 ? _d : 0.4;\n this.smooth = (_e = options === null || options === void 0 ? void 0 : options.smooth) !== null && _e !== void 0 ? _e : 0.8;\n var currentTimeInSeconds = this.getCurrentTimeInSeconds();\n this.lastThrottleTime = currentTimeInSeconds;\n this.lastTxRateBucket = Math.floor(this.getCurrentTimeInSeconds());\n this.fillRate = this.minFillRate;\n this.maxCapacity = this.minCapacity;\n }\n DefaultRateLimiter.prototype.getCurrentTimeInSeconds = function () {\n return Date.now() / 1000;\n };\n DefaultRateLimiter.prototype.getSendToken = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, this.acquireTokenBucket(1)];\n });\n });\n };\n DefaultRateLimiter.prototype.acquireTokenBucket = function (amount) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var delay_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!this.enabled) {\n return [2];\n }\n this.refillTokenBucket();\n if (!(amount > this.currentCapacity)) return [3, 2];\n delay_1 = ((amount - this.currentCapacity) / this.fillRate) * 1000;\n return [4, new Promise(function (resolve) { return setTimeout(resolve, delay_1); })];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n this.currentCapacity = this.currentCapacity - amount;\n return [2];\n }\n });\n });\n };\n DefaultRateLimiter.prototype.refillTokenBucket = function () {\n var timestamp = this.getCurrentTimeInSeconds();\n if (!this.lastTimestamp) {\n this.lastTimestamp = timestamp;\n return;\n }\n var fillAmount = (timestamp - this.lastTimestamp) * this.fillRate;\n this.currentCapacity = Math.min(this.maxCapacity, this.currentCapacity + fillAmount);\n this.lastTimestamp = timestamp;\n };\n DefaultRateLimiter.prototype.updateClientSendingRate = function (response) {\n var calculatedRate;\n this.updateMeasuredRate();\n if (Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_1__[\"isThrottlingError\"])(response)) {\n var rateToUse = !this.enabled ? this.measuredTxRate : Math.min(this.measuredTxRate, this.fillRate);\n this.lastMaxRate = rateToUse;\n this.calculateTimeWindow();\n this.lastThrottleTime = this.getCurrentTimeInSeconds();\n calculatedRate = this.cubicThrottle(rateToUse);\n this.enableTokenBucket();\n }\n else {\n this.calculateTimeWindow();\n calculatedRate = this.cubicSuccess(this.getCurrentTimeInSeconds());\n }\n var newRate = Math.min(calculatedRate, 2 * this.measuredTxRate);\n this.updateTokenBucketRate(newRate);\n };\n DefaultRateLimiter.prototype.calculateTimeWindow = function () {\n this.timeWindow = this.getPrecise(Math.pow((this.lastMaxRate * (1 - this.beta)) / this.scaleConstant, 1 / 3));\n };\n DefaultRateLimiter.prototype.cubicThrottle = function (rateToUse) {\n return this.getPrecise(rateToUse * this.beta);\n };\n DefaultRateLimiter.prototype.cubicSuccess = function (timestamp) {\n return this.getPrecise(this.scaleConstant * Math.pow(timestamp - this.lastThrottleTime - this.timeWindow, 3) + this.lastMaxRate);\n };\n DefaultRateLimiter.prototype.enableTokenBucket = function () {\n this.enabled = true;\n };\n DefaultRateLimiter.prototype.updateTokenBucketRate = function (newRate) {\n this.refillTokenBucket();\n this.fillRate = Math.max(newRate, this.minFillRate);\n this.maxCapacity = Math.max(newRate, this.minCapacity);\n this.currentCapacity = Math.min(this.currentCapacity, this.maxCapacity);\n };\n DefaultRateLimiter.prototype.updateMeasuredRate = function () {\n var t = this.getCurrentTimeInSeconds();\n var timeBucket = Math.floor(t * 2) / 2;\n this.requestCount++;\n if (timeBucket > this.lastTxRateBucket) {\n var currentRate = this.requestCount / (timeBucket - this.lastTxRateBucket);\n this.measuredTxRate = this.getPrecise(currentRate * this.smooth + this.measuredTxRate * (1 - this.smooth));\n this.requestCount = 0;\n this.lastTxRateBucket = timeBucket;\n }\n };\n DefaultRateLimiter.prototype.getPrecise = function (num) {\n return parseFloat(num.toFixed(8));\n };\n return DefaultRateLimiter;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js ***! \***********************************************************************************************************************/ /*! exports provided: StandardRetryStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StandardRetryStrategy\", function() { return StandardRetryStrategy; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n/* harmony import */ var _defaultRetryQuota__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./defaultRetryQuota */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js\");\n/* harmony import */ var _delayDecider__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./delayDecider */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js\");\n/* harmony import */ var _retryDecider__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./retryDecider */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js\");\n\n\n\n\n\n\n\n\n\nvar StandardRetryStrategy = (function () {\n function StandardRetryStrategy(maxAttemptsProvider, options) {\n var _a, _b, _c;\n this.maxAttemptsProvider = maxAttemptsProvider;\n this.mode = _config__WEBPACK_IMPORTED_MODULE_4__[\"RETRY_MODES\"].STANDARD;\n this.retryDecider = (_a = options === null || options === void 0 ? void 0 : options.retryDecider) !== null && _a !== void 0 ? _a : _retryDecider__WEBPACK_IMPORTED_MODULE_8__[\"defaultRetryDecider\"];\n this.delayDecider = (_b = options === null || options === void 0 ? void 0 : options.delayDecider) !== null && _b !== void 0 ? _b : _delayDecider__WEBPACK_IMPORTED_MODULE_7__[\"defaultDelayDecider\"];\n this.retryQuota = (_c = options === null || options === void 0 ? void 0 : options.retryQuota) !== null && _c !== void 0 ? _c : Object(_defaultRetryQuota__WEBPACK_IMPORTED_MODULE_6__[\"getDefaultRetryQuota\"])(_constants__WEBPACK_IMPORTED_MODULE_5__[\"INITIAL_RETRY_TOKENS\"]);\n }\n StandardRetryStrategy.prototype.shouldRetry = function (error, attempts, maxAttempts) {\n return attempts < maxAttempts && this.retryDecider(error) && this.retryQuota.hasRetryTokens(error);\n };\n StandardRetryStrategy.prototype.getMaxAttempts = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var maxAttempts, error_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4, this.maxAttemptsProvider()];\n case 1:\n maxAttempts = _a.sent();\n return [3, 3];\n case 2:\n error_1 = _a.sent();\n maxAttempts = _config__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_MAX_ATTEMPTS\"];\n return [3, 3];\n case 3: return [2, maxAttempts];\n }\n });\n });\n };\n StandardRetryStrategy.prototype.retry = function (next, args, options) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var retryTokenAmount, attempts, totalDelay, maxAttempts, request, _loop_1, this_1, state_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n attempts = 0;\n totalDelay = 0;\n return [4, this.getMaxAttempts()];\n case 1:\n maxAttempts = _a.sent();\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_5__[\"INVOCATION_ID_HEADER\"]] = Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v4\"])();\n }\n _loop_1 = function () {\n var _b, response, output, e_1, err, delayFromDecider, delayFromResponse, delay_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _c.trys.push([0, 4, , 7]);\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_5__[\"REQUEST_HEADER\"]] = \"attempt=\".concat(attempts + 1, \"; max=\").concat(maxAttempts);\n }\n if (!(options === null || options === void 0 ? void 0 : options.beforeRequest)) return [3, 2];\n return [4, options.beforeRequest()];\n case 1:\n _c.sent();\n _c.label = 2;\n case 2: return [4, next(args)];\n case 3:\n _b = _c.sent(), response = _b.response, output = _b.output;\n if (options === null || options === void 0 ? void 0 : options.afterRequest) {\n options.afterRequest(response);\n }\n this_1.retryQuota.releaseRetryTokens(retryTokenAmount);\n output.$metadata.attempts = attempts + 1;\n output.$metadata.totalRetryDelay = totalDelay;\n return [2, { value: { response: response, output: output } }];\n case 4:\n e_1 = _c.sent();\n err = asSdkError(e_1);\n attempts++;\n if (!this_1.shouldRetry(err, attempts, maxAttempts)) return [3, 6];\n retryTokenAmount = this_1.retryQuota.retrieveRetryTokens(err);\n delayFromDecider = this_1.delayDecider(Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_2__[\"isThrottlingError\"])(err) ? _constants__WEBPACK_IMPORTED_MODULE_5__[\"THROTTLING_RETRY_DELAY_BASE\"] : _constants__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_RETRY_DELAY_BASE\"], attempts);\n delayFromResponse = getDelayFromRetryAfterHeader(err.$response);\n delay_1 = Math.max(delayFromResponse || 0, delayFromDecider);\n totalDelay += delay_1;\n return [4, new Promise(function (resolve) { return setTimeout(resolve, delay_1); })];\n case 5:\n _c.sent();\n return [2, \"continue\"];\n case 6:\n if (!err.$metadata) {\n err.$metadata = {};\n }\n err.$metadata.attempts = attempts;\n err.$metadata.totalRetryDelay = totalDelay;\n throw err;\n case 7: return [2];\n }\n });\n };\n this_1 = this;\n _a.label = 2;\n case 2:\n if (false) {}\n return [5, _loop_1()];\n case 3:\n state_1 = _a.sent();\n if (typeof state_1 === \"object\")\n return [2, state_1.value];\n return [3, 2];\n case 4: return [2];\n }\n });\n });\n };\n return StandardRetryStrategy;\n}());\n\nvar getDelayFromRetryAfterHeader = function (response) {\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"].isInstance(response))\n return;\n var retryAfterHeaderName = Object.keys(response.headers).find(function (key) { return key.toLowerCase() === \"retry-after\"; });\n if (!retryAfterHeaderName)\n return;\n var retryAfter = response.headers[retryAfterHeaderName];\n var retryAfterSeconds = Number(retryAfter);\n if (!Number.isNaN(retryAfterSeconds))\n return retryAfterSeconds * 1000;\n var retryAfterDate = new Date(retryAfter);\n return retryAfterDate.getTime() - Date.now();\n};\nvar asSdkError = function (error) {\n if (error instanceof Error)\n return error;\n if (error instanceof Object)\n return Object.assign(new Error(), error);\n if (typeof error === \"string\")\n return new Error(error);\n return new Error(\"AWS SDK error wrapper for \".concat(error));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/config.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/config.js ***! \********************************************************************************************************/ /*! exports provided: RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RETRY_MODES\", function() { return RETRY_MODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_ATTEMPTS\", function() { return DEFAULT_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_MODE\", function() { return DEFAULT_RETRY_MODE; });\nvar RETRY_MODES;\n(function (RETRY_MODES) {\n RETRY_MODES[\"STANDARD\"] = \"standard\";\n RETRY_MODES[\"ADAPTIVE\"] = \"adaptive\";\n})(RETRY_MODES || (RETRY_MODES = {}));\nvar DEFAULT_MAX_ATTEMPTS = 3;\nvar DEFAULT_RETRY_MODE = RETRY_MODES.STANDARD;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/config.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js ***! \****************************************************************************************************************/ /*! exports provided: ENV_MAX_ATTEMPTS, CONFIG_MAX_ATTEMPTS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, ENV_RETRY_MODE, CONFIG_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_MAX_ATTEMPTS\", function() { return ENV_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_MAX_ATTEMPTS\", function() { return CONFIG_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\", function() { return NODE_MAX_ATTEMPT_CONFIG_OPTIONS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveRetryConfig\", function() { return resolveRetryConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_RETRY_MODE\", function() { return ENV_RETRY_MODE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_RETRY_MODE\", function() { return CONFIG_RETRY_MODE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_RETRY_MODE_CONFIG_OPTIONS\", function() { return NODE_RETRY_MODE_CONFIG_OPTIONS; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n/* harmony import */ var _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AdaptiveRetryStrategy */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js\");\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./StandardRetryStrategy */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js\");\n\n\n\n\n\nvar ENV_MAX_ATTEMPTS = \"AWS_MAX_ATTEMPTS\";\nvar CONFIG_MAX_ATTEMPTS = \"max_attempts\";\nvar NODE_MAX_ATTEMPT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n var value = env[ENV_MAX_ATTEMPTS];\n if (!value)\n return undefined;\n var maxAttempt = parseInt(value);\n if (Number.isNaN(maxAttempt)) {\n throw new Error(\"Environment variable \".concat(ENV_MAX_ATTEMPTS, \" mast be a number, got \\\"\").concat(value, \"\\\"\"));\n }\n return maxAttempt;\n },\n configFileSelector: function (profile) {\n var value = profile[CONFIG_MAX_ATTEMPTS];\n if (!value)\n return undefined;\n var maxAttempt = parseInt(value);\n if (Number.isNaN(maxAttempt)) {\n throw new Error(\"Shared config file entry \".concat(CONFIG_MAX_ATTEMPTS, \" mast be a number, got \\\"\").concat(value, \"\\\"\"));\n }\n return maxAttempt;\n },\n default: _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_MAX_ATTEMPTS\"],\n};\nvar resolveRetryConfig = function (input) {\n var _a;\n var maxAttempts = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])((_a = input.maxAttempts) !== null && _a !== void 0 ? _a : _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_MAX_ATTEMPTS\"]);\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { maxAttempts: maxAttempts, retryStrategy: function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var retryMode;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (input.retryStrategy) {\n return [2, input.retryStrategy];\n }\n return [4, Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_1__[\"normalizeProvider\"])(input.retryMode)()];\n case 1:\n retryMode = _a.sent();\n if (retryMode === _config__WEBPACK_IMPORTED_MODULE_3__[\"RETRY_MODES\"].ADAPTIVE) {\n return [2, new _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_2__[\"AdaptiveRetryStrategy\"](maxAttempts)];\n }\n return [2, new _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_4__[\"StandardRetryStrategy\"](maxAttempts)];\n }\n });\n }); } });\n};\nvar ENV_RETRY_MODE = \"AWS_RETRY_MODE\";\nvar CONFIG_RETRY_MODE = \"retry_mode\";\nvar NODE_RETRY_MODE_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) { return env[ENV_RETRY_MODE]; },\n configFileSelector: function (profile) { return profile[CONFIG_RETRY_MODE]; },\n default: _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_RETRY_MODE\"],\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js ***! \***********************************************************************************************************/ /*! exports provided: DEFAULT_RETRY_DELAY_BASE, MAXIMUM_RETRY_DELAY, THROTTLING_RETRY_DELAY_BASE, INITIAL_RETRY_TOKENS, RETRY_COST, TIMEOUT_RETRY_COST, NO_RETRY_INCREMENT, INVOCATION_ID_HEADER, REQUEST_HEADER */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_DELAY_BASE\", function() { return DEFAULT_RETRY_DELAY_BASE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAXIMUM_RETRY_DELAY\", function() { return MAXIMUM_RETRY_DELAY; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"THROTTLING_RETRY_DELAY_BASE\", function() { return THROTTLING_RETRY_DELAY_BASE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INITIAL_RETRY_TOKENS\", function() { return INITIAL_RETRY_TOKENS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RETRY_COST\", function() { return RETRY_COST; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TIMEOUT_RETRY_COST\", function() { return TIMEOUT_RETRY_COST; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NO_RETRY_INCREMENT\", function() { return NO_RETRY_INCREMENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INVOCATION_ID_HEADER\", function() { return INVOCATION_ID_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REQUEST_HEADER\", function() { return REQUEST_HEADER; });\nvar DEFAULT_RETRY_DELAY_BASE = 100;\nvar MAXIMUM_RETRY_DELAY = 20 * 1000;\nvar THROTTLING_RETRY_DELAY_BASE = 500;\nvar INITIAL_RETRY_TOKENS = 500;\nvar RETRY_COST = 5;\nvar TIMEOUT_RETRY_COST = 10;\nvar NO_RETRY_INCREMENT = 1;\nvar INVOCATION_ID_HEADER = \"amz-sdk-invocation-id\";\nvar REQUEST_HEADER = \"amz-sdk-request\";\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js ***! \*******************************************************************************************************************/ /*! exports provided: getDefaultRetryQuota */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getDefaultRetryQuota\", function() { return getDefaultRetryQuota; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n\nvar getDefaultRetryQuota = function (initialRetryTokens, options) {\n var _a, _b, _c;\n var MAX_CAPACITY = initialRetryTokens;\n var noRetryIncrement = (_a = options === null || options === void 0 ? void 0 : options.noRetryIncrement) !== null && _a !== void 0 ? _a : _constants__WEBPACK_IMPORTED_MODULE_0__[\"NO_RETRY_INCREMENT\"];\n var retryCost = (_b = options === null || options === void 0 ? void 0 : options.retryCost) !== null && _b !== void 0 ? _b : _constants__WEBPACK_IMPORTED_MODULE_0__[\"RETRY_COST\"];\n var timeoutRetryCost = (_c = options === null || options === void 0 ? void 0 : options.timeoutRetryCost) !== null && _c !== void 0 ? _c : _constants__WEBPACK_IMPORTED_MODULE_0__[\"TIMEOUT_RETRY_COST\"];\n var availableCapacity = initialRetryTokens;\n var getCapacityAmount = function (error) { return (error.name === \"TimeoutError\" ? timeoutRetryCost : retryCost); };\n var hasRetryTokens = function (error) { return getCapacityAmount(error) <= availableCapacity; };\n var retrieveRetryTokens = function (error) {\n if (!hasRetryTokens(error)) {\n throw new Error(\"No retry token available\");\n }\n var capacityAmount = getCapacityAmount(error);\n availableCapacity -= capacityAmount;\n return capacityAmount;\n };\n var releaseRetryTokens = function (capacityReleaseAmount) {\n availableCapacity += capacityReleaseAmount !== null && capacityReleaseAmount !== void 0 ? capacityReleaseAmount : noRetryIncrement;\n availableCapacity = Math.min(availableCapacity, MAX_CAPACITY);\n };\n return Object.freeze({\n hasRetryTokens: hasRetryTokens,\n retrieveRetryTokens: retrieveRetryTokens,\n releaseRetryTokens: releaseRetryTokens,\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js ***! \**************************************************************************************************************/ /*! exports provided: defaultDelayDecider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultDelayDecider\", function() { return defaultDelayDecider; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js\");\n\nvar defaultDelayDecider = function (delayBase, attempts) {\n return Math.floor(Math.min(_constants__WEBPACK_IMPORTED_MODULE_0__[\"MAXIMUM_RETRY_DELAY\"], Math.random() * Math.pow(2, attempts) * delayBase));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/index.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/index.js ***! \*******************************************************************************************************/ /*! exports provided: AdaptiveRetryStrategy, DefaultRateLimiter, StandardRetryStrategy, RETRY_MODES, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, ENV_MAX_ATTEMPTS, CONFIG_MAX_ATTEMPTS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, ENV_RETRY_MODE, CONFIG_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, defaultDelayDecider, omitRetryHeadersMiddleware, omitRetryHeadersMiddlewareOptions, getOmitRetryHeadersPlugin, defaultRetryDecider, retryMiddleware, retryMiddlewareOptions, getRetryPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AdaptiveRetryStrategy */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AdaptiveRetryStrategy\", function() { return _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_0__[\"AdaptiveRetryStrategy\"]; });\n\n/* harmony import */ var _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./DefaultRateLimiter */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultRateLimiter\", function() { return _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_1__[\"DefaultRateLimiter\"]; });\n\n/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./StandardRetryStrategy */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StandardRetryStrategy\", function() { return _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_2__[\"StandardRetryStrategy\"]; });\n\n/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./config */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/config.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RETRY_MODES\", function() { return _config__WEBPACK_IMPORTED_MODULE_3__[\"RETRY_MODES\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_ATTEMPTS\", function() { return _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_MODE\", function() { return _config__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULT_RETRY_MODE\"]; });\n\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_MAX_ATTEMPTS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"ENV_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_MAX_ATTEMPTS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"CONFIG_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRetryConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"resolveRetryConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_RETRY_MODE\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"ENV_RETRY_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_RETRY_MODE\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"CONFIG_RETRY_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_RETRY_MODE_CONFIG_OPTIONS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_4__[\"NODE_RETRY_MODE_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _delayDecider__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./delayDecider */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultDelayDecider\", function() { return _delayDecider__WEBPACK_IMPORTED_MODULE_5__[\"defaultDelayDecider\"]; });\n\n/* harmony import */ var _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./omitRetryHeadersMiddleware */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddleware\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__[\"omitRetryHeadersMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddlewareOptions\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__[\"omitRetryHeadersMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getOmitRetryHeadersPlugin\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_6__[\"getOmitRetryHeadersPlugin\"]; });\n\n/* harmony import */ var _retryDecider__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./retryDecider */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultRetryDecider\", function() { return _retryDecider__WEBPACK_IMPORTED_MODULE_7__[\"defaultRetryDecider\"]; });\n\n/* harmony import */ var _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./retryMiddleware */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retryMiddleware\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__[\"retryMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retryMiddlewareOptions\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__[\"retryMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRetryPlugin\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_8__[\"getRetryPlugin\"]; });\n\n/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./types */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/types.js\");\n/* empty/unused harmony star reexport */\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js ***! \****************************************************************************************************************************/ /*! exports provided: omitRetryHeadersMiddleware, omitRetryHeadersMiddlewareOptions, getOmitRetryHeadersPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddleware\", function() { return omitRetryHeadersMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddlewareOptions\", function() { return omitRetryHeadersMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getOmitRetryHeadersPlugin\", function() { return getOmitRetryHeadersPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n\n\n\nvar omitRetryHeadersMiddleware = function () {\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n delete request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"INVOCATION_ID_HEADER\"]];\n delete request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"REQUEST_HEADER\"]];\n }\n return [2, next(args)];\n });\n }); };\n };\n};\nvar omitRetryHeadersMiddlewareOptions = {\n name: \"omitRetryHeadersMiddleware\",\n tags: [\"RETRY\", \"HEADERS\", \"OMIT_RETRY_HEADERS\"],\n relation: \"before\",\n toMiddleware: \"awsAuthMiddleware\",\n override: true,\n};\nvar getOmitRetryHeadersPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(omitRetryHeadersMiddleware(), omitRetryHeadersMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js ***! \**************************************************************************************************************/ /*! exports provided: defaultRetryDecider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRetryDecider\", function() { return defaultRetryDecider; });\n/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/index.js\");\n\nvar defaultRetryDecider = function (error) {\n if (!error) {\n return false;\n }\n return Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isRetryableByTrait\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isClockSkewError\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isThrottlingError\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isTransientError\"])(error);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js ***! \*****************************************************************************************************************/ /*! exports provided: retryMiddleware, retryMiddlewareOptions, getRetryPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"retryMiddleware\", function() { return retryMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"retryMiddlewareOptions\", function() { return retryMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRetryPlugin\", function() { return getRetryPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar retryMiddleware = function (options) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var retryStrategy;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, options.retryStrategy()];\n case 1:\n retryStrategy = _a.sent();\n if (retryStrategy === null || retryStrategy === void 0 ? void 0 : retryStrategy.mode)\n context.userAgent = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])((context.userAgent || [])), false), [[\"cfg/retry-mode\", retryStrategy.mode]], false);\n return [2, retryStrategy.retry(next, args)];\n }\n });\n }); };\n };\n};\nvar retryMiddlewareOptions = {\n name: \"retryMiddleware\",\n tags: [\"RETRY\"],\n step: \"finalizeRequest\",\n priority: \"high\",\n override: true,\n};\nvar getRetryPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(retryMiddleware(options), retryMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/types.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/types.js ***! \*******************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/types.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js ***! \************************************************************************************************************************/ /*! exports provided: deserializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddleware\", function() { return deserializerMiddleware; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar deserializerMiddleware = function (options, deserializer) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response, parsed, error_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4, next(args)];\n case 1:\n response = (_a.sent()).response;\n _a.label = 2;\n case 2:\n _a.trys.push([2, 4, , 5]);\n return [4, deserializer(response, options)];\n case 3:\n parsed = _a.sent();\n return [2, {\n response: response,\n output: parsed,\n }];\n case 4:\n error_1 = _a.sent();\n Object.defineProperty(error_1, \"$response\", {\n value: response,\n });\n throw error_1;\n case 5: return [2];\n }\n });\n }); };\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js ***! \*******************************************************************************************************/ /*! exports provided: deserializerMiddleware, deserializerMiddlewareOption, serializerMiddlewareOption, getSerdePlugin, serializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./deserializerMiddleware */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddleware\", function() { return _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"deserializerMiddleware\"]; });\n\n/* harmony import */ var _serdePlugin__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./serdePlugin */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddlewareOption\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_1__[\"deserializerMiddlewareOption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddlewareOption\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_1__[\"serializerMiddlewareOption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSerdePlugin\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_1__[\"getSerdePlugin\"]; });\n\n/* harmony import */ var _serializerMiddleware__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./serializerMiddleware */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddleware\", function() { return _serializerMiddleware__WEBPACK_IMPORTED_MODULE_2__[\"serializerMiddleware\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js ***! \*************************************************************************************************************/ /*! exports provided: deserializerMiddlewareOption, serializerMiddlewareOption, getSerdePlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddlewareOption\", function() { return deserializerMiddlewareOption; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddlewareOption\", function() { return serializerMiddlewareOption; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSerdePlugin\", function() { return getSerdePlugin; });\n/* harmony import */ var _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./deserializerMiddleware */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js\");\n/* harmony import */ var _serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./serializerMiddleware */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js\");\n\n\nvar deserializerMiddlewareOption = {\n name: \"deserializerMiddleware\",\n step: \"deserialize\",\n tags: [\"DESERIALIZER\"],\n override: true,\n};\nvar serializerMiddlewareOption = {\n name: \"serializerMiddleware\",\n step: \"serialize\",\n tags: [\"SERIALIZER\"],\n override: true,\n};\nfunction getSerdePlugin(config, serializer, deserializer) {\n return {\n applyToStack: function (commandStack) {\n commandStack.add(Object(_deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"deserializerMiddleware\"])(config, deserializer), deserializerMiddlewareOption);\n commandStack.add(Object(_serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"serializerMiddleware\"])(config, serializer), serializerMiddlewareOption);\n },\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js": /*!**********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js ***! \**********************************************************************************************************************/ /*! exports provided: serializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddleware\", function() { return serializerMiddleware; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar serializerMiddleware = function (options, serializer) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var endpoint, request;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n endpoint = ((_a = context.endpointV2) === null || _a === void 0 ? void 0 : _a.url) && options.urlParser\n ? function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2, options.urlParser(context.endpointV2.url)];\n }); }); }\n : options.endpoint;\n if (!endpoint) {\n throw new Error(\"No valid endpoint provider available.\");\n }\n return [4, serializer(args.input, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, options), { endpoint: endpoint }))];\n case 1:\n request = _b.sent();\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n }); };\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js ***! \******************************************************************************************************************/ /*! exports provided: resolveAwsAuthConfig, resolveSigV4AuthConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveAwsAuthConfig\", function() { return resolveAwsAuthConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveSigV4AuthConfig\", function() { return resolveSigV4AuthConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n\n\n\n\nvar CREDENTIAL_EXPIRE_WINDOW = 300000;\nvar resolveAwsAuthConfig = function (input) {\n var normalizedCreds = input.credentials\n ? normalizeCredentialProvider(input.credentials)\n : input.credentialDefaultProvider(input);\n var _a = input.signingEscapePath, signingEscapePath = _a === void 0 ? true : _a, _b = input.systemClockOffset, systemClockOffset = _b === void 0 ? input.systemClockOffset || 0 : _b, sha256 = input.sha256;\n var signer;\n if (input.signer) {\n signer = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(input.signer);\n }\n else if (input.regionInfoProvider) {\n signer = function () {\n return Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(input.region)()\n .then(function (region) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, _b, _c;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _b = (_a = input).regionInfoProvider;\n _c = [region];\n _d = {};\n return [4, input.useFipsEndpoint()];\n case 1:\n _d.useFipsEndpoint = _e.sent();\n return [4, input.useDualstackEndpoint()];\n case 2: return [4, _b.apply(_a, _c.concat([(_d.useDualstackEndpoint = _e.sent(),\n _d)]))];\n case 3: return [2, [\n (_e.sent()) || {},\n region\n ]];\n }\n });\n }); })\n .then(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), regionInfo = _b[0], region = _b[1];\n var signingRegion = regionInfo.signingRegion, signingService = regionInfo.signingService;\n input.signingRegion = input.signingRegion || signingRegion || region;\n input.signingName = input.signingName || signingService || input.serviceId;\n var params = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { credentials: normalizedCreds, region: input.signingRegion, service: input.signingName, sha256: sha256, uriEscapePath: signingEscapePath });\n var SignerCtor = input.signerConstructor || _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__[\"SignatureV4\"];\n return new SignerCtor(params);\n });\n };\n }\n else {\n signer = function (authScheme) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var signingRegion, signingService, params, SignerCtor;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (!authScheme) {\n throw new Error(\"Unexpected empty auth scheme config\");\n }\n signingRegion = authScheme.signingScope;\n signingService = authScheme.signingName;\n input.signingRegion = input.signingRegion || signingRegion;\n input.signingName = input.signingName || signingService || input.serviceId;\n params = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { credentials: normalizedCreds, region: input.signingRegion, service: input.signingName, sha256: sha256, uriEscapePath: signingEscapePath });\n SignerCtor = input.signerConstructor || _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__[\"SignatureV4\"];\n return [2, new SignerCtor(params)];\n });\n }); };\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { systemClockOffset: systemClockOffset, signingEscapePath: signingEscapePath, credentials: normalizedCreds, signer: signer });\n};\nvar resolveSigV4AuthConfig = function (input) {\n var normalizedCreds = input.credentials\n ? normalizeCredentialProvider(input.credentials)\n : input.credentialDefaultProvider(input);\n var _a = input.signingEscapePath, signingEscapePath = _a === void 0 ? true : _a, _b = input.systemClockOffset, systemClockOffset = _b === void 0 ? input.systemClockOffset || 0 : _b, sha256 = input.sha256;\n var signer;\n if (input.signer) {\n signer = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(input.signer);\n }\n else {\n signer = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(new _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__[\"SignatureV4\"]({\n credentials: normalizedCreds,\n region: input.region,\n service: input.signingName,\n sha256: sha256,\n uriEscapePath: signingEscapePath,\n }));\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { systemClockOffset: systemClockOffset, signingEscapePath: signingEscapePath, credentials: normalizedCreds, signer: signer });\n};\nvar normalizeCredentialProvider = function (credentials) {\n if (typeof credentials === \"function\") {\n return Object(_aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_1__[\"memoize\"])(credentials, function (credentials) {\n return credentials.expiration !== undefined &&\n credentials.expiration.getTime() - Date.now() < CREDENTIAL_EXPIRE_WINDOW;\n }, function (credentials) { return credentials.expiration !== undefined; });\n }\n return Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_3__[\"normalizeProvider\"])(credentials);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/index.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/index.js ***! \*********************************************************************************************************/ /*! exports provided: resolveAwsAuthConfig, resolveSigV4AuthConfig, awsAuthMiddleware, awsAuthMiddlewareOptions, getAwsAuthPlugin, getSigV4AuthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveAwsAuthConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveAwsAuthConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveSigV4AuthConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveSigV4AuthConfig\"]; });\n\n/* harmony import */ var _middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./middleware */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddleware\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"awsAuthMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddlewareOptions\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"awsAuthMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getAwsAuthPlugin\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"getAwsAuthPlugin\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSigV4AuthPlugin\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"getSigV4AuthPlugin\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js ***! \**************************************************************************************************************/ /*! exports provided: awsAuthMiddleware, awsAuthMiddlewareOptions, getAwsAuthPlugin, getSigV4AuthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddleware\", function() { return awsAuthMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddlewareOptions\", function() { return awsAuthMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getAwsAuthPlugin\", function() { return getAwsAuthPlugin; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSigV4AuthPlugin\", function() { return getSigV4AuthPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n\n\n\n\nvar awsAuthMiddleware = function (options) {\n return function (next, context) {\n return function (args) {\n var _a, _b, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var authScheme, signer, output, _d, _e, dateHeader;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(args.request))\n return [2, next(args)];\n authScheme = (_c = (_b = (_a = (context.endpointV2)) === null || _a === void 0 ? void 0 : _a.properties) === null || _b === void 0 ? void 0 : _b.authSchemes) === null || _c === void 0 ? void 0 : _c[0];\n return [4, options.signer(authScheme)];\n case 1:\n signer = _g.sent();\n _d = next;\n _e = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args)];\n _f = {};\n return [4, signer.sign(args.request, {\n signingDate: Object(_utils_getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_2__[\"getSkewCorrectedDate\"])(options.systemClockOffset),\n signingRegion: context[\"signing_region\"],\n signingService: context[\"signing_service\"],\n })];\n case 2: return [4, _d.apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_f.request = _g.sent(), _f)]))]).catch(function (error) {\n var _a;\n var serverTime = (_a = error.ServerTime) !== null && _a !== void 0 ? _a : getDateHeader(error.$response);\n if (serverTime) {\n options.systemClockOffset = Object(_utils_getUpdatedSystemClockOffset__WEBPACK_IMPORTED_MODULE_3__[\"getUpdatedSystemClockOffset\"])(serverTime, options.systemClockOffset);\n }\n throw error;\n })];\n case 3:\n output = _g.sent();\n dateHeader = getDateHeader(output.response);\n if (dateHeader) {\n options.systemClockOffset = Object(_utils_getUpdatedSystemClockOffset__WEBPACK_IMPORTED_MODULE_3__[\"getUpdatedSystemClockOffset\"])(dateHeader, options.systemClockOffset);\n }\n return [2, output];\n }\n });\n });\n };\n };\n};\nvar getDateHeader = function (response) { var _a, _b, _c; return _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"].isInstance(response) ? (_b = (_a = response.headers) === null || _a === void 0 ? void 0 : _a.date) !== null && _b !== void 0 ? _b : (_c = response.headers) === null || _c === void 0 ? void 0 : _c.Date : undefined; };\nvar awsAuthMiddlewareOptions = {\n name: \"awsAuthMiddleware\",\n tags: [\"SIGNATURE\", \"AWSAUTH\"],\n relation: \"after\",\n toMiddleware: \"retryMiddleware\",\n override: true,\n};\nvar getAwsAuthPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(awsAuthMiddleware(options), awsAuthMiddlewareOptions);\n },\n}); };\nvar getSigV4AuthPlugin = getAwsAuthPlugin;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js ***! \******************************************************************************************************************************/ /*! exports provided: getSkewCorrectedDate */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSkewCorrectedDate\", function() { return getSkewCorrectedDate; });\nvar getSkewCorrectedDate = function (systemClockOffset) { return new Date(Date.now() + systemClockOffset); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js": /*!*************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js ***! \*************************************************************************************************************************************/ /*! exports provided: getUpdatedSystemClockOffset */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUpdatedSystemClockOffset\", function() { return getUpdatedSystemClockOffset; });\n/* harmony import */ var _isClockSkewed__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isClockSkewed */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js\");\n\nvar getUpdatedSystemClockOffset = function (clockTime, currentSystemClockOffset) {\n var clockTimeInMs = Date.parse(clockTime);\n if (Object(_isClockSkewed__WEBPACK_IMPORTED_MODULE_0__[\"isClockSkewed\"])(clockTimeInMs, currentSystemClockOffset)) {\n return clockTimeInMs - Date.now();\n }\n return currentSystemClockOffset;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js ***! \***********************************************************************************************************************/ /*! exports provided: isClockSkewed */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isClockSkewed\", function() { return isClockSkewed; });\n/* harmony import */ var _getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getSkewCorrectedDate */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js\");\n\nvar isClockSkewed = function (clockTime, systemClockOffset) {\n return Math.abs(Object(_getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_0__[\"getSkewCorrectedDate\"])(systemClockOffset).getTime() - clockTime) >= 300000;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js ***! \*****************************************************************************************************************/ /*! exports provided: constructStack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"constructStack\", function() { return constructStack; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar constructStack = function () {\n var absoluteEntries = [];\n var relativeEntries = [];\n var entriesNameSet = new Set();\n var sort = function (entries) {\n return entries.sort(function (a, b) {\n return stepWeights[b.step] - stepWeights[a.step] ||\n priorityWeights[b.priority || \"normal\"] - priorityWeights[a.priority || \"normal\"];\n });\n };\n var removeByName = function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n if (entry.name && entry.name === toRemove) {\n isRemoved = true;\n entriesNameSet.delete(toRemove);\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n };\n var removeByReference = function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n if (entry.middleware === toRemove) {\n isRemoved = true;\n if (entry.name)\n entriesNameSet.delete(entry.name);\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n };\n var cloneTo = function (toStack) {\n absoluteEntries.forEach(function (entry) {\n toStack.add(entry.middleware, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry));\n });\n relativeEntries.forEach(function (entry) {\n toStack.addRelativeTo(entry.middleware, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry));\n });\n return toStack;\n };\n var expandRelativeMiddlewareList = function (from) {\n var expandedMiddlewareList = [];\n from.before.forEach(function (entry) {\n if (entry.before.length === 0 && entry.after.length === 0) {\n expandedMiddlewareList.push(entry);\n }\n else {\n expandedMiddlewareList.push.apply(expandedMiddlewareList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(expandRelativeMiddlewareList(entry)), false));\n }\n });\n expandedMiddlewareList.push(from);\n from.after.reverse().forEach(function (entry) {\n if (entry.before.length === 0 && entry.after.length === 0) {\n expandedMiddlewareList.push(entry);\n }\n else {\n expandedMiddlewareList.push.apply(expandedMiddlewareList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(expandRelativeMiddlewareList(entry)), false));\n }\n });\n return expandedMiddlewareList;\n };\n var getMiddlewareList = function (debug) {\n if (debug === void 0) { debug = false; }\n var normalizedAbsoluteEntries = [];\n var normalizedRelativeEntries = [];\n var normalizedEntriesNameMap = {};\n absoluteEntries.forEach(function (entry) {\n var normalizedEntry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry), { before: [], after: [] });\n if (normalizedEntry.name)\n normalizedEntriesNameMap[normalizedEntry.name] = normalizedEntry;\n normalizedAbsoluteEntries.push(normalizedEntry);\n });\n relativeEntries.forEach(function (entry) {\n var normalizedEntry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry), { before: [], after: [] });\n if (normalizedEntry.name)\n normalizedEntriesNameMap[normalizedEntry.name] = normalizedEntry;\n normalizedRelativeEntries.push(normalizedEntry);\n });\n normalizedRelativeEntries.forEach(function (entry) {\n if (entry.toMiddleware) {\n var toMiddleware = normalizedEntriesNameMap[entry.toMiddleware];\n if (toMiddleware === undefined) {\n if (debug) {\n return;\n }\n throw new Error(\"\".concat(entry.toMiddleware, \" is not found when adding \").concat(entry.name || \"anonymous\", \" middleware \").concat(entry.relation, \" \").concat(entry.toMiddleware));\n }\n if (entry.relation === \"after\") {\n toMiddleware.after.push(entry);\n }\n if (entry.relation === \"before\") {\n toMiddleware.before.push(entry);\n }\n }\n });\n var mainChain = sort(normalizedAbsoluteEntries)\n .map(expandRelativeMiddlewareList)\n .reduce(function (wholeList, expendedMiddlewareList) {\n wholeList.push.apply(wholeList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(expendedMiddlewareList), false));\n return wholeList;\n }, []);\n return mainChain;\n };\n var stack = {\n add: function (middleware, options) {\n if (options === void 0) { options = {}; }\n var name = options.name, override = options.override;\n var entry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ step: \"initialize\", priority: \"normal\", middleware: middleware }, options);\n if (name) {\n if (entriesNameSet.has(name)) {\n if (!override)\n throw new Error(\"Duplicate middleware name '\".concat(name, \"'\"));\n var toOverrideIndex = absoluteEntries.findIndex(function (entry) { return entry.name === name; });\n var toOverride = absoluteEntries[toOverrideIndex];\n if (toOverride.step !== entry.step || toOverride.priority !== entry.priority) {\n throw new Error(\"\\\"\".concat(name, \"\\\" middleware with \").concat(toOverride.priority, \" priority in \").concat(toOverride.step, \" step cannot be \") +\n \"overridden by same-name middleware with \".concat(entry.priority, \" priority in \").concat(entry.step, \" step.\"));\n }\n absoluteEntries.splice(toOverrideIndex, 1);\n }\n entriesNameSet.add(name);\n }\n absoluteEntries.push(entry);\n },\n addRelativeTo: function (middleware, options) {\n var name = options.name, override = options.override;\n var entry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ middleware: middleware }, options);\n if (name) {\n if (entriesNameSet.has(name)) {\n if (!override)\n throw new Error(\"Duplicate middleware name '\".concat(name, \"'\"));\n var toOverrideIndex = relativeEntries.findIndex(function (entry) { return entry.name === name; });\n var toOverride = relativeEntries[toOverrideIndex];\n if (toOverride.toMiddleware !== entry.toMiddleware || toOverride.relation !== entry.relation) {\n throw new Error(\"\\\"\".concat(name, \"\\\" middleware \").concat(toOverride.relation, \" \\\"\").concat(toOverride.toMiddleware, \"\\\" middleware cannot be overridden \") +\n \"by same-name middleware \".concat(entry.relation, \" \\\"\").concat(entry.toMiddleware, \"\\\" middleware.\"));\n }\n relativeEntries.splice(toOverrideIndex, 1);\n }\n entriesNameSet.add(name);\n }\n relativeEntries.push(entry);\n },\n clone: function () { return cloneTo(constructStack()); },\n use: function (plugin) {\n plugin.applyToStack(stack);\n },\n remove: function (toRemove) {\n if (typeof toRemove === \"string\")\n return removeByName(toRemove);\n else\n return removeByReference(toRemove);\n },\n removeByTag: function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n var tags = entry.tags, name = entry.name;\n if (tags && tags.includes(toRemove)) {\n if (name)\n entriesNameSet.delete(name);\n isRemoved = true;\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n },\n concat: function (from) {\n var cloned = cloneTo(constructStack());\n cloned.use(from);\n return cloned;\n },\n applyToStack: cloneTo,\n identify: function () {\n return getMiddlewareList(true).map(function (mw) {\n return mw.name + \": \" + (mw.tags || []).join(\",\");\n });\n },\n resolve: function (handler, context) {\n var e_1, _a;\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(getMiddlewareList()\n .map(function (entry) { return entry.middleware; })\n .reverse()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var middleware = _c.value;\n handler = middleware(handler, context);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return handler;\n },\n };\n return stack;\n};\nvar stepWeights = {\n initialize: 5,\n serialize: 4,\n build: 3,\n finalizeRequest: 2,\n deserialize: 1,\n};\nvar priorityWeights = {\n high: 3,\n normal: 2,\n low: 1,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-stack/dist-es/index.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-stack/dist-es/index.js ***! \*******************************************************************************************************/ /*! exports provided: constructStack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _MiddlewareStack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./MiddlewareStack */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"constructStack\", function() { return _MiddlewareStack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-stack/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js ***! \*********************************************************************************************************************/ /*! exports provided: resolveUserAgentConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveUserAgentConfig\", function() { return resolveUserAgentConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nfunction resolveUserAgentConfig(input) {\n 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 });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js ***! \****************************************************************************************************************/ /*! exports provided: USER_AGENT, X_AMZ_USER_AGENT, SPACE, UA_ESCAPE_REGEX */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"USER_AGENT\", function() { return USER_AGENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"X_AMZ_USER_AGENT\", function() { return X_AMZ_USER_AGENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SPACE\", function() { return SPACE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UA_ESCAPE_REGEX\", function() { return UA_ESCAPE_REGEX; });\nvar USER_AGENT = \"user-agent\";\nvar X_AMZ_USER_AGENT = \"x-amz-user-agent\";\nvar SPACE = \" \";\nvar UA_ESCAPE_REGEX = /[^\\!\\#\\$\\%\\&\\'\\*\\+\\-\\.\\^\\_\\`\\|\\~\\d\\w]/g;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js ***! \************************************************************************************************************/ /*! exports provided: resolveUserAgentConfig, userAgentMiddleware, getUserAgentMiddlewareOptions, getUserAgentPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveUserAgentConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveUserAgentConfig\"]; });\n\n/* harmony import */ var _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./user-agent-middleware */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"userAgentMiddleware\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"userAgentMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentMiddlewareOptions\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"getUserAgentMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentPlugin\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"getUserAgentPlugin\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js ***! \****************************************************************************************************************************/ /*! exports provided: userAgentMiddleware, getUserAgentMiddlewareOptions, getUserAgentPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"userAgentMiddleware\", function() { return userAgentMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentMiddlewareOptions\", function() { return getUserAgentMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentPlugin\", function() { return getUserAgentPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n\n\n\nvar userAgentMiddleware = function (options) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, headers, userAgent, defaultUserAgent, customUserAgent, sdkUserAgentValue, normalUAValue;\n var _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request))\n return [2, next(args)];\n headers = request.headers;\n userAgent = ((_a = context === null || context === void 0 ? void 0 : context.userAgent) === null || _a === void 0 ? void 0 : _a.map(escapeUserAgent)) || [];\n return [4, options.defaultUserAgentProvider()];\n case 1:\n defaultUserAgent = (_c.sent()).map(escapeUserAgent);\n customUserAgent = ((_b = options === null || options === void 0 ? void 0 : options.customUserAgent) === null || _b === void 0 ? void 0 : _b.map(escapeUserAgent)) || [];\n sdkUserAgentValue = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(defaultUserAgent), false), Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(userAgent), false), Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(customUserAgent), false).join(_constants__WEBPACK_IMPORTED_MODULE_2__[\"SPACE\"]);\n normalUAValue = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(defaultUserAgent.filter(function (section) { return section.startsWith(\"aws-sdk-\"); })), false), Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(customUserAgent), false).join(_constants__WEBPACK_IMPORTED_MODULE_2__[\"SPACE\"]);\n if (options.runtime !== \"browser\") {\n if (normalUAValue) {\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]] = headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]]\n ? \"\".concat(headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"USER_AGENT\"]], \" \").concat(normalUAValue)\n : normalUAValue;\n }\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"USER_AGENT\"]] = sdkUserAgentValue;\n }\n else {\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]] = sdkUserAgentValue;\n }\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n }); };\n };\n};\nvar escapeUserAgent = function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), name = _b[0], version = _b[1];\n var prefixSeparatorIndex = name.indexOf(\"/\");\n var prefix = name.substring(0, prefixSeparatorIndex);\n var uaName = name.substring(prefixSeparatorIndex + 1);\n if (prefix === \"api\") {\n uaName = uaName.toLowerCase();\n }\n return [prefix, uaName, version]\n .filter(function (item) { return item && item.length > 0; })\n .map(function (item) { return item === null || item === void 0 ? void 0 : item.replace(_constants__WEBPACK_IMPORTED_MODULE_2__[\"UA_ESCAPE_REGEX\"], \"_\"); })\n .join(\"/\");\n};\nvar getUserAgentMiddlewareOptions = {\n name: \"getUserAgentMiddleware\",\n step: \"build\",\n priority: \"low\",\n tags: [\"SET_USER_AGENT\", \"USER_AGENT\"],\n override: true,\n};\nvar getUserAgentPlugin = function (config) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(userAgentMiddleware(config), getUserAgentMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js ***! \***************************************************************************************************************************/ /*! exports provided: CredentialsProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CredentialsProviderError\", function() { return CredentialsProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar CredentialsProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CredentialsProviderError, _super);\n function CredentialsProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message, tryNextLink) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"CredentialsProviderError\";\n Object.setPrototypeOf(_this, CredentialsProviderError.prototype);\n return _this;\n }\n return CredentialsProviderError;\n}(_ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js ***! \****************************************************************************************************************/ /*! exports provided: ProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return ProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar ProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ProviderError, _super);\n function ProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"ProviderError\";\n Object.setPrototypeOf(_this, ProviderError.prototype);\n return _this;\n }\n ProviderError.from = function (error, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n return Object.assign(new this(error.message, tryNextLink), error);\n };\n return ProviderError;\n}(Error));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js ***! \*********************************************************************************************************************/ /*! exports provided: TokenProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TokenProviderError\", function() { return TokenProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar TokenProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TokenProviderError, _super);\n function TokenProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message, tryNextLink) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"TokenProviderError\";\n Object.setPrototypeOf(_this, TokenProviderError.prototype);\n return _this;\n }\n return TokenProviderError;\n}(_ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/chain.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/chain.js ***! \********************************************************************************************************/ /*! exports provided: chain */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return chain; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nfunction chain() {\n var providers = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n providers[_i] = arguments[_i];\n }\n return function () {\n var e_1, _a;\n var promise = Promise.reject(new _ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"](\"No providers in chain\"));\n var _loop_1 = function (provider) {\n promise = promise.catch(function (err) {\n if (err === null || err === void 0 ? void 0 : err.tryNextLink) {\n return provider();\n }\n throw err;\n });\n };\n try {\n for (var providers_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(providers), providers_1_1 = providers_1.next(); !providers_1_1.done; providers_1_1 = providers_1.next()) {\n var provider = providers_1_1.value;\n _loop_1(provider);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (providers_1_1 && !providers_1_1.done && (_a = providers_1.return)) _a.call(providers_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return promise;\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/chain.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js ***! \*************************************************************************************************************/ /*! exports provided: fromStatic */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return fromStatic; });\nvar fromStatic = function (staticValue) {\n return function () {\n return Promise.resolve(staticValue);\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/index.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/index.js ***! \********************************************************************************************************/ /*! exports provided: CredentialsProviderError, ProviderError, TokenProviderError, chain, fromStatic, memoize */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _CredentialsProviderError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CredentialsProviderError */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CredentialsProviderError\", function() { return _CredentialsProviderError__WEBPACK_IMPORTED_MODULE_0__[\"CredentialsProviderError\"]; });\n\n/* 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\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return _ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]; });\n\n/* harmony import */ var _TokenProviderError__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./TokenProviderError */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TokenProviderError\", function() { return _TokenProviderError__WEBPACK_IMPORTED_MODULE_2__[\"TokenProviderError\"]; });\n\n/* harmony import */ var _chain__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./chain */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/chain.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return _chain__WEBPACK_IMPORTED_MODULE_3__[\"chain\"]; });\n\n/* harmony import */ var _fromStatic__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./fromStatic */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return _fromStatic__WEBPACK_IMPORTED_MODULE_4__[\"fromStatic\"]; });\n\n/* harmony import */ var _memoize__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./memoize */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/memoize.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return _memoize__WEBPACK_IMPORTED_MODULE_5__[\"memoize\"]; });\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/memoize.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/memoize.js ***! \**********************************************************************************************************/ /*! exports provided: memoize */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return memoize; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar memoize = function (provider, isExpired, requiresRefresh) {\n var resolved;\n var pending;\n var hasResult;\n var isConstant = false;\n var coalesceProvider = function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!pending) {\n pending = provider();\n }\n _a.label = 1;\n case 1:\n _a.trys.push([1, , 3, 4]);\n return [4, pending];\n case 2:\n resolved = _a.sent();\n hasResult = true;\n isConstant = false;\n return [3, 4];\n case 3:\n pending = undefined;\n return [7];\n case 4: return [2, resolved];\n }\n });\n }); };\n if (isExpired === undefined) {\n return function (options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(!hasResult || (options === null || options === void 0 ? void 0 : options.forceRefresh))) return [3, 2];\n return [4, coalesceProvider()];\n case 1:\n resolved = _a.sent();\n _a.label = 2;\n case 2: return [2, resolved];\n }\n });\n }); };\n }\n return function (options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(!hasResult || (options === null || options === void 0 ? void 0 : options.forceRefresh))) return [3, 2];\n return [4, coalesceProvider()];\n case 1:\n resolved = _a.sent();\n _a.label = 2;\n case 2:\n if (isConstant) {\n return [2, resolved];\n }\n if (requiresRefresh && !requiresRefresh(resolved)) {\n isConstant = true;\n return [2, resolved];\n }\n if (!isExpired(resolved)) return [3, 4];\n return [4, coalesceProvider()];\n case 3:\n _a.sent();\n return [2, resolved];\n case 4: return [2, resolved];\n }\n });\n }); };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/memoize.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js ***! \**********************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js ***! \**********************************************************************************************************/ /*! exports provided: HttpRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return HttpRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar HttpRequest = (function () {\n function HttpRequest(options) {\n this.method = options.method || \"GET\";\n this.hostname = options.hostname || \"localhost\";\n this.port = options.port;\n this.query = options.query || {};\n this.headers = options.headers || {};\n this.body = options.body;\n this.protocol = options.protocol\n ? options.protocol.slice(-1) !== \":\"\n ? \"\".concat(options.protocol, \":\")\n : options.protocol\n : \"https:\";\n this.path = options.path ? (options.path.charAt(0) !== \"/\" ? \"/\".concat(options.path) : options.path) : \"/\";\n }\n HttpRequest.isInstance = function (request) {\n if (!request)\n return false;\n var req = request;\n return (\"method\" in req &&\n \"protocol\" in req &&\n \"hostname\" in req &&\n \"path\" in req &&\n typeof req[\"query\"] === \"object\" &&\n typeof req[\"headers\"] === \"object\");\n };\n HttpRequest.prototype.clone = function () {\n var cloned = new HttpRequest(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this.headers) }));\n if (cloned.query)\n cloned.query = cloneQuery(cloned.query);\n return cloned;\n };\n return HttpRequest;\n}());\n\nfunction cloneQuery(query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(param), false) : param, _a));\n }, {});\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js ***! \***********************************************************************************************************/ /*! exports provided: HttpResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return HttpResponse; });\nvar HttpResponse = (function () {\n function HttpResponse(options) {\n this.statusCode = options.statusCode;\n this.headers = options.headers || {};\n this.body = options.body;\n }\n HttpResponse.isInstance = function (response) {\n if (!response)\n return false;\n var resp = response;\n return typeof resp.statusCode === \"number\" && typeof resp.headers === \"object\";\n };\n return HttpResponse;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js ***! \****************************************************************************************************/ /*! exports provided: HttpRequest, HttpResponse, isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _httpHandler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./httpHandler */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _httpRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./httpRequest */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return _httpRequest__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]; });\n\n/* harmony import */ var _httpResponse__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./httpResponse */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return _httpResponse__WEBPACK_IMPORTED_MODULE_2__[\"HttpResponse\"]; });\n\n/* harmony import */ var _isValidHostname__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isValidHostname */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return _isValidHostname__WEBPACK_IMPORTED_MODULE_3__[\"isValidHostname\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js ***! \**************************************************************************************************************/ /*! exports provided: isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return isValidHostname; });\nfunction isValidHostname(hostname) {\n var hostPattern = /^[a-z0-9][a-z0-9\\.\\-]*[a-z0-9]$/;\n return hostPattern.test(hostname);\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/querystring-builder/dist-es/index.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/querystring-builder/dist-es/index.js ***! \**********************************************************************************************************/ /*! exports provided: buildQueryString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildQueryString\", function() { return buildQueryString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nfunction buildQueryString(query) {\n var e_1, _a;\n var parts = [];\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(query).sort()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n var value = query[key];\n key = Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key);\n if (Array.isArray(value)) {\n for (var i = 0, iLen = value.length; i < iLen; i++) {\n parts.push(\"\".concat(key, \"=\").concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value[i])));\n }\n }\n else {\n var qsEntry = key;\n if (value || typeof value === \"string\") {\n qsEntry += \"=\".concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value));\n }\n parts.push(qsEntry);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return parts.join(\"&\");\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/querystring-builder/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/querystring-parser/dist-es/index.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/querystring-parser/dist-es/index.js ***! \*********************************************************************************************************/ /*! exports provided: parseQueryString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseQueryString\", function() { return parseQueryString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nfunction parseQueryString(querystring) {\n var e_1, _a;\n var query = {};\n querystring = querystring.replace(/^\\?/, \"\");\n if (querystring) {\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(querystring.split(\"&\")), _c = _b.next(); !_c.done; _c = _b.next()) {\n var pair = _c.value;\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(pair.split(\"=\"), 2), key = _d[0], _e = _d[1], value = _e === void 0 ? null : _e;\n key = decodeURIComponent(key);\n if (value) {\n value = decodeURIComponent(value);\n }\n if (!(key in query)) {\n query[key] = value;\n }\n else if (Array.isArray(query[key])) {\n query[key].push(value);\n }\n else {\n query[key] = [query[key], value];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n }\n return query;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/querystring-parser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js ***! \***********************************************************************************************************************/ /*! exports provided: CLOCK_SKEW_ERROR_CODES, THROTTLING_ERROR_CODES, TRANSIENT_ERROR_CODES, TRANSIENT_ERROR_STATUS_CODES, NODEJS_TIMEOUT_ERROR_CODES */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CLOCK_SKEW_ERROR_CODES\", function() { return CLOCK_SKEW_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"THROTTLING_ERROR_CODES\", function() { return THROTTLING_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TRANSIENT_ERROR_CODES\", function() { return TRANSIENT_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TRANSIENT_ERROR_STATUS_CODES\", function() { return TRANSIENT_ERROR_STATUS_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODEJS_TIMEOUT_ERROR_CODES\", function() { return NODEJS_TIMEOUT_ERROR_CODES; });\nvar CLOCK_SKEW_ERROR_CODES = [\n \"AuthFailure\",\n \"InvalidSignatureException\",\n \"RequestExpired\",\n \"RequestInTheFuture\",\n \"RequestTimeTooSkewed\",\n \"SignatureDoesNotMatch\",\n];\nvar THROTTLING_ERROR_CODES = [\n \"BandwidthLimitExceeded\",\n \"EC2ThrottledException\",\n \"LimitExceededException\",\n \"PriorRequestNotComplete\",\n \"ProvisionedThroughputExceededException\",\n \"RequestLimitExceeded\",\n \"RequestThrottled\",\n \"RequestThrottledException\",\n \"SlowDown\",\n \"ThrottledException\",\n \"Throttling\",\n \"ThrottlingException\",\n \"TooManyRequestsException\",\n \"TransactionInProgressException\",\n];\nvar TRANSIENT_ERROR_CODES = [\"AbortError\", \"TimeoutError\", \"RequestTimeout\", \"RequestTimeoutException\"];\nvar TRANSIENT_ERROR_STATUS_CODES = [500, 502, 503, 504];\nvar NODEJS_TIMEOUT_ERROR_CODES = [\"ECONNRESET\", \"EPIPE\", \"ETIMEDOUT\"];\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/index.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/index.js ***! \*******************************************************************************************************************/ /*! exports provided: isRetryableByTrait, isClockSkewError, isThrottlingError, isTransientError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isRetryableByTrait\", function() { return isRetryableByTrait; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isClockSkewError\", function() { return isClockSkewError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isThrottlingError\", function() { return isThrottlingError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTransientError\", function() { return isTransientError; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js\");\n\nvar isRetryableByTrait = function (error) { return error.$retryable !== undefined; };\nvar isClockSkewError = function (error) { return _constants__WEBPACK_IMPORTED_MODULE_0__[\"CLOCK_SKEW_ERROR_CODES\"].includes(error.name); };\nvar isThrottlingError = function (error) {\n var _a, _b;\n return ((_a = error.$metadata) === null || _a === void 0 ? void 0 : _a.httpStatusCode) === 429 ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"THROTTLING_ERROR_CODES\"].includes(error.name) ||\n ((_b = error.$retryable) === null || _b === void 0 ? void 0 : _b.throttling) == true;\n};\nvar isTransientError = function (error) {\n var _a;\n return _constants__WEBPACK_IMPORTED_MODULE_0__[\"TRANSIENT_ERROR_CODES\"].includes(error.name) ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"NODEJS_TIMEOUT_ERROR_CODES\"].includes((error === null || error === void 0 ? void 0 : error.code) || \"\") ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"TRANSIENT_ERROR_STATUS_CODES\"].includes(((_a = error.$metadata) === null || _a === void 0 ? void 0 : _a.httpStatusCode) || 0);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js ***! \*********************************************************************************************************/ /*! exports provided: SignatureV4 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SignatureV4\", function() { return SignatureV4; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* harmony import */ var _aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-middleware */ \"./node_modules/@aws-sdk/util-middleware/dist-es/index.js\");\n/* 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\");\n/* harmony import */ var _credentialDerivation__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./credentialDerivation */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js\");\n/* harmony import */ var _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./getCanonicalHeaders */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js\");\n/* harmony import */ var _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./getCanonicalQuery */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js\");\n/* harmony import */ var _getPayloadHash__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./getPayloadHash */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js\");\n/* harmony import */ var _headerUtil__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./headerUtil */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js\");\n/* harmony import */ var _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./moveHeadersToQuery */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js\");\n/* harmony import */ var _prepareRequest__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./prepareRequest */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js\");\n/* harmony import */ var _utilDate__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./utilDate */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js\");\n\n\n\n\n\n\n\n\n\n\n\n\nvar SignatureV4 = (function () {\n function SignatureV4(_a) {\n var applyChecksum = _a.applyChecksum, credentials = _a.credentials, region = _a.region, service = _a.service, sha256 = _a.sha256, _b = _a.uriEscapePath, uriEscapePath = _b === void 0 ? true : _b;\n this.service = service;\n this.sha256 = sha256;\n this.uriEscapePath = uriEscapePath;\n this.applyChecksum = typeof applyChecksum === \"boolean\" ? applyChecksum : true;\n this.regionProvider = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_2__[\"normalizeProvider\"])(region);\n this.credentialProvider = Object(_aws_sdk_util_middleware__WEBPACK_IMPORTED_MODULE_2__[\"normalizeProvider\"])(credentials);\n }\n SignatureV4.prototype.presign = function (originalRequest, options) {\n if (options === void 0) { options = {}; }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _a, signingDate, _b, expiresIn, unsignableHeaders, unhoistableHeaders, signableHeaders, signingRegion, signingService, credentials, region, _c, _d, longDate, shortDate, scope, request, canonicalHeaders, _e, _f, _g, _h, _j, _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = options.signingDate, signingDate = _a === void 0 ? new Date() : _a, _b = options.expiresIn, expiresIn = _b === void 0 ? 3600 : _b, unsignableHeaders = options.unsignableHeaders, unhoistableHeaders = options.unhoistableHeaders, signableHeaders = options.signableHeaders, signingRegion = options.signingRegion, signingService = options.signingService;\n return [4, this.credentialProvider()];\n case 1:\n credentials = _l.sent();\n this.validateResolvedCredentials(credentials);\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 2];\n _c = signingRegion;\n return [3, 4];\n case 2: return [4, this.regionProvider()];\n case 3:\n _c = (_l.sent());\n _l.label = 4;\n case 4:\n region = _c;\n _d = formatDate(signingDate), longDate = _d.longDate, shortDate = _d.shortDate;\n if (expiresIn > _constants__WEBPACK_IMPORTED_MODULE_3__[\"MAX_PRESIGNED_TTL\"]) {\n return [2, Promise.reject(\"Signature version 4 presigned URLs\" + \" must have an expiration date less than one week in\" + \" the future\")];\n }\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n request = Object(_moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_9__[\"moveHeadersToQuery\"])(Object(_prepareRequest__WEBPACK_IMPORTED_MODULE_10__[\"prepareRequest\"])(originalRequest), { unhoistableHeaders: unhoistableHeaders });\n if (credentials.sessionToken) {\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"TOKEN_QUERY_PARAM\"]] = credentials.sessionToken;\n }\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_QUERY_PARAM\"]] = _constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_IDENTIFIER\"];\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"CREDENTIAL_QUERY_PARAM\"]] = \"\".concat(credentials.accessKeyId, \"/\").concat(scope);\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"AMZ_DATE_QUERY_PARAM\"]] = longDate;\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"EXPIRES_QUERY_PARAM\"]] = expiresIn.toString(10);\n canonicalHeaders = Object(_getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_5__[\"getCanonicalHeaders\"])(request, unsignableHeaders, signableHeaders);\n request.query[_constants__WEBPACK_IMPORTED_MODULE_3__[\"SIGNED_HEADERS_QUERY_PARAM\"]] = getCanonicalHeaderList(canonicalHeaders);\n _e = request.query;\n _f = _constants__WEBPACK_IMPORTED_MODULE_3__[\"SIGNATURE_QUERY_PARAM\"];\n _g = this.getSignature;\n _h = [longDate,\n scope,\n this.getSigningKey(credentials, region, shortDate, signingService)];\n _j = this.createCanonicalRequest;\n _k = [request, canonicalHeaders];\n return [4, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_7__[\"getPayloadHash\"])(originalRequest, this.sha256)];\n case 5: return [4, _g.apply(this, _h.concat([_j.apply(this, _k.concat([_l.sent()]))]))];\n case 6:\n _e[_f] = _l.sent();\n return [2, request];\n }\n });\n });\n };\n SignatureV4.prototype.sign = function (toSign, options) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (typeof toSign === \"string\") {\n return [2, this.signString(toSign, options)];\n }\n else if (toSign.headers && toSign.payload) {\n return [2, this.signEvent(toSign, options)];\n }\n else {\n return [2, this.signRequest(toSign, options)];\n }\n return [2];\n });\n });\n };\n SignatureV4.prototype.signEvent = function (_a, _b) {\n var headers = _a.headers, payload = _a.payload;\n var _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, priorSignature = _b.priorSignature, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var region, _d, _e, shortDate, longDate, scope, hashedPayload, hash, hashedHeaders, _f, stringToSign;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 1];\n _d = signingRegion;\n return [3, 3];\n case 1: return [4, this.regionProvider()];\n case 2:\n _d = (_g.sent());\n _g.label = 3;\n case 3:\n region = _d;\n _e = formatDate(signingDate), shortDate = _e.shortDate, longDate = _e.longDate;\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n return [4, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_7__[\"getPayloadHash\"])({ headers: {}, body: payload }, this.sha256)];\n case 4:\n hashedPayload = _g.sent();\n hash = new this.sha256();\n hash.update(headers);\n _f = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4, hash.digest()];\n case 5:\n hashedHeaders = _f.apply(void 0, [_g.sent()]);\n stringToSign = [\n _constants__WEBPACK_IMPORTED_MODULE_3__[\"EVENT_ALGORITHM_IDENTIFIER\"],\n longDate,\n scope,\n priorSignature,\n hashedHeaders,\n hashedPayload,\n ].join(\"\\n\");\n return [2, this.signString(stringToSign, { signingDate: signingDate, signingRegion: region, signingService: signingService })];\n }\n });\n });\n };\n SignatureV4.prototype.signString = function (stringToSign, _a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var credentials, region, _d, shortDate, hash, _e, _f, _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0: return [4, this.credentialProvider()];\n case 1:\n credentials = _h.sent();\n this.validateResolvedCredentials(credentials);\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 2];\n _d = signingRegion;\n return [3, 4];\n case 2: return [4, this.regionProvider()];\n case 3:\n _d = (_h.sent());\n _h.label = 4;\n case 4:\n region = _d;\n shortDate = formatDate(signingDate).shortDate;\n _f = (_e = this.sha256).bind;\n return [4, this.getSigningKey(credentials, region, shortDate, signingService)];\n case 5:\n hash = new (_f.apply(_e, [void 0, _h.sent()]))();\n hash.update(stringToSign);\n _g = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4, hash.digest()];\n case 6: return [2, _g.apply(void 0, [_h.sent()])];\n }\n });\n });\n };\n SignatureV4.prototype.signRequest = function (requestToSign, _a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, signableHeaders = _b.signableHeaders, unsignableHeaders = _b.unsignableHeaders, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var credentials, region, _d, request, _e, longDate, shortDate, scope, payloadHash, canonicalHeaders, signature;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0: return [4, this.credentialProvider()];\n case 1:\n credentials = _f.sent();\n this.validateResolvedCredentials(credentials);\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3, 2];\n _d = signingRegion;\n return [3, 4];\n case 2: return [4, this.regionProvider()];\n case 3:\n _d = (_f.sent());\n _f.label = 4;\n case 4:\n region = _d;\n request = Object(_prepareRequest__WEBPACK_IMPORTED_MODULE_10__[\"prepareRequest\"])(requestToSign);\n _e = formatDate(signingDate), longDate = _e.longDate, shortDate = _e.shortDate;\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"AMZ_DATE_HEADER\"]] = longDate;\n if (credentials.sessionToken) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"TOKEN_HEADER\"]] = credentials.sessionToken;\n }\n return [4, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_7__[\"getPayloadHash\"])(request, this.sha256)];\n case 5:\n payloadHash = _f.sent();\n if (!Object(_headerUtil__WEBPACK_IMPORTED_MODULE_8__[\"hasHeader\"])(_constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"], request.headers) && this.applyChecksum) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"]] = payloadHash;\n }\n canonicalHeaders = Object(_getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_5__[\"getCanonicalHeaders\"])(request, unsignableHeaders, signableHeaders);\n return [4, this.getSignature(longDate, scope, this.getSigningKey(credentials, region, shortDate, signingService), this.createCanonicalRequest(request, canonicalHeaders, payloadHash))];\n case 6:\n signature = _f.sent();\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_3__[\"AUTH_HEADER\"]] =\n \"\".concat(_constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_IDENTIFIER\"], \" \") +\n \"Credential=\".concat(credentials.accessKeyId, \"/\").concat(scope, \", \") +\n \"SignedHeaders=\".concat(getCanonicalHeaderList(canonicalHeaders), \", \") +\n \"Signature=\".concat(signature);\n return [2, request];\n }\n });\n });\n };\n SignatureV4.prototype.createCanonicalRequest = function (request, canonicalHeaders, payloadHash) {\n var sortedHeaders = Object.keys(canonicalHeaders).sort();\n return \"\".concat(request.method, \"\\n\").concat(this.getCanonicalPath(request), \"\\n\").concat(Object(_getCanonicalQuery__WEBPACK_IMPORTED_MODULE_6__[\"getCanonicalQuery\"])(request), \"\\n\").concat(sortedHeaders.map(function (name) { return \"\".concat(name, \":\").concat(canonicalHeaders[name]); }).join(\"\\n\"), \"\\n\\n\").concat(sortedHeaders.join(\";\"), \"\\n\").concat(payloadHash);\n };\n SignatureV4.prototype.createStringToSign = function (longDate, credentialScope, canonicalRequest) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var hash, hashedRequest;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n hash = new this.sha256();\n hash.update(canonicalRequest);\n return [4, hash.digest()];\n case 1:\n hashedRequest = _a.sent();\n return [2, \"\".concat(_constants__WEBPACK_IMPORTED_MODULE_3__[\"ALGORITHM_IDENTIFIER\"], \"\\n\").concat(longDate, \"\\n\").concat(credentialScope, \"\\n\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(hashedRequest))];\n }\n });\n });\n };\n SignatureV4.prototype.getCanonicalPath = function (_a) {\n var e_1, _b;\n var path = _a.path;\n if (this.uriEscapePath) {\n var normalizedPathSegments = [];\n try {\n for (var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(path.split(\"/\")), _d = _c.next(); !_d.done; _d = _c.next()) {\n var pathSegment = _d.value;\n if ((pathSegment === null || pathSegment === void 0 ? void 0 : pathSegment.length) === 0)\n continue;\n if (pathSegment === \".\")\n continue;\n if (pathSegment === \"..\") {\n normalizedPathSegments.pop();\n }\n else {\n normalizedPathSegments.push(pathSegment);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_b = _c.return)) _b.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var normalizedPath = \"\".concat((path === null || path === void 0 ? void 0 : path.startsWith(\"/\")) ? \"/\" : \"\").concat(normalizedPathSegments.join(\"/\")).concat(normalizedPathSegments.length > 0 && (path === null || path === void 0 ? void 0 : path.endsWith(\"/\")) ? \"/\" : \"\");\n var doubleEncoded = encodeURIComponent(normalizedPath);\n return doubleEncoded.replace(/%2F/g, \"/\");\n }\n return path;\n };\n SignatureV4.prototype.getSignature = function (longDate, credentialScope, keyPromise, canonicalRequest) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var stringToSign, hash, _a, _b, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0: return [4, this.createStringToSign(longDate, credentialScope, canonicalRequest)];\n case 1:\n stringToSign = _d.sent();\n _b = (_a = this.sha256).bind;\n return [4, keyPromise];\n case 2:\n hash = new (_b.apply(_a, [void 0, _d.sent()]))();\n hash.update(stringToSign);\n _c = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4, hash.digest()];\n case 3: return [2, _c.apply(void 0, [_d.sent()])];\n }\n });\n });\n };\n SignatureV4.prototype.getSigningKey = function (credentials, region, shortDate, service) {\n return Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_4__[\"getSigningKey\"])(this.sha256, credentials, shortDate, region, service || this.service);\n };\n SignatureV4.prototype.validateResolvedCredentials = function (credentials) {\n if (typeof credentials !== \"object\" ||\n typeof credentials.accessKeyId !== \"string\" ||\n typeof credentials.secretAccessKey !== \"string\") {\n throw new Error(\"Resolved credential object is not valid\");\n }\n };\n return SignatureV4;\n}());\n\nvar formatDate = function (now) {\n var longDate = Object(_utilDate__WEBPACK_IMPORTED_MODULE_11__[\"iso8601\"])(now).replace(/[\\-:]/g, \"\");\n return {\n longDate: longDate,\n shortDate: longDate.slice(0, 8),\n };\n};\nvar getCanonicalHeaderList = function (headers) { return Object.keys(headers).sort().join(\";\"); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js ***! \**********************************************************************************************************/ /*! exports provided: cloneRequest, cloneQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cloneRequest\", function() { return cloneRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cloneQuery\", function() { return cloneQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar cloneRequest = function (_a) {\n var headers = _a.headers, query = _a.query, rest = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"headers\", \"query\"]);\n return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, rest), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, headers), query: query ? cloneQuery(query) : undefined }));\n};\nvar cloneQuery = function (query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(param), false) : param, _a));\n }, {});\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/constants.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/constants.js ***! \*******************************************************************************************************/ /*! exports provided: ALGORITHM_QUERY_PARAM, CREDENTIAL_QUERY_PARAM, AMZ_DATE_QUERY_PARAM, SIGNED_HEADERS_QUERY_PARAM, EXPIRES_QUERY_PARAM, SIGNATURE_QUERY_PARAM, TOKEN_QUERY_PARAM, REGION_SET_PARAM, AUTH_HEADER, AMZ_DATE_HEADER, DATE_HEADER, GENERATED_HEADERS, SIGNATURE_HEADER, SHA256_HEADER, TOKEN_HEADER, HOST_HEADER, ALWAYS_UNSIGNABLE_HEADERS, PROXY_HEADER_PATTERN, SEC_HEADER_PATTERN, UNSIGNABLE_PATTERNS, ALGORITHM_IDENTIFIER, ALGORITHM_IDENTIFIER_V4A, EVENT_ALGORITHM_IDENTIFIER, UNSIGNED_PAYLOAD, MAX_CACHE_SIZE, KEY_TYPE_IDENTIFIER, MAX_PRESIGNED_TTL */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_QUERY_PARAM\", function() { return ALGORITHM_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CREDENTIAL_QUERY_PARAM\", function() { return CREDENTIAL_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMZ_DATE_QUERY_PARAM\", function() { return AMZ_DATE_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNED_HEADERS_QUERY_PARAM\", function() { return SIGNED_HEADERS_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EXPIRES_QUERY_PARAM\", function() { return EXPIRES_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNATURE_QUERY_PARAM\", function() { return SIGNATURE_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TOKEN_QUERY_PARAM\", function() { return TOKEN_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_SET_PARAM\", function() { return REGION_SET_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AUTH_HEADER\", function() { return AUTH_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMZ_DATE_HEADER\", function() { return AMZ_DATE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DATE_HEADER\", function() { return DATE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GENERATED_HEADERS\", function() { return GENERATED_HEADERS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNATURE_HEADER\", function() { return SIGNATURE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SHA256_HEADER\", function() { return SHA256_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TOKEN_HEADER\", function() { return TOKEN_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HOST_HEADER\", function() { return HOST_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALWAYS_UNSIGNABLE_HEADERS\", function() { return ALWAYS_UNSIGNABLE_HEADERS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PROXY_HEADER_PATTERN\", function() { return PROXY_HEADER_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SEC_HEADER_PATTERN\", function() { return SEC_HEADER_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UNSIGNABLE_PATTERNS\", function() { return UNSIGNABLE_PATTERNS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_IDENTIFIER\", function() { return ALGORITHM_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_IDENTIFIER_V4A\", function() { return ALGORITHM_IDENTIFIER_V4A; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EVENT_ALGORITHM_IDENTIFIER\", function() { return EVENT_ALGORITHM_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UNSIGNED_PAYLOAD\", function() { return UNSIGNED_PAYLOAD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAX_CACHE_SIZE\", function() { return MAX_CACHE_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KEY_TYPE_IDENTIFIER\", function() { return KEY_TYPE_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAX_PRESIGNED_TTL\", function() { return MAX_PRESIGNED_TTL; });\nvar ALGORITHM_QUERY_PARAM = \"X-Amz-Algorithm\";\nvar CREDENTIAL_QUERY_PARAM = \"X-Amz-Credential\";\nvar AMZ_DATE_QUERY_PARAM = \"X-Amz-Date\";\nvar SIGNED_HEADERS_QUERY_PARAM = \"X-Amz-SignedHeaders\";\nvar EXPIRES_QUERY_PARAM = \"X-Amz-Expires\";\nvar SIGNATURE_QUERY_PARAM = \"X-Amz-Signature\";\nvar TOKEN_QUERY_PARAM = \"X-Amz-Security-Token\";\nvar REGION_SET_PARAM = \"X-Amz-Region-Set\";\nvar AUTH_HEADER = \"authorization\";\nvar AMZ_DATE_HEADER = AMZ_DATE_QUERY_PARAM.toLowerCase();\nvar DATE_HEADER = \"date\";\nvar GENERATED_HEADERS = [AUTH_HEADER, AMZ_DATE_HEADER, DATE_HEADER];\nvar SIGNATURE_HEADER = SIGNATURE_QUERY_PARAM.toLowerCase();\nvar SHA256_HEADER = \"x-amz-content-sha256\";\nvar TOKEN_HEADER = TOKEN_QUERY_PARAM.toLowerCase();\nvar HOST_HEADER = \"host\";\nvar ALWAYS_UNSIGNABLE_HEADERS = {\n authorization: true,\n \"cache-control\": true,\n connection: true,\n expect: true,\n from: true,\n \"keep-alive\": true,\n \"max-forwards\": true,\n pragma: true,\n referer: true,\n te: true,\n trailer: true,\n \"transfer-encoding\": true,\n upgrade: true,\n \"user-agent\": true,\n \"x-amzn-trace-id\": true,\n};\nvar PROXY_HEADER_PATTERN = /^proxy-/;\nvar SEC_HEADER_PATTERN = /^sec-/;\nvar UNSIGNABLE_PATTERNS = [/^proxy-/i, /^sec-/i];\nvar ALGORITHM_IDENTIFIER = \"AWS4-HMAC-SHA256\";\nvar ALGORITHM_IDENTIFIER_V4A = \"AWS4-ECDSA-P256-SHA256\";\nvar EVENT_ALGORITHM_IDENTIFIER = \"AWS4-HMAC-SHA256-PAYLOAD\";\nvar UNSIGNED_PAYLOAD = \"UNSIGNED-PAYLOAD\";\nvar MAX_CACHE_SIZE = 50;\nvar KEY_TYPE_IDENTIFIER = \"aws4_request\";\nvar MAX_PRESIGNED_TTL = 60 * 60 * 24 * 7;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js ***! \******************************************************************************************************************/ /*! exports provided: createScope, getSigningKey, clearCredentialCache */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createScope\", function() { return createScope; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSigningKey\", function() { return getSigningKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"clearCredentialCache\", function() { return clearCredentialCache; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n\n\n\nvar signingKeyCache = {};\nvar cacheQueue = [];\nvar createScope = function (shortDate, region, service) {\n return \"\".concat(shortDate, \"/\").concat(region, \"/\").concat(service, \"/\").concat(_constants__WEBPACK_IMPORTED_MODULE_2__[\"KEY_TYPE_IDENTIFIER\"]);\n};\nvar getSigningKey = function (sha256Constructor, credentials, shortDate, region, service) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var credsHash, cacheKey, key, _a, _b, signable, e_1_1;\n var e_1, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0: return [4, hmac(sha256Constructor, credentials.secretAccessKey, credentials.accessKeyId)];\n case 1:\n credsHash = _d.sent();\n cacheKey = \"\".concat(shortDate, \":\").concat(region, \":\").concat(service, \":\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(credsHash), \":\").concat(credentials.sessionToken);\n if (cacheKey in signingKeyCache) {\n return [2, signingKeyCache[cacheKey]];\n }\n cacheQueue.push(cacheKey);\n while (cacheQueue.length > _constants__WEBPACK_IMPORTED_MODULE_2__[\"MAX_CACHE_SIZE\"]) {\n delete signingKeyCache[cacheQueue.shift()];\n }\n key = \"AWS4\".concat(credentials.secretAccessKey);\n _d.label = 2;\n case 2:\n _d.trys.push([2, 7, 8, 9]);\n _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])([shortDate, region, service, _constants__WEBPACK_IMPORTED_MODULE_2__[\"KEY_TYPE_IDENTIFIER\"]]), _b = _a.next();\n _d.label = 3;\n case 3:\n if (!!_b.done) return [3, 6];\n signable = _b.value;\n return [4, hmac(sha256Constructor, key, signable)];\n case 4:\n key = _d.sent();\n _d.label = 5;\n case 5:\n _b = _a.next();\n return [3, 3];\n case 6: return [3, 9];\n case 7:\n e_1_1 = _d.sent();\n e_1 = { error: e_1_1 };\n return [3, 9];\n case 8:\n try {\n if (_b && !_b.done && (_c = _a.return)) _c.call(_a);\n }\n finally { if (e_1) throw e_1.error; }\n return [7];\n case 9: return [2, (signingKeyCache[cacheKey] = key)];\n }\n });\n}); };\nvar clearCredentialCache = function () {\n cacheQueue.length = 0;\n Object.keys(signingKeyCache).forEach(function (cacheKey) {\n delete signingKeyCache[cacheKey];\n });\n};\nvar hmac = function (ctor, secret, data) {\n var hash = new ctor(secret);\n hash.update(data);\n return hash.digest();\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js ***! \*****************************************************************************************************************/ /*! exports provided: getCanonicalHeaders */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalHeaders\", function() { return getCanonicalHeaders; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar getCanonicalHeaders = function (_a, unsignableHeaders, signableHeaders) {\n var e_1, _b;\n var headers = _a.headers;\n var canonical = {};\n try {\n for (var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers).sort()), _d = _c.next(); !_d.done; _d = _c.next()) {\n var headerName = _d.value;\n if (headers[headerName] == undefined) {\n continue;\n }\n var canonicalHeaderName = headerName.toLowerCase();\n if (canonicalHeaderName in _constants__WEBPACK_IMPORTED_MODULE_1__[\"ALWAYS_UNSIGNABLE_HEADERS\"] ||\n (unsignableHeaders === null || unsignableHeaders === void 0 ? void 0 : unsignableHeaders.has(canonicalHeaderName)) ||\n _constants__WEBPACK_IMPORTED_MODULE_1__[\"PROXY_HEADER_PATTERN\"].test(canonicalHeaderName) ||\n _constants__WEBPACK_IMPORTED_MODULE_1__[\"SEC_HEADER_PATTERN\"].test(canonicalHeaderName)) {\n if (!signableHeaders || (signableHeaders && !signableHeaders.has(canonicalHeaderName))) {\n continue;\n }\n }\n canonical[canonicalHeaderName] = headers[headerName].trim().replace(/\\s+/g, \" \");\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_b = _c.return)) _b.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return canonical;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js ***! \***************************************************************************************************************/ /*! exports provided: getCanonicalQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalQuery\", function() { return getCanonicalQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n\n\n\nvar getCanonicalQuery = function (_a) {\n var e_1, _b;\n var _c = _a.query, query = _c === void 0 ? {} : _c;\n var keys = [];\n var serialized = {};\n var _loop_1 = function (key) {\n if (key.toLowerCase() === _constants__WEBPACK_IMPORTED_MODULE_2__[\"SIGNATURE_HEADER\"]) {\n return \"continue\";\n }\n keys.push(key);\n var value = query[key];\n if (typeof value === \"string\") {\n serialized[key] = \"\".concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key), \"=\").concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value));\n }\n else if (Array.isArray(value)) {\n serialized[key] = value\n .slice(0)\n .sort()\n .reduce(function (encoded, value) { return encoded.concat([\"\".concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key), \"=\").concat(Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value))]); }, [])\n .join(\"&\");\n }\n };\n try {\n for (var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(query).sort()), _e = _d.next(); !_e.done; _e = _d.next()) {\n var key = _e.value;\n _loop_1(key);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_e && !_e.done && (_b = _d.return)) _b.call(_d);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return keys\n .map(function (key) { return serialized[key]; })\n .filter(function (serialized) { return serialized; })\n .join(\"&\");\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js ***! \************************************************************************************************************/ /*! exports provided: getPayloadHash */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPayloadHash\", function() { return getPayloadHash; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n/* 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\");\n\n\n\n\nvar getPayloadHash = function (_a, hashConstructor) {\n var headers = _a.headers, body = _a.body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _b, _c, headerName, hashCtor, _d;\n var e_1, _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n try {\n for (_b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n headerName = _c.value;\n if (headerName.toLowerCase() === _constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"]) {\n return [2, headers[headerName]];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_e = _b.return)) _e.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n if (!(body == undefined)) return [3, 1];\n return [2, \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"];\n case 1:\n if (!(typeof body === \"string\" || ArrayBuffer.isView(body) || Object(_aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__[\"isArrayBuffer\"])(body))) return [3, 3];\n hashCtor = new hashConstructor();\n hashCtor.update(body);\n _d = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__[\"toHex\"];\n return [4, hashCtor.digest()];\n case 2: return [2, _d.apply(void 0, [_f.sent()])];\n case 3: return [2, _constants__WEBPACK_IMPORTED_MODULE_3__[\"UNSIGNED_PAYLOAD\"]];\n }\n });\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js ***! \********************************************************************************************************/ /*! exports provided: hasHeader, getHeaderValue, deleteHeader */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasHeader\", function() { return hasHeader; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHeaderValue\", function() { return getHeaderValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deleteHeader\", function() { return deleteHeader; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar hasHeader = function (soughtHeader, headers) {\n var e_1, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n return true;\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return false;\n};\nvar getHeaderValue = function (soughtHeader, headers) {\n var e_2, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n return headers[headerName];\n }\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return undefined;\n};\nvar deleteHeader = function (soughtHeader, headers) {\n var e_3, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n delete headers[headerName];\n }\n }\n }\n catch (e_3_1) { e_3 = { error: e_3_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_3) throw e_3.error; }\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/index.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/index.js ***! \***************************************************************************************************/ /*! exports provided: SignatureV4, getCanonicalHeaders, getCanonicalQuery, getPayloadHash, moveHeadersToQuery, prepareRequest, createScope, getSigningKey, clearCredentialCache */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _SignatureV4__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SignatureV4 */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SignatureV4\", function() { return _SignatureV4__WEBPACK_IMPORTED_MODULE_0__[\"SignatureV4\"]; });\n\n/* harmony import */ var _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getCanonicalHeaders */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalHeaders\", function() { return _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_1__[\"getCanonicalHeaders\"]; });\n\n/* harmony import */ var _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getCanonicalQuery */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalQuery\", function() { return _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_2__[\"getCanonicalQuery\"]; });\n\n/* harmony import */ var _getPayloadHash__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getPayloadHash */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getPayloadHash\", function() { return _getPayloadHash__WEBPACK_IMPORTED_MODULE_3__[\"getPayloadHash\"]; });\n\n/* harmony import */ var _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./moveHeadersToQuery */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"moveHeadersToQuery\", function() { return _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_4__[\"moveHeadersToQuery\"]; });\n\n/* harmony import */ var _prepareRequest__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./prepareRequest */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"prepareRequest\", function() { return _prepareRequest__WEBPACK_IMPORTED_MODULE_5__[\"prepareRequest\"]; });\n\n/* harmony import */ var _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./credentialDerivation */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createScope\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__[\"createScope\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSigningKey\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__[\"getSigningKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"clearCredentialCache\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_6__[\"clearCredentialCache\"]; });\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js ***! \****************************************************************************************************************/ /*! exports provided: moveHeadersToQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"moveHeadersToQuery\", function() { return moveHeadersToQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar moveHeadersToQuery = function (request, options) {\n var e_1, _a;\n var _b;\n if (options === void 0) { options = {}; }\n var _c = typeof request.clone === \"function\" ? request.clone() : Object(_cloneRequest__WEBPACK_IMPORTED_MODULE_1__[\"cloneRequest\"])(request), headers = _c.headers, _d = _c.query, query = _d === void 0 ? {} : _d;\n try {\n for (var _e = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _f = _e.next(); !_f.done; _f = _e.next()) {\n var name_1 = _f.value;\n var lname = name_1.toLowerCase();\n if (lname.slice(0, 6) === \"x-amz-\" && !((_b = options.unhoistableHeaders) === null || _b === void 0 ? void 0 : _b.has(lname))) {\n query[name_1] = headers[name_1];\n delete headers[name_1];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_f && !_f.done && (_a = _e.return)) _a.call(_e);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request), { headers: headers, query: query });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js ***! \************************************************************************************************************/ /*! exports provided: prepareRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"prepareRequest\", function() { return prepareRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n/* 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\");\n\n\n\nvar prepareRequest = function (request) {\n var e_1, _a;\n request = typeof request.clone === \"function\" ? request.clone() : Object(_cloneRequest__WEBPACK_IMPORTED_MODULE_1__[\"cloneRequest\"])(request);\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(request.headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (_constants__WEBPACK_IMPORTED_MODULE_2__[\"GENERATED_HEADERS\"].indexOf(headerName.toLowerCase()) > -1) {\n delete request.headers[headerName];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return request;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js ***! \******************************************************************************************************/ /*! exports provided: iso8601, toDate */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"iso8601\", function() { return iso8601; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toDate\", function() { return toDate; });\nvar iso8601 = function (time) {\n return toDate(time)\n .toISOString()\n .replace(/\\.\\d{3}Z$/, \"Z\");\n};\nvar toDate = function (time) {\n if (typeof time === \"number\") {\n return new Date(time * 1000);\n }\n if (typeof time === \"string\") {\n if (Number(time)) {\n return new Date(Number(time) * 1000);\n }\n return new Date(time);\n }\n return time;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/client.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/client.js ***! \*****************************************************************************************************/ /*! exports provided: Client */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Client\", function() { return Client; });\n/* harmony import */ var _aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/middleware-stack */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-stack/dist-es/index.js\");\n\nvar Client = (function () {\n function Client(config) {\n this.middlewareStack = Object(_aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"])();\n this.config = config;\n }\n Client.prototype.send = function (command, optionsOrCb, cb) {\n var options = typeof optionsOrCb !== \"function\" ? optionsOrCb : undefined;\n var callback = typeof optionsOrCb === \"function\" ? optionsOrCb : cb;\n var handler = command.resolveMiddleware(this.middlewareStack, this.config, options);\n if (callback) {\n handler(command)\n .then(function (result) { return callback(null, result.output); }, function (err) { return callback(err); })\n .catch(function () { });\n }\n else {\n return handler(command).then(function (result) { return result.output; });\n }\n };\n Client.prototype.destroy = function () {\n if (this.config.requestHandler.destroy)\n this.config.requestHandler.destroy();\n };\n return Client;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/client.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/command.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/command.js ***! \******************************************************************************************************/ /*! exports provided: Command */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Command\", function() { return Command; });\n/* harmony import */ var _aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/middleware-stack */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-stack/dist-es/index.js\");\n\nvar Command = (function () {\n function Command() {\n this.middlewareStack = Object(_aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"])();\n }\n return Command;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/command.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/constants.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/constants.js ***! \********************************************************************************************************/ /*! exports provided: SENSITIVE_STRING */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SENSITIVE_STRING\", function() { return SENSITIVE_STRING; });\nvar SENSITIVE_STRING = \"***SensitiveInformation***\";\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js ***! \*********************************************************************************************************/ /*! exports provided: dateToUtcString, parseRfc3339DateTime, parseRfc7231DateTime, parseEpochTimestamp */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"dateToUtcString\", function() { return dateToUtcString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseRfc3339DateTime\", function() { return parseRfc3339DateTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseRfc7231DateTime\", function() { return parseRfc7231DateTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseEpochTimestamp\", function() { return parseEpochTimestamp; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* 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\");\n\n\nvar DAYS = [\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\"];\nvar MONTHS = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"];\nfunction dateToUtcString(date) {\n var year = date.getUTCFullYear();\n var month = date.getUTCMonth();\n var dayOfWeek = date.getUTCDay();\n var dayOfMonthInt = date.getUTCDate();\n var hoursInt = date.getUTCHours();\n var minutesInt = date.getUTCMinutes();\n var secondsInt = date.getUTCSeconds();\n var dayOfMonthString = dayOfMonthInt < 10 ? \"0\".concat(dayOfMonthInt) : \"\".concat(dayOfMonthInt);\n var hoursString = hoursInt < 10 ? \"0\".concat(hoursInt) : \"\".concat(hoursInt);\n var minutesString = minutesInt < 10 ? \"0\".concat(minutesInt) : \"\".concat(minutesInt);\n var secondsString = secondsInt < 10 ? \"0\".concat(secondsInt) : \"\".concat(secondsInt);\n return \"\".concat(DAYS[dayOfWeek], \", \").concat(dayOfMonthString, \" \").concat(MONTHS[month], \" \").concat(year, \" \").concat(hoursString, \":\").concat(minutesString, \":\").concat(secondsString, \" GMT\");\n}\nvar RFC3339 = new RegExp(/^(\\d{4})-(\\d{2})-(\\d{2})[tT](\\d{2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))?[zZ]$/);\nvar parseRfc3339DateTime = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value !== \"string\") {\n throw new TypeError(\"RFC-3339 date-times must be expressed as strings\");\n }\n var match = RFC3339.exec(value);\n if (!match) {\n throw new TypeError(\"Invalid RFC-3339 date-time value\");\n }\n var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _ = _a[0], yearStr = _a[1], monthStr = _a[2], dayStr = _a[3], hours = _a[4], minutes = _a[5], seconds = _a[6], fractionalMilliseconds = _a[7];\n var year = Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(yearStr));\n var month = parseDateValue(monthStr, \"month\", 1, 12);\n var day = parseDateValue(dayStr, \"day\", 1, 31);\n return buildDate(year, month, day, { hours: hours, minutes: minutes, seconds: seconds, fractionalMilliseconds: fractionalMilliseconds });\n};\nvar IMF_FIXDATE = new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\\d{2}) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\\d{4}) (\\d{1,2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))? GMT$/);\nvar RFC_850_DATE = new RegExp(/^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\\d{2})-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\\d{2}) (\\d{1,2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))? GMT$/);\nvar ASC_TIME = new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( [1-9]|\\d{2}) (\\d{1,2}):(\\d{2}):(\\d{2})(?:\\.(\\d+))? (\\d{4})$/);\nvar parseRfc7231DateTime = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value !== \"string\") {\n throw new TypeError(\"RFC-7231 date-times must be expressed as strings\");\n }\n var match = IMF_FIXDATE.exec(value);\n if (match) {\n var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _1 = _a[0], dayStr = _a[1], monthStr = _a[2], yearStr = _a[3], hours = _a[4], minutes = _a[5], seconds = _a[6], fractionalMilliseconds = _a[7];\n return buildDate(Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(yearStr)), parseMonthByShortName(monthStr), parseDateValue(dayStr, \"day\", 1, 31), { hours: hours, minutes: minutes, seconds: seconds, fractionalMilliseconds: fractionalMilliseconds });\n }\n match = RFC_850_DATE.exec(value);\n if (match) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _2 = _b[0], dayStr = _b[1], monthStr = _b[2], yearStr = _b[3], hours = _b[4], minutes = _b[5], seconds = _b[6], fractionalMilliseconds = _b[7];\n return adjustRfc850Year(buildDate(parseTwoDigitYear(yearStr), parseMonthByShortName(monthStr), parseDateValue(dayStr, \"day\", 1, 31), {\n hours: hours,\n minutes: minutes,\n seconds: seconds,\n fractionalMilliseconds: fractionalMilliseconds,\n }));\n }\n match = ASC_TIME.exec(value);\n if (match) {\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(match, 8), _3 = _c[0], monthStr = _c[1], dayStr = _c[2], hours = _c[3], minutes = _c[4], seconds = _c[5], fractionalMilliseconds = _c[6], yearStr = _c[7];\n return buildDate(Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(yearStr)), parseMonthByShortName(monthStr), parseDateValue(dayStr.trimLeft(), \"day\", 1, 31), { hours: hours, minutes: minutes, seconds: seconds, fractionalMilliseconds: fractionalMilliseconds });\n }\n throw new TypeError(\"Invalid RFC-7231 date-time value\");\n};\nvar parseEpochTimestamp = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n var valueAsDouble;\n if (typeof value === \"number\") {\n valueAsDouble = value;\n }\n else if (typeof value === \"string\") {\n valueAsDouble = Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseDouble\"])(value);\n }\n else {\n throw new TypeError(\"Epoch timestamps must be expressed as floating point numbers or their string representation\");\n }\n if (Number.isNaN(valueAsDouble) || valueAsDouble === Infinity || valueAsDouble === -Infinity) {\n throw new TypeError(\"Epoch timestamps must be valid, non-Infinite, non-NaN numerics\");\n }\n return new Date(Math.round(valueAsDouble * 1000));\n};\nvar buildDate = function (year, month, day, time) {\n var adjustedMonth = month - 1;\n validateDayOfMonth(year, adjustedMonth, day);\n return new Date(Date.UTC(year, adjustedMonth, day, parseDateValue(time.hours, \"hour\", 0, 23), parseDateValue(time.minutes, \"minute\", 0, 59), parseDateValue(time.seconds, \"seconds\", 0, 60), parseMilliseconds(time.fractionalMilliseconds)));\n};\nvar parseTwoDigitYear = function (value) {\n var thisYear = new Date().getUTCFullYear();\n var valueInThisCentury = Math.floor(thisYear / 100) * 100 + Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseShort\"])(stripLeadingZeroes(value));\n if (valueInThisCentury < thisYear) {\n return valueInThisCentury + 100;\n }\n return valueInThisCentury;\n};\nvar FIFTY_YEARS_IN_MILLIS = 50 * 365 * 24 * 60 * 60 * 1000;\nvar adjustRfc850Year = function (input) {\n if (input.getTime() - new Date().getTime() > FIFTY_YEARS_IN_MILLIS) {\n return new Date(Date.UTC(input.getUTCFullYear() - 100, input.getUTCMonth(), input.getUTCDate(), input.getUTCHours(), input.getUTCMinutes(), input.getUTCSeconds(), input.getUTCMilliseconds()));\n }\n return input;\n};\nvar parseMonthByShortName = function (value) {\n var monthIdx = MONTHS.indexOf(value);\n if (monthIdx < 0) {\n throw new TypeError(\"Invalid month: \".concat(value));\n }\n return monthIdx + 1;\n};\nvar DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];\nvar validateDayOfMonth = function (year, month, day) {\n var maxDays = DAYS_IN_MONTH[month];\n if (month === 1 && isLeapYear(year)) {\n maxDays = 29;\n }\n if (day > maxDays) {\n throw new TypeError(\"Invalid day for \".concat(MONTHS[month], \" in \").concat(year, \": \").concat(day));\n }\n};\nvar isLeapYear = function (year) {\n return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);\n};\nvar parseDateValue = function (value, type, lower, upper) {\n var dateVal = Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseByte\"])(stripLeadingZeroes(value));\n if (dateVal < lower || dateVal > upper) {\n throw new TypeError(\"\".concat(type, \" must be between \").concat(lower, \" and \").concat(upper, \", inclusive\"));\n }\n return dateVal;\n};\nvar parseMilliseconds = function (value) {\n if (value === null || value === undefined) {\n return 0;\n }\n return Object(_parse_utils__WEBPACK_IMPORTED_MODULE_1__[\"strictParseFloat32\"])(\"0.\" + value) * 1000;\n};\nvar stripLeadingZeroes = function (value) {\n var idx = 0;\n while (idx < value.length - 1 && value.charAt(idx) === \"0\") {\n idx++;\n }\n if (idx === 0) {\n return value;\n }\n return value.slice(idx);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js ***! \********************************************************************************************************************/ /*! exports provided: throwDefaultError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"throwDefaultError\", function() { return throwDefaultError; });\n/* harmony import */ var _exceptions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./exceptions */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js\");\n\nvar throwDefaultError = function (_a) {\n var output = _a.output, parsedBody = _a.parsedBody, exceptionCtor = _a.exceptionCtor, errorCode = _a.errorCode;\n var $metadata = deserializeMetadata(output);\n var statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + \"\" : undefined;\n var response = new exceptionCtor({\n name: parsedBody.code || parsedBody.Code || errorCode || statusCode || \"UnknowError\",\n $fault: \"client\",\n $metadata: $metadata,\n });\n throw Object(_exceptions__WEBPACK_IMPORTED_MODULE_0__[\"decorateServiceException\"])(response, parsedBody);\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js ***! \************************************************************************************************************/ /*! exports provided: loadConfigsForDefaultMode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loadConfigsForDefaultMode\", function() { return loadConfigsForDefaultMode; });\nvar loadConfigsForDefaultMode = function (mode) {\n switch (mode) {\n case \"standard\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 3100,\n };\n case \"in-region\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 1100,\n };\n case \"cross-region\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 3100,\n };\n case \"mobile\":\n return {\n retryMode: \"standard\",\n connectionTimeout: 30000,\n };\n default:\n return {};\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js": /*!******************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js ***! \******************************************************************************************************************************/ /*! exports provided: emitWarningIfUnsupportedVersion */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"emitWarningIfUnsupportedVersion\", function() { return emitWarningIfUnsupportedVersion; });\nvar warningEmitted = false;\nvar emitWarningIfUnsupportedVersion = function (version) {\n if (version && !warningEmitted && parseInt(version.substring(1, version.indexOf(\".\"))) < 14) {\n warningEmitted = true;\n process.emitWarning(\"The AWS SDK for JavaScript (v3) will\\n\" +\n \"no longer support Node.js \".concat(version, \" on November 1, 2022.\\n\\n\") +\n \"To continue receiving updates to AWS services, bug fixes, and security\\n\" +\n \"updates please upgrade to Node.js 14.x or later.\\n\\n\" +\n \"For details, please refer our blog post: https://a.co/48dbdYz\", \"NodeDeprecationWarning\");\n }\n};\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../../node-libs-browser/mock/process.js */ \"./node_modules/node-libs-browser/mock/process.js\")))\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js ***! \*********************************************************************************************************/ /*! exports provided: ServiceException, decorateServiceException */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceException\", function() { return ServiceException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decorateServiceException\", function() { return decorateServiceException; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar ServiceException = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ServiceException, _super);\n function ServiceException(options) {\n var _this = _super.call(this, options.message) || this;\n Object.setPrototypeOf(_this, ServiceException.prototype);\n _this.name = options.name;\n _this.$fault = options.$fault;\n _this.$metadata = options.$metadata;\n return _this;\n }\n return ServiceException;\n}(Error));\n\nvar decorateServiceException = function (exception, additions) {\n if (additions === void 0) { additions = {}; }\n Object.entries(additions)\n .filter(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), v = _b[1];\n return v !== undefined;\n })\n .forEach(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), k = _b[0], v = _b[1];\n if (exception[k] == undefined || exception[k] === \"\") {\n exception[k] = v;\n }\n });\n var message = exception.message || exception.Message || \"UnknownError\";\n exception.message = message;\n delete exception.Message;\n return exception;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js": /*!****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js ***! \****************************************************************************************************************************/ /*! exports provided: extendedEncodeURIComponent */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extendedEncodeURIComponent\", function() { return extendedEncodeURIComponent; });\nfunction extendedEncodeURIComponent(str) {\n return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {\n return \"%\" + c.charCodeAt(0).toString(16).toUpperCase();\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js ***! \***********************************************************************************************************************/ /*! exports provided: getArrayIfSingleItem */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getArrayIfSingleItem\", function() { return getArrayIfSingleItem; });\nvar getArrayIfSingleItem = function (mayBeArray) {\n return Array.isArray(mayBeArray) ? mayBeArray : [mayBeArray];\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js": /*!***********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js ***! \***********************************************************************************************************************/ /*! exports provided: getValueFromTextNode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getValueFromTextNode\", function() { return getValueFromTextNode; });\nvar getValueFromTextNode = function (obj) {\n var textNodeName = \"#text\";\n for (var key in obj) {\n if (obj.hasOwnProperty(key) && obj[key][textNodeName] !== undefined) {\n obj[key] = obj[key][textNodeName];\n }\n else if (typeof obj[key] === \"object\" && obj[key] !== null) {\n obj[key] = getValueFromTextNode(obj[key]);\n }\n }\n return obj;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js ***! \****************************************************************************************************/ /*! exports provided: Client, Command, SENSITIVE_STRING, dateToUtcString, parseRfc3339DateTime, parseRfc7231DateTime, parseEpochTimestamp, throwDefaultError, loadConfigsForDefaultMode, emitWarningIfUnsupportedVersion, ServiceException, decorateServiceException, extendedEncodeURIComponent, getArrayIfSingleItem, getValueFromTextNode, StringWrapper, LazyJsonString, map, convertMap, parseBoolean, expectBoolean, expectNumber, expectFloat32, expectLong, expectInt, expectInt32, expectShort, expectByte, expectNonNull, expectObject, expectString, expectUnion, strictParseDouble, strictParseFloat, strictParseFloat32, limitedParseDouble, handleFloat, limitedParseFloat, limitedParseFloat32, strictParseLong, strictParseInt, strictParseInt32, strictParseShort, strictParseByte, logger, resolvedPath, serializeFloat, splitEvery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./client */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/client.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Client\", function() { return _client__WEBPACK_IMPORTED_MODULE_0__[\"Client\"]; });\n\n/* harmony import */ var _command__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./command */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/command.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Command\", function() { return _command__WEBPACK_IMPORTED_MODULE_1__[\"Command\"]; });\n\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/constants.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SENSITIVE_STRING\", function() { return _constants__WEBPACK_IMPORTED_MODULE_2__[\"SENSITIVE_STRING\"]; });\n\n/* harmony import */ var _date_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./date-utils */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"dateToUtcString\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseRfc3339DateTime\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"parseRfc3339DateTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseRfc7231DateTime\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"parseRfc7231DateTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseEpochTimestamp\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_3__[\"parseEpochTimestamp\"]; });\n\n/* harmony import */ var _default_error_handler__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./default-error-handler */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"throwDefaultError\", function() { return _default_error_handler__WEBPACK_IMPORTED_MODULE_4__[\"throwDefaultError\"]; });\n\n/* harmony import */ var _defaults_mode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./defaults-mode */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loadConfigsForDefaultMode\", function() { return _defaults_mode__WEBPACK_IMPORTED_MODULE_5__[\"loadConfigsForDefaultMode\"]; });\n\n/* harmony import */ var _emitWarningIfUnsupportedVersion__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./emitWarningIfUnsupportedVersion */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"emitWarningIfUnsupportedVersion\", function() { return _emitWarningIfUnsupportedVersion__WEBPACK_IMPORTED_MODULE_6__[\"emitWarningIfUnsupportedVersion\"]; });\n\n/* harmony import */ var _exceptions__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./exceptions */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceException\", function() { return _exceptions__WEBPACK_IMPORTED_MODULE_7__[\"ServiceException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decorateServiceException\", function() { return _exceptions__WEBPACK_IMPORTED_MODULE_7__[\"decorateServiceException\"]; });\n\n/* harmony import */ var _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./extended-encode-uri-component */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"extendedEncodeURIComponent\", function() { return _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_8__[\"extendedEncodeURIComponent\"]; });\n\n/* harmony import */ var _get_array_if_single_item__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./get-array-if-single-item */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getArrayIfSingleItem\", function() { return _get_array_if_single_item__WEBPACK_IMPORTED_MODULE_9__[\"getArrayIfSingleItem\"]; });\n\n/* harmony import */ var _get_value_from_text_node__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./get-value-from-text-node */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getValueFromTextNode\", function() { return _get_value_from_text_node__WEBPACK_IMPORTED_MODULE_10__[\"getValueFromTextNode\"]; });\n\n/* harmony import */ var _lazy_json__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./lazy-json */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StringWrapper\", function() { return _lazy_json__WEBPACK_IMPORTED_MODULE_11__[\"StringWrapper\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LazyJsonString\", function() { return _lazy_json__WEBPACK_IMPORTED_MODULE_11__[\"LazyJsonString\"]; });\n\n/* harmony import */ var _object_mapping__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./object-mapping */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"map\", function() { return _object_mapping__WEBPACK_IMPORTED_MODULE_12__[\"map\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"convertMap\", function() { return _object_mapping__WEBPACK_IMPORTED_MODULE_12__[\"convertMap\"]; });\n\n/* harmony import */ var _parse_utils__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./parse-utils */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseBoolean\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"parseBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectBoolean\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectNumber\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectNumber\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectFloat32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectFloat32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectLong\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectLong\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectInt\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectInt\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectInt32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectInt32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectShort\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectShort\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectByte\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectByte\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectNonNull\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectNonNull\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectObject\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectObject\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectString\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"expectUnion\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"expectUnion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseDouble\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseDouble\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseFloat32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"limitedParseDouble\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"limitedParseDouble\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"handleFloat\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"handleFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"limitedParseFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"limitedParseFloat32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseLong\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseLong\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseInt\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt32\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseInt32\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseShort\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseShort\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"strictParseByte\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"strictParseByte\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"logger\", function() { return _parse_utils__WEBPACK_IMPORTED_MODULE_13__[\"logger\"]; });\n\n/* harmony import */ var _resolve_path__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./resolve-path */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolvedPath\", function() { return _resolve_path__WEBPACK_IMPORTED_MODULE_14__[\"resolvedPath\"]; });\n\n/* harmony import */ var _ser_utils__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ser-utils */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializeFloat\", function() { return _ser_utils__WEBPACK_IMPORTED_MODULE_15__[\"serializeFloat\"]; });\n\n/* harmony import */ var _split_every__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./split-every */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"splitEvery\", function() { return _split_every__WEBPACK_IMPORTED_MODULE_16__[\"splitEvery\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js ***! \********************************************************************************************************/ /*! exports provided: StringWrapper, LazyJsonString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StringWrapper\", function() { return StringWrapper; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LazyJsonString\", function() { return LazyJsonString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar StringWrapper = function () {\n var Class = Object.getPrototypeOf(this).constructor;\n var Constructor = Function.bind.apply(String, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([null], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(arguments), false));\n var instance = new Constructor();\n Object.setPrototypeOf(instance, Class.prototype);\n return instance;\n};\nStringWrapper.prototype = Object.create(String.prototype, {\n constructor: {\n value: StringWrapper,\n enumerable: false,\n writable: true,\n configurable: true,\n },\n});\nObject.setPrototypeOf(StringWrapper, String);\nvar LazyJsonString = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LazyJsonString, _super);\n function LazyJsonString() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n LazyJsonString.prototype.deserializeJSON = function () {\n return JSON.parse(_super.prototype.toString.call(this));\n };\n LazyJsonString.prototype.toJSON = function () {\n return _super.prototype.toString.call(this);\n };\n LazyJsonString.fromObject = function (object) {\n if (object instanceof LazyJsonString) {\n return object;\n }\n else if (object instanceof String || typeof object === \"string\") {\n return new LazyJsonString(object);\n }\n return new LazyJsonString(JSON.stringify(object));\n };\n return LazyJsonString;\n}(StringWrapper));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js ***! \*************************************************************************************************************/ /*! exports provided: map, convertMap */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"map\", function() { return map; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"convertMap\", function() { return convertMap; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nfunction map(arg0, arg1, arg2) {\n var e_1, _a;\n var target;\n var filter;\n var instructions;\n if (typeof arg1 === \"undefined\" && typeof arg2 === \"undefined\") {\n target = {};\n instructions = arg0;\n }\n else {\n target = arg0;\n if (typeof arg1 === \"function\") {\n filter = arg1;\n instructions = arg2;\n return mapWithFilter(target, filter, instructions);\n }\n else {\n instructions = arg1;\n }\n }\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(instructions)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n if (!Array.isArray(instructions[key])) {\n target[key] = instructions[key];\n continue;\n }\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(instructions[key], 2), filter_1 = _d[0], value = _d[1];\n if (typeof value === \"function\") {\n var _value = void 0;\n var defaultFilterPassed = filter_1 === undefined && (_value = value()) != null;\n var customFilterPassed = (typeof filter_1 === \"function\" && !!filter_1(void 0)) || (typeof filter_1 !== \"function\" && !!filter_1);\n if (defaultFilterPassed) {\n target[key] = _value;\n }\n else if (customFilterPassed) {\n target[key] = value();\n }\n }\n else {\n var defaultFilterPassed = filter_1 === undefined && value != null;\n var customFilterPassed = (typeof filter_1 === \"function\" && !!filter_1(value)) || (typeof filter_1 !== \"function\" && !!filter_1);\n if (defaultFilterPassed || customFilterPassed) {\n target[key] = value;\n }\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return target;\n}\nvar convertMap = function (target) {\n var e_2, _a;\n var output = {};\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.entries(target || {})), _c = _b.next(); !_c.done; _c = _b.next()) {\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_c.value, 2), k = _d[0], v = _d[1];\n output[k] = [, v];\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return output;\n};\nvar mapWithFilter = function (target, filter, instructions) {\n return map(target, Object.entries(instructions).reduce(function (_instructions, _a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _b[0], value = _b[1];\n if (Array.isArray(value)) {\n _instructions[key] = value;\n }\n else {\n if (typeof value === \"function\") {\n _instructions[key] = [filter, value()];\n }\n else {\n _instructions[key] = [filter, value];\n }\n }\n return _instructions;\n }, {}));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js ***! \**********************************************************************************************************/ /*! exports provided: parseBoolean, expectBoolean, expectNumber, expectFloat32, expectLong, expectInt, expectInt32, expectShort, expectByte, expectNonNull, expectObject, expectString, expectUnion, strictParseDouble, strictParseFloat, strictParseFloat32, limitedParseDouble, handleFloat, limitedParseFloat, limitedParseFloat32, strictParseLong, strictParseInt, strictParseInt32, strictParseShort, strictParseByte, logger */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseBoolean\", function() { return parseBoolean; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectBoolean\", function() { return expectBoolean; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectNumber\", function() { return expectNumber; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectFloat32\", function() { return expectFloat32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectLong\", function() { return expectLong; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectInt\", function() { return expectInt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectInt32\", function() { return expectInt32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectShort\", function() { return expectShort; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectByte\", function() { return expectByte; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectNonNull\", function() { return expectNonNull; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectObject\", function() { return expectObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectString\", function() { return expectString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"expectUnion\", function() { return expectUnion; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseDouble\", function() { return strictParseDouble; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat\", function() { return strictParseFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseFloat32\", function() { return strictParseFloat32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"limitedParseDouble\", function() { return limitedParseDouble; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"handleFloat\", function() { return handleFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat\", function() { return limitedParseFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"limitedParseFloat32\", function() { return limitedParseFloat32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseLong\", function() { return strictParseLong; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt\", function() { return strictParseInt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseInt32\", function() { return strictParseInt32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseShort\", function() { return strictParseShort; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strictParseByte\", function() { return strictParseByte; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"logger\", function() { return logger; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n\nvar parseBoolean = function (value) {\n switch (value) {\n case \"true\":\n return true;\n case \"false\":\n return false;\n default:\n throw new Error(\"Unable to parse boolean value \\\"\".concat(value, \"\\\"\"));\n }\n};\nvar expectBoolean = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"number\") {\n if (value === 0 || value === 1) {\n logger.warn(stackTraceWarning(\"Expected boolean, got \".concat(typeof value, \": \").concat(value)));\n }\n if (value === 0) {\n return false;\n }\n if (value === 1) {\n return true;\n }\n }\n if (typeof value === \"string\") {\n var lower = value.toLowerCase();\n if (lower === \"false\" || lower === \"true\") {\n logger.warn(stackTraceWarning(\"Expected boolean, got \".concat(typeof value, \": \").concat(value)));\n }\n if (lower === \"false\") {\n return false;\n }\n if (lower === \"true\") {\n return true;\n }\n }\n if (typeof value === \"boolean\") {\n return value;\n }\n throw new TypeError(\"Expected boolean, got \".concat(typeof value, \": \").concat(value));\n};\nvar expectNumber = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"string\") {\n var parsed = parseFloat(value);\n if (!Number.isNaN(parsed)) {\n if (String(parsed) !== String(value)) {\n logger.warn(stackTraceWarning(\"Expected number but observed string: \".concat(value)));\n }\n return parsed;\n }\n }\n if (typeof value === \"number\") {\n return value;\n }\n throw new TypeError(\"Expected number, got \".concat(typeof value, \": \").concat(value));\n};\nvar MAX_FLOAT = Math.ceil(Math.pow(2, 127) * (2 - Math.pow(2, -23)));\nvar expectFloat32 = function (value) {\n var expected = expectNumber(value);\n if (expected !== undefined && !Number.isNaN(expected) && expected !== Infinity && expected !== -Infinity) {\n if (Math.abs(expected) > MAX_FLOAT) {\n throw new TypeError(\"Expected 32-bit float, got \".concat(value));\n }\n }\n return expected;\n};\nvar expectLong = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (Number.isInteger(value) && !Number.isNaN(value)) {\n return value;\n }\n throw new TypeError(\"Expected integer, got \".concat(typeof value, \": \").concat(value));\n};\nvar expectInt = expectLong;\nvar expectInt32 = function (value) { return expectSizedInt(value, 32); };\nvar expectShort = function (value) { return expectSizedInt(value, 16); };\nvar expectByte = function (value) { return expectSizedInt(value, 8); };\nvar expectSizedInt = function (value, size) {\n var expected = expectLong(value);\n if (expected !== undefined && castInt(expected, size) !== expected) {\n throw new TypeError(\"Expected \".concat(size, \"-bit integer, got \").concat(value));\n }\n return expected;\n};\nvar castInt = function (value, size) {\n switch (size) {\n case 32:\n return Int32Array.of(value)[0];\n case 16:\n return Int16Array.of(value)[0];\n case 8:\n return Int8Array.of(value)[0];\n }\n};\nvar expectNonNull = function (value, location) {\n if (value === null || value === undefined) {\n if (location) {\n throw new TypeError(\"Expected a non-null value for \".concat(location));\n }\n throw new TypeError(\"Expected a non-null value\");\n }\n return value;\n};\nvar expectObject = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"object\" && !Array.isArray(value)) {\n return value;\n }\n var receivedType = Array.isArray(value) ? \"array\" : typeof value;\n throw new TypeError(\"Expected object, got \".concat(receivedType, \": \").concat(value));\n};\nvar expectString = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n if (typeof value === \"string\") {\n return value;\n }\n if ([\"boolean\", \"number\", \"bigint\"].includes(typeof value)) {\n logger.warn(stackTraceWarning(\"Expected string, got \".concat(typeof value, \": \").concat(value)));\n return String(value);\n }\n throw new TypeError(\"Expected string, got \".concat(typeof value, \": \").concat(value));\n};\nvar expectUnion = function (value) {\n if (value === null || value === undefined) {\n return undefined;\n }\n var asObject = expectObject(value);\n var setKeys = Object.entries(asObject)\n .filter(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), v = _b[1];\n return v != null;\n })\n .map(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 1), k = _b[0];\n return k;\n });\n if (setKeys.length === 0) {\n throw new TypeError(\"Unions must have exactly one non-null member. None were found.\");\n }\n if (setKeys.length > 1) {\n throw new TypeError(\"Unions must have exactly one non-null member. Keys \".concat(setKeys, \" were not null.\"));\n }\n return asObject;\n};\nvar strictParseDouble = function (value) {\n if (typeof value == \"string\") {\n return expectNumber(parseNumber(value));\n }\n return expectNumber(value);\n};\nvar strictParseFloat = strictParseDouble;\nvar strictParseFloat32 = function (value) {\n if (typeof value == \"string\") {\n return expectFloat32(parseNumber(value));\n }\n return expectFloat32(value);\n};\nvar NUMBER_REGEX = /(-?(?:0|[1-9]\\d*)(?:\\.\\d+)?(?:[eE][+-]?\\d+)?)|(-?Infinity)|(NaN)/g;\nvar parseNumber = function (value) {\n var matches = value.match(NUMBER_REGEX);\n if (matches === null || matches[0].length !== value.length) {\n throw new TypeError(\"Expected real number, got implicit NaN\");\n }\n return parseFloat(value);\n};\nvar limitedParseDouble = function (value) {\n if (typeof value == \"string\") {\n return parseFloatString(value);\n }\n return expectNumber(value);\n};\nvar handleFloat = limitedParseDouble;\nvar limitedParseFloat = limitedParseDouble;\nvar limitedParseFloat32 = function (value) {\n if (typeof value == \"string\") {\n return parseFloatString(value);\n }\n return expectFloat32(value);\n};\nvar parseFloatString = function (value) {\n switch (value) {\n case \"NaN\":\n return NaN;\n case \"Infinity\":\n return Infinity;\n case \"-Infinity\":\n return -Infinity;\n default:\n throw new Error(\"Unable to parse float value: \".concat(value));\n }\n};\nvar strictParseLong = function (value) {\n if (typeof value === \"string\") {\n return expectLong(parseNumber(value));\n }\n return expectLong(value);\n};\nvar strictParseInt = strictParseLong;\nvar strictParseInt32 = function (value) {\n if (typeof value === \"string\") {\n return expectInt32(parseNumber(value));\n }\n return expectInt32(value);\n};\nvar strictParseShort = function (value) {\n if (typeof value === \"string\") {\n return expectShort(parseNumber(value));\n }\n return expectShort(value);\n};\nvar strictParseByte = function (value) {\n if (typeof value === \"string\") {\n return expectByte(parseNumber(value));\n }\n return expectByte(value);\n};\nvar stackTraceWarning = function (message) {\n return String(new TypeError(message).stack || message)\n .split(\"\\n\")\n .slice(0, 5)\n .filter(function (s) { return !s.includes(\"stackTraceWarning\"); })\n .join(\"\\n\");\n};\nvar logger = {\n warn: console.warn,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js ***! \***********************************************************************************************************/ /*! exports provided: resolvedPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolvedPath\", function() { return resolvedPath; });\n/* harmony import */ var _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./extended-encode-uri-component */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js\");\n\nvar resolvedPath = function (resolvedPath, input, memberName, labelValueProvider, uriLabel, isGreedyLabel) {\n if (input != null && input[memberName] !== undefined) {\n var labelValue = labelValueProvider();\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: \" + memberName + \".\");\n }\n resolvedPath = resolvedPath.replace(uriLabel, isGreedyLabel\n ? labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_0__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\")\n : Object(_extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_0__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: \" + memberName + \".\");\n }\n return resolvedPath;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js ***! \********************************************************************************************************/ /*! exports provided: serializeFloat */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeFloat\", function() { return serializeFloat; });\nvar serializeFloat = function (value) {\n if (value !== value) {\n return \"NaN\";\n }\n switch (value) {\n case Infinity:\n return \"Infinity\";\n case -Infinity:\n return \"-Infinity\";\n default:\n return value;\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js ***! \**********************************************************************************************************/ /*! exports provided: splitEvery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"splitEvery\", function() { return splitEvery; });\nfunction splitEvery(value, delimiter, numDelimiters) {\n if (numDelimiters <= 0 || !Number.isInteger(numDelimiters)) {\n throw new Error(\"Invalid number of delimiters (\" + numDelimiters + \") for splitEvery.\");\n }\n var segments = value.split(delimiter);\n if (numDelimiters === 1) {\n return segments;\n }\n var compoundSegments = [];\n var currentSegment = \"\";\n for (var i = 0; i < segments.length; i++) {\n if (currentSegment === \"\") {\n currentSegment = segments[i];\n }\n else {\n currentSegment += delimiter + segments[i];\n }\n if ((i + 1) % numDelimiters === 0) {\n compoundSegments.push(currentSegment);\n currentSegment = \"\";\n }\n }\n if (currentSegment !== \"\") {\n compoundSegments.push(currentSegment);\n }\n return compoundSegments;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/url-parser/dist-es/index.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/url-parser/dist-es/index.js ***! \*************************************************************************************************/ /*! exports provided: parseUrl */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseUrl\", function() { return parseUrl; });\n/* harmony import */ var _aws_sdk_querystring_parser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/querystring-parser */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/querystring-parser/dist-es/index.js\");\n\nvar parseUrl = function (url) {\n if (typeof url === 'string') {\n return parseUrl(new URL(url));\n }\n var _a = url, hostname = _a.hostname, pathname = _a.pathname, port = _a.port, protocol = _a.protocol, search = _a.search;\n var query;\n if (search) {\n query = Object(_aws_sdk_querystring_parser__WEBPACK_IMPORTED_MODULE_0__[\"parseQueryString\"])(search);\n }\n return {\n hostname: hostname,\n port: port ? parseInt(port) : undefined,\n protocol: protocol,\n path: pathname,\n query: query,\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/url-parser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js ***! \**********************************************************************************************************/ /*! exports provided: fromBase64, toBase64 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromBase64\", function() { return fromBase64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toBase64\", function() { return toBase64; });\nvar alphabetByEncoding = {};\nvar alphabetByValue = new Array(64);\nfor (var i = 0, start = \"A\".charCodeAt(0), limit = \"Z\".charCodeAt(0); i + start <= limit; i++) {\n var char = String.fromCharCode(i + start);\n alphabetByEncoding[char] = i;\n alphabetByValue[i] = char;\n}\nfor (var i = 0, start = \"a\".charCodeAt(0), limit = \"z\".charCodeAt(0); i + start <= limit; i++) {\n var char = String.fromCharCode(i + start);\n var index = i + 26;\n alphabetByEncoding[char] = index;\n alphabetByValue[index] = char;\n}\nfor (var i = 0; i < 10; i++) {\n alphabetByEncoding[i.toString(10)] = i + 52;\n var char = i.toString(10);\n var index = i + 52;\n alphabetByEncoding[char] = index;\n alphabetByValue[index] = char;\n}\nalphabetByEncoding[\"+\"] = 62;\nalphabetByValue[62] = \"+\";\nalphabetByEncoding[\"/\"] = 63;\nalphabetByValue[63] = \"/\";\nvar bitsPerLetter = 6;\nvar bitsPerByte = 8;\nvar maxLetterValue = 63;\nfunction fromBase64(input) {\n var totalByteLength = (input.length / 4) * 3;\n if (input.slice(-2) === \"==\") {\n totalByteLength -= 2;\n }\n else if (input.slice(-1) === \"=\") {\n totalByteLength--;\n }\n var out = new ArrayBuffer(totalByteLength);\n var dataView = new DataView(out);\n for (var i = 0; i < input.length; i += 4) {\n var bits = 0;\n var bitLength = 0;\n for (var j = i, limit = i + 3; j <= limit; j++) {\n if (input[j] !== \"=\") {\n if (!(input[j] in alphabetByEncoding)) {\n throw new TypeError(\"Invalid character \".concat(input[j], \" in base64 string.\"));\n }\n bits |= alphabetByEncoding[input[j]] << ((limit - j) * bitsPerLetter);\n bitLength += bitsPerLetter;\n }\n else {\n bits >>= bitsPerLetter;\n }\n }\n var chunkOffset = (i / 4) * 3;\n bits >>= bitLength % bitsPerByte;\n var byteLength = Math.floor(bitLength / bitsPerByte);\n for (var k = 0; k < byteLength; k++) {\n var offset = (byteLength - k - 1) * bitsPerByte;\n dataView.setUint8(chunkOffset + k, (bits & (255 << offset)) >> offset);\n }\n }\n return new Uint8Array(out);\n}\nfunction toBase64(input) {\n var str = \"\";\n for (var i = 0; i < input.length; i += 3) {\n var bits = 0;\n var bitLength = 0;\n for (var j = i, limit = Math.min(i + 3, input.length); j < limit; j++) {\n bits |= input[j] << ((limit - j - 1) * bitsPerByte);\n bitLength += bitsPerByte;\n }\n var bitClusterCount = Math.ceil(bitLength / bitsPerLetter);\n bits <<= bitClusterCount * bitsPerLetter - bitLength;\n for (var k = 1; k <= bitClusterCount; k++) {\n var offset = (bitClusterCount - k) * bitsPerLetter;\n str += alphabetByValue[(bits & (maxLetterValue << offset)) >> offset];\n }\n str += \"==\".slice(0, 4 - bitClusterCount);\n }\n return str;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js ***! \*****************************************************************************************************************************/ /*! exports provided: calculateBodyLength */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"calculateBodyLength\", function() { return calculateBodyLength; });\nvar calculateBodyLength = function (body) {\n if (typeof body === \"string\") {\n var len = body.length;\n for (var i = len - 1; i >= 0; i--) {\n var code = body.charCodeAt(i);\n if (code > 0x7f && code <= 0x7ff)\n len++;\n else if (code > 0x7ff && code <= 0xffff)\n len += 2;\n if (code >= 0xdc00 && code <= 0xdfff)\n i--;\n }\n return len;\n }\n else if (typeof body.byteLength === \"number\") {\n return body.byteLength;\n }\n else if (typeof body.size === \"number\") {\n return body.size;\n }\n throw new Error(\"Body Length computation failed for \".concat(body));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js ***! \***************************************************************************************************************/ /*! exports provided: calculateBodyLength */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _calculateBodyLength__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./calculateBodyLength */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"calculateBodyLength\", function() { return _calculateBodyLength__WEBPACK_IMPORTED_MODULE_0__[\"calculateBodyLength\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js ***! \********************************************************************************************************/ /*! exports provided: fromHex, toHex */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromHex\", function() { return fromHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toHex\", function() { return toHex; });\nvar SHORT_TO_HEX = {};\nvar HEX_TO_SHORT = {};\nfor (var i = 0; i < 256; i++) {\n var encodedByte = i.toString(16).toLowerCase();\n if (encodedByte.length === 1) {\n encodedByte = \"0\".concat(encodedByte);\n }\n SHORT_TO_HEX[i] = encodedByte;\n HEX_TO_SHORT[encodedByte] = i;\n}\nfunction fromHex(encoded) {\n if (encoded.length % 2 !== 0) {\n throw new Error(\"Hex encoded strings must have an even number length\");\n }\n var out = new Uint8Array(encoded.length / 2);\n for (var i = 0; i < encoded.length; i += 2) {\n var encodedByte = encoded.slice(i, i + 2).toLowerCase();\n if (encodedByte in HEX_TO_SHORT) {\n out[i / 2] = HEX_TO_SHORT[encodedByte];\n }\n else {\n throw new Error(\"Cannot decode unrecognized sequence \".concat(encodedByte, \" as hexadecimal\"));\n }\n }\n return out;\n}\nfunction toHex(bytes) {\n var out = \"\";\n for (var i = 0; i < bytes.byteLength; i++) {\n out += SHORT_TO_HEX[bytes[i]];\n }\n return out;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js ***! \****************************************************************************************************************/ /*! exports provided: escapeUriPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeUriPath\", function() { return escapeUriPath; });\n/* harmony import */ var _escape_uri__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./escape-uri */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js\");\n\nvar escapeUriPath = function (uri) { return uri.split(\"/\").map(_escape_uri__WEBPACK_IMPORTED_MODULE_0__[\"escapeUri\"]).join(\"/\"); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js ***! \***********************************************************************************************************/ /*! exports provided: escapeUri */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeUri\", function() { return escapeUri; });\nvar escapeUri = function (uri) {\n return encodeURIComponent(uri).replace(/[!'()*]/g, hexEncode);\n};\nvar hexEncode = function (c) { return \"%\".concat(c.charCodeAt(0).toString(16).toUpperCase()); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js ***! \******************************************************************************************************/ /*! exports provided: escapeUri, escapeUriPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _escape_uri__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./escape-uri */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"escapeUri\", function() { return _escape_uri__WEBPACK_IMPORTED_MODULE_0__[\"escapeUri\"]; });\n\n/* harmony import */ var _escape_uri_path__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./escape-uri-path */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"escapeUriPath\", function() { return _escape_uri_path__WEBPACK_IMPORTED_MODULE_1__[\"escapeUriPath\"]; });\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js": /*!**************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js ***! \**************************************************************************************************************/ /*! exports provided: defaultUserAgent */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultUserAgent\", function() { return defaultUserAgent; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! bowser */ \"./node_modules/bowser/es5.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(bowser__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar defaultUserAgent = function (_a) {\n var serviceId = _a.serviceId, clientVersion = _a.clientVersion;\n return function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedUA, sections;\n var _a, _b, _c, _d, _e, _f, _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n parsedUA = typeof window !== \"undefined\" && ((_a = window === null || window === void 0 ? void 0 : window.navigator) === null || _a === void 0 ? void 0 : _a.userAgent)\n ? bowser__WEBPACK_IMPORTED_MODULE_1___default.a.parse(window.navigator.userAgent)\n : undefined;\n sections = [\n [\"aws-sdk-js\", clientVersion],\n [\"os/\".concat(((_b = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.os) === null || _b === void 0 ? void 0 : _b.name) || \"other\"), (_c = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.os) === null || _c === void 0 ? void 0 : _c.version],\n [\"lang/js\"],\n [\"md/browser\", \"\".concat((_e = (_d = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.browser) === null || _d === void 0 ? void 0 : _d.name) !== null && _e !== void 0 ? _e : \"unknown\", \"_\").concat((_g = (_f = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.browser) === null || _f === void 0 ? void 0 : _f.version) !== null && _g !== void 0 ? _g : \"unknown\")],\n ];\n if (serviceId) {\n sections.push([\"api/\".concat(serviceId), clientVersion]);\n }\n return [2, sections];\n });\n }); };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js ***! \********************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\n/* harmony import */ var _pureJs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./pureJs */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js\");\n/* harmony import */ var _whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./whatwgEncodingApi */ \"./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js\");\n\n\nvar fromUtf8 = function (input) {\n return typeof TextEncoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"fromUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"fromUtf8\"])(input);\n};\nvar toUtf8 = function (input) {\n return typeof TextDecoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"toUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"toUtf8\"])(input);\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js ***! \*********************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\nvar fromUtf8 = function (input) {\n var bytes = [];\n for (var i = 0, len = input.length; i < len; i++) {\n var value = input.charCodeAt(i);\n if (value < 0x80) {\n bytes.push(value);\n }\n else if (value < 0x800) {\n bytes.push((value >> 6) | 192, (value & 63) | 128);\n }\n else if (i + 1 < input.length && (value & 0xfc00) === 0xd800 && (input.charCodeAt(i + 1) & 0xfc00) === 0xdc00) {\n var surrogatePair = 0x10000 + ((value & 1023) << 10) + (input.charCodeAt(++i) & 1023);\n bytes.push((surrogatePair >> 18) | 240, ((surrogatePair >> 12) & 63) | 128, ((surrogatePair >> 6) & 63) | 128, (surrogatePair & 63) | 128);\n }\n else {\n bytes.push((value >> 12) | 224, ((value >> 6) & 63) | 128, (value & 63) | 128);\n }\n }\n return Uint8Array.from(bytes);\n};\nvar toUtf8 = function (input) {\n var decoded = \"\";\n for (var i = 0, len = input.length; i < len; i++) {\n var byte = input[i];\n if (byte < 0x80) {\n decoded += String.fromCharCode(byte);\n }\n else if (192 <= byte && byte < 224) {\n var nextByte = input[++i];\n decoded += String.fromCharCode(((byte & 31) << 6) | (nextByte & 63));\n }\n else if (240 <= byte && byte < 365) {\n var surrogatePair = [byte, input[++i], input[++i], input[++i]];\n var encoded = \"%\" + surrogatePair.map(function (byteValue) { return byteValue.toString(16); }).join(\"%\");\n decoded += decodeURIComponent(encoded);\n }\n else {\n decoded += String.fromCharCode(((byte & 15) << 12) | ((input[++i] & 63) << 6) | (input[++i] & 63));\n }\n }\n return decoded;\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js": /*!********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js ***! \********************************************************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\nfunction fromUtf8(input) {\n return new TextEncoder().encode(input);\n}\nfunction toUtf8(input) {\n return new TextDecoder(\"utf-8\").decode(input);\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js ***! \*******************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/index.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/index.js ***! \*******************************************************************************************/ /*! exports provided: v1, v3, v4, v5, NIL, version, validate, stringify, parse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _v1_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v1.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v1.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v1\", function() { return _v1_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/* harmony import */ var _v3_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./v3.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v3.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v3\", function() { return _v3_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _v4_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./v4.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v4.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v4\", function() { return _v4_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n/* harmony import */ var _v5_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./v5.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v5.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"v5\", function() { return _v5_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"]; });\n\n/* harmony import */ var _nil_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./nil.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/nil.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NIL\", function() { return _nil_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"]; });\n\n/* harmony import */ var _version_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./version.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/version.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return _version_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"]; });\n\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/validate.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validate\", function() { return _validate_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"]; });\n\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/stringify.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"stringify\", function() { return _stringify_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"]; });\n\n/* harmony import */ var _parse_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./parse.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/parse.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parse\", function() { return _parse_js__WEBPACK_IMPORTED_MODULE_8__[\"default\"]; });\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/md5.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/md5.js ***! \*****************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/*\n * Browser-compatible JavaScript MD5\n *\n * Modification of JavaScript MD5\n * https://github.com/blueimp/JavaScript-MD5\n *\n * Copyright 2011, Sebastian Tschan\n * https://blueimp.net\n *\n * Licensed under the MIT license:\n * https://opensource.org/licenses/MIT\n *\n * Based on\n * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message\n * Digest Algorithm, as defined in RFC 1321.\n * Version 2.2 Copyright (C) Paul Johnston 1999 - 2009\n * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet\n * Distributed under the BSD License\n * See http://pajhome.org.uk/crypt/md5 for more info.\n */\nfunction md5(bytes) {\n if (typeof bytes === 'string') {\n var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape\n\n bytes = new Uint8Array(msg.length);\n\n for (var i = 0; i < msg.length; ++i) {\n bytes[i] = msg.charCodeAt(i);\n }\n }\n\n return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8));\n}\n/*\n * Convert an array of little-endian words to an array of bytes\n */\n\n\nfunction md5ToHexEncodedArray(input) {\n var output = [];\n var length32 = input.length * 32;\n var hexTab = '0123456789abcdef';\n\n for (var i = 0; i < length32; i += 8) {\n var x = input[i >> 5] >>> i % 32 & 0xff;\n var hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16);\n output.push(hex);\n }\n\n return output;\n}\n/**\n * Calculate output length with padding and bit length\n */\n\n\nfunction getOutputLength(inputLength8) {\n return (inputLength8 + 64 >>> 9 << 4) + 14 + 1;\n}\n/*\n * Calculate the MD5 of an array of little-endian words, and a bit length.\n */\n\n\nfunction wordsToMd5(x, len) {\n /* append padding */\n x[len >> 5] |= 0x80 << len % 32;\n x[getOutputLength(len) - 1] = len;\n var a = 1732584193;\n var b = -271733879;\n var c = -1732584194;\n var d = 271733878;\n\n for (var i = 0; i < x.length; i += 16) {\n var olda = a;\n var oldb = b;\n var oldc = c;\n var oldd = d;\n a = md5ff(a, b, c, d, x[i], 7, -680876936);\n d = md5ff(d, a, b, c, x[i + 1], 12, -389564586);\n c = md5ff(c, d, a, b, x[i + 2], 17, 606105819);\n b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330);\n a = md5ff(a, b, c, d, x[i + 4], 7, -176418897);\n d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426);\n c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341);\n b = md5ff(b, c, d, a, x[i + 7], 22, -45705983);\n a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416);\n d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417);\n c = md5ff(c, d, a, b, x[i + 10], 17, -42063);\n b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162);\n a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682);\n d = md5ff(d, a, b, c, x[i + 13], 12, -40341101);\n c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290);\n b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329);\n a = md5gg(a, b, c, d, x[i + 1], 5, -165796510);\n d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632);\n c = md5gg(c, d, a, b, x[i + 11], 14, 643717713);\n b = md5gg(b, c, d, a, x[i], 20, -373897302);\n a = md5gg(a, b, c, d, x[i + 5], 5, -701558691);\n d = md5gg(d, a, b, c, x[i + 10], 9, 38016083);\n c = md5gg(c, d, a, b, x[i + 15], 14, -660478335);\n b = md5gg(b, c, d, a, x[i + 4], 20, -405537848);\n a = md5gg(a, b, c, d, x[i + 9], 5, 568446438);\n d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690);\n c = md5gg(c, d, a, b, x[i + 3], 14, -187363961);\n b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501);\n a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467);\n d = md5gg(d, a, b, c, x[i + 2], 9, -51403784);\n c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473);\n b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734);\n a = md5hh(a, b, c, d, x[i + 5], 4, -378558);\n d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463);\n c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562);\n b = md5hh(b, c, d, a, x[i + 14], 23, -35309556);\n a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060);\n d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353);\n c = md5hh(c, d, a, b, x[i + 7], 16, -155497632);\n b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640);\n a = md5hh(a, b, c, d, x[i + 13], 4, 681279174);\n d = md5hh(d, a, b, c, x[i], 11, -358537222);\n c = md5hh(c, d, a, b, x[i + 3], 16, -722521979);\n b = md5hh(b, c, d, a, x[i + 6], 23, 76029189);\n a = md5hh(a, b, c, d, x[i + 9], 4, -640364487);\n d = md5hh(d, a, b, c, x[i + 12], 11, -421815835);\n c = md5hh(c, d, a, b, x[i + 15], 16, 530742520);\n b = md5hh(b, c, d, a, x[i + 2], 23, -995338651);\n a = md5ii(a, b, c, d, x[i], 6, -198630844);\n d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415);\n c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905);\n b = md5ii(b, c, d, a, x[i + 5], 21, -57434055);\n a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571);\n d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606);\n c = md5ii(c, d, a, b, x[i + 10], 15, -1051523);\n b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799);\n a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359);\n d = md5ii(d, a, b, c, x[i + 15], 10, -30611744);\n c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380);\n b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649);\n a = md5ii(a, b, c, d, x[i + 4], 6, -145523070);\n d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379);\n c = md5ii(c, d, a, b, x[i + 2], 15, 718787259);\n b = md5ii(b, c, d, a, x[i + 9], 21, -343485551);\n a = safeAdd(a, olda);\n b = safeAdd(b, oldb);\n c = safeAdd(c, oldc);\n d = safeAdd(d, oldd);\n }\n\n return [a, b, c, d];\n}\n/*\n * Convert an array bytes to an array of little-endian words\n * Characters >255 have their high-byte silently ignored.\n */\n\n\nfunction bytesToWords(input) {\n if (input.length === 0) {\n return [];\n }\n\n var length8 = input.length * 8;\n var output = new Uint32Array(getOutputLength(length8));\n\n for (var i = 0; i < length8; i += 8) {\n output[i >> 5] |= (input[i / 8] & 0xff) << i % 32;\n }\n\n return output;\n}\n/*\n * Add integers, wrapping at 2^32. This uses 16-bit operations internally\n * to work around bugs in some JS interpreters.\n */\n\n\nfunction safeAdd(x, y) {\n var lsw = (x & 0xffff) + (y & 0xffff);\n var msw = (x >> 16) + (y >> 16) + (lsw >> 16);\n return msw << 16 | lsw & 0xffff;\n}\n/*\n * Bitwise rotate a 32-bit number to the left.\n */\n\n\nfunction bitRotateLeft(num, cnt) {\n return num << cnt | num >>> 32 - cnt;\n}\n/*\n * These functions implement the four basic operations the algorithm uses.\n */\n\n\nfunction md5cmn(q, a, b, x, s, t) {\n return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b);\n}\n\nfunction md5ff(a, b, c, d, x, s, t) {\n return md5cmn(b & c | ~b & d, a, b, x, s, t);\n}\n\nfunction md5gg(a, b, c, d, x, s, t) {\n return md5cmn(b & d | c & ~d, a, b, x, s, t);\n}\n\nfunction md5hh(a, b, c, d, x, s, t) {\n return md5cmn(b ^ c ^ d, a, b, x, s, t);\n}\n\nfunction md5ii(a, b, c, d, x, s, t) {\n return md5cmn(c ^ (b | ~d), a, b, x, s, t);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (md5);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/md5.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/nil.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/nil.js ***! \*****************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = ('00000000-0000-0000-0000-000000000000');\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/nil.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/parse.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/parse.js ***! \*******************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/validate.js\");\n\n\nfunction parse(uuid) {\n if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(uuid)) {\n throw TypeError('Invalid UUID');\n }\n\n var v;\n var arr = new Uint8Array(16); // Parse ########-....-....-....-............\n\n arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24;\n arr[1] = v >>> 16 & 0xff;\n arr[2] = v >>> 8 & 0xff;\n arr[3] = v & 0xff; // Parse ........-####-....-....-............\n\n arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8;\n arr[5] = v & 0xff; // Parse ........-....-####-....-............\n\n arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8;\n arr[7] = v & 0xff; // Parse ........-....-....-####-............\n\n arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8;\n arr[9] = v & 0xff; // Parse ........-....-....-....-############\n // (Use \"/\" to avoid 32-bit truncation when bit-shifting high-order bytes)\n\n arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff;\n arr[11] = v / 0x100000000 & 0xff;\n arr[12] = v >>> 24 & 0xff;\n arr[13] = v >>> 16 & 0xff;\n arr[14] = v >>> 8 & 0xff;\n arr[15] = v & 0xff;\n return arr;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (parse);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/parse.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/regex.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/regex.js ***! \*******************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/regex.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/rng.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/rng.js ***! \*****************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return rng; });\n// Unique ID creation requires a high quality random # generator. In the browser we therefore\n// require the crypto API and do not support built-in fallback to lower quality random number\n// generators (like Math.random()).\nvar getRandomValues;\nvar rnds8 = new Uint8Array(16);\nfunction rng() {\n // lazy load so that environments that need to polyfill have a chance to do so\n if (!getRandomValues) {\n // getRandomValues needs to be invoked in a context where \"this\" is a Crypto implementation. Also,\n // find the complete implementation of crypto (msCrypto) on IE11.\n getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto);\n\n if (!getRandomValues) {\n throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');\n }\n }\n\n return getRandomValues(rnds8);\n}\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/rng.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/sha1.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/sha1.js ***! \******************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n// Adapted from Chris Veness' SHA1 code at\n// http://www.movable-type.co.uk/scripts/sha1.html\nfunction f(s, x, y, z) {\n switch (s) {\n case 0:\n return x & y ^ ~x & z;\n\n case 1:\n return x ^ y ^ z;\n\n case 2:\n return x & y ^ x & z ^ y & z;\n\n case 3:\n return x ^ y ^ z;\n }\n}\n\nfunction ROTL(x, n) {\n return x << n | x >>> 32 - n;\n}\n\nfunction sha1(bytes) {\n var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];\n var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0];\n\n if (typeof bytes === 'string') {\n var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape\n\n bytes = [];\n\n for (var i = 0; i < msg.length; ++i) {\n bytes.push(msg.charCodeAt(i));\n }\n } else if (!Array.isArray(bytes)) {\n // Convert Array-like to Array\n bytes = Array.prototype.slice.call(bytes);\n }\n\n bytes.push(0x80);\n var l = bytes.length / 4 + 2;\n var N = Math.ceil(l / 16);\n var M = new Array(N);\n\n for (var _i = 0; _i < N; ++_i) {\n var arr = new Uint32Array(16);\n\n for (var j = 0; j < 16; ++j) {\n arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3];\n }\n\n M[_i] = arr;\n }\n\n M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32);\n M[N - 1][14] = Math.floor(M[N - 1][14]);\n M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff;\n\n for (var _i2 = 0; _i2 < N; ++_i2) {\n var W = new Uint32Array(80);\n\n for (var t = 0; t < 16; ++t) {\n W[t] = M[_i2][t];\n }\n\n for (var _t = 16; _t < 80; ++_t) {\n W[_t] = ROTL(W[_t - 3] ^ W[_t - 8] ^ W[_t - 14] ^ W[_t - 16], 1);\n }\n\n var a = H[0];\n var b = H[1];\n var c = H[2];\n var d = H[3];\n var e = H[4];\n\n for (var _t2 = 0; _t2 < 80; ++_t2) {\n var s = Math.floor(_t2 / 20);\n var T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[_t2] >>> 0;\n e = d;\n d = c;\n c = ROTL(b, 30) >>> 0;\n b = a;\n a = T;\n }\n\n H[0] = H[0] + a >>> 0;\n H[1] = H[1] + b >>> 0;\n H[2] = H[2] + c >>> 0;\n H[3] = H[3] + d >>> 0;\n H[4] = H[4] + e >>> 0;\n }\n\n return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff];\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (sha1);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/sha1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/stringify.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/stringify.js ***! \***********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/validate.js\");\n\n/**\n * Convert array of 16 byte values to UUID string format of the form:\n * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\n */\n\nvar byteToHex = [];\n\nfor (var i = 0; i < 256; ++i) {\n byteToHex.push((i + 0x100).toString(16).substr(1));\n}\n\nfunction stringify(arr) {\n var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n // Note: Be careful editing this code! It's been tuned for performance\n // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434\n var uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one\n // of the following:\n // - One or more input array values don't map to a hex octet (leading to\n // \"undefined\" in the uuid)\n // - Invalid input values for the RFC `version` or `variant` fields\n\n if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(uuid)) {\n throw TypeError('Stringified UUID is invalid');\n }\n\n return uuid;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (stringify);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/stringify.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v1.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v1.js ***! \****************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./rng.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/rng.js\");\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/stringify.js\");\n\n // **`v1()` - Generate time-based UUID**\n//\n// Inspired by https://github.com/LiosK/UUID.js\n// and http://docs.python.org/library/uuid.html\n\nvar _nodeId;\n\nvar _clockseq; // Previous uuid creation time\n\n\nvar _lastMSecs = 0;\nvar _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details\n\nfunction v1(options, buf, offset) {\n var i = buf && offset || 0;\n var b = buf || new Array(16);\n options = options || {};\n var node = options.node || _nodeId;\n var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not\n // specified. We do this lazily to minimize issues related to insufficient\n // system entropy. See #189\n\n if (node == null || clockseq == null) {\n var seedBytes = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])();\n\n if (node == null) {\n // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)\n node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];\n }\n\n if (clockseq == null) {\n // Per 4.2.2, randomize (14 bit) clockseq\n clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;\n }\n } // UUID timestamps are 100 nano-second units since the Gregorian epoch,\n // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so\n // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'\n // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.\n\n\n var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock\n // cycle to simulate higher resolution clock\n\n var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)\n\n var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression\n\n if (dt < 0 && options.clockseq === undefined) {\n clockseq = clockseq + 1 & 0x3fff;\n } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new\n // time interval\n\n\n if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {\n nsecs = 0;\n } // Per 4.2.1.2 Throw error if too many uuids are requested\n\n\n if (nsecs >= 10000) {\n throw new Error(\"uuid.v1(): Can't create more than 10M uuids/sec\");\n }\n\n _lastMSecs = msecs;\n _lastNSecs = nsecs;\n _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch\n\n msecs += 12219292800000; // `time_low`\n\n var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;\n b[i++] = tl >>> 24 & 0xff;\n b[i++] = tl >>> 16 & 0xff;\n b[i++] = tl >>> 8 & 0xff;\n b[i++] = tl & 0xff; // `time_mid`\n\n var tmh = msecs / 0x100000000 * 10000 & 0xfffffff;\n b[i++] = tmh >>> 8 & 0xff;\n b[i++] = tmh & 0xff; // `time_high_and_version`\n\n b[i++] = tmh >>> 24 & 0xf | 0x10; // include version\n\n b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)\n\n b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`\n\n b[i++] = clockseq & 0xff; // `node`\n\n for (var n = 0; n < 6; ++n) {\n b[i + n] = node[n];\n }\n\n return buf || Object(_stringify_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(b);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (v1);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v3.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v3.js ***! \****************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _v35_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v35.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v35.js\");\n/* harmony import */ var _md5_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./md5.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/md5.js\");\n\n\nvar v3 = Object(_v35_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])('v3', 0x30, _md5_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = (v3);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v3.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v35.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v35.js ***! \*****************************************************************************************/ /*! exports provided: DNS, URL, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DNS\", function() { return DNS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"URL\", function() { return URL; });\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/stringify.js\");\n/* harmony import */ var _parse_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./parse.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/parse.js\");\n\n\n\nfunction stringToBytes(str) {\n str = unescape(encodeURIComponent(str)); // UTF8 escape\n\n var bytes = [];\n\n for (var i = 0; i < str.length; ++i) {\n bytes.push(str.charCodeAt(i));\n }\n\n return bytes;\n}\n\nvar DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';\nvar URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';\n/* harmony default export */ __webpack_exports__[\"default\"] = (function (name, version, hashfunc) {\n function generateUUID(value, namespace, buf, offset) {\n if (typeof value === 'string') {\n value = stringToBytes(value);\n }\n\n if (typeof namespace === 'string') {\n namespace = Object(_parse_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(namespace);\n }\n\n if (namespace.length !== 16) {\n throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');\n } // Compute hash of namespace and value, Per 4.3\n // Future: Use spread syntax when supported on all platforms, e.g. `bytes =\n // hashfunc([...namespace, ... value])`\n\n\n var bytes = new Uint8Array(16 + value.length);\n bytes.set(namespace);\n bytes.set(value, namespace.length);\n bytes = hashfunc(bytes);\n bytes[6] = bytes[6] & 0x0f | version;\n bytes[8] = bytes[8] & 0x3f | 0x80;\n\n if (buf) {\n offset = offset || 0;\n\n for (var i = 0; i < 16; ++i) {\n buf[offset + i] = bytes[i];\n }\n\n return buf;\n }\n\n return Object(_stringify_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(bytes);\n } // Function#name is not settable on some platforms (#270)\n\n\n try {\n generateUUID.name = name; // eslint-disable-next-line no-empty\n } catch (err) {} // For CommonJS default export support\n\n\n generateUUID.DNS = DNS;\n generateUUID.URL = URL;\n return generateUUID;\n});\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v35.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v4.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v4.js ***! \****************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./rng.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/rng.js\");\n/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stringify.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/stringify.js\");\n\n\n\nfunction v4(options, buf, offset) {\n options = options || {};\n var rnds = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`\n\n rnds[6] = rnds[6] & 0x0f | 0x40;\n rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided\n\n if (buf) {\n offset = offset || 0;\n\n for (var i = 0; i < 16; ++i) {\n buf[offset + i] = rnds[i];\n }\n\n return buf;\n }\n\n return Object(_stringify_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(rnds);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (v4);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v4.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v5.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v5.js ***! \****************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _v35_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./v35.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v35.js\");\n/* harmony import */ var _sha1_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./sha1.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/sha1.js\");\n\n\nvar v5 = Object(_v35_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])('v5', 0x50, _sha1_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = (v5);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/v5.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/validate.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/validate.js ***! \**********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _regex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./regex.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/regex.js\");\n\n\nfunction validate(uuid) {\n return typeof uuid === 'string' && _regex_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].test(uuid);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (validate);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/validate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/version.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/version.js ***! \*********************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ \"./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/validate.js\");\n\n\nfunction version(uuid) {\n if (!Object(_validate_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(uuid)) {\n throw TypeError('Invalid UUID');\n }\n\n return parseInt(uuid.substr(14, 1), 16);\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (version);\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/version.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-location/package.json": /*!************************************************************!*\ !*** ./node_modules/@aws-sdk/client-location/package.json ***! \************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, sideEffects, dependencies, devDependencies, overrides, engines, typesVersions, files, author, license, browser, react-native, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-location\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Location Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.186.0\\\",\\\"scripts\\\":{\\\"build\\\":\\\"concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.cjs.json\\\",\\\"build:docs\\\":\\\"typedoc\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build:include:deps\\\":\\\"lerna run --scope $npm_package_name --include-dependencies build\\\",\\\"build:types\\\":\\\"tsc -p tsconfig.types.json\\\",\\\"build:types:downlevel\\\":\\\"downlevel-dts dist-types dist-types/ts3.4\\\",\\\"clean\\\":\\\"rimraf ./dist-* && rimraf *.tsbuildinfo\\\"},\\\"main\\\":\\\"./dist-cjs/index.js\\\",\\\"types\\\":\\\"./dist-types/index.d.ts\\\",\\\"module\\\":\\\"./dist-es/index.js\\\",\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"2.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"2.0.0\\\",\\\"@aws-sdk/client-sts\\\":\\\"3.186.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.186.0\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.186.0\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-recursion-detection\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.186.0\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.186.0\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.186.0\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.186.0\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.186.0\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.186.0\\\",\\\"@aws-sdk/types\\\":\\\"3.186.0\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-defaults-mode-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-defaults-mode-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.186.0\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.186.0\\\",\\\"tslib\\\":\\\"^2.3.1\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/service-client-documentation-generator\\\":\\\"3.186.0\\\",\\\"@tsconfig/recommended\\\":\\\"1.0.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"concurrently\\\":\\\"7.0.0\\\",\\\"downlevel-dts\\\":\\\"0.10.1\\\",\\\"rimraf\\\":\\\"3.0.2\\\",\\\"typedoc\\\":\\\"0.19.2\\\",\\\"typescript\\\":\\\"~4.6.2\\\"},\\\"overrides\\\":{\\\"typedoc\\\":{\\\"typescript\\\":\\\"~4.6.2\\\"}},\\\"engines\\\":{\\\"node\\\":\\\">=12.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"dist-types/*\\\":[\\\"dist-types/ts3.4/*\\\"]}},\\\"files\\\":[\\\"dist-*\\\"],\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"browser\\\":{\\\"./dist-es/runtimeConfig\\\":\\\"./dist-es/runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./dist-es/runtimeConfig\\\":\\\"./dist-es/runtimeConfig.native\\\"},\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-location\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-location\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-location/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/PersonalizeEvents.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/PersonalizeEvents.js ***! \**************************************************************************************/ /*! exports provided: PersonalizeEvents */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PersonalizeEvents\", function() { return PersonalizeEvents; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _PersonalizeEventsClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./PersonalizeEventsClient */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/PersonalizeEventsClient.js\");\n/* harmony import */ var _commands_PutEventsCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/PutEventsCommand */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutEventsCommand.js\");\n/* harmony import */ var _commands_PutItemsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/PutItemsCommand */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutItemsCommand.js\");\n/* harmony import */ var _commands_PutUsersCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/PutUsersCommand */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutUsersCommand.js\");\n\n\n\n\n\n/**\n *

Amazon Personalize can consume real-time user event data, such as stream or click data, and use\n * it for model training either alone or combined with historical data. For more information see recording-events.

\n */\nvar PersonalizeEvents = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PersonalizeEvents, _super);\n function PersonalizeEvents() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n PersonalizeEvents.prototype.putEvents = function (args, optionsOrCb, cb) {\n var command = new _commands_PutEventsCommand__WEBPACK_IMPORTED_MODULE_2__[\"PutEventsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n PersonalizeEvents.prototype.putItems = function (args, optionsOrCb, cb) {\n var command = new _commands_PutItemsCommand__WEBPACK_IMPORTED_MODULE_3__[\"PutItemsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n PersonalizeEvents.prototype.putUsers = function (args, optionsOrCb, cb) {\n var command = new _commands_PutUsersCommand__WEBPACK_IMPORTED_MODULE_4__[\"PutUsersCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return PersonalizeEvents;\n}(_PersonalizeEventsClient__WEBPACK_IMPORTED_MODULE_1__[\"PersonalizeEventsClient\"]));\n\n//# sourceMappingURL=PersonalizeEvents.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/PersonalizeEvents.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/PersonalizeEventsClient.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/PersonalizeEventsClient.js ***! \********************************************************************************************/ /*! exports provided: PersonalizeEventsClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PersonalizeEventsClient\", function() { return PersonalizeEventsClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n *

Amazon Personalize can consume real-time user event data, such as stream or click data, and use\n * it for model training either alone or combined with historical data. For more information see recording-events.

\n */\nvar PersonalizeEventsClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PersonalizeEventsClient, _super);\n function PersonalizeEventsClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n PersonalizeEventsClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return PersonalizeEventsClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=PersonalizeEventsClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/PersonalizeEventsClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutEventsCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutEventsCommand.js ***! \**********************************************************************************************/ /*! exports provided: PutEventsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutEventsCommand\", function() { return PutEventsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Records user interaction event data. For more information see event-record-api.

\n */\nvar PutEventsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutEventsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutEventsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutEventsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PersonalizeEventsClient\";\n var commandName = \"PutEventsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutEventsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutEventsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1PutEventsCommand\"])(input, context);\n };\n PutEventsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1PutEventsCommand\"])(output, context);\n };\n return PutEventsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutEventsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutEventsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutItemsCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutItemsCommand.js ***! \*********************************************************************************************/ /*! exports provided: PutItemsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutItemsCommand\", function() { return PutItemsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Adds one or more items to an Items dataset. For more information see\n * importing-items.

\n */\nvar PutItemsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutItemsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutItemsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutItemsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PersonalizeEventsClient\";\n var commandName = \"PutItemsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutItemsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutItemsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1PutItemsCommand\"])(input, context);\n };\n PutItemsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1PutItemsCommand\"])(output, context);\n };\n return PutItemsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutItemsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutItemsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutUsersCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutUsersCommand.js ***! \*********************************************************************************************/ /*! exports provided: PutUsersCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutUsersCommand\", function() { return PutUsersCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Adds one or more users to a Users dataset. For more information see\n * importing-users.

\n */\nvar PutUsersCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutUsersCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutUsersCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutUsersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PersonalizeEventsClient\";\n var commandName = \"PutUsersCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutUsersRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutUsersCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1PutUsersCommand\"])(input, context);\n };\n PutUsersCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1PutUsersCommand\"])(output, context);\n };\n return PutUsersCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutUsersCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutUsersCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/endpoints.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/endpoints.js ***! \******************************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"personalize-events.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"personalize-events.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"personalize-events.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"personalize-events.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"personalize-events.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"personalize\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/index.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/index.js ***! \**************************************************************************/ /*! exports provided: PersonalizeEventsClient, PersonalizeEvents, PutEventsCommand, PutItemsCommand, PutUsersCommand, InvalidInputException, Event, PutEventsRequest, Item, PutItemsRequest, ResourceNotFoundException, User, PutUsersRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PersonalizeEventsClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PersonalizeEventsClient */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/PersonalizeEventsClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonalizeEventsClient\", function() { return _PersonalizeEventsClient__WEBPACK_IMPORTED_MODULE_0__[\"PersonalizeEventsClient\"]; });\n\n/* harmony import */ var _PersonalizeEvents__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./PersonalizeEvents */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/PersonalizeEvents.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonalizeEvents\", function() { return _PersonalizeEvents__WEBPACK_IMPORTED_MODULE_1__[\"PersonalizeEvents\"]; });\n\n/* harmony import */ var _commands_PutEventsCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/PutEventsCommand */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutEventsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventsCommand\", function() { return _commands_PutEventsCommand__WEBPACK_IMPORTED_MODULE_2__[\"PutEventsCommand\"]; });\n\n/* harmony import */ var _commands_PutItemsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/PutItemsCommand */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutItemsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutItemsCommand\", function() { return _commands_PutItemsCommand__WEBPACK_IMPORTED_MODULE_3__[\"PutItemsCommand\"]; });\n\n/* harmony import */ var _commands_PutUsersCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/PutUsersCommand */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/commands/PutUsersCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutUsersCommand\", function() { return _commands_PutUsersCommand__WEBPACK_IMPORTED_MODULE_4__[\"PutUsersCommand\"]; });\n\n/* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidInputException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_5__[\"InvalidInputException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Event\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_5__[\"Event\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_5__[\"PutEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Item\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_5__[\"Item\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutItemsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_5__[\"PutItemsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_5__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"User\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_5__[\"User\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutUsersRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_5__[\"PutUsersRequest\"]; });\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/models/index.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/models/index.js ***! \*********************************************************************************/ /*! exports provided: InvalidInputException, Event, PutEventsRequest, Item, PutItemsRequest, ResourceNotFoundException, User, PutUsersRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidInputException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidInputException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Event\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Event\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Item\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Item\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutItemsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutItemsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"User\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"User\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutUsersRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutUsersRequest\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/models/models_0.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/models/models_0.js ***! \************************************************************************************/ /*! exports provided: InvalidInputException, Event, PutEventsRequest, Item, PutItemsRequest, ResourceNotFoundException, User, PutUsersRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidInputException\", function() { return InvalidInputException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Event\", function() { return Event; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutEventsRequest\", function() { return PutEventsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Item\", function() { return Item; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutItemsRequest\", function() { return PutItemsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"User\", function() { return User; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutUsersRequest\", function() { return PutUsersRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js\");\n\nvar InvalidInputException;\n(function (InvalidInputException) {\n InvalidInputException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidInputException || (InvalidInputException = {}));\nvar Event;\n(function (Event) {\n Event.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Event || (Event = {}));\nvar PutEventsRequest;\n(function (PutEventsRequest) {\n PutEventsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutEventsRequest || (PutEventsRequest = {}));\nvar Item;\n(function (Item) {\n Item.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Item || (Item = {}));\nvar PutItemsRequest;\n(function (PutItemsRequest) {\n PutItemsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutItemsRequest || (PutItemsRequest = {}));\nvar ResourceNotFoundException;\n(function (ResourceNotFoundException) {\n ResourceNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceNotFoundException || (ResourceNotFoundException = {}));\nvar User;\n(function (User) {\n User.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(User || (User = {}));\nvar PutUsersRequest;\n(function (PutUsersRequest) {\n PutUsersRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutUsersRequest || (PutUsersRequest = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/package.json": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/package.json ***! \******************************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-personalize-events\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Personalize Events Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-personalize-events\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-personalize-events\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/protocols/Aws_restJson1.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/protocols/Aws_restJson1.js ***! \********************************************************************************************/ /*! exports provided: serializeAws_restJson1PutEventsCommand, serializeAws_restJson1PutItemsCommand, serializeAws_restJson1PutUsersCommand, deserializeAws_restJson1PutEventsCommand, deserializeAws_restJson1PutItemsCommand, deserializeAws_restJson1PutUsersCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PutEventsCommand\", function() { return serializeAws_restJson1PutEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PutItemsCommand\", function() { return serializeAws_restJson1PutItemsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PutUsersCommand\", function() { return serializeAws_restJson1PutUsersCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PutEventsCommand\", function() { return deserializeAws_restJson1PutEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PutItemsCommand\", function() { return deserializeAws_restJson1PutItemsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PutUsersCommand\", function() { return deserializeAws_restJson1PutUsersCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\nvar serializeAws_restJson1PutEventsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/events\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.eventList !== undefined &&\n input.eventList !== null && { eventList: serializeAws_restJson1EventList(input.eventList, context) })), (input.sessionId !== undefined && input.sessionId !== null && { sessionId: input.sessionId })), (input.trackingId !== undefined && input.trackingId !== null && { trackingId: input.trackingId })), (input.userId !== undefined && input.userId !== null && { userId: input.userId })));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PutItemsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/items\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.datasetArn !== undefined && input.datasetArn !== null && { datasetArn: input.datasetArn })), (input.items !== undefined &&\n input.items !== null && { items: serializeAws_restJson1ItemList(input.items, context) })));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PutUsersCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/users\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.datasetArn !== undefined && input.datasetArn !== null && { datasetArn: input.datasetArn })), (input.users !== undefined &&\n input.users !== null && { users: serializeAws_restJson1UserList(input.users, context) })));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar deserializeAws_restJson1PutEventsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1PutEventsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1PutEventsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidInputException\": return [3 /*break*/, 2];\n case \"com.amazonaws.personalizeevents#InvalidInputException\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidInputExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1PutItemsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1PutItemsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1PutItemsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidInputException\": return [3 /*break*/, 2];\n case \"com.amazonaws.personalizeevents#InvalidInputException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.personalizeevents#ResourceNotFoundException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidInputExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1PutUsersCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1PutUsersCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1PutUsersCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidInputException\": return [3 /*break*/, 2];\n case \"com.amazonaws.personalizeevents#InvalidInputException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.personalizeevents#ResourceNotFoundException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidInputExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1InvalidInputExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidInputException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"ResourceNotFoundException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_restJson1Event = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.eventId !== undefined && input.eventId !== null && { eventId: input.eventId })), (input.eventType !== undefined && input.eventType !== null && { eventType: input.eventType })), (input.eventValue !== undefined && input.eventValue !== null && { eventValue: input.eventValue })), (input.impression !== undefined &&\n input.impression !== null && { impression: serializeAws_restJson1Impression(input.impression, context) })), (input.itemId !== undefined && input.itemId !== null && { itemId: input.itemId })), (input.properties !== undefined &&\n input.properties !== null && { properties: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"].fromObject(input.properties) })), (input.recommendationId !== undefined &&\n input.recommendationId !== null && { recommendationId: input.recommendationId })), (input.sentAt !== undefined && input.sentAt !== null && { sentAt: Math.round(input.sentAt.getTime() / 1000) }));\n};\nvar serializeAws_restJson1EventList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1Event(entry, context);\n });\n};\nvar serializeAws_restJson1Impression = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_restJson1Item = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.itemId !== undefined && input.itemId !== null && { itemId: input.itemId })), (input.properties !== undefined &&\n input.properties !== null && { properties: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"].fromObject(input.properties) }));\n};\nvar serializeAws_restJson1ItemList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1Item(entry, context);\n });\n};\nvar serializeAws_restJson1User = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.properties !== undefined &&\n input.properties !== null && { properties: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"].fromObject(input.properties) })), (input.userId !== undefined && input.userId !== null && { userId: input.userId }));\n};\nvar serializeAws_restJson1UserList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1User(entry, context);\n });\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar isSerializableHeaderValue = function (value) {\n return value !== undefined &&\n value !== null &&\n value !== \"\" &&\n (!Object.getOwnPropertyNames(value).includes(\"length\") || value.length != 0) &&\n (!Object.getOwnPropertyNames(value).includes(\"size\") || value.size != 0);\n};\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_restJson1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/protocols/Aws_restJson1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/runtimeConfig.browser.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/runtimeConfig.browser.js ***! \******************************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/dist/es/runtimeConfig.shared.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/dist/es/runtimeConfig.shared.js ***! \*****************************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-personalize-events/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2018-03-22\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Personalize Events\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js ***! \*****************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-personalize-events/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/Pinpoint.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/Pinpoint.js ***! \*******************************************************************/ /*! exports provided: Pinpoint */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Pinpoint\", function() { return Pinpoint; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _PinpointClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./PinpointClient */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/PinpointClient.js\");\n/* harmony import */ var _commands_CreateAppCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CreateAppCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateAppCommand.js\");\n/* harmony import */ var _commands_CreateCampaignCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CreateCampaignCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateCampaignCommand.js\");\n/* harmony import */ var _commands_CreateEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/CreateEmailTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateEmailTemplateCommand.js\");\n/* harmony import */ var _commands_CreateExportJobCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/CreateExportJobCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateExportJobCommand.js\");\n/* harmony import */ var _commands_CreateImportJobCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/CreateImportJobCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateImportJobCommand.js\");\n/* harmony import */ var _commands_CreateJourneyCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/CreateJourneyCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateJourneyCommand.js\");\n/* harmony import */ var _commands_CreatePushTemplateCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/CreatePushTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreatePushTemplateCommand.js\");\n/* harmony import */ var _commands_CreateRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/CreateRecommenderConfigurationCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateRecommenderConfigurationCommand.js\");\n/* harmony import */ var _commands_CreateSegmentCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/CreateSegmentCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSegmentCommand.js\");\n/* harmony import */ var _commands_CreateSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/CreateSmsTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSmsTemplateCommand.js\");\n/* harmony import */ var _commands_CreateVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/CreateVoiceTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateVoiceTemplateCommand.js\");\n/* harmony import */ var _commands_DeleteAdmChannelCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DeleteAdmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAdmChannelCommand.js\");\n/* harmony import */ var _commands_DeleteApnsChannelCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/DeleteApnsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsChannelCommand.js\");\n/* harmony import */ var _commands_DeleteApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DeleteApnsSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsSandboxChannelCommand.js\");\n/* harmony import */ var _commands_DeleteApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/DeleteApnsVoipChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipChannelCommand.js\");\n/* harmony import */ var _commands_DeleteApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DeleteApnsVoipSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipSandboxChannelCommand.js\");\n/* harmony import */ var _commands_DeleteAppCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DeleteAppCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAppCommand.js\");\n/* harmony import */ var _commands_DeleteBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DeleteBaiduChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteBaiduChannelCommand.js\");\n/* harmony import */ var _commands_DeleteCampaignCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DeleteCampaignCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteCampaignCommand.js\");\n/* harmony import */ var _commands_DeleteEmailChannelCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DeleteEmailChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailChannelCommand.js\");\n/* harmony import */ var _commands_DeleteEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DeleteEmailTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailTemplateCommand.js\");\n/* harmony import */ var _commands_DeleteEndpointCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/DeleteEndpointCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEndpointCommand.js\");\n/* harmony import */ var _commands_DeleteEventStreamCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/DeleteEventStreamCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEventStreamCommand.js\");\n/* harmony import */ var _commands_DeleteGcmChannelCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/DeleteGcmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteGcmChannelCommand.js\");\n/* harmony import */ var _commands_DeleteJourneyCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/DeleteJourneyCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteJourneyCommand.js\");\n/* harmony import */ var _commands_DeletePushTemplateCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/DeletePushTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeletePushTemplateCommand.js\");\n/* harmony import */ var _commands_DeleteRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/DeleteRecommenderConfigurationCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteRecommenderConfigurationCommand.js\");\n/* harmony import */ var _commands_DeleteSegmentCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/DeleteSegmentCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSegmentCommand.js\");\n/* harmony import */ var _commands_DeleteSmsChannelCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/DeleteSmsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsChannelCommand.js\");\n/* harmony import */ var _commands_DeleteSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/DeleteSmsTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsTemplateCommand.js\");\n/* harmony import */ var _commands_DeleteUserEndpointsCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/DeleteUserEndpointsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteUserEndpointsCommand.js\");\n/* harmony import */ var _commands_DeleteVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/DeleteVoiceChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceChannelCommand.js\");\n/* harmony import */ var _commands_DeleteVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./commands/DeleteVoiceTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceTemplateCommand.js\");\n/* harmony import */ var _commands_GetAdmChannelCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/GetAdmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAdmChannelCommand.js\");\n/* harmony import */ var _commands_GetApnsChannelCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./commands/GetApnsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsChannelCommand.js\");\n/* harmony import */ var _commands_GetApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/GetApnsSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsSandboxChannelCommand.js\");\n/* harmony import */ var _commands_GetApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/GetApnsVoipChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipChannelCommand.js\");\n/* harmony import */ var _commands_GetApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/GetApnsVoipSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipSandboxChannelCommand.js\");\n/* harmony import */ var _commands_GetAppCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/GetAppCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppCommand.js\");\n/* harmony import */ var _commands_GetApplicationDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/GetApplicationDateRangeKpiCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationDateRangeKpiCommand.js\");\n/* harmony import */ var _commands_GetApplicationSettingsCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/GetApplicationSettingsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationSettingsCommand.js\");\n/* harmony import */ var _commands_GetAppsCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/GetAppsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppsCommand.js\");\n/* harmony import */ var _commands_GetBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/GetBaiduChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetBaiduChannelCommand.js\");\n/* harmony import */ var _commands_GetCampaignActivitiesCommand__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./commands/GetCampaignActivitiesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignActivitiesCommand.js\");\n/* harmony import */ var _commands_GetCampaignCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/GetCampaignCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignCommand.js\");\n/* harmony import */ var _commands_GetCampaignDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./commands/GetCampaignDateRangeKpiCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignDateRangeKpiCommand.js\");\n/* harmony import */ var _commands_GetCampaignVersionCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./commands/GetCampaignVersionCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionCommand.js\");\n/* harmony import */ var _commands_GetCampaignVersionsCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./commands/GetCampaignVersionsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionsCommand.js\");\n/* harmony import */ var _commands_GetCampaignsCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./commands/GetCampaignsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignsCommand.js\");\n/* harmony import */ var _commands_GetChannelsCommand__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./commands/GetChannelsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetChannelsCommand.js\");\n/* harmony import */ var _commands_GetEmailChannelCommand__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./commands/GetEmailChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailChannelCommand.js\");\n/* harmony import */ var _commands_GetEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./commands/GetEmailTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailTemplateCommand.js\");\n/* harmony import */ var _commands_GetEndpointCommand__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./commands/GetEndpointCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEndpointCommand.js\");\n/* harmony import */ var _commands_GetEventStreamCommand__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./commands/GetEventStreamCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEventStreamCommand.js\");\n/* harmony import */ var _commands_GetExportJobCommand__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./commands/GetExportJobCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobCommand.js\");\n/* harmony import */ var _commands_GetExportJobsCommand__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./commands/GetExportJobsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobsCommand.js\");\n/* harmony import */ var _commands_GetGcmChannelCommand__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./commands/GetGcmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetGcmChannelCommand.js\");\n/* harmony import */ var _commands_GetImportJobCommand__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./commands/GetImportJobCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobCommand.js\");\n/* harmony import */ var _commands_GetImportJobsCommand__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./commands/GetImportJobsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobsCommand.js\");\n/* harmony import */ var _commands_GetJourneyCommand__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./commands/GetJourneyCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyCommand.js\");\n/* harmony import */ var _commands_GetJourneyDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./commands/GetJourneyDateRangeKpiCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyDateRangeKpiCommand.js\");\n/* harmony import */ var _commands_GetJourneyExecutionActivityMetricsCommand__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./commands/GetJourneyExecutionActivityMetricsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionActivityMetricsCommand.js\");\n/* harmony import */ var _commands_GetJourneyExecutionMetricsCommand__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./commands/GetJourneyExecutionMetricsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionMetricsCommand.js\");\n/* harmony import */ var _commands_GetPushTemplateCommand__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./commands/GetPushTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetPushTemplateCommand.js\");\n/* harmony import */ var _commands_GetRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./commands/GetRecommenderConfigurationCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationCommand.js\");\n/* harmony import */ var _commands_GetRecommenderConfigurationsCommand__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./commands/GetRecommenderConfigurationsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationsCommand.js\");\n/* harmony import */ var _commands_GetSegmentCommand__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./commands/GetSegmentCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentCommand.js\");\n/* harmony import */ var _commands_GetSegmentExportJobsCommand__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./commands/GetSegmentExportJobsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentExportJobsCommand.js\");\n/* harmony import */ var _commands_GetSegmentImportJobsCommand__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./commands/GetSegmentImportJobsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentImportJobsCommand.js\");\n/* harmony import */ var _commands_GetSegmentVersionCommand__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./commands/GetSegmentVersionCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionCommand.js\");\n/* harmony import */ var _commands_GetSegmentVersionsCommand__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./commands/GetSegmentVersionsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionsCommand.js\");\n/* harmony import */ var _commands_GetSegmentsCommand__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./commands/GetSegmentsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentsCommand.js\");\n/* harmony import */ var _commands_GetSmsChannelCommand__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./commands/GetSmsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsChannelCommand.js\");\n/* harmony import */ var _commands_GetSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./commands/GetSmsTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsTemplateCommand.js\");\n/* harmony import */ var _commands_GetUserEndpointsCommand__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./commands/GetUserEndpointsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetUserEndpointsCommand.js\");\n/* harmony import */ var _commands_GetVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./commands/GetVoiceChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceChannelCommand.js\");\n/* harmony import */ var _commands_GetVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./commands/GetVoiceTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceTemplateCommand.js\");\n/* harmony import */ var _commands_ListJourneysCommand__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./commands/ListJourneysCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListJourneysCommand.js\");\n/* harmony import */ var _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./commands/ListTagsForResourceCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTagsForResourceCommand.js\");\n/* harmony import */ var _commands_ListTemplateVersionsCommand__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./commands/ListTemplateVersionsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplateVersionsCommand.js\");\n/* harmony import */ var _commands_ListTemplatesCommand__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./commands/ListTemplatesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplatesCommand.js\");\n/* harmony import */ var _commands_PhoneNumberValidateCommand__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./commands/PhoneNumberValidateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PhoneNumberValidateCommand.js\");\n/* harmony import */ var _commands_PutEventStreamCommand__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./commands/PutEventStreamCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventStreamCommand.js\");\n/* harmony import */ var _commands_PutEventsCommand__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./commands/PutEventsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventsCommand.js\");\n/* harmony import */ var _commands_RemoveAttributesCommand__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./commands/RemoveAttributesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/RemoveAttributesCommand.js\");\n/* harmony import */ var _commands_SendMessagesCommand__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./commands/SendMessagesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendMessagesCommand.js\");\n/* harmony import */ var _commands_SendUsersMessagesCommand__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./commands/SendUsersMessagesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendUsersMessagesCommand.js\");\n/* harmony import */ var _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./commands/TagResourceCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/TagResourceCommand.js\");\n/* harmony import */ var _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./commands/UntagResourceCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UntagResourceCommand.js\");\n/* harmony import */ var _commands_UpdateAdmChannelCommand__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./commands/UpdateAdmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateAdmChannelCommand.js\");\n/* harmony import */ var _commands_UpdateApnsChannelCommand__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./commands/UpdateApnsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsChannelCommand.js\");\n/* harmony import */ var _commands_UpdateApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./commands/UpdateApnsSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsSandboxChannelCommand.js\");\n/* harmony import */ var _commands_UpdateApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./commands/UpdateApnsVoipChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipChannelCommand.js\");\n/* harmony import */ var _commands_UpdateApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./commands/UpdateApnsVoipSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipSandboxChannelCommand.js\");\n/* harmony import */ var _commands_UpdateApplicationSettingsCommand__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./commands/UpdateApplicationSettingsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApplicationSettingsCommand.js\");\n/* harmony import */ var _commands_UpdateBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./commands/UpdateBaiduChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateBaiduChannelCommand.js\");\n/* harmony import */ var _commands_UpdateCampaignCommand__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./commands/UpdateCampaignCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateCampaignCommand.js\");\n/* harmony import */ var _commands_UpdateEmailChannelCommand__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./commands/UpdateEmailChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailChannelCommand.js\");\n/* harmony import */ var _commands_UpdateEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./commands/UpdateEmailTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailTemplateCommand.js\");\n/* harmony import */ var _commands_UpdateEndpointCommand__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./commands/UpdateEndpointCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointCommand.js\");\n/* harmony import */ var _commands_UpdateEndpointsBatchCommand__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./commands/UpdateEndpointsBatchCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointsBatchCommand.js\");\n/* harmony import */ var _commands_UpdateGcmChannelCommand__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./commands/UpdateGcmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateGcmChannelCommand.js\");\n/* harmony import */ var _commands_UpdateJourneyCommand__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./commands/UpdateJourneyCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyCommand.js\");\n/* harmony import */ var _commands_UpdateJourneyStateCommand__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./commands/UpdateJourneyStateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyStateCommand.js\");\n/* harmony import */ var _commands_UpdatePushTemplateCommand__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./commands/UpdatePushTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdatePushTemplateCommand.js\");\n/* harmony import */ var _commands_UpdateRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./commands/UpdateRecommenderConfigurationCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateRecommenderConfigurationCommand.js\");\n/* harmony import */ var _commands_UpdateSegmentCommand__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./commands/UpdateSegmentCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSegmentCommand.js\");\n/* harmony import */ var _commands_UpdateSmsChannelCommand__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./commands/UpdateSmsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsChannelCommand.js\");\n/* harmony import */ var _commands_UpdateSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./commands/UpdateSmsTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsTemplateCommand.js\");\n/* harmony import */ var _commands_UpdateTemplateActiveVersionCommand__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./commands/UpdateTemplateActiveVersionCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateTemplateActiveVersionCommand.js\");\n/* harmony import */ var _commands_UpdateVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./commands/UpdateVoiceChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceChannelCommand.js\");\n/* harmony import */ var _commands_UpdateVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./commands/UpdateVoiceTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceTemplateCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n *

Doc Engage API - Amazon Pinpoint API

\n */\nvar Pinpoint = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(Pinpoint, _super);\n function Pinpoint() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Pinpoint.prototype.createApp = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateAppCommand__WEBPACK_IMPORTED_MODULE_2__[\"CreateAppCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createCampaign = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateCampaignCommand__WEBPACK_IMPORTED_MODULE_3__[\"CreateCampaignCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createEmailTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_4__[\"CreateEmailTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createExportJob = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateExportJobCommand__WEBPACK_IMPORTED_MODULE_5__[\"CreateExportJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createImportJob = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateImportJobCommand__WEBPACK_IMPORTED_MODULE_6__[\"CreateImportJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createJourney = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateJourneyCommand__WEBPACK_IMPORTED_MODULE_7__[\"CreateJourneyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createPushTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_CreatePushTemplateCommand__WEBPACK_IMPORTED_MODULE_8__[\"CreatePushTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createRecommenderConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_9__[\"CreateRecommenderConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createSegment = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateSegmentCommand__WEBPACK_IMPORTED_MODULE_10__[\"CreateSegmentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createSmsTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_11__[\"CreateSmsTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.createVoiceTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_12__[\"CreateVoiceTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteAdmChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteAdmChannelCommand__WEBPACK_IMPORTED_MODULE_13__[\"DeleteAdmChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteApnsChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteApnsChannelCommand__WEBPACK_IMPORTED_MODULE_14__[\"DeleteApnsChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteApnsSandboxChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_15__[\"DeleteApnsSandboxChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteApnsVoipChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_16__[\"DeleteApnsVoipChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteApnsVoipSandboxChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_17__[\"DeleteApnsVoipSandboxChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteApp = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteAppCommand__WEBPACK_IMPORTED_MODULE_18__[\"DeleteAppCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteBaiduChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_19__[\"DeleteBaiduChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteCampaign = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteCampaignCommand__WEBPACK_IMPORTED_MODULE_20__[\"DeleteCampaignCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteEmailChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteEmailChannelCommand__WEBPACK_IMPORTED_MODULE_21__[\"DeleteEmailChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteEmailTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_22__[\"DeleteEmailTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteEndpoint = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteEndpointCommand__WEBPACK_IMPORTED_MODULE_23__[\"DeleteEndpointCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteEventStream = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteEventStreamCommand__WEBPACK_IMPORTED_MODULE_24__[\"DeleteEventStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteGcmChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteGcmChannelCommand__WEBPACK_IMPORTED_MODULE_25__[\"DeleteGcmChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteJourney = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteJourneyCommand__WEBPACK_IMPORTED_MODULE_26__[\"DeleteJourneyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deletePushTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_DeletePushTemplateCommand__WEBPACK_IMPORTED_MODULE_27__[\"DeletePushTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteRecommenderConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_28__[\"DeleteRecommenderConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteSegment = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteSegmentCommand__WEBPACK_IMPORTED_MODULE_29__[\"DeleteSegmentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteSmsChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteSmsChannelCommand__WEBPACK_IMPORTED_MODULE_30__[\"DeleteSmsChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteSmsTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_31__[\"DeleteSmsTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteUserEndpoints = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteUserEndpointsCommand__WEBPACK_IMPORTED_MODULE_32__[\"DeleteUserEndpointsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteVoiceChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_33__[\"DeleteVoiceChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.deleteVoiceTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_34__[\"DeleteVoiceTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getAdmChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetAdmChannelCommand__WEBPACK_IMPORTED_MODULE_35__[\"GetAdmChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getApnsChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetApnsChannelCommand__WEBPACK_IMPORTED_MODULE_36__[\"GetApnsChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getApnsSandboxChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_37__[\"GetApnsSandboxChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getApnsVoipChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_38__[\"GetApnsVoipChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getApnsVoipSandboxChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_39__[\"GetApnsVoipSandboxChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getApp = function (args, optionsOrCb, cb) {\n var command = new _commands_GetAppCommand__WEBPACK_IMPORTED_MODULE_40__[\"GetAppCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getApplicationDateRangeKpi = function (args, optionsOrCb, cb) {\n var command = new _commands_GetApplicationDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_41__[\"GetApplicationDateRangeKpiCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getApplicationSettings = function (args, optionsOrCb, cb) {\n var command = new _commands_GetApplicationSettingsCommand__WEBPACK_IMPORTED_MODULE_42__[\"GetApplicationSettingsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getApps = function (args, optionsOrCb, cb) {\n var command = new _commands_GetAppsCommand__WEBPACK_IMPORTED_MODULE_43__[\"GetAppsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getBaiduChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_44__[\"GetBaiduChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getCampaign = function (args, optionsOrCb, cb) {\n var command = new _commands_GetCampaignCommand__WEBPACK_IMPORTED_MODULE_46__[\"GetCampaignCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getCampaignActivities = function (args, optionsOrCb, cb) {\n var command = new _commands_GetCampaignActivitiesCommand__WEBPACK_IMPORTED_MODULE_45__[\"GetCampaignActivitiesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getCampaignDateRangeKpi = function (args, optionsOrCb, cb) {\n var command = new _commands_GetCampaignDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_47__[\"GetCampaignDateRangeKpiCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getCampaigns = function (args, optionsOrCb, cb) {\n var command = new _commands_GetCampaignsCommand__WEBPACK_IMPORTED_MODULE_50__[\"GetCampaignsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getCampaignVersion = function (args, optionsOrCb, cb) {\n var command = new _commands_GetCampaignVersionCommand__WEBPACK_IMPORTED_MODULE_48__[\"GetCampaignVersionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getCampaignVersions = function (args, optionsOrCb, cb) {\n var command = new _commands_GetCampaignVersionsCommand__WEBPACK_IMPORTED_MODULE_49__[\"GetCampaignVersionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getChannels = function (args, optionsOrCb, cb) {\n var command = new _commands_GetChannelsCommand__WEBPACK_IMPORTED_MODULE_51__[\"GetChannelsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getEmailChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetEmailChannelCommand__WEBPACK_IMPORTED_MODULE_52__[\"GetEmailChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getEmailTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_GetEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_53__[\"GetEmailTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getEndpoint = function (args, optionsOrCb, cb) {\n var command = new _commands_GetEndpointCommand__WEBPACK_IMPORTED_MODULE_54__[\"GetEndpointCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getEventStream = function (args, optionsOrCb, cb) {\n var command = new _commands_GetEventStreamCommand__WEBPACK_IMPORTED_MODULE_55__[\"GetEventStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getExportJob = function (args, optionsOrCb, cb) {\n var command = new _commands_GetExportJobCommand__WEBPACK_IMPORTED_MODULE_56__[\"GetExportJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getExportJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_GetExportJobsCommand__WEBPACK_IMPORTED_MODULE_57__[\"GetExportJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getGcmChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetGcmChannelCommand__WEBPACK_IMPORTED_MODULE_58__[\"GetGcmChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getImportJob = function (args, optionsOrCb, cb) {\n var command = new _commands_GetImportJobCommand__WEBPACK_IMPORTED_MODULE_59__[\"GetImportJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getImportJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_GetImportJobsCommand__WEBPACK_IMPORTED_MODULE_60__[\"GetImportJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getJourney = function (args, optionsOrCb, cb) {\n var command = new _commands_GetJourneyCommand__WEBPACK_IMPORTED_MODULE_61__[\"GetJourneyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getJourneyDateRangeKpi = function (args, optionsOrCb, cb) {\n var command = new _commands_GetJourneyDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_62__[\"GetJourneyDateRangeKpiCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getJourneyExecutionActivityMetrics = function (args, optionsOrCb, cb) {\n var command = new _commands_GetJourneyExecutionActivityMetricsCommand__WEBPACK_IMPORTED_MODULE_63__[\"GetJourneyExecutionActivityMetricsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getJourneyExecutionMetrics = function (args, optionsOrCb, cb) {\n var command = new _commands_GetJourneyExecutionMetricsCommand__WEBPACK_IMPORTED_MODULE_64__[\"GetJourneyExecutionMetricsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getPushTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_GetPushTemplateCommand__WEBPACK_IMPORTED_MODULE_65__[\"GetPushTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getRecommenderConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_66__[\"GetRecommenderConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getRecommenderConfigurations = function (args, optionsOrCb, cb) {\n var command = new _commands_GetRecommenderConfigurationsCommand__WEBPACK_IMPORTED_MODULE_67__[\"GetRecommenderConfigurationsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getSegment = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSegmentCommand__WEBPACK_IMPORTED_MODULE_68__[\"GetSegmentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getSegmentExportJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSegmentExportJobsCommand__WEBPACK_IMPORTED_MODULE_69__[\"GetSegmentExportJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getSegmentImportJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSegmentImportJobsCommand__WEBPACK_IMPORTED_MODULE_70__[\"GetSegmentImportJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getSegments = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSegmentsCommand__WEBPACK_IMPORTED_MODULE_73__[\"GetSegmentsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getSegmentVersion = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSegmentVersionCommand__WEBPACK_IMPORTED_MODULE_71__[\"GetSegmentVersionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getSegmentVersions = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSegmentVersionsCommand__WEBPACK_IMPORTED_MODULE_72__[\"GetSegmentVersionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getSmsChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSmsChannelCommand__WEBPACK_IMPORTED_MODULE_74__[\"GetSmsChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getSmsTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_75__[\"GetSmsTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getUserEndpoints = function (args, optionsOrCb, cb) {\n var command = new _commands_GetUserEndpointsCommand__WEBPACK_IMPORTED_MODULE_76__[\"GetUserEndpointsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getVoiceChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_GetVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_77__[\"GetVoiceChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.getVoiceTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_GetVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_78__[\"GetVoiceTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.listJourneys = function (args, optionsOrCb, cb) {\n var command = new _commands_ListJourneysCommand__WEBPACK_IMPORTED_MODULE_79__[\"ListJourneysCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.listTagsForResource = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_80__[\"ListTagsForResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.listTemplates = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTemplatesCommand__WEBPACK_IMPORTED_MODULE_82__[\"ListTemplatesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.listTemplateVersions = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTemplateVersionsCommand__WEBPACK_IMPORTED_MODULE_81__[\"ListTemplateVersionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.phoneNumberValidate = function (args, optionsOrCb, cb) {\n var command = new _commands_PhoneNumberValidateCommand__WEBPACK_IMPORTED_MODULE_83__[\"PhoneNumberValidateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.putEvents = function (args, optionsOrCb, cb) {\n var command = new _commands_PutEventsCommand__WEBPACK_IMPORTED_MODULE_85__[\"PutEventsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.putEventStream = function (args, optionsOrCb, cb) {\n var command = new _commands_PutEventStreamCommand__WEBPACK_IMPORTED_MODULE_84__[\"PutEventStreamCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.removeAttributes = function (args, optionsOrCb, cb) {\n var command = new _commands_RemoveAttributesCommand__WEBPACK_IMPORTED_MODULE_86__[\"RemoveAttributesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.sendMessages = function (args, optionsOrCb, cb) {\n var command = new _commands_SendMessagesCommand__WEBPACK_IMPORTED_MODULE_87__[\"SendMessagesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.sendUsersMessages = function (args, optionsOrCb, cb) {\n var command = new _commands_SendUsersMessagesCommand__WEBPACK_IMPORTED_MODULE_88__[\"SendUsersMessagesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.tagResource = function (args, optionsOrCb, cb) {\n var command = new _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_89__[\"TagResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.untagResource = function (args, optionsOrCb, cb) {\n var command = new _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_90__[\"UntagResourceCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateAdmChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateAdmChannelCommand__WEBPACK_IMPORTED_MODULE_91__[\"UpdateAdmChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateApnsChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateApnsChannelCommand__WEBPACK_IMPORTED_MODULE_92__[\"UpdateApnsChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateApnsSandboxChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_93__[\"UpdateApnsSandboxChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateApnsVoipChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_94__[\"UpdateApnsVoipChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateApnsVoipSandboxChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_95__[\"UpdateApnsVoipSandboxChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateApplicationSettings = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateApplicationSettingsCommand__WEBPACK_IMPORTED_MODULE_96__[\"UpdateApplicationSettingsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateBaiduChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_97__[\"UpdateBaiduChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateCampaign = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateCampaignCommand__WEBPACK_IMPORTED_MODULE_98__[\"UpdateCampaignCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateEmailChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateEmailChannelCommand__WEBPACK_IMPORTED_MODULE_99__[\"UpdateEmailChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateEmailTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_100__[\"UpdateEmailTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateEndpoint = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateEndpointCommand__WEBPACK_IMPORTED_MODULE_101__[\"UpdateEndpointCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateEndpointsBatch = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateEndpointsBatchCommand__WEBPACK_IMPORTED_MODULE_102__[\"UpdateEndpointsBatchCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateGcmChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateGcmChannelCommand__WEBPACK_IMPORTED_MODULE_103__[\"UpdateGcmChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateJourney = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateJourneyCommand__WEBPACK_IMPORTED_MODULE_104__[\"UpdateJourneyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateJourneyState = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateJourneyStateCommand__WEBPACK_IMPORTED_MODULE_105__[\"UpdateJourneyStateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updatePushTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdatePushTemplateCommand__WEBPACK_IMPORTED_MODULE_106__[\"UpdatePushTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateRecommenderConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_107__[\"UpdateRecommenderConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateSegment = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateSegmentCommand__WEBPACK_IMPORTED_MODULE_108__[\"UpdateSegmentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateSmsChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateSmsChannelCommand__WEBPACK_IMPORTED_MODULE_109__[\"UpdateSmsChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateSmsTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_110__[\"UpdateSmsTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateTemplateActiveVersion = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateTemplateActiveVersionCommand__WEBPACK_IMPORTED_MODULE_111__[\"UpdateTemplateActiveVersionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateVoiceChannel = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_112__[\"UpdateVoiceChannelCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Pinpoint.prototype.updateVoiceTemplate = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_113__[\"UpdateVoiceTemplateCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return Pinpoint;\n}(_PinpointClient__WEBPACK_IMPORTED_MODULE_1__[\"PinpointClient\"]));\n\n//# sourceMappingURL=Pinpoint.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/Pinpoint.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/PinpointClient.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/PinpointClient.js ***! \*************************************************************************/ /*! exports provided: PinpointClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PinpointClient\", function() { return PinpointClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n *

Doc Engage API - Amazon Pinpoint API

\n */\nvar PinpointClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PinpointClient, _super);\n function PinpointClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n PinpointClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return PinpointClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=PinpointClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/PinpointClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateAppCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateAppCommand.js ***! \************************************************************************************/ /*! exports provided: CreateAppCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateAppCommand\", function() { return CreateAppCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates an application.

\n */\nvar CreateAppCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateAppCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateAppCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateAppCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateAppCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateAppRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateAppResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateAppCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateAppCommand\"])(input, context);\n };\n CreateAppCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateAppCommand\"])(output, context);\n };\n return CreateAppCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateAppCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateAppCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateCampaignCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateCampaignCommand.js ***! \*****************************************************************************************/ /*! exports provided: CreateCampaignCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateCampaignCommand\", function() { return CreateCampaignCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new campaign for an application or updates the settings of an existing campaign for an application.

\n */\nvar CreateCampaignCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateCampaignCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateCampaignCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateCampaignCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateCampaignCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateCampaignRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateCampaignResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateCampaignCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateCampaignCommand\"])(input, context);\n };\n CreateCampaignCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateCampaignCommand\"])(output, context);\n };\n return CreateCampaignCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateCampaignCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateCampaignCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateEmailTemplateCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateEmailTemplateCommand.js ***! \**********************************************************************************************/ /*! exports provided: CreateEmailTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateEmailTemplateCommand\", function() { return CreateEmailTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a message template for messages that are sent through the email channel.

\n */\nvar CreateEmailTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateEmailTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateEmailTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateEmailTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateEmailTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateEmailTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateEmailTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateEmailTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateEmailTemplateCommand\"])(input, context);\n };\n CreateEmailTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateEmailTemplateCommand\"])(output, context);\n };\n return CreateEmailTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateEmailTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateEmailTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateExportJobCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateExportJobCommand.js ***! \******************************************************************************************/ /*! exports provided: CreateExportJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateExportJobCommand\", function() { return CreateExportJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates an export job for an application.

\n */\nvar CreateExportJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateExportJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateExportJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateExportJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateExportJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateExportJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateExportJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateExportJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateExportJobCommand\"])(input, context);\n };\n CreateExportJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateExportJobCommand\"])(output, context);\n };\n return CreateExportJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateExportJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateExportJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateImportJobCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateImportJobCommand.js ***! \******************************************************************************************/ /*! exports provided: CreateImportJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateImportJobCommand\", function() { return CreateImportJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates an import job for an application.

\n */\nvar CreateImportJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateImportJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateImportJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateImportJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateImportJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateImportJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateImportJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateImportJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateImportJobCommand\"])(input, context);\n };\n CreateImportJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateImportJobCommand\"])(output, context);\n };\n return CreateImportJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateImportJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateImportJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateJourneyCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateJourneyCommand.js ***! \****************************************************************************************/ /*! exports provided: CreateJourneyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateJourneyCommand\", function() { return CreateJourneyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a journey for an application.

\n */\nvar CreateJourneyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateJourneyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateJourneyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateJourneyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateJourneyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateJourneyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateJourneyResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateJourneyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateJourneyCommand\"])(input, context);\n };\n CreateJourneyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateJourneyCommand\"])(output, context);\n };\n return CreateJourneyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateJourneyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateJourneyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreatePushTemplateCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreatePushTemplateCommand.js ***! \*********************************************************************************************/ /*! exports provided: CreatePushTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreatePushTemplateCommand\", function() { return CreatePushTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a message template for messages that are sent through a push notification channel.

\n */\nvar CreatePushTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreatePushTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreatePushTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreatePushTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreatePushTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreatePushTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreatePushTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreatePushTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreatePushTemplateCommand\"])(input, context);\n };\n CreatePushTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreatePushTemplateCommand\"])(output, context);\n };\n return CreatePushTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreatePushTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreatePushTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateRecommenderConfigurationCommand.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateRecommenderConfigurationCommand.js ***! \*********************************************************************************************************/ /*! exports provided: CreateRecommenderConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationCommand\", function() { return CreateRecommenderConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates an Amazon Pinpoint configuration for a recommender model.

\n */\nvar CreateRecommenderConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateRecommenderConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateRecommenderConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateRecommenderConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateRecommenderConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateRecommenderConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateRecommenderConfigurationResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateRecommenderConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateRecommenderConfigurationCommand\"])(input, context);\n };\n CreateRecommenderConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateRecommenderConfigurationCommand\"])(output, context);\n };\n return CreateRecommenderConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateRecommenderConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateRecommenderConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSegmentCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSegmentCommand.js ***! \****************************************************************************************/ /*! exports provided: CreateSegmentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateSegmentCommand\", function() { return CreateSegmentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new segment for an application or updates the configuration, dimension, and other settings for an existing segment that's associated with an application.

\n */\nvar CreateSegmentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateSegmentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateSegmentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateSegmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateSegmentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateSegmentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateSegmentResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateSegmentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateSegmentCommand\"])(input, context);\n };\n CreateSegmentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateSegmentCommand\"])(output, context);\n };\n return CreateSegmentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateSegmentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSegmentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSmsTemplateCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSmsTemplateCommand.js ***! \********************************************************************************************/ /*! exports provided: CreateSmsTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateSmsTemplateCommand\", function() { return CreateSmsTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a message template for messages that are sent through the SMS channel.

\n */\nvar CreateSmsTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateSmsTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateSmsTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateSmsTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateSmsTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateSmsTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateSmsTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateSmsTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateSmsTemplateCommand\"])(input, context);\n };\n CreateSmsTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateSmsTemplateCommand\"])(output, context);\n };\n return CreateSmsTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateSmsTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSmsTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateVoiceTemplateCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateVoiceTemplateCommand.js ***! \**********************************************************************************************/ /*! exports provided: CreateVoiceTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateVoiceTemplateCommand\", function() { return CreateVoiceTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a message template for messages that are sent through the voice channel.

\n */\nvar CreateVoiceTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateVoiceTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateVoiceTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateVoiceTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"CreateVoiceTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateVoiceTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateVoiceTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateVoiceTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1CreateVoiceTemplateCommand\"])(input, context);\n };\n CreateVoiceTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1CreateVoiceTemplateCommand\"])(output, context);\n };\n return CreateVoiceTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateVoiceTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateVoiceTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAdmChannelCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAdmChannelCommand.js ***! \*******************************************************************************************/ /*! exports provided: DeleteAdmChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteAdmChannelCommand\", function() { return DeleteAdmChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the ADM channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteAdmChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteAdmChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteAdmChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteAdmChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteAdmChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteAdmChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteAdmChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteAdmChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteAdmChannelCommand\"])(input, context);\n };\n DeleteAdmChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteAdmChannelCommand\"])(output, context);\n };\n return DeleteAdmChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteAdmChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAdmChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsChannelCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsChannelCommand.js ***! \********************************************************************************************/ /*! exports provided: DeleteApnsChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsChannelCommand\", function() { return DeleteApnsChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the APNs channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteApnsChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteApnsChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteApnsChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteApnsChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteApnsChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteApnsChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteApnsChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteApnsChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteApnsChannelCommand\"])(input, context);\n };\n DeleteApnsChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteApnsChannelCommand\"])(output, context);\n };\n return DeleteApnsChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteApnsChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsSandboxChannelCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsSandboxChannelCommand.js ***! \***************************************************************************************************/ /*! exports provided: DeleteApnsSandboxChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsSandboxChannelCommand\", function() { return DeleteApnsSandboxChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the APNs sandbox channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteApnsSandboxChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteApnsSandboxChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteApnsSandboxChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteApnsSandboxChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteApnsSandboxChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteApnsSandboxChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteApnsSandboxChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteApnsSandboxChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteApnsSandboxChannelCommand\"])(input, context);\n };\n DeleteApnsSandboxChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteApnsSandboxChannelCommand\"])(output, context);\n };\n return DeleteApnsSandboxChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteApnsSandboxChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsSandboxChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipChannelCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipChannelCommand.js ***! \************************************************************************************************/ /*! exports provided: DeleteApnsVoipChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipChannelCommand\", function() { return DeleteApnsVoipChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the APNs VoIP channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteApnsVoipChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteApnsVoipChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteApnsVoipChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteApnsVoipChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteApnsVoipChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteApnsVoipChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteApnsVoipChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteApnsVoipChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteApnsVoipChannelCommand\"])(input, context);\n };\n DeleteApnsVoipChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteApnsVoipChannelCommand\"])(output, context);\n };\n return DeleteApnsVoipChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteApnsVoipChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipSandboxChannelCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipSandboxChannelCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DeleteApnsVoipSandboxChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipSandboxChannelCommand\", function() { return DeleteApnsVoipSandboxChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the APNs VoIP sandbox channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteApnsVoipSandboxChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteApnsVoipSandboxChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteApnsVoipSandboxChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteApnsVoipSandboxChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteApnsVoipSandboxChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteApnsVoipSandboxChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteApnsVoipSandboxChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteApnsVoipSandboxChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteApnsVoipSandboxChannelCommand\"])(input, context);\n };\n DeleteApnsVoipSandboxChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteApnsVoipSandboxChannelCommand\"])(output, context);\n };\n return DeleteApnsVoipSandboxChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteApnsVoipSandboxChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipSandboxChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAppCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAppCommand.js ***! \************************************************************************************/ /*! exports provided: DeleteAppCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteAppCommand\", function() { return DeleteAppCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes an application.

\n */\nvar DeleteAppCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteAppCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteAppCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteAppCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteAppCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteAppRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteAppResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteAppCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteAppCommand\"])(input, context);\n };\n DeleteAppCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteAppCommand\"])(output, context);\n };\n return DeleteAppCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteAppCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAppCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteBaiduChannelCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteBaiduChannelCommand.js ***! \*********************************************************************************************/ /*! exports provided: DeleteBaiduChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBaiduChannelCommand\", function() { return DeleteBaiduChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the Baidu channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteBaiduChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBaiduChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBaiduChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBaiduChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteBaiduChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBaiduChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBaiduChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBaiduChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteBaiduChannelCommand\"])(input, context);\n };\n DeleteBaiduChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteBaiduChannelCommand\"])(output, context);\n };\n return DeleteBaiduChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBaiduChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteBaiduChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteCampaignCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteCampaignCommand.js ***! \*****************************************************************************************/ /*! exports provided: DeleteCampaignCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteCampaignCommand\", function() { return DeleteCampaignCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a campaign from an application.

\n */\nvar DeleteCampaignCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteCampaignCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteCampaignCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteCampaignCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteCampaignCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteCampaignRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteCampaignResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteCampaignCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteCampaignCommand\"])(input, context);\n };\n DeleteCampaignCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteCampaignCommand\"])(output, context);\n };\n return DeleteCampaignCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteCampaignCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteCampaignCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailChannelCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailChannelCommand.js ***! \*********************************************************************************************/ /*! exports provided: DeleteEmailChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailChannelCommand\", function() { return DeleteEmailChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the email channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteEmailChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteEmailChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteEmailChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteEmailChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteEmailChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEmailChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEmailChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteEmailChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteEmailChannelCommand\"])(input, context);\n };\n DeleteEmailChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteEmailChannelCommand\"])(output, context);\n };\n return DeleteEmailChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteEmailChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailTemplateCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailTemplateCommand.js ***! \**********************************************************************************************/ /*! exports provided: DeleteEmailTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailTemplateCommand\", function() { return DeleteEmailTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a message template for messages that were sent through the email channel.

\n */\nvar DeleteEmailTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteEmailTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteEmailTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteEmailTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteEmailTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEmailTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEmailTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteEmailTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteEmailTemplateCommand\"])(input, context);\n };\n DeleteEmailTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteEmailTemplateCommand\"])(output, context);\n };\n return DeleteEmailTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteEmailTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEndpointCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEndpointCommand.js ***! \*****************************************************************************************/ /*! exports provided: DeleteEndpointCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointCommand\", function() { return DeleteEndpointCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes an endpoint from an application.

\n */\nvar DeleteEndpointCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteEndpointCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteEndpointCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteEndpointCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteEndpointCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEndpointRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEndpointResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteEndpointCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteEndpointCommand\"])(input, context);\n };\n DeleteEndpointCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteEndpointCommand\"])(output, context);\n };\n return DeleteEndpointCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteEndpointCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEndpointCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEventStreamCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEventStreamCommand.js ***! \********************************************************************************************/ /*! exports provided: DeleteEventStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEventStreamCommand\", function() { return DeleteEventStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the event stream for an application.

\n */\nvar DeleteEventStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteEventStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteEventStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteEventStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteEventStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEventStreamRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteEventStreamResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteEventStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteEventStreamCommand\"])(input, context);\n };\n DeleteEventStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteEventStreamCommand\"])(output, context);\n };\n return DeleteEventStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteEventStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEventStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteGcmChannelCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteGcmChannelCommand.js ***! \*******************************************************************************************/ /*! exports provided: DeleteGcmChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteGcmChannelCommand\", function() { return DeleteGcmChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the GCM channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteGcmChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteGcmChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteGcmChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteGcmChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteGcmChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteGcmChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteGcmChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteGcmChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteGcmChannelCommand\"])(input, context);\n };\n DeleteGcmChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteGcmChannelCommand\"])(output, context);\n };\n return DeleteGcmChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteGcmChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteGcmChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteJourneyCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteJourneyCommand.js ***! \****************************************************************************************/ /*! exports provided: DeleteJourneyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteJourneyCommand\", function() { return DeleteJourneyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a journey from an application.

\n */\nvar DeleteJourneyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteJourneyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteJourneyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteJourneyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteJourneyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteJourneyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteJourneyResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteJourneyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteJourneyCommand\"])(input, context);\n };\n DeleteJourneyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteJourneyCommand\"])(output, context);\n };\n return DeleteJourneyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteJourneyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteJourneyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeletePushTemplateCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeletePushTemplateCommand.js ***! \*********************************************************************************************/ /*! exports provided: DeletePushTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeletePushTemplateCommand\", function() { return DeletePushTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a message template for messages that were sent through a push notification channel.

\n */\nvar DeletePushTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeletePushTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeletePushTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeletePushTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeletePushTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeletePushTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeletePushTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeletePushTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeletePushTemplateCommand\"])(input, context);\n };\n DeletePushTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeletePushTemplateCommand\"])(output, context);\n };\n return DeletePushTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeletePushTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeletePushTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteRecommenderConfigurationCommand.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteRecommenderConfigurationCommand.js ***! \*********************************************************************************************************/ /*! exports provided: DeleteRecommenderConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteRecommenderConfigurationCommand\", function() { return DeleteRecommenderConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes an Amazon Pinpoint configuration for a recommender model.

\n */\nvar DeleteRecommenderConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteRecommenderConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteRecommenderConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteRecommenderConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteRecommenderConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteRecommenderConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteRecommenderConfigurationResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteRecommenderConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteRecommenderConfigurationCommand\"])(input, context);\n };\n DeleteRecommenderConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteRecommenderConfigurationCommand\"])(output, context);\n };\n return DeleteRecommenderConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteRecommenderConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteRecommenderConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSegmentCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSegmentCommand.js ***! \****************************************************************************************/ /*! exports provided: DeleteSegmentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSegmentCommand\", function() { return DeleteSegmentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a segment from an application.

\n */\nvar DeleteSegmentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteSegmentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteSegmentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteSegmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteSegmentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteSegmentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteSegmentResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteSegmentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteSegmentCommand\"])(input, context);\n };\n DeleteSegmentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteSegmentCommand\"])(output, context);\n };\n return DeleteSegmentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteSegmentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSegmentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsChannelCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsChannelCommand.js ***! \*******************************************************************************************/ /*! exports provided: DeleteSmsChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsChannelCommand\", function() { return DeleteSmsChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the SMS channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteSmsChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteSmsChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteSmsChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteSmsChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteSmsChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteSmsChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteSmsChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteSmsChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteSmsChannelCommand\"])(input, context);\n };\n DeleteSmsChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteSmsChannelCommand\"])(output, context);\n };\n return DeleteSmsChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteSmsChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsTemplateCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsTemplateCommand.js ***! \********************************************************************************************/ /*! exports provided: DeleteSmsTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsTemplateCommand\", function() { return DeleteSmsTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a message template for messages that were sent through the SMS channel.

\n */\nvar DeleteSmsTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteSmsTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteSmsTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteSmsTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteSmsTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteSmsTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteSmsTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteSmsTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteSmsTemplateCommand\"])(input, context);\n };\n DeleteSmsTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteSmsTemplateCommand\"])(output, context);\n };\n return DeleteSmsTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteSmsTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteUserEndpointsCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteUserEndpointsCommand.js ***! \**********************************************************************************************/ /*! exports provided: DeleteUserEndpointsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteUserEndpointsCommand\", function() { return DeleteUserEndpointsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes all the endpoints that are associated with a specific user ID.

\n */\nvar DeleteUserEndpointsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteUserEndpointsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteUserEndpointsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteUserEndpointsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteUserEndpointsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteUserEndpointsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteUserEndpointsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteUserEndpointsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteUserEndpointsCommand\"])(input, context);\n };\n DeleteUserEndpointsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteUserEndpointsCommand\"])(output, context);\n };\n return DeleteUserEndpointsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteUserEndpointsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteUserEndpointsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceChannelCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceChannelCommand.js ***! \*********************************************************************************************/ /*! exports provided: DeleteVoiceChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceChannelCommand\", function() { return DeleteVoiceChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Disables the voice channel for an application and deletes any existing settings for the channel.

\n */\nvar DeleteVoiceChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteVoiceChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteVoiceChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteVoiceChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteVoiceChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteVoiceChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteVoiceChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteVoiceChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteVoiceChannelCommand\"])(input, context);\n };\n DeleteVoiceChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteVoiceChannelCommand\"])(output, context);\n };\n return DeleteVoiceChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteVoiceChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceTemplateCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceTemplateCommand.js ***! \**********************************************************************************************/ /*! exports provided: DeleteVoiceTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceTemplateCommand\", function() { return DeleteVoiceTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a message template for messages that were sent through the voice channel.

\n */\nvar DeleteVoiceTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteVoiceTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteVoiceTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteVoiceTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"DeleteVoiceTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteVoiceTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteVoiceTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteVoiceTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteVoiceTemplateCommand\"])(input, context);\n };\n DeleteVoiceTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteVoiceTemplateCommand\"])(output, context);\n };\n return DeleteVoiceTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteVoiceTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAdmChannelCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAdmChannelCommand.js ***! \****************************************************************************************/ /*! exports provided: GetAdmChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetAdmChannelCommand\", function() { return GetAdmChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the ADM channel for an application.

\n */\nvar GetAdmChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetAdmChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetAdmChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetAdmChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetAdmChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetAdmChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetAdmChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetAdmChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetAdmChannelCommand\"])(input, context);\n };\n GetAdmChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetAdmChannelCommand\"])(output, context);\n };\n return GetAdmChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetAdmChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAdmChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsChannelCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsChannelCommand.js ***! \*****************************************************************************************/ /*! exports provided: GetApnsChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsChannelCommand\", function() { return GetApnsChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the APNs channel for an application.

\n */\nvar GetApnsChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetApnsChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetApnsChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetApnsChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetApnsChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApnsChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApnsChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetApnsChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetApnsChannelCommand\"])(input, context);\n };\n GetApnsChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetApnsChannelCommand\"])(output, context);\n };\n return GetApnsChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetApnsChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsSandboxChannelCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsSandboxChannelCommand.js ***! \************************************************************************************************/ /*! exports provided: GetApnsSandboxChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsSandboxChannelCommand\", function() { return GetApnsSandboxChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the APNs sandbox channel for an application.

\n */\nvar GetApnsSandboxChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetApnsSandboxChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetApnsSandboxChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetApnsSandboxChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetApnsSandboxChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApnsSandboxChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApnsSandboxChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetApnsSandboxChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetApnsSandboxChannelCommand\"])(input, context);\n };\n GetApnsSandboxChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetApnsSandboxChannelCommand\"])(output, context);\n };\n return GetApnsSandboxChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetApnsSandboxChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsSandboxChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipChannelCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipChannelCommand.js ***! \*********************************************************************************************/ /*! exports provided: GetApnsVoipChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipChannelCommand\", function() { return GetApnsVoipChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the APNs VoIP channel for an application.

\n */\nvar GetApnsVoipChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetApnsVoipChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetApnsVoipChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetApnsVoipChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetApnsVoipChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApnsVoipChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApnsVoipChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetApnsVoipChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetApnsVoipChannelCommand\"])(input, context);\n };\n GetApnsVoipChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetApnsVoipChannelCommand\"])(output, context);\n };\n return GetApnsVoipChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetApnsVoipChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipSandboxChannelCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipSandboxChannelCommand.js ***! \****************************************************************************************************/ /*! exports provided: GetApnsVoipSandboxChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipSandboxChannelCommand\", function() { return GetApnsVoipSandboxChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the APNs VoIP sandbox channel for an application.

\n */\nvar GetApnsVoipSandboxChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetApnsVoipSandboxChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetApnsVoipSandboxChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetApnsVoipSandboxChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetApnsVoipSandboxChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApnsVoipSandboxChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApnsVoipSandboxChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetApnsVoipSandboxChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetApnsVoipSandboxChannelCommand\"])(input, context);\n };\n GetApnsVoipSandboxChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetApnsVoipSandboxChannelCommand\"])(output, context);\n };\n return GetApnsVoipSandboxChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetApnsVoipSandboxChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipSandboxChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppCommand.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppCommand.js ***! \*********************************************************************************/ /*! exports provided: GetAppCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetAppCommand\", function() { return GetAppCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about an application.

\n */\nvar GetAppCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetAppCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetAppCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetAppCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetAppCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetAppRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetAppResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetAppCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetAppCommand\"])(input, context);\n };\n GetAppCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetAppCommand\"])(output, context);\n };\n return GetAppCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetAppCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationDateRangeKpiCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationDateRangeKpiCommand.js ***! \*****************************************************************************************************/ /*! exports provided: GetApplicationDateRangeKpiCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationDateRangeKpiCommand\", function() { return GetApplicationDateRangeKpiCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves (queries) pre-aggregated data for a standard metric that applies to an application.

\n */\nvar GetApplicationDateRangeKpiCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetApplicationDateRangeKpiCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetApplicationDateRangeKpiCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetApplicationDateRangeKpiCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetApplicationDateRangeKpiCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApplicationDateRangeKpiRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApplicationDateRangeKpiResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetApplicationDateRangeKpiCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetApplicationDateRangeKpiCommand\"])(input, context);\n };\n GetApplicationDateRangeKpiCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetApplicationDateRangeKpiCommand\"])(output, context);\n };\n return GetApplicationDateRangeKpiCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetApplicationDateRangeKpiCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationDateRangeKpiCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationSettingsCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationSettingsCommand.js ***! \*************************************************************************************************/ /*! exports provided: GetApplicationSettingsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationSettingsCommand\", function() { return GetApplicationSettingsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the settings for an application.

\n */\nvar GetApplicationSettingsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetApplicationSettingsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetApplicationSettingsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetApplicationSettingsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetApplicationSettingsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApplicationSettingsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetApplicationSettingsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetApplicationSettingsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetApplicationSettingsCommand\"])(input, context);\n };\n GetApplicationSettingsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetApplicationSettingsCommand\"])(output, context);\n };\n return GetApplicationSettingsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetApplicationSettingsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationSettingsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppsCommand.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppsCommand.js ***! \**********************************************************************************/ /*! exports provided: GetAppsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetAppsCommand\", function() { return GetAppsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about all the applications that are associated with your Amazon Pinpoint account.

\n */\nvar GetAppsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetAppsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetAppsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetAppsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetAppsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetAppsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetAppsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetAppsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetAppsCommand\"])(input, context);\n };\n GetAppsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetAppsCommand\"])(output, context);\n };\n return GetAppsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetAppsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetBaiduChannelCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetBaiduChannelCommand.js ***! \******************************************************************************************/ /*! exports provided: GetBaiduChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBaiduChannelCommand\", function() { return GetBaiduChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the Baidu channel for an application.

\n */\nvar GetBaiduChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBaiduChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBaiduChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBaiduChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetBaiduChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBaiduChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBaiduChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBaiduChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetBaiduChannelCommand\"])(input, context);\n };\n GetBaiduChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetBaiduChannelCommand\"])(output, context);\n };\n return GetBaiduChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetBaiduChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetBaiduChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignActivitiesCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignActivitiesCommand.js ***! \************************************************************************************************/ /*! exports provided: GetCampaignActivitiesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignActivitiesCommand\", function() { return GetCampaignActivitiesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about all the activities for a campaign.

\n */\nvar GetCampaignActivitiesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetCampaignActivitiesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetCampaignActivitiesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetCampaignActivitiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetCampaignActivitiesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignActivitiesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignActivitiesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetCampaignActivitiesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetCampaignActivitiesCommand\"])(input, context);\n };\n GetCampaignActivitiesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetCampaignActivitiesCommand\"])(output, context);\n };\n return GetCampaignActivitiesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetCampaignActivitiesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignActivitiesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignCommand.js ***! \**************************************************************************************/ /*! exports provided: GetCampaignCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignCommand\", function() { return GetCampaignCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status, configuration, and other settings for a campaign.

\n */\nvar GetCampaignCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetCampaignCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetCampaignCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetCampaignCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetCampaignCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetCampaignCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetCampaignCommand\"])(input, context);\n };\n GetCampaignCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetCampaignCommand\"])(output, context);\n };\n return GetCampaignCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetCampaignCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignDateRangeKpiCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignDateRangeKpiCommand.js ***! \**************************************************************************************************/ /*! exports provided: GetCampaignDateRangeKpiCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignDateRangeKpiCommand\", function() { return GetCampaignDateRangeKpiCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves (queries) pre-aggregated data for a standard metric that applies to a campaign.

\n */\nvar GetCampaignDateRangeKpiCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetCampaignDateRangeKpiCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetCampaignDateRangeKpiCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetCampaignDateRangeKpiCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetCampaignDateRangeKpiCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignDateRangeKpiRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignDateRangeKpiResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetCampaignDateRangeKpiCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetCampaignDateRangeKpiCommand\"])(input, context);\n };\n GetCampaignDateRangeKpiCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetCampaignDateRangeKpiCommand\"])(output, context);\n };\n return GetCampaignDateRangeKpiCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetCampaignDateRangeKpiCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignDateRangeKpiCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionCommand.js ***! \*********************************************************************************************/ /*! exports provided: GetCampaignVersionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionCommand\", function() { return GetCampaignVersionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status, configuration, and other settings for a specific version of a campaign.

\n */\nvar GetCampaignVersionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetCampaignVersionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetCampaignVersionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetCampaignVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetCampaignVersionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignVersionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignVersionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetCampaignVersionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetCampaignVersionCommand\"])(input, context);\n };\n GetCampaignVersionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetCampaignVersionCommand\"])(output, context);\n };\n return GetCampaignVersionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetCampaignVersionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionsCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionsCommand.js ***! \**********************************************************************************************/ /*! exports provided: GetCampaignVersionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionsCommand\", function() { return GetCampaignVersionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status, configuration, and other settings for all versions of a campaign.

\n */\nvar GetCampaignVersionsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetCampaignVersionsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetCampaignVersionsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetCampaignVersionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetCampaignVersionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignVersionsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignVersionsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetCampaignVersionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetCampaignVersionsCommand\"])(input, context);\n };\n GetCampaignVersionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetCampaignVersionsCommand\"])(output, context);\n };\n return GetCampaignVersionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetCampaignVersionsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignsCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignsCommand.js ***! \***************************************************************************************/ /*! exports provided: GetCampaignsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignsCommand\", function() { return GetCampaignsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status, configuration, and other settings for all the campaigns that are associated with an application.

\n */\nvar GetCampaignsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetCampaignsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetCampaignsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetCampaignsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetCampaignsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCampaignsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetCampaignsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetCampaignsCommand\"])(input, context);\n };\n GetCampaignsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetCampaignsCommand\"])(output, context);\n };\n return GetCampaignsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetCampaignsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetChannelsCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetChannelsCommand.js ***! \**************************************************************************************/ /*! exports provided: GetChannelsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetChannelsCommand\", function() { return GetChannelsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the history and status of each channel for an application.

\n */\nvar GetChannelsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetChannelsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetChannelsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetChannelsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetChannelsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetChannelsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetChannelsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetChannelsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetChannelsCommand\"])(input, context);\n };\n GetChannelsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetChannelsCommand\"])(output, context);\n };\n return GetChannelsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetChannelsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetChannelsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailChannelCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailChannelCommand.js ***! \******************************************************************************************/ /*! exports provided: GetEmailChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEmailChannelCommand\", function() { return GetEmailChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the email channel for an application.

\n */\nvar GetEmailChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetEmailChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetEmailChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetEmailChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetEmailChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetEmailChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetEmailChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetEmailChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetEmailChannelCommand\"])(input, context);\n };\n GetEmailChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetEmailChannelCommand\"])(output, context);\n };\n return GetEmailChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetEmailChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailTemplateCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailTemplateCommand.js ***! \*******************************************************************************************/ /*! exports provided: GetEmailTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEmailTemplateCommand\", function() { return GetEmailTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves the content and settings of a message template for messages that are sent through the email channel.

\n */\nvar GetEmailTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetEmailTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetEmailTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetEmailTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetEmailTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetEmailTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetEmailTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetEmailTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetEmailTemplateCommand\"])(input, context);\n };\n GetEmailTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetEmailTemplateCommand\"])(output, context);\n };\n return GetEmailTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetEmailTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEndpointCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEndpointCommand.js ***! \**************************************************************************************/ /*! exports provided: GetEndpointCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEndpointCommand\", function() { return GetEndpointCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the settings and attributes of a specific endpoint for an application.

\n */\nvar GetEndpointCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetEndpointCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetEndpointCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetEndpointCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetEndpointCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetEndpointRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetEndpointResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetEndpointCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetEndpointCommand\"])(input, context);\n };\n GetEndpointCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetEndpointCommand\"])(output, context);\n };\n return GetEndpointCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetEndpointCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEndpointCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEventStreamCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEventStreamCommand.js ***! \*****************************************************************************************/ /*! exports provided: GetEventStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEventStreamCommand\", function() { return GetEventStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the event stream settings for an application.

\n */\nvar GetEventStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetEventStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetEventStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetEventStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetEventStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetEventStreamRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetEventStreamResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetEventStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetEventStreamCommand\"])(input, context);\n };\n GetEventStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetEventStreamCommand\"])(output, context);\n };\n return GetEventStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetEventStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEventStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobCommand.js ***! \***************************************************************************************/ /*! exports provided: GetExportJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobCommand\", function() { return GetExportJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of a specific export job for an application.

\n */\nvar GetExportJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetExportJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetExportJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetExportJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetExportJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetExportJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetExportJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetExportJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetExportJobCommand\"])(input, context);\n };\n GetExportJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetExportJobCommand\"])(output, context);\n };\n return GetExportJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetExportJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobsCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobsCommand.js ***! \****************************************************************************************/ /*! exports provided: GetExportJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobsCommand\", function() { return GetExportJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of all the export jobs for an application.

\n */\nvar GetExportJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetExportJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetExportJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetExportJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetExportJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetExportJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetExportJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetExportJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetExportJobsCommand\"])(input, context);\n };\n GetExportJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetExportJobsCommand\"])(output, context);\n };\n return GetExportJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetExportJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetGcmChannelCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetGcmChannelCommand.js ***! \****************************************************************************************/ /*! exports provided: GetGcmChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetGcmChannelCommand\", function() { return GetGcmChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the GCM channel for an application.

\n */\nvar GetGcmChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetGcmChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetGcmChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetGcmChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetGcmChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetGcmChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetGcmChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetGcmChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetGcmChannelCommand\"])(input, context);\n };\n GetGcmChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetGcmChannelCommand\"])(output, context);\n };\n return GetGcmChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetGcmChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetGcmChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobCommand.js ***! \***************************************************************************************/ /*! exports provided: GetImportJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobCommand\", function() { return GetImportJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of a specific import job for an application.

\n */\nvar GetImportJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetImportJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetImportJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetImportJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetImportJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetImportJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetImportJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetImportJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetImportJobCommand\"])(input, context);\n };\n GetImportJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetImportJobCommand\"])(output, context);\n };\n return GetImportJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetImportJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobsCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobsCommand.js ***! \****************************************************************************************/ /*! exports provided: GetImportJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobsCommand\", function() { return GetImportJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of all the import jobs for an application.

\n */\nvar GetImportJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetImportJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetImportJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetImportJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetImportJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetImportJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetImportJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetImportJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetImportJobsCommand\"])(input, context);\n };\n GetImportJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetImportJobsCommand\"])(output, context);\n };\n return GetImportJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetImportJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyCommand.js ***! \*************************************************************************************/ /*! exports provided: GetJourneyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyCommand\", function() { return GetJourneyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status, configuration, and other settings for a journey.

\n */\nvar GetJourneyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetJourneyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetJourneyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetJourneyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetJourneyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetJourneyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetJourneyCommand\"])(input, context);\n };\n GetJourneyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetJourneyCommand\"])(output, context);\n };\n return GetJourneyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetJourneyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyDateRangeKpiCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyDateRangeKpiCommand.js ***! \*************************************************************************************************/ /*! exports provided: GetJourneyDateRangeKpiCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyDateRangeKpiCommand\", function() { return GetJourneyDateRangeKpiCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves (queries) pre-aggregated data for a standard engagement metric that applies to a journey.

\n */\nvar GetJourneyDateRangeKpiCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetJourneyDateRangeKpiCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetJourneyDateRangeKpiCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetJourneyDateRangeKpiCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetJourneyDateRangeKpiCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyDateRangeKpiRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyDateRangeKpiResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetJourneyDateRangeKpiCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetJourneyDateRangeKpiCommand\"])(input, context);\n };\n GetJourneyDateRangeKpiCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetJourneyDateRangeKpiCommand\"])(output, context);\n };\n return GetJourneyDateRangeKpiCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetJourneyDateRangeKpiCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyDateRangeKpiCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionActivityMetricsCommand.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionActivityMetricsCommand.js ***! \*************************************************************************************************************/ /*! exports provided: GetJourneyExecutionActivityMetricsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionActivityMetricsCommand\", function() { return GetJourneyExecutionActivityMetricsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves (queries) pre-aggregated data for a standard execution metric that applies to a journey activity.

\n */\nvar GetJourneyExecutionActivityMetricsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetJourneyExecutionActivityMetricsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetJourneyExecutionActivityMetricsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetJourneyExecutionActivityMetricsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetJourneyExecutionActivityMetricsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyExecutionActivityMetricsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyExecutionActivityMetricsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetJourneyExecutionActivityMetricsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetJourneyExecutionActivityMetricsCommand\"])(input, context);\n };\n GetJourneyExecutionActivityMetricsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetJourneyExecutionActivityMetricsCommand\"])(output, context);\n };\n return GetJourneyExecutionActivityMetricsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetJourneyExecutionActivityMetricsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionActivityMetricsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionMetricsCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionMetricsCommand.js ***! \*****************************************************************************************************/ /*! exports provided: GetJourneyExecutionMetricsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionMetricsCommand\", function() { return GetJourneyExecutionMetricsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves (queries) pre-aggregated data for a standard execution metric that applies to a journey.

\n */\nvar GetJourneyExecutionMetricsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetJourneyExecutionMetricsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetJourneyExecutionMetricsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetJourneyExecutionMetricsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetJourneyExecutionMetricsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyExecutionMetricsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyExecutionMetricsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetJourneyExecutionMetricsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetJourneyExecutionMetricsCommand\"])(input, context);\n };\n GetJourneyExecutionMetricsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetJourneyExecutionMetricsCommand\"])(output, context);\n };\n return GetJourneyExecutionMetricsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetJourneyExecutionMetricsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionMetricsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetPushTemplateCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetPushTemplateCommand.js ***! \******************************************************************************************/ /*! exports provided: GetPushTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPushTemplateCommand\", function() { return GetPushTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves the content and settings of a message template for messages that are sent through a push notification channel.

\n */\nvar GetPushTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetPushTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetPushTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetPushTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetPushTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetPushTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetPushTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetPushTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetPushTemplateCommand\"])(input, context);\n };\n GetPushTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetPushTemplateCommand\"])(output, context);\n };\n return GetPushTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetPushTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetPushTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationCommand.js ***! \******************************************************************************************************/ /*! exports provided: GetRecommenderConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationCommand\", function() { return GetRecommenderConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about an Amazon Pinpoint configuration for a recommender model.

\n */\nvar GetRecommenderConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetRecommenderConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetRecommenderConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetRecommenderConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetRecommenderConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetRecommenderConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetRecommenderConfigurationResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetRecommenderConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetRecommenderConfigurationCommand\"])(input, context);\n };\n GetRecommenderConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetRecommenderConfigurationCommand\"])(output, context);\n };\n return GetRecommenderConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetRecommenderConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationsCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationsCommand.js ***! \*******************************************************************************************************/ /*! exports provided: GetRecommenderConfigurationsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationsCommand\", function() { return GetRecommenderConfigurationsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about all the recommender model configurations that are associated with your Amazon Pinpoint account.

\n */\nvar GetRecommenderConfigurationsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetRecommenderConfigurationsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetRecommenderConfigurationsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetRecommenderConfigurationsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetRecommenderConfigurationsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetRecommenderConfigurationsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetRecommenderConfigurationsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetRecommenderConfigurationsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetRecommenderConfigurationsCommand\"])(input, context);\n };\n GetRecommenderConfigurationsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetRecommenderConfigurationsCommand\"])(output, context);\n };\n return GetRecommenderConfigurationsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetRecommenderConfigurationsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentCommand.js ***! \*************************************************************************************/ /*! exports provided: GetSegmentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentCommand\", function() { return GetSegmentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the configuration, dimension, and other settings for a specific segment that's associated with an application.

\n */\nvar GetSegmentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSegmentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSegmentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSegmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetSegmentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSegmentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetSegmentCommand\"])(input, context);\n };\n GetSegmentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetSegmentCommand\"])(output, context);\n };\n return GetSegmentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSegmentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentExportJobsCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentExportJobsCommand.js ***! \***********************************************************************************************/ /*! exports provided: GetSegmentExportJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentExportJobsCommand\", function() { return GetSegmentExportJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the export jobs for a segment.

\n */\nvar GetSegmentExportJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSegmentExportJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSegmentExportJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSegmentExportJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetSegmentExportJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentExportJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentExportJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSegmentExportJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetSegmentExportJobsCommand\"])(input, context);\n };\n GetSegmentExportJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetSegmentExportJobsCommand\"])(output, context);\n };\n return GetSegmentExportJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSegmentExportJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentExportJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentImportJobsCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentImportJobsCommand.js ***! \***********************************************************************************************/ /*! exports provided: GetSegmentImportJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentImportJobsCommand\", function() { return GetSegmentImportJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the import jobs for a segment.

\n */\nvar GetSegmentImportJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSegmentImportJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSegmentImportJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSegmentImportJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetSegmentImportJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentImportJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentImportJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSegmentImportJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetSegmentImportJobsCommand\"])(input, context);\n };\n GetSegmentImportJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetSegmentImportJobsCommand\"])(output, context);\n };\n return GetSegmentImportJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSegmentImportJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentImportJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionCommand.js ***! \********************************************************************************************/ /*! exports provided: GetSegmentVersionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionCommand\", function() { return GetSegmentVersionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the configuration, dimension, and other settings for a specific version of a segment that's associated with an application.

\n */\nvar GetSegmentVersionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSegmentVersionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSegmentVersionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSegmentVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetSegmentVersionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentVersionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentVersionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSegmentVersionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetSegmentVersionCommand\"])(input, context);\n };\n GetSegmentVersionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetSegmentVersionCommand\"])(output, context);\n };\n return GetSegmentVersionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSegmentVersionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionsCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionsCommand.js ***! \*********************************************************************************************/ /*! exports provided: GetSegmentVersionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionsCommand\", function() { return GetSegmentVersionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the configuration, dimension, and other settings for all the versions of a specific segment that's associated with an application.

\n */\nvar GetSegmentVersionsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSegmentVersionsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSegmentVersionsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSegmentVersionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetSegmentVersionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentVersionsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentVersionsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSegmentVersionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetSegmentVersionsCommand\"])(input, context);\n };\n GetSegmentVersionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetSegmentVersionsCommand\"])(output, context);\n };\n return GetSegmentVersionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSegmentVersionsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentsCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentsCommand.js ***! \**************************************************************************************/ /*! exports provided: GetSegmentsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentsCommand\", function() { return GetSegmentsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the configuration, dimension, and other settings for all the segments that are associated with an application.

\n */\nvar GetSegmentsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSegmentsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSegmentsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSegmentsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetSegmentsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSegmentsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetSegmentsCommand\"])(input, context);\n };\n GetSegmentsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetSegmentsCommand\"])(output, context);\n };\n return GetSegmentsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSegmentsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsChannelCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsChannelCommand.js ***! \****************************************************************************************/ /*! exports provided: GetSmsChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSmsChannelCommand\", function() { return GetSmsChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the SMS channel for an application.

\n */\nvar GetSmsChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSmsChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSmsChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSmsChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetSmsChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSmsChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSmsChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSmsChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetSmsChannelCommand\"])(input, context);\n };\n GetSmsChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetSmsChannelCommand\"])(output, context);\n };\n return GetSmsChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSmsChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsTemplateCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsTemplateCommand.js ***! \*****************************************************************************************/ /*! exports provided: GetSmsTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSmsTemplateCommand\", function() { return GetSmsTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves the content and settings of a message template for messages that are sent through the SMS channel.

\n */\nvar GetSmsTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSmsTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSmsTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSmsTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetSmsTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSmsTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSmsTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSmsTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetSmsTemplateCommand\"])(input, context);\n };\n GetSmsTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetSmsTemplateCommand\"])(output, context);\n };\n return GetSmsTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSmsTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetUserEndpointsCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetUserEndpointsCommand.js ***! \*******************************************************************************************/ /*! exports provided: GetUserEndpointsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetUserEndpointsCommand\", function() { return GetUserEndpointsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about all the endpoints that are associated with a specific user ID.

\n */\nvar GetUserEndpointsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetUserEndpointsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetUserEndpointsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetUserEndpointsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetUserEndpointsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetUserEndpointsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetUserEndpointsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetUserEndpointsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetUserEndpointsCommand\"])(input, context);\n };\n GetUserEndpointsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetUserEndpointsCommand\"])(output, context);\n };\n return GetUserEndpointsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetUserEndpointsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetUserEndpointsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceChannelCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceChannelCommand.js ***! \******************************************************************************************/ /*! exports provided: GetVoiceChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceChannelCommand\", function() { return GetVoiceChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status and settings of the voice channel for an application.

\n */\nvar GetVoiceChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetVoiceChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetVoiceChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetVoiceChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetVoiceChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetVoiceChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetVoiceChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetVoiceChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetVoiceChannelCommand\"])(input, context);\n };\n GetVoiceChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetVoiceChannelCommand\"])(output, context);\n };\n return GetVoiceChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetVoiceChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceTemplateCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceTemplateCommand.js ***! \*******************************************************************************************/ /*! exports provided: GetVoiceTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceTemplateCommand\", function() { return GetVoiceTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves the content and settings of a message template for messages that are sent through the voice channel.

\n */\nvar GetVoiceTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetVoiceTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetVoiceTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetVoiceTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"GetVoiceTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetVoiceTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetVoiceTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetVoiceTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetVoiceTemplateCommand\"])(input, context);\n };\n GetVoiceTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetVoiceTemplateCommand\"])(output, context);\n };\n return GetVoiceTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetVoiceTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListJourneysCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListJourneysCommand.js ***! \***************************************************************************************/ /*! exports provided: ListJourneysCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListJourneysCommand\", function() { return ListJourneysCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about the status, configuration, and other settings for all the journeys that are associated with an application.

\n */\nvar ListJourneysCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListJourneysCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListJourneysCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListJourneysCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"ListJourneysCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListJourneysRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListJourneysResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListJourneysCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1ListJourneysCommand\"])(input, context);\n };\n ListJourneysCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1ListJourneysCommand\"])(output, context);\n };\n return ListJourneysCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListJourneysCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListJourneysCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTagsForResourceCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTagsForResourceCommand.js ***! \**********************************************************************************************/ /*! exports provided: ListTagsForResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceCommand\", function() { return ListTagsForResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves all the tags (keys and values) that are associated with an application, campaign, message template, or segment.

\n */\nvar ListTagsForResourceCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTagsForResourceCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTagsForResourceCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"ListTagsForResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForResourceRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForResourceResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTagsForResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1ListTagsForResourceCommand\"])(input, context);\n };\n ListTagsForResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1ListTagsForResourceCommand\"])(output, context);\n };\n return ListTagsForResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTagsForResourceCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTagsForResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplateVersionsCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplateVersionsCommand.js ***! \***********************************************************************************************/ /*! exports provided: ListTemplateVersionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTemplateVersionsCommand\", function() { return ListTemplateVersionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about all the versions of a specific message template.

\n */\nvar ListTemplateVersionsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTemplateVersionsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTemplateVersionsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTemplateVersionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"ListTemplateVersionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTemplateVersionsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTemplateVersionsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTemplateVersionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1ListTemplateVersionsCommand\"])(input, context);\n };\n ListTemplateVersionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1ListTemplateVersionsCommand\"])(output, context);\n };\n return ListTemplateVersionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTemplateVersionsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplateVersionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplatesCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplatesCommand.js ***! \****************************************************************************************/ /*! exports provided: ListTemplatesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTemplatesCommand\", function() { return ListTemplatesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about all the message templates that are associated with your Amazon Pinpoint account.

\n */\nvar ListTemplatesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTemplatesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTemplatesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTemplatesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"ListTemplatesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTemplatesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTemplatesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTemplatesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1ListTemplatesCommand\"])(input, context);\n };\n ListTemplatesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1ListTemplatesCommand\"])(output, context);\n };\n return ListTemplatesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTemplatesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplatesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PhoneNumberValidateCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PhoneNumberValidateCommand.js ***! \**********************************************************************************************/ /*! exports provided: PhoneNumberValidateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PhoneNumberValidateCommand\", function() { return PhoneNumberValidateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves information about a phone number.

\n */\nvar PhoneNumberValidateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PhoneNumberValidateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PhoneNumberValidateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PhoneNumberValidateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"PhoneNumberValidateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"PhoneNumberValidateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"PhoneNumberValidateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PhoneNumberValidateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1PhoneNumberValidateCommand\"])(input, context);\n };\n PhoneNumberValidateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1PhoneNumberValidateCommand\"])(output, context);\n };\n return PhoneNumberValidateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PhoneNumberValidateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PhoneNumberValidateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventStreamCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventStreamCommand.js ***! \*****************************************************************************************/ /*! exports provided: PutEventStreamCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutEventStreamCommand\", function() { return PutEventStreamCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new event stream for an application or updates the settings of an existing event stream for an application.

\n */\nvar PutEventStreamCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutEventStreamCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutEventStreamCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutEventStreamCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"PutEventStreamCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"PutEventStreamRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"PutEventStreamResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutEventStreamCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1PutEventStreamCommand\"])(input, context);\n };\n PutEventStreamCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1PutEventStreamCommand\"])(output, context);\n };\n return PutEventStreamCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutEventStreamCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventStreamCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventsCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventsCommand.js ***! \************************************************************************************/ /*! exports provided: PutEventsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutEventsCommand\", function() { return PutEventsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new event to record for endpoints, or creates or updates endpoint data that existing events are associated with.

\n */\nvar PutEventsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutEventsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutEventsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutEventsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"PutEventsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"PutEventsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"PutEventsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutEventsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1PutEventsCommand\"])(input, context);\n };\n PutEventsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1PutEventsCommand\"])(output, context);\n };\n return PutEventsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutEventsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/RemoveAttributesCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/RemoveAttributesCommand.js ***! \*******************************************************************************************/ /*! exports provided: RemoveAttributesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RemoveAttributesCommand\", function() { return RemoveAttributesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Removes one or more attributes, of the same attribute type, from all the endpoints that are associated with an application.

\n */\nvar RemoveAttributesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(RemoveAttributesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function RemoveAttributesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n RemoveAttributesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"RemoveAttributesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"RemoveAttributesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"RemoveAttributesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n RemoveAttributesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1RemoveAttributesCommand\"])(input, context);\n };\n RemoveAttributesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1RemoveAttributesCommand\"])(output, context);\n };\n return RemoveAttributesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=RemoveAttributesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/RemoveAttributesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendMessagesCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendMessagesCommand.js ***! \***************************************************************************************/ /*! exports provided: SendMessagesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SendMessagesCommand\", function() { return SendMessagesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates and sends a direct message.

\n */\nvar SendMessagesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SendMessagesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function SendMessagesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n SendMessagesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"SendMessagesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendMessagesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendMessagesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SendMessagesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1SendMessagesCommand\"])(input, context);\n };\n SendMessagesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1SendMessagesCommand\"])(output, context);\n };\n return SendMessagesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=SendMessagesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendMessagesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendUsersMessagesCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendUsersMessagesCommand.js ***! \********************************************************************************************/ /*! exports provided: SendUsersMessagesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessagesCommand\", function() { return SendUsersMessagesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates and sends a message to a list of users.

\n */\nvar SendUsersMessagesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SendUsersMessagesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function SendUsersMessagesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n SendUsersMessagesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"SendUsersMessagesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendUsersMessagesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendUsersMessagesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SendUsersMessagesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1SendUsersMessagesCommand\"])(input, context);\n };\n SendUsersMessagesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1SendUsersMessagesCommand\"])(output, context);\n };\n return SendUsersMessagesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=SendUsersMessagesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendUsersMessagesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/TagResourceCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/TagResourceCommand.js ***! \**************************************************************************************/ /*! exports provided: TagResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceCommand\", function() { return TagResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Adds one or more tags (keys and values) to an application, campaign, message template, or segment.

\n */\nvar TagResourceCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TagResourceCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function TagResourceCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n TagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"TagResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"TagResourceRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n TagResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1TagResourceCommand\"])(input, context);\n };\n TagResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1TagResourceCommand\"])(output, context);\n };\n return TagResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=TagResourceCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/TagResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UntagResourceCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UntagResourceCommand.js ***! \****************************************************************************************/ /*! exports provided: UntagResourceCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceCommand\", function() { return UntagResourceCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Removes one or more tags (keys and values) from an application, campaign, message template, or segment.

\n */\nvar UntagResourceCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UntagResourceCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UntagResourceCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UntagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UntagResourceCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UntagResourceRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UntagResourceCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UntagResourceCommand\"])(input, context);\n };\n UntagResourceCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UntagResourceCommand\"])(output, context);\n };\n return UntagResourceCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UntagResourceCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UntagResourceCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateAdmChannelCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateAdmChannelCommand.js ***! \*******************************************************************************************/ /*! exports provided: UpdateAdmChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateAdmChannelCommand\", function() { return UpdateAdmChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the ADM channel for an application or updates the status and settings of the ADM channel for an application.

\n */\nvar UpdateAdmChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateAdmChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateAdmChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateAdmChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateAdmChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateAdmChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateAdmChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateAdmChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateAdmChannelCommand\"])(input, context);\n };\n UpdateAdmChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateAdmChannelCommand\"])(output, context);\n };\n return UpdateAdmChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateAdmChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateAdmChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsChannelCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsChannelCommand.js ***! \********************************************************************************************/ /*! exports provided: UpdateApnsChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsChannelCommand\", function() { return UpdateApnsChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the APNs channel for an application or updates the status and settings of the APNs channel for an application.

\n */\nvar UpdateApnsChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateApnsChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateApnsChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateApnsChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateApnsChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateApnsChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateApnsChannelCommand\"])(input, context);\n };\n UpdateApnsChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateApnsChannelCommand\"])(output, context);\n };\n return UpdateApnsChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateApnsChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsSandboxChannelCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsSandboxChannelCommand.js ***! \***************************************************************************************************/ /*! exports provided: UpdateApnsSandboxChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsSandboxChannelCommand\", function() { return UpdateApnsSandboxChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the APNs sandbox channel for an application or updates the status and settings of the APNs sandbox channel for an application.

\n */\nvar UpdateApnsSandboxChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateApnsSandboxChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateApnsSandboxChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateApnsSandboxChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateApnsSandboxChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsSandboxChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsSandboxChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateApnsSandboxChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateApnsSandboxChannelCommand\"])(input, context);\n };\n UpdateApnsSandboxChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateApnsSandboxChannelCommand\"])(output, context);\n };\n return UpdateApnsSandboxChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateApnsSandboxChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsSandboxChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipChannelCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipChannelCommand.js ***! \************************************************************************************************/ /*! exports provided: UpdateApnsVoipChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipChannelCommand\", function() { return UpdateApnsVoipChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the APNs VoIP channel for an application or updates the status and settings of the APNs VoIP channel for an application.

\n */\nvar UpdateApnsVoipChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateApnsVoipChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateApnsVoipChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateApnsVoipChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateApnsVoipChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsVoipChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsVoipChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateApnsVoipChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateApnsVoipChannelCommand\"])(input, context);\n };\n UpdateApnsVoipChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateApnsVoipChannelCommand\"])(output, context);\n };\n return UpdateApnsVoipChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateApnsVoipChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipSandboxChannelCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipSandboxChannelCommand.js ***! \*******************************************************************************************************/ /*! exports provided: UpdateApnsVoipSandboxChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipSandboxChannelCommand\", function() { return UpdateApnsVoipSandboxChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the APNs VoIP sandbox channel for an application or updates the status and settings of the APNs VoIP sandbox channel for an application.

\n */\nvar UpdateApnsVoipSandboxChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateApnsVoipSandboxChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateApnsVoipSandboxChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateApnsVoipSandboxChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateApnsVoipSandboxChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsVoipSandboxChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsVoipSandboxChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateApnsVoipSandboxChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateApnsVoipSandboxChannelCommand\"])(input, context);\n };\n UpdateApnsVoipSandboxChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateApnsVoipSandboxChannelCommand\"])(output, context);\n };\n return UpdateApnsVoipSandboxChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateApnsVoipSandboxChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipSandboxChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApplicationSettingsCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApplicationSettingsCommand.js ***! \****************************************************************************************************/ /*! exports provided: UpdateApplicationSettingsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApplicationSettingsCommand\", function() { return UpdateApplicationSettingsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates the settings for an application.

\n */\nvar UpdateApplicationSettingsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateApplicationSettingsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateApplicationSettingsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateApplicationSettingsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateApplicationSettingsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApplicationSettingsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApplicationSettingsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateApplicationSettingsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateApplicationSettingsCommand\"])(input, context);\n };\n UpdateApplicationSettingsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateApplicationSettingsCommand\"])(output, context);\n };\n return UpdateApplicationSettingsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateApplicationSettingsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApplicationSettingsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateBaiduChannelCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateBaiduChannelCommand.js ***! \*********************************************************************************************/ /*! exports provided: UpdateBaiduChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateBaiduChannelCommand\", function() { return UpdateBaiduChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the Baidu channel for an application or updates the status and settings of the Baidu channel for an application.

\n */\nvar UpdateBaiduChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateBaiduChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateBaiduChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateBaiduChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateBaiduChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateBaiduChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateBaiduChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateBaiduChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateBaiduChannelCommand\"])(input, context);\n };\n UpdateBaiduChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateBaiduChannelCommand\"])(output, context);\n };\n return UpdateBaiduChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateBaiduChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateBaiduChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateCampaignCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateCampaignCommand.js ***! \*****************************************************************************************/ /*! exports provided: UpdateCampaignCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateCampaignCommand\", function() { return UpdateCampaignCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates the configuration and other settings for a campaign.

\n */\nvar UpdateCampaignCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateCampaignCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateCampaignCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateCampaignCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateCampaignCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateCampaignRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateCampaignResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateCampaignCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateCampaignCommand\"])(input, context);\n };\n UpdateCampaignCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateCampaignCommand\"])(output, context);\n };\n return UpdateCampaignCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateCampaignCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateCampaignCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailChannelCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailChannelCommand.js ***! \*********************************************************************************************/ /*! exports provided: UpdateEmailChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailChannelCommand\", function() { return UpdateEmailChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the email channel for an application or updates the status and settings of the email channel for an application.

\n */\nvar UpdateEmailChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateEmailChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateEmailChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateEmailChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateEmailChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEmailChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEmailChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateEmailChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateEmailChannelCommand\"])(input, context);\n };\n UpdateEmailChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateEmailChannelCommand\"])(output, context);\n };\n return UpdateEmailChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateEmailChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailTemplateCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailTemplateCommand.js ***! \**********************************************************************************************/ /*! exports provided: UpdateEmailTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailTemplateCommand\", function() { return UpdateEmailTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates an existing message template for messages that are sent through the email channel.

\n */\nvar UpdateEmailTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateEmailTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateEmailTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateEmailTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateEmailTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEmailTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEmailTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateEmailTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateEmailTemplateCommand\"])(input, context);\n };\n UpdateEmailTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateEmailTemplateCommand\"])(output, context);\n };\n return UpdateEmailTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateEmailTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointCommand.js ***! \*****************************************************************************************/ /*! exports provided: UpdateEndpointCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointCommand\", function() { return UpdateEndpointCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new endpoint for an application or updates the settings and attributes of an existing endpoint for an application. You can also use this operation to define custom attributes for an endpoint. If an update includes one or more values for a custom attribute, Amazon Pinpoint replaces (overwrites) any existing values with the new values.

\n */\nvar UpdateEndpointCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateEndpointCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateEndpointCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateEndpointCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateEndpointCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateEndpointCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateEndpointCommand\"])(input, context);\n };\n UpdateEndpointCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateEndpointCommand\"])(output, context);\n };\n return UpdateEndpointCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateEndpointCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointsBatchCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointsBatchCommand.js ***! \***********************************************************************************************/ /*! exports provided: UpdateEndpointsBatchCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointsBatchCommand\", function() { return UpdateEndpointsBatchCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new batch of endpoints for an application or updates the settings and attributes of a batch of existing endpoints for an application. You can also use this operation to define custom attributes for a batch of endpoints. If an update includes one or more values for a custom attribute, Amazon Pinpoint replaces (overwrites) any existing values with the new values.

\n */\nvar UpdateEndpointsBatchCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateEndpointsBatchCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateEndpointsBatchCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateEndpointsBatchCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateEndpointsBatchCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointsBatchRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointsBatchResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateEndpointsBatchCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateEndpointsBatchCommand\"])(input, context);\n };\n UpdateEndpointsBatchCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateEndpointsBatchCommand\"])(output, context);\n };\n return UpdateEndpointsBatchCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateEndpointsBatchCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointsBatchCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateGcmChannelCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateGcmChannelCommand.js ***! \*******************************************************************************************/ /*! exports provided: UpdateGcmChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateGcmChannelCommand\", function() { return UpdateGcmChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the GCM channel for an application or updates the status and settings of the GCM channel for an application.

\n */\nvar UpdateGcmChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateGcmChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateGcmChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateGcmChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateGcmChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateGcmChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateGcmChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateGcmChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateGcmChannelCommand\"])(input, context);\n };\n UpdateGcmChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateGcmChannelCommand\"])(output, context);\n };\n return UpdateGcmChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateGcmChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateGcmChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyCommand.js ***! \****************************************************************************************/ /*! exports provided: UpdateJourneyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyCommand\", function() { return UpdateJourneyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates the configuration and other settings for a journey.

\n */\nvar UpdateJourneyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateJourneyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateJourneyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateJourneyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateJourneyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateJourneyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateJourneyResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateJourneyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateJourneyCommand\"])(input, context);\n };\n UpdateJourneyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateJourneyCommand\"])(output, context);\n };\n return UpdateJourneyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateJourneyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyStateCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyStateCommand.js ***! \*********************************************************************************************/ /*! exports provided: UpdateJourneyStateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyStateCommand\", function() { return UpdateJourneyStateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Cancels (stops) an active journey.

\n */\nvar UpdateJourneyStateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateJourneyStateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateJourneyStateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateJourneyStateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateJourneyStateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateJourneyStateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateJourneyStateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateJourneyStateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateJourneyStateCommand\"])(input, context);\n };\n UpdateJourneyStateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateJourneyStateCommand\"])(output, context);\n };\n return UpdateJourneyStateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateJourneyStateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyStateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdatePushTemplateCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdatePushTemplateCommand.js ***! \*********************************************************************************************/ /*! exports provided: UpdatePushTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdatePushTemplateCommand\", function() { return UpdatePushTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates an existing message template for messages that are sent through a push notification channel.

\n */\nvar UpdatePushTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdatePushTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdatePushTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdatePushTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdatePushTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdatePushTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdatePushTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdatePushTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdatePushTemplateCommand\"])(input, context);\n };\n UpdatePushTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdatePushTemplateCommand\"])(output, context);\n };\n return UpdatePushTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdatePushTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdatePushTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateRecommenderConfigurationCommand.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateRecommenderConfigurationCommand.js ***! \*********************************************************************************************************/ /*! exports provided: UpdateRecommenderConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationCommand\", function() { return UpdateRecommenderConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates an Amazon Pinpoint configuration for a recommender model.

\n */\nvar UpdateRecommenderConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateRecommenderConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateRecommenderConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateRecommenderConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateRecommenderConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateRecommenderConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateRecommenderConfigurationResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateRecommenderConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateRecommenderConfigurationCommand\"])(input, context);\n };\n UpdateRecommenderConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateRecommenderConfigurationCommand\"])(output, context);\n };\n return UpdateRecommenderConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateRecommenderConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateRecommenderConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSegmentCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSegmentCommand.js ***! \****************************************************************************************/ /*! exports provided: UpdateSegmentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateSegmentCommand\", function() { return UpdateSegmentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new segment for an application or updates the configuration, dimension, and other settings for an existing segment that's associated with an application.

\n */\nvar UpdateSegmentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateSegmentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateSegmentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateSegmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateSegmentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSegmentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSegmentResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateSegmentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateSegmentCommand\"])(input, context);\n };\n UpdateSegmentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateSegmentCommand\"])(output, context);\n };\n return UpdateSegmentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateSegmentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSegmentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsChannelCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsChannelCommand.js ***! \*******************************************************************************************/ /*! exports provided: UpdateSmsChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsChannelCommand\", function() { return UpdateSmsChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the SMS channel for an application or updates the status and settings of the SMS channel for an application.

\n */\nvar UpdateSmsChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateSmsChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateSmsChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateSmsChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateSmsChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSmsChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSmsChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateSmsChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateSmsChannelCommand\"])(input, context);\n };\n UpdateSmsChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateSmsChannelCommand\"])(output, context);\n };\n return UpdateSmsChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateSmsChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsTemplateCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsTemplateCommand.js ***! \********************************************************************************************/ /*! exports provided: UpdateSmsTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsTemplateCommand\", function() { return UpdateSmsTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates an existing message template for messages that are sent through the SMS channel.

\n */\nvar UpdateSmsTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateSmsTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateSmsTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateSmsTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateSmsTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSmsTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSmsTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateSmsTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateSmsTemplateCommand\"])(input, context);\n };\n UpdateSmsTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateSmsTemplateCommand\"])(output, context);\n };\n return UpdateSmsTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateSmsTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateTemplateActiveVersionCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateTemplateActiveVersionCommand.js ***! \******************************************************************************************************/ /*! exports provided: UpdateTemplateActiveVersionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateTemplateActiveVersionCommand\", function() { return UpdateTemplateActiveVersionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Changes the status of a specific version of a message template to active.

\n */\nvar UpdateTemplateActiveVersionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateTemplateActiveVersionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateTemplateActiveVersionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateTemplateActiveVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateTemplateActiveVersionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateTemplateActiveVersionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateTemplateActiveVersionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateTemplateActiveVersionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateTemplateActiveVersionCommand\"])(input, context);\n };\n UpdateTemplateActiveVersionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateTemplateActiveVersionCommand\"])(output, context);\n };\n return UpdateTemplateActiveVersionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateTemplateActiveVersionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateTemplateActiveVersionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceChannelCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceChannelCommand.js ***! \*********************************************************************************************/ /*! exports provided: UpdateVoiceChannelCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceChannelCommand\", function() { return UpdateVoiceChannelCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Enables the voice channel for an application or updates the status and settings of the voice channel for an application.

\n */\nvar UpdateVoiceChannelCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateVoiceChannelCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateVoiceChannelCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateVoiceChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateVoiceChannelCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateVoiceChannelRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateVoiceChannelResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateVoiceChannelCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateVoiceChannelCommand\"])(input, context);\n };\n UpdateVoiceChannelCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateVoiceChannelCommand\"])(output, context);\n };\n return UpdateVoiceChannelCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateVoiceChannelCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceChannelCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceTemplateCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceTemplateCommand.js ***! \**********************************************************************************************/ /*! exports provided: UpdateVoiceTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceTemplateCommand\", function() { return UpdateVoiceTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates an existing message template for messages that are sent through the voice channel.

\n */\nvar UpdateVoiceTemplateCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateVoiceTemplateCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateVoiceTemplateCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateVoiceTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PinpointClient\";\n var commandName = \"UpdateVoiceTemplateCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateVoiceTemplateRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateVoiceTemplateResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateVoiceTemplateCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1UpdateVoiceTemplateCommand\"])(input, context);\n };\n UpdateVoiceTemplateCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1UpdateVoiceTemplateCommand\"])(output, context);\n };\n return UpdateVoiceTemplateCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateVoiceTemplateCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceTemplateCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/endpoints.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/endpoints.js ***! \********************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"pinpoint.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"pinpoint.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"pinpoint.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"pinpoint.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"pinpoint.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"pinpoint.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"pinpoint.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"pinpoint.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"pinpoint.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"pinpoint.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"pinpoint.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"pinpoint.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"pinpoint.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"pinpoint.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n break;\n case \"fips-us-east-1\":\n regionInfo = {\n hostname: \"pinpoint-fips.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"fips-us-gov-west-1\":\n regionInfo = {\n hostname: \"pinpoint-fips.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"fips-us-west-2\":\n regionInfo = {\n hostname: \"pinpoint-fips.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"pinpoint.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"pinpoint.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"pinpoint.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n signingService: \"mobiletargeting\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n signingService: \"mobiletargeting\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"mobiletargeting\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/index.js ***! \****************************************************************/ /*! exports provided: PinpointClient, Pinpoint, CreateAppCommand, CreateCampaignCommand, CreateEmailTemplateCommand, CreateExportJobCommand, CreateImportJobCommand, CreateJourneyCommand, CreatePushTemplateCommand, CreateRecommenderConfigurationCommand, CreateSegmentCommand, CreateSmsTemplateCommand, CreateVoiceTemplateCommand, DeleteAdmChannelCommand, DeleteApnsChannelCommand, DeleteApnsSandboxChannelCommand, DeleteApnsVoipChannelCommand, DeleteApnsVoipSandboxChannelCommand, DeleteAppCommand, DeleteBaiduChannelCommand, DeleteCampaignCommand, DeleteEmailChannelCommand, DeleteEmailTemplateCommand, DeleteEndpointCommand, DeleteEventStreamCommand, DeleteGcmChannelCommand, DeleteJourneyCommand, DeletePushTemplateCommand, DeleteRecommenderConfigurationCommand, DeleteSegmentCommand, DeleteSmsChannelCommand, DeleteSmsTemplateCommand, DeleteUserEndpointsCommand, DeleteVoiceChannelCommand, DeleteVoiceTemplateCommand, GetAdmChannelCommand, GetApnsChannelCommand, GetApnsSandboxChannelCommand, GetApnsVoipChannelCommand, GetApnsVoipSandboxChannelCommand, GetAppCommand, GetApplicationDateRangeKpiCommand, GetApplicationSettingsCommand, GetAppsCommand, GetBaiduChannelCommand, GetCampaignCommand, GetCampaignActivitiesCommand, GetCampaignDateRangeKpiCommand, GetCampaignsCommand, GetCampaignVersionCommand, GetCampaignVersionsCommand, GetChannelsCommand, GetEmailChannelCommand, GetEmailTemplateCommand, GetEndpointCommand, GetEventStreamCommand, GetExportJobCommand, GetExportJobsCommand, GetGcmChannelCommand, GetImportJobCommand, GetImportJobsCommand, GetJourneyCommand, GetJourneyDateRangeKpiCommand, GetJourneyExecutionActivityMetricsCommand, GetJourneyExecutionMetricsCommand, GetPushTemplateCommand, GetRecommenderConfigurationCommand, GetRecommenderConfigurationsCommand, GetSegmentCommand, GetSegmentExportJobsCommand, GetSegmentImportJobsCommand, GetSegmentsCommand, GetSegmentVersionCommand, GetSegmentVersionsCommand, GetSmsChannelCommand, GetSmsTemplateCommand, GetUserEndpointsCommand, GetVoiceChannelCommand, GetVoiceTemplateCommand, ListJourneysCommand, ListTagsForResourceCommand, ListTemplatesCommand, ListTemplateVersionsCommand, PhoneNumberValidateCommand, PutEventsCommand, PutEventStreamCommand, RemoveAttributesCommand, SendMessagesCommand, SendUsersMessagesCommand, TagResourceCommand, UntagResourceCommand, UpdateAdmChannelCommand, UpdateApnsChannelCommand, UpdateApnsSandboxChannelCommand, UpdateApnsVoipChannelCommand, UpdateApnsVoipSandboxChannelCommand, UpdateApplicationSettingsCommand, UpdateBaiduChannelCommand, UpdateCampaignCommand, UpdateEmailChannelCommand, UpdateEmailTemplateCommand, UpdateEndpointCommand, UpdateEndpointsBatchCommand, UpdateGcmChannelCommand, UpdateJourneyCommand, UpdateJourneyStateCommand, UpdatePushTemplateCommand, UpdateRecommenderConfigurationCommand, UpdateSegmentCommand, UpdateSmsChannelCommand, UpdateSmsTemplateCommand, UpdateTemplateActiveVersionCommand, UpdateVoiceChannelCommand, UpdateVoiceTemplateCommand, __EndpointTypesElement, Action, ActivityResponse, ActivitiesResponse, AttributeType, AttributeDimension, DimensionType, SetDimension, MetricDimension, EventDimensions, EventCondition, SegmentCondition, Duration, RecencyType, RecencyDimension, SegmentBehaviors, SegmentDemographics, GPSCoordinates, GPSPointDimension, SegmentLocation, SegmentDimensions, SimpleCondition, Operator, Condition, WaitTime, ConditionalSplitActivity, JourneyCustomMessage, CustomMessageActivity, JourneyEmailMessage, EmailMessageActivity, HoldoutActivity, MultiConditionalBranch, MultiConditionalSplitActivity, JourneyPushMessage, PushMessageActivity, RandomSplitEntry, RandomSplitActivity, MessageType, JourneySMSMessage, SMSMessageActivity, WaitActivity, Activity, ChannelType, AddressConfiguration, ADMChannelRequest, ADMChannelResponse, ADMMessage, AndroidPushNotificationTemplate, APNSChannelRequest, APNSChannelResponse, APNSMessage, APNSPushNotificationTemplate, APNSSandboxChannelRequest, APNSSandboxChannelResponse, APNSVoipChannelRequest, APNSVoipChannelResponse, APNSVoipSandboxChannelRequest, APNSVoipSandboxChannelResponse, ResultRowValue, ResultRow, BaseKpiResult, ApplicationDateRangeKpiResponse, ApplicationResponse, Mode, CampaignHook, CampaignLimits, QuietTime, ApplicationSettingsResource, ApplicationsResponse, AttributesResource, BadRequestException, BaiduChannelRequest, BaiduChannelResponse, BaiduMessage, CampaignCustomMessage, CampaignDateRangeKpiResponse, CampaignEmailMessage, FilterType, CampaignEventFilter, CustomDeliveryConfiguration, Message, CampaignSmsMessage, MessageConfiguration, Frequency, Schedule, CampaignStatus, CampaignState, Template, TemplateConfiguration, TreatmentResource, CampaignResponse, CampaignsResponse, ChannelResponse, ChannelsResponse, ConflictException, CreateApplicationRequest, CreateAppRequest, CreateAppResponse, ForbiddenException, InternalServerErrorException, MethodNotAllowedException, NotFoundException, PayloadTooLargeException, TooManyRequestsException, WriteTreatmentResource, WriteCampaignRequest, CreateCampaignRequest, CreateCampaignResponse, EmailTemplateRequest, CreateEmailTemplateRequest, CreateTemplateMessageBody, CreateEmailTemplateResponse, ExportJobRequest, CreateExportJobRequest, ExportJobResource, JobStatus, ExportJobResponse, CreateExportJobResponse, Format, ImportJobRequest, CreateImportJobRequest, ImportJobResource, ImportJobResponse, CreateImportJobResponse, JourneyLimits, JourneySchedule, EventFilter, EventStartCondition, StartCondition, State, WriteJourneyRequest, CreateJourneyRequest, JourneyResponse, CreateJourneyResponse, DefaultPushNotificationTemplate, PushNotificationTemplateRequest, CreatePushTemplateRequest, CreatePushTemplateResponse, CreateRecommenderConfigurationShape, CreateRecommenderConfigurationRequest, RecommenderConfigurationResponse, CreateRecommenderConfigurationResponse, SegmentReference, SourceType, Type, SegmentGroup, Include, SegmentGroupList, WriteSegmentRequest, CreateSegmentRequest, SegmentImportResource, SegmentType, SegmentResponse, CreateSegmentResponse, SMSTemplateRequest, CreateSmsTemplateRequest, CreateSmsTemplateResponse, VoiceTemplateRequest, CreateVoiceTemplateRequest, CreateVoiceTemplateResponse, DefaultMessage, DefaultPushNotificationMessage, DeleteAdmChannelRequest, DeleteAdmChannelResponse, DeleteApnsChannelRequest, DeleteApnsChannelResponse, DeleteApnsSandboxChannelRequest, DeleteApnsSandboxChannelResponse, DeleteApnsVoipChannelRequest, DeleteApnsVoipChannelResponse, DeleteApnsVoipSandboxChannelRequest, DeleteApnsVoipSandboxChannelResponse, DeleteAppRequest, DeleteAppResponse, DeleteBaiduChannelRequest, DeleteBaiduChannelResponse, DeleteCampaignRequest, DeleteCampaignResponse, DeleteEmailChannelRequest, EmailChannelResponse, DeleteEmailChannelResponse, DeleteEmailTemplateRequest, MessageBody, DeleteEmailTemplateResponse, DeleteEndpointRequest, EndpointDemographic, EndpointLocation, EndpointUser, EndpointResponse, DeleteEndpointResponse, DeleteEventStreamRequest, EventStream, DeleteEventStreamResponse, DeleteGcmChannelRequest, GCMChannelResponse, DeleteGcmChannelResponse, DeleteJourneyRequest, DeleteJourneyResponse, DeletePushTemplateRequest, DeletePushTemplateResponse, DeleteRecommenderConfigurationRequest, DeleteRecommenderConfigurationResponse, DeleteSegmentRequest, DeleteSegmentResponse, DeleteSmsChannelRequest, SMSChannelResponse, DeleteSmsChannelResponse, DeleteSmsTemplateRequest, DeleteSmsTemplateResponse, DeleteUserEndpointsRequest, EndpointsResponse, DeleteUserEndpointsResponse, DeleteVoiceChannelRequest, VoiceChannelResponse, DeleteVoiceChannelResponse, DeleteVoiceTemplateRequest, DeleteVoiceTemplateResponse, DeliveryStatus, RawEmail, SimpleEmailPart, SimpleEmail, EmailMessage, GCMMessage, SMSMessage, VoiceMessage, DirectMessageConfiguration, EmailChannelRequest, TemplateType, EmailTemplateResponse, EndpointBatchItem, EndpointBatchRequest, EndpointItemResponse, EndpointMessageResult, EndpointRequest, EndpointSendConfiguration, Session, Event, EventItemResponse, PublicEndpoint, EventsBatch, EventsRequest, ItemResponse, EventsResponse, ExportJobsResponse, GCMChannelRequest, GetAdmChannelRequest, GetAdmChannelResponse, GetApnsChannelRequest, GetApnsChannelResponse, GetApnsSandboxChannelRequest, GetApnsSandboxChannelResponse, GetApnsVoipChannelRequest, GetApnsVoipChannelResponse, GetApnsVoipSandboxChannelRequest, GetApnsVoipSandboxChannelResponse, GetAppRequest, GetAppResponse, GetApplicationDateRangeKpiRequest, GetApplicationDateRangeKpiResponse, GetApplicationSettingsRequest, GetApplicationSettingsResponse, GetAppsRequest, GetAppsResponse, GetBaiduChannelRequest, GetBaiduChannelResponse, GetCampaignRequest, GetCampaignResponse, GetCampaignActivitiesRequest, GetCampaignActivitiesResponse, GetCampaignDateRangeKpiRequest, GetCampaignDateRangeKpiResponse, GetCampaignsRequest, GetCampaignsResponse, GetCampaignVersionRequest, GetCampaignVersionResponse, GetCampaignVersionsRequest, GetCampaignVersionsResponse, GetChannelsRequest, GetChannelsResponse, GetEmailChannelRequest, GetEmailChannelResponse, GetEmailTemplateRequest, GetEmailTemplateResponse, GetEndpointRequest, GetEndpointResponse, GetEventStreamRequest, GetEventStreamResponse, GetExportJobRequest, GetExportJobResponse, GetExportJobsRequest, GetExportJobsResponse, GetGcmChannelRequest, GetGcmChannelResponse, GetImportJobRequest, GetImportJobResponse, GetImportJobsRequest, ImportJobsResponse, GetImportJobsResponse, GetJourneyRequest, GetJourneyResponse, GetJourneyDateRangeKpiRequest, JourneyDateRangeKpiResponse, GetJourneyDateRangeKpiResponse, GetJourneyExecutionActivityMetricsRequest, JourneyExecutionActivityMetricsResponse, GetJourneyExecutionActivityMetricsResponse, GetJourneyExecutionMetricsRequest, JourneyExecutionMetricsResponse, GetJourneyExecutionMetricsResponse, GetPushTemplateRequest, PushNotificationTemplateResponse, GetPushTemplateResponse, GetRecommenderConfigurationRequest, GetRecommenderConfigurationResponse, GetRecommenderConfigurationsRequest, ListRecommenderConfigurationsResponse, GetRecommenderConfigurationsResponse, GetSegmentRequest, GetSegmentResponse, GetSegmentExportJobsRequest, GetSegmentExportJobsResponse, GetSegmentImportJobsRequest, GetSegmentImportJobsResponse, GetSegmentsRequest, SegmentsResponse, GetSegmentsResponse, GetSegmentVersionRequest, GetSegmentVersionResponse, GetSegmentVersionsRequest, GetSegmentVersionsResponse, GetSmsChannelRequest, GetSmsChannelResponse, GetSmsTemplateRequest, SMSTemplateResponse, GetSmsTemplateResponse, GetUserEndpointsRequest, GetUserEndpointsResponse, GetVoiceChannelRequest, GetVoiceChannelResponse, GetVoiceTemplateRequest, VoiceTemplateResponse, GetVoiceTemplateResponse, JourneysResponse, JourneyStateRequest, ListJourneysRequest, ListJourneysResponse, TemplateResponse, TemplateVersionResponse, ListTagsForResourceRequest, TagsModel, ListTagsForResourceResponse, ListTemplatesRequest, TemplatesResponse, ListTemplatesResponse, ListTemplateVersionsRequest, TemplateVersionsResponse, ListTemplateVersionsResponse, MessageResult, MessageRequest, MessageResponse, NumberValidateRequest, NumberValidateResponse, PhoneNumberValidateRequest, PhoneNumberValidateResponse, PutEventsRequest, PutEventsResponse, WriteEventStream, PutEventStreamRequest, PutEventStreamResponse, UpdateAttributesRequest, RemoveAttributesRequest, RemoveAttributesResponse, SendMessagesRequest, SendMessagesResponse, SendUsersMessageRequest, SendUsersMessagesRequest, SendUsersMessageResponse, SendUsersMessagesResponse, TagResourceRequest, UntagResourceRequest, UpdateAdmChannelRequest, UpdateAdmChannelResponse, UpdateApnsChannelRequest, UpdateApnsChannelResponse, UpdateApnsSandboxChannelRequest, UpdateApnsSandboxChannelResponse, UpdateApnsVoipChannelRequest, UpdateApnsVoipChannelResponse, UpdateApnsVoipSandboxChannelRequest, UpdateApnsVoipSandboxChannelResponse, WriteApplicationSettingsRequest, UpdateApplicationSettingsRequest, UpdateApplicationSettingsResponse, UpdateBaiduChannelRequest, UpdateBaiduChannelResponse, UpdateCampaignRequest, UpdateCampaignResponse, UpdateEmailChannelRequest, UpdateEmailChannelResponse, UpdateEmailTemplateRequest, UpdateEmailTemplateResponse, UpdateEndpointRequest, UpdateEndpointResponse, UpdateEndpointsBatchRequest, UpdateEndpointsBatchResponse, UpdateGcmChannelRequest, UpdateGcmChannelResponse, UpdateJourneyRequest, UpdateJourneyResponse, UpdateJourneyStateRequest, UpdateJourneyStateResponse, UpdatePushTemplateRequest, UpdatePushTemplateResponse, UpdateRecommenderConfigurationShape, UpdateRecommenderConfigurationRequest, UpdateRecommenderConfigurationResponse, UpdateSegmentRequest, UpdateSegmentResponse, SMSChannelRequest, UpdateSmsChannelRequest, UpdateSmsChannelResponse, UpdateSmsTemplateRequest, UpdateSmsTemplateResponse, TemplateActiveVersionRequest, UpdateTemplateActiveVersionRequest, UpdateTemplateActiveVersionResponse, VoiceChannelRequest, UpdateVoiceChannelRequest, UpdateVoiceChannelResponse, UpdateVoiceTemplateRequest, UpdateVoiceTemplateResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PinpointClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PinpointClient */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/PinpointClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PinpointClient\", function() { return _PinpointClient__WEBPACK_IMPORTED_MODULE_0__[\"PinpointClient\"]; });\n\n/* harmony import */ var _Pinpoint__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Pinpoint */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/Pinpoint.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Pinpoint\", function() { return _Pinpoint__WEBPACK_IMPORTED_MODULE_1__[\"Pinpoint\"]; });\n\n/* harmony import */ var _commands_CreateAppCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CreateAppCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateAppCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateAppCommand\", function() { return _commands_CreateAppCommand__WEBPACK_IMPORTED_MODULE_2__[\"CreateAppCommand\"]; });\n\n/* harmony import */ var _commands_CreateCampaignCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CreateCampaignCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateCampaignCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCampaignCommand\", function() { return _commands_CreateCampaignCommand__WEBPACK_IMPORTED_MODULE_3__[\"CreateCampaignCommand\"]; });\n\n/* harmony import */ var _commands_CreateEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/CreateEmailTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateEmailTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEmailTemplateCommand\", function() { return _commands_CreateEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_4__[\"CreateEmailTemplateCommand\"]; });\n\n/* harmony import */ var _commands_CreateExportJobCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/CreateExportJobCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateExportJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportJobCommand\", function() { return _commands_CreateExportJobCommand__WEBPACK_IMPORTED_MODULE_5__[\"CreateExportJobCommand\"]; });\n\n/* harmony import */ var _commands_CreateImportJobCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/CreateImportJobCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateImportJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateImportJobCommand\", function() { return _commands_CreateImportJobCommand__WEBPACK_IMPORTED_MODULE_6__[\"CreateImportJobCommand\"]; });\n\n/* harmony import */ var _commands_CreateJourneyCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/CreateJourneyCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateJourneyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateJourneyCommand\", function() { return _commands_CreateJourneyCommand__WEBPACK_IMPORTED_MODULE_7__[\"CreateJourneyCommand\"]; });\n\n/* harmony import */ var _commands_CreatePushTemplateCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/CreatePushTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreatePushTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePushTemplateCommand\", function() { return _commands_CreatePushTemplateCommand__WEBPACK_IMPORTED_MODULE_8__[\"CreatePushTemplateCommand\"]; });\n\n/* harmony import */ var _commands_CreateRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/CreateRecommenderConfigurationCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateRecommenderConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationCommand\", function() { return _commands_CreateRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_9__[\"CreateRecommenderConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_CreateSegmentCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/CreateSegmentCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSegmentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSegmentCommand\", function() { return _commands_CreateSegmentCommand__WEBPACK_IMPORTED_MODULE_10__[\"CreateSegmentCommand\"]; });\n\n/* harmony import */ var _commands_CreateSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/CreateSmsTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateSmsTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSmsTemplateCommand\", function() { return _commands_CreateSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_11__[\"CreateSmsTemplateCommand\"]; });\n\n/* harmony import */ var _commands_CreateVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/CreateVoiceTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/CreateVoiceTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateVoiceTemplateCommand\", function() { return _commands_CreateVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_12__[\"CreateVoiceTemplateCommand\"]; });\n\n/* harmony import */ var _commands_DeleteAdmChannelCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DeleteAdmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAdmChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAdmChannelCommand\", function() { return _commands_DeleteAdmChannelCommand__WEBPACK_IMPORTED_MODULE_13__[\"DeleteAdmChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteApnsChannelCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/DeleteApnsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsChannelCommand\", function() { return _commands_DeleteApnsChannelCommand__WEBPACK_IMPORTED_MODULE_14__[\"DeleteApnsChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DeleteApnsSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsSandboxChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsSandboxChannelCommand\", function() { return _commands_DeleteApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_15__[\"DeleteApnsSandboxChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/DeleteApnsVoipChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipChannelCommand\", function() { return _commands_DeleteApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_16__[\"DeleteApnsVoipChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DeleteApnsVoipSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteApnsVoipSandboxChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipSandboxChannelCommand\", function() { return _commands_DeleteApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_17__[\"DeleteApnsVoipSandboxChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteAppCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DeleteAppCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteAppCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAppCommand\", function() { return _commands_DeleteAppCommand__WEBPACK_IMPORTED_MODULE_18__[\"DeleteAppCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DeleteBaiduChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteBaiduChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBaiduChannelCommand\", function() { return _commands_DeleteBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_19__[\"DeleteBaiduChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteCampaignCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DeleteCampaignCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteCampaignCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCampaignCommand\", function() { return _commands_DeleteCampaignCommand__WEBPACK_IMPORTED_MODULE_20__[\"DeleteCampaignCommand\"]; });\n\n/* harmony import */ var _commands_DeleteEmailChannelCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DeleteEmailChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailChannelCommand\", function() { return _commands_DeleteEmailChannelCommand__WEBPACK_IMPORTED_MODULE_21__[\"DeleteEmailChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DeleteEmailTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEmailTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailTemplateCommand\", function() { return _commands_DeleteEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_22__[\"DeleteEmailTemplateCommand\"]; });\n\n/* harmony import */ var _commands_DeleteEndpointCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/DeleteEndpointCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEndpointCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointCommand\", function() { return _commands_DeleteEndpointCommand__WEBPACK_IMPORTED_MODULE_23__[\"DeleteEndpointCommand\"]; });\n\n/* harmony import */ var _commands_DeleteEventStreamCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/DeleteEventStreamCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteEventStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEventStreamCommand\", function() { return _commands_DeleteEventStreamCommand__WEBPACK_IMPORTED_MODULE_24__[\"DeleteEventStreamCommand\"]; });\n\n/* harmony import */ var _commands_DeleteGcmChannelCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/DeleteGcmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteGcmChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGcmChannelCommand\", function() { return _commands_DeleteGcmChannelCommand__WEBPACK_IMPORTED_MODULE_25__[\"DeleteGcmChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteJourneyCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/DeleteJourneyCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteJourneyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteJourneyCommand\", function() { return _commands_DeleteJourneyCommand__WEBPACK_IMPORTED_MODULE_26__[\"DeleteJourneyCommand\"]; });\n\n/* harmony import */ var _commands_DeletePushTemplateCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/DeletePushTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeletePushTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePushTemplateCommand\", function() { return _commands_DeletePushTemplateCommand__WEBPACK_IMPORTED_MODULE_27__[\"DeletePushTemplateCommand\"]; });\n\n/* harmony import */ var _commands_DeleteRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/DeleteRecommenderConfigurationCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteRecommenderConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRecommenderConfigurationCommand\", function() { return _commands_DeleteRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_28__[\"DeleteRecommenderConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_DeleteSegmentCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/DeleteSegmentCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSegmentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSegmentCommand\", function() { return _commands_DeleteSegmentCommand__WEBPACK_IMPORTED_MODULE_29__[\"DeleteSegmentCommand\"]; });\n\n/* harmony import */ var _commands_DeleteSmsChannelCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/DeleteSmsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsChannelCommand\", function() { return _commands_DeleteSmsChannelCommand__WEBPACK_IMPORTED_MODULE_30__[\"DeleteSmsChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/DeleteSmsTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteSmsTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsTemplateCommand\", function() { return _commands_DeleteSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_31__[\"DeleteSmsTemplateCommand\"]; });\n\n/* harmony import */ var _commands_DeleteUserEndpointsCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/DeleteUserEndpointsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteUserEndpointsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteUserEndpointsCommand\", function() { return _commands_DeleteUserEndpointsCommand__WEBPACK_IMPORTED_MODULE_32__[\"DeleteUserEndpointsCommand\"]; });\n\n/* harmony import */ var _commands_DeleteVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/DeleteVoiceChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceChannelCommand\", function() { return _commands_DeleteVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_33__[\"DeleteVoiceChannelCommand\"]; });\n\n/* harmony import */ var _commands_DeleteVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./commands/DeleteVoiceTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/DeleteVoiceTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceTemplateCommand\", function() { return _commands_DeleteVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_34__[\"DeleteVoiceTemplateCommand\"]; });\n\n/* harmony import */ var _commands_GetAdmChannelCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/GetAdmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAdmChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAdmChannelCommand\", function() { return _commands_GetAdmChannelCommand__WEBPACK_IMPORTED_MODULE_35__[\"GetAdmChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetApnsChannelCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./commands/GetApnsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsChannelCommand\", function() { return _commands_GetApnsChannelCommand__WEBPACK_IMPORTED_MODULE_36__[\"GetApnsChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/GetApnsSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsSandboxChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsSandboxChannelCommand\", function() { return _commands_GetApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_37__[\"GetApnsSandboxChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/GetApnsVoipChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipChannelCommand\", function() { return _commands_GetApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_38__[\"GetApnsVoipChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/GetApnsVoipSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApnsVoipSandboxChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipSandboxChannelCommand\", function() { return _commands_GetApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_39__[\"GetApnsVoipSandboxChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetAppCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/GetAppCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppCommand\", function() { return _commands_GetAppCommand__WEBPACK_IMPORTED_MODULE_40__[\"GetAppCommand\"]; });\n\n/* harmony import */ var _commands_GetApplicationDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/GetApplicationDateRangeKpiCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationDateRangeKpiCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationDateRangeKpiCommand\", function() { return _commands_GetApplicationDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_41__[\"GetApplicationDateRangeKpiCommand\"]; });\n\n/* harmony import */ var _commands_GetApplicationSettingsCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/GetApplicationSettingsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetApplicationSettingsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationSettingsCommand\", function() { return _commands_GetApplicationSettingsCommand__WEBPACK_IMPORTED_MODULE_42__[\"GetApplicationSettingsCommand\"]; });\n\n/* harmony import */ var _commands_GetAppsCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/GetAppsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetAppsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppsCommand\", function() { return _commands_GetAppsCommand__WEBPACK_IMPORTED_MODULE_43__[\"GetAppsCommand\"]; });\n\n/* harmony import */ var _commands_GetBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/GetBaiduChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetBaiduChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBaiduChannelCommand\", function() { return _commands_GetBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_44__[\"GetBaiduChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetCampaignCommand__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./commands/GetCampaignCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignCommand\", function() { return _commands_GetCampaignCommand__WEBPACK_IMPORTED_MODULE_45__[\"GetCampaignCommand\"]; });\n\n/* harmony import */ var _commands_GetCampaignActivitiesCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/GetCampaignActivitiesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignActivitiesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignActivitiesCommand\", function() { return _commands_GetCampaignActivitiesCommand__WEBPACK_IMPORTED_MODULE_46__[\"GetCampaignActivitiesCommand\"]; });\n\n/* harmony import */ var _commands_GetCampaignDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./commands/GetCampaignDateRangeKpiCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignDateRangeKpiCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignDateRangeKpiCommand\", function() { return _commands_GetCampaignDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_47__[\"GetCampaignDateRangeKpiCommand\"]; });\n\n/* harmony import */ var _commands_GetCampaignsCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./commands/GetCampaignsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignsCommand\", function() { return _commands_GetCampaignsCommand__WEBPACK_IMPORTED_MODULE_48__[\"GetCampaignsCommand\"]; });\n\n/* harmony import */ var _commands_GetCampaignVersionCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./commands/GetCampaignVersionCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionCommand\", function() { return _commands_GetCampaignVersionCommand__WEBPACK_IMPORTED_MODULE_49__[\"GetCampaignVersionCommand\"]; });\n\n/* harmony import */ var _commands_GetCampaignVersionsCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./commands/GetCampaignVersionsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetCampaignVersionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionsCommand\", function() { return _commands_GetCampaignVersionsCommand__WEBPACK_IMPORTED_MODULE_50__[\"GetCampaignVersionsCommand\"]; });\n\n/* harmony import */ var _commands_GetChannelsCommand__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./commands/GetChannelsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetChannelsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetChannelsCommand\", function() { return _commands_GetChannelsCommand__WEBPACK_IMPORTED_MODULE_51__[\"GetChannelsCommand\"]; });\n\n/* harmony import */ var _commands_GetEmailChannelCommand__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./commands/GetEmailChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailChannelCommand\", function() { return _commands_GetEmailChannelCommand__WEBPACK_IMPORTED_MODULE_52__[\"GetEmailChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./commands/GetEmailTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEmailTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailTemplateCommand\", function() { return _commands_GetEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_53__[\"GetEmailTemplateCommand\"]; });\n\n/* harmony import */ var _commands_GetEndpointCommand__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./commands/GetEndpointCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEndpointCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEndpointCommand\", function() { return _commands_GetEndpointCommand__WEBPACK_IMPORTED_MODULE_54__[\"GetEndpointCommand\"]; });\n\n/* harmony import */ var _commands_GetEventStreamCommand__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./commands/GetEventStreamCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetEventStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEventStreamCommand\", function() { return _commands_GetEventStreamCommand__WEBPACK_IMPORTED_MODULE_55__[\"GetEventStreamCommand\"]; });\n\n/* harmony import */ var _commands_GetExportJobCommand__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./commands/GetExportJobCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobCommand\", function() { return _commands_GetExportJobCommand__WEBPACK_IMPORTED_MODULE_56__[\"GetExportJobCommand\"]; });\n\n/* harmony import */ var _commands_GetExportJobsCommand__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./commands/GetExportJobsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetExportJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobsCommand\", function() { return _commands_GetExportJobsCommand__WEBPACK_IMPORTED_MODULE_57__[\"GetExportJobsCommand\"]; });\n\n/* harmony import */ var _commands_GetGcmChannelCommand__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./commands/GetGcmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetGcmChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGcmChannelCommand\", function() { return _commands_GetGcmChannelCommand__WEBPACK_IMPORTED_MODULE_58__[\"GetGcmChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetImportJobCommand__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./commands/GetImportJobCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobCommand\", function() { return _commands_GetImportJobCommand__WEBPACK_IMPORTED_MODULE_59__[\"GetImportJobCommand\"]; });\n\n/* harmony import */ var _commands_GetImportJobsCommand__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./commands/GetImportJobsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetImportJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobsCommand\", function() { return _commands_GetImportJobsCommand__WEBPACK_IMPORTED_MODULE_60__[\"GetImportJobsCommand\"]; });\n\n/* harmony import */ var _commands_GetJourneyCommand__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./commands/GetJourneyCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyCommand\", function() { return _commands_GetJourneyCommand__WEBPACK_IMPORTED_MODULE_61__[\"GetJourneyCommand\"]; });\n\n/* harmony import */ var _commands_GetJourneyDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./commands/GetJourneyDateRangeKpiCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyDateRangeKpiCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyDateRangeKpiCommand\", function() { return _commands_GetJourneyDateRangeKpiCommand__WEBPACK_IMPORTED_MODULE_62__[\"GetJourneyDateRangeKpiCommand\"]; });\n\n/* harmony import */ var _commands_GetJourneyExecutionActivityMetricsCommand__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./commands/GetJourneyExecutionActivityMetricsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionActivityMetricsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionActivityMetricsCommand\", function() { return _commands_GetJourneyExecutionActivityMetricsCommand__WEBPACK_IMPORTED_MODULE_63__[\"GetJourneyExecutionActivityMetricsCommand\"]; });\n\n/* harmony import */ var _commands_GetJourneyExecutionMetricsCommand__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./commands/GetJourneyExecutionMetricsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetJourneyExecutionMetricsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionMetricsCommand\", function() { return _commands_GetJourneyExecutionMetricsCommand__WEBPACK_IMPORTED_MODULE_64__[\"GetJourneyExecutionMetricsCommand\"]; });\n\n/* harmony import */ var _commands_GetPushTemplateCommand__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./commands/GetPushTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetPushTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPushTemplateCommand\", function() { return _commands_GetPushTemplateCommand__WEBPACK_IMPORTED_MODULE_65__[\"GetPushTemplateCommand\"]; });\n\n/* harmony import */ var _commands_GetRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./commands/GetRecommenderConfigurationCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationCommand\", function() { return _commands_GetRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_66__[\"GetRecommenderConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_GetRecommenderConfigurationsCommand__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./commands/GetRecommenderConfigurationsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetRecommenderConfigurationsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationsCommand\", function() { return _commands_GetRecommenderConfigurationsCommand__WEBPACK_IMPORTED_MODULE_67__[\"GetRecommenderConfigurationsCommand\"]; });\n\n/* harmony import */ var _commands_GetSegmentCommand__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./commands/GetSegmentCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentCommand\", function() { return _commands_GetSegmentCommand__WEBPACK_IMPORTED_MODULE_68__[\"GetSegmentCommand\"]; });\n\n/* harmony import */ var _commands_GetSegmentExportJobsCommand__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./commands/GetSegmentExportJobsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentExportJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentExportJobsCommand\", function() { return _commands_GetSegmentExportJobsCommand__WEBPACK_IMPORTED_MODULE_69__[\"GetSegmentExportJobsCommand\"]; });\n\n/* harmony import */ var _commands_GetSegmentImportJobsCommand__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./commands/GetSegmentImportJobsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentImportJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentImportJobsCommand\", function() { return _commands_GetSegmentImportJobsCommand__WEBPACK_IMPORTED_MODULE_70__[\"GetSegmentImportJobsCommand\"]; });\n\n/* harmony import */ var _commands_GetSegmentsCommand__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./commands/GetSegmentsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentsCommand\", function() { return _commands_GetSegmentsCommand__WEBPACK_IMPORTED_MODULE_71__[\"GetSegmentsCommand\"]; });\n\n/* harmony import */ var _commands_GetSegmentVersionCommand__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./commands/GetSegmentVersionCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionCommand\", function() { return _commands_GetSegmentVersionCommand__WEBPACK_IMPORTED_MODULE_72__[\"GetSegmentVersionCommand\"]; });\n\n/* harmony import */ var _commands_GetSegmentVersionsCommand__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./commands/GetSegmentVersionsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSegmentVersionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionsCommand\", function() { return _commands_GetSegmentVersionsCommand__WEBPACK_IMPORTED_MODULE_73__[\"GetSegmentVersionsCommand\"]; });\n\n/* harmony import */ var _commands_GetSmsChannelCommand__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./commands/GetSmsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsChannelCommand\", function() { return _commands_GetSmsChannelCommand__WEBPACK_IMPORTED_MODULE_74__[\"GetSmsChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./commands/GetSmsTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetSmsTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsTemplateCommand\", function() { return _commands_GetSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_75__[\"GetSmsTemplateCommand\"]; });\n\n/* harmony import */ var _commands_GetUserEndpointsCommand__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./commands/GetUserEndpointsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetUserEndpointsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetUserEndpointsCommand\", function() { return _commands_GetUserEndpointsCommand__WEBPACK_IMPORTED_MODULE_76__[\"GetUserEndpointsCommand\"]; });\n\n/* harmony import */ var _commands_GetVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./commands/GetVoiceChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceChannelCommand\", function() { return _commands_GetVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_77__[\"GetVoiceChannelCommand\"]; });\n\n/* harmony import */ var _commands_GetVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./commands/GetVoiceTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/GetVoiceTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceTemplateCommand\", function() { return _commands_GetVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_78__[\"GetVoiceTemplateCommand\"]; });\n\n/* harmony import */ var _commands_ListJourneysCommand__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./commands/ListJourneysCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListJourneysCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListJourneysCommand\", function() { return _commands_ListJourneysCommand__WEBPACK_IMPORTED_MODULE_79__[\"ListJourneysCommand\"]; });\n\n/* harmony import */ var _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./commands/ListTagsForResourceCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTagsForResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceCommand\", function() { return _commands_ListTagsForResourceCommand__WEBPACK_IMPORTED_MODULE_80__[\"ListTagsForResourceCommand\"]; });\n\n/* harmony import */ var _commands_ListTemplatesCommand__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./commands/ListTemplatesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplatesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplatesCommand\", function() { return _commands_ListTemplatesCommand__WEBPACK_IMPORTED_MODULE_81__[\"ListTemplatesCommand\"]; });\n\n/* harmony import */ var _commands_ListTemplateVersionsCommand__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./commands/ListTemplateVersionsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/ListTemplateVersionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplateVersionsCommand\", function() { return _commands_ListTemplateVersionsCommand__WEBPACK_IMPORTED_MODULE_82__[\"ListTemplateVersionsCommand\"]; });\n\n/* harmony import */ var _commands_PhoneNumberValidateCommand__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./commands/PhoneNumberValidateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PhoneNumberValidateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PhoneNumberValidateCommand\", function() { return _commands_PhoneNumberValidateCommand__WEBPACK_IMPORTED_MODULE_83__[\"PhoneNumberValidateCommand\"]; });\n\n/* harmony import */ var _commands_PutEventsCommand__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./commands/PutEventsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventsCommand\", function() { return _commands_PutEventsCommand__WEBPACK_IMPORTED_MODULE_84__[\"PutEventsCommand\"]; });\n\n/* harmony import */ var _commands_PutEventStreamCommand__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./commands/PutEventStreamCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/PutEventStreamCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventStreamCommand\", function() { return _commands_PutEventStreamCommand__WEBPACK_IMPORTED_MODULE_85__[\"PutEventStreamCommand\"]; });\n\n/* harmony import */ var _commands_RemoveAttributesCommand__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./commands/RemoveAttributesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/RemoveAttributesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RemoveAttributesCommand\", function() { return _commands_RemoveAttributesCommand__WEBPACK_IMPORTED_MODULE_86__[\"RemoveAttributesCommand\"]; });\n\n/* harmony import */ var _commands_SendMessagesCommand__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./commands/SendMessagesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendMessagesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendMessagesCommand\", function() { return _commands_SendMessagesCommand__WEBPACK_IMPORTED_MODULE_87__[\"SendMessagesCommand\"]; });\n\n/* harmony import */ var _commands_SendUsersMessagesCommand__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./commands/SendUsersMessagesCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/SendUsersMessagesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessagesCommand\", function() { return _commands_SendUsersMessagesCommand__WEBPACK_IMPORTED_MODULE_88__[\"SendUsersMessagesCommand\"]; });\n\n/* harmony import */ var _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./commands/TagResourceCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/TagResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceCommand\", function() { return _commands_TagResourceCommand__WEBPACK_IMPORTED_MODULE_89__[\"TagResourceCommand\"]; });\n\n/* harmony import */ var _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./commands/UntagResourceCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UntagResourceCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceCommand\", function() { return _commands_UntagResourceCommand__WEBPACK_IMPORTED_MODULE_90__[\"UntagResourceCommand\"]; });\n\n/* harmony import */ var _commands_UpdateAdmChannelCommand__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./commands/UpdateAdmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateAdmChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateAdmChannelCommand\", function() { return _commands_UpdateAdmChannelCommand__WEBPACK_IMPORTED_MODULE_91__[\"UpdateAdmChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateApnsChannelCommand__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./commands/UpdateApnsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsChannelCommand\", function() { return _commands_UpdateApnsChannelCommand__WEBPACK_IMPORTED_MODULE_92__[\"UpdateApnsChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./commands/UpdateApnsSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsSandboxChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsSandboxChannelCommand\", function() { return _commands_UpdateApnsSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_93__[\"UpdateApnsSandboxChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./commands/UpdateApnsVoipChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipChannelCommand\", function() { return _commands_UpdateApnsVoipChannelCommand__WEBPACK_IMPORTED_MODULE_94__[\"UpdateApnsVoipChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./commands/UpdateApnsVoipSandboxChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApnsVoipSandboxChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipSandboxChannelCommand\", function() { return _commands_UpdateApnsVoipSandboxChannelCommand__WEBPACK_IMPORTED_MODULE_95__[\"UpdateApnsVoipSandboxChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateApplicationSettingsCommand__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./commands/UpdateApplicationSettingsCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateApplicationSettingsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApplicationSettingsCommand\", function() { return _commands_UpdateApplicationSettingsCommand__WEBPACK_IMPORTED_MODULE_96__[\"UpdateApplicationSettingsCommand\"]; });\n\n/* harmony import */ var _commands_UpdateBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./commands/UpdateBaiduChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateBaiduChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateBaiduChannelCommand\", function() { return _commands_UpdateBaiduChannelCommand__WEBPACK_IMPORTED_MODULE_97__[\"UpdateBaiduChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateCampaignCommand__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./commands/UpdateCampaignCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateCampaignCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateCampaignCommand\", function() { return _commands_UpdateCampaignCommand__WEBPACK_IMPORTED_MODULE_98__[\"UpdateCampaignCommand\"]; });\n\n/* harmony import */ var _commands_UpdateEmailChannelCommand__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./commands/UpdateEmailChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailChannelCommand\", function() { return _commands_UpdateEmailChannelCommand__WEBPACK_IMPORTED_MODULE_99__[\"UpdateEmailChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./commands/UpdateEmailTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEmailTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailTemplateCommand\", function() { return _commands_UpdateEmailTemplateCommand__WEBPACK_IMPORTED_MODULE_100__[\"UpdateEmailTemplateCommand\"]; });\n\n/* harmony import */ var _commands_UpdateEndpointCommand__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./commands/UpdateEndpointCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointCommand\", function() { return _commands_UpdateEndpointCommand__WEBPACK_IMPORTED_MODULE_101__[\"UpdateEndpointCommand\"]; });\n\n/* harmony import */ var _commands_UpdateEndpointsBatchCommand__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./commands/UpdateEndpointsBatchCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateEndpointsBatchCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointsBatchCommand\", function() { return _commands_UpdateEndpointsBatchCommand__WEBPACK_IMPORTED_MODULE_102__[\"UpdateEndpointsBatchCommand\"]; });\n\n/* harmony import */ var _commands_UpdateGcmChannelCommand__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./commands/UpdateGcmChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateGcmChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGcmChannelCommand\", function() { return _commands_UpdateGcmChannelCommand__WEBPACK_IMPORTED_MODULE_103__[\"UpdateGcmChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateJourneyCommand__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./commands/UpdateJourneyCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyCommand\", function() { return _commands_UpdateJourneyCommand__WEBPACK_IMPORTED_MODULE_104__[\"UpdateJourneyCommand\"]; });\n\n/* harmony import */ var _commands_UpdateJourneyStateCommand__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./commands/UpdateJourneyStateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateJourneyStateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyStateCommand\", function() { return _commands_UpdateJourneyStateCommand__WEBPACK_IMPORTED_MODULE_105__[\"UpdateJourneyStateCommand\"]; });\n\n/* harmony import */ var _commands_UpdatePushTemplateCommand__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./commands/UpdatePushTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdatePushTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePushTemplateCommand\", function() { return _commands_UpdatePushTemplateCommand__WEBPACK_IMPORTED_MODULE_106__[\"UpdatePushTemplateCommand\"]; });\n\n/* harmony import */ var _commands_UpdateRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./commands/UpdateRecommenderConfigurationCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateRecommenderConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationCommand\", function() { return _commands_UpdateRecommenderConfigurationCommand__WEBPACK_IMPORTED_MODULE_107__[\"UpdateRecommenderConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_UpdateSegmentCommand__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./commands/UpdateSegmentCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSegmentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSegmentCommand\", function() { return _commands_UpdateSegmentCommand__WEBPACK_IMPORTED_MODULE_108__[\"UpdateSegmentCommand\"]; });\n\n/* harmony import */ var _commands_UpdateSmsChannelCommand__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./commands/UpdateSmsChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsChannelCommand\", function() { return _commands_UpdateSmsChannelCommand__WEBPACK_IMPORTED_MODULE_109__[\"UpdateSmsChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./commands/UpdateSmsTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateSmsTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsTemplateCommand\", function() { return _commands_UpdateSmsTemplateCommand__WEBPACK_IMPORTED_MODULE_110__[\"UpdateSmsTemplateCommand\"]; });\n\n/* harmony import */ var _commands_UpdateTemplateActiveVersionCommand__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./commands/UpdateTemplateActiveVersionCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateTemplateActiveVersionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTemplateActiveVersionCommand\", function() { return _commands_UpdateTemplateActiveVersionCommand__WEBPACK_IMPORTED_MODULE_111__[\"UpdateTemplateActiveVersionCommand\"]; });\n\n/* harmony import */ var _commands_UpdateVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./commands/UpdateVoiceChannelCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceChannelCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceChannelCommand\", function() { return _commands_UpdateVoiceChannelCommand__WEBPACK_IMPORTED_MODULE_112__[\"UpdateVoiceChannelCommand\"]; });\n\n/* harmony import */ var _commands_UpdateVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./commands/UpdateVoiceTemplateCommand */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/commands/UpdateVoiceTemplateCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceTemplateCommand\", function() { return _commands_UpdateVoiceTemplateCommand__WEBPACK_IMPORTED_MODULE_113__[\"UpdateVoiceTemplateCommand\"]; });\n\n/* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__EndpointTypesElement\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"__EndpointTypesElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Action\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Action\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActivityResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ActivityResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActivitiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ActivitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AttributeType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"AttributeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AttributeDimension\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"AttributeDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DimensionType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DimensionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SetDimension\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SetDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricDimension\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MetricDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventDimensions\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EventDimensions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventCondition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EventCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentCondition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Duration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Duration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecencyType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"RecencyType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecencyDimension\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"RecencyDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentBehaviors\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentBehaviors\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentDemographics\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentDemographics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GPSCoordinates\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GPSCoordinates\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GPSPointDimension\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GPSPointDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentLocation\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentDimensions\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentDimensions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SimpleCondition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SimpleCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Operator\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Operator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Condition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Condition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WaitTime\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"WaitTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConditionalSplitActivity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ConditionalSplitActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyCustomMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneyCustomMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CustomMessageActivity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CustomMessageActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyEmailMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneyEmailMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailMessageActivity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EmailMessageActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HoldoutActivity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"HoldoutActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MultiConditionalBranch\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MultiConditionalBranch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MultiConditionalSplitActivity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MultiConditionalSplitActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyPushMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneyPushMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PushMessageActivity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PushMessageActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RandomSplitEntry\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"RandomSplitEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RandomSplitActivity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"RandomSplitActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MessageType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneySMSMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneySMSMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSMessageActivity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SMSMessageActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WaitActivity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"WaitActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Activity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Activity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChannelType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ChannelType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AddressConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"AddressConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ADMChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ADMChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ADMChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ADMChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ADMMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ADMMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AndroidPushNotificationTemplate\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"AndroidPushNotificationTemplate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSPushNotificationTemplate\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSPushNotificationTemplate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSSandboxChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSSandboxChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSVoipChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSVoipChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipSandboxChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSVoipSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipSandboxChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"APNSVoipSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResultRowValue\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ResultRowValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResultRow\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ResultRow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseKpiResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"BaseKpiResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ApplicationDateRangeKpiResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ApplicationDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ApplicationResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ApplicationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Mode\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Mode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignHook\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignHook\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignLimits\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignLimits\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QuietTime\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"QuietTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ApplicationSettingsResource\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ApplicationSettingsResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ApplicationsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ApplicationsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AttributesResource\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"AttributesResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadRequestException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"BadRequestException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaiduChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"BaiduChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaiduChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"BaiduChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaiduMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"BaiduMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignCustomMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignCustomMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignDateRangeKpiResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignEmailMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignEmailMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilterType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"FilterType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignEventFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignEventFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CustomDeliveryConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CustomDeliveryConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Message\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Message\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignSmsMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignSmsMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MessageConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Frequency\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Frequency\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Schedule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Schedule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignState\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Template\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Template\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TemplateConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TreatmentResource\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TreatmentResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CampaignsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChannelsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ChannelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateApplicationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateApplicationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateAppRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateAppRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateAppResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateAppResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ForbiddenException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ForbiddenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerErrorException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"InternalServerErrorException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MethodNotAllowedException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MethodNotAllowedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"NotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PayloadTooLargeException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PayloadTooLargeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TooManyRequestsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteTreatmentResource\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"WriteTreatmentResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteCampaignRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"WriteCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCampaignRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCampaignResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateCampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEmailTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateEmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateTemplateMessageBody\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateTemplateMessageBody\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEmailTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateEmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ExportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateExportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportJobResource\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ExportJobResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ExportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateExportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Format\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Format\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ImportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateImportJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateImportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportJobResource\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ImportJobResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ImportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateImportJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateImportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyLimits\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneyLimits\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneySchedule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneySchedule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EventFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStartCondition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EventStartCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartCondition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"StartCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"State\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"State\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteJourneyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"WriteJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateJourneyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateJourneyResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateJourneyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultPushNotificationTemplate\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DefaultPushNotificationTemplate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PushNotificationTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PushNotificationTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePushTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreatePushTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePushTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreatePushTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationShape\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateRecommenderConfigurationShape\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateRecommenderConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecommenderConfigurationResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"RecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateRecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentReference\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentReference\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SourceType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SourceType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Type\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Type\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentGroup\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentGroup\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Include\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Include\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentGroupList\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentGroupList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteSegmentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"WriteSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSegmentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentImportResource\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentImportResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSegmentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateSegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SMSTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSmsTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateSmsTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSmsTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateSmsTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"VoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateVoiceTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateVoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateVoiceTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"CreateVoiceTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DefaultMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultPushNotificationMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DefaultPushNotificationMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAdmChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteAdmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAdmChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteAdmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteApnsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteApnsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsSandboxChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteApnsSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsSandboxChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteApnsSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteApnsVoipChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteApnsVoipChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipSandboxChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteApnsVoipSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipSandboxChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteApnsVoipSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAppRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteAppRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAppResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteAppResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBaiduChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteBaiduChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBaiduChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteBaiduChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCampaignRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCampaignResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteCampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteEmailChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EmailChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteEmailChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteEmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageBody\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MessageBody\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteEmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointDemographic\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointDemographic\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointLocation\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointUser\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointUser\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEventStreamRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteEventStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStream\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEventStreamResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteEventStreamResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGcmChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteGcmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GCMChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GCMChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGcmChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteGcmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteJourneyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteJourneyResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteJourneyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePushTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeletePushTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePushTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeletePushTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRecommenderConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteRecommenderConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRecommenderConfigurationResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteRecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSegmentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSegmentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteSegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteSmsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SMSChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteSmsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteSmsTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteSmsTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteUserEndpointsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteUserEndpointsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteUserEndpointsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteUserEndpointsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteVoiceChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"VoiceChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteVoiceChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteVoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeleteVoiceTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DeliveryStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RawEmail\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"RawEmail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SimpleEmailPart\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SimpleEmailPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SimpleEmail\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SimpleEmail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EmailMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GCMMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GCMMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SMSMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceMessage\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"VoiceMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DirectMessageConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"DirectMessageConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EmailChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TemplateType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointBatchItem\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointBatchItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointBatchRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointBatchRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointItemResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointItemResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointMessageResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointMessageResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointSendConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EndpointSendConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Session\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Session\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Event\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"Event\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventItemResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EventItemResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PublicEndpoint\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PublicEndpoint\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsBatch\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EventsBatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ItemResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ItemResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"EventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ExportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GCMChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GCMChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAdmChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetAdmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAdmChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetAdmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApnsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApnsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsSandboxChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApnsSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsSandboxChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApnsSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApnsVoipChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApnsVoipChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipSandboxChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApnsVoipSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipSandboxChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApnsVoipSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetAppRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetAppResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationDateRangeKpiRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApplicationDateRangeKpiRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationDateRangeKpiResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApplicationDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationSettingsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApplicationSettingsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationSettingsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetApplicationSettingsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetAppsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetAppsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBaiduChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetBaiduChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBaiduChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetBaiduChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignActivitiesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignActivitiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignActivitiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignActivitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignDateRangeKpiRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignDateRangeKpiRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignDateRangeKpiResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetCampaignVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetChannelsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetChannelsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetChannelsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetChannelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetEmailChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetEmailChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetEmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetEmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEndpointRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEndpointResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEventStreamRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetEventStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEventStreamResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetEventStreamResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetExportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetExportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetExportJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetExportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGcmChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetGcmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGcmChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetGcmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetImportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetImportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetImportJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ImportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetImportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetJourneyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyDateRangeKpiRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetJourneyDateRangeKpiRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyDateRangeKpiResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneyDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyDateRangeKpiResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetJourneyDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionActivityMetricsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetJourneyExecutionActivityMetricsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyExecutionActivityMetricsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneyExecutionActivityMetricsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionActivityMetricsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetJourneyExecutionActivityMetricsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionMetricsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetJourneyExecutionMetricsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyExecutionMetricsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneyExecutionMetricsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionMetricsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetJourneyExecutionMetricsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPushTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetPushTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PushNotificationTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PushNotificationTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPushTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetPushTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetRecommenderConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetRecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetRecommenderConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRecommenderConfigurationsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ListRecommenderConfigurationsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetRecommenderConfigurationsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentExportJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentExportJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentExportJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentExportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentImportJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentImportJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentImportJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentImportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SegmentsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSegmentVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSmsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSmsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSmsTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SMSTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetSmsTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetUserEndpointsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetUserEndpointsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetUserEndpointsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetUserEndpointsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetVoiceChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetVoiceChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetVoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"VoiceTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"GetVoiceTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneysResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneysResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyStateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"JourneyStateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListJourneysRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ListJourneysRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListJourneysResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ListJourneysResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateVersionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TemplateVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ListTagsForResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagsModel\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TagsModel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ListTagsForResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplatesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ListTemplatesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplatesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TemplatesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplatesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ListTemplatesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplateVersionsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ListTemplateVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateVersionsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TemplateVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplateVersionsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"ListTemplateVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MessageResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MessageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"MessageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NumberValidateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"NumberValidateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NumberValidateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"NumberValidateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PhoneNumberValidateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PhoneNumberValidateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PhoneNumberValidateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PhoneNumberValidateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PutEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PutEventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteEventStream\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"WriteEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventStreamRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PutEventStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventStreamResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"PutEventStreamResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateAttributesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateAttributesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RemoveAttributesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"RemoveAttributesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RemoveAttributesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"RemoveAttributesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendMessagesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SendMessagesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendMessagesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SendMessagesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessageRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SendUsersMessageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessagesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SendUsersMessagesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessageResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SendUsersMessageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessagesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SendUsersMessagesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TagResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UntagResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateAdmChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateAdmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateAdmChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateAdmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApnsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApnsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsSandboxChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApnsSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsSandboxChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApnsSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApnsVoipChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApnsVoipChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipSandboxChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApnsVoipSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipSandboxChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApnsVoipSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteApplicationSettingsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"WriteApplicationSettingsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApplicationSettingsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApplicationSettingsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApplicationSettingsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateApplicationSettingsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateBaiduChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateBaiduChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateBaiduChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateBaiduChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateCampaignRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateCampaignResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateCampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateEmailChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateEmailChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateEmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateEmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointsBatchRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateEndpointsBatchRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointsBatchResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateEndpointsBatchResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGcmChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateGcmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGcmChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateGcmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateJourneyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyStateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateJourneyStateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyStateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateJourneyStateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePushTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdatePushTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePushTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdatePushTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationShape\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateRecommenderConfigurationShape\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateRecommenderConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateRecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSegmentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSegmentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateSegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"SMSChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateSmsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateSmsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateSmsTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateSmsTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateActiveVersionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"TemplateActiveVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTemplateActiveVersionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateTemplateActiveVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTemplateActiveVersionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateTemplateActiveVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"VoiceChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceChannelRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateVoiceChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceChannelResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateVoiceChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceTemplateRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateVoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceTemplateResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_114__[\"UpdateVoiceTemplateResponse\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/models/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/models/index.js ***! \***********************************************************************/ /*! exports provided: __EndpointTypesElement, Action, ActivityResponse, ActivitiesResponse, AttributeType, AttributeDimension, DimensionType, SetDimension, MetricDimension, EventDimensions, EventCondition, SegmentCondition, Duration, RecencyType, RecencyDimension, SegmentBehaviors, SegmentDemographics, GPSCoordinates, GPSPointDimension, SegmentLocation, SegmentDimensions, SimpleCondition, Operator, Condition, WaitTime, ConditionalSplitActivity, JourneyCustomMessage, CustomMessageActivity, JourneyEmailMessage, EmailMessageActivity, HoldoutActivity, MultiConditionalBranch, MultiConditionalSplitActivity, JourneyPushMessage, PushMessageActivity, RandomSplitEntry, RandomSplitActivity, MessageType, JourneySMSMessage, SMSMessageActivity, WaitActivity, Activity, ChannelType, AddressConfiguration, ADMChannelRequest, ADMChannelResponse, ADMMessage, AndroidPushNotificationTemplate, APNSChannelRequest, APNSChannelResponse, APNSMessage, APNSPushNotificationTemplate, APNSSandboxChannelRequest, APNSSandboxChannelResponse, APNSVoipChannelRequest, APNSVoipChannelResponse, APNSVoipSandboxChannelRequest, APNSVoipSandboxChannelResponse, ResultRowValue, ResultRow, BaseKpiResult, ApplicationDateRangeKpiResponse, ApplicationResponse, Mode, CampaignHook, CampaignLimits, QuietTime, ApplicationSettingsResource, ApplicationsResponse, AttributesResource, BadRequestException, BaiduChannelRequest, BaiduChannelResponse, BaiduMessage, CampaignCustomMessage, CampaignDateRangeKpiResponse, CampaignEmailMessage, FilterType, CampaignEventFilter, CustomDeliveryConfiguration, Message, CampaignSmsMessage, MessageConfiguration, Frequency, Schedule, CampaignStatus, CampaignState, Template, TemplateConfiguration, TreatmentResource, CampaignResponse, CampaignsResponse, ChannelResponse, ChannelsResponse, ConflictException, CreateApplicationRequest, CreateAppRequest, CreateAppResponse, ForbiddenException, InternalServerErrorException, MethodNotAllowedException, NotFoundException, PayloadTooLargeException, TooManyRequestsException, WriteTreatmentResource, WriteCampaignRequest, CreateCampaignRequest, CreateCampaignResponse, EmailTemplateRequest, CreateEmailTemplateRequest, CreateTemplateMessageBody, CreateEmailTemplateResponse, ExportJobRequest, CreateExportJobRequest, ExportJobResource, JobStatus, ExportJobResponse, CreateExportJobResponse, Format, ImportJobRequest, CreateImportJobRequest, ImportJobResource, ImportJobResponse, CreateImportJobResponse, JourneyLimits, JourneySchedule, EventFilter, EventStartCondition, StartCondition, State, WriteJourneyRequest, CreateJourneyRequest, JourneyResponse, CreateJourneyResponse, DefaultPushNotificationTemplate, PushNotificationTemplateRequest, CreatePushTemplateRequest, CreatePushTemplateResponse, CreateRecommenderConfigurationShape, CreateRecommenderConfigurationRequest, RecommenderConfigurationResponse, CreateRecommenderConfigurationResponse, SegmentReference, SourceType, Type, SegmentGroup, Include, SegmentGroupList, WriteSegmentRequest, CreateSegmentRequest, SegmentImportResource, SegmentType, SegmentResponse, CreateSegmentResponse, SMSTemplateRequest, CreateSmsTemplateRequest, CreateSmsTemplateResponse, VoiceTemplateRequest, CreateVoiceTemplateRequest, CreateVoiceTemplateResponse, DefaultMessage, DefaultPushNotificationMessage, DeleteAdmChannelRequest, DeleteAdmChannelResponse, DeleteApnsChannelRequest, DeleteApnsChannelResponse, DeleteApnsSandboxChannelRequest, DeleteApnsSandboxChannelResponse, DeleteApnsVoipChannelRequest, DeleteApnsVoipChannelResponse, DeleteApnsVoipSandboxChannelRequest, DeleteApnsVoipSandboxChannelResponse, DeleteAppRequest, DeleteAppResponse, DeleteBaiduChannelRequest, DeleteBaiduChannelResponse, DeleteCampaignRequest, DeleteCampaignResponse, DeleteEmailChannelRequest, EmailChannelResponse, DeleteEmailChannelResponse, DeleteEmailTemplateRequest, MessageBody, DeleteEmailTemplateResponse, DeleteEndpointRequest, EndpointDemographic, EndpointLocation, EndpointUser, EndpointResponse, DeleteEndpointResponse, DeleteEventStreamRequest, EventStream, DeleteEventStreamResponse, DeleteGcmChannelRequest, GCMChannelResponse, DeleteGcmChannelResponse, DeleteJourneyRequest, DeleteJourneyResponse, DeletePushTemplateRequest, DeletePushTemplateResponse, DeleteRecommenderConfigurationRequest, DeleteRecommenderConfigurationResponse, DeleteSegmentRequest, DeleteSegmentResponse, DeleteSmsChannelRequest, SMSChannelResponse, DeleteSmsChannelResponse, DeleteSmsTemplateRequest, DeleteSmsTemplateResponse, DeleteUserEndpointsRequest, EndpointsResponse, DeleteUserEndpointsResponse, DeleteVoiceChannelRequest, VoiceChannelResponse, DeleteVoiceChannelResponse, DeleteVoiceTemplateRequest, DeleteVoiceTemplateResponse, DeliveryStatus, RawEmail, SimpleEmailPart, SimpleEmail, EmailMessage, GCMMessage, SMSMessage, VoiceMessage, DirectMessageConfiguration, EmailChannelRequest, TemplateType, EmailTemplateResponse, EndpointBatchItem, EndpointBatchRequest, EndpointItemResponse, EndpointMessageResult, EndpointRequest, EndpointSendConfiguration, Session, Event, EventItemResponse, PublicEndpoint, EventsBatch, EventsRequest, ItemResponse, EventsResponse, ExportJobsResponse, GCMChannelRequest, GetAdmChannelRequest, GetAdmChannelResponse, GetApnsChannelRequest, GetApnsChannelResponse, GetApnsSandboxChannelRequest, GetApnsSandboxChannelResponse, GetApnsVoipChannelRequest, GetApnsVoipChannelResponse, GetApnsVoipSandboxChannelRequest, GetApnsVoipSandboxChannelResponse, GetAppRequest, GetAppResponse, GetApplicationDateRangeKpiRequest, GetApplicationDateRangeKpiResponse, GetApplicationSettingsRequest, GetApplicationSettingsResponse, GetAppsRequest, GetAppsResponse, GetBaiduChannelRequest, GetBaiduChannelResponse, GetCampaignRequest, GetCampaignResponse, GetCampaignActivitiesRequest, GetCampaignActivitiesResponse, GetCampaignDateRangeKpiRequest, GetCampaignDateRangeKpiResponse, GetCampaignsRequest, GetCampaignsResponse, GetCampaignVersionRequest, GetCampaignVersionResponse, GetCampaignVersionsRequest, GetCampaignVersionsResponse, GetChannelsRequest, GetChannelsResponse, GetEmailChannelRequest, GetEmailChannelResponse, GetEmailTemplateRequest, GetEmailTemplateResponse, GetEndpointRequest, GetEndpointResponse, GetEventStreamRequest, GetEventStreamResponse, GetExportJobRequest, GetExportJobResponse, GetExportJobsRequest, GetExportJobsResponse, GetGcmChannelRequest, GetGcmChannelResponse, GetImportJobRequest, GetImportJobResponse, GetImportJobsRequest, ImportJobsResponse, GetImportJobsResponse, GetJourneyRequest, GetJourneyResponse, GetJourneyDateRangeKpiRequest, JourneyDateRangeKpiResponse, GetJourneyDateRangeKpiResponse, GetJourneyExecutionActivityMetricsRequest, JourneyExecutionActivityMetricsResponse, GetJourneyExecutionActivityMetricsResponse, GetJourneyExecutionMetricsRequest, JourneyExecutionMetricsResponse, GetJourneyExecutionMetricsResponse, GetPushTemplateRequest, PushNotificationTemplateResponse, GetPushTemplateResponse, GetRecommenderConfigurationRequest, GetRecommenderConfigurationResponse, GetRecommenderConfigurationsRequest, ListRecommenderConfigurationsResponse, GetRecommenderConfigurationsResponse, GetSegmentRequest, GetSegmentResponse, GetSegmentExportJobsRequest, GetSegmentExportJobsResponse, GetSegmentImportJobsRequest, GetSegmentImportJobsResponse, GetSegmentsRequest, SegmentsResponse, GetSegmentsResponse, GetSegmentVersionRequest, GetSegmentVersionResponse, GetSegmentVersionsRequest, GetSegmentVersionsResponse, GetSmsChannelRequest, GetSmsChannelResponse, GetSmsTemplateRequest, SMSTemplateResponse, GetSmsTemplateResponse, GetUserEndpointsRequest, GetUserEndpointsResponse, GetVoiceChannelRequest, GetVoiceChannelResponse, GetVoiceTemplateRequest, VoiceTemplateResponse, GetVoiceTemplateResponse, JourneysResponse, JourneyStateRequest, ListJourneysRequest, ListJourneysResponse, TemplateResponse, TemplateVersionResponse, ListTagsForResourceRequest, TagsModel, ListTagsForResourceResponse, ListTemplatesRequest, TemplatesResponse, ListTemplatesResponse, ListTemplateVersionsRequest, TemplateVersionsResponse, ListTemplateVersionsResponse, MessageResult, MessageRequest, MessageResponse, NumberValidateRequest, NumberValidateResponse, PhoneNumberValidateRequest, PhoneNumberValidateResponse, PutEventsRequest, PutEventsResponse, WriteEventStream, PutEventStreamRequest, PutEventStreamResponse, UpdateAttributesRequest, RemoveAttributesRequest, RemoveAttributesResponse, SendMessagesRequest, SendMessagesResponse, SendUsersMessageRequest, SendUsersMessagesRequest, SendUsersMessageResponse, SendUsersMessagesResponse, TagResourceRequest, UntagResourceRequest, UpdateAdmChannelRequest, UpdateAdmChannelResponse, UpdateApnsChannelRequest, UpdateApnsChannelResponse, UpdateApnsSandboxChannelRequest, UpdateApnsSandboxChannelResponse, UpdateApnsVoipChannelRequest, UpdateApnsVoipChannelResponse, UpdateApnsVoipSandboxChannelRequest, UpdateApnsVoipSandboxChannelResponse, WriteApplicationSettingsRequest, UpdateApplicationSettingsRequest, UpdateApplicationSettingsResponse, UpdateBaiduChannelRequest, UpdateBaiduChannelResponse, UpdateCampaignRequest, UpdateCampaignResponse, UpdateEmailChannelRequest, UpdateEmailChannelResponse, UpdateEmailTemplateRequest, UpdateEmailTemplateResponse, UpdateEndpointRequest, UpdateEndpointResponse, UpdateEndpointsBatchRequest, UpdateEndpointsBatchResponse, UpdateGcmChannelRequest, UpdateGcmChannelResponse, UpdateJourneyRequest, UpdateJourneyResponse, UpdateJourneyStateRequest, UpdateJourneyStateResponse, UpdatePushTemplateRequest, UpdatePushTemplateResponse, UpdateRecommenderConfigurationShape, UpdateRecommenderConfigurationRequest, UpdateRecommenderConfigurationResponse, UpdateSegmentRequest, UpdateSegmentResponse, SMSChannelRequest, UpdateSmsChannelRequest, UpdateSmsChannelResponse, UpdateSmsTemplateRequest, UpdateSmsTemplateResponse, TemplateActiveVersionRequest, UpdateTemplateActiveVersionRequest, UpdateTemplateActiveVersionResponse, VoiceChannelRequest, UpdateVoiceChannelRequest, UpdateVoiceChannelResponse, UpdateVoiceTemplateRequest, UpdateVoiceTemplateResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__EndpointTypesElement\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"__EndpointTypesElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Action\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Action\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActivityResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ActivityResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActivitiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ActivitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AttributeType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AttributeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AttributeDimension\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AttributeDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DimensionType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DimensionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SetDimension\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SetDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricDimension\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MetricDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventDimensions\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventDimensions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventCondition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentCondition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Duration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Duration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecencyType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RecencyType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecencyDimension\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RecencyDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentBehaviors\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentBehaviors\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentDemographics\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentDemographics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GPSCoordinates\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GPSCoordinates\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GPSPointDimension\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GPSPointDimension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentLocation\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentDimensions\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentDimensions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SimpleCondition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SimpleCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Operator\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Operator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Condition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Condition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WaitTime\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"WaitTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConditionalSplitActivity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConditionalSplitActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyCustomMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JourneyCustomMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CustomMessageActivity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CustomMessageActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyEmailMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JourneyEmailMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailMessageActivity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EmailMessageActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HoldoutActivity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HoldoutActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MultiConditionalBranch\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MultiConditionalBranch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MultiConditionalSplitActivity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MultiConditionalSplitActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyPushMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JourneyPushMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PushMessageActivity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PushMessageActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RandomSplitEntry\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RandomSplitEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RandomSplitActivity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RandomSplitActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MessageType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneySMSMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JourneySMSMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSMessageActivity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SMSMessageActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WaitActivity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"WaitActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Activity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Activity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChannelType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ChannelType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AddressConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AddressConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ADMChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ADMChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ADMChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ADMChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ADMMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ADMMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AndroidPushNotificationTemplate\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AndroidPushNotificationTemplate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSPushNotificationTemplate\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSPushNotificationTemplate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSSandboxChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSSandboxChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSVoipChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSVoipChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipSandboxChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSVoipSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipSandboxChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"APNSVoipSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResultRowValue\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResultRowValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResultRow\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResultRow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseKpiResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BaseKpiResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ApplicationDateRangeKpiResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ApplicationDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ApplicationResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ApplicationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Mode\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Mode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignHook\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignHook\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignLimits\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignLimits\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QuietTime\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"QuietTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ApplicationSettingsResource\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ApplicationSettingsResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ApplicationsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ApplicationsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AttributesResource\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AttributesResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadRequestException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BadRequestException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaiduChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BaiduChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaiduChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BaiduChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaiduMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BaiduMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignCustomMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignCustomMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignDateRangeKpiResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignEmailMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignEmailMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilterType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FilterType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignEventFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignEventFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CustomDeliveryConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CustomDeliveryConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Message\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Message\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignSmsMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignSmsMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MessageConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Frequency\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Frequency\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Schedule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Schedule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignState\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Template\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Template\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TemplateConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TreatmentResource\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TreatmentResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CampaignsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CampaignsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChannelsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ChannelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateApplicationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateApplicationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateAppRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateAppRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateAppResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateAppResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ForbiddenException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ForbiddenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerErrorException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalServerErrorException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MethodNotAllowedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MethodNotAllowedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PayloadTooLargeException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PayloadTooLargeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TooManyRequestsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteTreatmentResource\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"WriteTreatmentResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteCampaignRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"WriteCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCampaignRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCampaignResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateCampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEmailTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateEmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateTemplateMessageBody\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateTemplateMessageBody\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateEmailTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateEmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateExportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportJobResource\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExportJobResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateExportJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateExportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Format\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Format\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ImportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateImportJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateImportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportJobResource\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ImportJobResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ImportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateImportJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateImportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyLimits\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JourneyLimits\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneySchedule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JourneySchedule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStartCondition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventStartCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartCondition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartCondition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"State\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"State\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteJourneyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"WriteJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateJourneyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JourneyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateJourneyResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateJourneyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultPushNotificationTemplate\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DefaultPushNotificationTemplate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PushNotificationTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PushNotificationTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePushTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreatePushTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreatePushTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreatePushTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationShape\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateRecommenderConfigurationShape\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateRecommenderConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecommenderConfigurationResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateRecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentReference\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentReference\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SourceType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SourceType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Type\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Type\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentGroup\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentGroup\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Include\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Include\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentGroupList\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentGroupList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteSegmentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"WriteSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSegmentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentImportResource\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentImportResource\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSegmentResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateSegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SMSTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSmsTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateSmsTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateSmsTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateSmsTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateVoiceTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateVoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateVoiceTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateVoiceTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DefaultMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultPushNotificationMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DefaultPushNotificationMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAdmChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteAdmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAdmChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteAdmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteApnsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteApnsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsSandboxChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteApnsSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsSandboxChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteApnsSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteApnsVoipChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteApnsVoipChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipSandboxChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteApnsVoipSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipSandboxChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteApnsVoipSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAppRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteAppRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteAppResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteAppResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBaiduChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBaiduChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBaiduChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBaiduChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCampaignRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCampaignResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteCampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEmailChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EmailChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEmailChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageBody\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MessageBody\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointDemographic\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointDemographic\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointLocation\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointUser\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointUser\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEventStreamRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEventStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStream\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteEventStreamResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteEventStreamResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGcmChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteGcmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GCMChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GCMChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteGcmChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteGcmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteJourneyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteJourneyResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteJourneyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePushTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeletePushTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePushTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeletePushTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRecommenderConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteRecommenderConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteRecommenderConfigurationResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteRecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSegmentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSegmentResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSmsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SMSChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSmsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSmsTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteSmsTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteUserEndpointsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteUserEndpointsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteUserEndpointsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteUserEndpointsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteVoiceChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VoiceChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteVoiceChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteVoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteVoiceTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeliveryStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RawEmail\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RawEmail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SimpleEmailPart\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SimpleEmailPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SimpleEmail\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SimpleEmail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EmailMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GCMMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GCMMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SMSMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceMessage\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VoiceMessage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DirectMessageConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DirectMessageConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EmailChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TemplateType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointBatchItem\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointBatchItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointBatchRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointBatchRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointItemResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointItemResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointMessageResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointMessageResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndpointSendConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EndpointSendConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Session\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Session\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Event\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Event\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventItemResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventItemResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PublicEndpoint\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PublicEndpoint\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsBatch\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventsBatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ItemResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ItemResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExportJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GCMChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GCMChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAdmChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetAdmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAdmChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetAdmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApnsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApnsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsSandboxChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApnsSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsSandboxChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApnsSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApnsVoipChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApnsVoipChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipSandboxChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApnsVoipSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipSandboxChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApnsVoipSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetAppRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetAppResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationDateRangeKpiRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApplicationDateRangeKpiRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationDateRangeKpiResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApplicationDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationSettingsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApplicationSettingsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationSettingsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetApplicationSettingsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetAppsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetAppsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetAppsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBaiduChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBaiduChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBaiduChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBaiduChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignActivitiesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignActivitiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignActivitiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignActivitiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignDateRangeKpiRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignDateRangeKpiRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignDateRangeKpiResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCampaignVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetChannelsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetChannelsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetChannelsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetChannelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetEmailChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetEmailChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailTemplateRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetEmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEmailTemplateResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetEmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEndpointRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEndpointResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEventStreamRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetEventStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetEventStreamResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetEventStreamResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetExportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetExportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetExportJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetExportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGcmChannelRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetGcmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetGcmChannelResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetGcmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetImportJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetImportJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetImportJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ImportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetImportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetJourneyResponse\"]; });\n\n/* harmony import */ var _models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./models_1 */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyDateRangeKpiRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyDateRangeKpiRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyDateRangeKpiResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"JourneyDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyDateRangeKpiResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyDateRangeKpiResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionActivityMetricsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyExecutionActivityMetricsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyExecutionActivityMetricsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"JourneyExecutionActivityMetricsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionActivityMetricsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyExecutionActivityMetricsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionMetricsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyExecutionMetricsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyExecutionMetricsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"JourneyExecutionMetricsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionMetricsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetJourneyExecutionMetricsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPushTemplateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetPushTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PushNotificationTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"PushNotificationTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPushTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetPushTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetRecommenderConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetRecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetRecommenderConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListRecommenderConfigurationsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListRecommenderConfigurationsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetRecommenderConfigurationsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentExportJobsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentExportJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentExportJobsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentExportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentImportJobsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentImportJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentImportJobsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentImportJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SegmentsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSmsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSmsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsTemplateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSmsTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SMSTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSmsTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetSmsTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetUserEndpointsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetUserEndpointsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetUserEndpointsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetUserEndpointsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetVoiceChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetVoiceChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceTemplateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetVoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"VoiceTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"GetVoiceTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneysResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"JourneysResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JourneyStateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"JourneyStateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListJourneysRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListJourneysRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListJourneysResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListJourneysResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"TemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateVersionResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"TemplateVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagsModel\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"TagsModel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTagsForResourceResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplatesRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTemplatesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplatesResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"TemplatesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplatesResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTemplatesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplateVersionsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTemplateVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateVersionsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"TemplateVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTemplateVersionsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ListTemplateVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageResult\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"MessageResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"MessageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"MessageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NumberValidateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"NumberValidateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NumberValidateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"NumberValidateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PhoneNumberValidateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"PhoneNumberValidateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PhoneNumberValidateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"PhoneNumberValidateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"PutEventsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"PutEventsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteEventStream\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"WriteEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventStreamRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"PutEventStreamRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutEventStreamResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"PutEventStreamResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateAttributesRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateAttributesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RemoveAttributesRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"RemoveAttributesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RemoveAttributesResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"RemoveAttributesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendMessagesRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendMessagesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendMessagesResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendMessagesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessageRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendUsersMessageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessagesRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendUsersMessagesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessageResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendUsersMessageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessagesResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SendUsersMessagesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagResourceRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"TagResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UntagResourceRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateAdmChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateAdmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateAdmChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateAdmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsSandboxChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsSandboxChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsVoipChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsVoipChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipSandboxChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsVoipSandboxChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipSandboxChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApnsVoipSandboxChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WriteApplicationSettingsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"WriteApplicationSettingsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApplicationSettingsRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApplicationSettingsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateApplicationSettingsResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateApplicationSettingsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateBaiduChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateBaiduChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateBaiduChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateBaiduChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateCampaignRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateCampaignRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateCampaignResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateCampaignResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEmailChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEmailChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailTemplateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEmailTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEmailTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointsBatchRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointsBatchRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointsBatchResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateEndpointsBatchResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGcmChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateGcmChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateGcmChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateGcmChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateJourneyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateJourneyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyStateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateJourneyStateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyStateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateJourneyStateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePushTemplateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdatePushTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdatePushTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdatePushTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationShape\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateRecommenderConfigurationShape\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateRecommenderConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateRecommenderConfigurationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSegmentRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSegmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSegmentResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSegmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SMSChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SMSChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSmsChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSmsChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsTemplateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSmsTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateSmsTemplateResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TemplateActiveVersionRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"TemplateActiveVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTemplateActiveVersionRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateTemplateActiveVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateTemplateActiveVersionResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateTemplateActiveVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VoiceChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"VoiceChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceChannelRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateVoiceChannelRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceChannelResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateVoiceChannelResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceTemplateRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateVoiceTemplateRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceTemplateResponse\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UpdateVoiceTemplateResponse\"]; });\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js ***! \**************************************************************************/ /*! exports provided: __EndpointTypesElement, Action, ActivityResponse, ActivitiesResponse, AttributeType, AttributeDimension, DimensionType, SetDimension, MetricDimension, EventDimensions, EventCondition, SegmentCondition, Duration, RecencyType, RecencyDimension, SegmentBehaviors, SegmentDemographics, GPSCoordinates, GPSPointDimension, SegmentLocation, SegmentDimensions, SimpleCondition, Operator, Condition, WaitTime, ConditionalSplitActivity, JourneyCustomMessage, CustomMessageActivity, JourneyEmailMessage, EmailMessageActivity, HoldoutActivity, MultiConditionalBranch, MultiConditionalSplitActivity, JourneyPushMessage, PushMessageActivity, RandomSplitEntry, RandomSplitActivity, MessageType, JourneySMSMessage, SMSMessageActivity, WaitActivity, Activity, ChannelType, AddressConfiguration, ADMChannelRequest, ADMChannelResponse, ADMMessage, AndroidPushNotificationTemplate, APNSChannelRequest, APNSChannelResponse, APNSMessage, APNSPushNotificationTemplate, APNSSandboxChannelRequest, APNSSandboxChannelResponse, APNSVoipChannelRequest, APNSVoipChannelResponse, APNSVoipSandboxChannelRequest, APNSVoipSandboxChannelResponse, ResultRowValue, ResultRow, BaseKpiResult, ApplicationDateRangeKpiResponse, ApplicationResponse, Mode, CampaignHook, CampaignLimits, QuietTime, ApplicationSettingsResource, ApplicationsResponse, AttributesResource, BadRequestException, BaiduChannelRequest, BaiduChannelResponse, BaiduMessage, CampaignCustomMessage, CampaignDateRangeKpiResponse, CampaignEmailMessage, FilterType, CampaignEventFilter, CustomDeliveryConfiguration, Message, CampaignSmsMessage, MessageConfiguration, Frequency, Schedule, CampaignStatus, CampaignState, Template, TemplateConfiguration, TreatmentResource, CampaignResponse, CampaignsResponse, ChannelResponse, ChannelsResponse, ConflictException, CreateApplicationRequest, CreateAppRequest, CreateAppResponse, ForbiddenException, InternalServerErrorException, MethodNotAllowedException, NotFoundException, PayloadTooLargeException, TooManyRequestsException, WriteTreatmentResource, WriteCampaignRequest, CreateCampaignRequest, CreateCampaignResponse, EmailTemplateRequest, CreateEmailTemplateRequest, CreateTemplateMessageBody, CreateEmailTemplateResponse, ExportJobRequest, CreateExportJobRequest, ExportJobResource, JobStatus, ExportJobResponse, CreateExportJobResponse, Format, ImportJobRequest, CreateImportJobRequest, ImportJobResource, ImportJobResponse, CreateImportJobResponse, JourneyLimits, JourneySchedule, EventFilter, EventStartCondition, StartCondition, State, WriteJourneyRequest, CreateJourneyRequest, JourneyResponse, CreateJourneyResponse, DefaultPushNotificationTemplate, PushNotificationTemplateRequest, CreatePushTemplateRequest, CreatePushTemplateResponse, CreateRecommenderConfigurationShape, CreateRecommenderConfigurationRequest, RecommenderConfigurationResponse, CreateRecommenderConfigurationResponse, SegmentReference, SourceType, Type, SegmentGroup, Include, SegmentGroupList, WriteSegmentRequest, CreateSegmentRequest, SegmentImportResource, SegmentType, SegmentResponse, CreateSegmentResponse, SMSTemplateRequest, CreateSmsTemplateRequest, CreateSmsTemplateResponse, VoiceTemplateRequest, CreateVoiceTemplateRequest, CreateVoiceTemplateResponse, DefaultMessage, DefaultPushNotificationMessage, DeleteAdmChannelRequest, DeleteAdmChannelResponse, DeleteApnsChannelRequest, DeleteApnsChannelResponse, DeleteApnsSandboxChannelRequest, DeleteApnsSandboxChannelResponse, DeleteApnsVoipChannelRequest, DeleteApnsVoipChannelResponse, DeleteApnsVoipSandboxChannelRequest, DeleteApnsVoipSandboxChannelResponse, DeleteAppRequest, DeleteAppResponse, DeleteBaiduChannelRequest, DeleteBaiduChannelResponse, DeleteCampaignRequest, DeleteCampaignResponse, DeleteEmailChannelRequest, EmailChannelResponse, DeleteEmailChannelResponse, DeleteEmailTemplateRequest, MessageBody, DeleteEmailTemplateResponse, DeleteEndpointRequest, EndpointDemographic, EndpointLocation, EndpointUser, EndpointResponse, DeleteEndpointResponse, DeleteEventStreamRequest, EventStream, DeleteEventStreamResponse, DeleteGcmChannelRequest, GCMChannelResponse, DeleteGcmChannelResponse, DeleteJourneyRequest, DeleteJourneyResponse, DeletePushTemplateRequest, DeletePushTemplateResponse, DeleteRecommenderConfigurationRequest, DeleteRecommenderConfigurationResponse, DeleteSegmentRequest, DeleteSegmentResponse, DeleteSmsChannelRequest, SMSChannelResponse, DeleteSmsChannelResponse, DeleteSmsTemplateRequest, DeleteSmsTemplateResponse, DeleteUserEndpointsRequest, EndpointsResponse, DeleteUserEndpointsResponse, DeleteVoiceChannelRequest, VoiceChannelResponse, DeleteVoiceChannelResponse, DeleteVoiceTemplateRequest, DeleteVoiceTemplateResponse, DeliveryStatus, RawEmail, SimpleEmailPart, SimpleEmail, EmailMessage, GCMMessage, SMSMessage, VoiceMessage, DirectMessageConfiguration, EmailChannelRequest, TemplateType, EmailTemplateResponse, EndpointBatchItem, EndpointBatchRequest, EndpointItemResponse, EndpointMessageResult, EndpointRequest, EndpointSendConfiguration, Session, Event, EventItemResponse, PublicEndpoint, EventsBatch, EventsRequest, ItemResponse, EventsResponse, ExportJobsResponse, GCMChannelRequest, GetAdmChannelRequest, GetAdmChannelResponse, GetApnsChannelRequest, GetApnsChannelResponse, GetApnsSandboxChannelRequest, GetApnsSandboxChannelResponse, GetApnsVoipChannelRequest, GetApnsVoipChannelResponse, GetApnsVoipSandboxChannelRequest, GetApnsVoipSandboxChannelResponse, GetAppRequest, GetAppResponse, GetApplicationDateRangeKpiRequest, GetApplicationDateRangeKpiResponse, GetApplicationSettingsRequest, GetApplicationSettingsResponse, GetAppsRequest, GetAppsResponse, GetBaiduChannelRequest, GetBaiduChannelResponse, GetCampaignRequest, GetCampaignResponse, GetCampaignActivitiesRequest, GetCampaignActivitiesResponse, GetCampaignDateRangeKpiRequest, GetCampaignDateRangeKpiResponse, GetCampaignsRequest, GetCampaignsResponse, GetCampaignVersionRequest, GetCampaignVersionResponse, GetCampaignVersionsRequest, GetCampaignVersionsResponse, GetChannelsRequest, GetChannelsResponse, GetEmailChannelRequest, GetEmailChannelResponse, GetEmailTemplateRequest, GetEmailTemplateResponse, GetEndpointRequest, GetEndpointResponse, GetEventStreamRequest, GetEventStreamResponse, GetExportJobRequest, GetExportJobResponse, GetExportJobsRequest, GetExportJobsResponse, GetGcmChannelRequest, GetGcmChannelResponse, GetImportJobRequest, GetImportJobResponse, GetImportJobsRequest, ImportJobsResponse, GetImportJobsResponse, GetJourneyRequest, GetJourneyResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__EndpointTypesElement\", function() { return __EndpointTypesElement; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Action\", function() { return Action; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ActivityResponse\", function() { return ActivityResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ActivitiesResponse\", function() { return ActivitiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AttributeType\", function() { return AttributeType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AttributeDimension\", function() { return AttributeDimension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DimensionType\", function() { return DimensionType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SetDimension\", function() { return SetDimension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MetricDimension\", function() { return MetricDimension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventDimensions\", function() { return EventDimensions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventCondition\", function() { return EventCondition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentCondition\", function() { return SegmentCondition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Duration\", function() { return Duration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecencyType\", function() { return RecencyType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecencyDimension\", function() { return RecencyDimension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentBehaviors\", function() { return SegmentBehaviors; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentDemographics\", function() { return SegmentDemographics; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GPSCoordinates\", function() { return GPSCoordinates; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GPSPointDimension\", function() { return GPSPointDimension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentLocation\", function() { return SegmentLocation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentDimensions\", function() { return SegmentDimensions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SimpleCondition\", function() { return SimpleCondition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Operator\", function() { return Operator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Condition\", function() { return Condition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WaitTime\", function() { return WaitTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConditionalSplitActivity\", function() { return ConditionalSplitActivity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneyCustomMessage\", function() { return JourneyCustomMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CustomMessageActivity\", function() { return CustomMessageActivity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneyEmailMessage\", function() { return JourneyEmailMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EmailMessageActivity\", function() { return EmailMessageActivity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HoldoutActivity\", function() { return HoldoutActivity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MultiConditionalBranch\", function() { return MultiConditionalBranch; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MultiConditionalSplitActivity\", function() { return MultiConditionalSplitActivity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneyPushMessage\", function() { return JourneyPushMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PushMessageActivity\", function() { return PushMessageActivity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RandomSplitEntry\", function() { return RandomSplitEntry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RandomSplitActivity\", function() { return RandomSplitActivity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MessageType\", function() { return MessageType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneySMSMessage\", function() { return JourneySMSMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SMSMessageActivity\", function() { return SMSMessageActivity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WaitActivity\", function() { return WaitActivity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Activity\", function() { return Activity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ChannelType\", function() { return ChannelType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AddressConfiguration\", function() { return AddressConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ADMChannelRequest\", function() { return ADMChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ADMChannelResponse\", function() { return ADMChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ADMMessage\", function() { return ADMMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AndroidPushNotificationTemplate\", function() { return AndroidPushNotificationTemplate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSChannelRequest\", function() { return APNSChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSChannelResponse\", function() { return APNSChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSMessage\", function() { return APNSMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSPushNotificationTemplate\", function() { return APNSPushNotificationTemplate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSSandboxChannelRequest\", function() { return APNSSandboxChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSSandboxChannelResponse\", function() { return APNSSandboxChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipChannelRequest\", function() { return APNSVoipChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipChannelResponse\", function() { return APNSVoipChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipSandboxChannelRequest\", function() { return APNSVoipSandboxChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"APNSVoipSandboxChannelResponse\", function() { return APNSVoipSandboxChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResultRowValue\", function() { return ResultRowValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResultRow\", function() { return ResultRow; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BaseKpiResult\", function() { return BaseKpiResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ApplicationDateRangeKpiResponse\", function() { return ApplicationDateRangeKpiResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ApplicationResponse\", function() { return ApplicationResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Mode\", function() { return Mode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignHook\", function() { return CampaignHook; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignLimits\", function() { return CampaignLimits; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QuietTime\", function() { return QuietTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ApplicationSettingsResource\", function() { return ApplicationSettingsResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ApplicationsResponse\", function() { return ApplicationsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AttributesResource\", function() { return AttributesResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BadRequestException\", function() { return BadRequestException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BaiduChannelRequest\", function() { return BaiduChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BaiduChannelResponse\", function() { return BaiduChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BaiduMessage\", function() { return BaiduMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignCustomMessage\", function() { return CampaignCustomMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignDateRangeKpiResponse\", function() { return CampaignDateRangeKpiResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignEmailMessage\", function() { return CampaignEmailMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FilterType\", function() { return FilterType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignEventFilter\", function() { return CampaignEventFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CustomDeliveryConfiguration\", function() { return CustomDeliveryConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Message\", function() { return Message; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignSmsMessage\", function() { return CampaignSmsMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MessageConfiguration\", function() { return MessageConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Frequency\", function() { return Frequency; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Schedule\", function() { return Schedule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignStatus\", function() { return CampaignStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignState\", function() { return CampaignState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Template\", function() { return Template; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TemplateConfiguration\", function() { return TemplateConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TreatmentResource\", function() { return TreatmentResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignResponse\", function() { return CampaignResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CampaignsResponse\", function() { return CampaignsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ChannelResponse\", function() { return ChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ChannelsResponse\", function() { return ChannelsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return ConflictException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateApplicationRequest\", function() { return CreateApplicationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateAppRequest\", function() { return CreateAppRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateAppResponse\", function() { return CreateAppResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ForbiddenException\", function() { return ForbiddenException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalServerErrorException\", function() { return InternalServerErrorException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MethodNotAllowedException\", function() { return MethodNotAllowedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NotFoundException\", function() { return NotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PayloadTooLargeException\", function() { return PayloadTooLargeException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return TooManyRequestsException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WriteTreatmentResource\", function() { return WriteTreatmentResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WriteCampaignRequest\", function() { return WriteCampaignRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateCampaignRequest\", function() { return CreateCampaignRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateCampaignResponse\", function() { return CreateCampaignResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EmailTemplateRequest\", function() { return EmailTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateEmailTemplateRequest\", function() { return CreateEmailTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateTemplateMessageBody\", function() { return CreateTemplateMessageBody; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateEmailTemplateResponse\", function() { return CreateEmailTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExportJobRequest\", function() { return ExportJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateExportJobRequest\", function() { return CreateExportJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExportJobResource\", function() { return ExportJobResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return JobStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExportJobResponse\", function() { return ExportJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateExportJobResponse\", function() { return CreateExportJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Format\", function() { return Format; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImportJobRequest\", function() { return ImportJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateImportJobRequest\", function() { return CreateImportJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImportJobResource\", function() { return ImportJobResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImportJobResponse\", function() { return ImportJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateImportJobResponse\", function() { return CreateImportJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneyLimits\", function() { return JourneyLimits; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneySchedule\", function() { return JourneySchedule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventFilter\", function() { return EventFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventStartCondition\", function() { return EventStartCondition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartCondition\", function() { return StartCondition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"State\", function() { return State; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WriteJourneyRequest\", function() { return WriteJourneyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateJourneyRequest\", function() { return CreateJourneyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneyResponse\", function() { return JourneyResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateJourneyResponse\", function() { return CreateJourneyResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultPushNotificationTemplate\", function() { return DefaultPushNotificationTemplate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PushNotificationTemplateRequest\", function() { return PushNotificationTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreatePushTemplateRequest\", function() { return CreatePushTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreatePushTemplateResponse\", function() { return CreatePushTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationShape\", function() { return CreateRecommenderConfigurationShape; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationRequest\", function() { return CreateRecommenderConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecommenderConfigurationResponse\", function() { return RecommenderConfigurationResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateRecommenderConfigurationResponse\", function() { return CreateRecommenderConfigurationResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentReference\", function() { return SegmentReference; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SourceType\", function() { return SourceType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Type\", function() { return Type; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentGroup\", function() { return SegmentGroup; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Include\", function() { return Include; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentGroupList\", function() { return SegmentGroupList; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WriteSegmentRequest\", function() { return WriteSegmentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateSegmentRequest\", function() { return CreateSegmentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentImportResource\", function() { return SegmentImportResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentType\", function() { return SegmentType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentResponse\", function() { return SegmentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateSegmentResponse\", function() { return CreateSegmentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SMSTemplateRequest\", function() { return SMSTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateSmsTemplateRequest\", function() { return CreateSmsTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateSmsTemplateResponse\", function() { return CreateSmsTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VoiceTemplateRequest\", function() { return VoiceTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateVoiceTemplateRequest\", function() { return CreateVoiceTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateVoiceTemplateResponse\", function() { return CreateVoiceTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultMessage\", function() { return DefaultMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultPushNotificationMessage\", function() { return DefaultPushNotificationMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteAdmChannelRequest\", function() { return DeleteAdmChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteAdmChannelResponse\", function() { return DeleteAdmChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsChannelRequest\", function() { return DeleteApnsChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsChannelResponse\", function() { return DeleteApnsChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsSandboxChannelRequest\", function() { return DeleteApnsSandboxChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsSandboxChannelResponse\", function() { return DeleteApnsSandboxChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipChannelRequest\", function() { return DeleteApnsVoipChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipChannelResponse\", function() { return DeleteApnsVoipChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipSandboxChannelRequest\", function() { return DeleteApnsVoipSandboxChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteApnsVoipSandboxChannelResponse\", function() { return DeleteApnsVoipSandboxChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteAppRequest\", function() { return DeleteAppRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteAppResponse\", function() { return DeleteAppResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBaiduChannelRequest\", function() { return DeleteBaiduChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBaiduChannelResponse\", function() { return DeleteBaiduChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteCampaignRequest\", function() { return DeleteCampaignRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteCampaignResponse\", function() { return DeleteCampaignResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailChannelRequest\", function() { return DeleteEmailChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EmailChannelResponse\", function() { return EmailChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailChannelResponse\", function() { return DeleteEmailChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailTemplateRequest\", function() { return DeleteEmailTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MessageBody\", function() { return MessageBody; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEmailTemplateResponse\", function() { return DeleteEmailTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointRequest\", function() { return DeleteEndpointRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointDemographic\", function() { return EndpointDemographic; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointLocation\", function() { return EndpointLocation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointUser\", function() { return EndpointUser; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointResponse\", function() { return EndpointResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEndpointResponse\", function() { return DeleteEndpointResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEventStreamRequest\", function() { return DeleteEventStreamRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventStream\", function() { return EventStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteEventStreamResponse\", function() { return DeleteEventStreamResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteGcmChannelRequest\", function() { return DeleteGcmChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GCMChannelResponse\", function() { return GCMChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteGcmChannelResponse\", function() { return DeleteGcmChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteJourneyRequest\", function() { return DeleteJourneyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteJourneyResponse\", function() { return DeleteJourneyResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeletePushTemplateRequest\", function() { return DeletePushTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeletePushTemplateResponse\", function() { return DeletePushTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteRecommenderConfigurationRequest\", function() { return DeleteRecommenderConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteRecommenderConfigurationResponse\", function() { return DeleteRecommenderConfigurationResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSegmentRequest\", function() { return DeleteSegmentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSegmentResponse\", function() { return DeleteSegmentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsChannelRequest\", function() { return DeleteSmsChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SMSChannelResponse\", function() { return SMSChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsChannelResponse\", function() { return DeleteSmsChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsTemplateRequest\", function() { return DeleteSmsTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteSmsTemplateResponse\", function() { return DeleteSmsTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteUserEndpointsRequest\", function() { return DeleteUserEndpointsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointsResponse\", function() { return EndpointsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteUserEndpointsResponse\", function() { return DeleteUserEndpointsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceChannelRequest\", function() { return DeleteVoiceChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VoiceChannelResponse\", function() { return VoiceChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceChannelResponse\", function() { return DeleteVoiceChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceTemplateRequest\", function() { return DeleteVoiceTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteVoiceTemplateResponse\", function() { return DeleteVoiceTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeliveryStatus\", function() { return DeliveryStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RawEmail\", function() { return RawEmail; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SimpleEmailPart\", function() { return SimpleEmailPart; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SimpleEmail\", function() { return SimpleEmail; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EmailMessage\", function() { return EmailMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GCMMessage\", function() { return GCMMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SMSMessage\", function() { return SMSMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VoiceMessage\", function() { return VoiceMessage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DirectMessageConfiguration\", function() { return DirectMessageConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EmailChannelRequest\", function() { return EmailChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TemplateType\", function() { return TemplateType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EmailTemplateResponse\", function() { return EmailTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointBatchItem\", function() { return EndpointBatchItem; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointBatchRequest\", function() { return EndpointBatchRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointItemResponse\", function() { return EndpointItemResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointMessageResult\", function() { return EndpointMessageResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointRequest\", function() { return EndpointRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndpointSendConfiguration\", function() { return EndpointSendConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Session\", function() { return Session; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Event\", function() { return Event; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventItemResponse\", function() { return EventItemResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PublicEndpoint\", function() { return PublicEndpoint; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventsBatch\", function() { return EventsBatch; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventsRequest\", function() { return EventsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ItemResponse\", function() { return ItemResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventsResponse\", function() { return EventsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExportJobsResponse\", function() { return ExportJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GCMChannelRequest\", function() { return GCMChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetAdmChannelRequest\", function() { return GetAdmChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetAdmChannelResponse\", function() { return GetAdmChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsChannelRequest\", function() { return GetApnsChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsChannelResponse\", function() { return GetApnsChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsSandboxChannelRequest\", function() { return GetApnsSandboxChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsSandboxChannelResponse\", function() { return GetApnsSandboxChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipChannelRequest\", function() { return GetApnsVoipChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipChannelResponse\", function() { return GetApnsVoipChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipSandboxChannelRequest\", function() { return GetApnsVoipSandboxChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApnsVoipSandboxChannelResponse\", function() { return GetApnsVoipSandboxChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetAppRequest\", function() { return GetAppRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetAppResponse\", function() { return GetAppResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationDateRangeKpiRequest\", function() { return GetApplicationDateRangeKpiRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationDateRangeKpiResponse\", function() { return GetApplicationDateRangeKpiResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationSettingsRequest\", function() { return GetApplicationSettingsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetApplicationSettingsResponse\", function() { return GetApplicationSettingsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetAppsRequest\", function() { return GetAppsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetAppsResponse\", function() { return GetAppsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBaiduChannelRequest\", function() { return GetBaiduChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBaiduChannelResponse\", function() { return GetBaiduChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignRequest\", function() { return GetCampaignRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignResponse\", function() { return GetCampaignResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignActivitiesRequest\", function() { return GetCampaignActivitiesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignActivitiesResponse\", function() { return GetCampaignActivitiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignDateRangeKpiRequest\", function() { return GetCampaignDateRangeKpiRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignDateRangeKpiResponse\", function() { return GetCampaignDateRangeKpiResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignsRequest\", function() { return GetCampaignsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignsResponse\", function() { return GetCampaignsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionRequest\", function() { return GetCampaignVersionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionResponse\", function() { return GetCampaignVersionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionsRequest\", function() { return GetCampaignVersionsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCampaignVersionsResponse\", function() { return GetCampaignVersionsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetChannelsRequest\", function() { return GetChannelsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetChannelsResponse\", function() { return GetChannelsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEmailChannelRequest\", function() { return GetEmailChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEmailChannelResponse\", function() { return GetEmailChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEmailTemplateRequest\", function() { return GetEmailTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEmailTemplateResponse\", function() { return GetEmailTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEndpointRequest\", function() { return GetEndpointRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEndpointResponse\", function() { return GetEndpointResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEventStreamRequest\", function() { return GetEventStreamRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetEventStreamResponse\", function() { return GetEventStreamResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobRequest\", function() { return GetExportJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobResponse\", function() { return GetExportJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobsRequest\", function() { return GetExportJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetExportJobsResponse\", function() { return GetExportJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetGcmChannelRequest\", function() { return GetGcmChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetGcmChannelResponse\", function() { return GetGcmChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobRequest\", function() { return GetImportJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobResponse\", function() { return GetImportJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobsRequest\", function() { return GetImportJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImportJobsResponse\", function() { return ImportJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetImportJobsResponse\", function() { return GetImportJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyRequest\", function() { return GetJourneyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyResponse\", function() { return GetJourneyResponse; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n\nvar __EndpointTypesElement;\n(function (__EndpointTypesElement) {\n __EndpointTypesElement[\"ADM\"] = \"ADM\";\n __EndpointTypesElement[\"APNS\"] = \"APNS\";\n __EndpointTypesElement[\"APNS_SANDBOX\"] = \"APNS_SANDBOX\";\n __EndpointTypesElement[\"APNS_VOIP\"] = \"APNS_VOIP\";\n __EndpointTypesElement[\"APNS_VOIP_SANDBOX\"] = \"APNS_VOIP_SANDBOX\";\n __EndpointTypesElement[\"BAIDU\"] = \"BAIDU\";\n __EndpointTypesElement[\"CUSTOM\"] = \"CUSTOM\";\n __EndpointTypesElement[\"EMAIL\"] = \"EMAIL\";\n __EndpointTypesElement[\"GCM\"] = \"GCM\";\n __EndpointTypesElement[\"PUSH\"] = \"PUSH\";\n __EndpointTypesElement[\"SMS\"] = \"SMS\";\n __EndpointTypesElement[\"VOICE\"] = \"VOICE\";\n})(__EndpointTypesElement || (__EndpointTypesElement = {}));\nvar Action;\n(function (Action) {\n Action[\"DEEP_LINK\"] = \"DEEP_LINK\";\n Action[\"OPEN_APP\"] = \"OPEN_APP\";\n Action[\"URL\"] = \"URL\";\n})(Action || (Action = {}));\nvar ActivityResponse;\n(function (ActivityResponse) {\n ActivityResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ActivityResponse || (ActivityResponse = {}));\nvar ActivitiesResponse;\n(function (ActivitiesResponse) {\n ActivitiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ActivitiesResponse || (ActivitiesResponse = {}));\nvar AttributeType;\n(function (AttributeType) {\n AttributeType[\"EXCLUSIVE\"] = \"EXCLUSIVE\";\n AttributeType[\"INCLUSIVE\"] = \"INCLUSIVE\";\n})(AttributeType || (AttributeType = {}));\nvar AttributeDimension;\n(function (AttributeDimension) {\n AttributeDimension.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AttributeDimension || (AttributeDimension = {}));\nvar DimensionType;\n(function (DimensionType) {\n DimensionType[\"EXCLUSIVE\"] = \"EXCLUSIVE\";\n DimensionType[\"INCLUSIVE\"] = \"INCLUSIVE\";\n})(DimensionType || (DimensionType = {}));\nvar SetDimension;\n(function (SetDimension) {\n SetDimension.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SetDimension || (SetDimension = {}));\nvar MetricDimension;\n(function (MetricDimension) {\n MetricDimension.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MetricDimension || (MetricDimension = {}));\nvar EventDimensions;\n(function (EventDimensions) {\n EventDimensions.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventDimensions || (EventDimensions = {}));\nvar EventCondition;\n(function (EventCondition) {\n EventCondition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventCondition || (EventCondition = {}));\nvar SegmentCondition;\n(function (SegmentCondition) {\n SegmentCondition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentCondition || (SegmentCondition = {}));\nvar Duration;\n(function (Duration) {\n Duration[\"DAY_14\"] = \"DAY_14\";\n Duration[\"DAY_30\"] = \"DAY_30\";\n Duration[\"DAY_7\"] = \"DAY_7\";\n Duration[\"HR_24\"] = \"HR_24\";\n})(Duration || (Duration = {}));\nvar RecencyType;\n(function (RecencyType) {\n RecencyType[\"ACTIVE\"] = \"ACTIVE\";\n RecencyType[\"INACTIVE\"] = \"INACTIVE\";\n})(RecencyType || (RecencyType = {}));\nvar RecencyDimension;\n(function (RecencyDimension) {\n RecencyDimension.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RecencyDimension || (RecencyDimension = {}));\nvar SegmentBehaviors;\n(function (SegmentBehaviors) {\n SegmentBehaviors.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentBehaviors || (SegmentBehaviors = {}));\nvar SegmentDemographics;\n(function (SegmentDemographics) {\n SegmentDemographics.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentDemographics || (SegmentDemographics = {}));\nvar GPSCoordinates;\n(function (GPSCoordinates) {\n GPSCoordinates.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GPSCoordinates || (GPSCoordinates = {}));\nvar GPSPointDimension;\n(function (GPSPointDimension) {\n GPSPointDimension.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GPSPointDimension || (GPSPointDimension = {}));\nvar SegmentLocation;\n(function (SegmentLocation) {\n SegmentLocation.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentLocation || (SegmentLocation = {}));\nvar SegmentDimensions;\n(function (SegmentDimensions) {\n SegmentDimensions.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentDimensions || (SegmentDimensions = {}));\nvar SimpleCondition;\n(function (SimpleCondition) {\n SimpleCondition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SimpleCondition || (SimpleCondition = {}));\nvar Operator;\n(function (Operator) {\n Operator[\"ALL\"] = \"ALL\";\n Operator[\"ANY\"] = \"ANY\";\n})(Operator || (Operator = {}));\nvar Condition;\n(function (Condition) {\n Condition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Condition || (Condition = {}));\nvar WaitTime;\n(function (WaitTime) {\n WaitTime.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(WaitTime || (WaitTime = {}));\nvar ConditionalSplitActivity;\n(function (ConditionalSplitActivity) {\n ConditionalSplitActivity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ConditionalSplitActivity || (ConditionalSplitActivity = {}));\nvar JourneyCustomMessage;\n(function (JourneyCustomMessage) {\n JourneyCustomMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneyCustomMessage || (JourneyCustomMessage = {}));\nvar CustomMessageActivity;\n(function (CustomMessageActivity) {\n CustomMessageActivity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CustomMessageActivity || (CustomMessageActivity = {}));\nvar JourneyEmailMessage;\n(function (JourneyEmailMessage) {\n JourneyEmailMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneyEmailMessage || (JourneyEmailMessage = {}));\nvar EmailMessageActivity;\n(function (EmailMessageActivity) {\n EmailMessageActivity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EmailMessageActivity || (EmailMessageActivity = {}));\nvar HoldoutActivity;\n(function (HoldoutActivity) {\n HoldoutActivity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HoldoutActivity || (HoldoutActivity = {}));\nvar MultiConditionalBranch;\n(function (MultiConditionalBranch) {\n MultiConditionalBranch.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MultiConditionalBranch || (MultiConditionalBranch = {}));\nvar MultiConditionalSplitActivity;\n(function (MultiConditionalSplitActivity) {\n MultiConditionalSplitActivity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MultiConditionalSplitActivity || (MultiConditionalSplitActivity = {}));\nvar JourneyPushMessage;\n(function (JourneyPushMessage) {\n JourneyPushMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneyPushMessage || (JourneyPushMessage = {}));\nvar PushMessageActivity;\n(function (PushMessageActivity) {\n PushMessageActivity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PushMessageActivity || (PushMessageActivity = {}));\nvar RandomSplitEntry;\n(function (RandomSplitEntry) {\n RandomSplitEntry.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RandomSplitEntry || (RandomSplitEntry = {}));\nvar RandomSplitActivity;\n(function (RandomSplitActivity) {\n RandomSplitActivity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RandomSplitActivity || (RandomSplitActivity = {}));\nvar MessageType;\n(function (MessageType) {\n MessageType[\"PROMOTIONAL\"] = \"PROMOTIONAL\";\n MessageType[\"TRANSACTIONAL\"] = \"TRANSACTIONAL\";\n})(MessageType || (MessageType = {}));\nvar JourneySMSMessage;\n(function (JourneySMSMessage) {\n JourneySMSMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneySMSMessage || (JourneySMSMessage = {}));\nvar SMSMessageActivity;\n(function (SMSMessageActivity) {\n SMSMessageActivity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SMSMessageActivity || (SMSMessageActivity = {}));\nvar WaitActivity;\n(function (WaitActivity) {\n WaitActivity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(WaitActivity || (WaitActivity = {}));\nvar Activity;\n(function (Activity) {\n Activity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Activity || (Activity = {}));\nvar ChannelType;\n(function (ChannelType) {\n ChannelType[\"ADM\"] = \"ADM\";\n ChannelType[\"APNS\"] = \"APNS\";\n ChannelType[\"APNS_SANDBOX\"] = \"APNS_SANDBOX\";\n ChannelType[\"APNS_VOIP\"] = \"APNS_VOIP\";\n ChannelType[\"APNS_VOIP_SANDBOX\"] = \"APNS_VOIP_SANDBOX\";\n ChannelType[\"BAIDU\"] = \"BAIDU\";\n ChannelType[\"CUSTOM\"] = \"CUSTOM\";\n ChannelType[\"EMAIL\"] = \"EMAIL\";\n ChannelType[\"GCM\"] = \"GCM\";\n ChannelType[\"PUSH\"] = \"PUSH\";\n ChannelType[\"SMS\"] = \"SMS\";\n ChannelType[\"VOICE\"] = \"VOICE\";\n})(ChannelType || (ChannelType = {}));\nvar AddressConfiguration;\n(function (AddressConfiguration) {\n AddressConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AddressConfiguration || (AddressConfiguration = {}));\nvar ADMChannelRequest;\n(function (ADMChannelRequest) {\n ADMChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ADMChannelRequest || (ADMChannelRequest = {}));\nvar ADMChannelResponse;\n(function (ADMChannelResponse) {\n ADMChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ADMChannelResponse || (ADMChannelResponse = {}));\nvar ADMMessage;\n(function (ADMMessage) {\n ADMMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ADMMessage || (ADMMessage = {}));\nvar AndroidPushNotificationTemplate;\n(function (AndroidPushNotificationTemplate) {\n AndroidPushNotificationTemplate.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AndroidPushNotificationTemplate || (AndroidPushNotificationTemplate = {}));\nvar APNSChannelRequest;\n(function (APNSChannelRequest) {\n APNSChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSChannelRequest || (APNSChannelRequest = {}));\nvar APNSChannelResponse;\n(function (APNSChannelResponse) {\n APNSChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSChannelResponse || (APNSChannelResponse = {}));\nvar APNSMessage;\n(function (APNSMessage) {\n APNSMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSMessage || (APNSMessage = {}));\nvar APNSPushNotificationTemplate;\n(function (APNSPushNotificationTemplate) {\n APNSPushNotificationTemplate.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSPushNotificationTemplate || (APNSPushNotificationTemplate = {}));\nvar APNSSandboxChannelRequest;\n(function (APNSSandboxChannelRequest) {\n APNSSandboxChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSSandboxChannelRequest || (APNSSandboxChannelRequest = {}));\nvar APNSSandboxChannelResponse;\n(function (APNSSandboxChannelResponse) {\n APNSSandboxChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSSandboxChannelResponse || (APNSSandboxChannelResponse = {}));\nvar APNSVoipChannelRequest;\n(function (APNSVoipChannelRequest) {\n APNSVoipChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSVoipChannelRequest || (APNSVoipChannelRequest = {}));\nvar APNSVoipChannelResponse;\n(function (APNSVoipChannelResponse) {\n APNSVoipChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSVoipChannelResponse || (APNSVoipChannelResponse = {}));\nvar APNSVoipSandboxChannelRequest;\n(function (APNSVoipSandboxChannelRequest) {\n APNSVoipSandboxChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSVoipSandboxChannelRequest || (APNSVoipSandboxChannelRequest = {}));\nvar APNSVoipSandboxChannelResponse;\n(function (APNSVoipSandboxChannelResponse) {\n APNSVoipSandboxChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(APNSVoipSandboxChannelResponse || (APNSVoipSandboxChannelResponse = {}));\nvar ResultRowValue;\n(function (ResultRowValue) {\n ResultRowValue.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResultRowValue || (ResultRowValue = {}));\nvar ResultRow;\n(function (ResultRow) {\n ResultRow.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResultRow || (ResultRow = {}));\nvar BaseKpiResult;\n(function (BaseKpiResult) {\n BaseKpiResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BaseKpiResult || (BaseKpiResult = {}));\nvar ApplicationDateRangeKpiResponse;\n(function (ApplicationDateRangeKpiResponse) {\n ApplicationDateRangeKpiResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ApplicationDateRangeKpiResponse || (ApplicationDateRangeKpiResponse = {}));\nvar ApplicationResponse;\n(function (ApplicationResponse) {\n ApplicationResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ApplicationResponse || (ApplicationResponse = {}));\nvar Mode;\n(function (Mode) {\n Mode[\"DELIVERY\"] = \"DELIVERY\";\n Mode[\"FILTER\"] = \"FILTER\";\n})(Mode || (Mode = {}));\nvar CampaignHook;\n(function (CampaignHook) {\n CampaignHook.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignHook || (CampaignHook = {}));\nvar CampaignLimits;\n(function (CampaignLimits) {\n CampaignLimits.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignLimits || (CampaignLimits = {}));\nvar QuietTime;\n(function (QuietTime) {\n QuietTime.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(QuietTime || (QuietTime = {}));\nvar ApplicationSettingsResource;\n(function (ApplicationSettingsResource) {\n ApplicationSettingsResource.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ApplicationSettingsResource || (ApplicationSettingsResource = {}));\nvar ApplicationsResponse;\n(function (ApplicationsResponse) {\n ApplicationsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ApplicationsResponse || (ApplicationsResponse = {}));\nvar AttributesResource;\n(function (AttributesResource) {\n AttributesResource.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AttributesResource || (AttributesResource = {}));\nvar BadRequestException;\n(function (BadRequestException) {\n BadRequestException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BadRequestException || (BadRequestException = {}));\nvar BaiduChannelRequest;\n(function (BaiduChannelRequest) {\n BaiduChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BaiduChannelRequest || (BaiduChannelRequest = {}));\nvar BaiduChannelResponse;\n(function (BaiduChannelResponse) {\n BaiduChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BaiduChannelResponse || (BaiduChannelResponse = {}));\nvar BaiduMessage;\n(function (BaiduMessage) {\n BaiduMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BaiduMessage || (BaiduMessage = {}));\nvar CampaignCustomMessage;\n(function (CampaignCustomMessage) {\n CampaignCustomMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignCustomMessage || (CampaignCustomMessage = {}));\nvar CampaignDateRangeKpiResponse;\n(function (CampaignDateRangeKpiResponse) {\n CampaignDateRangeKpiResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignDateRangeKpiResponse || (CampaignDateRangeKpiResponse = {}));\nvar CampaignEmailMessage;\n(function (CampaignEmailMessage) {\n CampaignEmailMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignEmailMessage || (CampaignEmailMessage = {}));\nvar FilterType;\n(function (FilterType) {\n FilterType[\"ENDPOINT\"] = \"ENDPOINT\";\n FilterType[\"SYSTEM\"] = \"SYSTEM\";\n})(FilterType || (FilterType = {}));\nvar CampaignEventFilter;\n(function (CampaignEventFilter) {\n CampaignEventFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignEventFilter || (CampaignEventFilter = {}));\nvar CustomDeliveryConfiguration;\n(function (CustomDeliveryConfiguration) {\n CustomDeliveryConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CustomDeliveryConfiguration || (CustomDeliveryConfiguration = {}));\nvar Message;\n(function (Message) {\n Message.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Message || (Message = {}));\nvar CampaignSmsMessage;\n(function (CampaignSmsMessage) {\n CampaignSmsMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignSmsMessage || (CampaignSmsMessage = {}));\nvar MessageConfiguration;\n(function (MessageConfiguration) {\n MessageConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MessageConfiguration || (MessageConfiguration = {}));\nvar Frequency;\n(function (Frequency) {\n Frequency[\"DAILY\"] = \"DAILY\";\n Frequency[\"EVENT\"] = \"EVENT\";\n Frequency[\"HOURLY\"] = \"HOURLY\";\n Frequency[\"MONTHLY\"] = \"MONTHLY\";\n Frequency[\"ONCE\"] = \"ONCE\";\n Frequency[\"WEEKLY\"] = \"WEEKLY\";\n})(Frequency || (Frequency = {}));\nvar Schedule;\n(function (Schedule) {\n Schedule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Schedule || (Schedule = {}));\nvar CampaignStatus;\n(function (CampaignStatus) {\n CampaignStatus[\"COMPLETED\"] = \"COMPLETED\";\n CampaignStatus[\"DELETED\"] = \"DELETED\";\n CampaignStatus[\"EXECUTING\"] = \"EXECUTING\";\n CampaignStatus[\"INVALID\"] = \"INVALID\";\n CampaignStatus[\"PAUSED\"] = \"PAUSED\";\n CampaignStatus[\"PENDING_NEXT_RUN\"] = \"PENDING_NEXT_RUN\";\n CampaignStatus[\"SCHEDULED\"] = \"SCHEDULED\";\n})(CampaignStatus || (CampaignStatus = {}));\nvar CampaignState;\n(function (CampaignState) {\n CampaignState.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignState || (CampaignState = {}));\nvar Template;\n(function (Template) {\n Template.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Template || (Template = {}));\nvar TemplateConfiguration;\n(function (TemplateConfiguration) {\n TemplateConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TemplateConfiguration || (TemplateConfiguration = {}));\nvar TreatmentResource;\n(function (TreatmentResource) {\n TreatmentResource.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TreatmentResource || (TreatmentResource = {}));\nvar CampaignResponse;\n(function (CampaignResponse) {\n CampaignResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignResponse || (CampaignResponse = {}));\nvar CampaignsResponse;\n(function (CampaignsResponse) {\n CampaignsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CampaignsResponse || (CampaignsResponse = {}));\nvar ChannelResponse;\n(function (ChannelResponse) {\n ChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ChannelResponse || (ChannelResponse = {}));\nvar ChannelsResponse;\n(function (ChannelsResponse) {\n ChannelsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ChannelsResponse || (ChannelsResponse = {}));\nvar ConflictException;\n(function (ConflictException) {\n ConflictException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ConflictException || (ConflictException = {}));\nvar CreateApplicationRequest;\n(function (CreateApplicationRequest) {\n CreateApplicationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateApplicationRequest || (CreateApplicationRequest = {}));\nvar CreateAppRequest;\n(function (CreateAppRequest) {\n CreateAppRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateAppRequest || (CreateAppRequest = {}));\nvar CreateAppResponse;\n(function (CreateAppResponse) {\n CreateAppResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateAppResponse || (CreateAppResponse = {}));\nvar ForbiddenException;\n(function (ForbiddenException) {\n ForbiddenException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ForbiddenException || (ForbiddenException = {}));\nvar InternalServerErrorException;\n(function (InternalServerErrorException) {\n InternalServerErrorException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InternalServerErrorException || (InternalServerErrorException = {}));\nvar MethodNotAllowedException;\n(function (MethodNotAllowedException) {\n MethodNotAllowedException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MethodNotAllowedException || (MethodNotAllowedException = {}));\nvar NotFoundException;\n(function (NotFoundException) {\n NotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NotFoundException || (NotFoundException = {}));\nvar PayloadTooLargeException;\n(function (PayloadTooLargeException) {\n PayloadTooLargeException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PayloadTooLargeException || (PayloadTooLargeException = {}));\nvar TooManyRequestsException;\n(function (TooManyRequestsException) {\n TooManyRequestsException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TooManyRequestsException || (TooManyRequestsException = {}));\nvar WriteTreatmentResource;\n(function (WriteTreatmentResource) {\n WriteTreatmentResource.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(WriteTreatmentResource || (WriteTreatmentResource = {}));\nvar WriteCampaignRequest;\n(function (WriteCampaignRequest) {\n WriteCampaignRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(WriteCampaignRequest || (WriteCampaignRequest = {}));\nvar CreateCampaignRequest;\n(function (CreateCampaignRequest) {\n CreateCampaignRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateCampaignRequest || (CreateCampaignRequest = {}));\nvar CreateCampaignResponse;\n(function (CreateCampaignResponse) {\n CreateCampaignResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateCampaignResponse || (CreateCampaignResponse = {}));\nvar EmailTemplateRequest;\n(function (EmailTemplateRequest) {\n EmailTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EmailTemplateRequest || (EmailTemplateRequest = {}));\nvar CreateEmailTemplateRequest;\n(function (CreateEmailTemplateRequest) {\n CreateEmailTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateEmailTemplateRequest || (CreateEmailTemplateRequest = {}));\nvar CreateTemplateMessageBody;\n(function (CreateTemplateMessageBody) {\n CreateTemplateMessageBody.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateTemplateMessageBody || (CreateTemplateMessageBody = {}));\nvar CreateEmailTemplateResponse;\n(function (CreateEmailTemplateResponse) {\n CreateEmailTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateEmailTemplateResponse || (CreateEmailTemplateResponse = {}));\nvar ExportJobRequest;\n(function (ExportJobRequest) {\n ExportJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExportJobRequest || (ExportJobRequest = {}));\nvar CreateExportJobRequest;\n(function (CreateExportJobRequest) {\n CreateExportJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateExportJobRequest || (CreateExportJobRequest = {}));\nvar ExportJobResource;\n(function (ExportJobResource) {\n ExportJobResource.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExportJobResource || (ExportJobResource = {}));\nvar JobStatus;\n(function (JobStatus) {\n JobStatus[\"COMPLETED\"] = \"COMPLETED\";\n JobStatus[\"COMPLETING\"] = \"COMPLETING\";\n JobStatus[\"CREATED\"] = \"CREATED\";\n JobStatus[\"FAILED\"] = \"FAILED\";\n JobStatus[\"FAILING\"] = \"FAILING\";\n JobStatus[\"INITIALIZING\"] = \"INITIALIZING\";\n JobStatus[\"PENDING_JOB\"] = \"PENDING_JOB\";\n JobStatus[\"PREPARING_FOR_INITIALIZATION\"] = \"PREPARING_FOR_INITIALIZATION\";\n JobStatus[\"PROCESSING\"] = \"PROCESSING\";\n})(JobStatus || (JobStatus = {}));\nvar ExportJobResponse;\n(function (ExportJobResponse) {\n ExportJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExportJobResponse || (ExportJobResponse = {}));\nvar CreateExportJobResponse;\n(function (CreateExportJobResponse) {\n CreateExportJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateExportJobResponse || (CreateExportJobResponse = {}));\nvar Format;\n(function (Format) {\n Format[\"CSV\"] = \"CSV\";\n Format[\"JSON\"] = \"JSON\";\n})(Format || (Format = {}));\nvar ImportJobRequest;\n(function (ImportJobRequest) {\n ImportJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ImportJobRequest || (ImportJobRequest = {}));\nvar CreateImportJobRequest;\n(function (CreateImportJobRequest) {\n CreateImportJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateImportJobRequest || (CreateImportJobRequest = {}));\nvar ImportJobResource;\n(function (ImportJobResource) {\n ImportJobResource.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ImportJobResource || (ImportJobResource = {}));\nvar ImportJobResponse;\n(function (ImportJobResponse) {\n ImportJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ImportJobResponse || (ImportJobResponse = {}));\nvar CreateImportJobResponse;\n(function (CreateImportJobResponse) {\n CreateImportJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateImportJobResponse || (CreateImportJobResponse = {}));\nvar JourneyLimits;\n(function (JourneyLimits) {\n JourneyLimits.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneyLimits || (JourneyLimits = {}));\nvar JourneySchedule;\n(function (JourneySchedule) {\n JourneySchedule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneySchedule || (JourneySchedule = {}));\nvar EventFilter;\n(function (EventFilter) {\n EventFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventFilter || (EventFilter = {}));\nvar EventStartCondition;\n(function (EventStartCondition) {\n EventStartCondition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventStartCondition || (EventStartCondition = {}));\nvar StartCondition;\n(function (StartCondition) {\n StartCondition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartCondition || (StartCondition = {}));\nvar State;\n(function (State) {\n State[\"ACTIVE\"] = \"ACTIVE\";\n State[\"CANCELLED\"] = \"CANCELLED\";\n State[\"CLOSED\"] = \"CLOSED\";\n State[\"COMPLETED\"] = \"COMPLETED\";\n State[\"DRAFT\"] = \"DRAFT\";\n})(State || (State = {}));\nvar WriteJourneyRequest;\n(function (WriteJourneyRequest) {\n WriteJourneyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(WriteJourneyRequest || (WriteJourneyRequest = {}));\nvar CreateJourneyRequest;\n(function (CreateJourneyRequest) {\n CreateJourneyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateJourneyRequest || (CreateJourneyRequest = {}));\nvar JourneyResponse;\n(function (JourneyResponse) {\n JourneyResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneyResponse || (JourneyResponse = {}));\nvar CreateJourneyResponse;\n(function (CreateJourneyResponse) {\n CreateJourneyResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateJourneyResponse || (CreateJourneyResponse = {}));\nvar DefaultPushNotificationTemplate;\n(function (DefaultPushNotificationTemplate) {\n DefaultPushNotificationTemplate.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DefaultPushNotificationTemplate || (DefaultPushNotificationTemplate = {}));\nvar PushNotificationTemplateRequest;\n(function (PushNotificationTemplateRequest) {\n PushNotificationTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PushNotificationTemplateRequest || (PushNotificationTemplateRequest = {}));\nvar CreatePushTemplateRequest;\n(function (CreatePushTemplateRequest) {\n CreatePushTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreatePushTemplateRequest || (CreatePushTemplateRequest = {}));\nvar CreatePushTemplateResponse;\n(function (CreatePushTemplateResponse) {\n CreatePushTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreatePushTemplateResponse || (CreatePushTemplateResponse = {}));\nvar CreateRecommenderConfigurationShape;\n(function (CreateRecommenderConfigurationShape) {\n CreateRecommenderConfigurationShape.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateRecommenderConfigurationShape || (CreateRecommenderConfigurationShape = {}));\nvar CreateRecommenderConfigurationRequest;\n(function (CreateRecommenderConfigurationRequest) {\n CreateRecommenderConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateRecommenderConfigurationRequest || (CreateRecommenderConfigurationRequest = {}));\nvar RecommenderConfigurationResponse;\n(function (RecommenderConfigurationResponse) {\n RecommenderConfigurationResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RecommenderConfigurationResponse || (RecommenderConfigurationResponse = {}));\nvar CreateRecommenderConfigurationResponse;\n(function (CreateRecommenderConfigurationResponse) {\n CreateRecommenderConfigurationResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateRecommenderConfigurationResponse || (CreateRecommenderConfigurationResponse = {}));\nvar SegmentReference;\n(function (SegmentReference) {\n SegmentReference.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentReference || (SegmentReference = {}));\nvar SourceType;\n(function (SourceType) {\n SourceType[\"ALL\"] = \"ALL\";\n SourceType[\"ANY\"] = \"ANY\";\n SourceType[\"NONE\"] = \"NONE\";\n})(SourceType || (SourceType = {}));\nvar Type;\n(function (Type) {\n Type[\"ALL\"] = \"ALL\";\n Type[\"ANY\"] = \"ANY\";\n Type[\"NONE\"] = \"NONE\";\n})(Type || (Type = {}));\nvar SegmentGroup;\n(function (SegmentGroup) {\n SegmentGroup.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentGroup || (SegmentGroup = {}));\nvar Include;\n(function (Include) {\n Include[\"ALL\"] = \"ALL\";\n Include[\"ANY\"] = \"ANY\";\n Include[\"NONE\"] = \"NONE\";\n})(Include || (Include = {}));\nvar SegmentGroupList;\n(function (SegmentGroupList) {\n SegmentGroupList.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentGroupList || (SegmentGroupList = {}));\nvar WriteSegmentRequest;\n(function (WriteSegmentRequest) {\n WriteSegmentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(WriteSegmentRequest || (WriteSegmentRequest = {}));\nvar CreateSegmentRequest;\n(function (CreateSegmentRequest) {\n CreateSegmentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateSegmentRequest || (CreateSegmentRequest = {}));\nvar SegmentImportResource;\n(function (SegmentImportResource) {\n SegmentImportResource.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentImportResource || (SegmentImportResource = {}));\nvar SegmentType;\n(function (SegmentType) {\n SegmentType[\"DIMENSIONAL\"] = \"DIMENSIONAL\";\n SegmentType[\"IMPORT\"] = \"IMPORT\";\n})(SegmentType || (SegmentType = {}));\nvar SegmentResponse;\n(function (SegmentResponse) {\n SegmentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentResponse || (SegmentResponse = {}));\nvar CreateSegmentResponse;\n(function (CreateSegmentResponse) {\n CreateSegmentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateSegmentResponse || (CreateSegmentResponse = {}));\nvar SMSTemplateRequest;\n(function (SMSTemplateRequest) {\n SMSTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SMSTemplateRequest || (SMSTemplateRequest = {}));\nvar CreateSmsTemplateRequest;\n(function (CreateSmsTemplateRequest) {\n CreateSmsTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateSmsTemplateRequest || (CreateSmsTemplateRequest = {}));\nvar CreateSmsTemplateResponse;\n(function (CreateSmsTemplateResponse) {\n CreateSmsTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateSmsTemplateResponse || (CreateSmsTemplateResponse = {}));\nvar VoiceTemplateRequest;\n(function (VoiceTemplateRequest) {\n VoiceTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VoiceTemplateRequest || (VoiceTemplateRequest = {}));\nvar CreateVoiceTemplateRequest;\n(function (CreateVoiceTemplateRequest) {\n CreateVoiceTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateVoiceTemplateRequest || (CreateVoiceTemplateRequest = {}));\nvar CreateVoiceTemplateResponse;\n(function (CreateVoiceTemplateResponse) {\n CreateVoiceTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateVoiceTemplateResponse || (CreateVoiceTemplateResponse = {}));\nvar DefaultMessage;\n(function (DefaultMessage) {\n DefaultMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DefaultMessage || (DefaultMessage = {}));\nvar DefaultPushNotificationMessage;\n(function (DefaultPushNotificationMessage) {\n DefaultPushNotificationMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DefaultPushNotificationMessage || (DefaultPushNotificationMessage = {}));\nvar DeleteAdmChannelRequest;\n(function (DeleteAdmChannelRequest) {\n DeleteAdmChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteAdmChannelRequest || (DeleteAdmChannelRequest = {}));\nvar DeleteAdmChannelResponse;\n(function (DeleteAdmChannelResponse) {\n DeleteAdmChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteAdmChannelResponse || (DeleteAdmChannelResponse = {}));\nvar DeleteApnsChannelRequest;\n(function (DeleteApnsChannelRequest) {\n DeleteApnsChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteApnsChannelRequest || (DeleteApnsChannelRequest = {}));\nvar DeleteApnsChannelResponse;\n(function (DeleteApnsChannelResponse) {\n DeleteApnsChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteApnsChannelResponse || (DeleteApnsChannelResponse = {}));\nvar DeleteApnsSandboxChannelRequest;\n(function (DeleteApnsSandboxChannelRequest) {\n DeleteApnsSandboxChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteApnsSandboxChannelRequest || (DeleteApnsSandboxChannelRequest = {}));\nvar DeleteApnsSandboxChannelResponse;\n(function (DeleteApnsSandboxChannelResponse) {\n DeleteApnsSandboxChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteApnsSandboxChannelResponse || (DeleteApnsSandboxChannelResponse = {}));\nvar DeleteApnsVoipChannelRequest;\n(function (DeleteApnsVoipChannelRequest) {\n DeleteApnsVoipChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteApnsVoipChannelRequest || (DeleteApnsVoipChannelRequest = {}));\nvar DeleteApnsVoipChannelResponse;\n(function (DeleteApnsVoipChannelResponse) {\n DeleteApnsVoipChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteApnsVoipChannelResponse || (DeleteApnsVoipChannelResponse = {}));\nvar DeleteApnsVoipSandboxChannelRequest;\n(function (DeleteApnsVoipSandboxChannelRequest) {\n DeleteApnsVoipSandboxChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteApnsVoipSandboxChannelRequest || (DeleteApnsVoipSandboxChannelRequest = {}));\nvar DeleteApnsVoipSandboxChannelResponse;\n(function (DeleteApnsVoipSandboxChannelResponse) {\n DeleteApnsVoipSandboxChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteApnsVoipSandboxChannelResponse || (DeleteApnsVoipSandboxChannelResponse = {}));\nvar DeleteAppRequest;\n(function (DeleteAppRequest) {\n DeleteAppRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteAppRequest || (DeleteAppRequest = {}));\nvar DeleteAppResponse;\n(function (DeleteAppResponse) {\n DeleteAppResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteAppResponse || (DeleteAppResponse = {}));\nvar DeleteBaiduChannelRequest;\n(function (DeleteBaiduChannelRequest) {\n DeleteBaiduChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBaiduChannelRequest || (DeleteBaiduChannelRequest = {}));\nvar DeleteBaiduChannelResponse;\n(function (DeleteBaiduChannelResponse) {\n DeleteBaiduChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBaiduChannelResponse || (DeleteBaiduChannelResponse = {}));\nvar DeleteCampaignRequest;\n(function (DeleteCampaignRequest) {\n DeleteCampaignRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteCampaignRequest || (DeleteCampaignRequest = {}));\nvar DeleteCampaignResponse;\n(function (DeleteCampaignResponse) {\n DeleteCampaignResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteCampaignResponse || (DeleteCampaignResponse = {}));\nvar DeleteEmailChannelRequest;\n(function (DeleteEmailChannelRequest) {\n DeleteEmailChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEmailChannelRequest || (DeleteEmailChannelRequest = {}));\nvar EmailChannelResponse;\n(function (EmailChannelResponse) {\n EmailChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EmailChannelResponse || (EmailChannelResponse = {}));\nvar DeleteEmailChannelResponse;\n(function (DeleteEmailChannelResponse) {\n DeleteEmailChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEmailChannelResponse || (DeleteEmailChannelResponse = {}));\nvar DeleteEmailTemplateRequest;\n(function (DeleteEmailTemplateRequest) {\n DeleteEmailTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEmailTemplateRequest || (DeleteEmailTemplateRequest = {}));\nvar MessageBody;\n(function (MessageBody) {\n MessageBody.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MessageBody || (MessageBody = {}));\nvar DeleteEmailTemplateResponse;\n(function (DeleteEmailTemplateResponse) {\n DeleteEmailTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEmailTemplateResponse || (DeleteEmailTemplateResponse = {}));\nvar DeleteEndpointRequest;\n(function (DeleteEndpointRequest) {\n DeleteEndpointRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEndpointRequest || (DeleteEndpointRequest = {}));\nvar EndpointDemographic;\n(function (EndpointDemographic) {\n EndpointDemographic.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointDemographic || (EndpointDemographic = {}));\nvar EndpointLocation;\n(function (EndpointLocation) {\n EndpointLocation.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointLocation || (EndpointLocation = {}));\nvar EndpointUser;\n(function (EndpointUser) {\n EndpointUser.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointUser || (EndpointUser = {}));\nvar EndpointResponse;\n(function (EndpointResponse) {\n EndpointResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointResponse || (EndpointResponse = {}));\nvar DeleteEndpointResponse;\n(function (DeleteEndpointResponse) {\n DeleteEndpointResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEndpointResponse || (DeleteEndpointResponse = {}));\nvar DeleteEventStreamRequest;\n(function (DeleteEventStreamRequest) {\n DeleteEventStreamRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEventStreamRequest || (DeleteEventStreamRequest = {}));\nvar EventStream;\n(function (EventStream) {\n EventStream.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventStream || (EventStream = {}));\nvar DeleteEventStreamResponse;\n(function (DeleteEventStreamResponse) {\n DeleteEventStreamResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteEventStreamResponse || (DeleteEventStreamResponse = {}));\nvar DeleteGcmChannelRequest;\n(function (DeleteGcmChannelRequest) {\n DeleteGcmChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteGcmChannelRequest || (DeleteGcmChannelRequest = {}));\nvar GCMChannelResponse;\n(function (GCMChannelResponse) {\n GCMChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GCMChannelResponse || (GCMChannelResponse = {}));\nvar DeleteGcmChannelResponse;\n(function (DeleteGcmChannelResponse) {\n DeleteGcmChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteGcmChannelResponse || (DeleteGcmChannelResponse = {}));\nvar DeleteJourneyRequest;\n(function (DeleteJourneyRequest) {\n DeleteJourneyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteJourneyRequest || (DeleteJourneyRequest = {}));\nvar DeleteJourneyResponse;\n(function (DeleteJourneyResponse) {\n DeleteJourneyResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteJourneyResponse || (DeleteJourneyResponse = {}));\nvar DeletePushTemplateRequest;\n(function (DeletePushTemplateRequest) {\n DeletePushTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeletePushTemplateRequest || (DeletePushTemplateRequest = {}));\nvar DeletePushTemplateResponse;\n(function (DeletePushTemplateResponse) {\n DeletePushTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeletePushTemplateResponse || (DeletePushTemplateResponse = {}));\nvar DeleteRecommenderConfigurationRequest;\n(function (DeleteRecommenderConfigurationRequest) {\n DeleteRecommenderConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteRecommenderConfigurationRequest || (DeleteRecommenderConfigurationRequest = {}));\nvar DeleteRecommenderConfigurationResponse;\n(function (DeleteRecommenderConfigurationResponse) {\n DeleteRecommenderConfigurationResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteRecommenderConfigurationResponse || (DeleteRecommenderConfigurationResponse = {}));\nvar DeleteSegmentRequest;\n(function (DeleteSegmentRequest) {\n DeleteSegmentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteSegmentRequest || (DeleteSegmentRequest = {}));\nvar DeleteSegmentResponse;\n(function (DeleteSegmentResponse) {\n DeleteSegmentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteSegmentResponse || (DeleteSegmentResponse = {}));\nvar DeleteSmsChannelRequest;\n(function (DeleteSmsChannelRequest) {\n DeleteSmsChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteSmsChannelRequest || (DeleteSmsChannelRequest = {}));\nvar SMSChannelResponse;\n(function (SMSChannelResponse) {\n SMSChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SMSChannelResponse || (SMSChannelResponse = {}));\nvar DeleteSmsChannelResponse;\n(function (DeleteSmsChannelResponse) {\n DeleteSmsChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteSmsChannelResponse || (DeleteSmsChannelResponse = {}));\nvar DeleteSmsTemplateRequest;\n(function (DeleteSmsTemplateRequest) {\n DeleteSmsTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteSmsTemplateRequest || (DeleteSmsTemplateRequest = {}));\nvar DeleteSmsTemplateResponse;\n(function (DeleteSmsTemplateResponse) {\n DeleteSmsTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteSmsTemplateResponse || (DeleteSmsTemplateResponse = {}));\nvar DeleteUserEndpointsRequest;\n(function (DeleteUserEndpointsRequest) {\n DeleteUserEndpointsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteUserEndpointsRequest || (DeleteUserEndpointsRequest = {}));\nvar EndpointsResponse;\n(function (EndpointsResponse) {\n EndpointsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointsResponse || (EndpointsResponse = {}));\nvar DeleteUserEndpointsResponse;\n(function (DeleteUserEndpointsResponse) {\n DeleteUserEndpointsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteUserEndpointsResponse || (DeleteUserEndpointsResponse = {}));\nvar DeleteVoiceChannelRequest;\n(function (DeleteVoiceChannelRequest) {\n DeleteVoiceChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteVoiceChannelRequest || (DeleteVoiceChannelRequest = {}));\nvar VoiceChannelResponse;\n(function (VoiceChannelResponse) {\n VoiceChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VoiceChannelResponse || (VoiceChannelResponse = {}));\nvar DeleteVoiceChannelResponse;\n(function (DeleteVoiceChannelResponse) {\n DeleteVoiceChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteVoiceChannelResponse || (DeleteVoiceChannelResponse = {}));\nvar DeleteVoiceTemplateRequest;\n(function (DeleteVoiceTemplateRequest) {\n DeleteVoiceTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteVoiceTemplateRequest || (DeleteVoiceTemplateRequest = {}));\nvar DeleteVoiceTemplateResponse;\n(function (DeleteVoiceTemplateResponse) {\n DeleteVoiceTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteVoiceTemplateResponse || (DeleteVoiceTemplateResponse = {}));\nvar DeliveryStatus;\n(function (DeliveryStatus) {\n DeliveryStatus[\"DUPLICATE\"] = \"DUPLICATE\";\n DeliveryStatus[\"OPT_OUT\"] = \"OPT_OUT\";\n DeliveryStatus[\"PERMANENT_FAILURE\"] = \"PERMANENT_FAILURE\";\n DeliveryStatus[\"SUCCESSFUL\"] = \"SUCCESSFUL\";\n DeliveryStatus[\"TEMPORARY_FAILURE\"] = \"TEMPORARY_FAILURE\";\n DeliveryStatus[\"THROTTLED\"] = \"THROTTLED\";\n DeliveryStatus[\"UNKNOWN_FAILURE\"] = \"UNKNOWN_FAILURE\";\n})(DeliveryStatus || (DeliveryStatus = {}));\nvar RawEmail;\n(function (RawEmail) {\n RawEmail.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RawEmail || (RawEmail = {}));\nvar SimpleEmailPart;\n(function (SimpleEmailPart) {\n SimpleEmailPart.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SimpleEmailPart || (SimpleEmailPart = {}));\nvar SimpleEmail;\n(function (SimpleEmail) {\n SimpleEmail.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SimpleEmail || (SimpleEmail = {}));\nvar EmailMessage;\n(function (EmailMessage) {\n EmailMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EmailMessage || (EmailMessage = {}));\nvar GCMMessage;\n(function (GCMMessage) {\n GCMMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GCMMessage || (GCMMessage = {}));\nvar SMSMessage;\n(function (SMSMessage) {\n SMSMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SMSMessage || (SMSMessage = {}));\nvar VoiceMessage;\n(function (VoiceMessage) {\n VoiceMessage.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VoiceMessage || (VoiceMessage = {}));\nvar DirectMessageConfiguration;\n(function (DirectMessageConfiguration) {\n DirectMessageConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DirectMessageConfiguration || (DirectMessageConfiguration = {}));\nvar EmailChannelRequest;\n(function (EmailChannelRequest) {\n EmailChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EmailChannelRequest || (EmailChannelRequest = {}));\nvar TemplateType;\n(function (TemplateType) {\n TemplateType[\"EMAIL\"] = \"EMAIL\";\n TemplateType[\"PUSH\"] = \"PUSH\";\n TemplateType[\"SMS\"] = \"SMS\";\n TemplateType[\"VOICE\"] = \"VOICE\";\n})(TemplateType || (TemplateType = {}));\nvar EmailTemplateResponse;\n(function (EmailTemplateResponse) {\n EmailTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EmailTemplateResponse || (EmailTemplateResponse = {}));\nvar EndpointBatchItem;\n(function (EndpointBatchItem) {\n EndpointBatchItem.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointBatchItem || (EndpointBatchItem = {}));\nvar EndpointBatchRequest;\n(function (EndpointBatchRequest) {\n EndpointBatchRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointBatchRequest || (EndpointBatchRequest = {}));\nvar EndpointItemResponse;\n(function (EndpointItemResponse) {\n EndpointItemResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointItemResponse || (EndpointItemResponse = {}));\nvar EndpointMessageResult;\n(function (EndpointMessageResult) {\n EndpointMessageResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointMessageResult || (EndpointMessageResult = {}));\nvar EndpointRequest;\n(function (EndpointRequest) {\n EndpointRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointRequest || (EndpointRequest = {}));\nvar EndpointSendConfiguration;\n(function (EndpointSendConfiguration) {\n EndpointSendConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndpointSendConfiguration || (EndpointSendConfiguration = {}));\nvar Session;\n(function (Session) {\n Session.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Session || (Session = {}));\nvar Event;\n(function (Event) {\n Event.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Event || (Event = {}));\nvar EventItemResponse;\n(function (EventItemResponse) {\n EventItemResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventItemResponse || (EventItemResponse = {}));\nvar PublicEndpoint;\n(function (PublicEndpoint) {\n PublicEndpoint.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PublicEndpoint || (PublicEndpoint = {}));\nvar EventsBatch;\n(function (EventsBatch) {\n EventsBatch.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventsBatch || (EventsBatch = {}));\nvar EventsRequest;\n(function (EventsRequest) {\n EventsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventsRequest || (EventsRequest = {}));\nvar ItemResponse;\n(function (ItemResponse) {\n ItemResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ItemResponse || (ItemResponse = {}));\nvar EventsResponse;\n(function (EventsResponse) {\n EventsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EventsResponse || (EventsResponse = {}));\nvar ExportJobsResponse;\n(function (ExportJobsResponse) {\n ExportJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExportJobsResponse || (ExportJobsResponse = {}));\nvar GCMChannelRequest;\n(function (GCMChannelRequest) {\n GCMChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GCMChannelRequest || (GCMChannelRequest = {}));\nvar GetAdmChannelRequest;\n(function (GetAdmChannelRequest) {\n GetAdmChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetAdmChannelRequest || (GetAdmChannelRequest = {}));\nvar GetAdmChannelResponse;\n(function (GetAdmChannelResponse) {\n GetAdmChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetAdmChannelResponse || (GetAdmChannelResponse = {}));\nvar GetApnsChannelRequest;\n(function (GetApnsChannelRequest) {\n GetApnsChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApnsChannelRequest || (GetApnsChannelRequest = {}));\nvar GetApnsChannelResponse;\n(function (GetApnsChannelResponse) {\n GetApnsChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApnsChannelResponse || (GetApnsChannelResponse = {}));\nvar GetApnsSandboxChannelRequest;\n(function (GetApnsSandboxChannelRequest) {\n GetApnsSandboxChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApnsSandboxChannelRequest || (GetApnsSandboxChannelRequest = {}));\nvar GetApnsSandboxChannelResponse;\n(function (GetApnsSandboxChannelResponse) {\n GetApnsSandboxChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApnsSandboxChannelResponse || (GetApnsSandboxChannelResponse = {}));\nvar GetApnsVoipChannelRequest;\n(function (GetApnsVoipChannelRequest) {\n GetApnsVoipChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApnsVoipChannelRequest || (GetApnsVoipChannelRequest = {}));\nvar GetApnsVoipChannelResponse;\n(function (GetApnsVoipChannelResponse) {\n GetApnsVoipChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApnsVoipChannelResponse || (GetApnsVoipChannelResponse = {}));\nvar GetApnsVoipSandboxChannelRequest;\n(function (GetApnsVoipSandboxChannelRequest) {\n GetApnsVoipSandboxChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApnsVoipSandboxChannelRequest || (GetApnsVoipSandboxChannelRequest = {}));\nvar GetApnsVoipSandboxChannelResponse;\n(function (GetApnsVoipSandboxChannelResponse) {\n GetApnsVoipSandboxChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApnsVoipSandboxChannelResponse || (GetApnsVoipSandboxChannelResponse = {}));\nvar GetAppRequest;\n(function (GetAppRequest) {\n GetAppRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetAppRequest || (GetAppRequest = {}));\nvar GetAppResponse;\n(function (GetAppResponse) {\n GetAppResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetAppResponse || (GetAppResponse = {}));\nvar GetApplicationDateRangeKpiRequest;\n(function (GetApplicationDateRangeKpiRequest) {\n GetApplicationDateRangeKpiRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApplicationDateRangeKpiRequest || (GetApplicationDateRangeKpiRequest = {}));\nvar GetApplicationDateRangeKpiResponse;\n(function (GetApplicationDateRangeKpiResponse) {\n GetApplicationDateRangeKpiResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApplicationDateRangeKpiResponse || (GetApplicationDateRangeKpiResponse = {}));\nvar GetApplicationSettingsRequest;\n(function (GetApplicationSettingsRequest) {\n GetApplicationSettingsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApplicationSettingsRequest || (GetApplicationSettingsRequest = {}));\nvar GetApplicationSettingsResponse;\n(function (GetApplicationSettingsResponse) {\n GetApplicationSettingsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetApplicationSettingsResponse || (GetApplicationSettingsResponse = {}));\nvar GetAppsRequest;\n(function (GetAppsRequest) {\n GetAppsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetAppsRequest || (GetAppsRequest = {}));\nvar GetAppsResponse;\n(function (GetAppsResponse) {\n GetAppsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetAppsResponse || (GetAppsResponse = {}));\nvar GetBaiduChannelRequest;\n(function (GetBaiduChannelRequest) {\n GetBaiduChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBaiduChannelRequest || (GetBaiduChannelRequest = {}));\nvar GetBaiduChannelResponse;\n(function (GetBaiduChannelResponse) {\n GetBaiduChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBaiduChannelResponse || (GetBaiduChannelResponse = {}));\nvar GetCampaignRequest;\n(function (GetCampaignRequest) {\n GetCampaignRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignRequest || (GetCampaignRequest = {}));\nvar GetCampaignResponse;\n(function (GetCampaignResponse) {\n GetCampaignResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignResponse || (GetCampaignResponse = {}));\nvar GetCampaignActivitiesRequest;\n(function (GetCampaignActivitiesRequest) {\n GetCampaignActivitiesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignActivitiesRequest || (GetCampaignActivitiesRequest = {}));\nvar GetCampaignActivitiesResponse;\n(function (GetCampaignActivitiesResponse) {\n GetCampaignActivitiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignActivitiesResponse || (GetCampaignActivitiesResponse = {}));\nvar GetCampaignDateRangeKpiRequest;\n(function (GetCampaignDateRangeKpiRequest) {\n GetCampaignDateRangeKpiRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignDateRangeKpiRequest || (GetCampaignDateRangeKpiRequest = {}));\nvar GetCampaignDateRangeKpiResponse;\n(function (GetCampaignDateRangeKpiResponse) {\n GetCampaignDateRangeKpiResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignDateRangeKpiResponse || (GetCampaignDateRangeKpiResponse = {}));\nvar GetCampaignsRequest;\n(function (GetCampaignsRequest) {\n GetCampaignsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignsRequest || (GetCampaignsRequest = {}));\nvar GetCampaignsResponse;\n(function (GetCampaignsResponse) {\n GetCampaignsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignsResponse || (GetCampaignsResponse = {}));\nvar GetCampaignVersionRequest;\n(function (GetCampaignVersionRequest) {\n GetCampaignVersionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignVersionRequest || (GetCampaignVersionRequest = {}));\nvar GetCampaignVersionResponse;\n(function (GetCampaignVersionResponse) {\n GetCampaignVersionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignVersionResponse || (GetCampaignVersionResponse = {}));\nvar GetCampaignVersionsRequest;\n(function (GetCampaignVersionsRequest) {\n GetCampaignVersionsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignVersionsRequest || (GetCampaignVersionsRequest = {}));\nvar GetCampaignVersionsResponse;\n(function (GetCampaignVersionsResponse) {\n GetCampaignVersionsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCampaignVersionsResponse || (GetCampaignVersionsResponse = {}));\nvar GetChannelsRequest;\n(function (GetChannelsRequest) {\n GetChannelsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetChannelsRequest || (GetChannelsRequest = {}));\nvar GetChannelsResponse;\n(function (GetChannelsResponse) {\n GetChannelsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetChannelsResponse || (GetChannelsResponse = {}));\nvar GetEmailChannelRequest;\n(function (GetEmailChannelRequest) {\n GetEmailChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetEmailChannelRequest || (GetEmailChannelRequest = {}));\nvar GetEmailChannelResponse;\n(function (GetEmailChannelResponse) {\n GetEmailChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetEmailChannelResponse || (GetEmailChannelResponse = {}));\nvar GetEmailTemplateRequest;\n(function (GetEmailTemplateRequest) {\n GetEmailTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetEmailTemplateRequest || (GetEmailTemplateRequest = {}));\nvar GetEmailTemplateResponse;\n(function (GetEmailTemplateResponse) {\n GetEmailTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetEmailTemplateResponse || (GetEmailTemplateResponse = {}));\nvar GetEndpointRequest;\n(function (GetEndpointRequest) {\n GetEndpointRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetEndpointRequest || (GetEndpointRequest = {}));\nvar GetEndpointResponse;\n(function (GetEndpointResponse) {\n GetEndpointResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetEndpointResponse || (GetEndpointResponse = {}));\nvar GetEventStreamRequest;\n(function (GetEventStreamRequest) {\n GetEventStreamRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetEventStreamRequest || (GetEventStreamRequest = {}));\nvar GetEventStreamResponse;\n(function (GetEventStreamResponse) {\n GetEventStreamResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetEventStreamResponse || (GetEventStreamResponse = {}));\nvar GetExportJobRequest;\n(function (GetExportJobRequest) {\n GetExportJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetExportJobRequest || (GetExportJobRequest = {}));\nvar GetExportJobResponse;\n(function (GetExportJobResponse) {\n GetExportJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetExportJobResponse || (GetExportJobResponse = {}));\nvar GetExportJobsRequest;\n(function (GetExportJobsRequest) {\n GetExportJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetExportJobsRequest || (GetExportJobsRequest = {}));\nvar GetExportJobsResponse;\n(function (GetExportJobsResponse) {\n GetExportJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetExportJobsResponse || (GetExportJobsResponse = {}));\nvar GetGcmChannelRequest;\n(function (GetGcmChannelRequest) {\n GetGcmChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetGcmChannelRequest || (GetGcmChannelRequest = {}));\nvar GetGcmChannelResponse;\n(function (GetGcmChannelResponse) {\n GetGcmChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetGcmChannelResponse || (GetGcmChannelResponse = {}));\nvar GetImportJobRequest;\n(function (GetImportJobRequest) {\n GetImportJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetImportJobRequest || (GetImportJobRequest = {}));\nvar GetImportJobResponse;\n(function (GetImportJobResponse) {\n GetImportJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetImportJobResponse || (GetImportJobResponse = {}));\nvar GetImportJobsRequest;\n(function (GetImportJobsRequest) {\n GetImportJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetImportJobsRequest || (GetImportJobsRequest = {}));\nvar ImportJobsResponse;\n(function (ImportJobsResponse) {\n ImportJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ImportJobsResponse || (ImportJobsResponse = {}));\nvar GetImportJobsResponse;\n(function (GetImportJobsResponse) {\n GetImportJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetImportJobsResponse || (GetImportJobsResponse = {}));\nvar GetJourneyRequest;\n(function (GetJourneyRequest) {\n GetJourneyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetJourneyRequest || (GetJourneyRequest = {}));\nvar GetJourneyResponse;\n(function (GetJourneyResponse) {\n GetJourneyResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetJourneyResponse || (GetJourneyResponse = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js ***! \**************************************************************************/ /*! exports provided: GetJourneyDateRangeKpiRequest, JourneyDateRangeKpiResponse, GetJourneyDateRangeKpiResponse, GetJourneyExecutionActivityMetricsRequest, JourneyExecutionActivityMetricsResponse, GetJourneyExecutionActivityMetricsResponse, GetJourneyExecutionMetricsRequest, JourneyExecutionMetricsResponse, GetJourneyExecutionMetricsResponse, GetPushTemplateRequest, PushNotificationTemplateResponse, GetPushTemplateResponse, GetRecommenderConfigurationRequest, GetRecommenderConfigurationResponse, GetRecommenderConfigurationsRequest, ListRecommenderConfigurationsResponse, GetRecommenderConfigurationsResponse, GetSegmentRequest, GetSegmentResponse, GetSegmentExportJobsRequest, GetSegmentExportJobsResponse, GetSegmentImportJobsRequest, GetSegmentImportJobsResponse, GetSegmentsRequest, SegmentsResponse, GetSegmentsResponse, GetSegmentVersionRequest, GetSegmentVersionResponse, GetSegmentVersionsRequest, GetSegmentVersionsResponse, GetSmsChannelRequest, GetSmsChannelResponse, GetSmsTemplateRequest, SMSTemplateResponse, GetSmsTemplateResponse, GetUserEndpointsRequest, GetUserEndpointsResponse, GetVoiceChannelRequest, GetVoiceChannelResponse, GetVoiceTemplateRequest, VoiceTemplateResponse, GetVoiceTemplateResponse, JourneysResponse, JourneyStateRequest, ListJourneysRequest, ListJourneysResponse, TemplateResponse, TemplateVersionResponse, ListTagsForResourceRequest, TagsModel, ListTagsForResourceResponse, ListTemplatesRequest, TemplatesResponse, ListTemplatesResponse, ListTemplateVersionsRequest, TemplateVersionsResponse, ListTemplateVersionsResponse, MessageResult, MessageRequest, MessageResponse, NumberValidateRequest, NumberValidateResponse, PhoneNumberValidateRequest, PhoneNumberValidateResponse, PutEventsRequest, PutEventsResponse, WriteEventStream, PutEventStreamRequest, PutEventStreamResponse, UpdateAttributesRequest, RemoveAttributesRequest, RemoveAttributesResponse, SendMessagesRequest, SendMessagesResponse, SendUsersMessageRequest, SendUsersMessagesRequest, SendUsersMessageResponse, SendUsersMessagesResponse, TagResourceRequest, UntagResourceRequest, UpdateAdmChannelRequest, UpdateAdmChannelResponse, UpdateApnsChannelRequest, UpdateApnsChannelResponse, UpdateApnsSandboxChannelRequest, UpdateApnsSandboxChannelResponse, UpdateApnsVoipChannelRequest, UpdateApnsVoipChannelResponse, UpdateApnsVoipSandboxChannelRequest, UpdateApnsVoipSandboxChannelResponse, WriteApplicationSettingsRequest, UpdateApplicationSettingsRequest, UpdateApplicationSettingsResponse, UpdateBaiduChannelRequest, UpdateBaiduChannelResponse, UpdateCampaignRequest, UpdateCampaignResponse, UpdateEmailChannelRequest, UpdateEmailChannelResponse, UpdateEmailTemplateRequest, UpdateEmailTemplateResponse, UpdateEndpointRequest, UpdateEndpointResponse, UpdateEndpointsBatchRequest, UpdateEndpointsBatchResponse, UpdateGcmChannelRequest, UpdateGcmChannelResponse, UpdateJourneyRequest, UpdateJourneyResponse, UpdateJourneyStateRequest, UpdateJourneyStateResponse, UpdatePushTemplateRequest, UpdatePushTemplateResponse, UpdateRecommenderConfigurationShape, UpdateRecommenderConfigurationRequest, UpdateRecommenderConfigurationResponse, UpdateSegmentRequest, UpdateSegmentResponse, SMSChannelRequest, UpdateSmsChannelRequest, UpdateSmsChannelResponse, UpdateSmsTemplateRequest, UpdateSmsTemplateResponse, TemplateActiveVersionRequest, UpdateTemplateActiveVersionRequest, UpdateTemplateActiveVersionResponse, VoiceChannelRequest, UpdateVoiceChannelRequest, UpdateVoiceChannelResponse, UpdateVoiceTemplateRequest, UpdateVoiceTemplateResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyDateRangeKpiRequest\", function() { return GetJourneyDateRangeKpiRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneyDateRangeKpiResponse\", function() { return JourneyDateRangeKpiResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyDateRangeKpiResponse\", function() { return GetJourneyDateRangeKpiResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionActivityMetricsRequest\", function() { return GetJourneyExecutionActivityMetricsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneyExecutionActivityMetricsResponse\", function() { return JourneyExecutionActivityMetricsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionActivityMetricsResponse\", function() { return GetJourneyExecutionActivityMetricsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionMetricsRequest\", function() { return GetJourneyExecutionMetricsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneyExecutionMetricsResponse\", function() { return JourneyExecutionMetricsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetJourneyExecutionMetricsResponse\", function() { return GetJourneyExecutionMetricsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPushTemplateRequest\", function() { return GetPushTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PushNotificationTemplateResponse\", function() { return PushNotificationTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPushTemplateResponse\", function() { return GetPushTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationRequest\", function() { return GetRecommenderConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationResponse\", function() { return GetRecommenderConfigurationResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationsRequest\", function() { return GetRecommenderConfigurationsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListRecommenderConfigurationsResponse\", function() { return ListRecommenderConfigurationsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetRecommenderConfigurationsResponse\", function() { return GetRecommenderConfigurationsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentRequest\", function() { return GetSegmentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentResponse\", function() { return GetSegmentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentExportJobsRequest\", function() { return GetSegmentExportJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentExportJobsResponse\", function() { return GetSegmentExportJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentImportJobsRequest\", function() { return GetSegmentImportJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentImportJobsResponse\", function() { return GetSegmentImportJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentsRequest\", function() { return GetSegmentsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentsResponse\", function() { return SegmentsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentsResponse\", function() { return GetSegmentsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionRequest\", function() { return GetSegmentVersionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionResponse\", function() { return GetSegmentVersionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionsRequest\", function() { return GetSegmentVersionsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentVersionsResponse\", function() { return GetSegmentVersionsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSmsChannelRequest\", function() { return GetSmsChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSmsChannelResponse\", function() { return GetSmsChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSmsTemplateRequest\", function() { return GetSmsTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SMSTemplateResponse\", function() { return SMSTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSmsTemplateResponse\", function() { return GetSmsTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetUserEndpointsRequest\", function() { return GetUserEndpointsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetUserEndpointsResponse\", function() { return GetUserEndpointsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceChannelRequest\", function() { return GetVoiceChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceChannelResponse\", function() { return GetVoiceChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceTemplateRequest\", function() { return GetVoiceTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VoiceTemplateResponse\", function() { return VoiceTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetVoiceTemplateResponse\", function() { return GetVoiceTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneysResponse\", function() { return JourneysResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JourneyStateRequest\", function() { return JourneyStateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListJourneysRequest\", function() { return ListJourneysRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListJourneysResponse\", function() { return ListJourneysResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TemplateResponse\", function() { return TemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TemplateVersionResponse\", function() { return TemplateVersionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceRequest\", function() { return ListTagsForResourceRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagsModel\", function() { return TagsModel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTagsForResourceResponse\", function() { return ListTagsForResourceResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTemplatesRequest\", function() { return ListTemplatesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TemplatesResponse\", function() { return TemplatesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTemplatesResponse\", function() { return ListTemplatesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTemplateVersionsRequest\", function() { return ListTemplateVersionsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TemplateVersionsResponse\", function() { return TemplateVersionsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTemplateVersionsResponse\", function() { return ListTemplateVersionsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MessageResult\", function() { return MessageResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MessageRequest\", function() { return MessageRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MessageResponse\", function() { return MessageResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NumberValidateRequest\", function() { return NumberValidateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NumberValidateResponse\", function() { return NumberValidateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PhoneNumberValidateRequest\", function() { return PhoneNumberValidateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PhoneNumberValidateResponse\", function() { return PhoneNumberValidateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutEventsRequest\", function() { return PutEventsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutEventsResponse\", function() { return PutEventsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WriteEventStream\", function() { return WriteEventStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutEventStreamRequest\", function() { return PutEventStreamRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutEventStreamResponse\", function() { return PutEventStreamResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateAttributesRequest\", function() { return UpdateAttributesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RemoveAttributesRequest\", function() { return RemoveAttributesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RemoveAttributesResponse\", function() { return RemoveAttributesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SendMessagesRequest\", function() { return SendMessagesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SendMessagesResponse\", function() { return SendMessagesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessageRequest\", function() { return SendUsersMessageRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessagesRequest\", function() { return SendUsersMessagesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessageResponse\", function() { return SendUsersMessageResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SendUsersMessagesResponse\", function() { return SendUsersMessagesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TagResourceRequest\", function() { return TagResourceRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UntagResourceRequest\", function() { return UntagResourceRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateAdmChannelRequest\", function() { return UpdateAdmChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateAdmChannelResponse\", function() { return UpdateAdmChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsChannelRequest\", function() { return UpdateApnsChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsChannelResponse\", function() { return UpdateApnsChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsSandboxChannelRequest\", function() { return UpdateApnsSandboxChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsSandboxChannelResponse\", function() { return UpdateApnsSandboxChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipChannelRequest\", function() { return UpdateApnsVoipChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipChannelResponse\", function() { return UpdateApnsVoipChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipSandboxChannelRequest\", function() { return UpdateApnsVoipSandboxChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApnsVoipSandboxChannelResponse\", function() { return UpdateApnsVoipSandboxChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WriteApplicationSettingsRequest\", function() { return WriteApplicationSettingsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApplicationSettingsRequest\", function() { return UpdateApplicationSettingsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateApplicationSettingsResponse\", function() { return UpdateApplicationSettingsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateBaiduChannelRequest\", function() { return UpdateBaiduChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateBaiduChannelResponse\", function() { return UpdateBaiduChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateCampaignRequest\", function() { return UpdateCampaignRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateCampaignResponse\", function() { return UpdateCampaignResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailChannelRequest\", function() { return UpdateEmailChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailChannelResponse\", function() { return UpdateEmailChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailTemplateRequest\", function() { return UpdateEmailTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEmailTemplateResponse\", function() { return UpdateEmailTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointRequest\", function() { return UpdateEndpointRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointResponse\", function() { return UpdateEndpointResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointsBatchRequest\", function() { return UpdateEndpointsBatchRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateEndpointsBatchResponse\", function() { return UpdateEndpointsBatchResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateGcmChannelRequest\", function() { return UpdateGcmChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateGcmChannelResponse\", function() { return UpdateGcmChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyRequest\", function() { return UpdateJourneyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyResponse\", function() { return UpdateJourneyResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyStateRequest\", function() { return UpdateJourneyStateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateJourneyStateResponse\", function() { return UpdateJourneyStateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdatePushTemplateRequest\", function() { return UpdatePushTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdatePushTemplateResponse\", function() { return UpdatePushTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationShape\", function() { return UpdateRecommenderConfigurationShape; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationRequest\", function() { return UpdateRecommenderConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateRecommenderConfigurationResponse\", function() { return UpdateRecommenderConfigurationResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateSegmentRequest\", function() { return UpdateSegmentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateSegmentResponse\", function() { return UpdateSegmentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SMSChannelRequest\", function() { return SMSChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsChannelRequest\", function() { return UpdateSmsChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsChannelResponse\", function() { return UpdateSmsChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsTemplateRequest\", function() { return UpdateSmsTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateSmsTemplateResponse\", function() { return UpdateSmsTemplateResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TemplateActiveVersionRequest\", function() { return TemplateActiveVersionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateTemplateActiveVersionRequest\", function() { return UpdateTemplateActiveVersionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateTemplateActiveVersionResponse\", function() { return UpdateTemplateActiveVersionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VoiceChannelRequest\", function() { return VoiceChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceChannelRequest\", function() { return UpdateVoiceChannelRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceChannelResponse\", function() { return UpdateVoiceChannelResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceTemplateRequest\", function() { return UpdateVoiceTemplateRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateVoiceTemplateResponse\", function() { return UpdateVoiceTemplateResponse; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n\nvar GetJourneyDateRangeKpiRequest;\n(function (GetJourneyDateRangeKpiRequest) {\n GetJourneyDateRangeKpiRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetJourneyDateRangeKpiRequest || (GetJourneyDateRangeKpiRequest = {}));\nvar JourneyDateRangeKpiResponse;\n(function (JourneyDateRangeKpiResponse) {\n JourneyDateRangeKpiResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneyDateRangeKpiResponse || (JourneyDateRangeKpiResponse = {}));\nvar GetJourneyDateRangeKpiResponse;\n(function (GetJourneyDateRangeKpiResponse) {\n GetJourneyDateRangeKpiResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetJourneyDateRangeKpiResponse || (GetJourneyDateRangeKpiResponse = {}));\nvar GetJourneyExecutionActivityMetricsRequest;\n(function (GetJourneyExecutionActivityMetricsRequest) {\n GetJourneyExecutionActivityMetricsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetJourneyExecutionActivityMetricsRequest || (GetJourneyExecutionActivityMetricsRequest = {}));\nvar JourneyExecutionActivityMetricsResponse;\n(function (JourneyExecutionActivityMetricsResponse) {\n JourneyExecutionActivityMetricsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneyExecutionActivityMetricsResponse || (JourneyExecutionActivityMetricsResponse = {}));\nvar GetJourneyExecutionActivityMetricsResponse;\n(function (GetJourneyExecutionActivityMetricsResponse) {\n GetJourneyExecutionActivityMetricsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetJourneyExecutionActivityMetricsResponse || (GetJourneyExecutionActivityMetricsResponse = {}));\nvar GetJourneyExecutionMetricsRequest;\n(function (GetJourneyExecutionMetricsRequest) {\n GetJourneyExecutionMetricsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetJourneyExecutionMetricsRequest || (GetJourneyExecutionMetricsRequest = {}));\nvar JourneyExecutionMetricsResponse;\n(function (JourneyExecutionMetricsResponse) {\n JourneyExecutionMetricsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneyExecutionMetricsResponse || (JourneyExecutionMetricsResponse = {}));\nvar GetJourneyExecutionMetricsResponse;\n(function (GetJourneyExecutionMetricsResponse) {\n GetJourneyExecutionMetricsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetJourneyExecutionMetricsResponse || (GetJourneyExecutionMetricsResponse = {}));\nvar GetPushTemplateRequest;\n(function (GetPushTemplateRequest) {\n GetPushTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetPushTemplateRequest || (GetPushTemplateRequest = {}));\nvar PushNotificationTemplateResponse;\n(function (PushNotificationTemplateResponse) {\n PushNotificationTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PushNotificationTemplateResponse || (PushNotificationTemplateResponse = {}));\nvar GetPushTemplateResponse;\n(function (GetPushTemplateResponse) {\n GetPushTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetPushTemplateResponse || (GetPushTemplateResponse = {}));\nvar GetRecommenderConfigurationRequest;\n(function (GetRecommenderConfigurationRequest) {\n GetRecommenderConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetRecommenderConfigurationRequest || (GetRecommenderConfigurationRequest = {}));\nvar GetRecommenderConfigurationResponse;\n(function (GetRecommenderConfigurationResponse) {\n GetRecommenderConfigurationResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetRecommenderConfigurationResponse || (GetRecommenderConfigurationResponse = {}));\nvar GetRecommenderConfigurationsRequest;\n(function (GetRecommenderConfigurationsRequest) {\n GetRecommenderConfigurationsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetRecommenderConfigurationsRequest || (GetRecommenderConfigurationsRequest = {}));\nvar ListRecommenderConfigurationsResponse;\n(function (ListRecommenderConfigurationsResponse) {\n ListRecommenderConfigurationsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListRecommenderConfigurationsResponse || (ListRecommenderConfigurationsResponse = {}));\nvar GetRecommenderConfigurationsResponse;\n(function (GetRecommenderConfigurationsResponse) {\n GetRecommenderConfigurationsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetRecommenderConfigurationsResponse || (GetRecommenderConfigurationsResponse = {}));\nvar GetSegmentRequest;\n(function (GetSegmentRequest) {\n GetSegmentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentRequest || (GetSegmentRequest = {}));\nvar GetSegmentResponse;\n(function (GetSegmentResponse) {\n GetSegmentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentResponse || (GetSegmentResponse = {}));\nvar GetSegmentExportJobsRequest;\n(function (GetSegmentExportJobsRequest) {\n GetSegmentExportJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentExportJobsRequest || (GetSegmentExportJobsRequest = {}));\nvar GetSegmentExportJobsResponse;\n(function (GetSegmentExportJobsResponse) {\n GetSegmentExportJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentExportJobsResponse || (GetSegmentExportJobsResponse = {}));\nvar GetSegmentImportJobsRequest;\n(function (GetSegmentImportJobsRequest) {\n GetSegmentImportJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentImportJobsRequest || (GetSegmentImportJobsRequest = {}));\nvar GetSegmentImportJobsResponse;\n(function (GetSegmentImportJobsResponse) {\n GetSegmentImportJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentImportJobsResponse || (GetSegmentImportJobsResponse = {}));\nvar GetSegmentsRequest;\n(function (GetSegmentsRequest) {\n GetSegmentsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentsRequest || (GetSegmentsRequest = {}));\nvar SegmentsResponse;\n(function (SegmentsResponse) {\n SegmentsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentsResponse || (SegmentsResponse = {}));\nvar GetSegmentsResponse;\n(function (GetSegmentsResponse) {\n GetSegmentsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentsResponse || (GetSegmentsResponse = {}));\nvar GetSegmentVersionRequest;\n(function (GetSegmentVersionRequest) {\n GetSegmentVersionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentVersionRequest || (GetSegmentVersionRequest = {}));\nvar GetSegmentVersionResponse;\n(function (GetSegmentVersionResponse) {\n GetSegmentVersionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentVersionResponse || (GetSegmentVersionResponse = {}));\nvar GetSegmentVersionsRequest;\n(function (GetSegmentVersionsRequest) {\n GetSegmentVersionsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentVersionsRequest || (GetSegmentVersionsRequest = {}));\nvar GetSegmentVersionsResponse;\n(function (GetSegmentVersionsResponse) {\n GetSegmentVersionsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentVersionsResponse || (GetSegmentVersionsResponse = {}));\nvar GetSmsChannelRequest;\n(function (GetSmsChannelRequest) {\n GetSmsChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSmsChannelRequest || (GetSmsChannelRequest = {}));\nvar GetSmsChannelResponse;\n(function (GetSmsChannelResponse) {\n GetSmsChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSmsChannelResponse || (GetSmsChannelResponse = {}));\nvar GetSmsTemplateRequest;\n(function (GetSmsTemplateRequest) {\n GetSmsTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSmsTemplateRequest || (GetSmsTemplateRequest = {}));\nvar SMSTemplateResponse;\n(function (SMSTemplateResponse) {\n SMSTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SMSTemplateResponse || (SMSTemplateResponse = {}));\nvar GetSmsTemplateResponse;\n(function (GetSmsTemplateResponse) {\n GetSmsTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSmsTemplateResponse || (GetSmsTemplateResponse = {}));\nvar GetUserEndpointsRequest;\n(function (GetUserEndpointsRequest) {\n GetUserEndpointsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetUserEndpointsRequest || (GetUserEndpointsRequest = {}));\nvar GetUserEndpointsResponse;\n(function (GetUserEndpointsResponse) {\n GetUserEndpointsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetUserEndpointsResponse || (GetUserEndpointsResponse = {}));\nvar GetVoiceChannelRequest;\n(function (GetVoiceChannelRequest) {\n GetVoiceChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetVoiceChannelRequest || (GetVoiceChannelRequest = {}));\nvar GetVoiceChannelResponse;\n(function (GetVoiceChannelResponse) {\n GetVoiceChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetVoiceChannelResponse || (GetVoiceChannelResponse = {}));\nvar GetVoiceTemplateRequest;\n(function (GetVoiceTemplateRequest) {\n GetVoiceTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetVoiceTemplateRequest || (GetVoiceTemplateRequest = {}));\nvar VoiceTemplateResponse;\n(function (VoiceTemplateResponse) {\n VoiceTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VoiceTemplateResponse || (VoiceTemplateResponse = {}));\nvar GetVoiceTemplateResponse;\n(function (GetVoiceTemplateResponse) {\n GetVoiceTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetVoiceTemplateResponse || (GetVoiceTemplateResponse = {}));\nvar JourneysResponse;\n(function (JourneysResponse) {\n JourneysResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneysResponse || (JourneysResponse = {}));\nvar JourneyStateRequest;\n(function (JourneyStateRequest) {\n JourneyStateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JourneyStateRequest || (JourneyStateRequest = {}));\nvar ListJourneysRequest;\n(function (ListJourneysRequest) {\n ListJourneysRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListJourneysRequest || (ListJourneysRequest = {}));\nvar ListJourneysResponse;\n(function (ListJourneysResponse) {\n ListJourneysResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListJourneysResponse || (ListJourneysResponse = {}));\nvar TemplateResponse;\n(function (TemplateResponse) {\n TemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TemplateResponse || (TemplateResponse = {}));\nvar TemplateVersionResponse;\n(function (TemplateVersionResponse) {\n TemplateVersionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TemplateVersionResponse || (TemplateVersionResponse = {}));\nvar ListTagsForResourceRequest;\n(function (ListTagsForResourceRequest) {\n ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));\nvar TagsModel;\n(function (TagsModel) {\n TagsModel.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TagsModel || (TagsModel = {}));\nvar ListTagsForResourceResponse;\n(function (ListTagsForResourceResponse) {\n ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));\nvar ListTemplatesRequest;\n(function (ListTemplatesRequest) {\n ListTemplatesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTemplatesRequest || (ListTemplatesRequest = {}));\nvar TemplatesResponse;\n(function (TemplatesResponse) {\n TemplatesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TemplatesResponse || (TemplatesResponse = {}));\nvar ListTemplatesResponse;\n(function (ListTemplatesResponse) {\n ListTemplatesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTemplatesResponse || (ListTemplatesResponse = {}));\nvar ListTemplateVersionsRequest;\n(function (ListTemplateVersionsRequest) {\n ListTemplateVersionsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTemplateVersionsRequest || (ListTemplateVersionsRequest = {}));\nvar TemplateVersionsResponse;\n(function (TemplateVersionsResponse) {\n TemplateVersionsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TemplateVersionsResponse || (TemplateVersionsResponse = {}));\nvar ListTemplateVersionsResponse;\n(function (ListTemplateVersionsResponse) {\n ListTemplateVersionsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTemplateVersionsResponse || (ListTemplateVersionsResponse = {}));\nvar MessageResult;\n(function (MessageResult) {\n MessageResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MessageResult || (MessageResult = {}));\nvar MessageRequest;\n(function (MessageRequest) {\n MessageRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MessageRequest || (MessageRequest = {}));\nvar MessageResponse;\n(function (MessageResponse) {\n MessageResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MessageResponse || (MessageResponse = {}));\nvar NumberValidateRequest;\n(function (NumberValidateRequest) {\n NumberValidateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NumberValidateRequest || (NumberValidateRequest = {}));\nvar NumberValidateResponse;\n(function (NumberValidateResponse) {\n NumberValidateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NumberValidateResponse || (NumberValidateResponse = {}));\nvar PhoneNumberValidateRequest;\n(function (PhoneNumberValidateRequest) {\n PhoneNumberValidateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PhoneNumberValidateRequest || (PhoneNumberValidateRequest = {}));\nvar PhoneNumberValidateResponse;\n(function (PhoneNumberValidateResponse) {\n PhoneNumberValidateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PhoneNumberValidateResponse || (PhoneNumberValidateResponse = {}));\nvar PutEventsRequest;\n(function (PutEventsRequest) {\n PutEventsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutEventsRequest || (PutEventsRequest = {}));\nvar PutEventsResponse;\n(function (PutEventsResponse) {\n PutEventsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutEventsResponse || (PutEventsResponse = {}));\nvar WriteEventStream;\n(function (WriteEventStream) {\n WriteEventStream.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(WriteEventStream || (WriteEventStream = {}));\nvar PutEventStreamRequest;\n(function (PutEventStreamRequest) {\n PutEventStreamRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutEventStreamRequest || (PutEventStreamRequest = {}));\nvar PutEventStreamResponse;\n(function (PutEventStreamResponse) {\n PutEventStreamResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutEventStreamResponse || (PutEventStreamResponse = {}));\nvar UpdateAttributesRequest;\n(function (UpdateAttributesRequest) {\n UpdateAttributesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateAttributesRequest || (UpdateAttributesRequest = {}));\nvar RemoveAttributesRequest;\n(function (RemoveAttributesRequest) {\n RemoveAttributesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RemoveAttributesRequest || (RemoveAttributesRequest = {}));\nvar RemoveAttributesResponse;\n(function (RemoveAttributesResponse) {\n RemoveAttributesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RemoveAttributesResponse || (RemoveAttributesResponse = {}));\nvar SendMessagesRequest;\n(function (SendMessagesRequest) {\n SendMessagesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SendMessagesRequest || (SendMessagesRequest = {}));\nvar SendMessagesResponse;\n(function (SendMessagesResponse) {\n SendMessagesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SendMessagesResponse || (SendMessagesResponse = {}));\nvar SendUsersMessageRequest;\n(function (SendUsersMessageRequest) {\n SendUsersMessageRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SendUsersMessageRequest || (SendUsersMessageRequest = {}));\nvar SendUsersMessagesRequest;\n(function (SendUsersMessagesRequest) {\n SendUsersMessagesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SendUsersMessagesRequest || (SendUsersMessagesRequest = {}));\nvar SendUsersMessageResponse;\n(function (SendUsersMessageResponse) {\n SendUsersMessageResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SendUsersMessageResponse || (SendUsersMessageResponse = {}));\nvar SendUsersMessagesResponse;\n(function (SendUsersMessagesResponse) {\n SendUsersMessagesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SendUsersMessagesResponse || (SendUsersMessagesResponse = {}));\nvar TagResourceRequest;\n(function (TagResourceRequest) {\n TagResourceRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TagResourceRequest || (TagResourceRequest = {}));\nvar UntagResourceRequest;\n(function (UntagResourceRequest) {\n UntagResourceRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UntagResourceRequest || (UntagResourceRequest = {}));\nvar UpdateAdmChannelRequest;\n(function (UpdateAdmChannelRequest) {\n UpdateAdmChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateAdmChannelRequest || (UpdateAdmChannelRequest = {}));\nvar UpdateAdmChannelResponse;\n(function (UpdateAdmChannelResponse) {\n UpdateAdmChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateAdmChannelResponse || (UpdateAdmChannelResponse = {}));\nvar UpdateApnsChannelRequest;\n(function (UpdateApnsChannelRequest) {\n UpdateApnsChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApnsChannelRequest || (UpdateApnsChannelRequest = {}));\nvar UpdateApnsChannelResponse;\n(function (UpdateApnsChannelResponse) {\n UpdateApnsChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApnsChannelResponse || (UpdateApnsChannelResponse = {}));\nvar UpdateApnsSandboxChannelRequest;\n(function (UpdateApnsSandboxChannelRequest) {\n UpdateApnsSandboxChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApnsSandboxChannelRequest || (UpdateApnsSandboxChannelRequest = {}));\nvar UpdateApnsSandboxChannelResponse;\n(function (UpdateApnsSandboxChannelResponse) {\n UpdateApnsSandboxChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApnsSandboxChannelResponse || (UpdateApnsSandboxChannelResponse = {}));\nvar UpdateApnsVoipChannelRequest;\n(function (UpdateApnsVoipChannelRequest) {\n UpdateApnsVoipChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApnsVoipChannelRequest || (UpdateApnsVoipChannelRequest = {}));\nvar UpdateApnsVoipChannelResponse;\n(function (UpdateApnsVoipChannelResponse) {\n UpdateApnsVoipChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApnsVoipChannelResponse || (UpdateApnsVoipChannelResponse = {}));\nvar UpdateApnsVoipSandboxChannelRequest;\n(function (UpdateApnsVoipSandboxChannelRequest) {\n UpdateApnsVoipSandboxChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApnsVoipSandboxChannelRequest || (UpdateApnsVoipSandboxChannelRequest = {}));\nvar UpdateApnsVoipSandboxChannelResponse;\n(function (UpdateApnsVoipSandboxChannelResponse) {\n UpdateApnsVoipSandboxChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApnsVoipSandboxChannelResponse || (UpdateApnsVoipSandboxChannelResponse = {}));\nvar WriteApplicationSettingsRequest;\n(function (WriteApplicationSettingsRequest) {\n WriteApplicationSettingsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(WriteApplicationSettingsRequest || (WriteApplicationSettingsRequest = {}));\nvar UpdateApplicationSettingsRequest;\n(function (UpdateApplicationSettingsRequest) {\n UpdateApplicationSettingsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApplicationSettingsRequest || (UpdateApplicationSettingsRequest = {}));\nvar UpdateApplicationSettingsResponse;\n(function (UpdateApplicationSettingsResponse) {\n UpdateApplicationSettingsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateApplicationSettingsResponse || (UpdateApplicationSettingsResponse = {}));\nvar UpdateBaiduChannelRequest;\n(function (UpdateBaiduChannelRequest) {\n UpdateBaiduChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateBaiduChannelRequest || (UpdateBaiduChannelRequest = {}));\nvar UpdateBaiduChannelResponse;\n(function (UpdateBaiduChannelResponse) {\n UpdateBaiduChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateBaiduChannelResponse || (UpdateBaiduChannelResponse = {}));\nvar UpdateCampaignRequest;\n(function (UpdateCampaignRequest) {\n UpdateCampaignRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateCampaignRequest || (UpdateCampaignRequest = {}));\nvar UpdateCampaignResponse;\n(function (UpdateCampaignResponse) {\n UpdateCampaignResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateCampaignResponse || (UpdateCampaignResponse = {}));\nvar UpdateEmailChannelRequest;\n(function (UpdateEmailChannelRequest) {\n UpdateEmailChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEmailChannelRequest || (UpdateEmailChannelRequest = {}));\nvar UpdateEmailChannelResponse;\n(function (UpdateEmailChannelResponse) {\n UpdateEmailChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEmailChannelResponse || (UpdateEmailChannelResponse = {}));\nvar UpdateEmailTemplateRequest;\n(function (UpdateEmailTemplateRequest) {\n UpdateEmailTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEmailTemplateRequest || (UpdateEmailTemplateRequest = {}));\nvar UpdateEmailTemplateResponse;\n(function (UpdateEmailTemplateResponse) {\n UpdateEmailTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEmailTemplateResponse || (UpdateEmailTemplateResponse = {}));\nvar UpdateEndpointRequest;\n(function (UpdateEndpointRequest) {\n UpdateEndpointRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEndpointRequest || (UpdateEndpointRequest = {}));\nvar UpdateEndpointResponse;\n(function (UpdateEndpointResponse) {\n UpdateEndpointResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEndpointResponse || (UpdateEndpointResponse = {}));\nvar UpdateEndpointsBatchRequest;\n(function (UpdateEndpointsBatchRequest) {\n UpdateEndpointsBatchRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEndpointsBatchRequest || (UpdateEndpointsBatchRequest = {}));\nvar UpdateEndpointsBatchResponse;\n(function (UpdateEndpointsBatchResponse) {\n UpdateEndpointsBatchResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateEndpointsBatchResponse || (UpdateEndpointsBatchResponse = {}));\nvar UpdateGcmChannelRequest;\n(function (UpdateGcmChannelRequest) {\n UpdateGcmChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateGcmChannelRequest || (UpdateGcmChannelRequest = {}));\nvar UpdateGcmChannelResponse;\n(function (UpdateGcmChannelResponse) {\n UpdateGcmChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateGcmChannelResponse || (UpdateGcmChannelResponse = {}));\nvar UpdateJourneyRequest;\n(function (UpdateJourneyRequest) {\n UpdateJourneyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateJourneyRequest || (UpdateJourneyRequest = {}));\nvar UpdateJourneyResponse;\n(function (UpdateJourneyResponse) {\n UpdateJourneyResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateJourneyResponse || (UpdateJourneyResponse = {}));\nvar UpdateJourneyStateRequest;\n(function (UpdateJourneyStateRequest) {\n UpdateJourneyStateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateJourneyStateRequest || (UpdateJourneyStateRequest = {}));\nvar UpdateJourneyStateResponse;\n(function (UpdateJourneyStateResponse) {\n UpdateJourneyStateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateJourneyStateResponse || (UpdateJourneyStateResponse = {}));\nvar UpdatePushTemplateRequest;\n(function (UpdatePushTemplateRequest) {\n UpdatePushTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdatePushTemplateRequest || (UpdatePushTemplateRequest = {}));\nvar UpdatePushTemplateResponse;\n(function (UpdatePushTemplateResponse) {\n UpdatePushTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdatePushTemplateResponse || (UpdatePushTemplateResponse = {}));\nvar UpdateRecommenderConfigurationShape;\n(function (UpdateRecommenderConfigurationShape) {\n UpdateRecommenderConfigurationShape.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateRecommenderConfigurationShape || (UpdateRecommenderConfigurationShape = {}));\nvar UpdateRecommenderConfigurationRequest;\n(function (UpdateRecommenderConfigurationRequest) {\n UpdateRecommenderConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateRecommenderConfigurationRequest || (UpdateRecommenderConfigurationRequest = {}));\nvar UpdateRecommenderConfigurationResponse;\n(function (UpdateRecommenderConfigurationResponse) {\n UpdateRecommenderConfigurationResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateRecommenderConfigurationResponse || (UpdateRecommenderConfigurationResponse = {}));\nvar UpdateSegmentRequest;\n(function (UpdateSegmentRequest) {\n UpdateSegmentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateSegmentRequest || (UpdateSegmentRequest = {}));\nvar UpdateSegmentResponse;\n(function (UpdateSegmentResponse) {\n UpdateSegmentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateSegmentResponse || (UpdateSegmentResponse = {}));\nvar SMSChannelRequest;\n(function (SMSChannelRequest) {\n SMSChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SMSChannelRequest || (SMSChannelRequest = {}));\nvar UpdateSmsChannelRequest;\n(function (UpdateSmsChannelRequest) {\n UpdateSmsChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateSmsChannelRequest || (UpdateSmsChannelRequest = {}));\nvar UpdateSmsChannelResponse;\n(function (UpdateSmsChannelResponse) {\n UpdateSmsChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateSmsChannelResponse || (UpdateSmsChannelResponse = {}));\nvar UpdateSmsTemplateRequest;\n(function (UpdateSmsTemplateRequest) {\n UpdateSmsTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateSmsTemplateRequest || (UpdateSmsTemplateRequest = {}));\nvar UpdateSmsTemplateResponse;\n(function (UpdateSmsTemplateResponse) {\n UpdateSmsTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateSmsTemplateResponse || (UpdateSmsTemplateResponse = {}));\nvar TemplateActiveVersionRequest;\n(function (TemplateActiveVersionRequest) {\n TemplateActiveVersionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TemplateActiveVersionRequest || (TemplateActiveVersionRequest = {}));\nvar UpdateTemplateActiveVersionRequest;\n(function (UpdateTemplateActiveVersionRequest) {\n UpdateTemplateActiveVersionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateTemplateActiveVersionRequest || (UpdateTemplateActiveVersionRequest = {}));\nvar UpdateTemplateActiveVersionResponse;\n(function (UpdateTemplateActiveVersionResponse) {\n UpdateTemplateActiveVersionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateTemplateActiveVersionResponse || (UpdateTemplateActiveVersionResponse = {}));\nvar VoiceChannelRequest;\n(function (VoiceChannelRequest) {\n VoiceChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VoiceChannelRequest || (VoiceChannelRequest = {}));\nvar UpdateVoiceChannelRequest;\n(function (UpdateVoiceChannelRequest) {\n UpdateVoiceChannelRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateVoiceChannelRequest || (UpdateVoiceChannelRequest = {}));\nvar UpdateVoiceChannelResponse;\n(function (UpdateVoiceChannelResponse) {\n UpdateVoiceChannelResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateVoiceChannelResponse || (UpdateVoiceChannelResponse = {}));\nvar UpdateVoiceTemplateRequest;\n(function (UpdateVoiceTemplateRequest) {\n UpdateVoiceTemplateRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateVoiceTemplateRequest || (UpdateVoiceTemplateRequest = {}));\nvar UpdateVoiceTemplateResponse;\n(function (UpdateVoiceTemplateResponse) {\n UpdateVoiceTemplateResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateVoiceTemplateResponse || (UpdateVoiceTemplateResponse = {}));\n//# sourceMappingURL=models_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/models/models_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/package.json": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/package.json ***! \********************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-pinpoint\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Pinpoint Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-pinpoint\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-pinpoint\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js ***! \**********************************************************************************/ /*! exports provided: serializeAws_restJson1CreateAppCommand, serializeAws_restJson1CreateCampaignCommand, serializeAws_restJson1CreateEmailTemplateCommand, serializeAws_restJson1CreateExportJobCommand, serializeAws_restJson1CreateImportJobCommand, serializeAws_restJson1CreateJourneyCommand, serializeAws_restJson1CreatePushTemplateCommand, serializeAws_restJson1CreateRecommenderConfigurationCommand, serializeAws_restJson1CreateSegmentCommand, serializeAws_restJson1CreateSmsTemplateCommand, serializeAws_restJson1CreateVoiceTemplateCommand, serializeAws_restJson1DeleteAdmChannelCommand, serializeAws_restJson1DeleteApnsChannelCommand, serializeAws_restJson1DeleteApnsSandboxChannelCommand, serializeAws_restJson1DeleteApnsVoipChannelCommand, serializeAws_restJson1DeleteApnsVoipSandboxChannelCommand, serializeAws_restJson1DeleteAppCommand, serializeAws_restJson1DeleteBaiduChannelCommand, serializeAws_restJson1DeleteCampaignCommand, serializeAws_restJson1DeleteEmailChannelCommand, serializeAws_restJson1DeleteEmailTemplateCommand, serializeAws_restJson1DeleteEndpointCommand, serializeAws_restJson1DeleteEventStreamCommand, serializeAws_restJson1DeleteGcmChannelCommand, serializeAws_restJson1DeleteJourneyCommand, serializeAws_restJson1DeletePushTemplateCommand, serializeAws_restJson1DeleteRecommenderConfigurationCommand, serializeAws_restJson1DeleteSegmentCommand, serializeAws_restJson1DeleteSmsChannelCommand, serializeAws_restJson1DeleteSmsTemplateCommand, serializeAws_restJson1DeleteUserEndpointsCommand, serializeAws_restJson1DeleteVoiceChannelCommand, serializeAws_restJson1DeleteVoiceTemplateCommand, serializeAws_restJson1GetAdmChannelCommand, serializeAws_restJson1GetApnsChannelCommand, serializeAws_restJson1GetApnsSandboxChannelCommand, serializeAws_restJson1GetApnsVoipChannelCommand, serializeAws_restJson1GetApnsVoipSandboxChannelCommand, serializeAws_restJson1GetAppCommand, serializeAws_restJson1GetApplicationDateRangeKpiCommand, serializeAws_restJson1GetApplicationSettingsCommand, serializeAws_restJson1GetAppsCommand, serializeAws_restJson1GetBaiduChannelCommand, serializeAws_restJson1GetCampaignCommand, serializeAws_restJson1GetCampaignActivitiesCommand, serializeAws_restJson1GetCampaignDateRangeKpiCommand, serializeAws_restJson1GetCampaignsCommand, serializeAws_restJson1GetCampaignVersionCommand, serializeAws_restJson1GetCampaignVersionsCommand, serializeAws_restJson1GetChannelsCommand, serializeAws_restJson1GetEmailChannelCommand, serializeAws_restJson1GetEmailTemplateCommand, serializeAws_restJson1GetEndpointCommand, serializeAws_restJson1GetEventStreamCommand, serializeAws_restJson1GetExportJobCommand, serializeAws_restJson1GetExportJobsCommand, serializeAws_restJson1GetGcmChannelCommand, serializeAws_restJson1GetImportJobCommand, serializeAws_restJson1GetImportJobsCommand, serializeAws_restJson1GetJourneyCommand, serializeAws_restJson1GetJourneyDateRangeKpiCommand, serializeAws_restJson1GetJourneyExecutionActivityMetricsCommand, serializeAws_restJson1GetJourneyExecutionMetricsCommand, serializeAws_restJson1GetPushTemplateCommand, serializeAws_restJson1GetRecommenderConfigurationCommand, serializeAws_restJson1GetRecommenderConfigurationsCommand, serializeAws_restJson1GetSegmentCommand, serializeAws_restJson1GetSegmentExportJobsCommand, serializeAws_restJson1GetSegmentImportJobsCommand, serializeAws_restJson1GetSegmentsCommand, serializeAws_restJson1GetSegmentVersionCommand, serializeAws_restJson1GetSegmentVersionsCommand, serializeAws_restJson1GetSmsChannelCommand, serializeAws_restJson1GetSmsTemplateCommand, serializeAws_restJson1GetUserEndpointsCommand, serializeAws_restJson1GetVoiceChannelCommand, serializeAws_restJson1GetVoiceTemplateCommand, serializeAws_restJson1ListJourneysCommand, serializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTemplatesCommand, serializeAws_restJson1ListTemplateVersionsCommand, serializeAws_restJson1PhoneNumberValidateCommand, serializeAws_restJson1PutEventsCommand, serializeAws_restJson1PutEventStreamCommand, serializeAws_restJson1RemoveAttributesCommand, serializeAws_restJson1SendMessagesCommand, serializeAws_restJson1SendUsersMessagesCommand, serializeAws_restJson1TagResourceCommand, serializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UpdateAdmChannelCommand, serializeAws_restJson1UpdateApnsChannelCommand, serializeAws_restJson1UpdateApnsSandboxChannelCommand, serializeAws_restJson1UpdateApnsVoipChannelCommand, serializeAws_restJson1UpdateApnsVoipSandboxChannelCommand, serializeAws_restJson1UpdateApplicationSettingsCommand, serializeAws_restJson1UpdateBaiduChannelCommand, serializeAws_restJson1UpdateCampaignCommand, serializeAws_restJson1UpdateEmailChannelCommand, serializeAws_restJson1UpdateEmailTemplateCommand, serializeAws_restJson1UpdateEndpointCommand, serializeAws_restJson1UpdateEndpointsBatchCommand, serializeAws_restJson1UpdateGcmChannelCommand, serializeAws_restJson1UpdateJourneyCommand, serializeAws_restJson1UpdateJourneyStateCommand, serializeAws_restJson1UpdatePushTemplateCommand, serializeAws_restJson1UpdateRecommenderConfigurationCommand, serializeAws_restJson1UpdateSegmentCommand, serializeAws_restJson1UpdateSmsChannelCommand, serializeAws_restJson1UpdateSmsTemplateCommand, serializeAws_restJson1UpdateTemplateActiveVersionCommand, serializeAws_restJson1UpdateVoiceChannelCommand, serializeAws_restJson1UpdateVoiceTemplateCommand, deserializeAws_restJson1CreateAppCommand, deserializeAws_restJson1CreateCampaignCommand, deserializeAws_restJson1CreateEmailTemplateCommand, deserializeAws_restJson1CreateExportJobCommand, deserializeAws_restJson1CreateImportJobCommand, deserializeAws_restJson1CreateJourneyCommand, deserializeAws_restJson1CreatePushTemplateCommand, deserializeAws_restJson1CreateRecommenderConfigurationCommand, deserializeAws_restJson1CreateSegmentCommand, deserializeAws_restJson1CreateSmsTemplateCommand, deserializeAws_restJson1CreateVoiceTemplateCommand, deserializeAws_restJson1DeleteAdmChannelCommand, deserializeAws_restJson1DeleteApnsChannelCommand, deserializeAws_restJson1DeleteApnsSandboxChannelCommand, deserializeAws_restJson1DeleteApnsVoipChannelCommand, deserializeAws_restJson1DeleteApnsVoipSandboxChannelCommand, deserializeAws_restJson1DeleteAppCommand, deserializeAws_restJson1DeleteBaiduChannelCommand, deserializeAws_restJson1DeleteCampaignCommand, deserializeAws_restJson1DeleteEmailChannelCommand, deserializeAws_restJson1DeleteEmailTemplateCommand, deserializeAws_restJson1DeleteEndpointCommand, deserializeAws_restJson1DeleteEventStreamCommand, deserializeAws_restJson1DeleteGcmChannelCommand, deserializeAws_restJson1DeleteJourneyCommand, deserializeAws_restJson1DeletePushTemplateCommand, deserializeAws_restJson1DeleteRecommenderConfigurationCommand, deserializeAws_restJson1DeleteSegmentCommand, deserializeAws_restJson1DeleteSmsChannelCommand, deserializeAws_restJson1DeleteSmsTemplateCommand, deserializeAws_restJson1DeleteUserEndpointsCommand, deserializeAws_restJson1DeleteVoiceChannelCommand, deserializeAws_restJson1DeleteVoiceTemplateCommand, deserializeAws_restJson1GetAdmChannelCommand, deserializeAws_restJson1GetApnsChannelCommand, deserializeAws_restJson1GetApnsSandboxChannelCommand, deserializeAws_restJson1GetApnsVoipChannelCommand, deserializeAws_restJson1GetApnsVoipSandboxChannelCommand, deserializeAws_restJson1GetAppCommand, deserializeAws_restJson1GetApplicationDateRangeKpiCommand, deserializeAws_restJson1GetApplicationSettingsCommand, deserializeAws_restJson1GetAppsCommand, deserializeAws_restJson1GetBaiduChannelCommand, deserializeAws_restJson1GetCampaignCommand, deserializeAws_restJson1GetCampaignActivitiesCommand, deserializeAws_restJson1GetCampaignDateRangeKpiCommand, deserializeAws_restJson1GetCampaignsCommand, deserializeAws_restJson1GetCampaignVersionCommand, deserializeAws_restJson1GetCampaignVersionsCommand, deserializeAws_restJson1GetChannelsCommand, deserializeAws_restJson1GetEmailChannelCommand, deserializeAws_restJson1GetEmailTemplateCommand, deserializeAws_restJson1GetEndpointCommand, deserializeAws_restJson1GetEventStreamCommand, deserializeAws_restJson1GetExportJobCommand, deserializeAws_restJson1GetExportJobsCommand, deserializeAws_restJson1GetGcmChannelCommand, deserializeAws_restJson1GetImportJobCommand, deserializeAws_restJson1GetImportJobsCommand, deserializeAws_restJson1GetJourneyCommand, deserializeAws_restJson1GetJourneyDateRangeKpiCommand, deserializeAws_restJson1GetJourneyExecutionActivityMetricsCommand, deserializeAws_restJson1GetJourneyExecutionMetricsCommand, deserializeAws_restJson1GetPushTemplateCommand, deserializeAws_restJson1GetRecommenderConfigurationCommand, deserializeAws_restJson1GetRecommenderConfigurationsCommand, deserializeAws_restJson1GetSegmentCommand, deserializeAws_restJson1GetSegmentExportJobsCommand, deserializeAws_restJson1GetSegmentImportJobsCommand, deserializeAws_restJson1GetSegmentsCommand, deserializeAws_restJson1GetSegmentVersionCommand, deserializeAws_restJson1GetSegmentVersionsCommand, deserializeAws_restJson1GetSmsChannelCommand, deserializeAws_restJson1GetSmsTemplateCommand, deserializeAws_restJson1GetUserEndpointsCommand, deserializeAws_restJson1GetVoiceChannelCommand, deserializeAws_restJson1GetVoiceTemplateCommand, deserializeAws_restJson1ListJourneysCommand, deserializeAws_restJson1ListTagsForResourceCommand, deserializeAws_restJson1ListTemplatesCommand, deserializeAws_restJson1ListTemplateVersionsCommand, deserializeAws_restJson1PhoneNumberValidateCommand, deserializeAws_restJson1PutEventsCommand, deserializeAws_restJson1PutEventStreamCommand, deserializeAws_restJson1RemoveAttributesCommand, deserializeAws_restJson1SendMessagesCommand, deserializeAws_restJson1SendUsersMessagesCommand, deserializeAws_restJson1TagResourceCommand, deserializeAws_restJson1UntagResourceCommand, deserializeAws_restJson1UpdateAdmChannelCommand, deserializeAws_restJson1UpdateApnsChannelCommand, deserializeAws_restJson1UpdateApnsSandboxChannelCommand, deserializeAws_restJson1UpdateApnsVoipChannelCommand, deserializeAws_restJson1UpdateApnsVoipSandboxChannelCommand, deserializeAws_restJson1UpdateApplicationSettingsCommand, deserializeAws_restJson1UpdateBaiduChannelCommand, deserializeAws_restJson1UpdateCampaignCommand, deserializeAws_restJson1UpdateEmailChannelCommand, deserializeAws_restJson1UpdateEmailTemplateCommand, deserializeAws_restJson1UpdateEndpointCommand, deserializeAws_restJson1UpdateEndpointsBatchCommand, deserializeAws_restJson1UpdateGcmChannelCommand, deserializeAws_restJson1UpdateJourneyCommand, deserializeAws_restJson1UpdateJourneyStateCommand, deserializeAws_restJson1UpdatePushTemplateCommand, deserializeAws_restJson1UpdateRecommenderConfigurationCommand, deserializeAws_restJson1UpdateSegmentCommand, deserializeAws_restJson1UpdateSmsChannelCommand, deserializeAws_restJson1UpdateSmsTemplateCommand, deserializeAws_restJson1UpdateTemplateActiveVersionCommand, deserializeAws_restJson1UpdateVoiceChannelCommand, deserializeAws_restJson1UpdateVoiceTemplateCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateAppCommand\", function() { return serializeAws_restJson1CreateAppCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateCampaignCommand\", function() { return serializeAws_restJson1CreateCampaignCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateEmailTemplateCommand\", function() { return serializeAws_restJson1CreateEmailTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateExportJobCommand\", function() { return serializeAws_restJson1CreateExportJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateImportJobCommand\", function() { return serializeAws_restJson1CreateImportJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateJourneyCommand\", function() { return serializeAws_restJson1CreateJourneyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreatePushTemplateCommand\", function() { return serializeAws_restJson1CreatePushTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateRecommenderConfigurationCommand\", function() { return serializeAws_restJson1CreateRecommenderConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateSegmentCommand\", function() { return serializeAws_restJson1CreateSegmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateSmsTemplateCommand\", function() { return serializeAws_restJson1CreateSmsTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1CreateVoiceTemplateCommand\", function() { return serializeAws_restJson1CreateVoiceTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteAdmChannelCommand\", function() { return serializeAws_restJson1DeleteAdmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteApnsChannelCommand\", function() { return serializeAws_restJson1DeleteApnsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteApnsSandboxChannelCommand\", function() { return serializeAws_restJson1DeleteApnsSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteApnsVoipChannelCommand\", function() { return serializeAws_restJson1DeleteApnsVoipChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteApnsVoipSandboxChannelCommand\", function() { return serializeAws_restJson1DeleteApnsVoipSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteAppCommand\", function() { return serializeAws_restJson1DeleteAppCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteBaiduChannelCommand\", function() { return serializeAws_restJson1DeleteBaiduChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteCampaignCommand\", function() { return serializeAws_restJson1DeleteCampaignCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteEmailChannelCommand\", function() { return serializeAws_restJson1DeleteEmailChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteEmailTemplateCommand\", function() { return serializeAws_restJson1DeleteEmailTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteEndpointCommand\", function() { return serializeAws_restJson1DeleteEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteEventStreamCommand\", function() { return serializeAws_restJson1DeleteEventStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteGcmChannelCommand\", function() { return serializeAws_restJson1DeleteGcmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteJourneyCommand\", function() { return serializeAws_restJson1DeleteJourneyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeletePushTemplateCommand\", function() { return serializeAws_restJson1DeletePushTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteRecommenderConfigurationCommand\", function() { return serializeAws_restJson1DeleteRecommenderConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteSegmentCommand\", function() { return serializeAws_restJson1DeleteSegmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteSmsChannelCommand\", function() { return serializeAws_restJson1DeleteSmsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteSmsTemplateCommand\", function() { return serializeAws_restJson1DeleteSmsTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteUserEndpointsCommand\", function() { return serializeAws_restJson1DeleteUserEndpointsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteVoiceChannelCommand\", function() { return serializeAws_restJson1DeleteVoiceChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteVoiceTemplateCommand\", function() { return serializeAws_restJson1DeleteVoiceTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetAdmChannelCommand\", function() { return serializeAws_restJson1GetAdmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetApnsChannelCommand\", function() { return serializeAws_restJson1GetApnsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetApnsSandboxChannelCommand\", function() { return serializeAws_restJson1GetApnsSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetApnsVoipChannelCommand\", function() { return serializeAws_restJson1GetApnsVoipChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetApnsVoipSandboxChannelCommand\", function() { return serializeAws_restJson1GetApnsVoipSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetAppCommand\", function() { return serializeAws_restJson1GetAppCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetApplicationDateRangeKpiCommand\", function() { return serializeAws_restJson1GetApplicationDateRangeKpiCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetApplicationSettingsCommand\", function() { return serializeAws_restJson1GetApplicationSettingsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetAppsCommand\", function() { return serializeAws_restJson1GetAppsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetBaiduChannelCommand\", function() { return serializeAws_restJson1GetBaiduChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetCampaignCommand\", function() { return serializeAws_restJson1GetCampaignCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetCampaignActivitiesCommand\", function() { return serializeAws_restJson1GetCampaignActivitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetCampaignDateRangeKpiCommand\", function() { return serializeAws_restJson1GetCampaignDateRangeKpiCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetCampaignsCommand\", function() { return serializeAws_restJson1GetCampaignsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetCampaignVersionCommand\", function() { return serializeAws_restJson1GetCampaignVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetCampaignVersionsCommand\", function() { return serializeAws_restJson1GetCampaignVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetChannelsCommand\", function() { return serializeAws_restJson1GetChannelsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetEmailChannelCommand\", function() { return serializeAws_restJson1GetEmailChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetEmailTemplateCommand\", function() { return serializeAws_restJson1GetEmailTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetEndpointCommand\", function() { return serializeAws_restJson1GetEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetEventStreamCommand\", function() { return serializeAws_restJson1GetEventStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetExportJobCommand\", function() { return serializeAws_restJson1GetExportJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetExportJobsCommand\", function() { return serializeAws_restJson1GetExportJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetGcmChannelCommand\", function() { return serializeAws_restJson1GetGcmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetImportJobCommand\", function() { return serializeAws_restJson1GetImportJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetImportJobsCommand\", function() { return serializeAws_restJson1GetImportJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetJourneyCommand\", function() { return serializeAws_restJson1GetJourneyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetJourneyDateRangeKpiCommand\", function() { return serializeAws_restJson1GetJourneyDateRangeKpiCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetJourneyExecutionActivityMetricsCommand\", function() { return serializeAws_restJson1GetJourneyExecutionActivityMetricsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetJourneyExecutionMetricsCommand\", function() { return serializeAws_restJson1GetJourneyExecutionMetricsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetPushTemplateCommand\", function() { return serializeAws_restJson1GetPushTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetRecommenderConfigurationCommand\", function() { return serializeAws_restJson1GetRecommenderConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetRecommenderConfigurationsCommand\", function() { return serializeAws_restJson1GetRecommenderConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSegmentCommand\", function() { return serializeAws_restJson1GetSegmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSegmentExportJobsCommand\", function() { return serializeAws_restJson1GetSegmentExportJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSegmentImportJobsCommand\", function() { return serializeAws_restJson1GetSegmentImportJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSegmentsCommand\", function() { return serializeAws_restJson1GetSegmentsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSegmentVersionCommand\", function() { return serializeAws_restJson1GetSegmentVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSegmentVersionsCommand\", function() { return serializeAws_restJson1GetSegmentVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSmsChannelCommand\", function() { return serializeAws_restJson1GetSmsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSmsTemplateCommand\", function() { return serializeAws_restJson1GetSmsTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetUserEndpointsCommand\", function() { return serializeAws_restJson1GetUserEndpointsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetVoiceChannelCommand\", function() { return serializeAws_restJson1GetVoiceChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetVoiceTemplateCommand\", function() { return serializeAws_restJson1GetVoiceTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListJourneysCommand\", function() { return serializeAws_restJson1ListJourneysCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListTagsForResourceCommand\", function() { return serializeAws_restJson1ListTagsForResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListTemplatesCommand\", function() { return serializeAws_restJson1ListTemplatesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListTemplateVersionsCommand\", function() { return serializeAws_restJson1ListTemplateVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PhoneNumberValidateCommand\", function() { return serializeAws_restJson1PhoneNumberValidateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PutEventsCommand\", function() { return serializeAws_restJson1PutEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PutEventStreamCommand\", function() { return serializeAws_restJson1PutEventStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1RemoveAttributesCommand\", function() { return serializeAws_restJson1RemoveAttributesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1SendMessagesCommand\", function() { return serializeAws_restJson1SendMessagesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1SendUsersMessagesCommand\", function() { return serializeAws_restJson1SendUsersMessagesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1TagResourceCommand\", function() { return serializeAws_restJson1TagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UntagResourceCommand\", function() { return serializeAws_restJson1UntagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateAdmChannelCommand\", function() { return serializeAws_restJson1UpdateAdmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateApnsChannelCommand\", function() { return serializeAws_restJson1UpdateApnsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateApnsSandboxChannelCommand\", function() { return serializeAws_restJson1UpdateApnsSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateApnsVoipChannelCommand\", function() { return serializeAws_restJson1UpdateApnsVoipChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateApnsVoipSandboxChannelCommand\", function() { return serializeAws_restJson1UpdateApnsVoipSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateApplicationSettingsCommand\", function() { return serializeAws_restJson1UpdateApplicationSettingsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateBaiduChannelCommand\", function() { return serializeAws_restJson1UpdateBaiduChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateCampaignCommand\", function() { return serializeAws_restJson1UpdateCampaignCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateEmailChannelCommand\", function() { return serializeAws_restJson1UpdateEmailChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateEmailTemplateCommand\", function() { return serializeAws_restJson1UpdateEmailTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateEndpointCommand\", function() { return serializeAws_restJson1UpdateEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateEndpointsBatchCommand\", function() { return serializeAws_restJson1UpdateEndpointsBatchCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateGcmChannelCommand\", function() { return serializeAws_restJson1UpdateGcmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateJourneyCommand\", function() { return serializeAws_restJson1UpdateJourneyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateJourneyStateCommand\", function() { return serializeAws_restJson1UpdateJourneyStateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdatePushTemplateCommand\", function() { return serializeAws_restJson1UpdatePushTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateRecommenderConfigurationCommand\", function() { return serializeAws_restJson1UpdateRecommenderConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateSegmentCommand\", function() { return serializeAws_restJson1UpdateSegmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateSmsChannelCommand\", function() { return serializeAws_restJson1UpdateSmsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateSmsTemplateCommand\", function() { return serializeAws_restJson1UpdateSmsTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateTemplateActiveVersionCommand\", function() { return serializeAws_restJson1UpdateTemplateActiveVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateVoiceChannelCommand\", function() { return serializeAws_restJson1UpdateVoiceChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1UpdateVoiceTemplateCommand\", function() { return serializeAws_restJson1UpdateVoiceTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateAppCommand\", function() { return deserializeAws_restJson1CreateAppCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateCampaignCommand\", function() { return deserializeAws_restJson1CreateCampaignCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateEmailTemplateCommand\", function() { return deserializeAws_restJson1CreateEmailTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateExportJobCommand\", function() { return deserializeAws_restJson1CreateExportJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateImportJobCommand\", function() { return deserializeAws_restJson1CreateImportJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateJourneyCommand\", function() { return deserializeAws_restJson1CreateJourneyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreatePushTemplateCommand\", function() { return deserializeAws_restJson1CreatePushTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateRecommenderConfigurationCommand\", function() { return deserializeAws_restJson1CreateRecommenderConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateSegmentCommand\", function() { return deserializeAws_restJson1CreateSegmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateSmsTemplateCommand\", function() { return deserializeAws_restJson1CreateSmsTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1CreateVoiceTemplateCommand\", function() { return deserializeAws_restJson1CreateVoiceTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteAdmChannelCommand\", function() { return deserializeAws_restJson1DeleteAdmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteApnsChannelCommand\", function() { return deserializeAws_restJson1DeleteApnsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteApnsSandboxChannelCommand\", function() { return deserializeAws_restJson1DeleteApnsSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteApnsVoipChannelCommand\", function() { return deserializeAws_restJson1DeleteApnsVoipChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteApnsVoipSandboxChannelCommand\", function() { return deserializeAws_restJson1DeleteApnsVoipSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteAppCommand\", function() { return deserializeAws_restJson1DeleteAppCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteBaiduChannelCommand\", function() { return deserializeAws_restJson1DeleteBaiduChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteCampaignCommand\", function() { return deserializeAws_restJson1DeleteCampaignCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteEmailChannelCommand\", function() { return deserializeAws_restJson1DeleteEmailChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteEmailTemplateCommand\", function() { return deserializeAws_restJson1DeleteEmailTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteEndpointCommand\", function() { return deserializeAws_restJson1DeleteEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteEventStreamCommand\", function() { return deserializeAws_restJson1DeleteEventStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteGcmChannelCommand\", function() { return deserializeAws_restJson1DeleteGcmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteJourneyCommand\", function() { return deserializeAws_restJson1DeleteJourneyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeletePushTemplateCommand\", function() { return deserializeAws_restJson1DeletePushTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteRecommenderConfigurationCommand\", function() { return deserializeAws_restJson1DeleteRecommenderConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteSegmentCommand\", function() { return deserializeAws_restJson1DeleteSegmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteSmsChannelCommand\", function() { return deserializeAws_restJson1DeleteSmsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteSmsTemplateCommand\", function() { return deserializeAws_restJson1DeleteSmsTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteUserEndpointsCommand\", function() { return deserializeAws_restJson1DeleteUserEndpointsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteVoiceChannelCommand\", function() { return deserializeAws_restJson1DeleteVoiceChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteVoiceTemplateCommand\", function() { return deserializeAws_restJson1DeleteVoiceTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetAdmChannelCommand\", function() { return deserializeAws_restJson1GetAdmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetApnsChannelCommand\", function() { return deserializeAws_restJson1GetApnsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetApnsSandboxChannelCommand\", function() { return deserializeAws_restJson1GetApnsSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetApnsVoipChannelCommand\", function() { return deserializeAws_restJson1GetApnsVoipChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetApnsVoipSandboxChannelCommand\", function() { return deserializeAws_restJson1GetApnsVoipSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetAppCommand\", function() { return deserializeAws_restJson1GetAppCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetApplicationDateRangeKpiCommand\", function() { return deserializeAws_restJson1GetApplicationDateRangeKpiCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetApplicationSettingsCommand\", function() { return deserializeAws_restJson1GetApplicationSettingsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetAppsCommand\", function() { return deserializeAws_restJson1GetAppsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetBaiduChannelCommand\", function() { return deserializeAws_restJson1GetBaiduChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetCampaignCommand\", function() { return deserializeAws_restJson1GetCampaignCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetCampaignActivitiesCommand\", function() { return deserializeAws_restJson1GetCampaignActivitiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetCampaignDateRangeKpiCommand\", function() { return deserializeAws_restJson1GetCampaignDateRangeKpiCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetCampaignsCommand\", function() { return deserializeAws_restJson1GetCampaignsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetCampaignVersionCommand\", function() { return deserializeAws_restJson1GetCampaignVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetCampaignVersionsCommand\", function() { return deserializeAws_restJson1GetCampaignVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetChannelsCommand\", function() { return deserializeAws_restJson1GetChannelsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetEmailChannelCommand\", function() { return deserializeAws_restJson1GetEmailChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetEmailTemplateCommand\", function() { return deserializeAws_restJson1GetEmailTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetEndpointCommand\", function() { return deserializeAws_restJson1GetEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetEventStreamCommand\", function() { return deserializeAws_restJson1GetEventStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetExportJobCommand\", function() { return deserializeAws_restJson1GetExportJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetExportJobsCommand\", function() { return deserializeAws_restJson1GetExportJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetGcmChannelCommand\", function() { return deserializeAws_restJson1GetGcmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetImportJobCommand\", function() { return deserializeAws_restJson1GetImportJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetImportJobsCommand\", function() { return deserializeAws_restJson1GetImportJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetJourneyCommand\", function() { return deserializeAws_restJson1GetJourneyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetJourneyDateRangeKpiCommand\", function() { return deserializeAws_restJson1GetJourneyDateRangeKpiCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetJourneyExecutionActivityMetricsCommand\", function() { return deserializeAws_restJson1GetJourneyExecutionActivityMetricsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetJourneyExecutionMetricsCommand\", function() { return deserializeAws_restJson1GetJourneyExecutionMetricsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetPushTemplateCommand\", function() { return deserializeAws_restJson1GetPushTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetRecommenderConfigurationCommand\", function() { return deserializeAws_restJson1GetRecommenderConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetRecommenderConfigurationsCommand\", function() { return deserializeAws_restJson1GetRecommenderConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSegmentCommand\", function() { return deserializeAws_restJson1GetSegmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSegmentExportJobsCommand\", function() { return deserializeAws_restJson1GetSegmentExportJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSegmentImportJobsCommand\", function() { return deserializeAws_restJson1GetSegmentImportJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSegmentsCommand\", function() { return deserializeAws_restJson1GetSegmentsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSegmentVersionCommand\", function() { return deserializeAws_restJson1GetSegmentVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSegmentVersionsCommand\", function() { return deserializeAws_restJson1GetSegmentVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSmsChannelCommand\", function() { return deserializeAws_restJson1GetSmsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSmsTemplateCommand\", function() { return deserializeAws_restJson1GetSmsTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetUserEndpointsCommand\", function() { return deserializeAws_restJson1GetUserEndpointsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetVoiceChannelCommand\", function() { return deserializeAws_restJson1GetVoiceChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetVoiceTemplateCommand\", function() { return deserializeAws_restJson1GetVoiceTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListJourneysCommand\", function() { return deserializeAws_restJson1ListJourneysCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListTagsForResourceCommand\", function() { return deserializeAws_restJson1ListTagsForResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListTemplatesCommand\", function() { return deserializeAws_restJson1ListTemplatesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListTemplateVersionsCommand\", function() { return deserializeAws_restJson1ListTemplateVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PhoneNumberValidateCommand\", function() { return deserializeAws_restJson1PhoneNumberValidateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PutEventsCommand\", function() { return deserializeAws_restJson1PutEventsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PutEventStreamCommand\", function() { return deserializeAws_restJson1PutEventStreamCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1RemoveAttributesCommand\", function() { return deserializeAws_restJson1RemoveAttributesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1SendMessagesCommand\", function() { return deserializeAws_restJson1SendMessagesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1SendUsersMessagesCommand\", function() { return deserializeAws_restJson1SendUsersMessagesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1TagResourceCommand\", function() { return deserializeAws_restJson1TagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UntagResourceCommand\", function() { return deserializeAws_restJson1UntagResourceCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateAdmChannelCommand\", function() { return deserializeAws_restJson1UpdateAdmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateApnsChannelCommand\", function() { return deserializeAws_restJson1UpdateApnsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateApnsSandboxChannelCommand\", function() { return deserializeAws_restJson1UpdateApnsSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateApnsVoipChannelCommand\", function() { return deserializeAws_restJson1UpdateApnsVoipChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateApnsVoipSandboxChannelCommand\", function() { return deserializeAws_restJson1UpdateApnsVoipSandboxChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateApplicationSettingsCommand\", function() { return deserializeAws_restJson1UpdateApplicationSettingsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateBaiduChannelCommand\", function() { return deserializeAws_restJson1UpdateBaiduChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateCampaignCommand\", function() { return deserializeAws_restJson1UpdateCampaignCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateEmailChannelCommand\", function() { return deserializeAws_restJson1UpdateEmailChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateEmailTemplateCommand\", function() { return deserializeAws_restJson1UpdateEmailTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateEndpointCommand\", function() { return deserializeAws_restJson1UpdateEndpointCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateEndpointsBatchCommand\", function() { return deserializeAws_restJson1UpdateEndpointsBatchCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateGcmChannelCommand\", function() { return deserializeAws_restJson1UpdateGcmChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateJourneyCommand\", function() { return deserializeAws_restJson1UpdateJourneyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateJourneyStateCommand\", function() { return deserializeAws_restJson1UpdateJourneyStateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdatePushTemplateCommand\", function() { return deserializeAws_restJson1UpdatePushTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateRecommenderConfigurationCommand\", function() { return deserializeAws_restJson1UpdateRecommenderConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateSegmentCommand\", function() { return deserializeAws_restJson1UpdateSegmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateSmsChannelCommand\", function() { return deserializeAws_restJson1UpdateSmsChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateSmsTemplateCommand\", function() { return deserializeAws_restJson1UpdateSmsTemplateCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateTemplateActiveVersionCommand\", function() { return deserializeAws_restJson1UpdateTemplateActiveVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateVoiceChannelCommand\", function() { return deserializeAws_restJson1UpdateVoiceChannelCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1UpdateVoiceTemplateCommand\", function() { return deserializeAws_restJson1UpdateVoiceTemplateCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\nvar serializeAws_restJson1CreateAppCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps\";\n if (input.CreateApplicationRequest !== undefined) {\n body = serializeAws_restJson1CreateApplicationRequest(input.CreateApplicationRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateCampaignCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/campaigns\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.WriteCampaignRequest !== undefined) {\n body = serializeAws_restJson1WriteCampaignRequest(input.WriteCampaignRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateEmailTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/templates/{TemplateName}/email\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n if (input.EmailTemplateRequest !== undefined) {\n body = serializeAws_restJson1EmailTemplateRequest(input.EmailTemplateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateExportJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/jobs/export\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.ExportJobRequest !== undefined) {\n body = serializeAws_restJson1ExportJobRequest(input.ExportJobRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateImportJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/jobs/import\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.ImportJobRequest !== undefined) {\n body = serializeAws_restJson1ImportJobRequest(input.ImportJobRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateJourneyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/journeys\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.WriteJourneyRequest !== undefined) {\n body = serializeAws_restJson1WriteJourneyRequest(input.WriteJourneyRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreatePushTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/templates/{TemplateName}/push\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n if (input.PushNotificationTemplateRequest !== undefined) {\n body = serializeAws_restJson1PushNotificationTemplateRequest(input.PushNotificationTemplateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateRecommenderConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/recommenders\";\n if (input.CreateRecommenderConfiguration !== undefined) {\n body = serializeAws_restJson1CreateRecommenderConfigurationShape(input.CreateRecommenderConfiguration, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateSegmentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/segments\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.WriteSegmentRequest !== undefined) {\n body = serializeAws_restJson1WriteSegmentRequest(input.WriteSegmentRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateSmsTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/templates/{TemplateName}/sms\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n if (input.SMSTemplateRequest !== undefined) {\n body = serializeAws_restJson1SMSTemplateRequest(input.SMSTemplateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1CreateVoiceTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/templates/{TemplateName}/voice\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n if (input.VoiceTemplateRequest !== undefined) {\n body = serializeAws_restJson1VoiceTemplateRequest(input.VoiceTemplateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteAdmChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/adm\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteApnsChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteApnsSandboxChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns_sandbox\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteApnsVoipChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns_voip\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteApnsVoipSandboxChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns_voip_sandbox\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteAppCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteBaiduChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/baidu\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteCampaignCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/campaigns/{CampaignId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.CampaignId !== undefined) {\n labelValue = input.CampaignId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: CampaignId.\");\n }\n resolvedPath = resolvedPath.replace(\"{CampaignId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: CampaignId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteEmailChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/email\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteEmailTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates/{TemplateName}/email\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Version !== undefined && { version: input.Version }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteEndpointCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/endpoints/{EndpointId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.EndpointId !== undefined) {\n labelValue = input.EndpointId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: EndpointId.\");\n }\n resolvedPath = resolvedPath.replace(\"{EndpointId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: EndpointId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteEventStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/eventstream\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteGcmChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/gcm\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteJourneyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/journeys/{JourneyId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.JourneyId !== undefined) {\n labelValue = input.JourneyId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JourneyId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JourneyId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JourneyId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeletePushTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates/{TemplateName}/push\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Version !== undefined && { version: input.Version }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteRecommenderConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/recommenders/{RecommenderId}\";\n if (input.RecommenderId !== undefined) {\n labelValue = input.RecommenderId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: RecommenderId.\");\n }\n resolvedPath = resolvedPath.replace(\"{RecommenderId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: RecommenderId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteSegmentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/segments/{SegmentId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.SegmentId !== undefined) {\n labelValue = input.SegmentId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: SegmentId.\");\n }\n resolvedPath = resolvedPath.replace(\"{SegmentId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: SegmentId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteSmsChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/sms\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteSmsTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates/{TemplateName}/sms\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Version !== undefined && { version: input.Version }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteUserEndpointsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/users/{UserId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.UserId !== undefined) {\n labelValue = input.UserId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: UserId.\");\n }\n resolvedPath = resolvedPath.replace(\"{UserId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: UserId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteVoiceChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/voice\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DeleteVoiceTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates/{TemplateName}/voice\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Version !== undefined && { version: input.Version }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetAdmChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/adm\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetApnsChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetApnsSandboxChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns_sandbox\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetApnsVoipChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns_voip\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetApnsVoipSandboxChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns_voip_sandbox\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetAppCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetApplicationDateRangeKpiCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/kpis/daterange/{KpiName}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.KpiName !== undefined) {\n labelValue = input.KpiName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: KpiName.\");\n }\n resolvedPath = resolvedPath.replace(\"{KpiName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: KpiName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndTime !== undefined && { \"end-time\": (input.EndTime.toISOString().split(\".\")[0] + \"Z\").toString() })), (input.NextToken !== undefined && { \"next-token\": input.NextToken })), (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.StartTime !== undefined && {\n \"start-time\": (input.StartTime.toISOString().split(\".\")[0] + \"Z\").toString(),\n }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetApplicationSettingsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/settings\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetAppsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps\";\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetBaiduChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/baidu\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetCampaignCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/campaigns/{CampaignId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.CampaignId !== undefined) {\n labelValue = input.CampaignId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: CampaignId.\");\n }\n resolvedPath = resolvedPath.replace(\"{CampaignId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: CampaignId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetCampaignActivitiesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/campaigns/{CampaignId}/activities\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.CampaignId !== undefined) {\n labelValue = input.CampaignId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: CampaignId.\");\n }\n resolvedPath = resolvedPath.replace(\"{CampaignId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: CampaignId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetCampaignDateRangeKpiCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/campaigns/{CampaignId}/kpis/daterange/{KpiName}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.CampaignId !== undefined) {\n labelValue = input.CampaignId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: CampaignId.\");\n }\n resolvedPath = resolvedPath.replace(\"{CampaignId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: CampaignId.\");\n }\n if (input.KpiName !== undefined) {\n labelValue = input.KpiName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: KpiName.\");\n }\n resolvedPath = resolvedPath.replace(\"{KpiName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: KpiName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndTime !== undefined && { \"end-time\": (input.EndTime.toISOString().split(\".\")[0] + \"Z\").toString() })), (input.NextToken !== undefined && { \"next-token\": input.NextToken })), (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.StartTime !== undefined && {\n \"start-time\": (input.StartTime.toISOString().split(\".\")[0] + \"Z\").toString(),\n }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetCampaignsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/campaigns\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetCampaignVersionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/campaigns/{CampaignId}/versions/{Version}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.CampaignId !== undefined) {\n labelValue = input.CampaignId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: CampaignId.\");\n }\n resolvedPath = resolvedPath.replace(\"{CampaignId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: CampaignId.\");\n }\n if (input.Version !== undefined) {\n labelValue = input.Version;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Version.\");\n }\n resolvedPath = resolvedPath.replace(\"{Version}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Version.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetCampaignVersionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/campaigns/{CampaignId}/versions\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.CampaignId !== undefined) {\n labelValue = input.CampaignId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: CampaignId.\");\n }\n resolvedPath = resolvedPath.replace(\"{CampaignId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: CampaignId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetChannelsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetEmailChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/email\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetEmailTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates/{TemplateName}/email\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Version !== undefined && { version: input.Version }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetEndpointCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/endpoints/{EndpointId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.EndpointId !== undefined) {\n labelValue = input.EndpointId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: EndpointId.\");\n }\n resolvedPath = resolvedPath.replace(\"{EndpointId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: EndpointId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetEventStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/eventstream\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetExportJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/jobs/export/{JobId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.JobId !== undefined) {\n labelValue = input.JobId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JobId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JobId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JobId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetExportJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/jobs/export\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetGcmChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/gcm\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetImportJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/jobs/import/{JobId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.JobId !== undefined) {\n labelValue = input.JobId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JobId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JobId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JobId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetImportJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/jobs/import\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetJourneyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/journeys/{JourneyId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.JourneyId !== undefined) {\n labelValue = input.JourneyId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JourneyId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JourneyId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JourneyId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetJourneyDateRangeKpiCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/journeys/{JourneyId}/kpis/daterange/{KpiName}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.JourneyId !== undefined) {\n labelValue = input.JourneyId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JourneyId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JourneyId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JourneyId.\");\n }\n if (input.KpiName !== undefined) {\n labelValue = input.KpiName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: KpiName.\");\n }\n resolvedPath = resolvedPath.replace(\"{KpiName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: KpiName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndTime !== undefined && { \"end-time\": (input.EndTime.toISOString().split(\".\")[0] + \"Z\").toString() })), (input.NextToken !== undefined && { \"next-token\": input.NextToken })), (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.StartTime !== undefined && {\n \"start-time\": (input.StartTime.toISOString().split(\".\")[0] + \"Z\").toString(),\n }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetJourneyExecutionActivityMetricsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/journeys/{JourneyId}/activities/{JourneyActivityId}/execution-metrics\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.JourneyActivityId !== undefined) {\n labelValue = input.JourneyActivityId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JourneyActivityId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JourneyActivityId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JourneyActivityId.\");\n }\n if (input.JourneyId !== undefined) {\n labelValue = input.JourneyId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JourneyId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JourneyId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JourneyId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.NextToken !== undefined && { \"next-token\": input.NextToken })), (input.PageSize !== undefined && { \"page-size\": input.PageSize }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetJourneyExecutionMetricsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/journeys/{JourneyId}/execution-metrics\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.JourneyId !== undefined) {\n labelValue = input.JourneyId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JourneyId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JourneyId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JourneyId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.NextToken !== undefined && { \"next-token\": input.NextToken })), (input.PageSize !== undefined && { \"page-size\": input.PageSize }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetPushTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates/{TemplateName}/push\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Version !== undefined && { version: input.Version }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetRecommenderConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/recommenders/{RecommenderId}\";\n if (input.RecommenderId !== undefined) {\n labelValue = input.RecommenderId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: RecommenderId.\");\n }\n resolvedPath = resolvedPath.replace(\"{RecommenderId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: RecommenderId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetRecommenderConfigurationsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/recommenders\";\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSegmentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/segments/{SegmentId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.SegmentId !== undefined) {\n labelValue = input.SegmentId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: SegmentId.\");\n }\n resolvedPath = resolvedPath.replace(\"{SegmentId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: SegmentId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSegmentExportJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/segments/{SegmentId}/jobs/export\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.SegmentId !== undefined) {\n labelValue = input.SegmentId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: SegmentId.\");\n }\n resolvedPath = resolvedPath.replace(\"{SegmentId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: SegmentId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSegmentImportJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/segments/{SegmentId}/jobs/import\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.SegmentId !== undefined) {\n labelValue = input.SegmentId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: SegmentId.\");\n }\n resolvedPath = resolvedPath.replace(\"{SegmentId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: SegmentId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSegmentsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/segments\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSegmentVersionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/segments/{SegmentId}/versions/{Version}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.SegmentId !== undefined) {\n labelValue = input.SegmentId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: SegmentId.\");\n }\n resolvedPath = resolvedPath.replace(\"{SegmentId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: SegmentId.\");\n }\n if (input.Version !== undefined) {\n labelValue = input.Version;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Version.\");\n }\n resolvedPath = resolvedPath.replace(\"{Version}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Version.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSegmentVersionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/segments/{SegmentId}/versions\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.SegmentId !== undefined) {\n labelValue = input.SegmentId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: SegmentId.\");\n }\n resolvedPath = resolvedPath.replace(\"{SegmentId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: SegmentId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSmsChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/sms\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSmsTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates/{TemplateName}/sms\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Version !== undefined && { version: input.Version }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetUserEndpointsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/users/{UserId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.UserId !== undefined) {\n labelValue = input.UserId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: UserId.\");\n }\n resolvedPath = resolvedPath.replace(\"{UserId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: UserId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetVoiceChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/voice\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetVoiceTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates/{TemplateName}/voice\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Version !== undefined && { version: input.Version }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListJourneysCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/apps/{ApplicationId}/journeys\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Token !== undefined && { token: input.Token }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListTagsForResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/tags/{ResourceArn}\";\n if (input.ResourceArn !== undefined) {\n labelValue = input.ResourceArn;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ResourceArn.\");\n }\n resolvedPath = resolvedPath.replace(\"{ResourceArn}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ResourceArn.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListTemplatesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates\";\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.NextToken !== undefined && { \"next-token\": input.NextToken })), (input.PageSize !== undefined && { \"page-size\": input.PageSize })), (input.Prefix !== undefined && { prefix: input.Prefix })), (input.TemplateType !== undefined && { \"template-type\": input.TemplateType }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListTemplateVersionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/templates/{TemplateName}/{TemplateType}/versions\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n if (input.TemplateType !== undefined) {\n labelValue = input.TemplateType;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateType.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateType}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateType.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.NextToken !== undefined && { \"next-token\": input.NextToken })), (input.PageSize !== undefined && { \"page-size\": input.PageSize }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PhoneNumberValidateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/phone/number/validate\";\n if (input.NumberValidateRequest !== undefined) {\n body = serializeAws_restJson1NumberValidateRequest(input.NumberValidateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PutEventsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/events\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.EventsRequest !== undefined) {\n body = serializeAws_restJson1EventsRequest(input.EventsRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PutEventStreamCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/eventstream\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.WriteEventStream !== undefined) {\n body = serializeAws_restJson1WriteEventStream(input.WriteEventStream, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1RemoveAttributesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/attributes/{AttributeType}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.AttributeType !== undefined) {\n labelValue = input.AttributeType;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: AttributeType.\");\n }\n resolvedPath = resolvedPath.replace(\"{AttributeType}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: AttributeType.\");\n }\n if (input.UpdateAttributesRequest !== undefined) {\n body = serializeAws_restJson1UpdateAttributesRequest(input.UpdateAttributesRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1SendMessagesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/messages\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.MessageRequest !== undefined) {\n body = serializeAws_restJson1MessageRequest(input.MessageRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1SendUsersMessagesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/users-messages\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.SendUsersMessageRequest !== undefined) {\n body = serializeAws_restJson1SendUsersMessageRequest(input.SendUsersMessageRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1TagResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/tags/{ResourceArn}\";\n if (input.ResourceArn !== undefined) {\n labelValue = input.ResourceArn;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ResourceArn.\");\n }\n resolvedPath = resolvedPath.replace(\"{ResourceArn}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ResourceArn.\");\n }\n if (input.TagsModel !== undefined) {\n body = serializeAws_restJson1TagsModel(input.TagsModel, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UntagResourceCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/tags/{ResourceArn}\";\n if (input.ResourceArn !== undefined) {\n labelValue = input.ResourceArn;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ResourceArn.\");\n }\n resolvedPath = resolvedPath.replace(\"{ResourceArn}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ResourceArn.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.TagKeys !== undefined && { tagKeys: (input.TagKeys || []).map(function (_entry) { return _entry; }) }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateAdmChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/adm\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.ADMChannelRequest !== undefined) {\n body = serializeAws_restJson1ADMChannelRequest(input.ADMChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateApnsChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.APNSChannelRequest !== undefined) {\n body = serializeAws_restJson1APNSChannelRequest(input.APNSChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateApnsSandboxChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns_sandbox\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.APNSSandboxChannelRequest !== undefined) {\n body = serializeAws_restJson1APNSSandboxChannelRequest(input.APNSSandboxChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateApnsVoipChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns_voip\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.APNSVoipChannelRequest !== undefined) {\n body = serializeAws_restJson1APNSVoipChannelRequest(input.APNSVoipChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateApnsVoipSandboxChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/apns_voip_sandbox\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.APNSVoipSandboxChannelRequest !== undefined) {\n body = serializeAws_restJson1APNSVoipSandboxChannelRequest(input.APNSVoipSandboxChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateApplicationSettingsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/settings\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.WriteApplicationSettingsRequest !== undefined) {\n body = serializeAws_restJson1WriteApplicationSettingsRequest(input.WriteApplicationSettingsRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateBaiduChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/baidu\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.BaiduChannelRequest !== undefined) {\n body = serializeAws_restJson1BaiduChannelRequest(input.BaiduChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateCampaignCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/campaigns/{CampaignId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.CampaignId !== undefined) {\n labelValue = input.CampaignId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: CampaignId.\");\n }\n resolvedPath = resolvedPath.replace(\"{CampaignId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: CampaignId.\");\n }\n if (input.WriteCampaignRequest !== undefined) {\n body = serializeAws_restJson1WriteCampaignRequest(input.WriteCampaignRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateEmailChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/email\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.EmailChannelRequest !== undefined) {\n body = serializeAws_restJson1EmailChannelRequest(input.EmailChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateEmailTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/templates/{TemplateName}/email\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CreateNewVersion !== undefined && { \"create-new-version\": input.CreateNewVersion.toString() })), (input.Version !== undefined && { version: input.Version }));\n if (input.EmailTemplateRequest !== undefined) {\n body = serializeAws_restJson1EmailTemplateRequest(input.EmailTemplateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateEndpointCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/endpoints/{EndpointId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.EndpointId !== undefined) {\n labelValue = input.EndpointId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: EndpointId.\");\n }\n resolvedPath = resolvedPath.replace(\"{EndpointId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: EndpointId.\");\n }\n if (input.EndpointRequest !== undefined) {\n body = serializeAws_restJson1EndpointRequest(input.EndpointRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateEndpointsBatchCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/endpoints\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.EndpointBatchRequest !== undefined) {\n body = serializeAws_restJson1EndpointBatchRequest(input.EndpointBatchRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateGcmChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/gcm\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.GCMChannelRequest !== undefined) {\n body = serializeAws_restJson1GCMChannelRequest(input.GCMChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateJourneyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/journeys/{JourneyId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.JourneyId !== undefined) {\n labelValue = input.JourneyId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JourneyId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JourneyId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JourneyId.\");\n }\n if (input.WriteJourneyRequest !== undefined) {\n body = serializeAws_restJson1WriteJourneyRequest(input.WriteJourneyRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateJourneyStateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/journeys/{JourneyId}/state\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.JourneyId !== undefined) {\n labelValue = input.JourneyId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: JourneyId.\");\n }\n resolvedPath = resolvedPath.replace(\"{JourneyId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: JourneyId.\");\n }\n if (input.JourneyStateRequest !== undefined) {\n body = serializeAws_restJson1JourneyStateRequest(input.JourneyStateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdatePushTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/templates/{TemplateName}/push\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CreateNewVersion !== undefined && { \"create-new-version\": input.CreateNewVersion.toString() })), (input.Version !== undefined && { version: input.Version }));\n if (input.PushNotificationTemplateRequest !== undefined) {\n body = serializeAws_restJson1PushNotificationTemplateRequest(input.PushNotificationTemplateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateRecommenderConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/recommenders/{RecommenderId}\";\n if (input.RecommenderId !== undefined) {\n labelValue = input.RecommenderId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: RecommenderId.\");\n }\n resolvedPath = resolvedPath.replace(\"{RecommenderId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: RecommenderId.\");\n }\n if (input.UpdateRecommenderConfiguration !== undefined) {\n body = serializeAws_restJson1UpdateRecommenderConfigurationShape(input.UpdateRecommenderConfiguration, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateSegmentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/segments/{SegmentId}\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.SegmentId !== undefined) {\n labelValue = input.SegmentId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: SegmentId.\");\n }\n resolvedPath = resolvedPath.replace(\"{SegmentId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: SegmentId.\");\n }\n if (input.WriteSegmentRequest !== undefined) {\n body = serializeAws_restJson1WriteSegmentRequest(input.WriteSegmentRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateSmsChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/sms\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.SMSChannelRequest !== undefined) {\n body = serializeAws_restJson1SMSChannelRequest(input.SMSChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateSmsTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/templates/{TemplateName}/sms\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CreateNewVersion !== undefined && { \"create-new-version\": input.CreateNewVersion.toString() })), (input.Version !== undefined && { version: input.Version }));\n if (input.SMSTemplateRequest !== undefined) {\n body = serializeAws_restJson1SMSTemplateRequest(input.SMSTemplateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateTemplateActiveVersionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/templates/{TemplateName}/{TemplateType}/active-version\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n if (input.TemplateType !== undefined) {\n labelValue = input.TemplateType;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateType.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateType}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateType.\");\n }\n if (input.TemplateActiveVersionRequest !== undefined) {\n body = serializeAws_restJson1TemplateActiveVersionRequest(input.TemplateActiveVersionRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateVoiceChannelCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/apps/{ApplicationId}/channels/voice\";\n if (input.ApplicationId !== undefined) {\n labelValue = input.ApplicationId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: ApplicationId.\");\n }\n resolvedPath = resolvedPath.replace(\"{ApplicationId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: ApplicationId.\");\n }\n if (input.VoiceChannelRequest !== undefined) {\n body = serializeAws_restJson1VoiceChannelRequest(input.VoiceChannelRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1UpdateVoiceTemplateCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/templates/{TemplateName}/voice\";\n if (input.TemplateName !== undefined) {\n labelValue = input.TemplateName;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TemplateName.\");\n }\n resolvedPath = resolvedPath.replace(\"{TemplateName}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TemplateName.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CreateNewVersion !== undefined && { \"create-new-version\": input.CreateNewVersion.toString() })), (input.Version !== undefined && { version: input.Version }));\n if (input.VoiceTemplateRequest !== undefined) {\n body = serializeAws_restJson1VoiceTemplateRequest(input.VoiceTemplateRequest, context);\n }\n if (body === undefined) {\n body = {};\n }\n body = JSON.stringify(body);\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateAppCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateAppCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ApplicationResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ApplicationResponse = deserializeAws_restJson1ApplicationResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateAppCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateCampaignCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateCampaignCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CampaignResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CampaignResponse = deserializeAws_restJson1CampaignResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateCampaignCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateEmailTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateEmailTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CreateTemplateMessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CreateTemplateMessageBody = deserializeAws_restJson1CreateTemplateMessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateEmailTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateExportJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateExportJobCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ExportJobResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ExportJobResponse = deserializeAws_restJson1ExportJobResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateExportJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateImportJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateImportJobCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ImportJobResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ImportJobResponse = deserializeAws_restJson1ImportJobResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateImportJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateJourneyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateJourneyCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n JourneyResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.JourneyResponse = deserializeAws_restJson1JourneyResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateJourneyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreatePushTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreatePushTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CreateTemplateMessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CreateTemplateMessageBody = deserializeAws_restJson1CreateTemplateMessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreatePushTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateRecommenderConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateRecommenderConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RecommenderConfigurationResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.RecommenderConfigurationResponse = deserializeAws_restJson1RecommenderConfigurationResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateRecommenderConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateSegmentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateSegmentCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SegmentResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SegmentResponse = deserializeAws_restJson1SegmentResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateSegmentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateSmsTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateSmsTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CreateTemplateMessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CreateTemplateMessageBody = deserializeAws_restJson1CreateTemplateMessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateSmsTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateVoiceTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 201 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1CreateVoiceTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CreateTemplateMessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CreateTemplateMessageBody = deserializeAws_restJson1CreateTemplateMessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1CreateVoiceTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteAdmChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteAdmChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ADMChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ADMChannelResponse = deserializeAws_restJson1ADMChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteAdmChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteApnsChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteApnsChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSChannelResponse = deserializeAws_restJson1APNSChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteApnsChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteApnsSandboxChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteApnsSandboxChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSSandboxChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSSandboxChannelResponse = deserializeAws_restJson1APNSSandboxChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteApnsSandboxChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteApnsVoipChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteApnsVoipChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSVoipChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSVoipChannelResponse = deserializeAws_restJson1APNSVoipChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteApnsVoipChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteApnsVoipSandboxChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteApnsVoipSandboxChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSVoipSandboxChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSVoipSandboxChannelResponse = deserializeAws_restJson1APNSVoipSandboxChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteApnsVoipSandboxChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteAppCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteAppCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ApplicationResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ApplicationResponse = deserializeAws_restJson1ApplicationResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteAppCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteBaiduChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteBaiduChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n BaiduChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.BaiduChannelResponse = deserializeAws_restJson1BaiduChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteBaiduChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteCampaignCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteCampaignCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CampaignResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CampaignResponse = deserializeAws_restJson1CampaignResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteCampaignCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteEmailChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteEmailChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EmailChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EmailChannelResponse = deserializeAws_restJson1EmailChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteEmailChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteEmailTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteEmailTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteEmailTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteEndpointCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteEndpointCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EndpointResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EndpointResponse = deserializeAws_restJson1EndpointResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteEndpointCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteEventStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteEventStreamCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EventStream: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EventStream = deserializeAws_restJson1EventStream(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteEventStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteGcmChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteGcmChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n GCMChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.GCMChannelResponse = deserializeAws_restJson1GCMChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteGcmChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteJourneyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteJourneyCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n JourneyResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.JourneyResponse = deserializeAws_restJson1JourneyResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteJourneyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeletePushTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeletePushTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeletePushTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteRecommenderConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteRecommenderConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RecommenderConfigurationResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.RecommenderConfigurationResponse = deserializeAws_restJson1RecommenderConfigurationResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteRecommenderConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSegmentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteSegmentCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SegmentResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SegmentResponse = deserializeAws_restJson1SegmentResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSegmentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSmsChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteSmsChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SMSChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SMSChannelResponse = deserializeAws_restJson1SMSChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSmsChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSmsTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteSmsTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteSmsTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteUserEndpointsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteUserEndpointsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EndpointsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EndpointsResponse = deserializeAws_restJson1EndpointsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteUserEndpointsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteVoiceChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteVoiceChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n VoiceChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.VoiceChannelResponse = deserializeAws_restJson1VoiceChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteVoiceChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteVoiceTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteVoiceTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteVoiceTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetAdmChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetAdmChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ADMChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ADMChannelResponse = deserializeAws_restJson1ADMChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetAdmChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApnsChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetApnsChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSChannelResponse = deserializeAws_restJson1APNSChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApnsChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApnsSandboxChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetApnsSandboxChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSSandboxChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSSandboxChannelResponse = deserializeAws_restJson1APNSSandboxChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApnsSandboxChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApnsVoipChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetApnsVoipChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSVoipChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSVoipChannelResponse = deserializeAws_restJson1APNSVoipChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApnsVoipChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApnsVoipSandboxChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetApnsVoipSandboxChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSVoipSandboxChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSVoipSandboxChannelResponse = deserializeAws_restJson1APNSVoipSandboxChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApnsVoipSandboxChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetAppCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetAppCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ApplicationResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ApplicationResponse = deserializeAws_restJson1ApplicationResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetAppCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApplicationDateRangeKpiCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetApplicationDateRangeKpiCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ApplicationDateRangeKpiResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ApplicationDateRangeKpiResponse = deserializeAws_restJson1ApplicationDateRangeKpiResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApplicationDateRangeKpiCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApplicationSettingsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetApplicationSettingsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ApplicationSettingsResource: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ApplicationSettingsResource = deserializeAws_restJson1ApplicationSettingsResource(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetApplicationSettingsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetAppsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetAppsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ApplicationsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ApplicationsResponse = deserializeAws_restJson1ApplicationsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetAppsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetBaiduChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetBaiduChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n BaiduChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.BaiduChannelResponse = deserializeAws_restJson1BaiduChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetBaiduChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetCampaignCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CampaignResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CampaignResponse = deserializeAws_restJson1CampaignResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignActivitiesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetCampaignActivitiesCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ActivitiesResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ActivitiesResponse = deserializeAws_restJson1ActivitiesResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignActivitiesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignDateRangeKpiCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetCampaignDateRangeKpiCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CampaignDateRangeKpiResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CampaignDateRangeKpiResponse = deserializeAws_restJson1CampaignDateRangeKpiResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignDateRangeKpiCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetCampaignsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CampaignsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CampaignsResponse = deserializeAws_restJson1CampaignsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignVersionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetCampaignVersionCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CampaignResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CampaignResponse = deserializeAws_restJson1CampaignResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignVersionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignVersionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetCampaignVersionsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CampaignsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CampaignsResponse = deserializeAws_restJson1CampaignsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetCampaignVersionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetChannelsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetChannelsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ChannelsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ChannelsResponse = deserializeAws_restJson1ChannelsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetChannelsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetEmailChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetEmailChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EmailChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EmailChannelResponse = deserializeAws_restJson1EmailChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetEmailChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetEmailTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetEmailTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EmailTemplateResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EmailTemplateResponse = deserializeAws_restJson1EmailTemplateResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetEmailTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetEndpointCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetEndpointCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EndpointResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EndpointResponse = deserializeAws_restJson1EndpointResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetEndpointCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetEventStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetEventStreamCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EventStream: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EventStream = deserializeAws_restJson1EventStream(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetEventStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetExportJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetExportJobCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ExportJobResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ExportJobResponse = deserializeAws_restJson1ExportJobResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetExportJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetExportJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetExportJobsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ExportJobsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ExportJobsResponse = deserializeAws_restJson1ExportJobsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetExportJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetGcmChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetGcmChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n GCMChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.GCMChannelResponse = deserializeAws_restJson1GCMChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetGcmChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetImportJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetImportJobCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ImportJobResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ImportJobResponse = deserializeAws_restJson1ImportJobResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetImportJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetImportJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetImportJobsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ImportJobsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ImportJobsResponse = deserializeAws_restJson1ImportJobsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetImportJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetJourneyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetJourneyCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n JourneyResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.JourneyResponse = deserializeAws_restJson1JourneyResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetJourneyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetJourneyDateRangeKpiCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetJourneyDateRangeKpiCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n JourneyDateRangeKpiResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.JourneyDateRangeKpiResponse = deserializeAws_restJson1JourneyDateRangeKpiResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetJourneyDateRangeKpiCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetJourneyExecutionActivityMetricsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetJourneyExecutionActivityMetricsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n JourneyExecutionActivityMetricsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.JourneyExecutionActivityMetricsResponse = deserializeAws_restJson1JourneyExecutionActivityMetricsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetJourneyExecutionActivityMetricsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetJourneyExecutionMetricsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetJourneyExecutionMetricsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n JourneyExecutionMetricsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.JourneyExecutionMetricsResponse = deserializeAws_restJson1JourneyExecutionMetricsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetJourneyExecutionMetricsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetPushTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetPushTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n PushNotificationTemplateResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.PushNotificationTemplateResponse = deserializeAws_restJson1PushNotificationTemplateResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetPushTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetRecommenderConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetRecommenderConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RecommenderConfigurationResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.RecommenderConfigurationResponse = deserializeAws_restJson1RecommenderConfigurationResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetRecommenderConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetRecommenderConfigurationsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetRecommenderConfigurationsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ListRecommenderConfigurationsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ListRecommenderConfigurationsResponse = deserializeAws_restJson1ListRecommenderConfigurationsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetRecommenderConfigurationsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetSegmentCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SegmentResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SegmentResponse = deserializeAws_restJson1SegmentResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentExportJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetSegmentExportJobsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ExportJobsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ExportJobsResponse = deserializeAws_restJson1ExportJobsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentExportJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentImportJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetSegmentImportJobsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ImportJobsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ImportJobsResponse = deserializeAws_restJson1ImportJobsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentImportJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetSegmentsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SegmentsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SegmentsResponse = deserializeAws_restJson1SegmentsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentVersionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetSegmentVersionCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SegmentResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SegmentResponse = deserializeAws_restJson1SegmentResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentVersionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentVersionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetSegmentVersionsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SegmentsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SegmentsResponse = deserializeAws_restJson1SegmentsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSegmentVersionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSmsChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetSmsChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SMSChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SMSChannelResponse = deserializeAws_restJson1SMSChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSmsChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSmsTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetSmsTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SMSTemplateResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SMSTemplateResponse = deserializeAws_restJson1SMSTemplateResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSmsTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetUserEndpointsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetUserEndpointsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EndpointsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EndpointsResponse = deserializeAws_restJson1EndpointsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetUserEndpointsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetVoiceChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetVoiceChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n VoiceChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.VoiceChannelResponse = deserializeAws_restJson1VoiceChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetVoiceChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetVoiceTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetVoiceTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n VoiceTemplateResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.VoiceTemplateResponse = deserializeAws_restJson1VoiceTemplateResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetVoiceTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1ListJourneysCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1ListJourneysCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n JourneysResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.JourneysResponse = deserializeAws_restJson1JourneysResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1ListJourneysCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTagsForResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1ListTagsForResourceCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n TagsModel: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.TagsModel = deserializeAws_restJson1TagsModel(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTagsForResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTemplatesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1ListTemplatesCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n TemplatesResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.TemplatesResponse = deserializeAws_restJson1TemplatesResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTemplatesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"TooManyRequestsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTemplateVersionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1ListTemplateVersionsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n TemplateVersionsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.TemplateVersionsResponse = deserializeAws_restJson1TemplateVersionsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1ListTemplateVersionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1PhoneNumberValidateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1PhoneNumberValidateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n NumberValidateResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.NumberValidateResponse = deserializeAws_restJson1NumberValidateResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1PhoneNumberValidateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1PutEventsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1PutEventsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EventsResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EventsResponse = deserializeAws_restJson1EventsResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1PutEventsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1PutEventStreamCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1PutEventStreamCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EventStream: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EventStream = deserializeAws_restJson1EventStream(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1PutEventStreamCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1RemoveAttributesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1RemoveAttributesCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n AttributesResource: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.AttributesResource = deserializeAws_restJson1AttributesResource(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1RemoveAttributesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1SendMessagesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1SendMessagesCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageResponse = deserializeAws_restJson1MessageResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1SendMessagesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1SendUsersMessagesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1SendUsersMessagesCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SendUsersMessageResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SendUsersMessageResponse = deserializeAws_restJson1SendUsersMessageResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1SendUsersMessagesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1TagResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1TagResourceCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1TagResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UntagResourceCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UntagResourceCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UntagResourceCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateAdmChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateAdmChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ADMChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ADMChannelResponse = deserializeAws_restJson1ADMChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateAdmChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApnsChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateApnsChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSChannelResponse = deserializeAws_restJson1APNSChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApnsChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApnsSandboxChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateApnsSandboxChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSSandboxChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSSandboxChannelResponse = deserializeAws_restJson1APNSSandboxChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApnsSandboxChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApnsVoipChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateApnsVoipChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSVoipChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSVoipChannelResponse = deserializeAws_restJson1APNSVoipChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApnsVoipChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApnsVoipSandboxChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateApnsVoipSandboxChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n APNSVoipSandboxChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.APNSVoipSandboxChannelResponse = deserializeAws_restJson1APNSVoipSandboxChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApnsVoipSandboxChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApplicationSettingsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateApplicationSettingsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ApplicationSettingsResource: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ApplicationSettingsResource = deserializeAws_restJson1ApplicationSettingsResource(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateApplicationSettingsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateBaiduChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateBaiduChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n BaiduChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.BaiduChannelResponse = deserializeAws_restJson1BaiduChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateBaiduChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateCampaignCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateCampaignCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CampaignResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CampaignResponse = deserializeAws_restJson1CampaignResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateCampaignCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateEmailChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateEmailChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n EmailChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.EmailChannelResponse = deserializeAws_restJson1EmailChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateEmailChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateEmailTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateEmailTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateEmailTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateEndpointCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateEndpointCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateEndpointCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateEndpointsBatchCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateEndpointsBatchCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateEndpointsBatchCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateGcmChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateGcmChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n GCMChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.GCMChannelResponse = deserializeAws_restJson1GCMChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateGcmChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateJourneyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateJourneyCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n JourneyResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.JourneyResponse = deserializeAws_restJson1JourneyResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateJourneyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ConflictException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ConflictException\": return [3 /*break*/, 4];\n case \"ForbiddenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 6];\n case \"InternalServerErrorException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 8];\n case \"MethodNotAllowedException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 10];\n case \"NotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 12];\n case \"PayloadTooLargeException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 14];\n case \"TooManyRequestsException\": return [3 /*break*/, 16];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ConflictExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateJourneyStateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateJourneyStateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n JourneyResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.JourneyResponse = deserializeAws_restJson1JourneyResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateJourneyStateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdatePushTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdatePushTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdatePushTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateRecommenderConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateRecommenderConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RecommenderConfigurationResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.RecommenderConfigurationResponse = deserializeAws_restJson1RecommenderConfigurationResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateRecommenderConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateSegmentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateSegmentCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SegmentResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SegmentResponse = deserializeAws_restJson1SegmentResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateSegmentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateSmsChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateSmsChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SMSChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.SMSChannelResponse = deserializeAws_restJson1SMSChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateSmsChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateSmsTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateSmsTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateSmsTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateTemplateActiveVersionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateTemplateActiveVersionCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateTemplateActiveVersionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateVoiceChannelCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateVoiceChannelCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n VoiceChannelResponse: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.VoiceChannelResponse = deserializeAws_restJson1VoiceChannelResponse(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateVoiceChannelCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateVoiceTemplateCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 202 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1UpdateVoiceTemplateCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MessageBody: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MessageBody = deserializeAws_restJson1MessageBody(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1UpdateVoiceTemplateCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BadRequestException\": return [3 /*break*/, 2];\n case \"com.amazonaws.pinpoint#BadRequestException\": return [3 /*break*/, 2];\n case \"ForbiddenException\": return [3 /*break*/, 4];\n case \"com.amazonaws.pinpoint#ForbiddenException\": return [3 /*break*/, 4];\n case \"InternalServerErrorException\": return [3 /*break*/, 6];\n case \"com.amazonaws.pinpoint#InternalServerErrorException\": return [3 /*break*/, 6];\n case \"MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.pinpoint#MethodNotAllowedException\": return [3 /*break*/, 8];\n case \"NotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.pinpoint#NotFoundException\": return [3 /*break*/, 10];\n case \"PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"com.amazonaws.pinpoint#PayloadTooLargeException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.pinpoint#TooManyRequestsException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1BadRequestExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ForbiddenExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InternalServerErrorExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MethodNotAllowedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1NotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1PayloadTooLargeExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1BadRequestExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"BadRequestException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n Message: undefined,\n RequestID: undefined,\n };\n data = parsedOutput.body;\n if (data.Message !== undefined && data.Message !== null) {\n contents.Message = data.Message;\n }\n if (data.RequestID !== undefined && data.RequestID !== null) {\n contents.RequestID = data.RequestID;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1ConflictExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"ConflictException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n Message: undefined,\n RequestID: undefined,\n };\n data = parsedOutput.body;\n if (data.Message !== undefined && data.Message !== null) {\n contents.Message = data.Message;\n }\n if (data.RequestID !== undefined && data.RequestID !== null) {\n contents.RequestID = data.RequestID;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1ForbiddenExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"ForbiddenException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n Message: undefined,\n RequestID: undefined,\n };\n data = parsedOutput.body;\n if (data.Message !== undefined && data.Message !== null) {\n contents.Message = data.Message;\n }\n if (data.RequestID !== undefined && data.RequestID !== null) {\n contents.RequestID = data.RequestID;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1InternalServerErrorExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InternalServerErrorException\",\n $fault: \"server\",\n $metadata: deserializeMetadata(parsedOutput),\n Message: undefined,\n RequestID: undefined,\n };\n data = parsedOutput.body;\n if (data.Message !== undefined && data.Message !== null) {\n contents.Message = data.Message;\n }\n if (data.RequestID !== undefined && data.RequestID !== null) {\n contents.RequestID = data.RequestID;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1MethodNotAllowedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"MethodNotAllowedException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n Message: undefined,\n RequestID: undefined,\n };\n data = parsedOutput.body;\n if (data.Message !== undefined && data.Message !== null) {\n contents.Message = data.Message;\n }\n if (data.RequestID !== undefined && data.RequestID !== null) {\n contents.RequestID = data.RequestID;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1NotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"NotFoundException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n Message: undefined,\n RequestID: undefined,\n };\n data = parsedOutput.body;\n if (data.Message !== undefined && data.Message !== null) {\n contents.Message = data.Message;\n }\n if (data.RequestID !== undefined && data.RequestID !== null) {\n contents.RequestID = data.RequestID;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1PayloadTooLargeExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"PayloadTooLargeException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n Message: undefined,\n RequestID: undefined,\n };\n data = parsedOutput.body;\n if (data.Message !== undefined && data.Message !== null) {\n contents.Message = data.Message;\n }\n if (data.RequestID !== undefined && data.RequestID !== null) {\n contents.RequestID = data.RequestID;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1TooManyRequestsExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"TooManyRequestsException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n Message: undefined,\n RequestID: undefined,\n };\n data = parsedOutput.body;\n if (data.Message !== undefined && data.Message !== null) {\n contents.Message = data.Message;\n }\n if (data.RequestID !== undefined && data.RequestID !== null) {\n contents.RequestID = data.RequestID;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_restJson1Activity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CUSTOM !== undefined &&\n input.CUSTOM !== null && { CUSTOM: serializeAws_restJson1CustomMessageActivity(input.CUSTOM, context) })), (input.ConditionalSplit !== undefined &&\n input.ConditionalSplit !== null && {\n ConditionalSplit: serializeAws_restJson1ConditionalSplitActivity(input.ConditionalSplit, context),\n })), (input.Description !== undefined && input.Description !== null && { Description: input.Description })), (input.EMAIL !== undefined &&\n input.EMAIL !== null && { EMAIL: serializeAws_restJson1EmailMessageActivity(input.EMAIL, context) })), (input.Holdout !== undefined &&\n input.Holdout !== null && { Holdout: serializeAws_restJson1HoldoutActivity(input.Holdout, context) })), (input.MultiCondition !== undefined &&\n input.MultiCondition !== null && {\n MultiCondition: serializeAws_restJson1MultiConditionalSplitActivity(input.MultiCondition, context),\n })), (input.PUSH !== undefined &&\n input.PUSH !== null && { PUSH: serializeAws_restJson1PushMessageActivity(input.PUSH, context) })), (input.RandomSplit !== undefined &&\n input.RandomSplit !== null && {\n RandomSplit: serializeAws_restJson1RandomSplitActivity(input.RandomSplit, context),\n })), (input.SMS !== undefined &&\n input.SMS !== null && { SMS: serializeAws_restJson1SMSMessageActivity(input.SMS, context) })), (input.Wait !== undefined &&\n input.Wait !== null && { Wait: serializeAws_restJson1WaitActivity(input.Wait, context) }));\n};\nvar serializeAws_restJson1AddressConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BodyOverride !== undefined && input.BodyOverride !== null && { BodyOverride: input.BodyOverride })), (input.ChannelType !== undefined && input.ChannelType !== null && { ChannelType: input.ChannelType })), (input.Context !== undefined &&\n input.Context !== null && { Context: serializeAws_restJson1MapOf__string(input.Context, context) })), (input.RawContent !== undefined && input.RawContent !== null && { RawContent: input.RawContent })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n })), (input.TitleOverride !== undefined && input.TitleOverride !== null && { TitleOverride: input.TitleOverride }));\n};\nvar serializeAws_restJson1ADMChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientId !== undefined && input.ClientId !== null && { ClientId: input.ClientId })), (input.ClientSecret !== undefined && input.ClientSecret !== null && { ClientSecret: input.ClientSecret })), (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled }));\n};\nvar serializeAws_restJson1ADMMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Action !== undefined && input.Action !== null && { Action: input.Action })), (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.ConsolidationKey !== undefined &&\n input.ConsolidationKey !== null && { ConsolidationKey: input.ConsolidationKey })), (input.Data !== undefined &&\n input.Data !== null && { Data: serializeAws_restJson1MapOf__string(input.Data, context) })), (input.ExpiresAfter !== undefined && input.ExpiresAfter !== null && { ExpiresAfter: input.ExpiresAfter })), (input.IconReference !== undefined && input.IconReference !== null && { IconReference: input.IconReference })), (input.ImageIconUrl !== undefined && input.ImageIconUrl !== null && { ImageIconUrl: input.ImageIconUrl })), (input.ImageUrl !== undefined && input.ImageUrl !== null && { ImageUrl: input.ImageUrl })), (input.MD5 !== undefined && input.MD5 !== null && { MD5: input.MD5 })), (input.RawContent !== undefined && input.RawContent !== null && { RawContent: input.RawContent })), (input.SilentPush !== undefined && input.SilentPush !== null && { SilentPush: input.SilentPush })), (input.SmallImageIconUrl !== undefined &&\n input.SmallImageIconUrl !== null && { SmallImageIconUrl: input.SmallImageIconUrl })), (input.Sound !== undefined && input.Sound !== null && { Sound: input.Sound })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_restJson1AndroidPushNotificationTemplate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Action !== undefined && input.Action !== null && { Action: input.Action })), (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.ImageIconUrl !== undefined && input.ImageIconUrl !== null && { ImageIconUrl: input.ImageIconUrl })), (input.ImageUrl !== undefined && input.ImageUrl !== null && { ImageUrl: input.ImageUrl })), (input.RawContent !== undefined && input.RawContent !== null && { RawContent: input.RawContent })), (input.SmallImageIconUrl !== undefined &&\n input.SmallImageIconUrl !== null && { SmallImageIconUrl: input.SmallImageIconUrl })), (input.Sound !== undefined && input.Sound !== null && { Sound: input.Sound })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_restJson1APNSChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BundleId !== undefined && input.BundleId !== null && { BundleId: input.BundleId })), (input.Certificate !== undefined && input.Certificate !== null && { Certificate: input.Certificate })), (input.DefaultAuthenticationMethod !== undefined &&\n input.DefaultAuthenticationMethod !== null && { DefaultAuthenticationMethod: input.DefaultAuthenticationMethod })), (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.PrivateKey !== undefined && input.PrivateKey !== null && { PrivateKey: input.PrivateKey })), (input.TeamId !== undefined && input.TeamId !== null && { TeamId: input.TeamId })), (input.TokenKey !== undefined && input.TokenKey !== null && { TokenKey: input.TokenKey })), (input.TokenKeyId !== undefined && input.TokenKeyId !== null && { TokenKeyId: input.TokenKeyId }));\n};\nvar serializeAws_restJson1APNSMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.APNSPushType !== undefined && input.APNSPushType !== null && { APNSPushType: input.APNSPushType })), (input.Action !== undefined && input.Action !== null && { Action: input.Action })), (input.Badge !== undefined && input.Badge !== null && { Badge: input.Badge })), (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.Category !== undefined && input.Category !== null && { Category: input.Category })), (input.CollapseId !== undefined && input.CollapseId !== null && { CollapseId: input.CollapseId })), (input.Data !== undefined &&\n input.Data !== null && { Data: serializeAws_restJson1MapOf__string(input.Data, context) })), (input.MediaUrl !== undefined && input.MediaUrl !== null && { MediaUrl: input.MediaUrl })), (input.PreferredAuthenticationMethod !== undefined &&\n input.PreferredAuthenticationMethod !== null && {\n PreferredAuthenticationMethod: input.PreferredAuthenticationMethod,\n })), (input.Priority !== undefined && input.Priority !== null && { Priority: input.Priority })), (input.RawContent !== undefined && input.RawContent !== null && { RawContent: input.RawContent })), (input.SilentPush !== undefined && input.SilentPush !== null && { SilentPush: input.SilentPush })), (input.Sound !== undefined && input.Sound !== null && { Sound: input.Sound })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n })), (input.ThreadId !== undefined && input.ThreadId !== null && { ThreadId: input.ThreadId })), (input.TimeToLive !== undefined && input.TimeToLive !== null && { TimeToLive: input.TimeToLive })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_restJson1APNSPushNotificationTemplate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Action !== undefined && input.Action !== null && { Action: input.Action })), (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.MediaUrl !== undefined && input.MediaUrl !== null && { MediaUrl: input.MediaUrl })), (input.RawContent !== undefined && input.RawContent !== null && { RawContent: input.RawContent })), (input.Sound !== undefined && input.Sound !== null && { Sound: input.Sound })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_restJson1APNSSandboxChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BundleId !== undefined && input.BundleId !== null && { BundleId: input.BundleId })), (input.Certificate !== undefined && input.Certificate !== null && { Certificate: input.Certificate })), (input.DefaultAuthenticationMethod !== undefined &&\n input.DefaultAuthenticationMethod !== null && { DefaultAuthenticationMethod: input.DefaultAuthenticationMethod })), (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.PrivateKey !== undefined && input.PrivateKey !== null && { PrivateKey: input.PrivateKey })), (input.TeamId !== undefined && input.TeamId !== null && { TeamId: input.TeamId })), (input.TokenKey !== undefined && input.TokenKey !== null && { TokenKey: input.TokenKey })), (input.TokenKeyId !== undefined && input.TokenKeyId !== null && { TokenKeyId: input.TokenKeyId }));\n};\nvar serializeAws_restJson1APNSVoipChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BundleId !== undefined && input.BundleId !== null && { BundleId: input.BundleId })), (input.Certificate !== undefined && input.Certificate !== null && { Certificate: input.Certificate })), (input.DefaultAuthenticationMethod !== undefined &&\n input.DefaultAuthenticationMethod !== null && { DefaultAuthenticationMethod: input.DefaultAuthenticationMethod })), (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.PrivateKey !== undefined && input.PrivateKey !== null && { PrivateKey: input.PrivateKey })), (input.TeamId !== undefined && input.TeamId !== null && { TeamId: input.TeamId })), (input.TokenKey !== undefined && input.TokenKey !== null && { TokenKey: input.TokenKey })), (input.TokenKeyId !== undefined && input.TokenKeyId !== null && { TokenKeyId: input.TokenKeyId }));\n};\nvar serializeAws_restJson1APNSVoipSandboxChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BundleId !== undefined && input.BundleId !== null && { BundleId: input.BundleId })), (input.Certificate !== undefined && input.Certificate !== null && { Certificate: input.Certificate })), (input.DefaultAuthenticationMethod !== undefined &&\n input.DefaultAuthenticationMethod !== null && { DefaultAuthenticationMethod: input.DefaultAuthenticationMethod })), (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.PrivateKey !== undefined && input.PrivateKey !== null && { PrivateKey: input.PrivateKey })), (input.TeamId !== undefined && input.TeamId !== null && { TeamId: input.TeamId })), (input.TokenKey !== undefined && input.TokenKey !== null && { TokenKey: input.TokenKey })), (input.TokenKeyId !== undefined && input.TokenKeyId !== null && { TokenKeyId: input.TokenKeyId }));\n};\nvar serializeAws_restJson1AttributeDimension = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AttributeType !== undefined && input.AttributeType !== null && { AttributeType: input.AttributeType })), (input.Values !== undefined &&\n input.Values !== null && { Values: serializeAws_restJson1ListOf__string(input.Values, context) }));\n};\nvar serializeAws_restJson1BaiduChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ApiKey !== undefined && input.ApiKey !== null && { ApiKey: input.ApiKey })), (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.SecretKey !== undefined && input.SecretKey !== null && { SecretKey: input.SecretKey }));\n};\nvar serializeAws_restJson1BaiduMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Action !== undefined && input.Action !== null && { Action: input.Action })), (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.Data !== undefined &&\n input.Data !== null && { Data: serializeAws_restJson1MapOf__string(input.Data, context) })), (input.IconReference !== undefined && input.IconReference !== null && { IconReference: input.IconReference })), (input.ImageIconUrl !== undefined && input.ImageIconUrl !== null && { ImageIconUrl: input.ImageIconUrl })), (input.ImageUrl !== undefined && input.ImageUrl !== null && { ImageUrl: input.ImageUrl })), (input.RawContent !== undefined && input.RawContent !== null && { RawContent: input.RawContent })), (input.SilentPush !== undefined && input.SilentPush !== null && { SilentPush: input.SilentPush })), (input.SmallImageIconUrl !== undefined &&\n input.SmallImageIconUrl !== null && { SmallImageIconUrl: input.SmallImageIconUrl })), (input.Sound !== undefined && input.Sound !== null && { Sound: input.Sound })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n })), (input.TimeToLive !== undefined && input.TimeToLive !== null && { TimeToLive: input.TimeToLive })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_restJson1CampaignCustomMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Data !== undefined && input.Data !== null && { Data: input.Data }));\n};\nvar serializeAws_restJson1CampaignEmailMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.FromAddress !== undefined && input.FromAddress !== null && { FromAddress: input.FromAddress })), (input.HtmlBody !== undefined && input.HtmlBody !== null && { HtmlBody: input.HtmlBody })), (input.Title !== undefined && input.Title !== null && { Title: input.Title }));\n};\nvar serializeAws_restJson1CampaignEventFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Dimensions !== undefined &&\n input.Dimensions !== null && { Dimensions: serializeAws_restJson1EventDimensions(input.Dimensions, context) })), (input.FilterType !== undefined && input.FilterType !== null && { FilterType: input.FilterType }));\n};\nvar serializeAws_restJson1CampaignHook = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.LambdaFunctionName !== undefined &&\n input.LambdaFunctionName !== null && { LambdaFunctionName: input.LambdaFunctionName })), (input.Mode !== undefined && input.Mode !== null && { Mode: input.Mode })), (input.WebUrl !== undefined && input.WebUrl !== null && { WebUrl: input.WebUrl }));\n};\nvar serializeAws_restJson1CampaignLimits = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Daily !== undefined && input.Daily !== null && { Daily: input.Daily })), (input.MaximumDuration !== undefined &&\n input.MaximumDuration !== null && { MaximumDuration: input.MaximumDuration })), (input.MessagesPerSecond !== undefined &&\n input.MessagesPerSecond !== null && { MessagesPerSecond: input.MessagesPerSecond })), (input.Total !== undefined && input.Total !== null && { Total: input.Total }));\n};\nvar serializeAws_restJson1CampaignSmsMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.MessageType !== undefined && input.MessageType !== null && { MessageType: input.MessageType })), (input.SenderId !== undefined && input.SenderId !== null && { SenderId: input.SenderId }));\n};\nvar serializeAws_restJson1Condition = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Conditions !== undefined &&\n input.Conditions !== null && {\n Conditions: serializeAws_restJson1ListOfSimpleCondition(input.Conditions, context),\n })), (input.Operator !== undefined && input.Operator !== null && { Operator: input.Operator }));\n};\nvar serializeAws_restJson1ConditionalSplitActivity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Condition !== undefined &&\n input.Condition !== null && { Condition: serializeAws_restJson1Condition(input.Condition, context) })), (input.EvaluationWaitTime !== undefined &&\n input.EvaluationWaitTime !== null && {\n EvaluationWaitTime: serializeAws_restJson1WaitTime(input.EvaluationWaitTime, context),\n })), (input.FalseActivity !== undefined && input.FalseActivity !== null && { FalseActivity: input.FalseActivity })), (input.TrueActivity !== undefined && input.TrueActivity !== null && { TrueActivity: input.TrueActivity }));\n};\nvar serializeAws_restJson1CreateApplicationRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.tags !== undefined &&\n input.tags !== null && { tags: serializeAws_restJson1MapOf__string(input.tags, context) }));\n};\nvar serializeAws_restJson1CreateRecommenderConfigurationShape = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Attributes !== undefined &&\n input.Attributes !== null && { Attributes: serializeAws_restJson1MapOf__string(input.Attributes, context) })), (input.Description !== undefined && input.Description !== null && { Description: input.Description })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.RecommendationProviderIdType !== undefined &&\n input.RecommendationProviderIdType !== null && {\n RecommendationProviderIdType: input.RecommendationProviderIdType,\n })), (input.RecommendationProviderRoleArn !== undefined &&\n input.RecommendationProviderRoleArn !== null && {\n RecommendationProviderRoleArn: input.RecommendationProviderRoleArn,\n })), (input.RecommendationProviderUri !== undefined &&\n input.RecommendationProviderUri !== null && { RecommendationProviderUri: input.RecommendationProviderUri })), (input.RecommendationTransformerUri !== undefined &&\n input.RecommendationTransformerUri !== null && {\n RecommendationTransformerUri: input.RecommendationTransformerUri,\n })), (input.RecommendationsDisplayName !== undefined &&\n input.RecommendationsDisplayName !== null && { RecommendationsDisplayName: input.RecommendationsDisplayName })), (input.RecommendationsPerMessage !== undefined &&\n input.RecommendationsPerMessage !== null && { RecommendationsPerMessage: input.RecommendationsPerMessage }));\n};\nvar serializeAws_restJson1CustomDeliveryConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryUri !== undefined && input.DeliveryUri !== null && { DeliveryUri: input.DeliveryUri })), (input.EndpointTypes !== undefined &&\n input.EndpointTypes !== null && {\n EndpointTypes: serializeAws_restJson1ListOf__EndpointTypesElement(input.EndpointTypes, context),\n }));\n};\nvar serializeAws_restJson1CustomMessageActivity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DeliveryUri !== undefined && input.DeliveryUri !== null && { DeliveryUri: input.DeliveryUri })), (input.EndpointTypes !== undefined &&\n input.EndpointTypes !== null && {\n EndpointTypes: serializeAws_restJson1ListOf__EndpointTypesElement(input.EndpointTypes, context),\n })), (input.MessageConfig !== undefined &&\n input.MessageConfig !== null && {\n MessageConfig: serializeAws_restJson1JourneyCustomMessage(input.MessageConfig, context),\n })), (input.NextActivity !== undefined && input.NextActivity !== null && { NextActivity: input.NextActivity })), (input.TemplateName !== undefined && input.TemplateName !== null && { TemplateName: input.TemplateName })), (input.TemplateVersion !== undefined &&\n input.TemplateVersion !== null && { TemplateVersion: input.TemplateVersion }));\n};\nvar serializeAws_restJson1DefaultMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n }));\n};\nvar serializeAws_restJson1DefaultPushNotificationMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Action !== undefined && input.Action !== null && { Action: input.Action })), (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.Data !== undefined &&\n input.Data !== null && { Data: serializeAws_restJson1MapOf__string(input.Data, context) })), (input.SilentPush !== undefined && input.SilentPush !== null && { SilentPush: input.SilentPush })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_restJson1DefaultPushNotificationTemplate = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Action !== undefined && input.Action !== null && { Action: input.Action })), (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.Sound !== undefined && input.Sound !== null && { Sound: input.Sound })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_restJson1DirectMessageConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ADMMessage !== undefined &&\n input.ADMMessage !== null && { ADMMessage: serializeAws_restJson1ADMMessage(input.ADMMessage, context) })), (input.APNSMessage !== undefined &&\n input.APNSMessage !== null && { APNSMessage: serializeAws_restJson1APNSMessage(input.APNSMessage, context) })), (input.BaiduMessage !== undefined &&\n input.BaiduMessage !== null && { BaiduMessage: serializeAws_restJson1BaiduMessage(input.BaiduMessage, context) })), (input.DefaultMessage !== undefined &&\n input.DefaultMessage !== null && {\n DefaultMessage: serializeAws_restJson1DefaultMessage(input.DefaultMessage, context),\n })), (input.DefaultPushNotificationMessage !== undefined &&\n input.DefaultPushNotificationMessage !== null && {\n DefaultPushNotificationMessage: serializeAws_restJson1DefaultPushNotificationMessage(input.DefaultPushNotificationMessage, context),\n })), (input.EmailMessage !== undefined &&\n input.EmailMessage !== null && { EmailMessage: serializeAws_restJson1EmailMessage(input.EmailMessage, context) })), (input.GCMMessage !== undefined &&\n input.GCMMessage !== null && { GCMMessage: serializeAws_restJson1GCMMessage(input.GCMMessage, context) })), (input.SMSMessage !== undefined &&\n input.SMSMessage !== null && { SMSMessage: serializeAws_restJson1SMSMessage(input.SMSMessage, context) })), (input.VoiceMessage !== undefined &&\n input.VoiceMessage !== null && { VoiceMessage: serializeAws_restJson1VoiceMessage(input.VoiceMessage, context) }));\n};\nvar serializeAws_restJson1EmailChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ConfigurationSet !== undefined &&\n input.ConfigurationSet !== null && { ConfigurationSet: input.ConfigurationSet })), (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.FromAddress !== undefined && input.FromAddress !== null && { FromAddress: input.FromAddress })), (input.Identity !== undefined && input.Identity !== null && { Identity: input.Identity })), (input.RoleArn !== undefined && input.RoleArn !== null && { RoleArn: input.RoleArn }));\n};\nvar serializeAws_restJson1EmailMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.FeedbackForwardingAddress !== undefined &&\n input.FeedbackForwardingAddress !== null && { FeedbackForwardingAddress: input.FeedbackForwardingAddress })), (input.FromAddress !== undefined && input.FromAddress !== null && { FromAddress: input.FromAddress })), (input.RawEmail !== undefined &&\n input.RawEmail !== null && { RawEmail: serializeAws_restJson1RawEmail(input.RawEmail, context) })), (input.ReplyToAddresses !== undefined &&\n input.ReplyToAddresses !== null && {\n ReplyToAddresses: serializeAws_restJson1ListOf__string(input.ReplyToAddresses, context),\n })), (input.SimpleEmail !== undefined &&\n input.SimpleEmail !== null && { SimpleEmail: serializeAws_restJson1SimpleEmail(input.SimpleEmail, context) })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n }));\n};\nvar serializeAws_restJson1EmailMessageActivity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MessageConfig !== undefined &&\n input.MessageConfig !== null && {\n MessageConfig: serializeAws_restJson1JourneyEmailMessage(input.MessageConfig, context),\n })), (input.NextActivity !== undefined && input.NextActivity !== null && { NextActivity: input.NextActivity })), (input.TemplateName !== undefined && input.TemplateName !== null && { TemplateName: input.TemplateName })), (input.TemplateVersion !== undefined &&\n input.TemplateVersion !== null && { TemplateVersion: input.TemplateVersion }));\n};\nvar serializeAws_restJson1EmailTemplateRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DefaultSubstitutions !== undefined &&\n input.DefaultSubstitutions !== null && { DefaultSubstitutions: input.DefaultSubstitutions })), (input.HtmlPart !== undefined && input.HtmlPart !== null && { HtmlPart: input.HtmlPart })), (input.RecommenderId !== undefined && input.RecommenderId !== null && { RecommenderId: input.RecommenderId })), (input.Subject !== undefined && input.Subject !== null && { Subject: input.Subject })), (input.TemplateDescription !== undefined &&\n input.TemplateDescription !== null && { TemplateDescription: input.TemplateDescription })), (input.TextPart !== undefined && input.TextPart !== null && { TextPart: input.TextPart })), (input.tags !== undefined &&\n input.tags !== null && { tags: serializeAws_restJson1MapOf__string(input.tags, context) }));\n};\nvar serializeAws_restJson1EndpointBatchItem = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Address !== undefined && input.Address !== null && { Address: input.Address })), (input.Attributes !== undefined &&\n input.Attributes !== null && {\n Attributes: serializeAws_restJson1MapOfListOf__string(input.Attributes, context),\n })), (input.ChannelType !== undefined && input.ChannelType !== null && { ChannelType: input.ChannelType })), (input.Demographic !== undefined &&\n input.Demographic !== null && {\n Demographic: serializeAws_restJson1EndpointDemographic(input.Demographic, context),\n })), (input.EffectiveDate !== undefined && input.EffectiveDate !== null && { EffectiveDate: input.EffectiveDate })), (input.EndpointStatus !== undefined &&\n input.EndpointStatus !== null && { EndpointStatus: input.EndpointStatus })), (input.Id !== undefined && input.Id !== null && { Id: input.Id })), (input.Location !== undefined &&\n input.Location !== null && { Location: serializeAws_restJson1EndpointLocation(input.Location, context) })), (input.Metrics !== undefined &&\n input.Metrics !== null && { Metrics: serializeAws_restJson1MapOf__double(input.Metrics, context) })), (input.OptOut !== undefined && input.OptOut !== null && { OptOut: input.OptOut })), (input.RequestId !== undefined && input.RequestId !== null && { RequestId: input.RequestId })), (input.User !== undefined &&\n input.User !== null && { User: serializeAws_restJson1EndpointUser(input.User, context) }));\n};\nvar serializeAws_restJson1EndpointBatchRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Item !== undefined &&\n input.Item !== null && { Item: serializeAws_restJson1ListOfEndpointBatchItem(input.Item, context) }));\n};\nvar serializeAws_restJson1EndpointDemographic = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AppVersion !== undefined && input.AppVersion !== null && { AppVersion: input.AppVersion })), (input.Locale !== undefined && input.Locale !== null && { Locale: input.Locale })), (input.Make !== undefined && input.Make !== null && { Make: input.Make })), (input.Model !== undefined && input.Model !== null && { Model: input.Model })), (input.ModelVersion !== undefined && input.ModelVersion !== null && { ModelVersion: input.ModelVersion })), (input.Platform !== undefined && input.Platform !== null && { Platform: input.Platform })), (input.PlatformVersion !== undefined &&\n input.PlatformVersion !== null && { PlatformVersion: input.PlatformVersion })), (input.Timezone !== undefined && input.Timezone !== null && { Timezone: input.Timezone }));\n};\nvar serializeAws_restJson1EndpointLocation = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.City !== undefined && input.City !== null && { City: input.City })), (input.Country !== undefined && input.Country !== null && { Country: input.Country })), (input.Latitude !== undefined && input.Latitude !== null && { Latitude: input.Latitude })), (input.Longitude !== undefined && input.Longitude !== null && { Longitude: input.Longitude })), (input.PostalCode !== undefined && input.PostalCode !== null && { PostalCode: input.PostalCode })), (input.Region !== undefined && input.Region !== null && { Region: input.Region }));\n};\nvar serializeAws_restJson1EndpointRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Address !== undefined && input.Address !== null && { Address: input.Address })), (input.Attributes !== undefined &&\n input.Attributes !== null && {\n Attributes: serializeAws_restJson1MapOfListOf__string(input.Attributes, context),\n })), (input.ChannelType !== undefined && input.ChannelType !== null && { ChannelType: input.ChannelType })), (input.Demographic !== undefined &&\n input.Demographic !== null && {\n Demographic: serializeAws_restJson1EndpointDemographic(input.Demographic, context),\n })), (input.EffectiveDate !== undefined && input.EffectiveDate !== null && { EffectiveDate: input.EffectiveDate })), (input.EndpointStatus !== undefined &&\n input.EndpointStatus !== null && { EndpointStatus: input.EndpointStatus })), (input.Location !== undefined &&\n input.Location !== null && { Location: serializeAws_restJson1EndpointLocation(input.Location, context) })), (input.Metrics !== undefined &&\n input.Metrics !== null && { Metrics: serializeAws_restJson1MapOf__double(input.Metrics, context) })), (input.OptOut !== undefined && input.OptOut !== null && { OptOut: input.OptOut })), (input.RequestId !== undefined && input.RequestId !== null && { RequestId: input.RequestId })), (input.User !== undefined &&\n input.User !== null && { User: serializeAws_restJson1EndpointUser(input.User, context) }));\n};\nvar serializeAws_restJson1EndpointSendConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BodyOverride !== undefined && input.BodyOverride !== null && { BodyOverride: input.BodyOverride })), (input.Context !== undefined &&\n input.Context !== null && { Context: serializeAws_restJson1MapOf__string(input.Context, context) })), (input.RawContent !== undefined && input.RawContent !== null && { RawContent: input.RawContent })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n })), (input.TitleOverride !== undefined && input.TitleOverride !== null && { TitleOverride: input.TitleOverride }));\n};\nvar serializeAws_restJson1EndpointUser = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.UserAttributes !== undefined &&\n input.UserAttributes !== null && {\n UserAttributes: serializeAws_restJson1MapOfListOf__string(input.UserAttributes, context),\n })), (input.UserId !== undefined && input.UserId !== null && { UserId: input.UserId }));\n};\nvar serializeAws_restJson1Event = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AppPackageName !== undefined &&\n input.AppPackageName !== null && { AppPackageName: input.AppPackageName })), (input.AppTitle !== undefined && input.AppTitle !== null && { AppTitle: input.AppTitle })), (input.AppVersionCode !== undefined &&\n input.AppVersionCode !== null && { AppVersionCode: input.AppVersionCode })), (input.Attributes !== undefined &&\n input.Attributes !== null && { Attributes: serializeAws_restJson1MapOf__string(input.Attributes, context) })), (input.ClientSdkVersion !== undefined &&\n input.ClientSdkVersion !== null && { ClientSdkVersion: input.ClientSdkVersion })), (input.EventType !== undefined && input.EventType !== null && { EventType: input.EventType })), (input.Metrics !== undefined &&\n input.Metrics !== null && { Metrics: serializeAws_restJson1MapOf__double(input.Metrics, context) })), (input.SdkName !== undefined && input.SdkName !== null && { SdkName: input.SdkName })), (input.Session !== undefined &&\n input.Session !== null && { Session: serializeAws_restJson1Session(input.Session, context) })), (input.Timestamp !== undefined && input.Timestamp !== null && { Timestamp: input.Timestamp }));\n};\nvar serializeAws_restJson1EventCondition = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Dimensions !== undefined &&\n input.Dimensions !== null && { Dimensions: serializeAws_restJson1EventDimensions(input.Dimensions, context) })), (input.MessageActivity !== undefined &&\n input.MessageActivity !== null && { MessageActivity: input.MessageActivity }));\n};\nvar serializeAws_restJson1EventDimensions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Attributes !== undefined &&\n input.Attributes !== null && {\n Attributes: serializeAws_restJson1MapOfAttributeDimension(input.Attributes, context),\n })), (input.EventType !== undefined &&\n input.EventType !== null && { EventType: serializeAws_restJson1SetDimension(input.EventType, context) })), (input.Metrics !== undefined &&\n input.Metrics !== null && { Metrics: serializeAws_restJson1MapOfMetricDimension(input.Metrics, context) }));\n};\nvar serializeAws_restJson1EventFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Dimensions !== undefined &&\n input.Dimensions !== null && { Dimensions: serializeAws_restJson1EventDimensions(input.Dimensions, context) })), (input.FilterType !== undefined && input.FilterType !== null && { FilterType: input.FilterType }));\n};\nvar serializeAws_restJson1EventsBatch = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Endpoint !== undefined &&\n input.Endpoint !== null && { Endpoint: serializeAws_restJson1PublicEndpoint(input.Endpoint, context) })), (input.Events !== undefined &&\n input.Events !== null && { Events: serializeAws_restJson1MapOfEvent(input.Events, context) }));\n};\nvar serializeAws_restJson1EventsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BatchItem !== undefined &&\n input.BatchItem !== null && { BatchItem: serializeAws_restJson1MapOfEventsBatch(input.BatchItem, context) }));\n};\nvar serializeAws_restJson1EventStartCondition = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EventFilter !== undefined &&\n input.EventFilter !== null && { EventFilter: serializeAws_restJson1EventFilter(input.EventFilter, context) })), (input.SegmentId !== undefined && input.SegmentId !== null && { SegmentId: input.SegmentId }));\n};\nvar serializeAws_restJson1ExportJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.RoleArn !== undefined && input.RoleArn !== null && { RoleArn: input.RoleArn })), (input.S3UrlPrefix !== undefined && input.S3UrlPrefix !== null && { S3UrlPrefix: input.S3UrlPrefix })), (input.SegmentId !== undefined && input.SegmentId !== null && { SegmentId: input.SegmentId })), (input.SegmentVersion !== undefined &&\n input.SegmentVersion !== null && { SegmentVersion: input.SegmentVersion }));\n};\nvar serializeAws_restJson1GCMChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ApiKey !== undefined && input.ApiKey !== null && { ApiKey: input.ApiKey })), (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled }));\n};\nvar serializeAws_restJson1GCMMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Action !== undefined && input.Action !== null && { Action: input.Action })), (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.CollapseKey !== undefined && input.CollapseKey !== null && { CollapseKey: input.CollapseKey })), (input.Data !== undefined &&\n input.Data !== null && { Data: serializeAws_restJson1MapOf__string(input.Data, context) })), (input.IconReference !== undefined && input.IconReference !== null && { IconReference: input.IconReference })), (input.ImageIconUrl !== undefined && input.ImageIconUrl !== null && { ImageIconUrl: input.ImageIconUrl })), (input.ImageUrl !== undefined && input.ImageUrl !== null && { ImageUrl: input.ImageUrl })), (input.Priority !== undefined && input.Priority !== null && { Priority: input.Priority })), (input.RawContent !== undefined && input.RawContent !== null && { RawContent: input.RawContent })), (input.RestrictedPackageName !== undefined &&\n input.RestrictedPackageName !== null && { RestrictedPackageName: input.RestrictedPackageName })), (input.SilentPush !== undefined && input.SilentPush !== null && { SilentPush: input.SilentPush })), (input.SmallImageIconUrl !== undefined &&\n input.SmallImageIconUrl !== null && { SmallImageIconUrl: input.SmallImageIconUrl })), (input.Sound !== undefined && input.Sound !== null && { Sound: input.Sound })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n })), (input.TimeToLive !== undefined && input.TimeToLive !== null && { TimeToLive: input.TimeToLive })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_restJson1GPSCoordinates = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Latitude !== undefined && input.Latitude !== null && { Latitude: input.Latitude })), (input.Longitude !== undefined && input.Longitude !== null && { Longitude: input.Longitude }));\n};\nvar serializeAws_restJson1GPSPointDimension = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Coordinates !== undefined &&\n input.Coordinates !== null && { Coordinates: serializeAws_restJson1GPSCoordinates(input.Coordinates, context) })), (input.RangeInKilometers !== undefined &&\n input.RangeInKilometers !== null && { RangeInKilometers: input.RangeInKilometers }));\n};\nvar serializeAws_restJson1HoldoutActivity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.NextActivity !== undefined && input.NextActivity !== null && { NextActivity: input.NextActivity })), (input.Percentage !== undefined && input.Percentage !== null && { Percentage: input.Percentage }));\n};\nvar serializeAws_restJson1ImportJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DefineSegment !== undefined && input.DefineSegment !== null && { DefineSegment: input.DefineSegment })), (input.ExternalId !== undefined && input.ExternalId !== null && { ExternalId: input.ExternalId })), (input.Format !== undefined && input.Format !== null && { Format: input.Format })), (input.RegisterEndpoints !== undefined &&\n input.RegisterEndpoints !== null && { RegisterEndpoints: input.RegisterEndpoints })), (input.RoleArn !== undefined && input.RoleArn !== null && { RoleArn: input.RoleArn })), (input.S3Url !== undefined && input.S3Url !== null && { S3Url: input.S3Url })), (input.SegmentId !== undefined && input.SegmentId !== null && { SegmentId: input.SegmentId })), (input.SegmentName !== undefined && input.SegmentName !== null && { SegmentName: input.SegmentName }));\n};\nvar serializeAws_restJson1JourneyCustomMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Data !== undefined && input.Data !== null && { Data: input.Data }));\n};\nvar serializeAws_restJson1JourneyEmailMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.FromAddress !== undefined && input.FromAddress !== null && { FromAddress: input.FromAddress }));\n};\nvar serializeAws_restJson1JourneyLimits = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DailyCap !== undefined && input.DailyCap !== null && { DailyCap: input.DailyCap })), (input.EndpointReentryCap !== undefined &&\n input.EndpointReentryCap !== null && { EndpointReentryCap: input.EndpointReentryCap })), (input.MessagesPerSecond !== undefined &&\n input.MessagesPerSecond !== null && { MessagesPerSecond: input.MessagesPerSecond }));\n};\nvar serializeAws_restJson1JourneyPushMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.TimeToLive !== undefined && input.TimeToLive !== null && { TimeToLive: input.TimeToLive }));\n};\nvar serializeAws_restJson1JourneySchedule = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndTime !== undefined &&\n input.EndTime !== null && { EndTime: input.EndTime.toISOString().split(\".\")[0] + \"Z\" })), (input.StartTime !== undefined &&\n input.StartTime !== null && { StartTime: input.StartTime.toISOString().split(\".\")[0] + \"Z\" })), (input.Timezone !== undefined && input.Timezone !== null && { Timezone: input.Timezone }));\n};\nvar serializeAws_restJson1JourneySMSMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MessageType !== undefined && input.MessageType !== null && { MessageType: input.MessageType })), (input.SenderId !== undefined && input.SenderId !== null && { SenderId: input.SenderId }));\n};\nvar serializeAws_restJson1JourneyStateRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.State !== undefined && input.State !== null && { State: input.State }));\n};\nvar serializeAws_restJson1ListOf__EndpointTypesElement = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_restJson1ListOf__string = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_restJson1ListOfEndpointBatchItem = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1EndpointBatchItem(entry, context);\n });\n};\nvar serializeAws_restJson1ListOfMultiConditionalBranch = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1MultiConditionalBranch(entry, context);\n });\n};\nvar serializeAws_restJson1ListOfRandomSplitEntry = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1RandomSplitEntry(entry, context);\n });\n};\nvar serializeAws_restJson1ListOfSegmentDimensions = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1SegmentDimensions(entry, context);\n });\n};\nvar serializeAws_restJson1ListOfSegmentGroup = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1SegmentGroup(entry, context);\n });\n};\nvar serializeAws_restJson1ListOfSegmentReference = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1SegmentReference(entry, context);\n });\n};\nvar serializeAws_restJson1ListOfSimpleCondition = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1SimpleCondition(entry, context);\n });\n};\nvar serializeAws_restJson1ListOfWriteTreatmentResource = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_restJson1WriteTreatmentResource(entry, context);\n });\n};\nvar serializeAws_restJson1MapOf__double = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_restJson1MapOf__string = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar serializeAws_restJson1MapOfActivity = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1Activity(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1MapOfAddressConfiguration = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1AddressConfiguration(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1MapOfAttributeDimension = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1AttributeDimension(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1MapOfEndpointSendConfiguration = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1EndpointSendConfiguration(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1MapOfEvent = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1Event(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1MapOfEventsBatch = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1EventsBatch(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1MapOfListOf__string = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1ListOf__string(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1MapOfMetricDimension = function (input, context) {\n return Object.entries(input).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = serializeAws_restJson1MetricDimension(value, context), _b));\n }, {});\n};\nvar serializeAws_restJson1Message = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Action !== undefined && input.Action !== null && { Action: input.Action })), (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.ImageIconUrl !== undefined && input.ImageIconUrl !== null && { ImageIconUrl: input.ImageIconUrl })), (input.ImageSmallIconUrl !== undefined &&\n input.ImageSmallIconUrl !== null && { ImageSmallIconUrl: input.ImageSmallIconUrl })), (input.ImageUrl !== undefined && input.ImageUrl !== null && { ImageUrl: input.ImageUrl })), (input.JsonBody !== undefined && input.JsonBody !== null && { JsonBody: input.JsonBody })), (input.MediaUrl !== undefined && input.MediaUrl !== null && { MediaUrl: input.MediaUrl })), (input.RawContent !== undefined && input.RawContent !== null && { RawContent: input.RawContent })), (input.SilentPush !== undefined && input.SilentPush !== null && { SilentPush: input.SilentPush })), (input.TimeToLive !== undefined && input.TimeToLive !== null && { TimeToLive: input.TimeToLive })), (input.Title !== undefined && input.Title !== null && { Title: input.Title })), (input.Url !== undefined && input.Url !== null && { Url: input.Url }));\n};\nvar serializeAws_restJson1MessageConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ADMMessage !== undefined &&\n input.ADMMessage !== null && { ADMMessage: serializeAws_restJson1Message(input.ADMMessage, context) })), (input.APNSMessage !== undefined &&\n input.APNSMessage !== null && { APNSMessage: serializeAws_restJson1Message(input.APNSMessage, context) })), (input.BaiduMessage !== undefined &&\n input.BaiduMessage !== null && { BaiduMessage: serializeAws_restJson1Message(input.BaiduMessage, context) })), (input.CustomMessage !== undefined &&\n input.CustomMessage !== null && {\n CustomMessage: serializeAws_restJson1CampaignCustomMessage(input.CustomMessage, context),\n })), (input.DefaultMessage !== undefined &&\n input.DefaultMessage !== null && {\n DefaultMessage: serializeAws_restJson1Message(input.DefaultMessage, context),\n })), (input.EmailMessage !== undefined &&\n input.EmailMessage !== null && {\n EmailMessage: serializeAws_restJson1CampaignEmailMessage(input.EmailMessage, context),\n })), (input.GCMMessage !== undefined &&\n input.GCMMessage !== null && { GCMMessage: serializeAws_restJson1Message(input.GCMMessage, context) })), (input.SMSMessage !== undefined &&\n input.SMSMessage !== null && { SMSMessage: serializeAws_restJson1CampaignSmsMessage(input.SMSMessage, context) }));\n};\nvar serializeAws_restJson1MessageRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Addresses !== undefined &&\n input.Addresses !== null && {\n Addresses: serializeAws_restJson1MapOfAddressConfiguration(input.Addresses, context),\n })), (input.Context !== undefined &&\n input.Context !== null && { Context: serializeAws_restJson1MapOf__string(input.Context, context) })), (input.Endpoints !== undefined &&\n input.Endpoints !== null && {\n Endpoints: serializeAws_restJson1MapOfEndpointSendConfiguration(input.Endpoints, context),\n })), (input.MessageConfiguration !== undefined &&\n input.MessageConfiguration !== null && {\n MessageConfiguration: serializeAws_restJson1DirectMessageConfiguration(input.MessageConfiguration, context),\n })), (input.TemplateConfiguration !== undefined &&\n input.TemplateConfiguration !== null && {\n TemplateConfiguration: serializeAws_restJson1TemplateConfiguration(input.TemplateConfiguration, context),\n })), (input.TraceId !== undefined && input.TraceId !== null && { TraceId: input.TraceId }));\n};\nvar serializeAws_restJson1MetricDimension = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ComparisonOperator !== undefined &&\n input.ComparisonOperator !== null && { ComparisonOperator: input.ComparisonOperator })), (input.Value !== undefined && input.Value !== null && { Value: input.Value }));\n};\nvar serializeAws_restJson1MultiConditionalBranch = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Condition !== undefined &&\n input.Condition !== null && { Condition: serializeAws_restJson1SimpleCondition(input.Condition, context) })), (input.NextActivity !== undefined && input.NextActivity !== null && { NextActivity: input.NextActivity }));\n};\nvar serializeAws_restJson1MultiConditionalSplitActivity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Branches !== undefined &&\n input.Branches !== null && {\n Branches: serializeAws_restJson1ListOfMultiConditionalBranch(input.Branches, context),\n })), (input.DefaultActivity !== undefined &&\n input.DefaultActivity !== null && { DefaultActivity: input.DefaultActivity })), (input.EvaluationWaitTime !== undefined &&\n input.EvaluationWaitTime !== null && {\n EvaluationWaitTime: serializeAws_restJson1WaitTime(input.EvaluationWaitTime, context),\n }));\n};\nvar serializeAws_restJson1NumberValidateRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.IsoCountryCode !== undefined &&\n input.IsoCountryCode !== null && { IsoCountryCode: input.IsoCountryCode })), (input.PhoneNumber !== undefined && input.PhoneNumber !== null && { PhoneNumber: input.PhoneNumber }));\n};\nvar serializeAws_restJson1PublicEndpoint = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Address !== undefined && input.Address !== null && { Address: input.Address })), (input.Attributes !== undefined &&\n input.Attributes !== null && {\n Attributes: serializeAws_restJson1MapOfListOf__string(input.Attributes, context),\n })), (input.ChannelType !== undefined && input.ChannelType !== null && { ChannelType: input.ChannelType })), (input.Demographic !== undefined &&\n input.Demographic !== null && {\n Demographic: serializeAws_restJson1EndpointDemographic(input.Demographic, context),\n })), (input.EffectiveDate !== undefined && input.EffectiveDate !== null && { EffectiveDate: input.EffectiveDate })), (input.EndpointStatus !== undefined &&\n input.EndpointStatus !== null && { EndpointStatus: input.EndpointStatus })), (input.Location !== undefined &&\n input.Location !== null && { Location: serializeAws_restJson1EndpointLocation(input.Location, context) })), (input.Metrics !== undefined &&\n input.Metrics !== null && { Metrics: serializeAws_restJson1MapOf__double(input.Metrics, context) })), (input.OptOut !== undefined && input.OptOut !== null && { OptOut: input.OptOut })), (input.RequestId !== undefined && input.RequestId !== null && { RequestId: input.RequestId })), (input.User !== undefined &&\n input.User !== null && { User: serializeAws_restJson1EndpointUser(input.User, context) }));\n};\nvar serializeAws_restJson1PushMessageActivity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MessageConfig !== undefined &&\n input.MessageConfig !== null && {\n MessageConfig: serializeAws_restJson1JourneyPushMessage(input.MessageConfig, context),\n })), (input.NextActivity !== undefined && input.NextActivity !== null && { NextActivity: input.NextActivity })), (input.TemplateName !== undefined && input.TemplateName !== null && { TemplateName: input.TemplateName })), (input.TemplateVersion !== undefined &&\n input.TemplateVersion !== null && { TemplateVersion: input.TemplateVersion }));\n};\nvar serializeAws_restJson1PushNotificationTemplateRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ADM !== undefined &&\n input.ADM !== null && { ADM: serializeAws_restJson1AndroidPushNotificationTemplate(input.ADM, context) })), (input.APNS !== undefined &&\n input.APNS !== null && { APNS: serializeAws_restJson1APNSPushNotificationTemplate(input.APNS, context) })), (input.Baidu !== undefined &&\n input.Baidu !== null && { Baidu: serializeAws_restJson1AndroidPushNotificationTemplate(input.Baidu, context) })), (input.Default !== undefined &&\n input.Default !== null && {\n Default: serializeAws_restJson1DefaultPushNotificationTemplate(input.Default, context),\n })), (input.DefaultSubstitutions !== undefined &&\n input.DefaultSubstitutions !== null && { DefaultSubstitutions: input.DefaultSubstitutions })), (input.GCM !== undefined &&\n input.GCM !== null && { GCM: serializeAws_restJson1AndroidPushNotificationTemplate(input.GCM, context) })), (input.RecommenderId !== undefined && input.RecommenderId !== null && { RecommenderId: input.RecommenderId })), (input.TemplateDescription !== undefined &&\n input.TemplateDescription !== null && { TemplateDescription: input.TemplateDescription })), (input.tags !== undefined &&\n input.tags !== null && { tags: serializeAws_restJson1MapOf__string(input.tags, context) }));\n};\nvar serializeAws_restJson1QuietTime = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.End !== undefined && input.End !== null && { End: input.End })), (input.Start !== undefined && input.Start !== null && { Start: input.Start }));\n};\nvar serializeAws_restJson1RandomSplitActivity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Branches !== undefined &&\n input.Branches !== null && { Branches: serializeAws_restJson1ListOfRandomSplitEntry(input.Branches, context) }));\n};\nvar serializeAws_restJson1RandomSplitEntry = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.NextActivity !== undefined && input.NextActivity !== null && { NextActivity: input.NextActivity })), (input.Percentage !== undefined && input.Percentage !== null && { Percentage: input.Percentage }));\n};\nvar serializeAws_restJson1RawEmail = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Data !== undefined && input.Data !== null && { Data: context.base64Encoder(input.Data) }));\n};\nvar serializeAws_restJson1RecencyDimension = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Duration !== undefined && input.Duration !== null && { Duration: input.Duration })), (input.RecencyType !== undefined && input.RecencyType !== null && { RecencyType: input.RecencyType }));\n};\nvar serializeAws_restJson1Schedule = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EndTime !== undefined && input.EndTime !== null && { EndTime: input.EndTime })), (input.EventFilter !== undefined &&\n input.EventFilter !== null && {\n EventFilter: serializeAws_restJson1CampaignEventFilter(input.EventFilter, context),\n })), (input.Frequency !== undefined && input.Frequency !== null && { Frequency: input.Frequency })), (input.IsLocalTime !== undefined && input.IsLocalTime !== null && { IsLocalTime: input.IsLocalTime })), (input.QuietTime !== undefined &&\n input.QuietTime !== null && { QuietTime: serializeAws_restJson1QuietTime(input.QuietTime, context) })), (input.StartTime !== undefined && input.StartTime !== null && { StartTime: input.StartTime })), (input.Timezone !== undefined && input.Timezone !== null && { Timezone: input.Timezone }));\n};\nvar serializeAws_restJson1SegmentBehaviors = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Recency !== undefined &&\n input.Recency !== null && { Recency: serializeAws_restJson1RecencyDimension(input.Recency, context) }));\n};\nvar serializeAws_restJson1SegmentCondition = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.SegmentId !== undefined && input.SegmentId !== null && { SegmentId: input.SegmentId }));\n};\nvar serializeAws_restJson1SegmentDemographics = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AppVersion !== undefined &&\n input.AppVersion !== null && { AppVersion: serializeAws_restJson1SetDimension(input.AppVersion, context) })), (input.Channel !== undefined &&\n input.Channel !== null && { Channel: serializeAws_restJson1SetDimension(input.Channel, context) })), (input.DeviceType !== undefined &&\n input.DeviceType !== null && { DeviceType: serializeAws_restJson1SetDimension(input.DeviceType, context) })), (input.Make !== undefined &&\n input.Make !== null && { Make: serializeAws_restJson1SetDimension(input.Make, context) })), (input.Model !== undefined &&\n input.Model !== null && { Model: serializeAws_restJson1SetDimension(input.Model, context) })), (input.Platform !== undefined &&\n input.Platform !== null && { Platform: serializeAws_restJson1SetDimension(input.Platform, context) }));\n};\nvar serializeAws_restJson1SegmentDimensions = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Attributes !== undefined &&\n input.Attributes !== null && {\n Attributes: serializeAws_restJson1MapOfAttributeDimension(input.Attributes, context),\n })), (input.Behavior !== undefined &&\n input.Behavior !== null && { Behavior: serializeAws_restJson1SegmentBehaviors(input.Behavior, context) })), (input.Demographic !== undefined &&\n input.Demographic !== null && {\n Demographic: serializeAws_restJson1SegmentDemographics(input.Demographic, context),\n })), (input.Location !== undefined &&\n input.Location !== null && { Location: serializeAws_restJson1SegmentLocation(input.Location, context) })), (input.Metrics !== undefined &&\n input.Metrics !== null && { Metrics: serializeAws_restJson1MapOfMetricDimension(input.Metrics, context) })), (input.UserAttributes !== undefined &&\n input.UserAttributes !== null && {\n UserAttributes: serializeAws_restJson1MapOfAttributeDimension(input.UserAttributes, context),\n }));\n};\nvar serializeAws_restJson1SegmentGroup = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Dimensions !== undefined &&\n input.Dimensions !== null && {\n Dimensions: serializeAws_restJson1ListOfSegmentDimensions(input.Dimensions, context),\n })), (input.SourceSegments !== undefined &&\n input.SourceSegments !== null && {\n SourceSegments: serializeAws_restJson1ListOfSegmentReference(input.SourceSegments, context),\n })), (input.SourceType !== undefined && input.SourceType !== null && { SourceType: input.SourceType })), (input.Type !== undefined && input.Type !== null && { Type: input.Type }));\n};\nvar serializeAws_restJson1SegmentGroupList = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Groups !== undefined &&\n input.Groups !== null && { Groups: serializeAws_restJson1ListOfSegmentGroup(input.Groups, context) })), (input.Include !== undefined && input.Include !== null && { Include: input.Include }));\n};\nvar serializeAws_restJson1SegmentLocation = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Country !== undefined &&\n input.Country !== null && { Country: serializeAws_restJson1SetDimension(input.Country, context) })), (input.GPSPoint !== undefined &&\n input.GPSPoint !== null && { GPSPoint: serializeAws_restJson1GPSPointDimension(input.GPSPoint, context) }));\n};\nvar serializeAws_restJson1SegmentReference = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Id !== undefined && input.Id !== null && { Id: input.Id })), (input.Version !== undefined && input.Version !== null && { Version: input.Version }));\n};\nvar serializeAws_restJson1SendUsersMessageRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Context !== undefined &&\n input.Context !== null && { Context: serializeAws_restJson1MapOf__string(input.Context, context) })), (input.MessageConfiguration !== undefined &&\n input.MessageConfiguration !== null && {\n MessageConfiguration: serializeAws_restJson1DirectMessageConfiguration(input.MessageConfiguration, context),\n })), (input.TemplateConfiguration !== undefined &&\n input.TemplateConfiguration !== null && {\n TemplateConfiguration: serializeAws_restJson1TemplateConfiguration(input.TemplateConfiguration, context),\n })), (input.TraceId !== undefined && input.TraceId !== null && { TraceId: input.TraceId })), (input.Users !== undefined &&\n input.Users !== null && { Users: serializeAws_restJson1MapOfEndpointSendConfiguration(input.Users, context) }));\n};\nvar serializeAws_restJson1Session = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Duration !== undefined && input.Duration !== null && { Duration: input.Duration })), (input.Id !== undefined && input.Id !== null && { Id: input.Id })), (input.StartTimestamp !== undefined &&\n input.StartTimestamp !== null && { StartTimestamp: input.StartTimestamp })), (input.StopTimestamp !== undefined && input.StopTimestamp !== null && { StopTimestamp: input.StopTimestamp }));\n};\nvar serializeAws_restJson1SetDimension = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DimensionType !== undefined && input.DimensionType !== null && { DimensionType: input.DimensionType })), (input.Values !== undefined &&\n input.Values !== null && { Values: serializeAws_restJson1ListOf__string(input.Values, context) }));\n};\nvar serializeAws_restJson1SimpleCondition = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EventCondition !== undefined &&\n input.EventCondition !== null && {\n EventCondition: serializeAws_restJson1EventCondition(input.EventCondition, context),\n })), (input.SegmentCondition !== undefined &&\n input.SegmentCondition !== null && {\n SegmentCondition: serializeAws_restJson1SegmentCondition(input.SegmentCondition, context),\n })), (input.SegmentDimensions !== undefined &&\n input.SegmentDimensions !== null && {\n segmentDimensions: serializeAws_restJson1SegmentDimensions(input.SegmentDimensions, context),\n }));\n};\nvar serializeAws_restJson1SimpleEmail = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.HtmlPart !== undefined &&\n input.HtmlPart !== null && { HtmlPart: serializeAws_restJson1SimpleEmailPart(input.HtmlPart, context) })), (input.Subject !== undefined &&\n input.Subject !== null && { Subject: serializeAws_restJson1SimpleEmailPart(input.Subject, context) })), (input.TextPart !== undefined &&\n input.TextPart !== null && { TextPart: serializeAws_restJson1SimpleEmailPart(input.TextPart, context) }));\n};\nvar serializeAws_restJson1SimpleEmailPart = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Charset !== undefined && input.Charset !== null && { Charset: input.Charset })), (input.Data !== undefined && input.Data !== null && { Data: input.Data }));\n};\nvar serializeAws_restJson1SMSChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled })), (input.SenderId !== undefined && input.SenderId !== null && { SenderId: input.SenderId })), (input.ShortCode !== undefined && input.ShortCode !== null && { ShortCode: input.ShortCode }));\n};\nvar serializeAws_restJson1SMSMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.Keyword !== undefined && input.Keyword !== null && { Keyword: input.Keyword })), (input.MediaUrl !== undefined && input.MediaUrl !== null && { MediaUrl: input.MediaUrl })), (input.MessageType !== undefined && input.MessageType !== null && { MessageType: input.MessageType })), (input.OriginationNumber !== undefined &&\n input.OriginationNumber !== null && { OriginationNumber: input.OriginationNumber })), (input.SenderId !== undefined && input.SenderId !== null && { SenderId: input.SenderId })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n }));\n};\nvar serializeAws_restJson1SMSMessageActivity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MessageConfig !== undefined &&\n input.MessageConfig !== null && {\n MessageConfig: serializeAws_restJson1JourneySMSMessage(input.MessageConfig, context),\n })), (input.NextActivity !== undefined && input.NextActivity !== null && { NextActivity: input.NextActivity })), (input.TemplateName !== undefined && input.TemplateName !== null && { TemplateName: input.TemplateName })), (input.TemplateVersion !== undefined &&\n input.TemplateVersion !== null && { TemplateVersion: input.TemplateVersion }));\n};\nvar serializeAws_restJson1SMSTemplateRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.DefaultSubstitutions !== undefined &&\n input.DefaultSubstitutions !== null && { DefaultSubstitutions: input.DefaultSubstitutions })), (input.RecommenderId !== undefined && input.RecommenderId !== null && { RecommenderId: input.RecommenderId })), (input.TemplateDescription !== undefined &&\n input.TemplateDescription !== null && { TemplateDescription: input.TemplateDescription })), (input.tags !== undefined &&\n input.tags !== null && { tags: serializeAws_restJson1MapOf__string(input.tags, context) }));\n};\nvar serializeAws_restJson1StartCondition = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Description !== undefined && input.Description !== null && { Description: input.Description })), (input.EventStartCondition !== undefined &&\n input.EventStartCondition !== null && {\n EventStartCondition: serializeAws_restJson1EventStartCondition(input.EventStartCondition, context),\n })), (input.SegmentStartCondition !== undefined &&\n input.SegmentStartCondition !== null && {\n SegmentStartCondition: serializeAws_restJson1SegmentCondition(input.SegmentStartCondition, context),\n }));\n};\nvar serializeAws_restJson1TagsModel = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.tags !== undefined &&\n input.tags !== null && { tags: serializeAws_restJson1MapOf__string(input.tags, context) }));\n};\nvar serializeAws_restJson1Template = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.Version !== undefined && input.Version !== null && { Version: input.Version }));\n};\nvar serializeAws_restJson1TemplateActiveVersionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Version !== undefined && input.Version !== null && { Version: input.Version }));\n};\nvar serializeAws_restJson1TemplateConfiguration = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.EmailTemplate !== undefined &&\n input.EmailTemplate !== null && { EmailTemplate: serializeAws_restJson1Template(input.EmailTemplate, context) })), (input.PushTemplate !== undefined &&\n input.PushTemplate !== null && { PushTemplate: serializeAws_restJson1Template(input.PushTemplate, context) })), (input.SMSTemplate !== undefined &&\n input.SMSTemplate !== null && { SMSTemplate: serializeAws_restJson1Template(input.SMSTemplate, context) })), (input.VoiceTemplate !== undefined &&\n input.VoiceTemplate !== null && { VoiceTemplate: serializeAws_restJson1Template(input.VoiceTemplate, context) }));\n};\nvar serializeAws_restJson1UpdateAttributesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Blacklist !== undefined &&\n input.Blacklist !== null && { Blacklist: serializeAws_restJson1ListOf__string(input.Blacklist, context) }));\n};\nvar serializeAws_restJson1UpdateRecommenderConfigurationShape = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Attributes !== undefined &&\n input.Attributes !== null && { Attributes: serializeAws_restJson1MapOf__string(input.Attributes, context) })), (input.Description !== undefined && input.Description !== null && { Description: input.Description })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.RecommendationProviderIdType !== undefined &&\n input.RecommendationProviderIdType !== null && {\n RecommendationProviderIdType: input.RecommendationProviderIdType,\n })), (input.RecommendationProviderRoleArn !== undefined &&\n input.RecommendationProviderRoleArn !== null && {\n RecommendationProviderRoleArn: input.RecommendationProviderRoleArn,\n })), (input.RecommendationProviderUri !== undefined &&\n input.RecommendationProviderUri !== null && { RecommendationProviderUri: input.RecommendationProviderUri })), (input.RecommendationTransformerUri !== undefined &&\n input.RecommendationTransformerUri !== null && {\n RecommendationTransformerUri: input.RecommendationTransformerUri,\n })), (input.RecommendationsDisplayName !== undefined &&\n input.RecommendationsDisplayName !== null && { RecommendationsDisplayName: input.RecommendationsDisplayName })), (input.RecommendationsPerMessage !== undefined &&\n input.RecommendationsPerMessage !== null && { RecommendationsPerMessage: input.RecommendationsPerMessage }));\n};\nvar serializeAws_restJson1VoiceChannelRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Enabled !== undefined && input.Enabled !== null && { Enabled: input.Enabled }));\n};\nvar serializeAws_restJson1VoiceMessage = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.OriginationNumber !== undefined &&\n input.OriginationNumber !== null && { OriginationNumber: input.OriginationNumber })), (input.Substitutions !== undefined &&\n input.Substitutions !== null && {\n Substitutions: serializeAws_restJson1MapOfListOf__string(input.Substitutions, context),\n })), (input.VoiceId !== undefined && input.VoiceId !== null && { VoiceId: input.VoiceId }));\n};\nvar serializeAws_restJson1VoiceTemplateRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Body !== undefined && input.Body !== null && { Body: input.Body })), (input.DefaultSubstitutions !== undefined &&\n input.DefaultSubstitutions !== null && { DefaultSubstitutions: input.DefaultSubstitutions })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.TemplateDescription !== undefined &&\n input.TemplateDescription !== null && { TemplateDescription: input.TemplateDescription })), (input.VoiceId !== undefined && input.VoiceId !== null && { VoiceId: input.VoiceId })), (input.tags !== undefined &&\n input.tags !== null && { tags: serializeAws_restJson1MapOf__string(input.tags, context) }));\n};\nvar serializeAws_restJson1WaitActivity = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.NextActivity !== undefined && input.NextActivity !== null && { NextActivity: input.NextActivity })), (input.WaitTime !== undefined &&\n input.WaitTime !== null && { WaitTime: serializeAws_restJson1WaitTime(input.WaitTime, context) }));\n};\nvar serializeAws_restJson1WaitTime = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.WaitFor !== undefined && input.WaitFor !== null && { WaitFor: input.WaitFor })), (input.WaitUntil !== undefined && input.WaitUntil !== null && { WaitUntil: input.WaitUntil }));\n};\nvar serializeAws_restJson1WriteApplicationSettingsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CampaignHook !== undefined &&\n input.CampaignHook !== null && { CampaignHook: serializeAws_restJson1CampaignHook(input.CampaignHook, context) })), (input.CloudWatchMetricsEnabled !== undefined &&\n input.CloudWatchMetricsEnabled !== null && { CloudWatchMetricsEnabled: input.CloudWatchMetricsEnabled })), (input.EventTaggingEnabled !== undefined &&\n input.EventTaggingEnabled !== null && { EventTaggingEnabled: input.EventTaggingEnabled })), (input.Limits !== undefined &&\n input.Limits !== null && { Limits: serializeAws_restJson1CampaignLimits(input.Limits, context) })), (input.QuietTime !== undefined &&\n input.QuietTime !== null && { QuietTime: serializeAws_restJson1QuietTime(input.QuietTime, context) }));\n};\nvar serializeAws_restJson1WriteCampaignRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.AdditionalTreatments !== undefined &&\n input.AdditionalTreatments !== null && {\n AdditionalTreatments: serializeAws_restJson1ListOfWriteTreatmentResource(input.AdditionalTreatments, context),\n })), (input.CustomDeliveryConfiguration !== undefined &&\n input.CustomDeliveryConfiguration !== null && {\n CustomDeliveryConfiguration: serializeAws_restJson1CustomDeliveryConfiguration(input.CustomDeliveryConfiguration, context),\n })), (input.Description !== undefined && input.Description !== null && { Description: input.Description })), (input.HoldoutPercent !== undefined &&\n input.HoldoutPercent !== null && { HoldoutPercent: input.HoldoutPercent })), (input.Hook !== undefined &&\n input.Hook !== null && { Hook: serializeAws_restJson1CampaignHook(input.Hook, context) })), (input.IsPaused !== undefined && input.IsPaused !== null && { IsPaused: input.IsPaused })), (input.Limits !== undefined &&\n input.Limits !== null && { Limits: serializeAws_restJson1CampaignLimits(input.Limits, context) })), (input.MessageConfiguration !== undefined &&\n input.MessageConfiguration !== null && {\n MessageConfiguration: serializeAws_restJson1MessageConfiguration(input.MessageConfiguration, context),\n })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.Schedule !== undefined &&\n input.Schedule !== null && { Schedule: serializeAws_restJson1Schedule(input.Schedule, context) })), (input.SegmentId !== undefined && input.SegmentId !== null && { SegmentId: input.SegmentId })), (input.SegmentVersion !== undefined &&\n input.SegmentVersion !== null && { SegmentVersion: input.SegmentVersion })), (input.TemplateConfiguration !== undefined &&\n input.TemplateConfiguration !== null && {\n TemplateConfiguration: serializeAws_restJson1TemplateConfiguration(input.TemplateConfiguration, context),\n })), (input.TreatmentDescription !== undefined &&\n input.TreatmentDescription !== null && { TreatmentDescription: input.TreatmentDescription })), (input.TreatmentName !== undefined && input.TreatmentName !== null && { TreatmentName: input.TreatmentName })), (input.tags !== undefined &&\n input.tags !== null && { tags: serializeAws_restJson1MapOf__string(input.tags, context) }));\n};\nvar serializeAws_restJson1WriteEventStream = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DestinationStreamArn !== undefined &&\n input.DestinationStreamArn !== null && { DestinationStreamArn: input.DestinationStreamArn })), (input.RoleArn !== undefined && input.RoleArn !== null && { RoleArn: input.RoleArn }));\n};\nvar serializeAws_restJson1WriteJourneyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Activities !== undefined &&\n input.Activities !== null && { Activities: serializeAws_restJson1MapOfActivity(input.Activities, context) })), (input.CreationDate !== undefined && input.CreationDate !== null && { CreationDate: input.CreationDate })), (input.LastModifiedDate !== undefined &&\n input.LastModifiedDate !== null && { LastModifiedDate: input.LastModifiedDate })), (input.Limits !== undefined &&\n input.Limits !== null && { Limits: serializeAws_restJson1JourneyLimits(input.Limits, context) })), (input.LocalTime !== undefined && input.LocalTime !== null && { LocalTime: input.LocalTime })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.QuietTime !== undefined &&\n input.QuietTime !== null && { QuietTime: serializeAws_restJson1QuietTime(input.QuietTime, context) })), (input.RefreshFrequency !== undefined &&\n input.RefreshFrequency !== null && { RefreshFrequency: input.RefreshFrequency })), (input.Schedule !== undefined &&\n input.Schedule !== null && { Schedule: serializeAws_restJson1JourneySchedule(input.Schedule, context) })), (input.StartActivity !== undefined && input.StartActivity !== null && { StartActivity: input.StartActivity })), (input.StartCondition !== undefined &&\n input.StartCondition !== null && {\n StartCondition: serializeAws_restJson1StartCondition(input.StartCondition, context),\n })), (input.State !== undefined && input.State !== null && { State: input.State }));\n};\nvar serializeAws_restJson1WriteSegmentRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Dimensions !== undefined &&\n input.Dimensions !== null && { Dimensions: serializeAws_restJson1SegmentDimensions(input.Dimensions, context) })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.SegmentGroups !== undefined &&\n input.SegmentGroups !== null && {\n SegmentGroups: serializeAws_restJson1SegmentGroupList(input.SegmentGroups, context),\n })), (input.tags !== undefined &&\n input.tags !== null && { tags: serializeAws_restJson1MapOf__string(input.tags, context) }));\n};\nvar serializeAws_restJson1WriteTreatmentResource = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CustomDeliveryConfiguration !== undefined &&\n input.CustomDeliveryConfiguration !== null && {\n CustomDeliveryConfiguration: serializeAws_restJson1CustomDeliveryConfiguration(input.CustomDeliveryConfiguration, context),\n })), (input.MessageConfiguration !== undefined &&\n input.MessageConfiguration !== null && {\n MessageConfiguration: serializeAws_restJson1MessageConfiguration(input.MessageConfiguration, context),\n })), (input.Schedule !== undefined &&\n input.Schedule !== null && { Schedule: serializeAws_restJson1Schedule(input.Schedule, context) })), (input.SizePercent !== undefined && input.SizePercent !== null && { SizePercent: input.SizePercent })), (input.TemplateConfiguration !== undefined &&\n input.TemplateConfiguration !== null && {\n TemplateConfiguration: serializeAws_restJson1TemplateConfiguration(input.TemplateConfiguration, context),\n })), (input.TreatmentDescription !== undefined &&\n input.TreatmentDescription !== null && { TreatmentDescription: input.TreatmentDescription })), (input.TreatmentName !== undefined && input.TreatmentName !== null && { TreatmentName: input.TreatmentName }));\n};\nvar deserializeAws_restJson1ActivitiesResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfActivityResponse(output.Item, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_restJson1Activity = function (output, context) {\n return {\n CUSTOM: output.CUSTOM !== undefined && output.CUSTOM !== null\n ? deserializeAws_restJson1CustomMessageActivity(output.CUSTOM, context)\n : undefined,\n ConditionalSplit: output.ConditionalSplit !== undefined && output.ConditionalSplit !== null\n ? deserializeAws_restJson1ConditionalSplitActivity(output.ConditionalSplit, context)\n : undefined,\n Description: output.Description !== undefined && output.Description !== null ? output.Description : undefined,\n EMAIL: output.EMAIL !== undefined && output.EMAIL !== null\n ? deserializeAws_restJson1EmailMessageActivity(output.EMAIL, context)\n : undefined,\n Holdout: output.Holdout !== undefined && output.Holdout !== null\n ? deserializeAws_restJson1HoldoutActivity(output.Holdout, context)\n : undefined,\n MultiCondition: output.MultiCondition !== undefined && output.MultiCondition !== null\n ? deserializeAws_restJson1MultiConditionalSplitActivity(output.MultiCondition, context)\n : undefined,\n PUSH: output.PUSH !== undefined && output.PUSH !== null\n ? deserializeAws_restJson1PushMessageActivity(output.PUSH, context)\n : undefined,\n RandomSplit: output.RandomSplit !== undefined && output.RandomSplit !== null\n ? deserializeAws_restJson1RandomSplitActivity(output.RandomSplit, context)\n : undefined,\n SMS: output.SMS !== undefined && output.SMS !== null\n ? deserializeAws_restJson1SMSMessageActivity(output.SMS, context)\n : undefined,\n Wait: output.Wait !== undefined && output.Wait !== null\n ? deserializeAws_restJson1WaitActivity(output.Wait, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1ActivityResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CampaignId: output.CampaignId !== undefined && output.CampaignId !== null ? output.CampaignId : undefined,\n End: output.End !== undefined && output.End !== null ? output.End : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n Result: output.Result !== undefined && output.Result !== null ? output.Result : undefined,\n ScheduledStart: output.ScheduledStart !== undefined && output.ScheduledStart !== null ? output.ScheduledStart : undefined,\n Start: output.Start !== undefined && output.Start !== null ? output.Start : undefined,\n State: output.State !== undefined && output.State !== null ? output.State : undefined,\n SuccessfulEndpointCount: output.SuccessfulEndpointCount !== undefined && output.SuccessfulEndpointCount !== null\n ? output.SuccessfulEndpointCount\n : undefined,\n TimezonesCompletedCount: output.TimezonesCompletedCount !== undefined && output.TimezonesCompletedCount !== null\n ? output.TimezonesCompletedCount\n : undefined,\n TimezonesTotalCount: output.TimezonesTotalCount !== undefined && output.TimezonesTotalCount !== null\n ? output.TimezonesTotalCount\n : undefined,\n TotalEndpointCount: output.TotalEndpointCount !== undefined && output.TotalEndpointCount !== null\n ? output.TotalEndpointCount\n : undefined,\n TreatmentId: output.TreatmentId !== undefined && output.TreatmentId !== null ? output.TreatmentId : undefined,\n };\n};\nvar deserializeAws_restJson1ADMChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1AndroidPushNotificationTemplate = function (output, context) {\n return {\n Action: output.Action !== undefined && output.Action !== null ? output.Action : undefined,\n Body: output.Body !== undefined && output.Body !== null ? output.Body : undefined,\n ImageIconUrl: output.ImageIconUrl !== undefined && output.ImageIconUrl !== null ? output.ImageIconUrl : undefined,\n ImageUrl: output.ImageUrl !== undefined && output.ImageUrl !== null ? output.ImageUrl : undefined,\n RawContent: output.RawContent !== undefined && output.RawContent !== null ? output.RawContent : undefined,\n SmallImageIconUrl: output.SmallImageIconUrl !== undefined && output.SmallImageIconUrl !== null\n ? output.SmallImageIconUrl\n : undefined,\n Sound: output.Sound !== undefined && output.Sound !== null ? output.Sound : undefined,\n Title: output.Title !== undefined && output.Title !== null ? output.Title : undefined,\n Url: output.Url !== undefined && output.Url !== null ? output.Url : undefined,\n };\n};\nvar deserializeAws_restJson1APNSChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n DefaultAuthenticationMethod: output.DefaultAuthenticationMethod !== undefined && output.DefaultAuthenticationMethod !== null\n ? output.DefaultAuthenticationMethod\n : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n HasTokenKey: output.HasTokenKey !== undefined && output.HasTokenKey !== null ? output.HasTokenKey : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1APNSPushNotificationTemplate = function (output, context) {\n return {\n Action: output.Action !== undefined && output.Action !== null ? output.Action : undefined,\n Body: output.Body !== undefined && output.Body !== null ? output.Body : undefined,\n MediaUrl: output.MediaUrl !== undefined && output.MediaUrl !== null ? output.MediaUrl : undefined,\n RawContent: output.RawContent !== undefined && output.RawContent !== null ? output.RawContent : undefined,\n Sound: output.Sound !== undefined && output.Sound !== null ? output.Sound : undefined,\n Title: output.Title !== undefined && output.Title !== null ? output.Title : undefined,\n Url: output.Url !== undefined && output.Url !== null ? output.Url : undefined,\n };\n};\nvar deserializeAws_restJson1APNSSandboxChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n DefaultAuthenticationMethod: output.DefaultAuthenticationMethod !== undefined && output.DefaultAuthenticationMethod !== null\n ? output.DefaultAuthenticationMethod\n : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n HasTokenKey: output.HasTokenKey !== undefined && output.HasTokenKey !== null ? output.HasTokenKey : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1APNSVoipChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n DefaultAuthenticationMethod: output.DefaultAuthenticationMethod !== undefined && output.DefaultAuthenticationMethod !== null\n ? output.DefaultAuthenticationMethod\n : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n HasTokenKey: output.HasTokenKey !== undefined && output.HasTokenKey !== null ? output.HasTokenKey : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1APNSVoipSandboxChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n DefaultAuthenticationMethod: output.DefaultAuthenticationMethod !== undefined && output.DefaultAuthenticationMethod !== null\n ? output.DefaultAuthenticationMethod\n : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n HasTokenKey: output.HasTokenKey !== undefined && output.HasTokenKey !== null ? output.HasTokenKey : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1ApplicationDateRangeKpiResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(output.EndTime) : undefined,\n KpiName: output.KpiName !== undefined && output.KpiName !== null ? output.KpiName : undefined,\n KpiResult: output.KpiResult !== undefined && output.KpiResult !== null\n ? deserializeAws_restJson1BaseKpiResult(output.KpiResult, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StartTime: output.StartTime !== undefined && output.StartTime !== null ? new Date(output.StartTime) : undefined,\n };\n};\nvar deserializeAws_restJson1ApplicationResponse = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1ApplicationSettingsResource = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CampaignHook: output.CampaignHook !== undefined && output.CampaignHook !== null\n ? deserializeAws_restJson1CampaignHook(output.CampaignHook, context)\n : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Limits: output.Limits !== undefined && output.Limits !== null\n ? deserializeAws_restJson1CampaignLimits(output.Limits, context)\n : undefined,\n QuietTime: output.QuietTime !== undefined && output.QuietTime !== null\n ? deserializeAws_restJson1QuietTime(output.QuietTime, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1ApplicationsResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfApplicationResponse(output.Item, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_restJson1AttributeDimension = function (output, context) {\n return {\n AttributeType: output.AttributeType !== undefined && output.AttributeType !== null ? output.AttributeType : undefined,\n Values: output.Values !== undefined && output.Values !== null\n ? deserializeAws_restJson1ListOf__string(output.Values, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1AttributesResource = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n AttributeType: output.AttributeType !== undefined && output.AttributeType !== null ? output.AttributeType : undefined,\n Attributes: output.Attributes !== undefined && output.Attributes !== null\n ? deserializeAws_restJson1ListOf__string(output.Attributes, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1BaiduChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Credential: output.Credential !== undefined && output.Credential !== null ? output.Credential : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1BaseKpiResult = function (output, context) {\n return {\n Rows: output.Rows !== undefined && output.Rows !== null\n ? deserializeAws_restJson1ListOfResultRow(output.Rows, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignCustomMessage = function (output, context) {\n return {\n Data: output.Data !== undefined && output.Data !== null ? output.Data : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignDateRangeKpiResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CampaignId: output.CampaignId !== undefined && output.CampaignId !== null ? output.CampaignId : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(output.EndTime) : undefined,\n KpiName: output.KpiName !== undefined && output.KpiName !== null ? output.KpiName : undefined,\n KpiResult: output.KpiResult !== undefined && output.KpiResult !== null\n ? deserializeAws_restJson1BaseKpiResult(output.KpiResult, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StartTime: output.StartTime !== undefined && output.StartTime !== null ? new Date(output.StartTime) : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignEmailMessage = function (output, context) {\n return {\n Body: output.Body !== undefined && output.Body !== null ? output.Body : undefined,\n FromAddress: output.FromAddress !== undefined && output.FromAddress !== null ? output.FromAddress : undefined,\n HtmlBody: output.HtmlBody !== undefined && output.HtmlBody !== null ? output.HtmlBody : undefined,\n Title: output.Title !== undefined && output.Title !== null ? output.Title : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignEventFilter = function (output, context) {\n return {\n Dimensions: output.Dimensions !== undefined && output.Dimensions !== null\n ? deserializeAws_restJson1EventDimensions(output.Dimensions, context)\n : undefined,\n FilterType: output.FilterType !== undefined && output.FilterType !== null ? output.FilterType : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignHook = function (output, context) {\n return {\n LambdaFunctionName: output.LambdaFunctionName !== undefined && output.LambdaFunctionName !== null\n ? output.LambdaFunctionName\n : undefined,\n Mode: output.Mode !== undefined && output.Mode !== null ? output.Mode : undefined,\n WebUrl: output.WebUrl !== undefined && output.WebUrl !== null ? output.WebUrl : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignLimits = function (output, context) {\n return {\n Daily: output.Daily !== undefined && output.Daily !== null ? output.Daily : undefined,\n MaximumDuration: output.MaximumDuration !== undefined && output.MaximumDuration !== null ? output.MaximumDuration : undefined,\n MessagesPerSecond: output.MessagesPerSecond !== undefined && output.MessagesPerSecond !== null\n ? output.MessagesPerSecond\n : undefined,\n Total: output.Total !== undefined && output.Total !== null ? output.Total : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignResponse = function (output, context) {\n return {\n AdditionalTreatments: output.AdditionalTreatments !== undefined && output.AdditionalTreatments !== null\n ? deserializeAws_restJson1ListOfTreatmentResource(output.AdditionalTreatments, context)\n : undefined,\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n CustomDeliveryConfiguration: output.CustomDeliveryConfiguration !== undefined && output.CustomDeliveryConfiguration !== null\n ? deserializeAws_restJson1CustomDeliveryConfiguration(output.CustomDeliveryConfiguration, context)\n : undefined,\n DefaultState: output.DefaultState !== undefined && output.DefaultState !== null\n ? deserializeAws_restJson1CampaignState(output.DefaultState, context)\n : undefined,\n Description: output.Description !== undefined && output.Description !== null ? output.Description : undefined,\n HoldoutPercent: output.HoldoutPercent !== undefined && output.HoldoutPercent !== null ? output.HoldoutPercent : undefined,\n Hook: output.Hook !== undefined && output.Hook !== null\n ? deserializeAws_restJson1CampaignHook(output.Hook, context)\n : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsPaused: output.IsPaused !== undefined && output.IsPaused !== null ? output.IsPaused : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Limits: output.Limits !== undefined && output.Limits !== null\n ? deserializeAws_restJson1CampaignLimits(output.Limits, context)\n : undefined,\n MessageConfiguration: output.MessageConfiguration !== undefined && output.MessageConfiguration !== null\n ? deserializeAws_restJson1MessageConfiguration(output.MessageConfiguration, context)\n : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Schedule: output.Schedule !== undefined && output.Schedule !== null\n ? deserializeAws_restJson1Schedule(output.Schedule, context)\n : undefined,\n SegmentId: output.SegmentId !== undefined && output.SegmentId !== null ? output.SegmentId : undefined,\n SegmentVersion: output.SegmentVersion !== undefined && output.SegmentVersion !== null ? output.SegmentVersion : undefined,\n State: output.State !== undefined && output.State !== null\n ? deserializeAws_restJson1CampaignState(output.State, context)\n : undefined,\n TemplateConfiguration: output.TemplateConfiguration !== undefined && output.TemplateConfiguration !== null\n ? deserializeAws_restJson1TemplateConfiguration(output.TemplateConfiguration, context)\n : undefined,\n TreatmentDescription: output.TreatmentDescription !== undefined && output.TreatmentDescription !== null\n ? output.TreatmentDescription\n : undefined,\n TreatmentName: output.TreatmentName !== undefined && output.TreatmentName !== null ? output.TreatmentName : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignSmsMessage = function (output, context) {\n return {\n Body: output.Body !== undefined && output.Body !== null ? output.Body : undefined,\n MessageType: output.MessageType !== undefined && output.MessageType !== null ? output.MessageType : undefined,\n SenderId: output.SenderId !== undefined && output.SenderId !== null ? output.SenderId : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignsResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfCampaignResponse(output.Item, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_restJson1CampaignState = function (output, context) {\n return {\n CampaignStatus: output.CampaignStatus !== undefined && output.CampaignStatus !== null ? output.CampaignStatus : undefined,\n };\n};\nvar deserializeAws_restJson1ChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1ChannelsResponse = function (output, context) {\n return {\n Channels: output.Channels !== undefined && output.Channels !== null\n ? deserializeAws_restJson1MapOfChannelResponse(output.Channels, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1Condition = function (output, context) {\n return {\n Conditions: output.Conditions !== undefined && output.Conditions !== null\n ? deserializeAws_restJson1ListOfSimpleCondition(output.Conditions, context)\n : undefined,\n Operator: output.Operator !== undefined && output.Operator !== null ? output.Operator : undefined,\n };\n};\nvar deserializeAws_restJson1ConditionalSplitActivity = function (output, context) {\n return {\n Condition: output.Condition !== undefined && output.Condition !== null\n ? deserializeAws_restJson1Condition(output.Condition, context)\n : undefined,\n EvaluationWaitTime: output.EvaluationWaitTime !== undefined && output.EvaluationWaitTime !== null\n ? deserializeAws_restJson1WaitTime(output.EvaluationWaitTime, context)\n : undefined,\n FalseActivity: output.FalseActivity !== undefined && output.FalseActivity !== null ? output.FalseActivity : undefined,\n TrueActivity: output.TrueActivity !== undefined && output.TrueActivity !== null ? output.TrueActivity : undefined,\n };\n};\nvar deserializeAws_restJson1CreateTemplateMessageBody = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n RequestID: output.RequestID !== undefined && output.RequestID !== null ? output.RequestID : undefined,\n };\n};\nvar deserializeAws_restJson1CustomDeliveryConfiguration = function (output, context) {\n return {\n DeliveryUri: output.DeliveryUri !== undefined && output.DeliveryUri !== null ? output.DeliveryUri : undefined,\n EndpointTypes: output.EndpointTypes !== undefined && output.EndpointTypes !== null\n ? deserializeAws_restJson1ListOf__EndpointTypesElement(output.EndpointTypes, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1CustomMessageActivity = function (output, context) {\n return {\n DeliveryUri: output.DeliveryUri !== undefined && output.DeliveryUri !== null ? output.DeliveryUri : undefined,\n EndpointTypes: output.EndpointTypes !== undefined && output.EndpointTypes !== null\n ? deserializeAws_restJson1ListOf__EndpointTypesElement(output.EndpointTypes, context)\n : undefined,\n MessageConfig: output.MessageConfig !== undefined && output.MessageConfig !== null\n ? deserializeAws_restJson1JourneyCustomMessage(output.MessageConfig, context)\n : undefined,\n NextActivity: output.NextActivity !== undefined && output.NextActivity !== null ? output.NextActivity : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateVersion: output.TemplateVersion !== undefined && output.TemplateVersion !== null ? output.TemplateVersion : undefined,\n };\n};\nvar deserializeAws_restJson1DefaultPushNotificationTemplate = function (output, context) {\n return {\n Action: output.Action !== undefined && output.Action !== null ? output.Action : undefined,\n Body: output.Body !== undefined && output.Body !== null ? output.Body : undefined,\n Sound: output.Sound !== undefined && output.Sound !== null ? output.Sound : undefined,\n Title: output.Title !== undefined && output.Title !== null ? output.Title : undefined,\n Url: output.Url !== undefined && output.Url !== null ? output.Url : undefined,\n };\n};\nvar deserializeAws_restJson1EmailChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n ConfigurationSet: output.ConfigurationSet !== undefined && output.ConfigurationSet !== null ? output.ConfigurationSet : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n FromAddress: output.FromAddress !== undefined && output.FromAddress !== null ? output.FromAddress : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n Identity: output.Identity !== undefined && output.Identity !== null ? output.Identity : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n MessagesPerSecond: output.MessagesPerSecond !== undefined && output.MessagesPerSecond !== null\n ? output.MessagesPerSecond\n : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n RoleArn: output.RoleArn !== undefined && output.RoleArn !== null ? output.RoleArn : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1EmailMessageActivity = function (output, context) {\n return {\n MessageConfig: output.MessageConfig !== undefined && output.MessageConfig !== null\n ? deserializeAws_restJson1JourneyEmailMessage(output.MessageConfig, context)\n : undefined,\n NextActivity: output.NextActivity !== undefined && output.NextActivity !== null ? output.NextActivity : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateVersion: output.TemplateVersion !== undefined && output.TemplateVersion !== null ? output.TemplateVersion : undefined,\n };\n};\nvar deserializeAws_restJson1EmailTemplateResponse = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n DefaultSubstitutions: output.DefaultSubstitutions !== undefined && output.DefaultSubstitutions !== null\n ? output.DefaultSubstitutions\n : undefined,\n HtmlPart: output.HtmlPart !== undefined && output.HtmlPart !== null ? output.HtmlPart : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n RecommenderId: output.RecommenderId !== undefined && output.RecommenderId !== null ? output.RecommenderId : undefined,\n Subject: output.Subject !== undefined && output.Subject !== null ? output.Subject : undefined,\n TemplateDescription: output.TemplateDescription !== undefined && output.TemplateDescription !== null\n ? output.TemplateDescription\n : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateType: output.TemplateType !== undefined && output.TemplateType !== null ? output.TemplateType : undefined,\n TextPart: output.TextPart !== undefined && output.TextPart !== null ? output.TextPart : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1EndpointDemographic = function (output, context) {\n return {\n AppVersion: output.AppVersion !== undefined && output.AppVersion !== null ? output.AppVersion : undefined,\n Locale: output.Locale !== undefined && output.Locale !== null ? output.Locale : undefined,\n Make: output.Make !== undefined && output.Make !== null ? output.Make : undefined,\n Model: output.Model !== undefined && output.Model !== null ? output.Model : undefined,\n ModelVersion: output.ModelVersion !== undefined && output.ModelVersion !== null ? output.ModelVersion : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n PlatformVersion: output.PlatformVersion !== undefined && output.PlatformVersion !== null ? output.PlatformVersion : undefined,\n Timezone: output.Timezone !== undefined && output.Timezone !== null ? output.Timezone : undefined,\n };\n};\nvar deserializeAws_restJson1EndpointItemResponse = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n StatusCode: output.StatusCode !== undefined && output.StatusCode !== null ? output.StatusCode : undefined,\n };\n};\nvar deserializeAws_restJson1EndpointLocation = function (output, context) {\n return {\n City: output.City !== undefined && output.City !== null ? output.City : undefined,\n Country: output.Country !== undefined && output.Country !== null ? output.Country : undefined,\n Latitude: output.Latitude !== undefined && output.Latitude !== null ? output.Latitude : undefined,\n Longitude: output.Longitude !== undefined && output.Longitude !== null ? output.Longitude : undefined,\n PostalCode: output.PostalCode !== undefined && output.PostalCode !== null ? output.PostalCode : undefined,\n Region: output.Region !== undefined && output.Region !== null ? output.Region : undefined,\n };\n};\nvar deserializeAws_restJson1EndpointMessageResult = function (output, context) {\n return {\n Address: output.Address !== undefined && output.Address !== null ? output.Address : undefined,\n DeliveryStatus: output.DeliveryStatus !== undefined && output.DeliveryStatus !== null ? output.DeliveryStatus : undefined,\n MessageId: output.MessageId !== undefined && output.MessageId !== null ? output.MessageId : undefined,\n StatusCode: output.StatusCode !== undefined && output.StatusCode !== null ? output.StatusCode : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n UpdatedToken: output.UpdatedToken !== undefined && output.UpdatedToken !== null ? output.UpdatedToken : undefined,\n };\n};\nvar deserializeAws_restJson1EndpointResponse = function (output, context) {\n return {\n Address: output.Address !== undefined && output.Address !== null ? output.Address : undefined,\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n Attributes: output.Attributes !== undefined && output.Attributes !== null\n ? deserializeAws_restJson1MapOfListOf__string(output.Attributes, context)\n : undefined,\n ChannelType: output.ChannelType !== undefined && output.ChannelType !== null ? output.ChannelType : undefined,\n CohortId: output.CohortId !== undefined && output.CohortId !== null ? output.CohortId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Demographic: output.Demographic !== undefined && output.Demographic !== null\n ? deserializeAws_restJson1EndpointDemographic(output.Demographic, context)\n : undefined,\n EffectiveDate: output.EffectiveDate !== undefined && output.EffectiveDate !== null ? output.EffectiveDate : undefined,\n EndpointStatus: output.EndpointStatus !== undefined && output.EndpointStatus !== null ? output.EndpointStatus : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n Location: output.Location !== undefined && output.Location !== null\n ? deserializeAws_restJson1EndpointLocation(output.Location, context)\n : undefined,\n Metrics: output.Metrics !== undefined && output.Metrics !== null\n ? deserializeAws_restJson1MapOf__double(output.Metrics, context)\n : undefined,\n OptOut: output.OptOut !== undefined && output.OptOut !== null ? output.OptOut : undefined,\n RequestId: output.RequestId !== undefined && output.RequestId !== null ? output.RequestId : undefined,\n User: output.User !== undefined && output.User !== null\n ? deserializeAws_restJson1EndpointUser(output.User, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1EndpointsResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfEndpointResponse(output.Item, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1EndpointUser = function (output, context) {\n return {\n UserAttributes: output.UserAttributes !== undefined && output.UserAttributes !== null\n ? deserializeAws_restJson1MapOfListOf__string(output.UserAttributes, context)\n : undefined,\n UserId: output.UserId !== undefined && output.UserId !== null ? output.UserId : undefined,\n };\n};\nvar deserializeAws_restJson1EventCondition = function (output, context) {\n return {\n Dimensions: output.Dimensions !== undefined && output.Dimensions !== null\n ? deserializeAws_restJson1EventDimensions(output.Dimensions, context)\n : undefined,\n MessageActivity: output.MessageActivity !== undefined && output.MessageActivity !== null ? output.MessageActivity : undefined,\n };\n};\nvar deserializeAws_restJson1EventDimensions = function (output, context) {\n return {\n Attributes: output.Attributes !== undefined && output.Attributes !== null\n ? deserializeAws_restJson1MapOfAttributeDimension(output.Attributes, context)\n : undefined,\n EventType: output.EventType !== undefined && output.EventType !== null\n ? deserializeAws_restJson1SetDimension(output.EventType, context)\n : undefined,\n Metrics: output.Metrics !== undefined && output.Metrics !== null\n ? deserializeAws_restJson1MapOfMetricDimension(output.Metrics, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1EventFilter = function (output, context) {\n return {\n Dimensions: output.Dimensions !== undefined && output.Dimensions !== null\n ? deserializeAws_restJson1EventDimensions(output.Dimensions, context)\n : undefined,\n FilterType: output.FilterType !== undefined && output.FilterType !== null ? output.FilterType : undefined,\n };\n};\nvar deserializeAws_restJson1EventItemResponse = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n StatusCode: output.StatusCode !== undefined && output.StatusCode !== null ? output.StatusCode : undefined,\n };\n};\nvar deserializeAws_restJson1EventsResponse = function (output, context) {\n return {\n Results: output.Results !== undefined && output.Results !== null\n ? deserializeAws_restJson1MapOfItemResponse(output.Results, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1EventStartCondition = function (output, context) {\n return {\n EventFilter: output.EventFilter !== undefined && output.EventFilter !== null\n ? deserializeAws_restJson1EventFilter(output.EventFilter, context)\n : undefined,\n SegmentId: output.SegmentId !== undefined && output.SegmentId !== null ? output.SegmentId : undefined,\n };\n};\nvar deserializeAws_restJson1EventStream = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n DestinationStreamArn: output.DestinationStreamArn !== undefined && output.DestinationStreamArn !== null\n ? output.DestinationStreamArn\n : undefined,\n ExternalId: output.ExternalId !== undefined && output.ExternalId !== null ? output.ExternalId : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n LastUpdatedBy: output.LastUpdatedBy !== undefined && output.LastUpdatedBy !== null ? output.LastUpdatedBy : undefined,\n RoleArn: output.RoleArn !== undefined && output.RoleArn !== null ? output.RoleArn : undefined,\n };\n};\nvar deserializeAws_restJson1ExportJobResource = function (output, context) {\n return {\n RoleArn: output.RoleArn !== undefined && output.RoleArn !== null ? output.RoleArn : undefined,\n S3UrlPrefix: output.S3UrlPrefix !== undefined && output.S3UrlPrefix !== null ? output.S3UrlPrefix : undefined,\n SegmentId: output.SegmentId !== undefined && output.SegmentId !== null ? output.SegmentId : undefined,\n SegmentVersion: output.SegmentVersion !== undefined && output.SegmentVersion !== null ? output.SegmentVersion : undefined,\n };\n};\nvar deserializeAws_restJson1ExportJobResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CompletedPieces: output.CompletedPieces !== undefined && output.CompletedPieces !== null ? output.CompletedPieces : undefined,\n CompletionDate: output.CompletionDate !== undefined && output.CompletionDate !== null ? output.CompletionDate : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Definition: output.Definition !== undefined && output.Definition !== null\n ? deserializeAws_restJson1ExportJobResource(output.Definition, context)\n : undefined,\n FailedPieces: output.FailedPieces !== undefined && output.FailedPieces !== null ? output.FailedPieces : undefined,\n Failures: output.Failures !== undefined && output.Failures !== null\n ? deserializeAws_restJson1ListOf__string(output.Failures, context)\n : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n TotalFailures: output.TotalFailures !== undefined && output.TotalFailures !== null ? output.TotalFailures : undefined,\n TotalPieces: output.TotalPieces !== undefined && output.TotalPieces !== null ? output.TotalPieces : undefined,\n TotalProcessed: output.TotalProcessed !== undefined && output.TotalProcessed !== null ? output.TotalProcessed : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_restJson1ExportJobsResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfExportJobResponse(output.Item, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_restJson1GCMChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Credential: output.Credential !== undefined && output.Credential !== null ? output.Credential : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1GPSCoordinates = function (output, context) {\n return {\n Latitude: output.Latitude !== undefined && output.Latitude !== null ? output.Latitude : undefined,\n Longitude: output.Longitude !== undefined && output.Longitude !== null ? output.Longitude : undefined,\n };\n};\nvar deserializeAws_restJson1GPSPointDimension = function (output, context) {\n return {\n Coordinates: output.Coordinates !== undefined && output.Coordinates !== null\n ? deserializeAws_restJson1GPSCoordinates(output.Coordinates, context)\n : undefined,\n RangeInKilometers: output.RangeInKilometers !== undefined && output.RangeInKilometers !== null\n ? output.RangeInKilometers\n : undefined,\n };\n};\nvar deserializeAws_restJson1HoldoutActivity = function (output, context) {\n return {\n NextActivity: output.NextActivity !== undefined && output.NextActivity !== null ? output.NextActivity : undefined,\n Percentage: output.Percentage !== undefined && output.Percentage !== null ? output.Percentage : undefined,\n };\n};\nvar deserializeAws_restJson1ImportJobResource = function (output, context) {\n return {\n DefineSegment: output.DefineSegment !== undefined && output.DefineSegment !== null ? output.DefineSegment : undefined,\n ExternalId: output.ExternalId !== undefined && output.ExternalId !== null ? output.ExternalId : undefined,\n Format: output.Format !== undefined && output.Format !== null ? output.Format : undefined,\n RegisterEndpoints: output.RegisterEndpoints !== undefined && output.RegisterEndpoints !== null\n ? output.RegisterEndpoints\n : undefined,\n RoleArn: output.RoleArn !== undefined && output.RoleArn !== null ? output.RoleArn : undefined,\n S3Url: output.S3Url !== undefined && output.S3Url !== null ? output.S3Url : undefined,\n SegmentId: output.SegmentId !== undefined && output.SegmentId !== null ? output.SegmentId : undefined,\n SegmentName: output.SegmentName !== undefined && output.SegmentName !== null ? output.SegmentName : undefined,\n };\n};\nvar deserializeAws_restJson1ImportJobResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CompletedPieces: output.CompletedPieces !== undefined && output.CompletedPieces !== null ? output.CompletedPieces : undefined,\n CompletionDate: output.CompletionDate !== undefined && output.CompletionDate !== null ? output.CompletionDate : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Definition: output.Definition !== undefined && output.Definition !== null\n ? deserializeAws_restJson1ImportJobResource(output.Definition, context)\n : undefined,\n FailedPieces: output.FailedPieces !== undefined && output.FailedPieces !== null ? output.FailedPieces : undefined,\n Failures: output.Failures !== undefined && output.Failures !== null\n ? deserializeAws_restJson1ListOf__string(output.Failures, context)\n : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n TotalFailures: output.TotalFailures !== undefined && output.TotalFailures !== null ? output.TotalFailures : undefined,\n TotalPieces: output.TotalPieces !== undefined && output.TotalPieces !== null ? output.TotalPieces : undefined,\n TotalProcessed: output.TotalProcessed !== undefined && output.TotalProcessed !== null ? output.TotalProcessed : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_restJson1ImportJobsResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfImportJobResponse(output.Item, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_restJson1ItemResponse = function (output, context) {\n return {\n EndpointItemResponse: output.EndpointItemResponse !== undefined && output.EndpointItemResponse !== null\n ? deserializeAws_restJson1EndpointItemResponse(output.EndpointItemResponse, context)\n : undefined,\n EventsItemResponse: output.EventsItemResponse !== undefined && output.EventsItemResponse !== null\n ? deserializeAws_restJson1MapOfEventItemResponse(output.EventsItemResponse, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1JourneyCustomMessage = function (output, context) {\n return {\n Data: output.Data !== undefined && output.Data !== null ? output.Data : undefined,\n };\n};\nvar deserializeAws_restJson1JourneyDateRangeKpiResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(output.EndTime) : undefined,\n JourneyId: output.JourneyId !== undefined && output.JourneyId !== null ? output.JourneyId : undefined,\n KpiName: output.KpiName !== undefined && output.KpiName !== null ? output.KpiName : undefined,\n KpiResult: output.KpiResult !== undefined && output.KpiResult !== null\n ? deserializeAws_restJson1BaseKpiResult(output.KpiResult, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StartTime: output.StartTime !== undefined && output.StartTime !== null ? new Date(output.StartTime) : undefined,\n };\n};\nvar deserializeAws_restJson1JourneyEmailMessage = function (output, context) {\n return {\n FromAddress: output.FromAddress !== undefined && output.FromAddress !== null ? output.FromAddress : undefined,\n };\n};\nvar deserializeAws_restJson1JourneyExecutionActivityMetricsResponse = function (output, context) {\n return {\n ActivityType: output.ActivityType !== undefined && output.ActivityType !== null ? output.ActivityType : undefined,\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n JourneyActivityId: output.JourneyActivityId !== undefined && output.JourneyActivityId !== null\n ? output.JourneyActivityId\n : undefined,\n JourneyId: output.JourneyId !== undefined && output.JourneyId !== null ? output.JourneyId : undefined,\n LastEvaluatedTime: output.LastEvaluatedTime !== undefined && output.LastEvaluatedTime !== null\n ? output.LastEvaluatedTime\n : undefined,\n Metrics: output.Metrics !== undefined && output.Metrics !== null\n ? deserializeAws_restJson1MapOf__string(output.Metrics, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1JourneyExecutionMetricsResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n JourneyId: output.JourneyId !== undefined && output.JourneyId !== null ? output.JourneyId : undefined,\n LastEvaluatedTime: output.LastEvaluatedTime !== undefined && output.LastEvaluatedTime !== null\n ? output.LastEvaluatedTime\n : undefined,\n Metrics: output.Metrics !== undefined && output.Metrics !== null\n ? deserializeAws_restJson1MapOf__string(output.Metrics, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1JourneyLimits = function (output, context) {\n return {\n DailyCap: output.DailyCap !== undefined && output.DailyCap !== null ? output.DailyCap : undefined,\n EndpointReentryCap: output.EndpointReentryCap !== undefined && output.EndpointReentryCap !== null\n ? output.EndpointReentryCap\n : undefined,\n MessagesPerSecond: output.MessagesPerSecond !== undefined && output.MessagesPerSecond !== null\n ? output.MessagesPerSecond\n : undefined,\n };\n};\nvar deserializeAws_restJson1JourneyPushMessage = function (output, context) {\n return {\n TimeToLive: output.TimeToLive !== undefined && output.TimeToLive !== null ? output.TimeToLive : undefined,\n };\n};\nvar deserializeAws_restJson1JourneyResponse = function (output, context) {\n return {\n Activities: output.Activities !== undefined && output.Activities !== null\n ? deserializeAws_restJson1MapOfActivity(output.Activities, context)\n : undefined,\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Limits: output.Limits !== undefined && output.Limits !== null\n ? deserializeAws_restJson1JourneyLimits(output.Limits, context)\n : undefined,\n LocalTime: output.LocalTime !== undefined && output.LocalTime !== null ? output.LocalTime : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n QuietTime: output.QuietTime !== undefined && output.QuietTime !== null\n ? deserializeAws_restJson1QuietTime(output.QuietTime, context)\n : undefined,\n RefreshFrequency: output.RefreshFrequency !== undefined && output.RefreshFrequency !== null ? output.RefreshFrequency : undefined,\n Schedule: output.Schedule !== undefined && output.Schedule !== null\n ? deserializeAws_restJson1JourneySchedule(output.Schedule, context)\n : undefined,\n StartActivity: output.StartActivity !== undefined && output.StartActivity !== null ? output.StartActivity : undefined,\n StartCondition: output.StartCondition !== undefined && output.StartCondition !== null\n ? deserializeAws_restJson1StartCondition(output.StartCondition, context)\n : undefined,\n State: output.State !== undefined && output.State !== null ? output.State : undefined,\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1JourneySchedule = function (output, context) {\n return {\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(output.EndTime) : undefined,\n StartTime: output.StartTime !== undefined && output.StartTime !== null ? new Date(output.StartTime) : undefined,\n Timezone: output.Timezone !== undefined && output.Timezone !== null ? output.Timezone : undefined,\n };\n};\nvar deserializeAws_restJson1JourneySMSMessage = function (output, context) {\n return {\n MessageType: output.MessageType !== undefined && output.MessageType !== null ? output.MessageType : undefined,\n SenderId: output.SenderId !== undefined && output.SenderId !== null ? output.SenderId : undefined,\n };\n};\nvar deserializeAws_restJson1JourneysResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfJourneyResponse(output.Item, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_restJson1ListOf__EndpointTypesElement = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restJson1ListOf__string = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restJson1ListOfActivityResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ActivityResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfApplicationResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ApplicationResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfCampaignResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1CampaignResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfEndpointResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1EndpointResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfExportJobResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ExportJobResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfImportJobResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ImportJobResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfJourneyResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1JourneyResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfMultiConditionalBranch = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1MultiConditionalBranch(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfRandomSplitEntry = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1RandomSplitEntry(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfRecommenderConfigurationResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1RecommenderConfigurationResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfResultRow = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ResultRow(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfResultRowValue = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1ResultRowValue(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfSegmentDimensions = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1SegmentDimensions(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfSegmentGroup = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1SegmentGroup(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfSegmentReference = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1SegmentReference(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfSegmentResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1SegmentResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfSimpleCondition = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1SimpleCondition(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfTemplateResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1TemplateResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfTemplateVersionResponse = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1TemplateVersionResponse(entry, context);\n });\n};\nvar deserializeAws_restJson1ListOfTreatmentResource = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1TreatmentResource(entry, context);\n });\n};\nvar deserializeAws_restJson1ListRecommenderConfigurationsResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfRecommenderConfigurationResponse(output.Item, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_restJson1MapOf__double = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOf__integer = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOf__string = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = value, _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfActivity = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1Activity(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfAttributeDimension = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1AttributeDimension(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfChannelResponse = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1ChannelResponse(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfEndpointMessageResult = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1EndpointMessageResult(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfEventItemResponse = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1EventItemResponse(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfItemResponse = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1ItemResponse(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfListOf__string = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1ListOf__string(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfMapOfEndpointMessageResult = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1MapOfEndpointMessageResult(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfMessageResult = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1MessageResult(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1MapOfMetricDimension = function (output, context) {\n return Object.entries(output).reduce(function (acc, _a) {\n var _b;\n var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _c[0], value = _c[1];\n if (value === null) {\n return acc;\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_b = {}, _b[key] = deserializeAws_restJson1MetricDimension(value, context), _b));\n }, {});\n};\nvar deserializeAws_restJson1Message = function (output, context) {\n return {\n Action: output.Action !== undefined && output.Action !== null ? output.Action : undefined,\n Body: output.Body !== undefined && output.Body !== null ? output.Body : undefined,\n ImageIconUrl: output.ImageIconUrl !== undefined && output.ImageIconUrl !== null ? output.ImageIconUrl : undefined,\n ImageSmallIconUrl: output.ImageSmallIconUrl !== undefined && output.ImageSmallIconUrl !== null\n ? output.ImageSmallIconUrl\n : undefined,\n ImageUrl: output.ImageUrl !== undefined && output.ImageUrl !== null ? output.ImageUrl : undefined,\n JsonBody: output.JsonBody !== undefined && output.JsonBody !== null ? output.JsonBody : undefined,\n MediaUrl: output.MediaUrl !== undefined && output.MediaUrl !== null ? output.MediaUrl : undefined,\n RawContent: output.RawContent !== undefined && output.RawContent !== null ? output.RawContent : undefined,\n SilentPush: output.SilentPush !== undefined && output.SilentPush !== null ? output.SilentPush : undefined,\n TimeToLive: output.TimeToLive !== undefined && output.TimeToLive !== null ? output.TimeToLive : undefined,\n Title: output.Title !== undefined && output.Title !== null ? output.Title : undefined,\n Url: output.Url !== undefined && output.Url !== null ? output.Url : undefined,\n };\n};\nvar deserializeAws_restJson1MessageBody = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n RequestID: output.RequestID !== undefined && output.RequestID !== null ? output.RequestID : undefined,\n };\n};\nvar deserializeAws_restJson1MessageConfiguration = function (output, context) {\n return {\n ADMMessage: output.ADMMessage !== undefined && output.ADMMessage !== null\n ? deserializeAws_restJson1Message(output.ADMMessage, context)\n : undefined,\n APNSMessage: output.APNSMessage !== undefined && output.APNSMessage !== null\n ? deserializeAws_restJson1Message(output.APNSMessage, context)\n : undefined,\n BaiduMessage: output.BaiduMessage !== undefined && output.BaiduMessage !== null\n ? deserializeAws_restJson1Message(output.BaiduMessage, context)\n : undefined,\n CustomMessage: output.CustomMessage !== undefined && output.CustomMessage !== null\n ? deserializeAws_restJson1CampaignCustomMessage(output.CustomMessage, context)\n : undefined,\n DefaultMessage: output.DefaultMessage !== undefined && output.DefaultMessage !== null\n ? deserializeAws_restJson1Message(output.DefaultMessage, context)\n : undefined,\n EmailMessage: output.EmailMessage !== undefined && output.EmailMessage !== null\n ? deserializeAws_restJson1CampaignEmailMessage(output.EmailMessage, context)\n : undefined,\n GCMMessage: output.GCMMessage !== undefined && output.GCMMessage !== null\n ? deserializeAws_restJson1Message(output.GCMMessage, context)\n : undefined,\n SMSMessage: output.SMSMessage !== undefined && output.SMSMessage !== null\n ? deserializeAws_restJson1CampaignSmsMessage(output.SMSMessage, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1MessageResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n EndpointResult: output.EndpointResult !== undefined && output.EndpointResult !== null\n ? deserializeAws_restJson1MapOfEndpointMessageResult(output.EndpointResult, context)\n : undefined,\n RequestId: output.RequestId !== undefined && output.RequestId !== null ? output.RequestId : undefined,\n Result: output.Result !== undefined && output.Result !== null\n ? deserializeAws_restJson1MapOfMessageResult(output.Result, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1MessageResult = function (output, context) {\n return {\n DeliveryStatus: output.DeliveryStatus !== undefined && output.DeliveryStatus !== null ? output.DeliveryStatus : undefined,\n MessageId: output.MessageId !== undefined && output.MessageId !== null ? output.MessageId : undefined,\n StatusCode: output.StatusCode !== undefined && output.StatusCode !== null ? output.StatusCode : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n UpdatedToken: output.UpdatedToken !== undefined && output.UpdatedToken !== null ? output.UpdatedToken : undefined,\n };\n};\nvar deserializeAws_restJson1MetricDimension = function (output, context) {\n return {\n ComparisonOperator: output.ComparisonOperator !== undefined && output.ComparisonOperator !== null\n ? output.ComparisonOperator\n : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_restJson1MultiConditionalBranch = function (output, context) {\n return {\n Condition: output.Condition !== undefined && output.Condition !== null\n ? deserializeAws_restJson1SimpleCondition(output.Condition, context)\n : undefined,\n NextActivity: output.NextActivity !== undefined && output.NextActivity !== null ? output.NextActivity : undefined,\n };\n};\nvar deserializeAws_restJson1MultiConditionalSplitActivity = function (output, context) {\n return {\n Branches: output.Branches !== undefined && output.Branches !== null\n ? deserializeAws_restJson1ListOfMultiConditionalBranch(output.Branches, context)\n : undefined,\n DefaultActivity: output.DefaultActivity !== undefined && output.DefaultActivity !== null ? output.DefaultActivity : undefined,\n EvaluationWaitTime: output.EvaluationWaitTime !== undefined && output.EvaluationWaitTime !== null\n ? deserializeAws_restJson1WaitTime(output.EvaluationWaitTime, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1NumberValidateResponse = function (output, context) {\n return {\n Carrier: output.Carrier !== undefined && output.Carrier !== null ? output.Carrier : undefined,\n City: output.City !== undefined && output.City !== null ? output.City : undefined,\n CleansedPhoneNumberE164: output.CleansedPhoneNumberE164 !== undefined && output.CleansedPhoneNumberE164 !== null\n ? output.CleansedPhoneNumberE164\n : undefined,\n CleansedPhoneNumberNational: output.CleansedPhoneNumberNational !== undefined && output.CleansedPhoneNumberNational !== null\n ? output.CleansedPhoneNumberNational\n : undefined,\n Country: output.Country !== undefined && output.Country !== null ? output.Country : undefined,\n CountryCodeIso2: output.CountryCodeIso2 !== undefined && output.CountryCodeIso2 !== null ? output.CountryCodeIso2 : undefined,\n CountryCodeNumeric: output.CountryCodeNumeric !== undefined && output.CountryCodeNumeric !== null\n ? output.CountryCodeNumeric\n : undefined,\n County: output.County !== undefined && output.County !== null ? output.County : undefined,\n OriginalCountryCodeIso2: output.OriginalCountryCodeIso2 !== undefined && output.OriginalCountryCodeIso2 !== null\n ? output.OriginalCountryCodeIso2\n : undefined,\n OriginalPhoneNumber: output.OriginalPhoneNumber !== undefined && output.OriginalPhoneNumber !== null\n ? output.OriginalPhoneNumber\n : undefined,\n PhoneType: output.PhoneType !== undefined && output.PhoneType !== null ? output.PhoneType : undefined,\n PhoneTypeCode: output.PhoneTypeCode !== undefined && output.PhoneTypeCode !== null ? output.PhoneTypeCode : undefined,\n Timezone: output.Timezone !== undefined && output.Timezone !== null ? output.Timezone : undefined,\n ZipCode: output.ZipCode !== undefined && output.ZipCode !== null ? output.ZipCode : undefined,\n };\n};\nvar deserializeAws_restJson1PushMessageActivity = function (output, context) {\n return {\n MessageConfig: output.MessageConfig !== undefined && output.MessageConfig !== null\n ? deserializeAws_restJson1JourneyPushMessage(output.MessageConfig, context)\n : undefined,\n NextActivity: output.NextActivity !== undefined && output.NextActivity !== null ? output.NextActivity : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateVersion: output.TemplateVersion !== undefined && output.TemplateVersion !== null ? output.TemplateVersion : undefined,\n };\n};\nvar deserializeAws_restJson1PushNotificationTemplateResponse = function (output, context) {\n return {\n ADM: output.ADM !== undefined && output.ADM !== null\n ? deserializeAws_restJson1AndroidPushNotificationTemplate(output.ADM, context)\n : undefined,\n APNS: output.APNS !== undefined && output.APNS !== null\n ? deserializeAws_restJson1APNSPushNotificationTemplate(output.APNS, context)\n : undefined,\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n Baidu: output.Baidu !== undefined && output.Baidu !== null\n ? deserializeAws_restJson1AndroidPushNotificationTemplate(output.Baidu, context)\n : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Default: output.Default !== undefined && output.Default !== null\n ? deserializeAws_restJson1DefaultPushNotificationTemplate(output.Default, context)\n : undefined,\n DefaultSubstitutions: output.DefaultSubstitutions !== undefined && output.DefaultSubstitutions !== null\n ? output.DefaultSubstitutions\n : undefined,\n GCM: output.GCM !== undefined && output.GCM !== null\n ? deserializeAws_restJson1AndroidPushNotificationTemplate(output.GCM, context)\n : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n RecommenderId: output.RecommenderId !== undefined && output.RecommenderId !== null ? output.RecommenderId : undefined,\n TemplateDescription: output.TemplateDescription !== undefined && output.TemplateDescription !== null\n ? output.TemplateDescription\n : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateType: output.TemplateType !== undefined && output.TemplateType !== null ? output.TemplateType : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1QuietTime = function (output, context) {\n return {\n End: output.End !== undefined && output.End !== null ? output.End : undefined,\n Start: output.Start !== undefined && output.Start !== null ? output.Start : undefined,\n };\n};\nvar deserializeAws_restJson1RandomSplitActivity = function (output, context) {\n return {\n Branches: output.Branches !== undefined && output.Branches !== null\n ? deserializeAws_restJson1ListOfRandomSplitEntry(output.Branches, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1RandomSplitEntry = function (output, context) {\n return {\n NextActivity: output.NextActivity !== undefined && output.NextActivity !== null ? output.NextActivity : undefined,\n Percentage: output.Percentage !== undefined && output.Percentage !== null ? output.Percentage : undefined,\n };\n};\nvar deserializeAws_restJson1RecencyDimension = function (output, context) {\n return {\n Duration: output.Duration !== undefined && output.Duration !== null ? output.Duration : undefined,\n RecencyType: output.RecencyType !== undefined && output.RecencyType !== null ? output.RecencyType : undefined,\n };\n};\nvar deserializeAws_restJson1RecommenderConfigurationResponse = function (output, context) {\n return {\n Attributes: output.Attributes !== undefined && output.Attributes !== null\n ? deserializeAws_restJson1MapOf__string(output.Attributes, context)\n : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Description: output.Description !== undefined && output.Description !== null ? output.Description : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n RecommendationProviderIdType: output.RecommendationProviderIdType !== undefined && output.RecommendationProviderIdType !== null\n ? output.RecommendationProviderIdType\n : undefined,\n RecommendationProviderRoleArn: output.RecommendationProviderRoleArn !== undefined && output.RecommendationProviderRoleArn !== null\n ? output.RecommendationProviderRoleArn\n : undefined,\n RecommendationProviderUri: output.RecommendationProviderUri !== undefined && output.RecommendationProviderUri !== null\n ? output.RecommendationProviderUri\n : undefined,\n RecommendationTransformerUri: output.RecommendationTransformerUri !== undefined && output.RecommendationTransformerUri !== null\n ? output.RecommendationTransformerUri\n : undefined,\n RecommendationsDisplayName: output.RecommendationsDisplayName !== undefined && output.RecommendationsDisplayName !== null\n ? output.RecommendationsDisplayName\n : undefined,\n RecommendationsPerMessage: output.RecommendationsPerMessage !== undefined && output.RecommendationsPerMessage !== null\n ? output.RecommendationsPerMessage\n : undefined,\n };\n};\nvar deserializeAws_restJson1ResultRow = function (output, context) {\n return {\n GroupedBys: output.GroupedBys !== undefined && output.GroupedBys !== null\n ? deserializeAws_restJson1ListOfResultRowValue(output.GroupedBys, context)\n : undefined,\n Values: output.Values !== undefined && output.Values !== null\n ? deserializeAws_restJson1ListOfResultRowValue(output.Values, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1ResultRowValue = function (output, context) {\n return {\n Key: output.Key !== undefined && output.Key !== null ? output.Key : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_restJson1Schedule = function (output, context) {\n return {\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? output.EndTime : undefined,\n EventFilter: output.EventFilter !== undefined && output.EventFilter !== null\n ? deserializeAws_restJson1CampaignEventFilter(output.EventFilter, context)\n : undefined,\n Frequency: output.Frequency !== undefined && output.Frequency !== null ? output.Frequency : undefined,\n IsLocalTime: output.IsLocalTime !== undefined && output.IsLocalTime !== null ? output.IsLocalTime : undefined,\n QuietTime: output.QuietTime !== undefined && output.QuietTime !== null\n ? deserializeAws_restJson1QuietTime(output.QuietTime, context)\n : undefined,\n StartTime: output.StartTime !== undefined && output.StartTime !== null ? output.StartTime : undefined,\n Timezone: output.Timezone !== undefined && output.Timezone !== null ? output.Timezone : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentBehaviors = function (output, context) {\n return {\n Recency: output.Recency !== undefined && output.Recency !== null\n ? deserializeAws_restJson1RecencyDimension(output.Recency, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentCondition = function (output, context) {\n return {\n SegmentId: output.SegmentId !== undefined && output.SegmentId !== null ? output.SegmentId : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentDemographics = function (output, context) {\n return {\n AppVersion: output.AppVersion !== undefined && output.AppVersion !== null\n ? deserializeAws_restJson1SetDimension(output.AppVersion, context)\n : undefined,\n Channel: output.Channel !== undefined && output.Channel !== null\n ? deserializeAws_restJson1SetDimension(output.Channel, context)\n : undefined,\n DeviceType: output.DeviceType !== undefined && output.DeviceType !== null\n ? deserializeAws_restJson1SetDimension(output.DeviceType, context)\n : undefined,\n Make: output.Make !== undefined && output.Make !== null\n ? deserializeAws_restJson1SetDimension(output.Make, context)\n : undefined,\n Model: output.Model !== undefined && output.Model !== null\n ? deserializeAws_restJson1SetDimension(output.Model, context)\n : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null\n ? deserializeAws_restJson1SetDimension(output.Platform, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentDimensions = function (output, context) {\n return {\n Attributes: output.Attributes !== undefined && output.Attributes !== null\n ? deserializeAws_restJson1MapOfAttributeDimension(output.Attributes, context)\n : undefined,\n Behavior: output.Behavior !== undefined && output.Behavior !== null\n ? deserializeAws_restJson1SegmentBehaviors(output.Behavior, context)\n : undefined,\n Demographic: output.Demographic !== undefined && output.Demographic !== null\n ? deserializeAws_restJson1SegmentDemographics(output.Demographic, context)\n : undefined,\n Location: output.Location !== undefined && output.Location !== null\n ? deserializeAws_restJson1SegmentLocation(output.Location, context)\n : undefined,\n Metrics: output.Metrics !== undefined && output.Metrics !== null\n ? deserializeAws_restJson1MapOfMetricDimension(output.Metrics, context)\n : undefined,\n UserAttributes: output.UserAttributes !== undefined && output.UserAttributes !== null\n ? deserializeAws_restJson1MapOfAttributeDimension(output.UserAttributes, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentGroup = function (output, context) {\n return {\n Dimensions: output.Dimensions !== undefined && output.Dimensions !== null\n ? deserializeAws_restJson1ListOfSegmentDimensions(output.Dimensions, context)\n : undefined,\n SourceSegments: output.SourceSegments !== undefined && output.SourceSegments !== null\n ? deserializeAws_restJson1ListOfSegmentReference(output.SourceSegments, context)\n : undefined,\n SourceType: output.SourceType !== undefined && output.SourceType !== null ? output.SourceType : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentGroupList = function (output, context) {\n return {\n Groups: output.Groups !== undefined && output.Groups !== null\n ? deserializeAws_restJson1ListOfSegmentGroup(output.Groups, context)\n : undefined,\n Include: output.Include !== undefined && output.Include !== null ? output.Include : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentImportResource = function (output, context) {\n return {\n ChannelCounts: output.ChannelCounts !== undefined && output.ChannelCounts !== null\n ? deserializeAws_restJson1MapOf__integer(output.ChannelCounts, context)\n : undefined,\n ExternalId: output.ExternalId !== undefined && output.ExternalId !== null ? output.ExternalId : undefined,\n Format: output.Format !== undefined && output.Format !== null ? output.Format : undefined,\n RoleArn: output.RoleArn !== undefined && output.RoleArn !== null ? output.RoleArn : undefined,\n S3Url: output.S3Url !== undefined && output.S3Url !== null ? output.S3Url : undefined,\n Size: output.Size !== undefined && output.Size !== null ? output.Size : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentLocation = function (output, context) {\n return {\n Country: output.Country !== undefined && output.Country !== null\n ? deserializeAws_restJson1SetDimension(output.Country, context)\n : undefined,\n GPSPoint: output.GPSPoint !== undefined && output.GPSPoint !== null\n ? deserializeAws_restJson1GPSPointDimension(output.GPSPoint, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentReference = function (output, context) {\n return {\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Dimensions: output.Dimensions !== undefined && output.Dimensions !== null\n ? deserializeAws_restJson1SegmentDimensions(output.Dimensions, context)\n : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n ImportDefinition: output.ImportDefinition !== undefined && output.ImportDefinition !== null\n ? deserializeAws_restJson1SegmentImportResource(output.ImportDefinition, context)\n : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n SegmentGroups: output.SegmentGroups !== undefined && output.SegmentGroups !== null\n ? deserializeAws_restJson1SegmentGroupList(output.SegmentGroups, context)\n : undefined,\n SegmentType: output.SegmentType !== undefined && output.SegmentType !== null ? output.SegmentType : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1SegmentsResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfSegmentResponse(output.Item, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_restJson1SendUsersMessageResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n RequestId: output.RequestId !== undefined && output.RequestId !== null ? output.RequestId : undefined,\n Result: output.Result !== undefined && output.Result !== null\n ? deserializeAws_restJson1MapOfMapOfEndpointMessageResult(output.Result, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1SetDimension = function (output, context) {\n return {\n DimensionType: output.DimensionType !== undefined && output.DimensionType !== null ? output.DimensionType : undefined,\n Values: output.Values !== undefined && output.Values !== null\n ? deserializeAws_restJson1ListOf__string(output.Values, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1SimpleCondition = function (output, context) {\n return {\n EventCondition: output.EventCondition !== undefined && output.EventCondition !== null\n ? deserializeAws_restJson1EventCondition(output.EventCondition, context)\n : undefined,\n SegmentCondition: output.SegmentCondition !== undefined && output.SegmentCondition !== null\n ? deserializeAws_restJson1SegmentCondition(output.SegmentCondition, context)\n : undefined,\n SegmentDimensions: output.segmentDimensions !== undefined && output.segmentDimensions !== null\n ? deserializeAws_restJson1SegmentDimensions(output.segmentDimensions, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1SMSChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n PromotionalMessagesPerSecond: output.PromotionalMessagesPerSecond !== undefined && output.PromotionalMessagesPerSecond !== null\n ? output.PromotionalMessagesPerSecond\n : undefined,\n SenderId: output.SenderId !== undefined && output.SenderId !== null ? output.SenderId : undefined,\n ShortCode: output.ShortCode !== undefined && output.ShortCode !== null ? output.ShortCode : undefined,\n TransactionalMessagesPerSecond: output.TransactionalMessagesPerSecond !== undefined && output.TransactionalMessagesPerSecond !== null\n ? output.TransactionalMessagesPerSecond\n : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1SMSMessageActivity = function (output, context) {\n return {\n MessageConfig: output.MessageConfig !== undefined && output.MessageConfig !== null\n ? deserializeAws_restJson1JourneySMSMessage(output.MessageConfig, context)\n : undefined,\n NextActivity: output.NextActivity !== undefined && output.NextActivity !== null ? output.NextActivity : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateVersion: output.TemplateVersion !== undefined && output.TemplateVersion !== null ? output.TemplateVersion : undefined,\n };\n};\nvar deserializeAws_restJson1SMSTemplateResponse = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n Body: output.Body !== undefined && output.Body !== null ? output.Body : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n DefaultSubstitutions: output.DefaultSubstitutions !== undefined && output.DefaultSubstitutions !== null\n ? output.DefaultSubstitutions\n : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n RecommenderId: output.RecommenderId !== undefined && output.RecommenderId !== null ? output.RecommenderId : undefined,\n TemplateDescription: output.TemplateDescription !== undefined && output.TemplateDescription !== null\n ? output.TemplateDescription\n : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateType: output.TemplateType !== undefined && output.TemplateType !== null ? output.TemplateType : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1StartCondition = function (output, context) {\n return {\n Description: output.Description !== undefined && output.Description !== null ? output.Description : undefined,\n EventStartCondition: output.EventStartCondition !== undefined && output.EventStartCondition !== null\n ? deserializeAws_restJson1EventStartCondition(output.EventStartCondition, context)\n : undefined,\n SegmentStartCondition: output.SegmentStartCondition !== undefined && output.SegmentStartCondition !== null\n ? deserializeAws_restJson1SegmentCondition(output.SegmentStartCondition, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1TagsModel = function (output, context) {\n return {\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1Template = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1TemplateConfiguration = function (output, context) {\n return {\n EmailTemplate: output.EmailTemplate !== undefined && output.EmailTemplate !== null\n ? deserializeAws_restJson1Template(output.EmailTemplate, context)\n : undefined,\n PushTemplate: output.PushTemplate !== undefined && output.PushTemplate !== null\n ? deserializeAws_restJson1Template(output.PushTemplate, context)\n : undefined,\n SMSTemplate: output.SMSTemplate !== undefined && output.SMSTemplate !== null\n ? deserializeAws_restJson1Template(output.SMSTemplate, context)\n : undefined,\n VoiceTemplate: output.VoiceTemplate !== undefined && output.VoiceTemplate !== null\n ? deserializeAws_restJson1Template(output.VoiceTemplate, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1TemplateResponse = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n DefaultSubstitutions: output.DefaultSubstitutions !== undefined && output.DefaultSubstitutions !== null\n ? output.DefaultSubstitutions\n : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n TemplateDescription: output.TemplateDescription !== undefined && output.TemplateDescription !== null\n ? output.TemplateDescription\n : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateType: output.TemplateType !== undefined && output.TemplateType !== null ? output.TemplateType : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1TemplatesResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfTemplateResponse(output.Item, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_restJson1TemplateVersionResponse = function (output, context) {\n return {\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n DefaultSubstitutions: output.DefaultSubstitutions !== undefined && output.DefaultSubstitutions !== null\n ? output.DefaultSubstitutions\n : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n TemplateDescription: output.TemplateDescription !== undefined && output.TemplateDescription !== null\n ? output.TemplateDescription\n : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateType: output.TemplateType !== undefined && output.TemplateType !== null ? output.TemplateType : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1TemplateVersionsResponse = function (output, context) {\n return {\n Item: output.Item !== undefined && output.Item !== null\n ? deserializeAws_restJson1ListOfTemplateVersionResponse(output.Item, context)\n : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n RequestID: output.RequestID !== undefined && output.RequestID !== null ? output.RequestID : undefined,\n };\n};\nvar deserializeAws_restJson1TreatmentResource = function (output, context) {\n return {\n CustomDeliveryConfiguration: output.CustomDeliveryConfiguration !== undefined && output.CustomDeliveryConfiguration !== null\n ? deserializeAws_restJson1CustomDeliveryConfiguration(output.CustomDeliveryConfiguration, context)\n : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n MessageConfiguration: output.MessageConfiguration !== undefined && output.MessageConfiguration !== null\n ? deserializeAws_restJson1MessageConfiguration(output.MessageConfiguration, context)\n : undefined,\n Schedule: output.Schedule !== undefined && output.Schedule !== null\n ? deserializeAws_restJson1Schedule(output.Schedule, context)\n : undefined,\n SizePercent: output.SizePercent !== undefined && output.SizePercent !== null ? output.SizePercent : undefined,\n State: output.State !== undefined && output.State !== null\n ? deserializeAws_restJson1CampaignState(output.State, context)\n : undefined,\n TemplateConfiguration: output.TemplateConfiguration !== undefined && output.TemplateConfiguration !== null\n ? deserializeAws_restJson1TemplateConfiguration(output.TemplateConfiguration, context)\n : undefined,\n TreatmentDescription: output.TreatmentDescription !== undefined && output.TreatmentDescription !== null\n ? output.TreatmentDescription\n : undefined,\n TreatmentName: output.TreatmentName !== undefined && output.TreatmentName !== null ? output.TreatmentName : undefined,\n };\n};\nvar deserializeAws_restJson1VoiceChannelResponse = function (output, context) {\n return {\n ApplicationId: output.ApplicationId !== undefined && output.ApplicationId !== null ? output.ApplicationId : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n Enabled: output.Enabled !== undefined && output.Enabled !== null ? output.Enabled : undefined,\n HasCredential: output.HasCredential !== undefined && output.HasCredential !== null ? output.HasCredential : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n IsArchived: output.IsArchived !== undefined && output.IsArchived !== null ? output.IsArchived : undefined,\n LastModifiedBy: output.LastModifiedBy !== undefined && output.LastModifiedBy !== null ? output.LastModifiedBy : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n Platform: output.Platform !== undefined && output.Platform !== null ? output.Platform : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_restJson1VoiceTemplateResponse = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n Body: output.Body !== undefined && output.Body !== null ? output.Body : undefined,\n CreationDate: output.CreationDate !== undefined && output.CreationDate !== null ? output.CreationDate : undefined,\n DefaultSubstitutions: output.DefaultSubstitutions !== undefined && output.DefaultSubstitutions !== null\n ? output.DefaultSubstitutions\n : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n LastModifiedDate: output.LastModifiedDate !== undefined && output.LastModifiedDate !== null ? output.LastModifiedDate : undefined,\n TemplateDescription: output.TemplateDescription !== undefined && output.TemplateDescription !== null\n ? output.TemplateDescription\n : undefined,\n TemplateName: output.TemplateName !== undefined && output.TemplateName !== null ? output.TemplateName : undefined,\n TemplateType: output.TemplateType !== undefined && output.TemplateType !== null ? output.TemplateType : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n VoiceId: output.VoiceId !== undefined && output.VoiceId !== null ? output.VoiceId : undefined,\n tags: output.tags !== undefined && output.tags !== null\n ? deserializeAws_restJson1MapOf__string(output.tags, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1WaitActivity = function (output, context) {\n return {\n NextActivity: output.NextActivity !== undefined && output.NextActivity !== null ? output.NextActivity : undefined,\n WaitTime: output.WaitTime !== undefined && output.WaitTime !== null\n ? deserializeAws_restJson1WaitTime(output.WaitTime, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1WaitTime = function (output, context) {\n return {\n WaitFor: output.WaitFor !== undefined && output.WaitFor !== null ? output.WaitFor : undefined,\n WaitUntil: output.WaitUntil !== undefined && output.WaitUntil !== null ? output.WaitUntil : undefined,\n };\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar isSerializableHeaderValue = function (value) {\n return value !== undefined &&\n value !== null &&\n value !== \"\" &&\n (!Object.getOwnPropertyNames(value).includes(\"length\") || value.length != 0) &&\n (!Object.getOwnPropertyNames(value).includes(\"size\") || value.size != 0);\n};\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_restJson1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/protocols/Aws_restJson1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/runtimeConfig.browser.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/runtimeConfig.browser.js ***! \********************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/dist/es/runtimeConfig.shared.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/dist/es/runtimeConfig.shared.js ***! \*******************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-pinpoint/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2016-12-01\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Pinpoint\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js ***! \*******************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-pinpoint/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/Polly.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/Polly.js ***! \*************************************************************/ /*! exports provided: Polly */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Polly\", function() { return Polly; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _PollyClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./PollyClient */ \"./node_modules/@aws-sdk/client-polly/dist/es/PollyClient.js\");\n/* harmony import */ var _commands_DeleteLexiconCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/DeleteLexiconCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/DeleteLexiconCommand.js\");\n/* harmony import */ var _commands_DescribeVoicesCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DescribeVoicesCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/DescribeVoicesCommand.js\");\n/* harmony import */ var _commands_GetLexiconCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/GetLexiconCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/GetLexiconCommand.js\");\n/* harmony import */ var _commands_GetSpeechSynthesisTaskCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/GetSpeechSynthesisTaskCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/GetSpeechSynthesisTaskCommand.js\");\n/* harmony import */ var _commands_ListLexiconsCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/ListLexiconsCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/ListLexiconsCommand.js\");\n/* harmony import */ var _commands_ListSpeechSynthesisTasksCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/ListSpeechSynthesisTasksCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/ListSpeechSynthesisTasksCommand.js\");\n/* harmony import */ var _commands_PutLexiconCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/PutLexiconCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/PutLexiconCommand.js\");\n/* harmony import */ var _commands_StartSpeechSynthesisTaskCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/StartSpeechSynthesisTaskCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/StartSpeechSynthesisTaskCommand.js\");\n/* harmony import */ var _commands_SynthesizeSpeechCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/SynthesizeSpeechCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/SynthesizeSpeechCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n *

Amazon Polly is a web service that makes it easy to synthesize speech from\n * text.

\n *

The Amazon Polly service provides API operations for synthesizing high-quality speech\n * from plain text and Speech Synthesis Markup Language (SSML), along with managing\n * pronunciations lexicons that enable you to get the best results for your application\n * domain.

\n */\nvar Polly = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(Polly, _super);\n function Polly() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Polly.prototype.deleteLexicon = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteLexiconCommand__WEBPACK_IMPORTED_MODULE_2__[\"DeleteLexiconCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Polly.prototype.describeVoices = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeVoicesCommand__WEBPACK_IMPORTED_MODULE_3__[\"DescribeVoicesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Polly.prototype.getLexicon = function (args, optionsOrCb, cb) {\n var command = new _commands_GetLexiconCommand__WEBPACK_IMPORTED_MODULE_4__[\"GetLexiconCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Polly.prototype.getSpeechSynthesisTask = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSpeechSynthesisTaskCommand__WEBPACK_IMPORTED_MODULE_5__[\"GetSpeechSynthesisTaskCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Polly.prototype.listLexicons = function (args, optionsOrCb, cb) {\n var command = new _commands_ListLexiconsCommand__WEBPACK_IMPORTED_MODULE_6__[\"ListLexiconsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Polly.prototype.listSpeechSynthesisTasks = function (args, optionsOrCb, cb) {\n var command = new _commands_ListSpeechSynthesisTasksCommand__WEBPACK_IMPORTED_MODULE_7__[\"ListSpeechSynthesisTasksCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Polly.prototype.putLexicon = function (args, optionsOrCb, cb) {\n var command = new _commands_PutLexiconCommand__WEBPACK_IMPORTED_MODULE_8__[\"PutLexiconCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Polly.prototype.startSpeechSynthesisTask = function (args, optionsOrCb, cb) {\n var command = new _commands_StartSpeechSynthesisTaskCommand__WEBPACK_IMPORTED_MODULE_9__[\"StartSpeechSynthesisTaskCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Polly.prototype.synthesizeSpeech = function (args, optionsOrCb, cb) {\n var command = new _commands_SynthesizeSpeechCommand__WEBPACK_IMPORTED_MODULE_10__[\"SynthesizeSpeechCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return Polly;\n}(_PollyClient__WEBPACK_IMPORTED_MODULE_1__[\"PollyClient\"]));\n\n//# sourceMappingURL=Polly.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/Polly.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/PollyClient.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/PollyClient.js ***! \*******************************************************************/ /*! exports provided: PollyClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PollyClient\", function() { return PollyClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-polly/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n *

Amazon Polly is a web service that makes it easy to synthesize speech from\n * text.

\n *

The Amazon Polly service provides API operations for synthesizing high-quality speech\n * from plain text and Speech Synthesis Markup Language (SSML), along with managing\n * pronunciations lexicons that enable you to get the best results for your application\n * domain.

\n */\nvar PollyClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PollyClient, _super);\n function PollyClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n PollyClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return PollyClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=PollyClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/PollyClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/commands/DeleteLexiconCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/commands/DeleteLexiconCommand.js ***! \*************************************************************************************/ /*! exports provided: DeleteLexiconCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteLexiconCommand\", function() { return DeleteLexiconCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the specified pronunciation lexicon stored in an AWS Region. A lexicon which\n * has been deleted is not available for speech synthesis, nor is it possible to retrieve it\n * using either the GetLexicon or ListLexicon APIs.

\n *

For more information, see Managing\n * Lexicons.

\n */\nvar DeleteLexiconCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteLexiconCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteLexiconCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteLexiconCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PollyClient\";\n var commandName = \"DeleteLexiconCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteLexiconInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteLexiconOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteLexiconCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DeleteLexiconCommand\"])(input, context);\n };\n DeleteLexiconCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DeleteLexiconCommand\"])(output, context);\n };\n return DeleteLexiconCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteLexiconCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/commands/DeleteLexiconCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/commands/DescribeVoicesCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/commands/DescribeVoicesCommand.js ***! \**************************************************************************************/ /*! exports provided: DescribeVoicesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeVoicesCommand\", function() { return DescribeVoicesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns the list of voices that are available for use when requesting speech synthesis.\n * Each voice speaks a specified language, is either male or female, and is identified by an ID,\n * which is the ASCII version of the voice name.

\n *\n *

When synthesizing speech ( SynthesizeSpeech ), you provide the voice ID\n * for the voice you want from the list of voices returned by\n * DescribeVoices.

\n *\n *

For example, you want your news reader application to read news in a specific language,\n * but giving a user the option to choose the voice. Using the DescribeVoices\n * operation you can provide the user with a list of available voices to select from.

\n *\n *

You can optionally specify a language code to filter the available voices. For\n * example, if you specify en-US, the operation returns a list of all available US\n * English voices.

\n *

This operation requires permissions to perform the polly:DescribeVoices\n * action.

\n */\nvar DescribeVoicesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeVoicesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeVoicesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeVoicesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PollyClient\";\n var commandName = \"DescribeVoicesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeVoicesInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeVoicesOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeVoicesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1DescribeVoicesCommand\"])(input, context);\n };\n DescribeVoicesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1DescribeVoicesCommand\"])(output, context);\n };\n return DescribeVoicesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeVoicesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/commands/DescribeVoicesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/commands/GetLexiconCommand.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/commands/GetLexiconCommand.js ***! \**********************************************************************************/ /*! exports provided: GetLexiconCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLexiconCommand\", function() { return GetLexiconCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns the content of the specified pronunciation lexicon stored in an AWS Region. For\n * more information, see Managing\n * Lexicons.

\n */\nvar GetLexiconCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetLexiconCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetLexiconCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetLexiconCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PollyClient\";\n var commandName = \"GetLexiconCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLexiconInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLexiconOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetLexiconCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetLexiconCommand\"])(input, context);\n };\n GetLexiconCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetLexiconCommand\"])(output, context);\n };\n return GetLexiconCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetLexiconCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/commands/GetLexiconCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/commands/GetSpeechSynthesisTaskCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/commands/GetSpeechSynthesisTaskCommand.js ***! \**********************************************************************************************/ /*! exports provided: GetSpeechSynthesisTaskCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSpeechSynthesisTaskCommand\", function() { return GetSpeechSynthesisTaskCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves a specific SpeechSynthesisTask object based on its TaskID. This object contains\n * information about the given speech synthesis task, including the status of the task, and a\n * link to the S3 bucket containing the output of the task.

\n */\nvar GetSpeechSynthesisTaskCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSpeechSynthesisTaskCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSpeechSynthesisTaskCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSpeechSynthesisTaskCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PollyClient\";\n var commandName = \"GetSpeechSynthesisTaskCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetSpeechSynthesisTaskInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetSpeechSynthesisTaskOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSpeechSynthesisTaskCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1GetSpeechSynthesisTaskCommand\"])(input, context);\n };\n GetSpeechSynthesisTaskCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1GetSpeechSynthesisTaskCommand\"])(output, context);\n };\n return GetSpeechSynthesisTaskCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSpeechSynthesisTaskCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/commands/GetSpeechSynthesisTaskCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/commands/ListLexiconsCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/commands/ListLexiconsCommand.js ***! \************************************************************************************/ /*! exports provided: ListLexiconsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListLexiconsCommand\", function() { return ListLexiconsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns a list of pronunciation lexicons stored in an AWS Region. For more information,\n * see Managing\n * Lexicons.

\n */\nvar ListLexiconsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListLexiconsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListLexiconsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListLexiconsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PollyClient\";\n var commandName = \"ListLexiconsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListLexiconsInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListLexiconsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListLexiconsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1ListLexiconsCommand\"])(input, context);\n };\n ListLexiconsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1ListLexiconsCommand\"])(output, context);\n };\n return ListLexiconsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListLexiconsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/commands/ListLexiconsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/commands/ListSpeechSynthesisTasksCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/commands/ListSpeechSynthesisTasksCommand.js ***! \************************************************************************************************/ /*! exports provided: ListSpeechSynthesisTasksCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListSpeechSynthesisTasksCommand\", function() { return ListSpeechSynthesisTasksCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns a list of SpeechSynthesisTask objects ordered by their creation date. This\n * operation can filter the tasks by their status, for example, allowing users to list only tasks\n * that are completed.

\n */\nvar ListSpeechSynthesisTasksCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListSpeechSynthesisTasksCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListSpeechSynthesisTasksCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListSpeechSynthesisTasksCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PollyClient\";\n var commandName = \"ListSpeechSynthesisTasksCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListSpeechSynthesisTasksInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListSpeechSynthesisTasksOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListSpeechSynthesisTasksCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1ListSpeechSynthesisTasksCommand\"])(input, context);\n };\n ListSpeechSynthesisTasksCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1ListSpeechSynthesisTasksCommand\"])(output, context);\n };\n return ListSpeechSynthesisTasksCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListSpeechSynthesisTasksCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/commands/ListSpeechSynthesisTasksCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/commands/PutLexiconCommand.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/commands/PutLexiconCommand.js ***! \**********************************************************************************/ /*! exports provided: PutLexiconCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutLexiconCommand\", function() { return PutLexiconCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stores a pronunciation lexicon in an AWS Region. If a lexicon with the same name\n * already exists in the region, it is overwritten by the new lexicon. Lexicon operations have\n * eventual consistency, therefore, it might take some time before the lexicon is available to\n * the SynthesizeSpeech operation.

\n *

For more information, see Managing\n * Lexicons.

\n */\nvar PutLexiconCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutLexiconCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutLexiconCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutLexiconCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PollyClient\";\n var commandName = \"PutLexiconCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutLexiconInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutLexiconOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutLexiconCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1PutLexiconCommand\"])(input, context);\n };\n PutLexiconCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1PutLexiconCommand\"])(output, context);\n };\n return PutLexiconCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=PutLexiconCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/commands/PutLexiconCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/commands/StartSpeechSynthesisTaskCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/commands/StartSpeechSynthesisTaskCommand.js ***! \************************************************************************************************/ /*! exports provided: StartSpeechSynthesisTaskCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSpeechSynthesisTaskCommand\", function() { return StartSpeechSynthesisTaskCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Allows the creation of an asynchronous synthesis task, by starting a new\n * SpeechSynthesisTask. This operation requires all the standard information\n * needed for speech synthesis, plus the name of an Amazon S3 bucket for the service to store the\n * output of the synthesis task and two optional parameters (OutputS3KeyPrefix and SnsTopicArn).\n * Once the synthesis task is created, this operation will return a SpeechSynthesisTask object,\n * which will include an identifier of this task as well as the current status.

\n */\nvar StartSpeechSynthesisTaskCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartSpeechSynthesisTaskCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartSpeechSynthesisTaskCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartSpeechSynthesisTaskCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PollyClient\";\n var commandName = \"StartSpeechSynthesisTaskCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartSpeechSynthesisTaskInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartSpeechSynthesisTaskOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartSpeechSynthesisTaskCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1StartSpeechSynthesisTaskCommand\"])(input, context);\n };\n StartSpeechSynthesisTaskCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1StartSpeechSynthesisTaskCommand\"])(output, context);\n };\n return StartSpeechSynthesisTaskCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartSpeechSynthesisTaskCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/commands/StartSpeechSynthesisTaskCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/commands/SynthesizeSpeechCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/commands/SynthesizeSpeechCommand.js ***! \****************************************************************************************/ /*! exports provided: SynthesizeSpeechCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SynthesizeSpeechCommand\", function() { return SynthesizeSpeechCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restJson1 */ \"./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Synthesizes UTF-8 input, plain text or SSML, to a stream of bytes. SSML input must be\n * valid, well-formed SSML. Some alphabets might not be available with all the voices (for\n * example, Cyrillic might not be read at all by English voices) unless phoneme mapping is used.\n * For more information, see How it\n * Works.

\n */\nvar SynthesizeSpeechCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SynthesizeSpeechCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function SynthesizeSpeechCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n SynthesizeSpeechCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"PollyClient\";\n var commandName = \"SynthesizeSpeechCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SynthesizeSpeechInput\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SynthesizeSpeechOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SynthesizeSpeechCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restJson1SynthesizeSpeechCommand\"])(input, context);\n };\n SynthesizeSpeechCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restJson1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restJson1SynthesizeSpeechCommand\"])(output, context);\n };\n return SynthesizeSpeechCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=SynthesizeSpeechCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/commands/SynthesizeSpeechCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/endpoints.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/endpoints.js ***! \*****************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"polly.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"polly.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"polly.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"polly.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"polly.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"ap-east-1\":\n regionInfo = {\n hostname: \"polly.ap-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"polly.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"polly.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"polly.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"polly.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"polly.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"polly.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"cn-northwest-1\":\n regionInfo = {\n hostname: \"polly.cn-northwest-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"polly.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-north-1\":\n regionInfo = {\n hostname: \"polly.eu-north-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"polly.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"polly.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-3\":\n regionInfo = {\n hostname: \"polly.eu-west-3.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"fips-us-east-1\":\n regionInfo = {\n hostname: \"polly-fips.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"fips-us-east-2\":\n regionInfo = {\n hostname: \"polly-fips.us-east-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-2\",\n };\n break;\n case \"fips-us-gov-west-1\":\n regionInfo = {\n hostname: \"polly-fips.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"fips-us-west-1\":\n regionInfo = {\n hostname: \"polly-fips.us-west-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-1\",\n };\n break;\n case \"fips-us-west-2\":\n regionInfo = {\n hostname: \"polly-fips.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n case \"me-south-1\":\n regionInfo = {\n hostname: \"polly.me-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"sa-east-1\":\n regionInfo = {\n hostname: \"polly.sa-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"polly.us-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-2\":\n regionInfo = {\n hostname: \"polly.us-east-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"polly.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n };\n break;\n case \"us-west-1\":\n regionInfo = {\n hostname: \"polly.us-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"polly.us-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"polly\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/index.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/index.js ***! \*************************************************************/ /*! exports provided: PollyClient, Polly, DeleteLexiconCommand, DescribeVoicesCommand, GetLexiconCommand, GetSpeechSynthesisTaskCommand, ListLexiconsCommand, ListSpeechSynthesisTasksCommand, paginateListSpeechSynthesisTasks, PutLexiconCommand, StartSpeechSynthesisTaskCommand, SynthesizeSpeechCommand, DeleteLexiconInput, DeleteLexiconOutput, LexiconNotFoundException, ServiceFailureException, Engine, DescribeVoicesInput, Voice, DescribeVoicesOutput, InvalidNextTokenException, EngineNotSupportedException, GetLexiconInput, Lexicon, LexiconAttributes, GetLexiconOutput, GetSpeechSynthesisTaskInput, OutputFormat, SpeechMarkType, TaskStatus, TextType, SynthesisTask, GetSpeechSynthesisTaskOutput, InvalidTaskIdException, SynthesisTaskNotFoundException, InvalidLexiconException, InvalidS3BucketException, InvalidS3KeyException, InvalidSampleRateException, InvalidSnsTopicArnException, InvalidSsmlException, LanguageNotSupportedException, LexiconDescription, LexiconSizeExceededException, ListLexiconsInput, ListLexiconsOutput, ListSpeechSynthesisTasksInput, ListSpeechSynthesisTasksOutput, MarksNotSupportedForFormatException, MaxLexemeLengthExceededException, MaxLexiconsNumberExceededException, PutLexiconInput, PutLexiconOutput, UnsupportedPlsAlphabetException, UnsupportedPlsLanguageException, SsmlMarksNotSupportedForTextTypeException, StartSpeechSynthesisTaskInput, StartSpeechSynthesisTaskOutput, TextLengthExceededException, SynthesizeSpeechInput, SynthesizeSpeechOutput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _PollyClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PollyClient */ \"./node_modules/@aws-sdk/client-polly/dist/es/PollyClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PollyClient\", function() { return _PollyClient__WEBPACK_IMPORTED_MODULE_0__[\"PollyClient\"]; });\n\n/* harmony import */ var _Polly__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Polly */ \"./node_modules/@aws-sdk/client-polly/dist/es/Polly.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Polly\", function() { return _Polly__WEBPACK_IMPORTED_MODULE_1__[\"Polly\"]; });\n\n/* harmony import */ var _commands_DeleteLexiconCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/DeleteLexiconCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/DeleteLexiconCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLexiconCommand\", function() { return _commands_DeleteLexiconCommand__WEBPACK_IMPORTED_MODULE_2__[\"DeleteLexiconCommand\"]; });\n\n/* harmony import */ var _commands_DescribeVoicesCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DescribeVoicesCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/DescribeVoicesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeVoicesCommand\", function() { return _commands_DescribeVoicesCommand__WEBPACK_IMPORTED_MODULE_3__[\"DescribeVoicesCommand\"]; });\n\n/* harmony import */ var _commands_GetLexiconCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/GetLexiconCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/GetLexiconCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLexiconCommand\", function() { return _commands_GetLexiconCommand__WEBPACK_IMPORTED_MODULE_4__[\"GetLexiconCommand\"]; });\n\n/* harmony import */ var _commands_GetSpeechSynthesisTaskCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/GetSpeechSynthesisTaskCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/GetSpeechSynthesisTaskCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSpeechSynthesisTaskCommand\", function() { return _commands_GetSpeechSynthesisTaskCommand__WEBPACK_IMPORTED_MODULE_5__[\"GetSpeechSynthesisTaskCommand\"]; });\n\n/* harmony import */ var _commands_ListLexiconsCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/ListLexiconsCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/ListLexiconsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListLexiconsCommand\", function() { return _commands_ListLexiconsCommand__WEBPACK_IMPORTED_MODULE_6__[\"ListLexiconsCommand\"]; });\n\n/* harmony import */ var _commands_ListSpeechSynthesisTasksCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/ListSpeechSynthesisTasksCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/ListSpeechSynthesisTasksCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSpeechSynthesisTasksCommand\", function() { return _commands_ListSpeechSynthesisTasksCommand__WEBPACK_IMPORTED_MODULE_7__[\"ListSpeechSynthesisTasksCommand\"]; });\n\n/* harmony import */ var _pagination_ListSpeechSynthesisTasksPaginator__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./pagination/ListSpeechSynthesisTasksPaginator */ \"./node_modules/@aws-sdk/client-polly/dist/es/pagination/ListSpeechSynthesisTasksPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListSpeechSynthesisTasks\", function() { return _pagination_ListSpeechSynthesisTasksPaginator__WEBPACK_IMPORTED_MODULE_8__[\"paginateListSpeechSynthesisTasks\"]; });\n\n/* harmony import */ var _commands_PutLexiconCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/PutLexiconCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/PutLexiconCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLexiconCommand\", function() { return _commands_PutLexiconCommand__WEBPACK_IMPORTED_MODULE_9__[\"PutLexiconCommand\"]; });\n\n/* harmony import */ var _commands_StartSpeechSynthesisTaskCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/StartSpeechSynthesisTaskCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/StartSpeechSynthesisTaskCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSpeechSynthesisTaskCommand\", function() { return _commands_StartSpeechSynthesisTaskCommand__WEBPACK_IMPORTED_MODULE_10__[\"StartSpeechSynthesisTaskCommand\"]; });\n\n/* harmony import */ var _commands_SynthesizeSpeechCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/SynthesizeSpeechCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/SynthesizeSpeechCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SynthesizeSpeechCommand\", function() { return _commands_SynthesizeSpeechCommand__WEBPACK_IMPORTED_MODULE_11__[\"SynthesizeSpeechCommand\"]; });\n\n/* harmony import */ var _pagination_Interfaces__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./pagination/Interfaces */ \"./node_modules/@aws-sdk/client-polly/dist/es/pagination/Interfaces.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLexiconInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"DeleteLexiconInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLexiconOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"DeleteLexiconOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexiconNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"LexiconNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceFailureException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"ServiceFailureException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Engine\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"Engine\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeVoicesInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"DescribeVoicesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Voice\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"Voice\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeVoicesOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"DescribeVoicesOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidNextTokenException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"InvalidNextTokenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EngineNotSupportedException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"EngineNotSupportedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLexiconInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"GetLexiconInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Lexicon\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"Lexicon\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexiconAttributes\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"LexiconAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLexiconOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"GetLexiconOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSpeechSynthesisTaskInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"GetSpeechSynthesisTaskInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputFormat\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"OutputFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SpeechMarkType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"SpeechMarkType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TaskStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"TaskStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"TextType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SynthesisTask\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"SynthesisTask\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSpeechSynthesisTaskOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"GetSpeechSynthesisTaskOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidTaskIdException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"InvalidTaskIdException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SynthesisTaskNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"SynthesisTaskNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidLexiconException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"InvalidLexiconException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3BucketException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"InvalidS3BucketException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3KeyException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"InvalidS3KeyException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidSampleRateException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"InvalidSampleRateException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidSnsTopicArnException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"InvalidSnsTopicArnException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidSsmlException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"InvalidSsmlException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LanguageNotSupportedException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"LanguageNotSupportedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexiconDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"LexiconDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexiconSizeExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"LexiconSizeExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListLexiconsInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"ListLexiconsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListLexiconsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"ListLexiconsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSpeechSynthesisTasksInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"ListSpeechSynthesisTasksInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSpeechSynthesisTasksOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"ListSpeechSynthesisTasksOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MarksNotSupportedForFormatException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"MarksNotSupportedForFormatException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MaxLexemeLengthExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"MaxLexemeLengthExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MaxLexiconsNumberExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"MaxLexiconsNumberExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLexiconInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"PutLexiconInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLexiconOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"PutLexiconOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedPlsAlphabetException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"UnsupportedPlsAlphabetException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedPlsLanguageException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"UnsupportedPlsLanguageException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SsmlMarksNotSupportedForTextTypeException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"SsmlMarksNotSupportedForTextTypeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSpeechSynthesisTaskInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"StartSpeechSynthesisTaskInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSpeechSynthesisTaskOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"StartSpeechSynthesisTaskOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextLengthExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"TextLengthExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SynthesizeSpeechInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"SynthesizeSpeechInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SynthesizeSpeechOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_13__[\"SynthesizeSpeechOutput\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/models/index.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/models/index.js ***! \********************************************************************/ /*! exports provided: DeleteLexiconInput, DeleteLexiconOutput, LexiconNotFoundException, ServiceFailureException, Engine, DescribeVoicesInput, Voice, DescribeVoicesOutput, InvalidNextTokenException, EngineNotSupportedException, GetLexiconInput, Lexicon, LexiconAttributes, GetLexiconOutput, GetSpeechSynthesisTaskInput, OutputFormat, SpeechMarkType, TaskStatus, TextType, SynthesisTask, GetSpeechSynthesisTaskOutput, InvalidTaskIdException, SynthesisTaskNotFoundException, InvalidLexiconException, InvalidS3BucketException, InvalidS3KeyException, InvalidSampleRateException, InvalidSnsTopicArnException, InvalidSsmlException, LanguageNotSupportedException, LexiconDescription, LexiconSizeExceededException, ListLexiconsInput, ListLexiconsOutput, ListSpeechSynthesisTasksInput, ListSpeechSynthesisTasksOutput, MarksNotSupportedForFormatException, MaxLexemeLengthExceededException, MaxLexiconsNumberExceededException, PutLexiconInput, PutLexiconOutput, UnsupportedPlsAlphabetException, UnsupportedPlsLanguageException, SsmlMarksNotSupportedForTextTypeException, StartSpeechSynthesisTaskInput, StartSpeechSynthesisTaskOutput, TextLengthExceededException, SynthesizeSpeechInput, SynthesizeSpeechOutput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLexiconInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteLexiconInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteLexiconOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteLexiconOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexiconNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LexiconNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceFailureException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ServiceFailureException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Engine\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Engine\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeVoicesInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeVoicesInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Voice\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Voice\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeVoicesOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeVoicesOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidNextTokenException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidNextTokenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EngineNotSupportedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EngineNotSupportedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLexiconInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLexiconInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Lexicon\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Lexicon\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexiconAttributes\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LexiconAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLexiconOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLexiconOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSpeechSynthesisTaskInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetSpeechSynthesisTaskInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputFormat\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OutputFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SpeechMarkType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SpeechMarkType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TaskStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TaskStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SynthesisTask\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SynthesisTask\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSpeechSynthesisTaskOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetSpeechSynthesisTaskOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidTaskIdException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidTaskIdException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SynthesisTaskNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SynthesisTaskNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidLexiconException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidLexiconException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3BucketException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidS3BucketException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3KeyException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidS3KeyException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidSampleRateException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidSampleRateException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidSnsTopicArnException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidSnsTopicArnException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidSsmlException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidSsmlException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LanguageNotSupportedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LanguageNotSupportedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexiconDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LexiconDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LexiconSizeExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LexiconSizeExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListLexiconsInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListLexiconsInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListLexiconsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListLexiconsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSpeechSynthesisTasksInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListSpeechSynthesisTasksInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListSpeechSynthesisTasksOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListSpeechSynthesisTasksOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MarksNotSupportedForFormatException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MarksNotSupportedForFormatException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MaxLexemeLengthExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MaxLexemeLengthExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MaxLexiconsNumberExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MaxLexiconsNumberExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLexiconInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutLexiconInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutLexiconOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutLexiconOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedPlsAlphabetException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnsupportedPlsAlphabetException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedPlsLanguageException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnsupportedPlsLanguageException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SsmlMarksNotSupportedForTextTypeException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SsmlMarksNotSupportedForTextTypeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSpeechSynthesisTaskInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartSpeechSynthesisTaskInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSpeechSynthesisTaskOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartSpeechSynthesisTaskOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextLengthExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextLengthExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SynthesizeSpeechInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SynthesizeSpeechInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SynthesizeSpeechOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SynthesizeSpeechOutput\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js ***! \***********************************************************************/ /*! exports provided: DeleteLexiconInput, DeleteLexiconOutput, LexiconNotFoundException, ServiceFailureException, Engine, DescribeVoicesInput, Voice, DescribeVoicesOutput, InvalidNextTokenException, EngineNotSupportedException, GetLexiconInput, Lexicon, LexiconAttributes, GetLexiconOutput, GetSpeechSynthesisTaskInput, OutputFormat, SpeechMarkType, TaskStatus, TextType, SynthesisTask, GetSpeechSynthesisTaskOutput, InvalidTaskIdException, SynthesisTaskNotFoundException, InvalidLexiconException, InvalidS3BucketException, InvalidS3KeyException, InvalidSampleRateException, InvalidSnsTopicArnException, InvalidSsmlException, LanguageNotSupportedException, LexiconDescription, LexiconSizeExceededException, ListLexiconsInput, ListLexiconsOutput, ListSpeechSynthesisTasksInput, ListSpeechSynthesisTasksOutput, MarksNotSupportedForFormatException, MaxLexemeLengthExceededException, MaxLexiconsNumberExceededException, PutLexiconInput, PutLexiconOutput, UnsupportedPlsAlphabetException, UnsupportedPlsLanguageException, SsmlMarksNotSupportedForTextTypeException, StartSpeechSynthesisTaskInput, StartSpeechSynthesisTaskOutput, TextLengthExceededException, SynthesizeSpeechInput, SynthesizeSpeechOutput */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteLexiconInput\", function() { return DeleteLexiconInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteLexiconOutput\", function() { return DeleteLexiconOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexiconNotFoundException\", function() { return LexiconNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceFailureException\", function() { return ServiceFailureException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Engine\", function() { return Engine; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeVoicesInput\", function() { return DescribeVoicesInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Voice\", function() { return Voice; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeVoicesOutput\", function() { return DescribeVoicesOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidNextTokenException\", function() { return InvalidNextTokenException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EngineNotSupportedException\", function() { return EngineNotSupportedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLexiconInput\", function() { return GetLexiconInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Lexicon\", function() { return Lexicon; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexiconAttributes\", function() { return LexiconAttributes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLexiconOutput\", function() { return GetLexiconOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSpeechSynthesisTaskInput\", function() { return GetSpeechSynthesisTaskInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OutputFormat\", function() { return OutputFormat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SpeechMarkType\", function() { return SpeechMarkType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TaskStatus\", function() { return TaskStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextType\", function() { return TextType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SynthesisTask\", function() { return SynthesisTask; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSpeechSynthesisTaskOutput\", function() { return GetSpeechSynthesisTaskOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidTaskIdException\", function() { return InvalidTaskIdException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SynthesisTaskNotFoundException\", function() { return SynthesisTaskNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidLexiconException\", function() { return InvalidLexiconException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3BucketException\", function() { return InvalidS3BucketException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3KeyException\", function() { return InvalidS3KeyException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidSampleRateException\", function() { return InvalidSampleRateException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidSnsTopicArnException\", function() { return InvalidSnsTopicArnException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidSsmlException\", function() { return InvalidSsmlException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LanguageNotSupportedException\", function() { return LanguageNotSupportedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexiconDescription\", function() { return LexiconDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LexiconSizeExceededException\", function() { return LexiconSizeExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListLexiconsInput\", function() { return ListLexiconsInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListLexiconsOutput\", function() { return ListLexiconsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListSpeechSynthesisTasksInput\", function() { return ListSpeechSynthesisTasksInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListSpeechSynthesisTasksOutput\", function() { return ListSpeechSynthesisTasksOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MarksNotSupportedForFormatException\", function() { return MarksNotSupportedForFormatException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MaxLexemeLengthExceededException\", function() { return MaxLexemeLengthExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MaxLexiconsNumberExceededException\", function() { return MaxLexiconsNumberExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutLexiconInput\", function() { return PutLexiconInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutLexiconOutput\", function() { return PutLexiconOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedPlsAlphabetException\", function() { return UnsupportedPlsAlphabetException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedPlsLanguageException\", function() { return UnsupportedPlsLanguageException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SsmlMarksNotSupportedForTextTypeException\", function() { return SsmlMarksNotSupportedForTextTypeException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSpeechSynthesisTaskInput\", function() { return StartSpeechSynthesisTaskInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSpeechSynthesisTaskOutput\", function() { return StartSpeechSynthesisTaskOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextLengthExceededException\", function() { return TextLengthExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SynthesizeSpeechInput\", function() { return SynthesizeSpeechInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SynthesizeSpeechOutput\", function() { return SynthesizeSpeechOutput; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\nvar DeleteLexiconInput;\n(function (DeleteLexiconInput) {\n DeleteLexiconInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteLexiconInput || (DeleteLexiconInput = {}));\nvar DeleteLexiconOutput;\n(function (DeleteLexiconOutput) {\n DeleteLexiconOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteLexiconOutput || (DeleteLexiconOutput = {}));\nvar LexiconNotFoundException;\n(function (LexiconNotFoundException) {\n LexiconNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LexiconNotFoundException || (LexiconNotFoundException = {}));\nvar ServiceFailureException;\n(function (ServiceFailureException) {\n ServiceFailureException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ServiceFailureException || (ServiceFailureException = {}));\nvar Engine;\n(function (Engine) {\n Engine[\"NEURAL\"] = \"neural\";\n Engine[\"STANDARD\"] = \"standard\";\n})(Engine || (Engine = {}));\nvar DescribeVoicesInput;\n(function (DescribeVoicesInput) {\n DescribeVoicesInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeVoicesInput || (DescribeVoicesInput = {}));\nvar Voice;\n(function (Voice) {\n Voice.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Voice || (Voice = {}));\nvar DescribeVoicesOutput;\n(function (DescribeVoicesOutput) {\n DescribeVoicesOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeVoicesOutput || (DescribeVoicesOutput = {}));\nvar InvalidNextTokenException;\n(function (InvalidNextTokenException) {\n InvalidNextTokenException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidNextTokenException || (InvalidNextTokenException = {}));\nvar EngineNotSupportedException;\n(function (EngineNotSupportedException) {\n EngineNotSupportedException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EngineNotSupportedException || (EngineNotSupportedException = {}));\nvar GetLexiconInput;\n(function (GetLexiconInput) {\n GetLexiconInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetLexiconInput || (GetLexiconInput = {}));\nvar Lexicon;\n(function (Lexicon) {\n Lexicon.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Content && { Content: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(Lexicon || (Lexicon = {}));\nvar LexiconAttributes;\n(function (LexiconAttributes) {\n LexiconAttributes.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LexiconAttributes || (LexiconAttributes = {}));\nvar GetLexiconOutput;\n(function (GetLexiconOutput) {\n GetLexiconOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Lexicon && { Lexicon: Lexicon.filterSensitiveLog(obj.Lexicon) }))); };\n})(GetLexiconOutput || (GetLexiconOutput = {}));\nvar GetSpeechSynthesisTaskInput;\n(function (GetSpeechSynthesisTaskInput) {\n GetSpeechSynthesisTaskInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSpeechSynthesisTaskInput || (GetSpeechSynthesisTaskInput = {}));\nvar OutputFormat;\n(function (OutputFormat) {\n OutputFormat[\"JSON\"] = \"json\";\n OutputFormat[\"MP3\"] = \"mp3\";\n OutputFormat[\"OGG_VORBIS\"] = \"ogg_vorbis\";\n OutputFormat[\"PCM\"] = \"pcm\";\n})(OutputFormat || (OutputFormat = {}));\nvar SpeechMarkType;\n(function (SpeechMarkType) {\n SpeechMarkType[\"SENTENCE\"] = \"sentence\";\n SpeechMarkType[\"SSML\"] = \"ssml\";\n SpeechMarkType[\"VISEME\"] = \"viseme\";\n SpeechMarkType[\"WORD\"] = \"word\";\n})(SpeechMarkType || (SpeechMarkType = {}));\nvar TaskStatus;\n(function (TaskStatus) {\n TaskStatus[\"COMPLETED\"] = \"completed\";\n TaskStatus[\"FAILED\"] = \"failed\";\n TaskStatus[\"IN_PROGRESS\"] = \"inProgress\";\n TaskStatus[\"SCHEDULED\"] = \"scheduled\";\n})(TaskStatus || (TaskStatus = {}));\nvar TextType;\n(function (TextType) {\n TextType[\"SSML\"] = \"ssml\";\n TextType[\"TEXT\"] = \"text\";\n})(TextType || (TextType = {}));\nvar SynthesisTask;\n(function (SynthesisTask) {\n SynthesisTask.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SynthesisTask || (SynthesisTask = {}));\nvar GetSpeechSynthesisTaskOutput;\n(function (GetSpeechSynthesisTaskOutput) {\n GetSpeechSynthesisTaskOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSpeechSynthesisTaskOutput || (GetSpeechSynthesisTaskOutput = {}));\nvar InvalidTaskIdException;\n(function (InvalidTaskIdException) {\n InvalidTaskIdException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidTaskIdException || (InvalidTaskIdException = {}));\nvar SynthesisTaskNotFoundException;\n(function (SynthesisTaskNotFoundException) {\n SynthesisTaskNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SynthesisTaskNotFoundException || (SynthesisTaskNotFoundException = {}));\nvar InvalidLexiconException;\n(function (InvalidLexiconException) {\n InvalidLexiconException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidLexiconException || (InvalidLexiconException = {}));\nvar InvalidS3BucketException;\n(function (InvalidS3BucketException) {\n InvalidS3BucketException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidS3BucketException || (InvalidS3BucketException = {}));\nvar InvalidS3KeyException;\n(function (InvalidS3KeyException) {\n InvalidS3KeyException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidS3KeyException || (InvalidS3KeyException = {}));\nvar InvalidSampleRateException;\n(function (InvalidSampleRateException) {\n InvalidSampleRateException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidSampleRateException || (InvalidSampleRateException = {}));\nvar InvalidSnsTopicArnException;\n(function (InvalidSnsTopicArnException) {\n InvalidSnsTopicArnException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidSnsTopicArnException || (InvalidSnsTopicArnException = {}));\nvar InvalidSsmlException;\n(function (InvalidSsmlException) {\n InvalidSsmlException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidSsmlException || (InvalidSsmlException = {}));\nvar LanguageNotSupportedException;\n(function (LanguageNotSupportedException) {\n LanguageNotSupportedException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LanguageNotSupportedException || (LanguageNotSupportedException = {}));\nvar LexiconDescription;\n(function (LexiconDescription) {\n LexiconDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LexiconDescription || (LexiconDescription = {}));\nvar LexiconSizeExceededException;\n(function (LexiconSizeExceededException) {\n LexiconSizeExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LexiconSizeExceededException || (LexiconSizeExceededException = {}));\nvar ListLexiconsInput;\n(function (ListLexiconsInput) {\n ListLexiconsInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListLexiconsInput || (ListLexiconsInput = {}));\nvar ListLexiconsOutput;\n(function (ListLexiconsOutput) {\n ListLexiconsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListLexiconsOutput || (ListLexiconsOutput = {}));\nvar ListSpeechSynthesisTasksInput;\n(function (ListSpeechSynthesisTasksInput) {\n ListSpeechSynthesisTasksInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListSpeechSynthesisTasksInput || (ListSpeechSynthesisTasksInput = {}));\nvar ListSpeechSynthesisTasksOutput;\n(function (ListSpeechSynthesisTasksOutput) {\n ListSpeechSynthesisTasksOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListSpeechSynthesisTasksOutput || (ListSpeechSynthesisTasksOutput = {}));\nvar MarksNotSupportedForFormatException;\n(function (MarksNotSupportedForFormatException) {\n MarksNotSupportedForFormatException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MarksNotSupportedForFormatException || (MarksNotSupportedForFormatException = {}));\nvar MaxLexemeLengthExceededException;\n(function (MaxLexemeLengthExceededException) {\n MaxLexemeLengthExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MaxLexemeLengthExceededException || (MaxLexemeLengthExceededException = {}));\nvar MaxLexiconsNumberExceededException;\n(function (MaxLexiconsNumberExceededException) {\n MaxLexiconsNumberExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MaxLexiconsNumberExceededException || (MaxLexiconsNumberExceededException = {}));\nvar PutLexiconInput;\n(function (PutLexiconInput) {\n PutLexiconInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Content && { Content: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(PutLexiconInput || (PutLexiconInput = {}));\nvar PutLexiconOutput;\n(function (PutLexiconOutput) {\n PutLexiconOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutLexiconOutput || (PutLexiconOutput = {}));\nvar UnsupportedPlsAlphabetException;\n(function (UnsupportedPlsAlphabetException) {\n UnsupportedPlsAlphabetException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnsupportedPlsAlphabetException || (UnsupportedPlsAlphabetException = {}));\nvar UnsupportedPlsLanguageException;\n(function (UnsupportedPlsLanguageException) {\n UnsupportedPlsLanguageException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnsupportedPlsLanguageException || (UnsupportedPlsLanguageException = {}));\nvar SsmlMarksNotSupportedForTextTypeException;\n(function (SsmlMarksNotSupportedForTextTypeException) {\n SsmlMarksNotSupportedForTextTypeException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SsmlMarksNotSupportedForTextTypeException || (SsmlMarksNotSupportedForTextTypeException = {}));\nvar StartSpeechSynthesisTaskInput;\n(function (StartSpeechSynthesisTaskInput) {\n StartSpeechSynthesisTaskInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartSpeechSynthesisTaskInput || (StartSpeechSynthesisTaskInput = {}));\nvar StartSpeechSynthesisTaskOutput;\n(function (StartSpeechSynthesisTaskOutput) {\n StartSpeechSynthesisTaskOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartSpeechSynthesisTaskOutput || (StartSpeechSynthesisTaskOutput = {}));\nvar TextLengthExceededException;\n(function (TextLengthExceededException) {\n TextLengthExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TextLengthExceededException || (TextLengthExceededException = {}));\nvar SynthesizeSpeechInput;\n(function (SynthesizeSpeechInput) {\n SynthesizeSpeechInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SynthesizeSpeechInput || (SynthesizeSpeechInput = {}));\nvar SynthesizeSpeechOutput;\n(function (SynthesizeSpeechOutput) {\n SynthesizeSpeechOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SynthesizeSpeechOutput || (SynthesizeSpeechOutput = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/package.json": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/package.json ***! \*****************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-polly\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Polly Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-polly\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-polly\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/pagination/Interfaces.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/pagination/Interfaces.js ***! \*****************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=Interfaces.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/pagination/Interfaces.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/pagination/ListSpeechSynthesisTasksPaginator.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/pagination/ListSpeechSynthesisTasksPaginator.js ***! \****************************************************************************************************/ /*! exports provided: paginateListSpeechSynthesisTasks */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListSpeechSynthesisTasks\", function() { return paginateListSpeechSynthesisTasks; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Polly__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Polly */ \"./node_modules/@aws-sdk/client-polly/dist/es/Polly.js\");\n/* harmony import */ var _PollyClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../PollyClient */ \"./node_modules/@aws-sdk/client-polly/dist/es/PollyClient.js\");\n/* harmony import */ var _commands_ListSpeechSynthesisTasksCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListSpeechSynthesisTasksCommand */ \"./node_modules/@aws-sdk/client-polly/dist/es/commands/ListSpeechSynthesisTasksCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListSpeechSynthesisTasksCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListSpeechSynthesisTasksCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listSpeechSynthesisTasks.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListSpeechSynthesisTasks(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListSpeechSynthesisTasks_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Polly__WEBPACK_IMPORTED_MODULE_1__[\"Polly\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _PollyClient__WEBPACK_IMPORTED_MODULE_2__[\"PollyClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Polly | PollyClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListSpeechSynthesisTasksPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/pagination/ListSpeechSynthesisTasksPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js ***! \*******************************************************************************/ /*! exports provided: serializeAws_restJson1DeleteLexiconCommand, serializeAws_restJson1DescribeVoicesCommand, serializeAws_restJson1GetLexiconCommand, serializeAws_restJson1GetSpeechSynthesisTaskCommand, serializeAws_restJson1ListLexiconsCommand, serializeAws_restJson1ListSpeechSynthesisTasksCommand, serializeAws_restJson1PutLexiconCommand, serializeAws_restJson1StartSpeechSynthesisTaskCommand, serializeAws_restJson1SynthesizeSpeechCommand, deserializeAws_restJson1DeleteLexiconCommand, deserializeAws_restJson1DescribeVoicesCommand, deserializeAws_restJson1GetLexiconCommand, deserializeAws_restJson1GetSpeechSynthesisTaskCommand, deserializeAws_restJson1ListLexiconsCommand, deserializeAws_restJson1ListSpeechSynthesisTasksCommand, deserializeAws_restJson1PutLexiconCommand, deserializeAws_restJson1StartSpeechSynthesisTaskCommand, deserializeAws_restJson1SynthesizeSpeechCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DeleteLexiconCommand\", function() { return serializeAws_restJson1DeleteLexiconCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1DescribeVoicesCommand\", function() { return serializeAws_restJson1DescribeVoicesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetLexiconCommand\", function() { return serializeAws_restJson1GetLexiconCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1GetSpeechSynthesisTaskCommand\", function() { return serializeAws_restJson1GetSpeechSynthesisTaskCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListLexiconsCommand\", function() { return serializeAws_restJson1ListLexiconsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1ListSpeechSynthesisTasksCommand\", function() { return serializeAws_restJson1ListSpeechSynthesisTasksCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1PutLexiconCommand\", function() { return serializeAws_restJson1PutLexiconCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1StartSpeechSynthesisTaskCommand\", function() { return serializeAws_restJson1StartSpeechSynthesisTaskCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restJson1SynthesizeSpeechCommand\", function() { return serializeAws_restJson1SynthesizeSpeechCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DeleteLexiconCommand\", function() { return deserializeAws_restJson1DeleteLexiconCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1DescribeVoicesCommand\", function() { return deserializeAws_restJson1DescribeVoicesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetLexiconCommand\", function() { return deserializeAws_restJson1GetLexiconCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1GetSpeechSynthesisTaskCommand\", function() { return deserializeAws_restJson1GetSpeechSynthesisTaskCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListLexiconsCommand\", function() { return deserializeAws_restJson1ListLexiconsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1ListSpeechSynthesisTasksCommand\", function() { return deserializeAws_restJson1ListSpeechSynthesisTasksCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1PutLexiconCommand\", function() { return deserializeAws_restJson1PutLexiconCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1StartSpeechSynthesisTaskCommand\", function() { return deserializeAws_restJson1StartSpeechSynthesisTaskCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restJson1SynthesizeSpeechCommand\", function() { return deserializeAws_restJson1SynthesizeSpeechCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\nvar serializeAws_restJson1DeleteLexiconCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/lexicons/{Name}\";\n if (input.Name !== undefined) {\n labelValue = input.Name;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Name.\");\n }\n resolvedPath = resolvedPath.replace(\"{Name}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Name.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1DescribeVoicesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/voices\";\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Engine !== undefined && { Engine: input.Engine })), (input.LanguageCode !== undefined && { LanguageCode: input.LanguageCode })), (input.IncludeAdditionalLanguageCodes !== undefined && {\n IncludeAdditionalLanguageCodes: input.IncludeAdditionalLanguageCodes.toString(),\n })), (input.NextToken !== undefined && { NextToken: input.NextToken }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetLexiconCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/lexicons/{Name}\";\n if (input.Name !== undefined) {\n labelValue = input.Name;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Name.\");\n }\n resolvedPath = resolvedPath.replace(\"{Name}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Name.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1GetSpeechSynthesisTaskCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/synthesisTasks/{TaskId}\";\n if (input.TaskId !== undefined) {\n labelValue = input.TaskId;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: TaskId.\");\n }\n resolvedPath = resolvedPath.replace(\"{TaskId}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: TaskId.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListLexiconsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/lexicons\";\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.NextToken !== undefined && { NextToken: input.NextToken }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1ListSpeechSynthesisTasksCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/v1/synthesisTasks\";\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults !== undefined && { MaxResults: input.MaxResults.toString() })), (input.NextToken !== undefined && { NextToken: input.NextToken })), (input.Status !== undefined && { Status: input.Status }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1PutLexiconCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/lexicons/{Name}\";\n if (input.Name !== undefined) {\n labelValue = input.Name;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Name.\");\n }\n resolvedPath = resolvedPath.replace(\"{Name}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Name.\");\n }\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Content !== undefined && input.Content !== null && { Content: input.Content })));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1StartSpeechSynthesisTaskCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/synthesisTasks\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Engine !== undefined && input.Engine !== null && { Engine: input.Engine })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.LexiconNames !== undefined &&\n input.LexiconNames !== null && {\n LexiconNames: serializeAws_restJson1LexiconNameList(input.LexiconNames, context),\n })), (input.OutputFormat !== undefined && input.OutputFormat !== null && { OutputFormat: input.OutputFormat })), (input.OutputS3BucketName !== undefined &&\n input.OutputS3BucketName !== null && { OutputS3BucketName: input.OutputS3BucketName })), (input.OutputS3KeyPrefix !== undefined &&\n input.OutputS3KeyPrefix !== null && { OutputS3KeyPrefix: input.OutputS3KeyPrefix })), (input.SampleRate !== undefined && input.SampleRate !== null && { SampleRate: input.SampleRate })), (input.SnsTopicArn !== undefined && input.SnsTopicArn !== null && { SnsTopicArn: input.SnsTopicArn })), (input.SpeechMarkTypes !== undefined &&\n input.SpeechMarkTypes !== null && {\n SpeechMarkTypes: serializeAws_restJson1SpeechMarkTypeList(input.SpeechMarkTypes, context),\n })), (input.Text !== undefined && input.Text !== null && { Text: input.Text })), (input.TextType !== undefined && input.TextType !== null && { TextType: input.TextType })), (input.VoiceId !== undefined && input.VoiceId !== null && { VoiceId: input.VoiceId })));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restJson1SynthesizeSpeechCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/json\",\n };\n resolvedPath = \"/v1/speech\";\n body = JSON.stringify(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Engine !== undefined && input.Engine !== null && { Engine: input.Engine })), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.LexiconNames !== undefined &&\n input.LexiconNames !== null && {\n LexiconNames: serializeAws_restJson1LexiconNameList(input.LexiconNames, context),\n })), (input.OutputFormat !== undefined && input.OutputFormat !== null && { OutputFormat: input.OutputFormat })), (input.SampleRate !== undefined && input.SampleRate !== null && { SampleRate: input.SampleRate })), (input.SpeechMarkTypes !== undefined &&\n input.SpeechMarkTypes !== null && {\n SpeechMarkTypes: serializeAws_restJson1SpeechMarkTypeList(input.SpeechMarkTypes, context),\n })), (input.Text !== undefined && input.Text !== null && { Text: input.Text })), (input.TextType !== undefined && input.TextType !== null && { TextType: input.TextType })), (input.VoiceId !== undefined && input.VoiceId !== null && { VoiceId: input.VoiceId })));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteLexiconCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DeleteLexiconCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DeleteLexiconCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"LexiconNotFoundException\": return [3 /*break*/, 2];\n case \"com.amazonaws.polly#LexiconNotFoundException\": return [3 /*break*/, 2];\n case \"ServiceFailureException\": return [3 /*break*/, 4];\n case \"com.amazonaws.polly#ServiceFailureException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1LexiconNotFoundExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ServiceFailureExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeVoicesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1DescribeVoicesCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n NextToken: undefined,\n Voices: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.NextToken !== undefined && data.NextToken !== null) {\n contents.NextToken = data.NextToken;\n }\n if (data.Voices !== undefined && data.Voices !== null) {\n contents.Voices = deserializeAws_restJson1VoiceList(data.Voices, context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1DescribeVoicesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidNextTokenException\": return [3 /*break*/, 2];\n case \"com.amazonaws.polly#InvalidNextTokenException\": return [3 /*break*/, 2];\n case \"ServiceFailureException\": return [3 /*break*/, 4];\n case \"com.amazonaws.polly#ServiceFailureException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidNextTokenExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ServiceFailureExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetLexiconCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetLexiconCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Lexicon: undefined,\n LexiconAttributes: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.Lexicon !== undefined && data.Lexicon !== null) {\n contents.Lexicon = deserializeAws_restJson1Lexicon(data.Lexicon, context);\n }\n if (data.LexiconAttributes !== undefined && data.LexiconAttributes !== null) {\n contents.LexiconAttributes = deserializeAws_restJson1LexiconAttributes(data.LexiconAttributes, context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetLexiconCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"LexiconNotFoundException\": return [3 /*break*/, 2];\n case \"com.amazonaws.polly#LexiconNotFoundException\": return [3 /*break*/, 2];\n case \"ServiceFailureException\": return [3 /*break*/, 4];\n case \"com.amazonaws.polly#ServiceFailureException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1LexiconNotFoundExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ServiceFailureExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSpeechSynthesisTaskCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1GetSpeechSynthesisTaskCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SynthesisTask: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.SynthesisTask !== undefined && data.SynthesisTask !== null) {\n contents.SynthesisTask = deserializeAws_restJson1SynthesisTask(data.SynthesisTask, context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1GetSpeechSynthesisTaskCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidTaskIdException\": return [3 /*break*/, 2];\n case \"com.amazonaws.polly#InvalidTaskIdException\": return [3 /*break*/, 2];\n case \"ServiceFailureException\": return [3 /*break*/, 4];\n case \"com.amazonaws.polly#ServiceFailureException\": return [3 /*break*/, 4];\n case \"SynthesisTaskNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.polly#SynthesisTaskNotFoundException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidTaskIdExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ServiceFailureExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1SynthesisTaskNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1ListLexiconsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1ListLexiconsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Lexicons: undefined,\n NextToken: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.Lexicons !== undefined && data.Lexicons !== null) {\n contents.Lexicons = deserializeAws_restJson1LexiconDescriptionList(data.Lexicons, context);\n }\n if (data.NextToken !== undefined && data.NextToken !== null) {\n contents.NextToken = data.NextToken;\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1ListLexiconsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidNextTokenException\": return [3 /*break*/, 2];\n case \"com.amazonaws.polly#InvalidNextTokenException\": return [3 /*break*/, 2];\n case \"ServiceFailureException\": return [3 /*break*/, 4];\n case \"com.amazonaws.polly#ServiceFailureException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidNextTokenExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ServiceFailureExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1ListSpeechSynthesisTasksCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1ListSpeechSynthesisTasksCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n NextToken: undefined,\n SynthesisTasks: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.NextToken !== undefined && data.NextToken !== null) {\n contents.NextToken = data.NextToken;\n }\n if (data.SynthesisTasks !== undefined && data.SynthesisTasks !== null) {\n contents.SynthesisTasks = deserializeAws_restJson1SynthesisTasks(data.SynthesisTasks, context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1ListSpeechSynthesisTasksCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidNextTokenException\": return [3 /*break*/, 2];\n case \"com.amazonaws.polly#InvalidNextTokenException\": return [3 /*break*/, 2];\n case \"ServiceFailureException\": return [3 /*break*/, 4];\n case \"com.amazonaws.polly#ServiceFailureException\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidNextTokenExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ServiceFailureExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1PutLexiconCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1PutLexiconCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1PutLexiconCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidLexiconException\": return [3 /*break*/, 2];\n case \"com.amazonaws.polly#InvalidLexiconException\": return [3 /*break*/, 2];\n case \"LexiconSizeExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.polly#LexiconSizeExceededException\": return [3 /*break*/, 4];\n case \"MaxLexemeLengthExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.polly#MaxLexemeLengthExceededException\": return [3 /*break*/, 6];\n case \"MaxLexiconsNumberExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.polly#MaxLexiconsNumberExceededException\": return [3 /*break*/, 8];\n case \"ServiceFailureException\": return [3 /*break*/, 10];\n case \"com.amazonaws.polly#ServiceFailureException\": return [3 /*break*/, 10];\n case \"UnsupportedPlsAlphabetException\": return [3 /*break*/, 12];\n case \"com.amazonaws.polly#UnsupportedPlsAlphabetException\": return [3 /*break*/, 12];\n case \"UnsupportedPlsLanguageException\": return [3 /*break*/, 14];\n case \"com.amazonaws.polly#UnsupportedPlsLanguageException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidLexiconExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1LexiconSizeExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MaxLexemeLengthExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MaxLexiconsNumberExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ServiceFailureExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1UnsupportedPlsAlphabetExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1UnsupportedPlsLanguageExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1StartSpeechSynthesisTaskCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1StartSpeechSynthesisTaskCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n SynthesisTask: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.SynthesisTask !== undefined && data.SynthesisTask !== null) {\n contents.SynthesisTask = deserializeAws_restJson1SynthesisTask(data.SynthesisTask, context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restJson1StartSpeechSynthesisTaskCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, parsedBody, message;\n var _q;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_r) {\n switch (_r.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _q = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_q.body = _r.sent(), _q)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"EngineNotSupportedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.polly#EngineNotSupportedException\": return [3 /*break*/, 2];\n case \"InvalidS3BucketException\": return [3 /*break*/, 4];\n case \"com.amazonaws.polly#InvalidS3BucketException\": return [3 /*break*/, 4];\n case \"InvalidS3KeyException\": return [3 /*break*/, 6];\n case \"com.amazonaws.polly#InvalidS3KeyException\": return [3 /*break*/, 6];\n case \"InvalidSampleRateException\": return [3 /*break*/, 8];\n case \"com.amazonaws.polly#InvalidSampleRateException\": return [3 /*break*/, 8];\n case \"InvalidSnsTopicArnException\": return [3 /*break*/, 10];\n case \"com.amazonaws.polly#InvalidSnsTopicArnException\": return [3 /*break*/, 10];\n case \"InvalidSsmlException\": return [3 /*break*/, 12];\n case \"com.amazonaws.polly#InvalidSsmlException\": return [3 /*break*/, 12];\n case \"LanguageNotSupportedException\": return [3 /*break*/, 14];\n case \"com.amazonaws.polly#LanguageNotSupportedException\": return [3 /*break*/, 14];\n case \"LexiconNotFoundException\": return [3 /*break*/, 16];\n case \"com.amazonaws.polly#LexiconNotFoundException\": return [3 /*break*/, 16];\n case \"MarksNotSupportedForFormatException\": return [3 /*break*/, 18];\n case \"com.amazonaws.polly#MarksNotSupportedForFormatException\": return [3 /*break*/, 18];\n case \"ServiceFailureException\": return [3 /*break*/, 20];\n case \"com.amazonaws.polly#ServiceFailureException\": return [3 /*break*/, 20];\n case \"SsmlMarksNotSupportedForTextTypeException\": return [3 /*break*/, 22];\n case \"com.amazonaws.polly#SsmlMarksNotSupportedForTextTypeException\": return [3 /*break*/, 22];\n case \"TextLengthExceededException\": return [3 /*break*/, 24];\n case \"com.amazonaws.polly#TextLengthExceededException\": return [3 /*break*/, 24];\n }\n return [3 /*break*/, 26];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1EngineNotSupportedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidS3BucketExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidS3KeyExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidSampleRateExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidSnsTopicArnExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidSsmlExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1LanguageNotSupportedExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_restJson1LexiconNotFoundExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MarksNotSupportedForFormatExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 20:\n _m = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ServiceFailureExceptionResponse(parsedOutput, context)];\n case 21:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _m.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 22:\n _o = [{}];\n return [4 /*yield*/, deserializeAws_restJson1SsmlMarksNotSupportedForTextTypeExceptionResponse(parsedOutput, context)];\n case 23:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _o.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 24:\n _p = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TextLengthExceededExceptionResponse(parsedOutput, context)];\n case 25:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _p.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 26:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _r.label = 27;\n case 27:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1SynthesizeSpeechCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restJson1SynthesizeSpeechCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n AudioStream: undefined,\n ContentType: undefined,\n RequestCharacters: undefined,\n };\n if (output.headers[\"content-type\"] !== undefined) {\n contents.ContentType = output.headers[\"content-type\"];\n }\n if (output.headers[\"x-amzn-requestcharacters\"] !== undefined) {\n contents.RequestCharacters = parseInt(output.headers[\"x-amzn-requestcharacters\"], 10);\n }\n data = output.body;\n contents.AudioStream = data;\n return [2 /*return*/, Promise.resolve(contents)];\n });\n}); };\nvar deserializeAws_restJson1SynthesizeSpeechCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"EngineNotSupportedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.polly#EngineNotSupportedException\": return [3 /*break*/, 2];\n case \"InvalidSampleRateException\": return [3 /*break*/, 4];\n case \"com.amazonaws.polly#InvalidSampleRateException\": return [3 /*break*/, 4];\n case \"InvalidSsmlException\": return [3 /*break*/, 6];\n case \"com.amazonaws.polly#InvalidSsmlException\": return [3 /*break*/, 6];\n case \"LanguageNotSupportedException\": return [3 /*break*/, 8];\n case \"com.amazonaws.polly#LanguageNotSupportedException\": return [3 /*break*/, 8];\n case \"LexiconNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.polly#LexiconNotFoundException\": return [3 /*break*/, 10];\n case \"MarksNotSupportedForFormatException\": return [3 /*break*/, 12];\n case \"com.amazonaws.polly#MarksNotSupportedForFormatException\": return [3 /*break*/, 12];\n case \"ServiceFailureException\": return [3 /*break*/, 14];\n case \"com.amazonaws.polly#ServiceFailureException\": return [3 /*break*/, 14];\n case \"SsmlMarksNotSupportedForTextTypeException\": return [3 /*break*/, 16];\n case \"com.amazonaws.polly#SsmlMarksNotSupportedForTextTypeException\": return [3 /*break*/, 16];\n case \"TextLengthExceededException\": return [3 /*break*/, 18];\n case \"com.amazonaws.polly#TextLengthExceededException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restJson1EngineNotSupportedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidSampleRateExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_restJson1InvalidSsmlExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_restJson1LanguageNotSupportedExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_restJson1LexiconNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_restJson1MarksNotSupportedForFormatExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_restJson1ServiceFailureExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_restJson1SsmlMarksNotSupportedForTextTypeExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_restJson1TextLengthExceededExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restJson1EngineNotSupportedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"EngineNotSupportedException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1InvalidLexiconExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidLexiconException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1InvalidNextTokenExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidNextTokenException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1InvalidS3BucketExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidS3BucketException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1InvalidS3KeyExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidS3KeyException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1InvalidSampleRateExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidSampleRateException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1InvalidSnsTopicArnExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidSnsTopicArnException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1InvalidSsmlExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidSsmlException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1InvalidTaskIdExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidTaskIdException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1LanguageNotSupportedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"LanguageNotSupportedException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1LexiconNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"LexiconNotFoundException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1LexiconSizeExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"LexiconSizeExceededException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1MarksNotSupportedForFormatExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"MarksNotSupportedForFormatException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1MaxLexemeLengthExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"MaxLexemeLengthExceededException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1MaxLexiconsNumberExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"MaxLexiconsNumberExceededException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1ServiceFailureExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"ServiceFailureException\",\n $fault: \"server\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1SsmlMarksNotSupportedForTextTypeExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"SsmlMarksNotSupportedForTextTypeException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1SynthesisTaskNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"SynthesisTaskNotFoundException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1TextLengthExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"TextLengthExceededException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1UnsupportedPlsAlphabetExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"UnsupportedPlsAlphabetException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restJson1UnsupportedPlsLanguageExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"UnsupportedPlsLanguageException\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n message: undefined,\n };\n data = parsedOutput.body;\n if (data.message !== undefined && data.message !== null) {\n contents.message = data.message;\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_restJson1LexiconNameList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_restJson1SpeechMarkTypeList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restJson1EngineList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restJson1LanguageCodeList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restJson1Lexicon = function (output, context) {\n return {\n Content: output.Content !== undefined && output.Content !== null ? output.Content : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n };\n};\nvar deserializeAws_restJson1LexiconAttributes = function (output, context) {\n return {\n Alphabet: output.Alphabet !== undefined && output.Alphabet !== null ? output.Alphabet : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n LastModified: output.LastModified !== undefined && output.LastModified !== null\n ? new Date(Math.round(output.LastModified * 1000))\n : undefined,\n LexemesCount: output.LexemesCount !== undefined && output.LexemesCount !== null ? output.LexemesCount : undefined,\n LexiconArn: output.LexiconArn !== undefined && output.LexiconArn !== null ? output.LexiconArn : undefined,\n Size: output.Size !== undefined && output.Size !== null ? output.Size : undefined,\n };\n};\nvar deserializeAws_restJson1LexiconDescription = function (output, context) {\n return {\n Attributes: output.Attributes !== undefined && output.Attributes !== null\n ? deserializeAws_restJson1LexiconAttributes(output.Attributes, context)\n : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n };\n};\nvar deserializeAws_restJson1LexiconDescriptionList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1LexiconDescription(entry, context);\n });\n};\nvar deserializeAws_restJson1LexiconNameList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restJson1SpeechMarkTypeList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restJson1SynthesisTask = function (output, context) {\n return {\n CreationTime: output.CreationTime !== undefined && output.CreationTime !== null\n ? new Date(Math.round(output.CreationTime * 1000))\n : undefined,\n Engine: output.Engine !== undefined && output.Engine !== null ? output.Engine : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n LexiconNames: output.LexiconNames !== undefined && output.LexiconNames !== null\n ? deserializeAws_restJson1LexiconNameList(output.LexiconNames, context)\n : undefined,\n OutputFormat: output.OutputFormat !== undefined && output.OutputFormat !== null ? output.OutputFormat : undefined,\n OutputUri: output.OutputUri !== undefined && output.OutputUri !== null ? output.OutputUri : undefined,\n RequestCharacters: output.RequestCharacters !== undefined && output.RequestCharacters !== null\n ? output.RequestCharacters\n : undefined,\n SampleRate: output.SampleRate !== undefined && output.SampleRate !== null ? output.SampleRate : undefined,\n SnsTopicArn: output.SnsTopicArn !== undefined && output.SnsTopicArn !== null ? output.SnsTopicArn : undefined,\n SpeechMarkTypes: output.SpeechMarkTypes !== undefined && output.SpeechMarkTypes !== null\n ? deserializeAws_restJson1SpeechMarkTypeList(output.SpeechMarkTypes, context)\n : undefined,\n TaskId: output.TaskId !== undefined && output.TaskId !== null ? output.TaskId : undefined,\n TaskStatus: output.TaskStatus !== undefined && output.TaskStatus !== null ? output.TaskStatus : undefined,\n TaskStatusReason: output.TaskStatusReason !== undefined && output.TaskStatusReason !== null ? output.TaskStatusReason : undefined,\n TextType: output.TextType !== undefined && output.TextType !== null ? output.TextType : undefined,\n VoiceId: output.VoiceId !== undefined && output.VoiceId !== null ? output.VoiceId : undefined,\n };\n};\nvar deserializeAws_restJson1SynthesisTasks = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1SynthesisTask(entry, context);\n });\n};\nvar deserializeAws_restJson1Voice = function (output, context) {\n return {\n AdditionalLanguageCodes: output.AdditionalLanguageCodes !== undefined && output.AdditionalLanguageCodes !== null\n ? deserializeAws_restJson1LanguageCodeList(output.AdditionalLanguageCodes, context)\n : undefined,\n Gender: output.Gender !== undefined && output.Gender !== null ? output.Gender : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n LanguageCode: output.LanguageCode !== undefined && output.LanguageCode !== null ? output.LanguageCode : undefined,\n LanguageName: output.LanguageName !== undefined && output.LanguageName !== null ? output.LanguageName : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n SupportedEngines: output.SupportedEngines !== undefined && output.SupportedEngines !== null\n ? deserializeAws_restJson1EngineList(output.SupportedEngines, context)\n : undefined,\n };\n};\nvar deserializeAws_restJson1VoiceList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restJson1Voice(entry, context);\n });\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar isSerializableHeaderValue = function (value) {\n return value !== undefined &&\n value !== null &&\n value !== \"\" &&\n (!Object.getOwnPropertyNames(value).includes(\"length\") || value.length != 0) &&\n (!Object.getOwnPropertyNames(value).includes(\"size\") || value.size != 0);\n};\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_restJson1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/protocols/Aws_restJson1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/runtimeConfig.browser.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/runtimeConfig.browser.js ***! \*****************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-polly/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-polly/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-polly/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/dist/es/runtimeConfig.shared.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/dist/es/runtimeConfig.shared.js ***! \****************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-polly/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2016-06-10\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Polly\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js ***! \****************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-polly/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js ***! \*************************************************************************/ /*! exports provided: Rekognition */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Rekognition\", function() { return Rekognition; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_CompareFacesCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CompareFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CompareFacesCommand.js\");\n/* harmony import */ var _commands_CreateCollectionCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CreateCollectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateCollectionCommand.js\");\n/* harmony import */ var _commands_CreateProjectCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/CreateProjectCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectCommand.js\");\n/* harmony import */ var _commands_CreateProjectVersionCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/CreateProjectVersionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectVersionCommand.js\");\n/* harmony import */ var _commands_CreateStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/CreateStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateStreamProcessorCommand.js\");\n/* harmony import */ var _commands_DeleteCollectionCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/DeleteCollectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteCollectionCommand.js\");\n/* harmony import */ var _commands_DeleteFacesCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/DeleteFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteFacesCommand.js\");\n/* harmony import */ var _commands_DeleteProjectCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/DeleteProjectCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectCommand.js\");\n/* harmony import */ var _commands_DeleteProjectVersionCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/DeleteProjectVersionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectVersionCommand.js\");\n/* harmony import */ var _commands_DeleteStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DeleteStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteStreamProcessorCommand.js\");\n/* harmony import */ var _commands_DescribeCollectionCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/DescribeCollectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeCollectionCommand.js\");\n/* harmony import */ var _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DescribeProjectVersionsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectVersionsCommand.js\");\n/* harmony import */ var _commands_DescribeProjectsCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/DescribeProjectsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectsCommand.js\");\n/* harmony import */ var _commands_DescribeStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DescribeStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeStreamProcessorCommand.js\");\n/* harmony import */ var _commands_DetectCustomLabelsCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/DetectCustomLabelsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectCustomLabelsCommand.js\");\n/* harmony import */ var _commands_DetectFacesCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DetectFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectFacesCommand.js\");\n/* harmony import */ var _commands_DetectLabelsCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DetectLabelsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectLabelsCommand.js\");\n/* harmony import */ var _commands_DetectModerationLabelsCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DetectModerationLabelsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectModerationLabelsCommand.js\");\n/* harmony import */ var _commands_DetectProtectiveEquipmentCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DetectProtectiveEquipmentCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectProtectiveEquipmentCommand.js\");\n/* harmony import */ var _commands_DetectTextCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DetectTextCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectTextCommand.js\");\n/* harmony import */ var _commands_GetCelebrityInfoCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/GetCelebrityInfoCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityInfoCommand.js\");\n/* harmony import */ var _commands_GetCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/GetCelebrityRecognitionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityRecognitionCommand.js\");\n/* harmony import */ var _commands_GetContentModerationCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/GetContentModerationCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetContentModerationCommand.js\");\n/* harmony import */ var _commands_GetFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/GetFaceDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceDetectionCommand.js\");\n/* harmony import */ var _commands_GetFaceSearchCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/GetFaceSearchCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceSearchCommand.js\");\n/* harmony import */ var _commands_GetLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/GetLabelDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetLabelDetectionCommand.js\");\n/* harmony import */ var _commands_GetPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/GetPersonTrackingCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetPersonTrackingCommand.js\");\n/* harmony import */ var _commands_GetSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/GetSegmentDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetSegmentDetectionCommand.js\");\n/* harmony import */ var _commands_GetTextDetectionCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/GetTextDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetTextDetectionCommand.js\");\n/* harmony import */ var _commands_IndexFacesCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/IndexFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/IndexFacesCommand.js\");\n/* harmony import */ var _commands_ListCollectionsCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/ListCollectionsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListCollectionsCommand.js\");\n/* harmony import */ var _commands_ListFacesCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/ListFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListFacesCommand.js\");\n/* harmony import */ var _commands_ListStreamProcessorsCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./commands/ListStreamProcessorsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListStreamProcessorsCommand.js\");\n/* harmony import */ var _commands_RecognizeCelebritiesCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/RecognizeCelebritiesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/RecognizeCelebritiesCommand.js\");\n/* harmony import */ var _commands_SearchFacesByImageCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./commands/SearchFacesByImageCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesByImageCommand.js\");\n/* harmony import */ var _commands_SearchFacesCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/SearchFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesCommand.js\");\n/* harmony import */ var _commands_StartCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/StartCelebrityRecognitionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartCelebrityRecognitionCommand.js\");\n/* harmony import */ var _commands_StartContentModerationCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/StartContentModerationCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartContentModerationCommand.js\");\n/* harmony import */ var _commands_StartFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/StartFaceDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceDetectionCommand.js\");\n/* harmony import */ var _commands_StartFaceSearchCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/StartFaceSearchCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceSearchCommand.js\");\n/* harmony import */ var _commands_StartLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/StartLabelDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartLabelDetectionCommand.js\");\n/* harmony import */ var _commands_StartPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/StartPersonTrackingCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartPersonTrackingCommand.js\");\n/* harmony import */ var _commands_StartProjectVersionCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/StartProjectVersionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartProjectVersionCommand.js\");\n/* harmony import */ var _commands_StartSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./commands/StartSegmentDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartSegmentDetectionCommand.js\");\n/* harmony import */ var _commands_StartStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/StartStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartStreamProcessorCommand.js\");\n/* harmony import */ var _commands_StartTextDetectionCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./commands/StartTextDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartTextDetectionCommand.js\");\n/* harmony import */ var _commands_StopProjectVersionCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./commands/StopProjectVersionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopProjectVersionCommand.js\");\n/* harmony import */ var _commands_StopStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./commands/StopStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopStreamProcessorCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n *

This is the Amazon Rekognition API reference.

\n */\nvar Rekognition = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(Rekognition, _super);\n function Rekognition() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Rekognition.prototype.compareFaces = function (args, optionsOrCb, cb) {\n var command = new _commands_CompareFacesCommand__WEBPACK_IMPORTED_MODULE_2__[\"CompareFacesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.createCollection = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateCollectionCommand__WEBPACK_IMPORTED_MODULE_3__[\"CreateCollectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.createProject = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateProjectCommand__WEBPACK_IMPORTED_MODULE_4__[\"CreateProjectCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.createProjectVersion = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateProjectVersionCommand__WEBPACK_IMPORTED_MODULE_5__[\"CreateProjectVersionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.createStreamProcessor = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_6__[\"CreateStreamProcessorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.deleteCollection = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteCollectionCommand__WEBPACK_IMPORTED_MODULE_7__[\"DeleteCollectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.deleteFaces = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteFacesCommand__WEBPACK_IMPORTED_MODULE_8__[\"DeleteFacesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.deleteProject = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteProjectCommand__WEBPACK_IMPORTED_MODULE_9__[\"DeleteProjectCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.deleteProjectVersion = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteProjectVersionCommand__WEBPACK_IMPORTED_MODULE_10__[\"DeleteProjectVersionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.deleteStreamProcessor = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_11__[\"DeleteStreamProcessorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.describeCollection = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeCollectionCommand__WEBPACK_IMPORTED_MODULE_12__[\"DescribeCollectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.describeProjects = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeProjectsCommand__WEBPACK_IMPORTED_MODULE_14__[\"DescribeProjectsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.describeProjectVersions = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_13__[\"DescribeProjectVersionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.describeStreamProcessor = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_15__[\"DescribeStreamProcessorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.detectCustomLabels = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectCustomLabelsCommand__WEBPACK_IMPORTED_MODULE_16__[\"DetectCustomLabelsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.detectFaces = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectFacesCommand__WEBPACK_IMPORTED_MODULE_17__[\"DetectFacesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.detectLabels = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectLabelsCommand__WEBPACK_IMPORTED_MODULE_18__[\"DetectLabelsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.detectModerationLabels = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectModerationLabelsCommand__WEBPACK_IMPORTED_MODULE_19__[\"DetectModerationLabelsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.detectProtectiveEquipment = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectProtectiveEquipmentCommand__WEBPACK_IMPORTED_MODULE_20__[\"DetectProtectiveEquipmentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.detectText = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectTextCommand__WEBPACK_IMPORTED_MODULE_21__[\"DetectTextCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.getCelebrityInfo = function (args, optionsOrCb, cb) {\n var command = new _commands_GetCelebrityInfoCommand__WEBPACK_IMPORTED_MODULE_22__[\"GetCelebrityInfoCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.getCelebrityRecognition = function (args, optionsOrCb, cb) {\n var command = new _commands_GetCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_23__[\"GetCelebrityRecognitionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.getContentModeration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetContentModerationCommand__WEBPACK_IMPORTED_MODULE_24__[\"GetContentModerationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.getFaceDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_GetFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_25__[\"GetFaceDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.getFaceSearch = function (args, optionsOrCb, cb) {\n var command = new _commands_GetFaceSearchCommand__WEBPACK_IMPORTED_MODULE_26__[\"GetFaceSearchCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.getLabelDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_GetLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_27__[\"GetLabelDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.getPersonTracking = function (args, optionsOrCb, cb) {\n var command = new _commands_GetPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_28__[\"GetPersonTrackingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.getSegmentDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_GetSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_29__[\"GetSegmentDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.getTextDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_GetTextDetectionCommand__WEBPACK_IMPORTED_MODULE_30__[\"GetTextDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.indexFaces = function (args, optionsOrCb, cb) {\n var command = new _commands_IndexFacesCommand__WEBPACK_IMPORTED_MODULE_31__[\"IndexFacesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.listCollections = function (args, optionsOrCb, cb) {\n var command = new _commands_ListCollectionsCommand__WEBPACK_IMPORTED_MODULE_32__[\"ListCollectionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.listFaces = function (args, optionsOrCb, cb) {\n var command = new _commands_ListFacesCommand__WEBPACK_IMPORTED_MODULE_33__[\"ListFacesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.listStreamProcessors = function (args, optionsOrCb, cb) {\n var command = new _commands_ListStreamProcessorsCommand__WEBPACK_IMPORTED_MODULE_34__[\"ListStreamProcessorsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.recognizeCelebrities = function (args, optionsOrCb, cb) {\n var command = new _commands_RecognizeCelebritiesCommand__WEBPACK_IMPORTED_MODULE_35__[\"RecognizeCelebritiesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.searchFaces = function (args, optionsOrCb, cb) {\n var command = new _commands_SearchFacesCommand__WEBPACK_IMPORTED_MODULE_37__[\"SearchFacesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.searchFacesByImage = function (args, optionsOrCb, cb) {\n var command = new _commands_SearchFacesByImageCommand__WEBPACK_IMPORTED_MODULE_36__[\"SearchFacesByImageCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startCelebrityRecognition = function (args, optionsOrCb, cb) {\n var command = new _commands_StartCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_38__[\"StartCelebrityRecognitionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startContentModeration = function (args, optionsOrCb, cb) {\n var command = new _commands_StartContentModerationCommand__WEBPACK_IMPORTED_MODULE_39__[\"StartContentModerationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startFaceDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_StartFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_40__[\"StartFaceDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startFaceSearch = function (args, optionsOrCb, cb) {\n var command = new _commands_StartFaceSearchCommand__WEBPACK_IMPORTED_MODULE_41__[\"StartFaceSearchCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startLabelDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_StartLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_42__[\"StartLabelDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startPersonTracking = function (args, optionsOrCb, cb) {\n var command = new _commands_StartPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_43__[\"StartPersonTrackingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startProjectVersion = function (args, optionsOrCb, cb) {\n var command = new _commands_StartProjectVersionCommand__WEBPACK_IMPORTED_MODULE_44__[\"StartProjectVersionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startSegmentDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_StartSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_45__[\"StartSegmentDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startStreamProcessor = function (args, optionsOrCb, cb) {\n var command = new _commands_StartStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_46__[\"StartStreamProcessorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.startTextDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_StartTextDetectionCommand__WEBPACK_IMPORTED_MODULE_47__[\"StartTextDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.stopProjectVersion = function (args, optionsOrCb, cb) {\n var command = new _commands_StopProjectVersionCommand__WEBPACK_IMPORTED_MODULE_48__[\"StopProjectVersionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Rekognition.prototype.stopStreamProcessor = function (args, optionsOrCb, cb) {\n var command = new _commands_StopStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_49__[\"StopStreamProcessorCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return Rekognition;\n}(_RekognitionClient__WEBPACK_IMPORTED_MODULE_1__[\"RekognitionClient\"]));\n\n//# sourceMappingURL=Rekognition.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js ***! \*******************************************************************************/ /*! exports provided: RekognitionClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RekognitionClient\", function() { return RekognitionClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n *

This is the Amazon Rekognition API reference.

\n */\nvar RekognitionClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(RekognitionClient, _super);\n function RekognitionClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n RekognitionClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return RekognitionClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=RekognitionClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CompareFacesCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CompareFacesCommand.js ***! \******************************************************************************************/ /*! exports provided: CompareFacesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesCommand\", function() { return CompareFacesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Compares a face in the source input image with\n * each of the 100 largest faces detected in the target input image.\n *

\n * \n *

If the source image contains multiple faces, the service detects the largest face\n * and compares it with each face detected in the target image.

\n *
\n *\n *\n *

You pass the input and target images either as base64-encoded image bytes or as\n * references to images in an Amazon S3 bucket. If you use the\n * AWS\n * CLI to call Amazon Rekognition operations, passing image bytes isn't\n * supported. The image must be formatted as a PNG or JPEG file.

\n *

In response, the operation returns an array of face matches ordered by similarity score\n * in descending order. For each face match, the response provides a bounding box of the face,\n * facial landmarks, pose details (pitch, role, and yaw), quality (brightness and sharpness), and\n * confidence value (indicating the level of confidence that the bounding box contains a face).\n * The response also provides a similarity score, which indicates how closely the faces match.

\n *\n * \n *

By default, only faces with a similarity score of greater than or equal to 80% are\n * returned in the response. You can change this value by specifying the\n * SimilarityThreshold parameter.

\n *
\n *\n *

\n * CompareFaces also returns an array of faces that don't match the source image.\n * For each face, it returns a bounding box, confidence value, landmarks, pose details, and quality.\n * The response also returns information about the face in the source image, including the bounding box\n * of the face and confidence value.

\n *\n *

The QualityFilter input parameter allows you to filter out detected faces\n * that don’t meet a required quality bar. The quality bar is based on a\n * variety of common use cases. Use QualityFilter to set the quality bar\n * by specifying LOW, MEDIUM, or HIGH.\n * If you do not want to filter detected faces, specify NONE. The default value is NONE.

\n *\n *

If the image doesn't contain Exif metadata, CompareFaces returns orientation information for the\n * source and target images. Use these values to display the images with the correct image orientation.

\n *

If no faces are detected in the source or target images, CompareFaces returns an\n * InvalidParameterException error.

\n *\n *\n * \n *

This is a stateless API operation. That is, data returned by this operation doesn't persist.

\n *
\n *\n *\n *

For an example, see Comparing Faces in Images in the Amazon Rekognition Developer Guide.

\n *

This operation requires permissions to perform the rekognition:CompareFaces\n * action.

\n */\nvar CompareFacesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CompareFacesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CompareFacesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CompareFacesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"CompareFacesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CompareFacesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CompareFacesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CompareFacesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CompareFacesCommand\"])(input, context);\n };\n CompareFacesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CompareFacesCommand\"])(output, context);\n };\n return CompareFacesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CompareFacesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CompareFacesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateCollectionCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateCollectionCommand.js ***! \**********************************************************************************************/ /*! exports provided: CreateCollectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateCollectionCommand\", function() { return CreateCollectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a collection in an AWS Region. You can add faces to the collection using the\n * IndexFaces operation.

\n *

For example, you might create collections, one for each of your application users. A\n * user can then index faces using the IndexFaces operation and persist results in a\n * specific collection. Then, a user can search the collection for faces in the user-specific\n * container.

\n *

When you create a collection, it is associated with the latest version of the face model version.

\n * \n *

Collection names are case-sensitive.

\n *
\n *\n *

This operation requires permissions to perform the\n * rekognition:CreateCollection action.

\n */\nvar CreateCollectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateCollectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateCollectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateCollectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"CreateCollectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateCollectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateCollectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateCollectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateCollectionCommand\"])(input, context);\n };\n CreateCollectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateCollectionCommand\"])(output, context);\n };\n return CreateCollectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateCollectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateCollectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectCommand.js ***! \*******************************************************************************************/ /*! exports provided: CreateProjectCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectCommand\", function() { return CreateProjectCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new Amazon Rekognition Custom Labels project. A project is a logical grouping of resources (images, Labels, models)\n * and operations (training, evaluation and detection).

\n *

This operation requires permissions to perform the rekognition:CreateProject action.

\n */\nvar CreateProjectCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateProjectCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateProjectCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateProjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"CreateProjectCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateProjectRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateProjectResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateProjectCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateProjectCommand\"])(input, context);\n };\n CreateProjectCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateProjectCommand\"])(output, context);\n };\n return CreateProjectCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateProjectCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectVersionCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectVersionCommand.js ***! \**************************************************************************************************/ /*! exports provided: CreateProjectVersionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectVersionCommand\", function() { return CreateProjectVersionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a new version of a model and begins training.\n * Models are managed as part of an Amazon Rekognition Custom Labels project. You can specify\n * one training dataset and one testing dataset. The response from CreateProjectVersion\n * is an Amazon Resource Name (ARN) for the version of the model.

\n *

Training takes a while to complete. You can get the current status by calling\n * DescribeProjectVersions.

\n *

Once training has successfully completed, call DescribeProjectVersions to\n * get the training results and evaluate the model.\n *

\n *

After evaluating the model, you start the model\n * by calling StartProjectVersion.

\n *

This operation requires permissions to perform the rekognition:CreateProjectVersion action.

\n */\nvar CreateProjectVersionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateProjectVersionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateProjectVersionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateProjectVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"CreateProjectVersionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateProjectVersionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateProjectVersionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateProjectVersionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateProjectVersionCommand\"])(input, context);\n };\n CreateProjectVersionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateProjectVersionCommand\"])(output, context);\n };\n return CreateProjectVersionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateProjectVersionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectVersionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateStreamProcessorCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateStreamProcessorCommand.js ***! \***************************************************************************************************/ /*! exports provided: CreateStreamProcessorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamProcessorCommand\", function() { return CreateStreamProcessorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates an Amazon Rekognition stream processor that you can use to detect and recognize faces in a streaming video.

\n *

Amazon Rekognition Video is a consumer of live video from Amazon Kinesis Video Streams. Amazon Rekognition Video sends analysis results to Amazon Kinesis Data Streams.

\n *

You provide as input a Kinesis video stream (Input) and a Kinesis data stream (Output) stream. You also specify the\n * face recognition criteria in Settings. For example, the collection containing faces that you want to recognize.\n * Use Name to assign an identifier for the stream processor. You use Name\n * to manage the stream processor. For example, you can start processing the source video by calling StartStreamProcessor with\n * the Name field.

\n *

After you have finished analyzing a streaming video, use StopStreamProcessor to\n * stop processing. You can delete the stream processor by calling DeleteStreamProcessor.

\n */\nvar CreateStreamProcessorCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateStreamProcessorCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateStreamProcessorCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateStreamProcessorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"CreateStreamProcessorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateStreamProcessorRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateStreamProcessorResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateStreamProcessorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateStreamProcessorCommand\"])(input, context);\n };\n CreateStreamProcessorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateStreamProcessorCommand\"])(output, context);\n };\n return CreateStreamProcessorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateStreamProcessorCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateStreamProcessorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteCollectionCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteCollectionCommand.js ***! \**********************************************************************************************/ /*! exports provided: DeleteCollectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteCollectionCommand\", function() { return DeleteCollectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the specified collection. Note that this operation\n * removes all faces in the collection. For an example, see delete-collection-procedure.

\n *\n *

This operation requires permissions to perform the\n * rekognition:DeleteCollection action.

\n */\nvar DeleteCollectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteCollectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteCollectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteCollectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DeleteCollectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteCollectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteCollectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteCollectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteCollectionCommand\"])(input, context);\n };\n DeleteCollectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteCollectionCommand\"])(output, context);\n };\n return DeleteCollectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteCollectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteCollectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteFacesCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteFacesCommand.js ***! \*****************************************************************************************/ /*! exports provided: DeleteFacesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteFacesCommand\", function() { return DeleteFacesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes faces from a collection. You specify a collection ID and an array of face IDs\n * to remove from the collection.

\n *

This operation requires permissions to perform the rekognition:DeleteFaces\n * action.

\n */\nvar DeleteFacesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteFacesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteFacesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteFacesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DeleteFacesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteFacesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteFacesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteFacesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteFacesCommand\"])(input, context);\n };\n DeleteFacesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteFacesCommand\"])(output, context);\n };\n return DeleteFacesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteFacesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteFacesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectCommand.js ***! \*******************************************************************************************/ /*! exports provided: DeleteProjectCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectCommand\", function() { return DeleteProjectCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes an Amazon Rekognition Custom Labels project. To delete a project you must first delete all models associated\n * with the project. To delete a model, see DeleteProjectVersion.

\n *

This operation requires permissions to perform the\n * rekognition:DeleteProject action.

\n */\nvar DeleteProjectCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteProjectCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteProjectCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteProjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DeleteProjectCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteProjectRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteProjectResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteProjectCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteProjectCommand\"])(input, context);\n };\n DeleteProjectCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteProjectCommand\"])(output, context);\n };\n return DeleteProjectCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteProjectCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectVersionCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectVersionCommand.js ***! \**************************************************************************************************/ /*! exports provided: DeleteProjectVersionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectVersionCommand\", function() { return DeleteProjectVersionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes an Amazon Rekognition Custom Labels model.

\n *

You can't delete a model if it is running or if it is training.\n * To check the status of a model, use the Status field returned\n * from DescribeProjectVersions.\n * To stop a running model call StopProjectVersion. If the model\n * is training, wait until it finishes.

\n *

This operation requires permissions to perform the\n * rekognition:DeleteProjectVersion action.

\n */\nvar DeleteProjectVersionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteProjectVersionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteProjectVersionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteProjectVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DeleteProjectVersionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteProjectVersionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteProjectVersionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteProjectVersionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteProjectVersionCommand\"])(input, context);\n };\n DeleteProjectVersionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteProjectVersionCommand\"])(output, context);\n };\n return DeleteProjectVersionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteProjectVersionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectVersionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteStreamProcessorCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteStreamProcessorCommand.js ***! \***************************************************************************************************/ /*! exports provided: DeleteStreamProcessorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamProcessorCommand\", function() { return DeleteStreamProcessorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the stream processor identified by Name. You assign the value for Name when you create the stream processor with\n * CreateStreamProcessor. You might not be able to use the same name for a stream processor for a few seconds after calling DeleteStreamProcessor.

\n */\nvar DeleteStreamProcessorCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteStreamProcessorCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteStreamProcessorCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteStreamProcessorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DeleteStreamProcessorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteStreamProcessorRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteStreamProcessorResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteStreamProcessorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteStreamProcessorCommand\"])(input, context);\n };\n DeleteStreamProcessorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteStreamProcessorCommand\"])(output, context);\n };\n return DeleteStreamProcessorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteStreamProcessorCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteStreamProcessorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeCollectionCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeCollectionCommand.js ***! \************************************************************************************************/ /*! exports provided: DescribeCollectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeCollectionCommand\", function() { return DescribeCollectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Describes the specified collection. You can use DescribeCollection to get\n * information, such as the number of faces indexed into a collection and the version of the\n * model used by the collection for face detection.

\n *\n *

For more information, see Describing a Collection in the\n * Amazon Rekognition Developer Guide.

\n */\nvar DescribeCollectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeCollectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeCollectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeCollectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DescribeCollectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeCollectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeCollectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeCollectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeCollectionCommand\"])(input, context);\n };\n DescribeCollectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeCollectionCommand\"])(output, context);\n };\n return DescribeCollectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeCollectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeCollectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectVersionsCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectVersionsCommand.js ***! \*****************************************************************************************************/ /*! exports provided: DescribeProjectVersionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectVersionsCommand\", function() { return DescribeProjectVersionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists and describes the models in an Amazon Rekognition Custom Labels project. You\n * can specify up to 10 model versions in ProjectVersionArns. If\n * you don't specify a value, descriptions for all models are returned.

\n *

This operation requires permissions to perform the rekognition:DescribeProjectVersions\n * action.

\n */\nvar DescribeProjectVersionsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeProjectVersionsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeProjectVersionsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeProjectVersionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DescribeProjectVersionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeProjectVersionsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeProjectVersionsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeProjectVersionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeProjectVersionsCommand\"])(input, context);\n };\n DescribeProjectVersionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeProjectVersionsCommand\"])(output, context);\n };\n return DescribeProjectVersionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeProjectVersionsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectVersionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectsCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectsCommand.js ***! \**********************************************************************************************/ /*! exports provided: DescribeProjectsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectsCommand\", function() { return DescribeProjectsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Lists and gets information about your Amazon Rekognition Custom Labels projects.

\n *

This operation requires permissions to perform the rekognition:DescribeProjects action.

\n */\nvar DescribeProjectsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeProjectsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeProjectsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeProjectsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DescribeProjectsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeProjectsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeProjectsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeProjectsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeProjectsCommand\"])(input, context);\n };\n DescribeProjectsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeProjectsCommand\"])(output, context);\n };\n return DescribeProjectsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeProjectsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeStreamProcessorCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeStreamProcessorCommand.js ***! \*****************************************************************************************************/ /*! exports provided: DescribeStreamProcessorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamProcessorCommand\", function() { return DescribeStreamProcessorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Provides information about a stream processor created by CreateStreamProcessor. You can get information about the input and output streams, the input parameters for the face recognition being performed,\n * and the current status of the stream processor.

\n */\nvar DescribeStreamProcessorCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeStreamProcessorCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeStreamProcessorCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeStreamProcessorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DescribeStreamProcessorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamProcessorRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeStreamProcessorResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeStreamProcessorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeStreamProcessorCommand\"])(input, context);\n };\n DescribeStreamProcessorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeStreamProcessorCommand\"])(output, context);\n };\n return DescribeStreamProcessorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeStreamProcessorCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeStreamProcessorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectCustomLabelsCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectCustomLabelsCommand.js ***! \************************************************************************************************/ /*! exports provided: DetectCustomLabelsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectCustomLabelsCommand\", function() { return DetectCustomLabelsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects custom labels in a supplied image by using an Amazon Rekognition Custom Labels model.

\n *

You specify which version of a model version to use by using the ProjectVersionArn input\n * parameter.

\n *

You pass the input image as base64-encoded image bytes or as a reference to an image in\n * an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing\n * image bytes is not supported. The image must be either a PNG or JPEG formatted file.

\n *

For each object that the model version detects on an image, the API returns a\n * (CustomLabel) object in an array (CustomLabels).\n * Each CustomLabel object provides the label name (Name), the level\n * of confidence that the image contains the object (Confidence), and\n * object location information, if it exists, for the label on the image (Geometry).

\n *

During training model calculates a threshold value that determines\n * if a prediction for a label is true. By default, DetectCustomLabels doesn't\n * return labels whose confidence value is below the model's calculated threshold value. To filter\n * labels that are returned, specify a value for MinConfidence that is higher than the\n * model's calculated threshold. You can get the model's calculated threshold from the model's\n * training results shown in the Amazon Rekognition Custom Labels console.\n * To get all labels, regardless of confidence, specify a MinConfidence\n * value of 0.

\n *

You can also add the MaxResults parameter\n * to limit the number of labels returned.

\n *\n *

This is a stateless API operation. That is, the operation does not persist any\n * data.

\n *

This operation requires permissions to perform the\n * rekognition:DetectCustomLabels action.

\n */\nvar DetectCustomLabelsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectCustomLabelsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectCustomLabelsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectCustomLabelsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DetectCustomLabelsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectCustomLabelsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectCustomLabelsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectCustomLabelsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectCustomLabelsCommand\"])(input, context);\n };\n DetectCustomLabelsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectCustomLabelsCommand\"])(output, context);\n };\n return DetectCustomLabelsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectCustomLabelsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectCustomLabelsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectFacesCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectFacesCommand.js ***! \*****************************************************************************************/ /*! exports provided: DetectFacesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectFacesCommand\", function() { return DetectFacesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects faces within an image that is provided as input.

\n *\n *

\n * DetectFaces detects the 100 largest faces in the image. For each face\n * detected, the operation returns face details. These details include a bounding box of the\n * face, a confidence value (that the bounding box contains a face), and a fixed set of\n * attributes such as facial landmarks (for example, coordinates of eye and mouth),\n * presence of beard, sunglasses, and so on.

\n *

The face-detection algorithm is most effective on frontal faces. For non-frontal or\n * obscured faces, the algorithm might not detect the faces or might detect faces with lower\n * confidence.

\n *

You pass the input image either as base64-encoded image bytes or as a reference to an\n * image in an Amazon S3 bucket. If you use the AWS CLI\n * to call Amazon Rekognition operations, passing image bytes is not\n * supported. The image must be either a PNG or JPEG formatted file.

\n *\n * \n *

This is a stateless API operation. That is, the operation does not persist any\n * data.

\n *
\n *\n *

This operation requires permissions to perform the\n * rekognition:DetectFaces action.

\n */\nvar DetectFacesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectFacesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectFacesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectFacesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DetectFacesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectFacesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectFacesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectFacesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectFacesCommand\"])(input, context);\n };\n DetectFacesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectFacesCommand\"])(output, context);\n };\n return DetectFacesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectFacesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectFacesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectLabelsCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectLabelsCommand.js ***! \******************************************************************************************/ /*! exports provided: DetectLabelsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectLabelsCommand\", function() { return DetectLabelsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects instances of real-world entities within an image (JPEG or PNG)\n * provided as input. This includes objects like flower, tree, and table; events like\n * wedding, graduation, and birthday party; and concepts like landscape, evening, and nature.\n *

\n *\n *

For an example, see Analyzing Images Stored in an Amazon S3 Bucket in the Amazon Rekognition Developer Guide.

\n * \n *\n *

\n * DetectLabels does not support the detection of activities. However, activity detection\n * is supported for label detection in videos. For more information, see StartLabelDetection in the Amazon Rekognition Developer Guide.

\n *
\n *\n *

You pass the input image as base64-encoded image bytes or as a reference to an image in\n * an Amazon S3 bucket. If you use the\n * AWS\n * CLI to call Amazon Rekognition operations, passing image bytes is not\n * supported. The image must be either a PNG or JPEG formatted file.

\n *

For each object, scene, and concept the API returns one or more labels. Each label\n * provides the object name, and the level of confidence that the image contains the object. For\n * example, suppose the input image has a lighthouse, the sea, and a rock. The response includes\n * all three labels, one for each object.

\n *\n *

\n * {Name: lighthouse, Confidence: 98.4629}\n *

\n *

\n * {Name: rock,Confidence: 79.2097}\n *

\n *

\n * {Name: sea,Confidence: 75.061}\n *

\n *

In the preceding example, the operation returns one label for each of the three\n * objects. The operation can also return multiple labels for the same object in the image. For\n * example, if the input image shows a flower (for example, a tulip), the operation might return\n * the following three labels.

\n *

\n * {Name: flower,Confidence: 99.0562}\n *

\n *

\n * {Name: plant,Confidence: 99.0562}\n *

\n *

\n * {Name: tulip,Confidence: 99.0562}\n *

\n *\n *

In this example, the detection algorithm more precisely identifies the flower as a\n * tulip.

\n *

In response, the API returns an array of labels. In addition, the response also\n * includes the orientation correction. Optionally, you can specify MinConfidence to\n * control the confidence threshold for the labels returned. The default is 55%. You can also add\n * the MaxLabels parameter to limit the number of labels returned.

\n * \n *

If the object detected is a person, the operation doesn't provide the same facial\n * details that the DetectFaces operation provides.

\n *
\n *

\n * DetectLabels returns bounding boxes for instances of common object labels in an array of\n * Instance objects. An Instance object contains a\n * BoundingBox object, for the location of the label on the image. It also includes\n * the confidence by which the bounding box was detected.

\n *

\n * DetectLabels also returns a hierarchical taxonomy of detected labels. For example,\n * a detected car might be assigned the label car. The label car\n * has two parent labels: Vehicle (its parent) and Transportation (its\n * grandparent).\n * The response returns the entire list of ancestors for a label. Each ancestor is a unique label in the response.\n * In the previous example, Car, Vehicle, and Transportation\n * are returned as unique labels in the response.\n *

\n *

This is a stateless API operation. That is, the operation does not persist any\n * data.

\n *

This operation requires permissions to perform the\n * rekognition:DetectLabels action.

\n */\nvar DetectLabelsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectLabelsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectLabelsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectLabelsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DetectLabelsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectLabelsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectLabelsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectLabelsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectLabelsCommand\"])(input, context);\n };\n DetectLabelsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectLabelsCommand\"])(output, context);\n };\n return DetectLabelsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectLabelsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectLabelsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectModerationLabelsCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectModerationLabelsCommand.js ***! \****************************************************************************************************/ /*! exports provided: DetectModerationLabelsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectModerationLabelsCommand\", function() { return DetectModerationLabelsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects unsafe content in a specified JPEG or PNG format image.\n * Use DetectModerationLabels to moderate images depending on your requirements.\n * For example, you might want to filter images that contain nudity, but not images containing\n * suggestive content.

\n *

To filter images, use the labels returned by DetectModerationLabels\n * to determine which types of content are appropriate.

\n *\n *

For information about moderation labels,\n * see Detecting Unsafe Content in the Amazon Rekognition Developer Guide.

\n *

You pass the input image either as base64-encoded image bytes or as a reference to an\n * image in an Amazon S3 bucket. If you use the\n * AWS\n * CLI to call Amazon Rekognition operations, passing image bytes is not\n * supported. The image must be either a PNG or JPEG formatted file.

\n */\nvar DetectModerationLabelsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectModerationLabelsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectModerationLabelsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectModerationLabelsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DetectModerationLabelsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectModerationLabelsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectModerationLabelsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectModerationLabelsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectModerationLabelsCommand\"])(input, context);\n };\n DetectModerationLabelsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectModerationLabelsCommand\"])(output, context);\n };\n return DetectModerationLabelsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectModerationLabelsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectModerationLabelsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectProtectiveEquipmentCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectProtectiveEquipmentCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DetectProtectiveEquipmentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectProtectiveEquipmentCommand\", function() { return DetectProtectiveEquipmentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects Personal Protective Equipment (PPE) worn by people detected in an image. Amazon Rekognition can detect the\n * following types of PPE.

\n *
    \n *
  • \n *

    Face cover

    \n *
  • \n *
  • \n *

    Hand cover

    \n *
  • \n *
  • \n *

    Head cover

    \n *
  • \n *
\n *\n *

You pass the input image as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket.\n * The image must be either a PNG or JPG formatted file.

\n *\n *

\n * DetectProtectiveEquipment detects PPE worn by up to 15 persons detected in an image.

\n *

For each person detected in the image the API returns an array of body parts (face, head, left-hand, right-hand).\n * For each body part, an array of detected items of PPE is returned, including an indicator of whether or not the PPE\n * covers the body part. The API returns the confidence it has in each detection\n * (person, PPE, body part and body part coverage). It also returns a bounding box (BoundingBox) for each detected\n * person and each detected item of PPE.

\n *

You can optionally request a summary of detected PPE items with the SummarizationAttributes input parameter.\n * The summary provides the following information.

\n *
    \n *
  • \n *

    The persons detected as wearing all of the types of PPE that you specify.

    \n *
  • \n *
  • \n *

    The persons detected as not wearing all of the types PPE that you specify.

    \n *
  • \n *
  • \n *

    The persons detected where PPE adornment could not be determined.

    \n *
  • \n *
\n *

This is a stateless API operation. That is, the operation does not persist any data.

\n *\n *

This operation requires permissions to perform the rekognition:DetectProtectiveEquipment action.

\n */\nvar DetectProtectiveEquipmentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectProtectiveEquipmentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectProtectiveEquipmentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectProtectiveEquipmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DetectProtectiveEquipmentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectProtectiveEquipmentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectProtectiveEquipmentResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectProtectiveEquipmentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectProtectiveEquipmentCommand\"])(input, context);\n };\n DetectProtectiveEquipmentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectProtectiveEquipmentCommand\"])(output, context);\n };\n return DetectProtectiveEquipmentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectProtectiveEquipmentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectProtectiveEquipmentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectTextCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectTextCommand.js ***! \****************************************************************************************/ /*! exports provided: DetectTextCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectTextCommand\", function() { return DetectTextCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects text in the input image and converts it into machine-readable text.

\n *

Pass the input image as base64-encoded image bytes or as a reference to an image in an\n * Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, you must pass it as a\n * reference to an image in an Amazon S3 bucket. For the AWS CLI, passing image bytes is not\n * supported. The image must be either a .png or .jpeg formatted file.

\n *

The DetectText operation returns text in an array of TextDetection elements, TextDetections. Each\n * TextDetection element provides information about a single word or line of text\n * that was detected in the image.

\n *

A word is one or more ISO basic latin script characters that are not separated by spaces.\n * DetectText can detect up to 50 words in an image.

\n *

A line is a string of equally spaced words. A line isn't necessarily a complete\n * sentence. For example, a driver's license number is detected as a line. A line ends when there\n * is no aligned text after it. Also, a line ends when there is a large gap between words,\n * relative to the length of the words. This means, depending on the gap between words, Amazon Rekognition\n * may detect multiple lines in text aligned in the same direction. Periods don't represent the\n * end of a line. If a sentence spans multiple lines, the DetectText operation\n * returns multiple lines.

\n *

To determine whether a TextDetection element is a line of text or a word,\n * use the TextDetection object Type field.

\n *

To be detected, text must be within +/- 90 degrees orientation of the horizontal axis.

\n *\n *

For more information, see DetectText in the Amazon Rekognition Developer Guide.

\n */\nvar DetectTextCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectTextCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectTextCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectTextCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"DetectTextCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectTextRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectTextResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectTextCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectTextCommand\"])(input, context);\n };\n DetectTextCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectTextCommand\"])(output, context);\n };\n return DetectTextCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectTextCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectTextCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityInfoCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityInfoCommand.js ***! \**********************************************************************************************/ /*! exports provided: GetCelebrityInfoCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityInfoCommand\", function() { return GetCelebrityInfoCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the name and additional information about a celebrity based on his or her\n * Amazon Rekognition ID. The additional information is returned as an array of URLs. If there is no\n * additional information about the celebrity, this list is empty.

\n *\n *

For more information, see Recognizing Celebrities in an Image in\n * the Amazon Rekognition Developer Guide.

\n *

This operation requires permissions to perform the\n * rekognition:GetCelebrityInfo action.

\n */\nvar GetCelebrityInfoCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetCelebrityInfoCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetCelebrityInfoCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetCelebrityInfoCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"GetCelebrityInfoCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCelebrityInfoRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCelebrityInfoResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetCelebrityInfoCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetCelebrityInfoCommand\"])(input, context);\n };\n GetCelebrityInfoCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetCelebrityInfoCommand\"])(output, context);\n };\n return GetCelebrityInfoCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetCelebrityInfoCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityInfoCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityRecognitionCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityRecognitionCommand.js ***! \*****************************************************************************************************/ /*! exports provided: GetCelebrityRecognitionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityRecognitionCommand\", function() { return GetCelebrityRecognitionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the celebrity recognition results for a Amazon Rekognition Video analysis started by\n * StartCelebrityRecognition.

\n *

Celebrity recognition in a video is an asynchronous operation. Analysis is started by a call\n * to StartCelebrityRecognition which returns a job identifier (JobId).\n * When the celebrity recognition operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service\n * topic registered in the initial call to StartCelebrityRecognition.\n * To get the results of the celebrity recognition analysis, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. If so, call GetCelebrityDetection and pass the job identifier\n * (JobId) from the initial call to StartCelebrityDetection.

\n *\n *

For more information, see Working With Stored Videos in the Amazon Rekognition Developer Guide.

\n *

\n * GetCelebrityRecognition returns detected celebrities and the time(s) they are detected in an array\n * (Celebrities) of CelebrityRecognition\n *\n * objects. Each CelebrityRecognition contains information about the celebrity in a CelebrityDetail\n * object and the time, Timestamp, the celebrity was detected.\n *

\n * \n *\n *

\n * GetCelebrityRecognition only returns the default\n * facial attributes (BoundingBox, Confidence,\n * Landmarks, Pose, and Quality). The other facial attributes listed\n * in the Face object of the following response syntax are not returned. For more information,\n * see FaceDetail in the Amazon Rekognition Developer Guide.

\n *
\n *

By default, the Celebrities array is sorted by time (milliseconds from the start of the video).\n * You can also sort the array by celebrity by specifying the value ID in the SortBy input parameter.

\n *

The CelebrityDetail object includes the celebrity identifer and additional information urls. If you don't store\n * the additional information urls, you can get them later by calling GetCelebrityInfo with the celebrity identifer.

\n *

No information is returned for faces not recognized as celebrities.

\n *

Use MaxResults parameter to limit the number of labels returned. If there are more results than\n * specified in MaxResults, the value of NextToken in the operation response contains a\n * pagination token for getting the next set of results. To get the next page of results, call GetCelebrityDetection\n * and populate the NextToken request parameter with the token\n * value returned from the previous call to GetCelebrityRecognition.

\n */\nvar GetCelebrityRecognitionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetCelebrityRecognitionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetCelebrityRecognitionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetCelebrityRecognitionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"GetCelebrityRecognitionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCelebrityRecognitionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetCelebrityRecognitionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetCelebrityRecognitionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetCelebrityRecognitionCommand\"])(input, context);\n };\n GetCelebrityRecognitionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetCelebrityRecognitionCommand\"])(output, context);\n };\n return GetCelebrityRecognitionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetCelebrityRecognitionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityRecognitionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetContentModerationCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetContentModerationCommand.js ***! \**************************************************************************************************/ /*! exports provided: GetContentModerationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetContentModerationCommand\", function() { return GetContentModerationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the unsafe content analysis results for a Amazon Rekognition Video analysis started by\n * StartContentModeration.

\n *\n *

Unsafe content analysis of a video is an asynchronous operation. You start analysis by calling\n * StartContentModeration which returns a job identifier (JobId).\n * When analysis finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service\n * topic registered in the initial call to StartContentModeration.\n * To get the results of the unsafe content analysis, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. If so, call GetContentModeration and pass the job identifier\n * (JobId) from the initial call to StartContentModeration.

\n *\n *

For more information, see Working with Stored Videos in the\n * Amazon Rekognition Devlopers Guide.

\n *

\n * GetContentModeration returns detected unsafe content labels,\n * and the time they are detected, in an array, ModerationLabels, of\n * ContentModerationDetection objects.\n *

\n *

By default, the moderated labels are returned sorted by time, in milliseconds from the start of the\n * video. You can also sort them by moderated label by specifying NAME for the SortBy\n * input parameter.

\n *

Since video analysis can return a large number of results, use the MaxResults parameter to limit\n * the number of labels returned in a single call to GetContentModeration. If there are more results than\n * specified in MaxResults, the value of NextToken in the operation response contains a\n * pagination token for getting the next set of results. To get the next page of results, call GetContentModeration\n * and populate the NextToken request parameter with the value of NextToken\n * returned from the previous call to GetContentModeration.

\n *\n *

For more information, see Detecting Unsafe Content in the Amazon Rekognition Developer Guide.

\n */\nvar GetContentModerationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetContentModerationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetContentModerationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetContentModerationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"GetContentModerationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetContentModerationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetContentModerationResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetContentModerationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetContentModerationCommand\"])(input, context);\n };\n GetContentModerationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetContentModerationCommand\"])(output, context);\n };\n return GetContentModerationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetContentModerationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetContentModerationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceDetectionCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceDetectionCommand.js ***! \**********************************************************************************************/ /*! exports provided: GetFaceDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetFaceDetectionCommand\", function() { return GetFaceDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets face detection results for a Amazon Rekognition Video analysis started by StartFaceDetection.

\n *

Face detection with Amazon Rekognition Video is an asynchronous operation. You start face detection by calling StartFaceDetection\n * which returns a job identifier (JobId). When the face detection operation finishes, Amazon Rekognition Video publishes a completion status to\n * the Amazon Simple Notification Service topic registered in the initial call to StartFaceDetection. To get the results\n * of the face detection operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED.\n * If so, call GetFaceDetection and pass the job identifier\n * (JobId) from the initial call to StartFaceDetection.

\n *

\n * GetFaceDetection returns an array of detected faces (Faces) sorted by the time the faces were detected.

\n *

Use MaxResults parameter to limit the number of labels returned. If there are more results than\n * specified in MaxResults, the value of NextToken in the operation response contains a pagination token for getting the next set\n * of results. To get the next page of results, call GetFaceDetection and populate the NextToken request parameter with the token\n * value returned from the previous call to GetFaceDetection.

\n */\nvar GetFaceDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetFaceDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetFaceDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetFaceDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"GetFaceDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetFaceDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetFaceDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetFaceDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetFaceDetectionCommand\"])(input, context);\n };\n GetFaceDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetFaceDetectionCommand\"])(output, context);\n };\n return GetFaceDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetFaceDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceSearchCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceSearchCommand.js ***! \*******************************************************************************************/ /*! exports provided: GetFaceSearchCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetFaceSearchCommand\", function() { return GetFaceSearchCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the face search results for Amazon Rekognition Video face search started by\n * StartFaceSearch. The search returns faces in a collection that match the faces\n * of persons detected in a video. It also includes the time(s) that faces are matched in the video.

\n *

Face search in a video is an asynchronous operation. You start face search by calling\n * to StartFaceSearch which returns a job identifier (JobId).\n * When the search operation finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service\n * topic registered in the initial call to StartFaceSearch.\n * To get the search results, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. If so, call GetFaceSearch and pass the job identifier\n * (JobId) from the initial call to StartFaceSearch.

\n *\n *

For more information, see Searching Faces in a Collection in the\n * Amazon Rekognition Developer Guide.

\n *

The search results are retured in an array, Persons, of\n * PersonMatch objects. EachPersonMatch element contains\n * details about the matching faces in the input collection, person information (facial attributes,\n * bounding boxes, and person identifer)\n * for the matched person, and the time the person was matched in the video.

\n * \n *\n *

\n * GetFaceSearch only returns the default\n * facial attributes (BoundingBox, Confidence,\n * Landmarks, Pose, and Quality). The other facial attributes listed\n * in the Face object of the following response syntax are not returned. For more information,\n * see FaceDetail in the Amazon Rekognition Developer Guide.

\n *
\n *\n *

By default, the Persons array is sorted by the time, in milliseconds from the\n * start of the video, persons are matched.\n * You can also sort by persons by specifying INDEX for the SORTBY input\n * parameter.

\n */\nvar GetFaceSearchCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetFaceSearchCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetFaceSearchCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetFaceSearchCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"GetFaceSearchCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetFaceSearchRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetFaceSearchResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetFaceSearchCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetFaceSearchCommand\"])(input, context);\n };\n GetFaceSearchCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetFaceSearchCommand\"])(output, context);\n };\n return GetFaceSearchCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetFaceSearchCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceSearchCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetLabelDetectionCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetLabelDetectionCommand.js ***! \***********************************************************************************************/ /*! exports provided: GetLabelDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLabelDetectionCommand\", function() { return GetLabelDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the label detection results of a Amazon Rekognition Video analysis started by StartLabelDetection.

\n *\n *

The label detection operation is started by a call to StartLabelDetection\n * which returns a job identifier (JobId). When the label detection operation finishes, Amazon Rekognition publishes a completion status to\n * the Amazon Simple Notification Service topic registered in the initial call to StartlabelDetection. To get the results\n * of the label detection operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED.\n * If so, call GetLabelDetection and pass the job identifier\n * (JobId) from the initial call to StartLabelDetection.

\n *

\n * GetLabelDetection returns an array of detected labels (Labels) sorted by the time\n * the labels were detected. You can also sort by the label name by specifying NAME for the\n * SortBy input parameter.

\n *

The labels returned include the label name, the percentage confidence in the accuracy of the detected label,\n * and the time the label was detected in the video.

\n *

The returned labels also include bounding box information for common objects, a\n * hierarchical taxonomy of detected labels, and the version of the label model used for detection.

\n *\n *

Use MaxResults parameter to limit the number of labels returned. If there are more results than\n * specified in MaxResults, the value of NextToken in the operation response contains a pagination token for getting the next set\n * of results. To get the next page of results, call GetlabelDetection and populate the NextToken request parameter with the token\n * value returned from the previous call to GetLabelDetection.

\n */\nvar GetLabelDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetLabelDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetLabelDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetLabelDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"GetLabelDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLabelDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetLabelDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetLabelDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetLabelDetectionCommand\"])(input, context);\n };\n GetLabelDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetLabelDetectionCommand\"])(output, context);\n };\n return GetLabelDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetLabelDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetLabelDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetPersonTrackingCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetPersonTrackingCommand.js ***! \***********************************************************************************************/ /*! exports provided: GetPersonTrackingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPersonTrackingCommand\", function() { return GetPersonTrackingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the path tracking results of a Amazon Rekognition Video analysis started by StartPersonTracking.

\n *\n *

The person path tracking operation is started by a call to StartPersonTracking\n * which returns a job identifier (JobId). When the operation finishes, Amazon Rekognition Video publishes a completion status to\n * the Amazon Simple Notification Service topic registered in the initial call to StartPersonTracking.

\n *

To get the results of the person path tracking operation, first check\n * that the status value published to the Amazon SNS topic is SUCCEEDED.\n * If so, call GetPersonTracking and pass the job identifier\n * (JobId) from the initial call to StartPersonTracking.

\n *

\n * GetPersonTracking returns an array, Persons, of tracked persons and the time(s) their\n * paths were tracked in the video.

\n * \n *

\n * GetPersonTracking only returns the default\n * facial attributes (BoundingBox, Confidence,\n * Landmarks, Pose, and Quality). The other facial attributes listed\n * in the Face object of the following response syntax are not returned.

\n *\n *

For more information, see FaceDetail in the Amazon Rekognition Developer Guide.

\n *
\n *\n *\n *

By default, the array is sorted by the time(s) a person's path is tracked in the video.\n * You can sort by tracked persons by specifying INDEX for the SortBy input parameter.

\n *\n *

Use the MaxResults parameter to limit the number of items returned. If there are more results than\n * specified in MaxResults, the value of NextToken in the operation response contains a pagination token for getting the next set\n * of results. To get the next page of results, call GetPersonTracking and populate the NextToken request parameter with the token\n * value returned from the previous call to GetPersonTracking.

\n */\nvar GetPersonTrackingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetPersonTrackingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetPersonTrackingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetPersonTrackingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"GetPersonTrackingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetPersonTrackingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetPersonTrackingResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetPersonTrackingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetPersonTrackingCommand\"])(input, context);\n };\n GetPersonTrackingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetPersonTrackingCommand\"])(output, context);\n };\n return GetPersonTrackingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetPersonTrackingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetPersonTrackingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetSegmentDetectionCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetSegmentDetectionCommand.js ***! \*************************************************************************************************/ /*! exports provided: GetSegmentDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentDetectionCommand\", function() { return GetSegmentDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the segment detection results of a Amazon Rekognition Video analysis started by StartSegmentDetection.

\n *

Segment detection with Amazon Rekognition Video is an asynchronous operation. You start segment detection by\n * calling StartSegmentDetection which returns a job identifier (JobId).\n * When the segment detection operation finishes, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service\n * topic registered in the initial call to StartSegmentDetection. To get the results\n * of the segment detection operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED.\n * if so, call GetSegmentDetection and pass the job identifier (JobId) from the initial call\n * of StartSegmentDetection.

\n *

\n * GetSegmentDetection returns detected segments in an array (Segments)\n * of SegmentDetection objects. Segments is sorted by the segment types\n * specified in the SegmentTypes input parameter of StartSegmentDetection.\n * Each element of the array includes the detected segment, the precentage confidence in the acuracy\n * of the detected segment, the type of the segment, and the frame in which the segment was detected.

\n *

Use SelectedSegmentTypes to find out the type of segment detection requested in the\n * call to StartSegmentDetection.

\n *

Use the MaxResults parameter to limit the number of segment detections returned. If there are more results than\n * specified in MaxResults, the value of NextToken in the operation response contains\n * a pagination token for getting the next set of results. To get the next page of results, call GetSegmentDetection\n * and populate the NextToken request parameter with the token value returned from the previous\n * call to GetSegmentDetection.

\n *\n *

For more information, see Detecting Video Segments in Stored Video in the Amazon Rekognition Developer Guide.

\n */\nvar GetSegmentDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetSegmentDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetSegmentDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetSegmentDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"GetSegmentDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetSegmentDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetSegmentDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetSegmentDetectionCommand\"])(input, context);\n };\n GetSegmentDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetSegmentDetectionCommand\"])(output, context);\n };\n return GetSegmentDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetSegmentDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetSegmentDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetTextDetectionCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetTextDetectionCommand.js ***! \**********************************************************************************************/ /*! exports provided: GetTextDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetTextDetectionCommand\", function() { return GetTextDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the text detection results of a Amazon Rekognition Video analysis started by StartTextDetection.

\n *

Text detection with Amazon Rekognition Video is an asynchronous operation. You start text detection by\n * calling StartTextDetection which returns a job identifier (JobId)\n * When the text detection operation finishes, Amazon Rekognition publishes a completion status to the Amazon Simple Notification Service\n * topic registered in the initial call to StartTextDetection. To get the results\n * of the text detection operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED.\n * if so, call GetTextDetection and pass the job identifier (JobId) from the initial call\n * of StartLabelDetection.

\n *

\n * GetTextDetection returns an array of detected text (TextDetections) sorted by\n * the time the text was detected, up to 50 words per frame of video.

\n *

Each element of the array includes the detected text, the precentage confidence in the acuracy\n * of the detected text, the time the text was detected, bounding box information for where the text\n * was located, and unique identifiers for words and their lines.

\n *

Use MaxResults parameter to limit the number of text detections returned. If there are more results than\n * specified in MaxResults, the value of NextToken in the operation response contains\n * a pagination token for getting the next set of results. To get the next page of results, call GetTextDetection\n * and populate the NextToken request parameter with the token value returned from the previous\n * call to GetTextDetection.

\n */\nvar GetTextDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetTextDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetTextDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetTextDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"GetTextDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetTextDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetTextDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetTextDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetTextDetectionCommand\"])(input, context);\n };\n GetTextDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetTextDetectionCommand\"])(output, context);\n };\n return GetTextDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetTextDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetTextDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/IndexFacesCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/IndexFacesCommand.js ***! \****************************************************************************************/ /*! exports provided: IndexFacesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IndexFacesCommand\", function() { return IndexFacesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects faces in the input image and adds them to the specified collection.

\n *

Amazon Rekognition doesn't save the actual faces that are detected. Instead, the underlying\n * detection algorithm first detects the faces in the input image. For each face, the algorithm\n * extracts facial features into a feature vector, and stores it in the backend database.\n * Amazon Rekognition uses feature vectors when it performs face match and search operations using the\n * SearchFaces and SearchFacesByImage\n * operations.

\n *\n *

For more information, see Adding Faces to a Collection in the Amazon Rekognition\n * Developer Guide.

\n *

To get the number of faces in a collection, call DescribeCollection.

\n *\n *

If you're using version 1.0 of the face detection model, IndexFaces\n * indexes the 15 largest faces in the input image. Later versions of the face detection model\n * index the 100 largest faces in the input image.

\n *

If you're using version 4 or later of the face model, image orientation information\n * is not returned in the OrientationCorrection field.

\n *

To determine which version of the model you're using, call DescribeCollection\n * and supply the collection ID. You can also get the model version from the value of FaceModelVersion in the response\n * from IndexFaces\n *

\n *\n *

For more information, see Model Versioning in the Amazon Rekognition Developer\n * Guide.

\n *

If you provide the optional ExternalImageId for the input image you\n * provided, Amazon Rekognition associates this ID with all faces that it detects. When you call the ListFaces operation, the response returns the external ID. You can use this\n * external image ID to create a client-side index to associate the faces with each image. You\n * can then use the index to find all faces in an image.

\n *

You can specify the maximum number of faces to index with the MaxFaces input\n * parameter. This is useful when you want to index the largest faces in an image and don't want to index\n * smaller faces, such as those belonging to people standing in the background.

\n *

The QualityFilter input parameter allows you to filter out detected faces\n * that don’t meet a required quality bar. The quality bar is based on a\n * variety of common use cases. By default, IndexFaces chooses the quality bar that's\n * used to filter faces. You can also explicitly choose\n * the quality bar. Use QualityFilter, to set the quality bar\n * by specifying LOW, MEDIUM, or HIGH.\n * If you do not want to filter detected faces, specify NONE.

\n * \n *

To use quality filtering, you need a collection associated with version 3 of the\n * face model or higher. To get the version of the face model associated with a collection, call\n * DescribeCollection.

\n *
\n *

Information about faces detected in an image, but not indexed, is returned in an array of\n * UnindexedFace objects, UnindexedFaces. Faces aren't\n * indexed for reasons such as:

\n *
    \n *
  • \n *

    The number of faces detected exceeds the value of the MaxFaces request\n * parameter.

    \n *
  • \n *
  • \n *

    The face is too small compared to the image dimensions.

    \n *
  • \n *
  • \n *

    The face is too blurry.

    \n *
  • \n *
  • \n *

    The image is too dark.

    \n *
  • \n *
  • \n *

    The face has an extreme pose.

    \n *
  • \n *
  • \n *

    The face doesn’t have enough detail to be suitable for face search.

    \n *
  • \n *
\n *

In response, the IndexFaces operation returns an array of metadata for\n * all detected faces, FaceRecords. This includes:

\n *
    \n *
  • \n *

    The bounding box, BoundingBox, of the detected face.

    \n *
  • \n *
  • \n *

    A confidence value, Confidence, which indicates the confidence that the\n * bounding box contains a face.

    \n *
  • \n *
  • \n *

    A face ID, FaceId, assigned by the service for each face that's detected\n * and stored.

    \n *
  • \n *
  • \n *

    An image ID, ImageId, assigned by the service for the input image.

    \n *
  • \n *
\n *

If you request all facial attributes (by using the detectionAttributes\n * parameter), Amazon Rekognition returns detailed facial attributes, such as facial landmarks (for\n * example, location of eye and mouth) and other facial attributes. If you provide\n * the same image, specify the same collection, and use the same external ID in the\n * IndexFaces operation, Amazon Rekognition doesn't save duplicate face metadata.

\n *\n *\n *

\n *\n *\n *

The input image is passed either as base64-encoded image bytes, or as a reference to an\n * image in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations,\n * passing image bytes isn't supported. The image must be formatted as a PNG or JPEG file.

\n *

This operation requires permissions to perform the rekognition:IndexFaces\n * action.

\n */\nvar IndexFacesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(IndexFacesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function IndexFacesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n IndexFacesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"IndexFacesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"IndexFacesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"IndexFacesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n IndexFacesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1IndexFacesCommand\"])(input, context);\n };\n IndexFacesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1IndexFacesCommand\"])(output, context);\n };\n return IndexFacesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=IndexFacesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/IndexFacesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListCollectionsCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListCollectionsCommand.js ***! \*********************************************************************************************/ /*! exports provided: ListCollectionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListCollectionsCommand\", function() { return ListCollectionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns list of collection IDs in your account.\n * If the result is truncated, the response also provides a NextToken\n * that you can use in the subsequent request to fetch the next set of collection IDs.

\n *\n *

For an example, see Listing Collections in the Amazon Rekognition Developer Guide.

\n *

This operation requires permissions to perform the rekognition:ListCollections action.

\n */\nvar ListCollectionsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListCollectionsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListCollectionsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListCollectionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"ListCollectionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListCollectionsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListCollectionsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListCollectionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListCollectionsCommand\"])(input, context);\n };\n ListCollectionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListCollectionsCommand\"])(output, context);\n };\n return ListCollectionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListCollectionsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListCollectionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListFacesCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListFacesCommand.js ***! \***************************************************************************************/ /*! exports provided: ListFacesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListFacesCommand\", function() { return ListFacesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns metadata for faces in the specified collection.\n * This metadata includes information such as the bounding box coordinates, the confidence\n * (that the bounding box contains a face), and face ID. For an example, see Listing Faces in a Collection\n * in the Amazon Rekognition Developer Guide.

\n *\n *\n *

This operation requires permissions to perform the\n * rekognition:ListFaces action.

\n */\nvar ListFacesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListFacesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListFacesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListFacesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"ListFacesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListFacesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListFacesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListFacesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListFacesCommand\"])(input, context);\n };\n ListFacesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListFacesCommand\"])(output, context);\n };\n return ListFacesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListFacesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListFacesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListStreamProcessorsCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListStreamProcessorsCommand.js ***! \**************************************************************************************************/ /*! exports provided: ListStreamProcessorsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListStreamProcessorsCommand\", function() { return ListStreamProcessorsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of stream processors that you have created with CreateStreamProcessor.

\n */\nvar ListStreamProcessorsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListStreamProcessorsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListStreamProcessorsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListStreamProcessorsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"ListStreamProcessorsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListStreamProcessorsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListStreamProcessorsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListStreamProcessorsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListStreamProcessorsCommand\"])(input, context);\n };\n ListStreamProcessorsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListStreamProcessorsCommand\"])(output, context);\n };\n return ListStreamProcessorsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListStreamProcessorsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListStreamProcessorsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/RecognizeCelebritiesCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/RecognizeCelebritiesCommand.js ***! \**************************************************************************************************/ /*! exports provided: RecognizeCelebritiesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecognizeCelebritiesCommand\", function() { return RecognizeCelebritiesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns an array of celebrities recognized in the input image. For more information, see Recognizing Celebrities\n * in the Amazon Rekognition Developer Guide.

\n *

\n * RecognizeCelebrities returns the 64 largest faces in the image. It lists\n * recognized celebrities in the CelebrityFaces array and unrecognized faces in the\n * UnrecognizedFaces array. RecognizeCelebrities doesn't return\n * celebrities whose faces aren't among the largest 64 faces in the image.

\n *\n *

For each celebrity recognized, RecognizeCelebrities returns a\n * Celebrity object. The Celebrity object contains the celebrity\n * name, ID, URL links to additional information, match confidence, and a\n * ComparedFace object that you can use to locate the celebrity's face on the\n * image.

\n *

Amazon Rekognition doesn't retain information about which images a celebrity has been recognized\n * in. Your application must store this information and use the Celebrity ID\n * property as a unique identifier for the celebrity. If you don't store the celebrity name or\n * additional information URLs returned by RecognizeCelebrities, you will need the\n * ID to identify the celebrity in a call to the GetCelebrityInfo\n * operation.

\n *

You pass the input image either as base64-encoded image bytes or as a reference to an\n * image in an Amazon S3 bucket. If you use the\n * AWS\n * CLI to call Amazon Rekognition operations, passing image bytes is not\n * supported. The image must be either a PNG or JPEG formatted file.

\n *\n *\n *\n *\n *

For an example, see Recognizing Celebrities in an Image in the Amazon Rekognition Developer Guide.

\n *

This operation requires permissions to perform the\n * rekognition:RecognizeCelebrities operation.

\n */\nvar RecognizeCelebritiesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(RecognizeCelebritiesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function RecognizeCelebritiesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n RecognizeCelebritiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"RecognizeCelebritiesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"RecognizeCelebritiesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"RecognizeCelebritiesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n RecognizeCelebritiesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1RecognizeCelebritiesCommand\"])(input, context);\n };\n RecognizeCelebritiesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1RecognizeCelebritiesCommand\"])(output, context);\n };\n return RecognizeCelebritiesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=RecognizeCelebritiesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/RecognizeCelebritiesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesByImageCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesByImageCommand.js ***! \************************************************************************************************/ /*! exports provided: SearchFacesByImageCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesByImageCommand\", function() { return SearchFacesByImageCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

For a given input image, first detects the largest face in the image, and then searches\n * the specified collection for matching faces. The operation compares the features of the input\n * face with faces in the specified collection.

\n * \n *

To search for all faces in an input image, you might first call the IndexFaces operation, and then use the face IDs returned in subsequent\n * calls to the SearchFaces operation.

\n *

You can also call the DetectFaces operation and use the bounding boxes\n * in the response to make face crops, which then you can pass in to the\n * SearchFacesByImage operation.

\n *
\n *\n *

You pass the input image either as base64-encoded image bytes or as a reference to an\n * image in an Amazon S3 bucket. If you use the\n * AWS\n * CLI to call Amazon Rekognition operations, passing image bytes is not\n * supported. The image must be either a PNG or JPEG formatted file.

\n *

\n * The response returns an array of faces that match, ordered by similarity score with the\n * highest similarity first. More specifically, it is an\n * array of metadata for each face match found. Along with the metadata, the response also\n * includes a similarity indicating how similar the face is\n * to the input face.\n *\n * In the response, the operation also returns the bounding\n * box (and a confidence level that the bounding box contains a face) of the face that Amazon Rekognition\n * used for the input image.\n *

\n *\n *

For an example, Searching for a Face Using an Image in the Amazon Rekognition Developer Guide.

\n *\n *

The QualityFilter input parameter allows you to filter out detected faces\n * that don’t meet a required quality bar. The quality bar is based on a\n * variety of common use cases.\n * Use QualityFilter to set the quality bar for\n * filtering by specifying LOW, MEDIUM, or HIGH.\n * If you do not want to filter detected faces, specify NONE. The default\n * value is NONE.

\n * \n *

To use quality filtering, you need a collection associated with version 3 of the\n * face model or higher. To get the version of the face model associated with a collection, call\n * DescribeCollection.

\n *
\n *\n *

This operation requires permissions to perform the rekognition:SearchFacesByImage\n * action.

\n */\nvar SearchFacesByImageCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SearchFacesByImageCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function SearchFacesByImageCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n SearchFacesByImageCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"SearchFacesByImageCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SearchFacesByImageRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SearchFacesByImageResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SearchFacesByImageCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1SearchFacesByImageCommand\"])(input, context);\n };\n SearchFacesByImageCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1SearchFacesByImageCommand\"])(output, context);\n };\n return SearchFacesByImageCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=SearchFacesByImageCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesByImageCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesCommand.js ***! \*****************************************************************************************/ /*! exports provided: SearchFacesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesCommand\", function() { return SearchFacesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

For a given input face ID, searches for matching faces in the collection the face\n * belongs to. You get a face ID when you add a face to the collection using the IndexFaces operation. The operation compares the features of the input face with\n * faces in the specified collection.

\n * \n *

You can also search faces without indexing faces by using the\n * SearchFacesByImage operation.

\n *
\n *\n *

\n * The operation response returns\n * an array of faces that match, ordered by similarity score with the highest\n * similarity first. More specifically, it is an\n * array of metadata for each face match that is found. Along with the metadata, the response also\n * includes a confidence value for each face match, indicating the confidence\n * that the specific face matches the input face.\n *

\n *\n *

For an example, see Searching for a Face Using Its Face ID in the Amazon Rekognition Developer Guide.

\n *\n *

This operation requires permissions to perform the rekognition:SearchFaces\n * action.

\n */\nvar SearchFacesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SearchFacesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function SearchFacesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n SearchFacesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"SearchFacesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SearchFacesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"SearchFacesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SearchFacesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1SearchFacesCommand\"])(input, context);\n };\n SearchFacesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1SearchFacesCommand\"])(output, context);\n };\n return SearchFacesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=SearchFacesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartCelebrityRecognitionCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartCelebrityRecognitionCommand.js ***! \*******************************************************************************************************/ /*! exports provided: StartCelebrityRecognitionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartCelebrityRecognitionCommand\", function() { return StartCelebrityRecognitionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts asynchronous recognition of celebrities in a stored video.

\n *

Amazon Rekognition Video can detect celebrities in a video must be stored in an Amazon S3 bucket. Use Video to specify the bucket name\n * and the filename of the video.\n * StartCelebrityRecognition\n * returns a job identifier (JobId) which you use to get the results of the analysis.\n * When celebrity recognition analysis is finished, Amazon Rekognition Video publishes a completion status\n * to the Amazon Simple Notification Service topic that you specify in NotificationChannel.\n * To get the results of the celebrity recognition analysis, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. If so, call GetCelebrityRecognition and pass the job identifier\n * (JobId) from the initial call to StartCelebrityRecognition.

\n *\n *

For more information, see Recognizing Celebrities in the Amazon Rekognition Developer Guide.

\n */\nvar StartCelebrityRecognitionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartCelebrityRecognitionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartCelebrityRecognitionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartCelebrityRecognitionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartCelebrityRecognitionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartCelebrityRecognitionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartCelebrityRecognitionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartCelebrityRecognitionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartCelebrityRecognitionCommand\"])(input, context);\n };\n StartCelebrityRecognitionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartCelebrityRecognitionCommand\"])(output, context);\n };\n return StartCelebrityRecognitionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartCelebrityRecognitionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartCelebrityRecognitionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartContentModerationCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartContentModerationCommand.js ***! \****************************************************************************************************/ /*! exports provided: StartContentModerationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartContentModerationCommand\", function() { return StartContentModerationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts asynchronous detection of unsafe content in a stored video.

\n *

Amazon Rekognition Video can moderate content in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name\n * and the filename of the video. StartContentModeration\n * returns a job identifier (JobId) which you use to get the results of the analysis.\n * When unsafe content analysis is finished, Amazon Rekognition Video publishes a completion status\n * to the Amazon Simple Notification Service topic that you specify in NotificationChannel.

\n *

To get the results of the unsafe content analysis, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. If so, call GetContentModeration and pass the job identifier\n * (JobId) from the initial call to StartContentModeration.

\n *\n *

For more information, see Detecting Unsafe Content in the Amazon Rekognition Developer Guide.

\n */\nvar StartContentModerationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartContentModerationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartContentModerationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartContentModerationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartContentModerationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartContentModerationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartContentModerationResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartContentModerationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartContentModerationCommand\"])(input, context);\n };\n StartContentModerationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartContentModerationCommand\"])(output, context);\n };\n return StartContentModerationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartContentModerationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartContentModerationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceDetectionCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceDetectionCommand.js ***! \************************************************************************************************/ /*! exports provided: StartFaceDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartFaceDetectionCommand\", function() { return StartFaceDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts asynchronous detection of faces in a stored video.

\n *

Amazon Rekognition Video can detect faces in a video stored in an Amazon S3 bucket.\n * Use Video to specify the bucket name and the filename of the video.\n * StartFaceDetection returns a job identifier (JobId) that you\n * use to get the results of the operation.\n * When face detection is finished, Amazon Rekognition Video publishes a completion status\n * to the Amazon Simple Notification Service topic that you specify in NotificationChannel.\n * To get the results of the face detection operation, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. If so, call GetFaceDetection and pass the job identifier\n * (JobId) from the initial call to StartFaceDetection.

\n *\n *

For more information, see Detecting Faces in a Stored Video in the\n * Amazon Rekognition Developer Guide.

\n */\nvar StartFaceDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartFaceDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartFaceDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartFaceDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartFaceDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartFaceDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartFaceDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartFaceDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartFaceDetectionCommand\"])(input, context);\n };\n StartFaceDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartFaceDetectionCommand\"])(output, context);\n };\n return StartFaceDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartFaceDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceSearchCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceSearchCommand.js ***! \*********************************************************************************************/ /*! exports provided: StartFaceSearchCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartFaceSearchCommand\", function() { return StartFaceSearchCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts the asynchronous search for faces in a collection that match the faces of persons detected in a stored video.

\n *

The video must be stored in an Amazon S3 bucket. Use Video to specify the bucket name\n * and the filename of the video. StartFaceSearch\n * returns a job identifier (JobId) which you use to get the search results once the search has completed.\n * When searching is finished, Amazon Rekognition Video publishes a completion status\n * to the Amazon Simple Notification Service topic that you specify in NotificationChannel.\n * To get the search results, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. If so, call GetFaceSearch and pass the job identifier\n * (JobId) from the initial call to StartFaceSearch. For more information, see\n * procedure-person-search-videos.

\n */\nvar StartFaceSearchCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartFaceSearchCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartFaceSearchCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartFaceSearchCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartFaceSearchCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartFaceSearchRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartFaceSearchResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartFaceSearchCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartFaceSearchCommand\"])(input, context);\n };\n StartFaceSearchCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartFaceSearchCommand\"])(output, context);\n };\n return StartFaceSearchCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartFaceSearchCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceSearchCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartLabelDetectionCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartLabelDetectionCommand.js ***! \*************************************************************************************************/ /*! exports provided: StartLabelDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartLabelDetectionCommand\", function() { return StartLabelDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts asynchronous detection of labels in a stored video.

\n *

Amazon Rekognition Video can detect labels in a video. Labels are instances of real-world entities.\n * This includes objects like flower, tree, and table; events like\n * wedding, graduation, and birthday party; concepts like landscape, evening, and nature; and activities\n * like a person getting out of a car or a person skiing.

\n *\n *

The video must be stored in an Amazon S3 bucket. Use Video to specify the bucket name\n * and the filename of the video.\n * StartLabelDetection returns a job identifier (JobId) which you use to get the\n * results of the operation. When label detection is finished, Amazon Rekognition Video publishes a completion status\n * to the Amazon Simple Notification Service topic that you specify in NotificationChannel.

\n *

To get the results of the label detection operation, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. If so, call GetLabelDetection and pass the job identifier\n * (JobId) from the initial call to StartLabelDetection.

\n *

\n */\nvar StartLabelDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartLabelDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartLabelDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartLabelDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartLabelDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartLabelDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartLabelDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartLabelDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartLabelDetectionCommand\"])(input, context);\n };\n StartLabelDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartLabelDetectionCommand\"])(output, context);\n };\n return StartLabelDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartLabelDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartLabelDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartPersonTrackingCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartPersonTrackingCommand.js ***! \*************************************************************************************************/ /*! exports provided: StartPersonTrackingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartPersonTrackingCommand\", function() { return StartPersonTrackingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts the asynchronous tracking of a person's path in a stored video.

\n *

Amazon Rekognition Video can track the path of people in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name\n * and the filename of the video. StartPersonTracking\n * returns a job identifier (JobId) which you use to get the results of the operation.\n * When label detection is finished, Amazon Rekognition publishes a completion status\n * to the Amazon Simple Notification Service topic that you specify in NotificationChannel.

\n *

To get the results of the person detection operation, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. If so, call GetPersonTracking and pass the job identifier\n * (JobId) from the initial call to StartPersonTracking.

\n */\nvar StartPersonTrackingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartPersonTrackingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartPersonTrackingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartPersonTrackingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartPersonTrackingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartPersonTrackingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartPersonTrackingResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartPersonTrackingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartPersonTrackingCommand\"])(input, context);\n };\n StartPersonTrackingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartPersonTrackingCommand\"])(output, context);\n };\n return StartPersonTrackingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartPersonTrackingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartPersonTrackingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartProjectVersionCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartProjectVersionCommand.js ***! \*************************************************************************************************/ /*! exports provided: StartProjectVersionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartProjectVersionCommand\", function() { return StartProjectVersionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts the running of the version of a model. Starting a model takes a while\n * to complete. To check the current state of the model, use DescribeProjectVersions.

\n *

Once the model is running, you can detect custom labels in new images by calling\n * DetectCustomLabels.

\n * \n *

You are charged for the amount of time that the model is running. To stop a running\n * model, call StopProjectVersion.

\n *
\n *

This operation requires permissions to perform the\n * rekognition:StartProjectVersion action.

\n */\nvar StartProjectVersionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartProjectVersionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartProjectVersionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartProjectVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartProjectVersionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartProjectVersionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartProjectVersionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartProjectVersionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartProjectVersionCommand\"])(input, context);\n };\n StartProjectVersionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartProjectVersionCommand\"])(output, context);\n };\n return StartProjectVersionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartProjectVersionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartProjectVersionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartSegmentDetectionCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartSegmentDetectionCommand.js ***! \***************************************************************************************************/ /*! exports provided: StartSegmentDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionCommand\", function() { return StartSegmentDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts asynchronous detection of segment detection in a stored video.

\n *

Amazon Rekognition Video can detect segments in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and\n * the filename of the video. StartSegmentDetection returns a job identifier (JobId) which you use to get\n * the results of the operation. When segment detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic\n * that you specify in NotificationChannel.

\n *

You can use the Filters (StartSegmentDetectionFilters)\n * input parameter to specify the minimum detection confidence returned in the response.\n * Within Filters, use ShotFilter (StartShotDetectionFilter)\n * to filter detected shots. Use TechnicalCueFilter (StartTechnicalCueDetectionFilter)\n * to filter technical cues.

\n *

To get the results of the segment detection operation, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. if so, call GetSegmentDetection and pass the job identifier (JobId)\n * from the initial call to StartSegmentDetection.

\n *\n *\n *

For more information, see Detecting Video Segments in Stored Video in the Amazon Rekognition Developer Guide.

\n */\nvar StartSegmentDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartSegmentDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartSegmentDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartSegmentDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartSegmentDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartSegmentDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartSegmentDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartSegmentDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartSegmentDetectionCommand\"])(input, context);\n };\n StartSegmentDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartSegmentDetectionCommand\"])(output, context);\n };\n return StartSegmentDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartSegmentDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartSegmentDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartStreamProcessorCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartStreamProcessorCommand.js ***! \**************************************************************************************************/ /*! exports provided: StartStreamProcessorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartStreamProcessorCommand\", function() { return StartStreamProcessorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts processing a stream processor. You create a stream processor by calling CreateStreamProcessor.\n * To tell StartStreamProcessor which stream processor to start, use the value of the Name field specified in the call to\n * CreateStreamProcessor.

\n */\nvar StartStreamProcessorCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartStreamProcessorCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartStreamProcessorCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartStreamProcessorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartStreamProcessorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartStreamProcessorRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartStreamProcessorResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartStreamProcessorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartStreamProcessorCommand\"])(input, context);\n };\n StartStreamProcessorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartStreamProcessorCommand\"])(output, context);\n };\n return StartStreamProcessorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartStreamProcessorCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartStreamProcessorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartTextDetectionCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartTextDetectionCommand.js ***! \************************************************************************************************/ /*! exports provided: StartTextDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionCommand\", function() { return StartTextDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts asynchronous detection of text in a stored video.

\n *

Amazon Rekognition Video can detect text in a video stored in an Amazon S3 bucket. Use Video to specify the bucket name and\n * the filename of the video. StartTextDetection returns a job identifier (JobId) which you use to get\n * the results of the operation. When text detection is finished, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic\n * that you specify in NotificationChannel.

\n *

To get the results of the text detection operation, first check that the status value published to the Amazon SNS\n * topic is SUCCEEDED. if so, call GetTextDetection and pass the job identifier (JobId)\n * from the initial call to StartTextDetection.

\n */\nvar StartTextDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartTextDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartTextDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartTextDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StartTextDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartTextDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartTextDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartTextDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartTextDetectionCommand\"])(input, context);\n };\n StartTextDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartTextDetectionCommand\"])(output, context);\n };\n return StartTextDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartTextDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartTextDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopProjectVersionCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopProjectVersionCommand.js ***! \************************************************************************************************/ /*! exports provided: StopProjectVersionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopProjectVersionCommand\", function() { return StopProjectVersionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops a running model. The operation might take a while to complete. To\n * check the current status, call DescribeProjectVersions.

\n */\nvar StopProjectVersionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopProjectVersionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopProjectVersionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopProjectVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StopProjectVersionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopProjectVersionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopProjectVersionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopProjectVersionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopProjectVersionCommand\"])(input, context);\n };\n StopProjectVersionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopProjectVersionCommand\"])(output, context);\n };\n return StopProjectVersionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopProjectVersionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopProjectVersionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopStreamProcessorCommand.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopStreamProcessorCommand.js ***! \*************************************************************************************************/ /*! exports provided: StopStreamProcessorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopStreamProcessorCommand\", function() { return StopStreamProcessorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops a running stream processor that was created by CreateStreamProcessor.

\n */\nvar StopStreamProcessorCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopStreamProcessorCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopStreamProcessorCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopStreamProcessorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"RekognitionClient\";\n var commandName = \"StopStreamProcessorCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopStreamProcessorRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopStreamProcessorResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopStreamProcessorCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopStreamProcessorCommand\"])(input, context);\n };\n StopStreamProcessorCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopStreamProcessorCommand\"])(output, context);\n };\n return StopStreamProcessorCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopStreamProcessorCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopStreamProcessorCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/endpoints.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/endpoints.js ***! \***********************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"rekognition.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"rekognition.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"rekognition.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"rekognition.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"rekognition.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"rekognition.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"rekognition.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"rekognition.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"rekognition.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"rekognition.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"rekognition.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"rekognition.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"rekognition.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"rekognition.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"rekognition-fips.ca-central-1\":\n regionInfo = {\n hostname: \"rekognition-fips.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"ca-central-1\",\n };\n break;\n case \"rekognition-fips.us-east-1\":\n regionInfo = {\n hostname: \"rekognition-fips.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"rekognition-fips.us-east-2\":\n regionInfo = {\n hostname: \"rekognition-fips.us-east-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-2\",\n };\n break;\n case \"rekognition-fips.us-gov-west-1\":\n regionInfo = {\n hostname: \"rekognition-fips.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"rekognition-fips.us-west-1\":\n regionInfo = {\n hostname: \"rekognition-fips.us-west-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-1\",\n };\n break;\n case \"rekognition-fips.us-west-2\":\n regionInfo = {\n hostname: \"rekognition-fips.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"rekognition.us-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-2\":\n regionInfo = {\n hostname: \"rekognition.us-east-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"rekognition.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n };\n break;\n case \"us-west-1\":\n regionInfo = {\n hostname: \"rekognition.us-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"rekognition.us-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"rekognition\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/index.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/index.js ***! \*******************************************************************/ /*! exports provided: RekognitionClient, Rekognition, CompareFacesCommand, CreateCollectionCommand, CreateProjectCommand, CreateProjectVersionCommand, CreateStreamProcessorCommand, DeleteCollectionCommand, DeleteFacesCommand, DeleteProjectCommand, DeleteProjectVersionCommand, DeleteStreamProcessorCommand, DescribeCollectionCommand, DescribeProjectsCommand, paginateDescribeProjects, DescribeProjectVersionsCommand, paginateDescribeProjectVersions, waitForProjectVersionRunning, waitForProjectVersionTrainingCompleted, DescribeStreamProcessorCommand, DetectCustomLabelsCommand, DetectFacesCommand, DetectLabelsCommand, DetectModerationLabelsCommand, DetectProtectiveEquipmentCommand, DetectTextCommand, GetCelebrityInfoCommand, GetCelebrityRecognitionCommand, paginateGetCelebrityRecognition, GetContentModerationCommand, paginateGetContentModeration, GetFaceDetectionCommand, paginateGetFaceDetection, GetFaceSearchCommand, paginateGetFaceSearch, GetLabelDetectionCommand, paginateGetLabelDetection, GetPersonTrackingCommand, paginateGetPersonTracking, GetSegmentDetectionCommand, paginateGetSegmentDetection, GetTextDetectionCommand, paginateGetTextDetection, IndexFacesCommand, ListCollectionsCommand, paginateListCollections, ListFacesCommand, paginateListFaces, ListStreamProcessorsCommand, paginateListStreamProcessors, RecognizeCelebritiesCommand, SearchFacesCommand, SearchFacesByImageCommand, StartCelebrityRecognitionCommand, StartContentModerationCommand, StartFaceDetectionCommand, StartFaceSearchCommand, StartLabelDetectionCommand, StartPersonTrackingCommand, StartProjectVersionCommand, StartSegmentDetectionCommand, StartStreamProcessorCommand, StartTextDetectionCommand, StopProjectVersionCommand, StopStreamProcessorCommand, AccessDeniedException, AgeRange, S3Object, GroundTruthManifest, Asset, Attribute, AudioMetadata, Beard, BodyPart, BoundingBox, CoversBodyPart, ProtectiveEquipmentType, EquipmentDetection, ProtectiveEquipmentBodyPart, LandmarkType, Landmark, Pose, ImageQuality, ComparedFace, Celebrity, Emotion, Eyeglasses, EyeOpen, GenderType, Gender, MouthOpen, Mustache, Smile, Sunglasses, FaceDetail, CelebrityDetail, CelebrityRecognition, CelebrityRecognitionSortBy, ComparedSourceImageFace, QualityFilter, Image, CompareFacesRequest, CompareFacesMatch, OrientationCorrection, CompareFacesResponse, ImageTooLargeException, InternalServerError, InvalidImageFormatException, InvalidParameterException, InvalidS3ObjectException, ProvisionedThroughputExceededException, ThrottlingException, ContentClassifier, ModerationLabel, ContentModerationDetection, ContentModerationSortBy, CreateCollectionRequest, CreateCollectionResponse, ResourceAlreadyExistsException, CreateProjectRequest, CreateProjectResponse, LimitExceededException, ResourceInUseException, OutputConfig, TestingData, TrainingData, CreateProjectVersionRequest, CreateProjectVersionResponse, ResourceNotFoundException, KinesisVideoStream, StreamProcessorInput, KinesisDataStream, StreamProcessorOutput, FaceSearchSettings, StreamProcessorSettings, CreateStreamProcessorRequest, CreateStreamProcessorResponse, Point, Geometry, CustomLabel, DeleteCollectionRequest, DeleteCollectionResponse, DeleteFacesRequest, DeleteFacesResponse, DeleteProjectRequest, ProjectStatus, DeleteProjectResponse, DeleteProjectVersionRequest, ProjectVersionStatus, DeleteProjectVersionResponse, DeleteStreamProcessorRequest, DeleteStreamProcessorResponse, DescribeCollectionRequest, DescribeCollectionResponse, DescribeProjectsRequest, ProjectDescription, DescribeProjectsResponse, InvalidPaginationTokenException, DescribeProjectVersionsRequest, Summary, EvaluationResult, ValidationData, TestingDataResult, TrainingDataResult, ProjectVersionDescription, DescribeProjectVersionsResponse, DescribeStreamProcessorRequest, StreamProcessorStatus, DescribeStreamProcessorResponse, DetectCustomLabelsRequest, DetectCustomLabelsResponse, ResourceNotReadyException, DetectFacesRequest, DetectFacesResponse, DetectionFilter, DetectLabelsRequest, Instance, Parent, Label, DetectLabelsResponse, HumanLoopDataAttributes, HumanLoopConfig, DetectModerationLabelsRequest, HumanLoopActivationOutput, DetectModerationLabelsResponse, HumanLoopQuotaExceededException, ProtectiveEquipmentSummarizationAttributes, DetectProtectiveEquipmentRequest, ProtectiveEquipmentPerson, ProtectiveEquipmentSummary, DetectProtectiveEquipmentResponse, RegionOfInterest, DetectTextFilters, DetectTextRequest, TextTypes, TextDetection, DetectTextResponse, Face, FaceAttributes, FaceDetection, FaceMatch, FaceRecord, FaceSearchSortBy, GetCelebrityInfoRequest, GetCelebrityInfoResponse, GetCelebrityRecognitionRequest, VideoJobStatus, VideoMetadata, GetCelebrityRecognitionResponse, GetContentModerationRequest, GetContentModerationResponse, GetFaceDetectionRequest, GetFaceDetectionResponse, GetFaceSearchRequest, PersonDetail, PersonMatch, GetFaceSearchResponse, LabelDetectionSortBy, GetLabelDetectionRequest, LabelDetection, GetLabelDetectionResponse, PersonTrackingSortBy, GetPersonTrackingRequest, PersonDetection, GetPersonTrackingResponse, GetSegmentDetectionRequest, ShotSegment, TechnicalCueType, TechnicalCueSegment, SegmentType, SegmentDetection, SegmentTypeInfo, GetSegmentDetectionResponse, GetTextDetectionRequest, TextDetectionResult, GetTextDetectionResponse, IdempotentParameterMismatchException, IndexFacesRequest, Reason, UnindexedFace, IndexFacesResponse, ServiceQuotaExceededException, ListCollectionsRequest, ListCollectionsResponse, ListFacesRequest, ListFacesResponse, ListStreamProcessorsRequest, StreamProcessor, ListStreamProcessorsResponse, NotificationChannel, RecognizeCelebritiesRequest, RecognizeCelebritiesResponse, SearchFacesRequest, SearchFacesResponse, SearchFacesByImageRequest, SearchFacesByImageResponse, Video, StartCelebrityRecognitionRequest, StartCelebrityRecognitionResponse, VideoTooLargeException, StartContentModerationRequest, StartContentModerationResponse, StartFaceDetectionRequest, StartFaceDetectionResponse, StartFaceSearchRequest, StartFaceSearchResponse, StartLabelDetectionRequest, StartLabelDetectionResponse, StartPersonTrackingRequest, StartPersonTrackingResponse, StartProjectVersionRequest, StartProjectVersionResponse, StartShotDetectionFilter, StartTechnicalCueDetectionFilter, StartSegmentDetectionFilters, StartSegmentDetectionRequest, StartSegmentDetectionResponse, StartStreamProcessorRequest, StartStreamProcessorResponse, StartTextDetectionFilters, StartTextDetectionRequest, StartTextDetectionResponse, StopProjectVersionRequest, StopProjectVersionResponse, StopStreamProcessorRequest, StopStreamProcessorResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RekognitionClient\", function() { return _RekognitionClient__WEBPACK_IMPORTED_MODULE_0__[\"RekognitionClient\"]; });\n\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Rekognition\", function() { return _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"]; });\n\n/* harmony import */ var _commands_CompareFacesCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CompareFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CompareFacesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesCommand\", function() { return _commands_CompareFacesCommand__WEBPACK_IMPORTED_MODULE_2__[\"CompareFacesCommand\"]; });\n\n/* harmony import */ var _commands_CreateCollectionCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CreateCollectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateCollectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCollectionCommand\", function() { return _commands_CreateCollectionCommand__WEBPACK_IMPORTED_MODULE_3__[\"CreateCollectionCommand\"]; });\n\n/* harmony import */ var _commands_CreateProjectCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/CreateProjectCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectCommand\", function() { return _commands_CreateProjectCommand__WEBPACK_IMPORTED_MODULE_4__[\"CreateProjectCommand\"]; });\n\n/* harmony import */ var _commands_CreateProjectVersionCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/CreateProjectVersionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateProjectVersionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectVersionCommand\", function() { return _commands_CreateProjectVersionCommand__WEBPACK_IMPORTED_MODULE_5__[\"CreateProjectVersionCommand\"]; });\n\n/* harmony import */ var _commands_CreateStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/CreateStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/CreateStreamProcessorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamProcessorCommand\", function() { return _commands_CreateStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_6__[\"CreateStreamProcessorCommand\"]; });\n\n/* harmony import */ var _commands_DeleteCollectionCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/DeleteCollectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteCollectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCollectionCommand\", function() { return _commands_DeleteCollectionCommand__WEBPACK_IMPORTED_MODULE_7__[\"DeleteCollectionCommand\"]; });\n\n/* harmony import */ var _commands_DeleteFacesCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/DeleteFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteFacesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteFacesCommand\", function() { return _commands_DeleteFacesCommand__WEBPACK_IMPORTED_MODULE_8__[\"DeleteFacesCommand\"]; });\n\n/* harmony import */ var _commands_DeleteProjectCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/DeleteProjectCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectCommand\", function() { return _commands_DeleteProjectCommand__WEBPACK_IMPORTED_MODULE_9__[\"DeleteProjectCommand\"]; });\n\n/* harmony import */ var _commands_DeleteProjectVersionCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/DeleteProjectVersionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteProjectVersionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectVersionCommand\", function() { return _commands_DeleteProjectVersionCommand__WEBPACK_IMPORTED_MODULE_10__[\"DeleteProjectVersionCommand\"]; });\n\n/* harmony import */ var _commands_DeleteStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DeleteStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DeleteStreamProcessorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamProcessorCommand\", function() { return _commands_DeleteStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_11__[\"DeleteStreamProcessorCommand\"]; });\n\n/* harmony import */ var _commands_DescribeCollectionCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/DescribeCollectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeCollectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeCollectionCommand\", function() { return _commands_DescribeCollectionCommand__WEBPACK_IMPORTED_MODULE_12__[\"DescribeCollectionCommand\"]; });\n\n/* harmony import */ var _commands_DescribeProjectsCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DescribeProjectsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectsCommand\", function() { return _commands_DescribeProjectsCommand__WEBPACK_IMPORTED_MODULE_13__[\"DescribeProjectsCommand\"]; });\n\n/* harmony import */ var _pagination_DescribeProjectsPaginator__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./pagination/DescribeProjectsPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/DescribeProjectsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeProjects\", function() { return _pagination_DescribeProjectsPaginator__WEBPACK_IMPORTED_MODULE_14__[\"paginateDescribeProjects\"]; });\n\n/* harmony import */ var _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DescribeProjectVersionsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectVersionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectVersionsCommand\", function() { return _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_15__[\"DescribeProjectVersionsCommand\"]; });\n\n/* harmony import */ var _pagination_DescribeProjectVersionsPaginator__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./pagination/DescribeProjectVersionsPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/DescribeProjectVersionsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeProjectVersions\", function() { return _pagination_DescribeProjectVersionsPaginator__WEBPACK_IMPORTED_MODULE_16__[\"paginateDescribeProjectVersions\"]; });\n\n/* harmony import */ var _waiters_waitForProjectVersionRunning__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./waiters/waitForProjectVersionRunning */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/waiters/waitForProjectVersionRunning.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"waitForProjectVersionRunning\", function() { return _waiters_waitForProjectVersionRunning__WEBPACK_IMPORTED_MODULE_17__[\"waitForProjectVersionRunning\"]; });\n\n/* harmony import */ var _waiters_waitForProjectVersionTrainingCompleted__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./waiters/waitForProjectVersionTrainingCompleted */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/waiters/waitForProjectVersionTrainingCompleted.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"waitForProjectVersionTrainingCompleted\", function() { return _waiters_waitForProjectVersionTrainingCompleted__WEBPACK_IMPORTED_MODULE_18__[\"waitForProjectVersionTrainingCompleted\"]; });\n\n/* harmony import */ var _commands_DescribeStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DescribeStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeStreamProcessorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamProcessorCommand\", function() { return _commands_DescribeStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_19__[\"DescribeStreamProcessorCommand\"]; });\n\n/* harmony import */ var _commands_DetectCustomLabelsCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DetectCustomLabelsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectCustomLabelsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectCustomLabelsCommand\", function() { return _commands_DetectCustomLabelsCommand__WEBPACK_IMPORTED_MODULE_20__[\"DetectCustomLabelsCommand\"]; });\n\n/* harmony import */ var _commands_DetectFacesCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DetectFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectFacesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectFacesCommand\", function() { return _commands_DetectFacesCommand__WEBPACK_IMPORTED_MODULE_21__[\"DetectFacesCommand\"]; });\n\n/* harmony import */ var _commands_DetectLabelsCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DetectLabelsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectLabelsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectLabelsCommand\", function() { return _commands_DetectLabelsCommand__WEBPACK_IMPORTED_MODULE_22__[\"DetectLabelsCommand\"]; });\n\n/* harmony import */ var _commands_DetectModerationLabelsCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/DetectModerationLabelsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectModerationLabelsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectModerationLabelsCommand\", function() { return _commands_DetectModerationLabelsCommand__WEBPACK_IMPORTED_MODULE_23__[\"DetectModerationLabelsCommand\"]; });\n\n/* harmony import */ var _commands_DetectProtectiveEquipmentCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/DetectProtectiveEquipmentCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectProtectiveEquipmentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectProtectiveEquipmentCommand\", function() { return _commands_DetectProtectiveEquipmentCommand__WEBPACK_IMPORTED_MODULE_24__[\"DetectProtectiveEquipmentCommand\"]; });\n\n/* harmony import */ var _commands_DetectTextCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/DetectTextCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DetectTextCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectTextCommand\", function() { return _commands_DetectTextCommand__WEBPACK_IMPORTED_MODULE_25__[\"DetectTextCommand\"]; });\n\n/* harmony import */ var _commands_GetCelebrityInfoCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/GetCelebrityInfoCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityInfoCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityInfoCommand\", function() { return _commands_GetCelebrityInfoCommand__WEBPACK_IMPORTED_MODULE_26__[\"GetCelebrityInfoCommand\"]; });\n\n/* harmony import */ var _commands_GetCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/GetCelebrityRecognitionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityRecognitionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityRecognitionCommand\", function() { return _commands_GetCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_27__[\"GetCelebrityRecognitionCommand\"]; });\n\n/* harmony import */ var _pagination_GetCelebrityRecognitionPaginator__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./pagination/GetCelebrityRecognitionPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetCelebrityRecognitionPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetCelebrityRecognition\", function() { return _pagination_GetCelebrityRecognitionPaginator__WEBPACK_IMPORTED_MODULE_28__[\"paginateGetCelebrityRecognition\"]; });\n\n/* harmony import */ var _commands_GetContentModerationCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/GetContentModerationCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetContentModerationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetContentModerationCommand\", function() { return _commands_GetContentModerationCommand__WEBPACK_IMPORTED_MODULE_29__[\"GetContentModerationCommand\"]; });\n\n/* harmony import */ var _pagination_GetContentModerationPaginator__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./pagination/GetContentModerationPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetContentModerationPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetContentModeration\", function() { return _pagination_GetContentModerationPaginator__WEBPACK_IMPORTED_MODULE_30__[\"paginateGetContentModeration\"]; });\n\n/* harmony import */ var _commands_GetFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/GetFaceDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceDetectionCommand\", function() { return _commands_GetFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_31__[\"GetFaceDetectionCommand\"]; });\n\n/* harmony import */ var _pagination_GetFaceDetectionPaginator__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./pagination/GetFaceDetectionPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetFaceDetectionPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetFaceDetection\", function() { return _pagination_GetFaceDetectionPaginator__WEBPACK_IMPORTED_MODULE_32__[\"paginateGetFaceDetection\"]; });\n\n/* harmony import */ var _commands_GetFaceSearchCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/GetFaceSearchCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceSearchCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceSearchCommand\", function() { return _commands_GetFaceSearchCommand__WEBPACK_IMPORTED_MODULE_33__[\"GetFaceSearchCommand\"]; });\n\n/* harmony import */ var _pagination_GetFaceSearchPaginator__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./pagination/GetFaceSearchPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetFaceSearchPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetFaceSearch\", function() { return _pagination_GetFaceSearchPaginator__WEBPACK_IMPORTED_MODULE_34__[\"paginateGetFaceSearch\"]; });\n\n/* harmony import */ var _commands_GetLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/GetLabelDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetLabelDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLabelDetectionCommand\", function() { return _commands_GetLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_35__[\"GetLabelDetectionCommand\"]; });\n\n/* harmony import */ var _pagination_GetLabelDetectionPaginator__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./pagination/GetLabelDetectionPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetLabelDetectionPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetLabelDetection\", function() { return _pagination_GetLabelDetectionPaginator__WEBPACK_IMPORTED_MODULE_36__[\"paginateGetLabelDetection\"]; });\n\n/* harmony import */ var _commands_GetPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/GetPersonTrackingCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetPersonTrackingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPersonTrackingCommand\", function() { return _commands_GetPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_37__[\"GetPersonTrackingCommand\"]; });\n\n/* harmony import */ var _pagination_GetPersonTrackingPaginator__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./pagination/GetPersonTrackingPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetPersonTrackingPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetPersonTracking\", function() { return _pagination_GetPersonTrackingPaginator__WEBPACK_IMPORTED_MODULE_38__[\"paginateGetPersonTracking\"]; });\n\n/* harmony import */ var _commands_GetSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/GetSegmentDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetSegmentDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentDetectionCommand\", function() { return _commands_GetSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_39__[\"GetSegmentDetectionCommand\"]; });\n\n/* harmony import */ var _pagination_GetSegmentDetectionPaginator__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./pagination/GetSegmentDetectionPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetSegmentDetectionPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetSegmentDetection\", function() { return _pagination_GetSegmentDetectionPaginator__WEBPACK_IMPORTED_MODULE_40__[\"paginateGetSegmentDetection\"]; });\n\n/* harmony import */ var _commands_GetTextDetectionCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/GetTextDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetTextDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTextDetectionCommand\", function() { return _commands_GetTextDetectionCommand__WEBPACK_IMPORTED_MODULE_41__[\"GetTextDetectionCommand\"]; });\n\n/* harmony import */ var _pagination_GetTextDetectionPaginator__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./pagination/GetTextDetectionPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetTextDetectionPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateGetTextDetection\", function() { return _pagination_GetTextDetectionPaginator__WEBPACK_IMPORTED_MODULE_42__[\"paginateGetTextDetection\"]; });\n\n/* harmony import */ var _commands_IndexFacesCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/IndexFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/IndexFacesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IndexFacesCommand\", function() { return _commands_IndexFacesCommand__WEBPACK_IMPORTED_MODULE_43__[\"IndexFacesCommand\"]; });\n\n/* harmony import */ var _commands_ListCollectionsCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/ListCollectionsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListCollectionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListCollectionsCommand\", function() { return _commands_ListCollectionsCommand__WEBPACK_IMPORTED_MODULE_44__[\"ListCollectionsCommand\"]; });\n\n/* harmony import */ var _pagination_ListCollectionsPaginator__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./pagination/ListCollectionsPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListCollectionsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListCollections\", function() { return _pagination_ListCollectionsPaginator__WEBPACK_IMPORTED_MODULE_45__[\"paginateListCollections\"]; });\n\n/* harmony import */ var _commands_ListFacesCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/ListFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListFacesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListFacesCommand\", function() { return _commands_ListFacesCommand__WEBPACK_IMPORTED_MODULE_46__[\"ListFacesCommand\"]; });\n\n/* harmony import */ var _pagination_ListFacesPaginator__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./pagination/ListFacesPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListFacesPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListFaces\", function() { return _pagination_ListFacesPaginator__WEBPACK_IMPORTED_MODULE_47__[\"paginateListFaces\"]; });\n\n/* harmony import */ var _commands_ListStreamProcessorsCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./commands/ListStreamProcessorsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListStreamProcessorsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamProcessorsCommand\", function() { return _commands_ListStreamProcessorsCommand__WEBPACK_IMPORTED_MODULE_48__[\"ListStreamProcessorsCommand\"]; });\n\n/* harmony import */ var _pagination_ListStreamProcessorsPaginator__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./pagination/ListStreamProcessorsPaginator */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListStreamProcessorsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListStreamProcessors\", function() { return _pagination_ListStreamProcessorsPaginator__WEBPACK_IMPORTED_MODULE_49__[\"paginateListStreamProcessors\"]; });\n\n/* harmony import */ var _commands_RecognizeCelebritiesCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./commands/RecognizeCelebritiesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/RecognizeCelebritiesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeCelebritiesCommand\", function() { return _commands_RecognizeCelebritiesCommand__WEBPACK_IMPORTED_MODULE_50__[\"RecognizeCelebritiesCommand\"]; });\n\n/* harmony import */ var _commands_SearchFacesCommand__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./commands/SearchFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesCommand\", function() { return _commands_SearchFacesCommand__WEBPACK_IMPORTED_MODULE_51__[\"SearchFacesCommand\"]; });\n\n/* harmony import */ var _commands_SearchFacesByImageCommand__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./commands/SearchFacesByImageCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/SearchFacesByImageCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesByImageCommand\", function() { return _commands_SearchFacesByImageCommand__WEBPACK_IMPORTED_MODULE_52__[\"SearchFacesByImageCommand\"]; });\n\n/* harmony import */ var _commands_StartCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./commands/StartCelebrityRecognitionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartCelebrityRecognitionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartCelebrityRecognitionCommand\", function() { return _commands_StartCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_53__[\"StartCelebrityRecognitionCommand\"]; });\n\n/* harmony import */ var _commands_StartContentModerationCommand__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./commands/StartContentModerationCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartContentModerationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartContentModerationCommand\", function() { return _commands_StartContentModerationCommand__WEBPACK_IMPORTED_MODULE_54__[\"StartContentModerationCommand\"]; });\n\n/* harmony import */ var _commands_StartFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./commands/StartFaceDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceDetectionCommand\", function() { return _commands_StartFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_55__[\"StartFaceDetectionCommand\"]; });\n\n/* harmony import */ var _commands_StartFaceSearchCommand__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./commands/StartFaceSearchCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartFaceSearchCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceSearchCommand\", function() { return _commands_StartFaceSearchCommand__WEBPACK_IMPORTED_MODULE_56__[\"StartFaceSearchCommand\"]; });\n\n/* harmony import */ var _commands_StartLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./commands/StartLabelDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartLabelDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartLabelDetectionCommand\", function() { return _commands_StartLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_57__[\"StartLabelDetectionCommand\"]; });\n\n/* harmony import */ var _commands_StartPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./commands/StartPersonTrackingCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartPersonTrackingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPersonTrackingCommand\", function() { return _commands_StartPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_58__[\"StartPersonTrackingCommand\"]; });\n\n/* harmony import */ var _commands_StartProjectVersionCommand__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./commands/StartProjectVersionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartProjectVersionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartProjectVersionCommand\", function() { return _commands_StartProjectVersionCommand__WEBPACK_IMPORTED_MODULE_59__[\"StartProjectVersionCommand\"]; });\n\n/* harmony import */ var _commands_StartSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./commands/StartSegmentDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartSegmentDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionCommand\", function() { return _commands_StartSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_60__[\"StartSegmentDetectionCommand\"]; });\n\n/* harmony import */ var _commands_StartStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./commands/StartStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartStreamProcessorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartStreamProcessorCommand\", function() { return _commands_StartStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_61__[\"StartStreamProcessorCommand\"]; });\n\n/* harmony import */ var _commands_StartTextDetectionCommand__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./commands/StartTextDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StartTextDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionCommand\", function() { return _commands_StartTextDetectionCommand__WEBPACK_IMPORTED_MODULE_62__[\"StartTextDetectionCommand\"]; });\n\n/* harmony import */ var _commands_StopProjectVersionCommand__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./commands/StopProjectVersionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopProjectVersionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopProjectVersionCommand\", function() { return _commands_StopProjectVersionCommand__WEBPACK_IMPORTED_MODULE_63__[\"StopProjectVersionCommand\"]; });\n\n/* harmony import */ var _commands_StopStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./commands/StopStreamProcessorCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/StopStreamProcessorCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopStreamProcessorCommand\", function() { return _commands_StopStreamProcessorCommand__WEBPACK_IMPORTED_MODULE_64__[\"StopStreamProcessorCommand\"]; });\n\n/* harmony import */ var _pagination_Interfaces__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./pagination/Interfaces */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/Interfaces.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"AccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AgeRange\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"AgeRange\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3Object\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"S3Object\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GroundTruthManifest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GroundTruthManifest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Asset\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Asset\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Attribute\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Attribute\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AudioMetadata\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"AudioMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Beard\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Beard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BodyPart\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"BodyPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BoundingBox\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"BoundingBox\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CoversBodyPart\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CoversBodyPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProtectiveEquipmentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EquipmentDetection\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"EquipmentDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentBodyPart\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProtectiveEquipmentBodyPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LandmarkType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"LandmarkType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Landmark\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Landmark\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Pose\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Pose\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageQuality\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ImageQuality\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ComparedFace\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ComparedFace\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Celebrity\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Celebrity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Emotion\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Emotion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Eyeglasses\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Eyeglasses\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EyeOpen\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"EyeOpen\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GenderType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GenderType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Gender\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Gender\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MouthOpen\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"MouthOpen\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Mustache\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Mustache\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Smile\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Smile\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Sunglasses\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Sunglasses\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceDetail\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"FaceDetail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CelebrityDetail\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CelebrityDetail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CelebrityRecognition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CelebrityRecognition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CelebrityRecognitionSortBy\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CelebrityRecognitionSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ComparedSourceImageFace\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ComparedSourceImageFace\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QualityFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"QualityFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Image\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Image\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CompareFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesMatch\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CompareFacesMatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrientationCorrection\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"OrientationCorrection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CompareFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageTooLargeException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ImageTooLargeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerError\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"InternalServerError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidImageFormatException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"InvalidImageFormatException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"InvalidParameterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3ObjectException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"InvalidS3ObjectException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProvisionedThroughputExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProvisionedThroughputExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentClassifier\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ContentClassifier\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModerationLabel\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ModerationLabel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentModerationDetection\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ContentModerationDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentModerationSortBy\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ContentModerationSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCollectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CreateCollectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCollectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CreateCollectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceAlreadyExistsException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ResourceAlreadyExistsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CreateProjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CreateProjectResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ResourceInUseException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"OutputConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TestingData\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"TestingData\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TrainingData\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"TrainingData\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectVersionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CreateProjectVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectVersionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CreateProjectVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KinesisVideoStream\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"KinesisVideoStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StreamProcessorInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KinesisDataStream\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"KinesisDataStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StreamProcessorOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceSearchSettings\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"FaceSearchSettings\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorSettings\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StreamProcessorSettings\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamProcessorRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CreateStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamProcessorResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CreateStreamProcessorResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Point\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Point\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Geometry\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Geometry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CustomLabel\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"CustomLabel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCollectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteCollectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCollectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteCollectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteFacesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteFacesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteProjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProjectStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProjectStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteProjectResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectVersionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteProjectVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProjectVersionStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProjectVersionStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectVersionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteProjectVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamProcessorRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamProcessorResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DeleteStreamProcessorResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeCollectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DescribeCollectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeCollectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DescribeCollectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DescribeProjectsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProjectDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProjectDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DescribeProjectsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidPaginationTokenException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"InvalidPaginationTokenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectVersionsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DescribeProjectVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Summary\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Summary\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EvaluationResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"EvaluationResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationData\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ValidationData\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TestingDataResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"TestingDataResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TrainingDataResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"TrainingDataResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProjectVersionDescription\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProjectVersionDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectVersionsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DescribeProjectVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamProcessorRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DescribeStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StreamProcessorStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamProcessorResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DescribeStreamProcessorResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectCustomLabelsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectCustomLabelsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectCustomLabelsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectCustomLabelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotReadyException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ResourceNotReadyException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectFacesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectFacesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectionFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectionFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectLabelsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectLabelsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Instance\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Instance\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Parent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Parent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Label\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Label\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectLabelsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectLabelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopDataAttributes\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"HumanLoopDataAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"HumanLoopConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectModerationLabelsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectModerationLabelsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopActivationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"HumanLoopActivationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectModerationLabelsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectModerationLabelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopQuotaExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"HumanLoopQuotaExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentSummarizationAttributes\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProtectiveEquipmentSummarizationAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectProtectiveEquipmentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectProtectiveEquipmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentPerson\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProtectiveEquipmentPerson\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentSummary\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ProtectiveEquipmentSummary\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectProtectiveEquipmentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectProtectiveEquipmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RegionOfInterest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"RegionOfInterest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectTextFilters\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectTextFilters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectTextRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectTextRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextTypes\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"TextTypes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextDetection\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"TextDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectTextResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"DetectTextResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Face\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Face\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceAttributes\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"FaceAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceDetection\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"FaceDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceMatch\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"FaceMatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceRecord\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"FaceRecord\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceSearchSortBy\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"FaceSearchSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityInfoRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetCelebrityInfoRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityInfoResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetCelebrityInfoResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityRecognitionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetCelebrityRecognitionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VideoJobStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"VideoJobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VideoMetadata\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"VideoMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityRecognitionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetCelebrityRecognitionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetContentModerationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetContentModerationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetContentModerationResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetContentModerationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetFaceDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetFaceDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceSearchRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetFaceSearchRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonDetail\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"PersonDetail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonMatch\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"PersonMatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceSearchResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetFaceSearchResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LabelDetectionSortBy\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"LabelDetectionSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLabelDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetLabelDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LabelDetection\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"LabelDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLabelDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetLabelDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonTrackingSortBy\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"PersonTrackingSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPersonTrackingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetPersonTrackingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonDetection\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"PersonDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPersonTrackingResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetPersonTrackingResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetSegmentDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShotSegment\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ShotSegment\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TechnicalCueType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"TechnicalCueType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TechnicalCueSegment\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"TechnicalCueSegment\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"SegmentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentDetection\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"SegmentDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentTypeInfo\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"SegmentTypeInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetSegmentDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTextDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetTextDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextDetectionResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"TextDetectionResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTextDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"GetTextDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdempotentParameterMismatchException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"IdempotentParameterMismatchException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IndexFacesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"IndexFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Reason\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Reason\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnindexedFace\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"UnindexedFace\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IndexFacesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"IndexFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceQuotaExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ServiceQuotaExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListCollectionsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ListCollectionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListCollectionsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ListCollectionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListFacesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ListFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListFacesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ListFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamProcessorsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ListStreamProcessorsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessor\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StreamProcessor\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamProcessorsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"ListStreamProcessorsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotificationChannel\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"NotificationChannel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeCelebritiesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"RecognizeCelebritiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeCelebritiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"RecognizeCelebritiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"SearchFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"SearchFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesByImageRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"SearchFacesByImageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesByImageResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"SearchFacesByImageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Video\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"Video\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartCelebrityRecognitionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartCelebrityRecognitionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartCelebrityRecognitionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartCelebrityRecognitionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VideoTooLargeException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"VideoTooLargeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartContentModerationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartContentModerationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartContentModerationResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartContentModerationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartFaceDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartFaceDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceSearchRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartFaceSearchRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceSearchResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartFaceSearchResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartLabelDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartLabelDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartLabelDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartLabelDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPersonTrackingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartPersonTrackingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPersonTrackingResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartPersonTrackingResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartProjectVersionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartProjectVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartProjectVersionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartProjectVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartShotDetectionFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartShotDetectionFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTechnicalCueDetectionFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartTechnicalCueDetectionFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionFilters\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartSegmentDetectionFilters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartSegmentDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartSegmentDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartStreamProcessorRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartStreamProcessorResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartStreamProcessorResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionFilters\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartTextDetectionFilters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartTextDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StartTextDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopProjectVersionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StopProjectVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopProjectVersionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StopProjectVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopStreamProcessorRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StopStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopStreamProcessorResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_66__[\"StopStreamProcessorResponse\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/models/index.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/models/index.js ***! \**************************************************************************/ /*! exports provided: AccessDeniedException, AgeRange, S3Object, GroundTruthManifest, Asset, Attribute, AudioMetadata, Beard, BodyPart, BoundingBox, CoversBodyPart, ProtectiveEquipmentType, EquipmentDetection, ProtectiveEquipmentBodyPart, LandmarkType, Landmark, Pose, ImageQuality, ComparedFace, Celebrity, Emotion, Eyeglasses, EyeOpen, GenderType, Gender, MouthOpen, Mustache, Smile, Sunglasses, FaceDetail, CelebrityDetail, CelebrityRecognition, CelebrityRecognitionSortBy, ComparedSourceImageFace, QualityFilter, Image, CompareFacesRequest, CompareFacesMatch, OrientationCorrection, CompareFacesResponse, ImageTooLargeException, InternalServerError, InvalidImageFormatException, InvalidParameterException, InvalidS3ObjectException, ProvisionedThroughputExceededException, ThrottlingException, ContentClassifier, ModerationLabel, ContentModerationDetection, ContentModerationSortBy, CreateCollectionRequest, CreateCollectionResponse, ResourceAlreadyExistsException, CreateProjectRequest, CreateProjectResponse, LimitExceededException, ResourceInUseException, OutputConfig, TestingData, TrainingData, CreateProjectVersionRequest, CreateProjectVersionResponse, ResourceNotFoundException, KinesisVideoStream, StreamProcessorInput, KinesisDataStream, StreamProcessorOutput, FaceSearchSettings, StreamProcessorSettings, CreateStreamProcessorRequest, CreateStreamProcessorResponse, Point, Geometry, CustomLabel, DeleteCollectionRequest, DeleteCollectionResponse, DeleteFacesRequest, DeleteFacesResponse, DeleteProjectRequest, ProjectStatus, DeleteProjectResponse, DeleteProjectVersionRequest, ProjectVersionStatus, DeleteProjectVersionResponse, DeleteStreamProcessorRequest, DeleteStreamProcessorResponse, DescribeCollectionRequest, DescribeCollectionResponse, DescribeProjectsRequest, ProjectDescription, DescribeProjectsResponse, InvalidPaginationTokenException, DescribeProjectVersionsRequest, Summary, EvaluationResult, ValidationData, TestingDataResult, TrainingDataResult, ProjectVersionDescription, DescribeProjectVersionsResponse, DescribeStreamProcessorRequest, StreamProcessorStatus, DescribeStreamProcessorResponse, DetectCustomLabelsRequest, DetectCustomLabelsResponse, ResourceNotReadyException, DetectFacesRequest, DetectFacesResponse, DetectionFilter, DetectLabelsRequest, Instance, Parent, Label, DetectLabelsResponse, HumanLoopDataAttributes, HumanLoopConfig, DetectModerationLabelsRequest, HumanLoopActivationOutput, DetectModerationLabelsResponse, HumanLoopQuotaExceededException, ProtectiveEquipmentSummarizationAttributes, DetectProtectiveEquipmentRequest, ProtectiveEquipmentPerson, ProtectiveEquipmentSummary, DetectProtectiveEquipmentResponse, RegionOfInterest, DetectTextFilters, DetectTextRequest, TextTypes, TextDetection, DetectTextResponse, Face, FaceAttributes, FaceDetection, FaceMatch, FaceRecord, FaceSearchSortBy, GetCelebrityInfoRequest, GetCelebrityInfoResponse, GetCelebrityRecognitionRequest, VideoJobStatus, VideoMetadata, GetCelebrityRecognitionResponse, GetContentModerationRequest, GetContentModerationResponse, GetFaceDetectionRequest, GetFaceDetectionResponse, GetFaceSearchRequest, PersonDetail, PersonMatch, GetFaceSearchResponse, LabelDetectionSortBy, GetLabelDetectionRequest, LabelDetection, GetLabelDetectionResponse, PersonTrackingSortBy, GetPersonTrackingRequest, PersonDetection, GetPersonTrackingResponse, GetSegmentDetectionRequest, ShotSegment, TechnicalCueType, TechnicalCueSegment, SegmentType, SegmentDetection, SegmentTypeInfo, GetSegmentDetectionResponse, GetTextDetectionRequest, TextDetectionResult, GetTextDetectionResponse, IdempotentParameterMismatchException, IndexFacesRequest, Reason, UnindexedFace, IndexFacesResponse, ServiceQuotaExceededException, ListCollectionsRequest, ListCollectionsResponse, ListFacesRequest, ListFacesResponse, ListStreamProcessorsRequest, StreamProcessor, ListStreamProcessorsResponse, NotificationChannel, RecognizeCelebritiesRequest, RecognizeCelebritiesResponse, SearchFacesRequest, SearchFacesResponse, SearchFacesByImageRequest, SearchFacesByImageResponse, Video, StartCelebrityRecognitionRequest, StartCelebrityRecognitionResponse, VideoTooLargeException, StartContentModerationRequest, StartContentModerationResponse, StartFaceDetectionRequest, StartFaceDetectionResponse, StartFaceSearchRequest, StartFaceSearchResponse, StartLabelDetectionRequest, StartLabelDetectionResponse, StartPersonTrackingRequest, StartPersonTrackingResponse, StartProjectVersionRequest, StartProjectVersionResponse, StartShotDetectionFilter, StartTechnicalCueDetectionFilter, StartSegmentDetectionFilters, StartSegmentDetectionRequest, StartSegmentDetectionResponse, StartStreamProcessorRequest, StartStreamProcessorResponse, StartTextDetectionFilters, StartTextDetectionRequest, StartTextDetectionResponse, StopProjectVersionRequest, StopProjectVersionResponse, StopStreamProcessorRequest, StopStreamProcessorResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AgeRange\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AgeRange\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3Object\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"S3Object\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GroundTruthManifest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GroundTruthManifest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Asset\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Asset\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Attribute\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Attribute\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AudioMetadata\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AudioMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Beard\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Beard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BodyPart\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BodyPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BoundingBox\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BoundingBox\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CoversBodyPart\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CoversBodyPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProtectiveEquipmentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EquipmentDetection\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EquipmentDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentBodyPart\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProtectiveEquipmentBodyPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LandmarkType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LandmarkType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Landmark\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Landmark\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Pose\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Pose\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageQuality\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ImageQuality\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ComparedFace\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ComparedFace\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Celebrity\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Celebrity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Emotion\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Emotion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Eyeglasses\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Eyeglasses\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EyeOpen\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EyeOpen\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GenderType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GenderType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Gender\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Gender\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MouthOpen\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MouthOpen\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Mustache\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Mustache\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Smile\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Smile\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Sunglasses\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Sunglasses\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceDetail\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FaceDetail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CelebrityDetail\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CelebrityDetail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CelebrityRecognition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CelebrityRecognition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CelebrityRecognitionSortBy\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CelebrityRecognitionSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ComparedSourceImageFace\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ComparedSourceImageFace\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QualityFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"QualityFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Image\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Image\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CompareFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesMatch\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CompareFacesMatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OrientationCorrection\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OrientationCorrection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CompareFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageTooLargeException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ImageTooLargeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerError\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalServerError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidImageFormatException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidImageFormatException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidParameterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3ObjectException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidS3ObjectException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProvisionedThroughputExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProvisionedThroughputExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentClassifier\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ContentClassifier\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModerationLabel\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ModerationLabel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentModerationDetection\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ContentModerationDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentModerationSortBy\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ContentModerationSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCollectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateCollectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateCollectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateCollectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceAlreadyExistsException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceAlreadyExistsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateProjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateProjectResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceInUseException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OutputConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TestingData\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TestingData\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TrainingData\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TrainingData\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectVersionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateProjectVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectVersionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateProjectVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KinesisVideoStream\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KinesisVideoStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorInput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StreamProcessorInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KinesisDataStream\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"KinesisDataStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StreamProcessorOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceSearchSettings\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FaceSearchSettings\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorSettings\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StreamProcessorSettings\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamProcessorRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamProcessorResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateStreamProcessorResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Point\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Point\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Geometry\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Geometry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CustomLabel\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CustomLabel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCollectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteCollectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteCollectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteCollectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteFacesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteFacesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteProjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProjectStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProjectStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteProjectResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectVersionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteProjectVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProjectVersionStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProjectVersionStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectVersionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteProjectVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamProcessorRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamProcessorResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteStreamProcessorResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeCollectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeCollectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeCollectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeCollectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeProjectsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProjectDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProjectDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeProjectsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidPaginationTokenException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidPaginationTokenException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectVersionsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeProjectVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Summary\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Summary\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EvaluationResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EvaluationResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationData\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ValidationData\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TestingDataResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TestingDataResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TrainingDataResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TrainingDataResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProjectVersionDescription\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProjectVersionDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectVersionsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeProjectVersionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamProcessorRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StreamProcessorStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamProcessorResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeStreamProcessorResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectCustomLabelsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectCustomLabelsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectCustomLabelsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectCustomLabelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotReadyException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotReadyException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectFacesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectFacesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectionFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectionFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectLabelsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectLabelsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Instance\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Instance\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Parent\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Parent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Label\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Label\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectLabelsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectLabelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopDataAttributes\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HumanLoopDataAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HumanLoopConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectModerationLabelsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectModerationLabelsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopActivationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HumanLoopActivationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectModerationLabelsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectModerationLabelsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopQuotaExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HumanLoopQuotaExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentSummarizationAttributes\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProtectiveEquipmentSummarizationAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectProtectiveEquipmentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectProtectiveEquipmentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentPerson\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProtectiveEquipmentPerson\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentSummary\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProtectiveEquipmentSummary\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectProtectiveEquipmentResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectProtectiveEquipmentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RegionOfInterest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RegionOfInterest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectTextFilters\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectTextFilters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectTextRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectTextRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextTypes\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextTypes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextDetection\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectTextResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectTextResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Face\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Face\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceAttributes\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FaceAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceDetection\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FaceDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceMatch\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FaceMatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceRecord\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FaceRecord\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FaceSearchSortBy\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FaceSearchSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityInfoRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCelebrityInfoRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityInfoResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCelebrityInfoResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityRecognitionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCelebrityRecognitionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VideoJobStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VideoJobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VideoMetadata\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VideoMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityRecognitionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetCelebrityRecognitionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetContentModerationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetContentModerationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetContentModerationResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetContentModerationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetFaceDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetFaceDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceSearchRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetFaceSearchRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonDetail\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PersonDetail\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonMatch\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PersonMatch\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetFaceSearchResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetFaceSearchResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LabelDetectionSortBy\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LabelDetectionSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLabelDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLabelDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LabelDetection\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LabelDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetLabelDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetLabelDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonTrackingSortBy\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PersonTrackingSortBy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPersonTrackingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetPersonTrackingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonDetection\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PersonDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPersonTrackingResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetPersonTrackingResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetSegmentDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShotSegment\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ShotSegment\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TechnicalCueType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TechnicalCueType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TechnicalCueSegment\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TechnicalCueSegment\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentDetection\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentDetection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SegmentTypeInfo\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SegmentTypeInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetSegmentDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTextDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetTextDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextDetectionResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextDetectionResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTextDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetTextDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdempotentParameterMismatchException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IdempotentParameterMismatchException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IndexFacesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IndexFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Reason\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Reason\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnindexedFace\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnindexedFace\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IndexFacesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IndexFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceQuotaExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ServiceQuotaExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListCollectionsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListCollectionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListCollectionsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListCollectionsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListFacesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListFacesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamProcessorsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListStreamProcessorsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessor\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StreamProcessor\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListStreamProcessorsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListStreamProcessorsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotificationChannel\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NotificationChannel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeCelebritiesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RecognizeCelebritiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecognizeCelebritiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RecognizeCelebritiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchFacesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchFacesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesByImageRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchFacesByImageRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesByImageResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SearchFacesByImageResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Video\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Video\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartCelebrityRecognitionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartCelebrityRecognitionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartCelebrityRecognitionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartCelebrityRecognitionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VideoTooLargeException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VideoTooLargeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartContentModerationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartContentModerationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartContentModerationResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartContentModerationResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartFaceDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartFaceDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceSearchRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartFaceSearchRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartFaceSearchResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartFaceSearchResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartLabelDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartLabelDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartLabelDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartLabelDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPersonTrackingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartPersonTrackingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartPersonTrackingResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartPersonTrackingResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartProjectVersionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartProjectVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartProjectVersionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartProjectVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartShotDetectionFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartShotDetectionFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTechnicalCueDetectionFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartTechnicalCueDetectionFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionFilters\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartSegmentDetectionFilters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartSegmentDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartSegmentDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartStreamProcessorRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartStreamProcessorResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartStreamProcessorResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionFilters\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartTextDetectionFilters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartTextDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartTextDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopProjectVersionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopProjectVersionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopProjectVersionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopProjectVersionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopStreamProcessorRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopStreamProcessorRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopStreamProcessorResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopStreamProcessorResponse\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js ***! \*****************************************************************************/ /*! exports provided: AccessDeniedException, AgeRange, S3Object, GroundTruthManifest, Asset, Attribute, AudioMetadata, Beard, BodyPart, BoundingBox, CoversBodyPart, ProtectiveEquipmentType, EquipmentDetection, ProtectiveEquipmentBodyPart, LandmarkType, Landmark, Pose, ImageQuality, ComparedFace, Celebrity, Emotion, Eyeglasses, EyeOpen, GenderType, Gender, MouthOpen, Mustache, Smile, Sunglasses, FaceDetail, CelebrityDetail, CelebrityRecognition, CelebrityRecognitionSortBy, ComparedSourceImageFace, QualityFilter, Image, CompareFacesRequest, CompareFacesMatch, OrientationCorrection, CompareFacesResponse, ImageTooLargeException, InternalServerError, InvalidImageFormatException, InvalidParameterException, InvalidS3ObjectException, ProvisionedThroughputExceededException, ThrottlingException, ContentClassifier, ModerationLabel, ContentModerationDetection, ContentModerationSortBy, CreateCollectionRequest, CreateCollectionResponse, ResourceAlreadyExistsException, CreateProjectRequest, CreateProjectResponse, LimitExceededException, ResourceInUseException, OutputConfig, TestingData, TrainingData, CreateProjectVersionRequest, CreateProjectVersionResponse, ResourceNotFoundException, KinesisVideoStream, StreamProcessorInput, KinesisDataStream, StreamProcessorOutput, FaceSearchSettings, StreamProcessorSettings, CreateStreamProcessorRequest, CreateStreamProcessorResponse, Point, Geometry, CustomLabel, DeleteCollectionRequest, DeleteCollectionResponse, DeleteFacesRequest, DeleteFacesResponse, DeleteProjectRequest, ProjectStatus, DeleteProjectResponse, DeleteProjectVersionRequest, ProjectVersionStatus, DeleteProjectVersionResponse, DeleteStreamProcessorRequest, DeleteStreamProcessorResponse, DescribeCollectionRequest, DescribeCollectionResponse, DescribeProjectsRequest, ProjectDescription, DescribeProjectsResponse, InvalidPaginationTokenException, DescribeProjectVersionsRequest, Summary, EvaluationResult, ValidationData, TestingDataResult, TrainingDataResult, ProjectVersionDescription, DescribeProjectVersionsResponse, DescribeStreamProcessorRequest, StreamProcessorStatus, DescribeStreamProcessorResponse, DetectCustomLabelsRequest, DetectCustomLabelsResponse, ResourceNotReadyException, DetectFacesRequest, DetectFacesResponse, DetectionFilter, DetectLabelsRequest, Instance, Parent, Label, DetectLabelsResponse, HumanLoopDataAttributes, HumanLoopConfig, DetectModerationLabelsRequest, HumanLoopActivationOutput, DetectModerationLabelsResponse, HumanLoopQuotaExceededException, ProtectiveEquipmentSummarizationAttributes, DetectProtectiveEquipmentRequest, ProtectiveEquipmentPerson, ProtectiveEquipmentSummary, DetectProtectiveEquipmentResponse, RegionOfInterest, DetectTextFilters, DetectTextRequest, TextTypes, TextDetection, DetectTextResponse, Face, FaceAttributes, FaceDetection, FaceMatch, FaceRecord, FaceSearchSortBy, GetCelebrityInfoRequest, GetCelebrityInfoResponse, GetCelebrityRecognitionRequest, VideoJobStatus, VideoMetadata, GetCelebrityRecognitionResponse, GetContentModerationRequest, GetContentModerationResponse, GetFaceDetectionRequest, GetFaceDetectionResponse, GetFaceSearchRequest, PersonDetail, PersonMatch, GetFaceSearchResponse, LabelDetectionSortBy, GetLabelDetectionRequest, LabelDetection, GetLabelDetectionResponse, PersonTrackingSortBy, GetPersonTrackingRequest, PersonDetection, GetPersonTrackingResponse, GetSegmentDetectionRequest, ShotSegment, TechnicalCueType, TechnicalCueSegment, SegmentType, SegmentDetection, SegmentTypeInfo, GetSegmentDetectionResponse, GetTextDetectionRequest, TextDetectionResult, GetTextDetectionResponse, IdempotentParameterMismatchException, IndexFacesRequest, Reason, UnindexedFace, IndexFacesResponse, ServiceQuotaExceededException, ListCollectionsRequest, ListCollectionsResponse, ListFacesRequest, ListFacesResponse, ListStreamProcessorsRequest, StreamProcessor, ListStreamProcessorsResponse, NotificationChannel, RecognizeCelebritiesRequest, RecognizeCelebritiesResponse, SearchFacesRequest, SearchFacesResponse, SearchFacesByImageRequest, SearchFacesByImageResponse, Video, StartCelebrityRecognitionRequest, StartCelebrityRecognitionResponse, VideoTooLargeException, StartContentModerationRequest, StartContentModerationResponse, StartFaceDetectionRequest, StartFaceDetectionResponse, StartFaceSearchRequest, StartFaceSearchResponse, StartLabelDetectionRequest, StartLabelDetectionResponse, StartPersonTrackingRequest, StartPersonTrackingResponse, StartProjectVersionRequest, StartProjectVersionResponse, StartShotDetectionFilter, StartTechnicalCueDetectionFilter, StartSegmentDetectionFilters, StartSegmentDetectionRequest, StartSegmentDetectionResponse, StartStreamProcessorRequest, StartStreamProcessorResponse, StartTextDetectionFilters, StartTextDetectionRequest, StartTextDetectionResponse, StopProjectVersionRequest, StopProjectVersionResponse, StopStreamProcessorRequest, StopStreamProcessorResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return AccessDeniedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AgeRange\", function() { return AgeRange; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3Object\", function() { return S3Object; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GroundTruthManifest\", function() { return GroundTruthManifest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Asset\", function() { return Asset; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Attribute\", function() { return Attribute; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AudioMetadata\", function() { return AudioMetadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Beard\", function() { return Beard; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BodyPart\", function() { return BodyPart; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BoundingBox\", function() { return BoundingBox; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CoversBodyPart\", function() { return CoversBodyPart; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentType\", function() { return ProtectiveEquipmentType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EquipmentDetection\", function() { return EquipmentDetection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentBodyPart\", function() { return ProtectiveEquipmentBodyPart; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LandmarkType\", function() { return LandmarkType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Landmark\", function() { return Landmark; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Pose\", function() { return Pose; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImageQuality\", function() { return ImageQuality; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ComparedFace\", function() { return ComparedFace; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Celebrity\", function() { return Celebrity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Emotion\", function() { return Emotion; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Eyeglasses\", function() { return Eyeglasses; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EyeOpen\", function() { return EyeOpen; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GenderType\", function() { return GenderType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Gender\", function() { return Gender; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MouthOpen\", function() { return MouthOpen; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Mustache\", function() { return Mustache; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Smile\", function() { return Smile; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Sunglasses\", function() { return Sunglasses; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FaceDetail\", function() { return FaceDetail; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CelebrityDetail\", function() { return CelebrityDetail; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CelebrityRecognition\", function() { return CelebrityRecognition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CelebrityRecognitionSortBy\", function() { return CelebrityRecognitionSortBy; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ComparedSourceImageFace\", function() { return ComparedSourceImageFace; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QualityFilter\", function() { return QualityFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Image\", function() { return Image; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesRequest\", function() { return CompareFacesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesMatch\", function() { return CompareFacesMatch; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OrientationCorrection\", function() { return OrientationCorrection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompareFacesResponse\", function() { return CompareFacesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImageTooLargeException\", function() { return ImageTooLargeException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalServerError\", function() { return InternalServerError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidImageFormatException\", function() { return InvalidImageFormatException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return InvalidParameterException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3ObjectException\", function() { return InvalidS3ObjectException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProvisionedThroughputExceededException\", function() { return ProvisionedThroughputExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return ThrottlingException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ContentClassifier\", function() { return ContentClassifier; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ModerationLabel\", function() { return ModerationLabel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ContentModerationDetection\", function() { return ContentModerationDetection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ContentModerationSortBy\", function() { return ContentModerationSortBy; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateCollectionRequest\", function() { return CreateCollectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateCollectionResponse\", function() { return CreateCollectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceAlreadyExistsException\", function() { return ResourceAlreadyExistsException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectRequest\", function() { return CreateProjectRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectResponse\", function() { return CreateProjectResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return LimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceInUseException\", function() { return ResourceInUseException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OutputConfig\", function() { return OutputConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TestingData\", function() { return TestingData; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TrainingData\", function() { return TrainingData; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectVersionRequest\", function() { return CreateProjectVersionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateProjectVersionResponse\", function() { return CreateProjectVersionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KinesisVideoStream\", function() { return KinesisVideoStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorInput\", function() { return StreamProcessorInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KinesisDataStream\", function() { return KinesisDataStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorOutput\", function() { return StreamProcessorOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FaceSearchSettings\", function() { return FaceSearchSettings; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorSettings\", function() { return StreamProcessorSettings; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamProcessorRequest\", function() { return CreateStreamProcessorRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateStreamProcessorResponse\", function() { return CreateStreamProcessorResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Point\", function() { return Point; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Geometry\", function() { return Geometry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CustomLabel\", function() { return CustomLabel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteCollectionRequest\", function() { return DeleteCollectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteCollectionResponse\", function() { return DeleteCollectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteFacesRequest\", function() { return DeleteFacesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteFacesResponse\", function() { return DeleteFacesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectRequest\", function() { return DeleteProjectRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProjectStatus\", function() { return ProjectStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectResponse\", function() { return DeleteProjectResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectVersionRequest\", function() { return DeleteProjectVersionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProjectVersionStatus\", function() { return ProjectVersionStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteProjectVersionResponse\", function() { return DeleteProjectVersionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamProcessorRequest\", function() { return DeleteStreamProcessorRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteStreamProcessorResponse\", function() { return DeleteStreamProcessorResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeCollectionRequest\", function() { return DescribeCollectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeCollectionResponse\", function() { return DescribeCollectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectsRequest\", function() { return DescribeProjectsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProjectDescription\", function() { return ProjectDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectsResponse\", function() { return DescribeProjectsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidPaginationTokenException\", function() { return InvalidPaginationTokenException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectVersionsRequest\", function() { return DescribeProjectVersionsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Summary\", function() { return Summary; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EvaluationResult\", function() { return EvaluationResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ValidationData\", function() { return ValidationData; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TestingDataResult\", function() { return TestingDataResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TrainingDataResult\", function() { return TrainingDataResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProjectVersionDescription\", function() { return ProjectVersionDescription; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeProjectVersionsResponse\", function() { return DescribeProjectVersionsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamProcessorRequest\", function() { return DescribeStreamProcessorRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessorStatus\", function() { return StreamProcessorStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeStreamProcessorResponse\", function() { return DescribeStreamProcessorResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectCustomLabelsRequest\", function() { return DetectCustomLabelsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectCustomLabelsResponse\", function() { return DetectCustomLabelsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotReadyException\", function() { return ResourceNotReadyException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectFacesRequest\", function() { return DetectFacesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectFacesResponse\", function() { return DetectFacesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectionFilter\", function() { return DetectionFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectLabelsRequest\", function() { return DetectLabelsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Instance\", function() { return Instance; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Parent\", function() { return Parent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Label\", function() { return Label; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectLabelsResponse\", function() { return DetectLabelsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopDataAttributes\", function() { return HumanLoopDataAttributes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopConfig\", function() { return HumanLoopConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectModerationLabelsRequest\", function() { return DetectModerationLabelsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopActivationOutput\", function() { return HumanLoopActivationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectModerationLabelsResponse\", function() { return DetectModerationLabelsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopQuotaExceededException\", function() { return HumanLoopQuotaExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentSummarizationAttributes\", function() { return ProtectiveEquipmentSummarizationAttributes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectProtectiveEquipmentRequest\", function() { return DetectProtectiveEquipmentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentPerson\", function() { return ProtectiveEquipmentPerson; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProtectiveEquipmentSummary\", function() { return ProtectiveEquipmentSummary; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectProtectiveEquipmentResponse\", function() { return DetectProtectiveEquipmentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RegionOfInterest\", function() { return RegionOfInterest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectTextFilters\", function() { return DetectTextFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectTextRequest\", function() { return DetectTextRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextTypes\", function() { return TextTypes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextDetection\", function() { return TextDetection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectTextResponse\", function() { return DetectTextResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Face\", function() { return Face; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FaceAttributes\", function() { return FaceAttributes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FaceDetection\", function() { return FaceDetection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FaceMatch\", function() { return FaceMatch; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FaceRecord\", function() { return FaceRecord; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FaceSearchSortBy\", function() { return FaceSearchSortBy; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityInfoRequest\", function() { return GetCelebrityInfoRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityInfoResponse\", function() { return GetCelebrityInfoResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityRecognitionRequest\", function() { return GetCelebrityRecognitionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VideoJobStatus\", function() { return VideoJobStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VideoMetadata\", function() { return VideoMetadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetCelebrityRecognitionResponse\", function() { return GetCelebrityRecognitionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetContentModerationRequest\", function() { return GetContentModerationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetContentModerationResponse\", function() { return GetContentModerationResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetFaceDetectionRequest\", function() { return GetFaceDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetFaceDetectionResponse\", function() { return GetFaceDetectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetFaceSearchRequest\", function() { return GetFaceSearchRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PersonDetail\", function() { return PersonDetail; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PersonMatch\", function() { return PersonMatch; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetFaceSearchResponse\", function() { return GetFaceSearchResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LabelDetectionSortBy\", function() { return LabelDetectionSortBy; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLabelDetectionRequest\", function() { return GetLabelDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LabelDetection\", function() { return LabelDetection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetLabelDetectionResponse\", function() { return GetLabelDetectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PersonTrackingSortBy\", function() { return PersonTrackingSortBy; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPersonTrackingRequest\", function() { return GetPersonTrackingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PersonDetection\", function() { return PersonDetection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPersonTrackingResponse\", function() { return GetPersonTrackingResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentDetectionRequest\", function() { return GetSegmentDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ShotSegment\", function() { return ShotSegment; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TechnicalCueType\", function() { return TechnicalCueType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TechnicalCueSegment\", function() { return TechnicalCueSegment; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentType\", function() { return SegmentType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentDetection\", function() { return SegmentDetection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SegmentTypeInfo\", function() { return SegmentTypeInfo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetSegmentDetectionResponse\", function() { return GetSegmentDetectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetTextDetectionRequest\", function() { return GetTextDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextDetectionResult\", function() { return TextDetectionResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetTextDetectionResponse\", function() { return GetTextDetectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IdempotentParameterMismatchException\", function() { return IdempotentParameterMismatchException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IndexFacesRequest\", function() { return IndexFacesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Reason\", function() { return Reason; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnindexedFace\", function() { return UnindexedFace; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IndexFacesResponse\", function() { return IndexFacesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceQuotaExceededException\", function() { return ServiceQuotaExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListCollectionsRequest\", function() { return ListCollectionsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListCollectionsResponse\", function() { return ListCollectionsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListFacesRequest\", function() { return ListFacesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListFacesResponse\", function() { return ListFacesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListStreamProcessorsRequest\", function() { return ListStreamProcessorsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StreamProcessor\", function() { return StreamProcessor; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListStreamProcessorsResponse\", function() { return ListStreamProcessorsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NotificationChannel\", function() { return NotificationChannel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecognizeCelebritiesRequest\", function() { return RecognizeCelebritiesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecognizeCelebritiesResponse\", function() { return RecognizeCelebritiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesRequest\", function() { return SearchFacesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesResponse\", function() { return SearchFacesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesByImageRequest\", function() { return SearchFacesByImageRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SearchFacesByImageResponse\", function() { return SearchFacesByImageResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Video\", function() { return Video; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartCelebrityRecognitionRequest\", function() { return StartCelebrityRecognitionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartCelebrityRecognitionResponse\", function() { return StartCelebrityRecognitionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VideoTooLargeException\", function() { return VideoTooLargeException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartContentModerationRequest\", function() { return StartContentModerationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartContentModerationResponse\", function() { return StartContentModerationResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartFaceDetectionRequest\", function() { return StartFaceDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartFaceDetectionResponse\", function() { return StartFaceDetectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartFaceSearchRequest\", function() { return StartFaceSearchRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartFaceSearchResponse\", function() { return StartFaceSearchResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartLabelDetectionRequest\", function() { return StartLabelDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartLabelDetectionResponse\", function() { return StartLabelDetectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartPersonTrackingRequest\", function() { return StartPersonTrackingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartPersonTrackingResponse\", function() { return StartPersonTrackingResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartProjectVersionRequest\", function() { return StartProjectVersionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartProjectVersionResponse\", function() { return StartProjectVersionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartShotDetectionFilter\", function() { return StartShotDetectionFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTechnicalCueDetectionFilter\", function() { return StartTechnicalCueDetectionFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionFilters\", function() { return StartSegmentDetectionFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionRequest\", function() { return StartSegmentDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartSegmentDetectionResponse\", function() { return StartSegmentDetectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartStreamProcessorRequest\", function() { return StartStreamProcessorRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartStreamProcessorResponse\", function() { return StartStreamProcessorResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionFilters\", function() { return StartTextDetectionFilters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionRequest\", function() { return StartTextDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTextDetectionResponse\", function() { return StartTextDetectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopProjectVersionRequest\", function() { return StopProjectVersionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopProjectVersionResponse\", function() { return StopProjectVersionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopStreamProcessorRequest\", function() { return StopStreamProcessorRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopStreamProcessorResponse\", function() { return StopStreamProcessorResponse; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n\nvar AccessDeniedException;\n(function (AccessDeniedException) {\n AccessDeniedException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AccessDeniedException || (AccessDeniedException = {}));\nvar AgeRange;\n(function (AgeRange) {\n AgeRange.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AgeRange || (AgeRange = {}));\nvar S3Object;\n(function (S3Object) {\n S3Object.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(S3Object || (S3Object = {}));\nvar GroundTruthManifest;\n(function (GroundTruthManifest) {\n GroundTruthManifest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GroundTruthManifest || (GroundTruthManifest = {}));\nvar Asset;\n(function (Asset) {\n Asset.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Asset || (Asset = {}));\nvar Attribute;\n(function (Attribute) {\n Attribute[\"ALL\"] = \"ALL\";\n Attribute[\"DEFAULT\"] = \"DEFAULT\";\n})(Attribute || (Attribute = {}));\nvar AudioMetadata;\n(function (AudioMetadata) {\n AudioMetadata.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AudioMetadata || (AudioMetadata = {}));\nvar Beard;\n(function (Beard) {\n Beard.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Beard || (Beard = {}));\nvar BodyPart;\n(function (BodyPart) {\n BodyPart[\"FACE\"] = \"FACE\";\n BodyPart[\"HEAD\"] = \"HEAD\";\n BodyPart[\"LEFT_HAND\"] = \"LEFT_HAND\";\n BodyPart[\"RIGHT_HAND\"] = \"RIGHT_HAND\";\n})(BodyPart || (BodyPart = {}));\nvar BoundingBox;\n(function (BoundingBox) {\n BoundingBox.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BoundingBox || (BoundingBox = {}));\nvar CoversBodyPart;\n(function (CoversBodyPart) {\n CoversBodyPart.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CoversBodyPart || (CoversBodyPart = {}));\nvar ProtectiveEquipmentType;\n(function (ProtectiveEquipmentType) {\n ProtectiveEquipmentType[\"FACE_COVER\"] = \"FACE_COVER\";\n ProtectiveEquipmentType[\"HAND_COVER\"] = \"HAND_COVER\";\n ProtectiveEquipmentType[\"HEAD_COVER\"] = \"HEAD_COVER\";\n})(ProtectiveEquipmentType || (ProtectiveEquipmentType = {}));\nvar EquipmentDetection;\n(function (EquipmentDetection) {\n EquipmentDetection.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EquipmentDetection || (EquipmentDetection = {}));\nvar ProtectiveEquipmentBodyPart;\n(function (ProtectiveEquipmentBodyPart) {\n ProtectiveEquipmentBodyPart.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProtectiveEquipmentBodyPart || (ProtectiveEquipmentBodyPart = {}));\nvar LandmarkType;\n(function (LandmarkType) {\n LandmarkType[\"chinBottom\"] = \"chinBottom\";\n LandmarkType[\"eyeLeft\"] = \"eyeLeft\";\n LandmarkType[\"eyeRight\"] = \"eyeRight\";\n LandmarkType[\"leftEyeBrowLeft\"] = \"leftEyeBrowLeft\";\n LandmarkType[\"leftEyeBrowRight\"] = \"leftEyeBrowRight\";\n LandmarkType[\"leftEyeBrowUp\"] = \"leftEyeBrowUp\";\n LandmarkType[\"leftEyeDown\"] = \"leftEyeDown\";\n LandmarkType[\"leftEyeLeft\"] = \"leftEyeLeft\";\n LandmarkType[\"leftEyeRight\"] = \"leftEyeRight\";\n LandmarkType[\"leftEyeUp\"] = \"leftEyeUp\";\n LandmarkType[\"leftPupil\"] = \"leftPupil\";\n LandmarkType[\"midJawlineLeft\"] = \"midJawlineLeft\";\n LandmarkType[\"midJawlineRight\"] = \"midJawlineRight\";\n LandmarkType[\"mouthDown\"] = \"mouthDown\";\n LandmarkType[\"mouthLeft\"] = \"mouthLeft\";\n LandmarkType[\"mouthRight\"] = \"mouthRight\";\n LandmarkType[\"mouthUp\"] = \"mouthUp\";\n LandmarkType[\"nose\"] = \"nose\";\n LandmarkType[\"noseLeft\"] = \"noseLeft\";\n LandmarkType[\"noseRight\"] = \"noseRight\";\n LandmarkType[\"rightEyeBrowLeft\"] = \"rightEyeBrowLeft\";\n LandmarkType[\"rightEyeBrowRight\"] = \"rightEyeBrowRight\";\n LandmarkType[\"rightEyeBrowUp\"] = \"rightEyeBrowUp\";\n LandmarkType[\"rightEyeDown\"] = \"rightEyeDown\";\n LandmarkType[\"rightEyeLeft\"] = \"rightEyeLeft\";\n LandmarkType[\"rightEyeRight\"] = \"rightEyeRight\";\n LandmarkType[\"rightEyeUp\"] = \"rightEyeUp\";\n LandmarkType[\"rightPupil\"] = \"rightPupil\";\n LandmarkType[\"upperJawlineLeft\"] = \"upperJawlineLeft\";\n LandmarkType[\"upperJawlineRight\"] = \"upperJawlineRight\";\n})(LandmarkType || (LandmarkType = {}));\nvar Landmark;\n(function (Landmark) {\n Landmark.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Landmark || (Landmark = {}));\nvar Pose;\n(function (Pose) {\n Pose.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Pose || (Pose = {}));\nvar ImageQuality;\n(function (ImageQuality) {\n ImageQuality.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ImageQuality || (ImageQuality = {}));\nvar ComparedFace;\n(function (ComparedFace) {\n ComparedFace.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ComparedFace || (ComparedFace = {}));\nvar Celebrity;\n(function (Celebrity) {\n Celebrity.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Celebrity || (Celebrity = {}));\nvar Emotion;\n(function (Emotion) {\n Emotion.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Emotion || (Emotion = {}));\nvar Eyeglasses;\n(function (Eyeglasses) {\n Eyeglasses.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Eyeglasses || (Eyeglasses = {}));\nvar EyeOpen;\n(function (EyeOpen) {\n EyeOpen.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EyeOpen || (EyeOpen = {}));\nvar GenderType;\n(function (GenderType) {\n GenderType[\"Female\"] = \"Female\";\n GenderType[\"Male\"] = \"Male\";\n})(GenderType || (GenderType = {}));\nvar Gender;\n(function (Gender) {\n Gender.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Gender || (Gender = {}));\nvar MouthOpen;\n(function (MouthOpen) {\n MouthOpen.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MouthOpen || (MouthOpen = {}));\nvar Mustache;\n(function (Mustache) {\n Mustache.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Mustache || (Mustache = {}));\nvar Smile;\n(function (Smile) {\n Smile.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Smile || (Smile = {}));\nvar Sunglasses;\n(function (Sunglasses) {\n Sunglasses.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Sunglasses || (Sunglasses = {}));\nvar FaceDetail;\n(function (FaceDetail) {\n FaceDetail.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FaceDetail || (FaceDetail = {}));\nvar CelebrityDetail;\n(function (CelebrityDetail) {\n CelebrityDetail.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CelebrityDetail || (CelebrityDetail = {}));\nvar CelebrityRecognition;\n(function (CelebrityRecognition) {\n CelebrityRecognition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CelebrityRecognition || (CelebrityRecognition = {}));\nvar CelebrityRecognitionSortBy;\n(function (CelebrityRecognitionSortBy) {\n CelebrityRecognitionSortBy[\"ID\"] = \"ID\";\n CelebrityRecognitionSortBy[\"TIMESTAMP\"] = \"TIMESTAMP\";\n})(CelebrityRecognitionSortBy || (CelebrityRecognitionSortBy = {}));\nvar ComparedSourceImageFace;\n(function (ComparedSourceImageFace) {\n ComparedSourceImageFace.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ComparedSourceImageFace || (ComparedSourceImageFace = {}));\nvar QualityFilter;\n(function (QualityFilter) {\n QualityFilter[\"AUTO\"] = \"AUTO\";\n QualityFilter[\"HIGH\"] = \"HIGH\";\n QualityFilter[\"LOW\"] = \"LOW\";\n QualityFilter[\"MEDIUM\"] = \"MEDIUM\";\n QualityFilter[\"NONE\"] = \"NONE\";\n})(QualityFilter || (QualityFilter = {}));\nvar Image;\n(function (Image) {\n Image.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Image || (Image = {}));\nvar CompareFacesRequest;\n(function (CompareFacesRequest) {\n CompareFacesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CompareFacesRequest || (CompareFacesRequest = {}));\nvar CompareFacesMatch;\n(function (CompareFacesMatch) {\n CompareFacesMatch.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CompareFacesMatch || (CompareFacesMatch = {}));\nvar OrientationCorrection;\n(function (OrientationCorrection) {\n OrientationCorrection[\"ROTATE_0\"] = \"ROTATE_0\";\n OrientationCorrection[\"ROTATE_180\"] = \"ROTATE_180\";\n OrientationCorrection[\"ROTATE_270\"] = \"ROTATE_270\";\n OrientationCorrection[\"ROTATE_90\"] = \"ROTATE_90\";\n})(OrientationCorrection || (OrientationCorrection = {}));\nvar CompareFacesResponse;\n(function (CompareFacesResponse) {\n CompareFacesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CompareFacesResponse || (CompareFacesResponse = {}));\nvar ImageTooLargeException;\n(function (ImageTooLargeException) {\n ImageTooLargeException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ImageTooLargeException || (ImageTooLargeException = {}));\nvar InternalServerError;\n(function (InternalServerError) {\n InternalServerError.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InternalServerError || (InternalServerError = {}));\nvar InvalidImageFormatException;\n(function (InvalidImageFormatException) {\n InvalidImageFormatException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidImageFormatException || (InvalidImageFormatException = {}));\nvar InvalidParameterException;\n(function (InvalidParameterException) {\n InvalidParameterException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidParameterException || (InvalidParameterException = {}));\nvar InvalidS3ObjectException;\n(function (InvalidS3ObjectException) {\n InvalidS3ObjectException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidS3ObjectException || (InvalidS3ObjectException = {}));\nvar ProvisionedThroughputExceededException;\n(function (ProvisionedThroughputExceededException) {\n ProvisionedThroughputExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProvisionedThroughputExceededException || (ProvisionedThroughputExceededException = {}));\nvar ThrottlingException;\n(function (ThrottlingException) {\n ThrottlingException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ThrottlingException || (ThrottlingException = {}));\nvar ContentClassifier;\n(function (ContentClassifier) {\n ContentClassifier[\"FREE_OF_ADULT_CONTENT\"] = \"FreeOfAdultContent\";\n ContentClassifier[\"FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION\"] = \"FreeOfPersonallyIdentifiableInformation\";\n})(ContentClassifier || (ContentClassifier = {}));\nvar ModerationLabel;\n(function (ModerationLabel) {\n ModerationLabel.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ModerationLabel || (ModerationLabel = {}));\nvar ContentModerationDetection;\n(function (ContentModerationDetection) {\n ContentModerationDetection.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ContentModerationDetection || (ContentModerationDetection = {}));\nvar ContentModerationSortBy;\n(function (ContentModerationSortBy) {\n ContentModerationSortBy[\"NAME\"] = \"NAME\";\n ContentModerationSortBy[\"TIMESTAMP\"] = \"TIMESTAMP\";\n})(ContentModerationSortBy || (ContentModerationSortBy = {}));\nvar CreateCollectionRequest;\n(function (CreateCollectionRequest) {\n CreateCollectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateCollectionRequest || (CreateCollectionRequest = {}));\nvar CreateCollectionResponse;\n(function (CreateCollectionResponse) {\n CreateCollectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateCollectionResponse || (CreateCollectionResponse = {}));\nvar ResourceAlreadyExistsException;\n(function (ResourceAlreadyExistsException) {\n ResourceAlreadyExistsException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceAlreadyExistsException || (ResourceAlreadyExistsException = {}));\nvar CreateProjectRequest;\n(function (CreateProjectRequest) {\n CreateProjectRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateProjectRequest || (CreateProjectRequest = {}));\nvar CreateProjectResponse;\n(function (CreateProjectResponse) {\n CreateProjectResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateProjectResponse || (CreateProjectResponse = {}));\nvar LimitExceededException;\n(function (LimitExceededException) {\n LimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LimitExceededException || (LimitExceededException = {}));\nvar ResourceInUseException;\n(function (ResourceInUseException) {\n ResourceInUseException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceInUseException || (ResourceInUseException = {}));\nvar OutputConfig;\n(function (OutputConfig) {\n OutputConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OutputConfig || (OutputConfig = {}));\nvar TestingData;\n(function (TestingData) {\n TestingData.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TestingData || (TestingData = {}));\nvar TrainingData;\n(function (TrainingData) {\n TrainingData.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TrainingData || (TrainingData = {}));\nvar CreateProjectVersionRequest;\n(function (CreateProjectVersionRequest) {\n CreateProjectVersionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateProjectVersionRequest || (CreateProjectVersionRequest = {}));\nvar CreateProjectVersionResponse;\n(function (CreateProjectVersionResponse) {\n CreateProjectVersionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateProjectVersionResponse || (CreateProjectVersionResponse = {}));\nvar ResourceNotFoundException;\n(function (ResourceNotFoundException) {\n ResourceNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceNotFoundException || (ResourceNotFoundException = {}));\nvar KinesisVideoStream;\n(function (KinesisVideoStream) {\n KinesisVideoStream.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KinesisVideoStream || (KinesisVideoStream = {}));\nvar StreamProcessorInput;\n(function (StreamProcessorInput) {\n StreamProcessorInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StreamProcessorInput || (StreamProcessorInput = {}));\nvar KinesisDataStream;\n(function (KinesisDataStream) {\n KinesisDataStream.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(KinesisDataStream || (KinesisDataStream = {}));\nvar StreamProcessorOutput;\n(function (StreamProcessorOutput) {\n StreamProcessorOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StreamProcessorOutput || (StreamProcessorOutput = {}));\nvar FaceSearchSettings;\n(function (FaceSearchSettings) {\n FaceSearchSettings.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FaceSearchSettings || (FaceSearchSettings = {}));\nvar StreamProcessorSettings;\n(function (StreamProcessorSettings) {\n StreamProcessorSettings.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StreamProcessorSettings || (StreamProcessorSettings = {}));\nvar CreateStreamProcessorRequest;\n(function (CreateStreamProcessorRequest) {\n CreateStreamProcessorRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateStreamProcessorRequest || (CreateStreamProcessorRequest = {}));\nvar CreateStreamProcessorResponse;\n(function (CreateStreamProcessorResponse) {\n CreateStreamProcessorResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateStreamProcessorResponse || (CreateStreamProcessorResponse = {}));\nvar Point;\n(function (Point) {\n Point.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Point || (Point = {}));\nvar Geometry;\n(function (Geometry) {\n Geometry.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Geometry || (Geometry = {}));\nvar CustomLabel;\n(function (CustomLabel) {\n CustomLabel.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CustomLabel || (CustomLabel = {}));\nvar DeleteCollectionRequest;\n(function (DeleteCollectionRequest) {\n DeleteCollectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteCollectionRequest || (DeleteCollectionRequest = {}));\nvar DeleteCollectionResponse;\n(function (DeleteCollectionResponse) {\n DeleteCollectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteCollectionResponse || (DeleteCollectionResponse = {}));\nvar DeleteFacesRequest;\n(function (DeleteFacesRequest) {\n DeleteFacesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteFacesRequest || (DeleteFacesRequest = {}));\nvar DeleteFacesResponse;\n(function (DeleteFacesResponse) {\n DeleteFacesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteFacesResponse || (DeleteFacesResponse = {}));\nvar DeleteProjectRequest;\n(function (DeleteProjectRequest) {\n DeleteProjectRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteProjectRequest || (DeleteProjectRequest = {}));\nvar ProjectStatus;\n(function (ProjectStatus) {\n ProjectStatus[\"CREATED\"] = \"CREATED\";\n ProjectStatus[\"CREATING\"] = \"CREATING\";\n ProjectStatus[\"DELETING\"] = \"DELETING\";\n})(ProjectStatus || (ProjectStatus = {}));\nvar DeleteProjectResponse;\n(function (DeleteProjectResponse) {\n DeleteProjectResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteProjectResponse || (DeleteProjectResponse = {}));\nvar DeleteProjectVersionRequest;\n(function (DeleteProjectVersionRequest) {\n DeleteProjectVersionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteProjectVersionRequest || (DeleteProjectVersionRequest = {}));\nvar ProjectVersionStatus;\n(function (ProjectVersionStatus) {\n ProjectVersionStatus[\"DELETING\"] = \"DELETING\";\n ProjectVersionStatus[\"FAILED\"] = \"FAILED\";\n ProjectVersionStatus[\"RUNNING\"] = \"RUNNING\";\n ProjectVersionStatus[\"STARTING\"] = \"STARTING\";\n ProjectVersionStatus[\"STOPPED\"] = \"STOPPED\";\n ProjectVersionStatus[\"STOPPING\"] = \"STOPPING\";\n ProjectVersionStatus[\"TRAINING_COMPLETED\"] = \"TRAINING_COMPLETED\";\n ProjectVersionStatus[\"TRAINING_FAILED\"] = \"TRAINING_FAILED\";\n ProjectVersionStatus[\"TRAINING_IN_PROGRESS\"] = \"TRAINING_IN_PROGRESS\";\n})(ProjectVersionStatus || (ProjectVersionStatus = {}));\nvar DeleteProjectVersionResponse;\n(function (DeleteProjectVersionResponse) {\n DeleteProjectVersionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteProjectVersionResponse || (DeleteProjectVersionResponse = {}));\nvar DeleteStreamProcessorRequest;\n(function (DeleteStreamProcessorRequest) {\n DeleteStreamProcessorRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteStreamProcessorRequest || (DeleteStreamProcessorRequest = {}));\nvar DeleteStreamProcessorResponse;\n(function (DeleteStreamProcessorResponse) {\n DeleteStreamProcessorResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteStreamProcessorResponse || (DeleteStreamProcessorResponse = {}));\nvar DescribeCollectionRequest;\n(function (DescribeCollectionRequest) {\n DescribeCollectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeCollectionRequest || (DescribeCollectionRequest = {}));\nvar DescribeCollectionResponse;\n(function (DescribeCollectionResponse) {\n DescribeCollectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeCollectionResponse || (DescribeCollectionResponse = {}));\nvar DescribeProjectsRequest;\n(function (DescribeProjectsRequest) {\n DescribeProjectsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeProjectsRequest || (DescribeProjectsRequest = {}));\nvar ProjectDescription;\n(function (ProjectDescription) {\n ProjectDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProjectDescription || (ProjectDescription = {}));\nvar DescribeProjectsResponse;\n(function (DescribeProjectsResponse) {\n DescribeProjectsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeProjectsResponse || (DescribeProjectsResponse = {}));\nvar InvalidPaginationTokenException;\n(function (InvalidPaginationTokenException) {\n InvalidPaginationTokenException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidPaginationTokenException || (InvalidPaginationTokenException = {}));\nvar DescribeProjectVersionsRequest;\n(function (DescribeProjectVersionsRequest) {\n DescribeProjectVersionsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeProjectVersionsRequest || (DescribeProjectVersionsRequest = {}));\nvar Summary;\n(function (Summary) {\n Summary.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Summary || (Summary = {}));\nvar EvaluationResult;\n(function (EvaluationResult) {\n EvaluationResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EvaluationResult || (EvaluationResult = {}));\nvar ValidationData;\n(function (ValidationData) {\n ValidationData.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ValidationData || (ValidationData = {}));\nvar TestingDataResult;\n(function (TestingDataResult) {\n TestingDataResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TestingDataResult || (TestingDataResult = {}));\nvar TrainingDataResult;\n(function (TrainingDataResult) {\n TrainingDataResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TrainingDataResult || (TrainingDataResult = {}));\nvar ProjectVersionDescription;\n(function (ProjectVersionDescription) {\n ProjectVersionDescription.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProjectVersionDescription || (ProjectVersionDescription = {}));\nvar DescribeProjectVersionsResponse;\n(function (DescribeProjectVersionsResponse) {\n DescribeProjectVersionsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeProjectVersionsResponse || (DescribeProjectVersionsResponse = {}));\nvar DescribeStreamProcessorRequest;\n(function (DescribeStreamProcessorRequest) {\n DescribeStreamProcessorRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeStreamProcessorRequest || (DescribeStreamProcessorRequest = {}));\nvar StreamProcessorStatus;\n(function (StreamProcessorStatus) {\n StreamProcessorStatus[\"FAILED\"] = \"FAILED\";\n StreamProcessorStatus[\"RUNNING\"] = \"RUNNING\";\n StreamProcessorStatus[\"STARTING\"] = \"STARTING\";\n StreamProcessorStatus[\"STOPPED\"] = \"STOPPED\";\n StreamProcessorStatus[\"STOPPING\"] = \"STOPPING\";\n})(StreamProcessorStatus || (StreamProcessorStatus = {}));\nvar DescribeStreamProcessorResponse;\n(function (DescribeStreamProcessorResponse) {\n DescribeStreamProcessorResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeStreamProcessorResponse || (DescribeStreamProcessorResponse = {}));\nvar DetectCustomLabelsRequest;\n(function (DetectCustomLabelsRequest) {\n DetectCustomLabelsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectCustomLabelsRequest || (DetectCustomLabelsRequest = {}));\nvar DetectCustomLabelsResponse;\n(function (DetectCustomLabelsResponse) {\n DetectCustomLabelsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectCustomLabelsResponse || (DetectCustomLabelsResponse = {}));\nvar ResourceNotReadyException;\n(function (ResourceNotReadyException) {\n ResourceNotReadyException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceNotReadyException || (ResourceNotReadyException = {}));\nvar DetectFacesRequest;\n(function (DetectFacesRequest) {\n DetectFacesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectFacesRequest || (DetectFacesRequest = {}));\nvar DetectFacesResponse;\n(function (DetectFacesResponse) {\n DetectFacesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectFacesResponse || (DetectFacesResponse = {}));\nvar DetectionFilter;\n(function (DetectionFilter) {\n DetectionFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectionFilter || (DetectionFilter = {}));\nvar DetectLabelsRequest;\n(function (DetectLabelsRequest) {\n DetectLabelsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectLabelsRequest || (DetectLabelsRequest = {}));\nvar Instance;\n(function (Instance) {\n Instance.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Instance || (Instance = {}));\nvar Parent;\n(function (Parent) {\n Parent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Parent || (Parent = {}));\nvar Label;\n(function (Label) {\n Label.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Label || (Label = {}));\nvar DetectLabelsResponse;\n(function (DetectLabelsResponse) {\n DetectLabelsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectLabelsResponse || (DetectLabelsResponse = {}));\nvar HumanLoopDataAttributes;\n(function (HumanLoopDataAttributes) {\n HumanLoopDataAttributes.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HumanLoopDataAttributes || (HumanLoopDataAttributes = {}));\nvar HumanLoopConfig;\n(function (HumanLoopConfig) {\n HumanLoopConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HumanLoopConfig || (HumanLoopConfig = {}));\nvar DetectModerationLabelsRequest;\n(function (DetectModerationLabelsRequest) {\n DetectModerationLabelsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectModerationLabelsRequest || (DetectModerationLabelsRequest = {}));\nvar HumanLoopActivationOutput;\n(function (HumanLoopActivationOutput) {\n HumanLoopActivationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HumanLoopActivationOutput || (HumanLoopActivationOutput = {}));\nvar DetectModerationLabelsResponse;\n(function (DetectModerationLabelsResponse) {\n DetectModerationLabelsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectModerationLabelsResponse || (DetectModerationLabelsResponse = {}));\nvar HumanLoopQuotaExceededException;\n(function (HumanLoopQuotaExceededException) {\n HumanLoopQuotaExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HumanLoopQuotaExceededException || (HumanLoopQuotaExceededException = {}));\nvar ProtectiveEquipmentSummarizationAttributes;\n(function (ProtectiveEquipmentSummarizationAttributes) {\n ProtectiveEquipmentSummarizationAttributes.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProtectiveEquipmentSummarizationAttributes || (ProtectiveEquipmentSummarizationAttributes = {}));\nvar DetectProtectiveEquipmentRequest;\n(function (DetectProtectiveEquipmentRequest) {\n DetectProtectiveEquipmentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectProtectiveEquipmentRequest || (DetectProtectiveEquipmentRequest = {}));\nvar ProtectiveEquipmentPerson;\n(function (ProtectiveEquipmentPerson) {\n ProtectiveEquipmentPerson.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProtectiveEquipmentPerson || (ProtectiveEquipmentPerson = {}));\nvar ProtectiveEquipmentSummary;\n(function (ProtectiveEquipmentSummary) {\n ProtectiveEquipmentSummary.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProtectiveEquipmentSummary || (ProtectiveEquipmentSummary = {}));\nvar DetectProtectiveEquipmentResponse;\n(function (DetectProtectiveEquipmentResponse) {\n DetectProtectiveEquipmentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectProtectiveEquipmentResponse || (DetectProtectiveEquipmentResponse = {}));\nvar RegionOfInterest;\n(function (RegionOfInterest) {\n RegionOfInterest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RegionOfInterest || (RegionOfInterest = {}));\nvar DetectTextFilters;\n(function (DetectTextFilters) {\n DetectTextFilters.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectTextFilters || (DetectTextFilters = {}));\nvar DetectTextRequest;\n(function (DetectTextRequest) {\n DetectTextRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectTextRequest || (DetectTextRequest = {}));\nvar TextTypes;\n(function (TextTypes) {\n TextTypes[\"LINE\"] = \"LINE\";\n TextTypes[\"WORD\"] = \"WORD\";\n})(TextTypes || (TextTypes = {}));\nvar TextDetection;\n(function (TextDetection) {\n TextDetection.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TextDetection || (TextDetection = {}));\nvar DetectTextResponse;\n(function (DetectTextResponse) {\n DetectTextResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectTextResponse || (DetectTextResponse = {}));\nvar Face;\n(function (Face) {\n Face.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Face || (Face = {}));\nvar FaceAttributes;\n(function (FaceAttributes) {\n FaceAttributes[\"ALL\"] = \"ALL\";\n FaceAttributes[\"DEFAULT\"] = \"DEFAULT\";\n})(FaceAttributes || (FaceAttributes = {}));\nvar FaceDetection;\n(function (FaceDetection) {\n FaceDetection.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FaceDetection || (FaceDetection = {}));\nvar FaceMatch;\n(function (FaceMatch) {\n FaceMatch.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FaceMatch || (FaceMatch = {}));\nvar FaceRecord;\n(function (FaceRecord) {\n FaceRecord.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FaceRecord || (FaceRecord = {}));\nvar FaceSearchSortBy;\n(function (FaceSearchSortBy) {\n FaceSearchSortBy[\"INDEX\"] = \"INDEX\";\n FaceSearchSortBy[\"TIMESTAMP\"] = \"TIMESTAMP\";\n})(FaceSearchSortBy || (FaceSearchSortBy = {}));\nvar GetCelebrityInfoRequest;\n(function (GetCelebrityInfoRequest) {\n GetCelebrityInfoRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCelebrityInfoRequest || (GetCelebrityInfoRequest = {}));\nvar GetCelebrityInfoResponse;\n(function (GetCelebrityInfoResponse) {\n GetCelebrityInfoResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCelebrityInfoResponse || (GetCelebrityInfoResponse = {}));\nvar GetCelebrityRecognitionRequest;\n(function (GetCelebrityRecognitionRequest) {\n GetCelebrityRecognitionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCelebrityRecognitionRequest || (GetCelebrityRecognitionRequest = {}));\nvar VideoJobStatus;\n(function (VideoJobStatus) {\n VideoJobStatus[\"FAILED\"] = \"FAILED\";\n VideoJobStatus[\"IN_PROGRESS\"] = \"IN_PROGRESS\";\n VideoJobStatus[\"SUCCEEDED\"] = \"SUCCEEDED\";\n})(VideoJobStatus || (VideoJobStatus = {}));\nvar VideoMetadata;\n(function (VideoMetadata) {\n VideoMetadata.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VideoMetadata || (VideoMetadata = {}));\nvar GetCelebrityRecognitionResponse;\n(function (GetCelebrityRecognitionResponse) {\n GetCelebrityRecognitionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetCelebrityRecognitionResponse || (GetCelebrityRecognitionResponse = {}));\nvar GetContentModerationRequest;\n(function (GetContentModerationRequest) {\n GetContentModerationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetContentModerationRequest || (GetContentModerationRequest = {}));\nvar GetContentModerationResponse;\n(function (GetContentModerationResponse) {\n GetContentModerationResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetContentModerationResponse || (GetContentModerationResponse = {}));\nvar GetFaceDetectionRequest;\n(function (GetFaceDetectionRequest) {\n GetFaceDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetFaceDetectionRequest || (GetFaceDetectionRequest = {}));\nvar GetFaceDetectionResponse;\n(function (GetFaceDetectionResponse) {\n GetFaceDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetFaceDetectionResponse || (GetFaceDetectionResponse = {}));\nvar GetFaceSearchRequest;\n(function (GetFaceSearchRequest) {\n GetFaceSearchRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetFaceSearchRequest || (GetFaceSearchRequest = {}));\nvar PersonDetail;\n(function (PersonDetail) {\n PersonDetail.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PersonDetail || (PersonDetail = {}));\nvar PersonMatch;\n(function (PersonMatch) {\n PersonMatch.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PersonMatch || (PersonMatch = {}));\nvar GetFaceSearchResponse;\n(function (GetFaceSearchResponse) {\n GetFaceSearchResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetFaceSearchResponse || (GetFaceSearchResponse = {}));\nvar LabelDetectionSortBy;\n(function (LabelDetectionSortBy) {\n LabelDetectionSortBy[\"NAME\"] = \"NAME\";\n LabelDetectionSortBy[\"TIMESTAMP\"] = \"TIMESTAMP\";\n})(LabelDetectionSortBy || (LabelDetectionSortBy = {}));\nvar GetLabelDetectionRequest;\n(function (GetLabelDetectionRequest) {\n GetLabelDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetLabelDetectionRequest || (GetLabelDetectionRequest = {}));\nvar LabelDetection;\n(function (LabelDetection) {\n LabelDetection.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LabelDetection || (LabelDetection = {}));\nvar GetLabelDetectionResponse;\n(function (GetLabelDetectionResponse) {\n GetLabelDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetLabelDetectionResponse || (GetLabelDetectionResponse = {}));\nvar PersonTrackingSortBy;\n(function (PersonTrackingSortBy) {\n PersonTrackingSortBy[\"INDEX\"] = \"INDEX\";\n PersonTrackingSortBy[\"TIMESTAMP\"] = \"TIMESTAMP\";\n})(PersonTrackingSortBy || (PersonTrackingSortBy = {}));\nvar GetPersonTrackingRequest;\n(function (GetPersonTrackingRequest) {\n GetPersonTrackingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetPersonTrackingRequest || (GetPersonTrackingRequest = {}));\nvar PersonDetection;\n(function (PersonDetection) {\n PersonDetection.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PersonDetection || (PersonDetection = {}));\nvar GetPersonTrackingResponse;\n(function (GetPersonTrackingResponse) {\n GetPersonTrackingResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetPersonTrackingResponse || (GetPersonTrackingResponse = {}));\nvar GetSegmentDetectionRequest;\n(function (GetSegmentDetectionRequest) {\n GetSegmentDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentDetectionRequest || (GetSegmentDetectionRequest = {}));\nvar ShotSegment;\n(function (ShotSegment) {\n ShotSegment.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ShotSegment || (ShotSegment = {}));\nvar TechnicalCueType;\n(function (TechnicalCueType) {\n TechnicalCueType[\"BLACK_FRAMES\"] = \"BlackFrames\";\n TechnicalCueType[\"COLOR_BARS\"] = \"ColorBars\";\n TechnicalCueType[\"END_CREDITS\"] = \"EndCredits\";\n})(TechnicalCueType || (TechnicalCueType = {}));\nvar TechnicalCueSegment;\n(function (TechnicalCueSegment) {\n TechnicalCueSegment.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TechnicalCueSegment || (TechnicalCueSegment = {}));\nvar SegmentType;\n(function (SegmentType) {\n SegmentType[\"SHOT\"] = \"SHOT\";\n SegmentType[\"TECHNICAL_CUE\"] = \"TECHNICAL_CUE\";\n})(SegmentType || (SegmentType = {}));\nvar SegmentDetection;\n(function (SegmentDetection) {\n SegmentDetection.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentDetection || (SegmentDetection = {}));\nvar SegmentTypeInfo;\n(function (SegmentTypeInfo) {\n SegmentTypeInfo.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SegmentTypeInfo || (SegmentTypeInfo = {}));\nvar GetSegmentDetectionResponse;\n(function (GetSegmentDetectionResponse) {\n GetSegmentDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetSegmentDetectionResponse || (GetSegmentDetectionResponse = {}));\nvar GetTextDetectionRequest;\n(function (GetTextDetectionRequest) {\n GetTextDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetTextDetectionRequest || (GetTextDetectionRequest = {}));\nvar TextDetectionResult;\n(function (TextDetectionResult) {\n TextDetectionResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TextDetectionResult || (TextDetectionResult = {}));\nvar GetTextDetectionResponse;\n(function (GetTextDetectionResponse) {\n GetTextDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetTextDetectionResponse || (GetTextDetectionResponse = {}));\nvar IdempotentParameterMismatchException;\n(function (IdempotentParameterMismatchException) {\n IdempotentParameterMismatchException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IdempotentParameterMismatchException || (IdempotentParameterMismatchException = {}));\nvar IndexFacesRequest;\n(function (IndexFacesRequest) {\n IndexFacesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IndexFacesRequest || (IndexFacesRequest = {}));\nvar Reason;\n(function (Reason) {\n Reason[\"EXCEEDS_MAX_FACES\"] = \"EXCEEDS_MAX_FACES\";\n Reason[\"EXTREME_POSE\"] = \"EXTREME_POSE\";\n Reason[\"LOW_BRIGHTNESS\"] = \"LOW_BRIGHTNESS\";\n Reason[\"LOW_CONFIDENCE\"] = \"LOW_CONFIDENCE\";\n Reason[\"LOW_FACE_QUALITY\"] = \"LOW_FACE_QUALITY\";\n Reason[\"LOW_SHARPNESS\"] = \"LOW_SHARPNESS\";\n Reason[\"SMALL_BOUNDING_BOX\"] = \"SMALL_BOUNDING_BOX\";\n})(Reason || (Reason = {}));\nvar UnindexedFace;\n(function (UnindexedFace) {\n UnindexedFace.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnindexedFace || (UnindexedFace = {}));\nvar IndexFacesResponse;\n(function (IndexFacesResponse) {\n IndexFacesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IndexFacesResponse || (IndexFacesResponse = {}));\nvar ServiceQuotaExceededException;\n(function (ServiceQuotaExceededException) {\n ServiceQuotaExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ServiceQuotaExceededException || (ServiceQuotaExceededException = {}));\nvar ListCollectionsRequest;\n(function (ListCollectionsRequest) {\n ListCollectionsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListCollectionsRequest || (ListCollectionsRequest = {}));\nvar ListCollectionsResponse;\n(function (ListCollectionsResponse) {\n ListCollectionsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListCollectionsResponse || (ListCollectionsResponse = {}));\nvar ListFacesRequest;\n(function (ListFacesRequest) {\n ListFacesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListFacesRequest || (ListFacesRequest = {}));\nvar ListFacesResponse;\n(function (ListFacesResponse) {\n ListFacesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListFacesResponse || (ListFacesResponse = {}));\nvar ListStreamProcessorsRequest;\n(function (ListStreamProcessorsRequest) {\n ListStreamProcessorsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListStreamProcessorsRequest || (ListStreamProcessorsRequest = {}));\nvar StreamProcessor;\n(function (StreamProcessor) {\n StreamProcessor.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StreamProcessor || (StreamProcessor = {}));\nvar ListStreamProcessorsResponse;\n(function (ListStreamProcessorsResponse) {\n ListStreamProcessorsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListStreamProcessorsResponse || (ListStreamProcessorsResponse = {}));\nvar NotificationChannel;\n(function (NotificationChannel) {\n NotificationChannel.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NotificationChannel || (NotificationChannel = {}));\nvar RecognizeCelebritiesRequest;\n(function (RecognizeCelebritiesRequest) {\n RecognizeCelebritiesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RecognizeCelebritiesRequest || (RecognizeCelebritiesRequest = {}));\nvar RecognizeCelebritiesResponse;\n(function (RecognizeCelebritiesResponse) {\n RecognizeCelebritiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RecognizeCelebritiesResponse || (RecognizeCelebritiesResponse = {}));\nvar SearchFacesRequest;\n(function (SearchFacesRequest) {\n SearchFacesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SearchFacesRequest || (SearchFacesRequest = {}));\nvar SearchFacesResponse;\n(function (SearchFacesResponse) {\n SearchFacesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SearchFacesResponse || (SearchFacesResponse = {}));\nvar SearchFacesByImageRequest;\n(function (SearchFacesByImageRequest) {\n SearchFacesByImageRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SearchFacesByImageRequest || (SearchFacesByImageRequest = {}));\nvar SearchFacesByImageResponse;\n(function (SearchFacesByImageResponse) {\n SearchFacesByImageResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SearchFacesByImageResponse || (SearchFacesByImageResponse = {}));\nvar Video;\n(function (Video) {\n Video.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Video || (Video = {}));\nvar StartCelebrityRecognitionRequest;\n(function (StartCelebrityRecognitionRequest) {\n StartCelebrityRecognitionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartCelebrityRecognitionRequest || (StartCelebrityRecognitionRequest = {}));\nvar StartCelebrityRecognitionResponse;\n(function (StartCelebrityRecognitionResponse) {\n StartCelebrityRecognitionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartCelebrityRecognitionResponse || (StartCelebrityRecognitionResponse = {}));\nvar VideoTooLargeException;\n(function (VideoTooLargeException) {\n VideoTooLargeException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VideoTooLargeException || (VideoTooLargeException = {}));\nvar StartContentModerationRequest;\n(function (StartContentModerationRequest) {\n StartContentModerationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartContentModerationRequest || (StartContentModerationRequest = {}));\nvar StartContentModerationResponse;\n(function (StartContentModerationResponse) {\n StartContentModerationResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartContentModerationResponse || (StartContentModerationResponse = {}));\nvar StartFaceDetectionRequest;\n(function (StartFaceDetectionRequest) {\n StartFaceDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartFaceDetectionRequest || (StartFaceDetectionRequest = {}));\nvar StartFaceDetectionResponse;\n(function (StartFaceDetectionResponse) {\n StartFaceDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartFaceDetectionResponse || (StartFaceDetectionResponse = {}));\nvar StartFaceSearchRequest;\n(function (StartFaceSearchRequest) {\n StartFaceSearchRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartFaceSearchRequest || (StartFaceSearchRequest = {}));\nvar StartFaceSearchResponse;\n(function (StartFaceSearchResponse) {\n StartFaceSearchResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartFaceSearchResponse || (StartFaceSearchResponse = {}));\nvar StartLabelDetectionRequest;\n(function (StartLabelDetectionRequest) {\n StartLabelDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartLabelDetectionRequest || (StartLabelDetectionRequest = {}));\nvar StartLabelDetectionResponse;\n(function (StartLabelDetectionResponse) {\n StartLabelDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartLabelDetectionResponse || (StartLabelDetectionResponse = {}));\nvar StartPersonTrackingRequest;\n(function (StartPersonTrackingRequest) {\n StartPersonTrackingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartPersonTrackingRequest || (StartPersonTrackingRequest = {}));\nvar StartPersonTrackingResponse;\n(function (StartPersonTrackingResponse) {\n StartPersonTrackingResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartPersonTrackingResponse || (StartPersonTrackingResponse = {}));\nvar StartProjectVersionRequest;\n(function (StartProjectVersionRequest) {\n StartProjectVersionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartProjectVersionRequest || (StartProjectVersionRequest = {}));\nvar StartProjectVersionResponse;\n(function (StartProjectVersionResponse) {\n StartProjectVersionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartProjectVersionResponse || (StartProjectVersionResponse = {}));\nvar StartShotDetectionFilter;\n(function (StartShotDetectionFilter) {\n StartShotDetectionFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartShotDetectionFilter || (StartShotDetectionFilter = {}));\nvar StartTechnicalCueDetectionFilter;\n(function (StartTechnicalCueDetectionFilter) {\n StartTechnicalCueDetectionFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartTechnicalCueDetectionFilter || (StartTechnicalCueDetectionFilter = {}));\nvar StartSegmentDetectionFilters;\n(function (StartSegmentDetectionFilters) {\n StartSegmentDetectionFilters.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartSegmentDetectionFilters || (StartSegmentDetectionFilters = {}));\nvar StartSegmentDetectionRequest;\n(function (StartSegmentDetectionRequest) {\n StartSegmentDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartSegmentDetectionRequest || (StartSegmentDetectionRequest = {}));\nvar StartSegmentDetectionResponse;\n(function (StartSegmentDetectionResponse) {\n StartSegmentDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartSegmentDetectionResponse || (StartSegmentDetectionResponse = {}));\nvar StartStreamProcessorRequest;\n(function (StartStreamProcessorRequest) {\n StartStreamProcessorRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartStreamProcessorRequest || (StartStreamProcessorRequest = {}));\nvar StartStreamProcessorResponse;\n(function (StartStreamProcessorResponse) {\n StartStreamProcessorResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartStreamProcessorResponse || (StartStreamProcessorResponse = {}));\nvar StartTextDetectionFilters;\n(function (StartTextDetectionFilters) {\n StartTextDetectionFilters.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartTextDetectionFilters || (StartTextDetectionFilters = {}));\nvar StartTextDetectionRequest;\n(function (StartTextDetectionRequest) {\n StartTextDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartTextDetectionRequest || (StartTextDetectionRequest = {}));\nvar StartTextDetectionResponse;\n(function (StartTextDetectionResponse) {\n StartTextDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartTextDetectionResponse || (StartTextDetectionResponse = {}));\nvar StopProjectVersionRequest;\n(function (StopProjectVersionRequest) {\n StopProjectVersionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopProjectVersionRequest || (StopProjectVersionRequest = {}));\nvar StopProjectVersionResponse;\n(function (StopProjectVersionResponse) {\n StopProjectVersionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopProjectVersionResponse || (StopProjectVersionResponse = {}));\nvar StopStreamProcessorRequest;\n(function (StopStreamProcessorRequest) {\n StopStreamProcessorRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopStreamProcessorRequest || (StopStreamProcessorRequest = {}));\nvar StopStreamProcessorResponse;\n(function (StopStreamProcessorResponse) {\n StopStreamProcessorResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopStreamProcessorResponse || (StopStreamProcessorResponse = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/package.json": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/package.json ***! \***********************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-rekognition\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Rekognition Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-waiter\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-rekognition\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-rekognition\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/DescribeProjectVersionsPaginator.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/DescribeProjectVersionsPaginator.js ***! \*********************************************************************************************************/ /*! exports provided: paginateDescribeProjectVersions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeProjectVersions\", function() { return paginateDescribeProjectVersions; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/DescribeProjectVersionsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectVersionsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_3__[\"DescribeProjectVersionsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.describeProjectVersions.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateDescribeProjectVersions(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateDescribeProjectVersions_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=DescribeProjectVersionsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/DescribeProjectVersionsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/DescribeProjectsPaginator.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/DescribeProjectsPaginator.js ***! \**************************************************************************************************/ /*! exports provided: paginateDescribeProjects */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateDescribeProjects\", function() { return paginateDescribeProjects; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_DescribeProjectsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/DescribeProjectsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_DescribeProjectsCommand__WEBPACK_IMPORTED_MODULE_3__[\"DescribeProjectsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.describeProjects.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateDescribeProjects(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateDescribeProjects_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=DescribeProjectsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/DescribeProjectsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetCelebrityRecognitionPaginator.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetCelebrityRecognitionPaginator.js ***! \*********************************************************************************************************/ /*! exports provided: paginateGetCelebrityRecognition */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetCelebrityRecognition\", function() { return paginateGetCelebrityRecognition; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_GetCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/GetCelebrityRecognitionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetCelebrityRecognitionCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_GetCelebrityRecognitionCommand__WEBPACK_IMPORTED_MODULE_3__[\"GetCelebrityRecognitionCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.getCelebrityRecognition.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetCelebrityRecognition(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetCelebrityRecognition_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=GetCelebrityRecognitionPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetCelebrityRecognitionPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetContentModerationPaginator.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetContentModerationPaginator.js ***! \******************************************************************************************************/ /*! exports provided: paginateGetContentModeration */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetContentModeration\", function() { return paginateGetContentModeration; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_GetContentModerationCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/GetContentModerationCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetContentModerationCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_GetContentModerationCommand__WEBPACK_IMPORTED_MODULE_3__[\"GetContentModerationCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.getContentModeration.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetContentModeration(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetContentModeration_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=GetContentModerationPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetContentModerationPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetFaceDetectionPaginator.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetFaceDetectionPaginator.js ***! \**************************************************************************************************/ /*! exports provided: paginateGetFaceDetection */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetFaceDetection\", function() { return paginateGetFaceDetection; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_GetFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/GetFaceDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceDetectionCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_GetFaceDetectionCommand__WEBPACK_IMPORTED_MODULE_3__[\"GetFaceDetectionCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.getFaceDetection.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetFaceDetection(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetFaceDetection_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=GetFaceDetectionPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetFaceDetectionPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetFaceSearchPaginator.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetFaceSearchPaginator.js ***! \***********************************************************************************************/ /*! exports provided: paginateGetFaceSearch */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetFaceSearch\", function() { return paginateGetFaceSearch; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_GetFaceSearchCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/GetFaceSearchCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetFaceSearchCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_GetFaceSearchCommand__WEBPACK_IMPORTED_MODULE_3__[\"GetFaceSearchCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.getFaceSearch.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetFaceSearch(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetFaceSearch_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=GetFaceSearchPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetFaceSearchPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetLabelDetectionPaginator.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetLabelDetectionPaginator.js ***! \***************************************************************************************************/ /*! exports provided: paginateGetLabelDetection */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetLabelDetection\", function() { return paginateGetLabelDetection; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_GetLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/GetLabelDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetLabelDetectionCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_GetLabelDetectionCommand__WEBPACK_IMPORTED_MODULE_3__[\"GetLabelDetectionCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.getLabelDetection.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetLabelDetection(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetLabelDetection_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=GetLabelDetectionPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetLabelDetectionPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetPersonTrackingPaginator.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetPersonTrackingPaginator.js ***! \***************************************************************************************************/ /*! exports provided: paginateGetPersonTracking */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetPersonTracking\", function() { return paginateGetPersonTracking; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_GetPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/GetPersonTrackingCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetPersonTrackingCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_GetPersonTrackingCommand__WEBPACK_IMPORTED_MODULE_3__[\"GetPersonTrackingCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.getPersonTracking.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetPersonTracking(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetPersonTracking_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=GetPersonTrackingPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetPersonTrackingPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetSegmentDetectionPaginator.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetSegmentDetectionPaginator.js ***! \*****************************************************************************************************/ /*! exports provided: paginateGetSegmentDetection */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetSegmentDetection\", function() { return paginateGetSegmentDetection; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_GetSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/GetSegmentDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetSegmentDetectionCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_GetSegmentDetectionCommand__WEBPACK_IMPORTED_MODULE_3__[\"GetSegmentDetectionCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.getSegmentDetection.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetSegmentDetection(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetSegmentDetection_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=GetSegmentDetectionPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetSegmentDetectionPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetTextDetectionPaginator.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetTextDetectionPaginator.js ***! \**************************************************************************************************/ /*! exports provided: paginateGetTextDetection */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateGetTextDetection\", function() { return paginateGetTextDetection; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_GetTextDetectionCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/GetTextDetectionCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/GetTextDetectionCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_GetTextDetectionCommand__WEBPACK_IMPORTED_MODULE_3__[\"GetTextDetectionCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.getTextDetection.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateGetTextDetection(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateGetTextDetection_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=GetTextDetectionPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/GetTextDetectionPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/Interfaces.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/Interfaces.js ***! \***********************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=Interfaces.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/Interfaces.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListCollectionsPaginator.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListCollectionsPaginator.js ***! \*************************************************************************************************/ /*! exports provided: paginateListCollections */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListCollections\", function() { return paginateListCollections; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_ListCollectionsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListCollectionsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListCollectionsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListCollectionsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListCollectionsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listCollections.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListCollections(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListCollections_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListCollectionsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListCollectionsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListFacesPaginator.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListFacesPaginator.js ***! \*******************************************************************************************/ /*! exports provided: paginateListFaces */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListFaces\", function() { return paginateListFaces; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_ListFacesCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListFacesCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListFacesCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListFacesCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListFacesCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listFaces.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListFaces(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListFaces_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListFacesPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListFacesPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListStreamProcessorsPaginator.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListStreamProcessorsPaginator.js ***! \******************************************************************************************************/ /*! exports provided: paginateListStreamProcessors */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListStreamProcessors\", function() { return paginateListStreamProcessors; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Rekognition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Rekognition */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/Rekognition.js\");\n/* harmony import */ var _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../RekognitionClient */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/RekognitionClient.js\");\n/* harmony import */ var _commands_ListStreamProcessorsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListStreamProcessorsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/ListStreamProcessorsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListStreamProcessorsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListStreamProcessorsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listStreamProcessors.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListStreamProcessors(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListStreamProcessors_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Rekognition__WEBPACK_IMPORTED_MODULE_1__[\"Rekognition\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _RekognitionClient__WEBPACK_IMPORTED_MODULE_2__[\"RekognitionClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Rekognition | RekognitionClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListStreamProcessorsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/pagination/ListStreamProcessorsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js ***! \***********************************************************************************/ /*! exports provided: serializeAws_json1_1CompareFacesCommand, serializeAws_json1_1CreateCollectionCommand, serializeAws_json1_1CreateProjectCommand, serializeAws_json1_1CreateProjectVersionCommand, serializeAws_json1_1CreateStreamProcessorCommand, serializeAws_json1_1DeleteCollectionCommand, serializeAws_json1_1DeleteFacesCommand, serializeAws_json1_1DeleteProjectCommand, serializeAws_json1_1DeleteProjectVersionCommand, serializeAws_json1_1DeleteStreamProcessorCommand, serializeAws_json1_1DescribeCollectionCommand, serializeAws_json1_1DescribeProjectsCommand, serializeAws_json1_1DescribeProjectVersionsCommand, serializeAws_json1_1DescribeStreamProcessorCommand, serializeAws_json1_1DetectCustomLabelsCommand, serializeAws_json1_1DetectFacesCommand, serializeAws_json1_1DetectLabelsCommand, serializeAws_json1_1DetectModerationLabelsCommand, serializeAws_json1_1DetectProtectiveEquipmentCommand, serializeAws_json1_1DetectTextCommand, serializeAws_json1_1GetCelebrityInfoCommand, serializeAws_json1_1GetCelebrityRecognitionCommand, serializeAws_json1_1GetContentModerationCommand, serializeAws_json1_1GetFaceDetectionCommand, serializeAws_json1_1GetFaceSearchCommand, serializeAws_json1_1GetLabelDetectionCommand, serializeAws_json1_1GetPersonTrackingCommand, serializeAws_json1_1GetSegmentDetectionCommand, serializeAws_json1_1GetTextDetectionCommand, serializeAws_json1_1IndexFacesCommand, serializeAws_json1_1ListCollectionsCommand, serializeAws_json1_1ListFacesCommand, serializeAws_json1_1ListStreamProcessorsCommand, serializeAws_json1_1RecognizeCelebritiesCommand, serializeAws_json1_1SearchFacesCommand, serializeAws_json1_1SearchFacesByImageCommand, serializeAws_json1_1StartCelebrityRecognitionCommand, serializeAws_json1_1StartContentModerationCommand, serializeAws_json1_1StartFaceDetectionCommand, serializeAws_json1_1StartFaceSearchCommand, serializeAws_json1_1StartLabelDetectionCommand, serializeAws_json1_1StartPersonTrackingCommand, serializeAws_json1_1StartProjectVersionCommand, serializeAws_json1_1StartSegmentDetectionCommand, serializeAws_json1_1StartStreamProcessorCommand, serializeAws_json1_1StartTextDetectionCommand, serializeAws_json1_1StopProjectVersionCommand, serializeAws_json1_1StopStreamProcessorCommand, deserializeAws_json1_1CompareFacesCommand, deserializeAws_json1_1CreateCollectionCommand, deserializeAws_json1_1CreateProjectCommand, deserializeAws_json1_1CreateProjectVersionCommand, deserializeAws_json1_1CreateStreamProcessorCommand, deserializeAws_json1_1DeleteCollectionCommand, deserializeAws_json1_1DeleteFacesCommand, deserializeAws_json1_1DeleteProjectCommand, deserializeAws_json1_1DeleteProjectVersionCommand, deserializeAws_json1_1DeleteStreamProcessorCommand, deserializeAws_json1_1DescribeCollectionCommand, deserializeAws_json1_1DescribeProjectsCommand, deserializeAws_json1_1DescribeProjectVersionsCommand, deserializeAws_json1_1DescribeStreamProcessorCommand, deserializeAws_json1_1DetectCustomLabelsCommand, deserializeAws_json1_1DetectFacesCommand, deserializeAws_json1_1DetectLabelsCommand, deserializeAws_json1_1DetectModerationLabelsCommand, deserializeAws_json1_1DetectProtectiveEquipmentCommand, deserializeAws_json1_1DetectTextCommand, deserializeAws_json1_1GetCelebrityInfoCommand, deserializeAws_json1_1GetCelebrityRecognitionCommand, deserializeAws_json1_1GetContentModerationCommand, deserializeAws_json1_1GetFaceDetectionCommand, deserializeAws_json1_1GetFaceSearchCommand, deserializeAws_json1_1GetLabelDetectionCommand, deserializeAws_json1_1GetPersonTrackingCommand, deserializeAws_json1_1GetSegmentDetectionCommand, deserializeAws_json1_1GetTextDetectionCommand, deserializeAws_json1_1IndexFacesCommand, deserializeAws_json1_1ListCollectionsCommand, deserializeAws_json1_1ListFacesCommand, deserializeAws_json1_1ListStreamProcessorsCommand, deserializeAws_json1_1RecognizeCelebritiesCommand, deserializeAws_json1_1SearchFacesCommand, deserializeAws_json1_1SearchFacesByImageCommand, deserializeAws_json1_1StartCelebrityRecognitionCommand, deserializeAws_json1_1StartContentModerationCommand, deserializeAws_json1_1StartFaceDetectionCommand, deserializeAws_json1_1StartFaceSearchCommand, deserializeAws_json1_1StartLabelDetectionCommand, deserializeAws_json1_1StartPersonTrackingCommand, deserializeAws_json1_1StartProjectVersionCommand, deserializeAws_json1_1StartSegmentDetectionCommand, deserializeAws_json1_1StartStreamProcessorCommand, deserializeAws_json1_1StartTextDetectionCommand, deserializeAws_json1_1StopProjectVersionCommand, deserializeAws_json1_1StopStreamProcessorCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CompareFacesCommand\", function() { return serializeAws_json1_1CompareFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateCollectionCommand\", function() { return serializeAws_json1_1CreateCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateProjectCommand\", function() { return serializeAws_json1_1CreateProjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateProjectVersionCommand\", function() { return serializeAws_json1_1CreateProjectVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateStreamProcessorCommand\", function() { return serializeAws_json1_1CreateStreamProcessorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteCollectionCommand\", function() { return serializeAws_json1_1DeleteCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteFacesCommand\", function() { return serializeAws_json1_1DeleteFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteProjectCommand\", function() { return serializeAws_json1_1DeleteProjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteProjectVersionCommand\", function() { return serializeAws_json1_1DeleteProjectVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteStreamProcessorCommand\", function() { return serializeAws_json1_1DeleteStreamProcessorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeCollectionCommand\", function() { return serializeAws_json1_1DescribeCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeProjectsCommand\", function() { return serializeAws_json1_1DescribeProjectsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeProjectVersionsCommand\", function() { return serializeAws_json1_1DescribeProjectVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeStreamProcessorCommand\", function() { return serializeAws_json1_1DescribeStreamProcessorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectCustomLabelsCommand\", function() { return serializeAws_json1_1DetectCustomLabelsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectFacesCommand\", function() { return serializeAws_json1_1DetectFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectLabelsCommand\", function() { return serializeAws_json1_1DetectLabelsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectModerationLabelsCommand\", function() { return serializeAws_json1_1DetectModerationLabelsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectProtectiveEquipmentCommand\", function() { return serializeAws_json1_1DetectProtectiveEquipmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectTextCommand\", function() { return serializeAws_json1_1DetectTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetCelebrityInfoCommand\", function() { return serializeAws_json1_1GetCelebrityInfoCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetCelebrityRecognitionCommand\", function() { return serializeAws_json1_1GetCelebrityRecognitionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetContentModerationCommand\", function() { return serializeAws_json1_1GetContentModerationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetFaceDetectionCommand\", function() { return serializeAws_json1_1GetFaceDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetFaceSearchCommand\", function() { return serializeAws_json1_1GetFaceSearchCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetLabelDetectionCommand\", function() { return serializeAws_json1_1GetLabelDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetPersonTrackingCommand\", function() { return serializeAws_json1_1GetPersonTrackingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetSegmentDetectionCommand\", function() { return serializeAws_json1_1GetSegmentDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetTextDetectionCommand\", function() { return serializeAws_json1_1GetTextDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1IndexFacesCommand\", function() { return serializeAws_json1_1IndexFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListCollectionsCommand\", function() { return serializeAws_json1_1ListCollectionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListFacesCommand\", function() { return serializeAws_json1_1ListFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListStreamProcessorsCommand\", function() { return serializeAws_json1_1ListStreamProcessorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1RecognizeCelebritiesCommand\", function() { return serializeAws_json1_1RecognizeCelebritiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1SearchFacesCommand\", function() { return serializeAws_json1_1SearchFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1SearchFacesByImageCommand\", function() { return serializeAws_json1_1SearchFacesByImageCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartCelebrityRecognitionCommand\", function() { return serializeAws_json1_1StartCelebrityRecognitionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartContentModerationCommand\", function() { return serializeAws_json1_1StartContentModerationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartFaceDetectionCommand\", function() { return serializeAws_json1_1StartFaceDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartFaceSearchCommand\", function() { return serializeAws_json1_1StartFaceSearchCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartLabelDetectionCommand\", function() { return serializeAws_json1_1StartLabelDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartPersonTrackingCommand\", function() { return serializeAws_json1_1StartPersonTrackingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartProjectVersionCommand\", function() { return serializeAws_json1_1StartProjectVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartSegmentDetectionCommand\", function() { return serializeAws_json1_1StartSegmentDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartStreamProcessorCommand\", function() { return serializeAws_json1_1StartStreamProcessorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartTextDetectionCommand\", function() { return serializeAws_json1_1StartTextDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopProjectVersionCommand\", function() { return serializeAws_json1_1StopProjectVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopStreamProcessorCommand\", function() { return serializeAws_json1_1StopStreamProcessorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CompareFacesCommand\", function() { return deserializeAws_json1_1CompareFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateCollectionCommand\", function() { return deserializeAws_json1_1CreateCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateProjectCommand\", function() { return deserializeAws_json1_1CreateProjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateProjectVersionCommand\", function() { return deserializeAws_json1_1CreateProjectVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateStreamProcessorCommand\", function() { return deserializeAws_json1_1CreateStreamProcessorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteCollectionCommand\", function() { return deserializeAws_json1_1DeleteCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteFacesCommand\", function() { return deserializeAws_json1_1DeleteFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteProjectCommand\", function() { return deserializeAws_json1_1DeleteProjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteProjectVersionCommand\", function() { return deserializeAws_json1_1DeleteProjectVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteStreamProcessorCommand\", function() { return deserializeAws_json1_1DeleteStreamProcessorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeCollectionCommand\", function() { return deserializeAws_json1_1DescribeCollectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeProjectsCommand\", function() { return deserializeAws_json1_1DescribeProjectsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeProjectVersionsCommand\", function() { return deserializeAws_json1_1DescribeProjectVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeStreamProcessorCommand\", function() { return deserializeAws_json1_1DescribeStreamProcessorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectCustomLabelsCommand\", function() { return deserializeAws_json1_1DetectCustomLabelsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectFacesCommand\", function() { return deserializeAws_json1_1DetectFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectLabelsCommand\", function() { return deserializeAws_json1_1DetectLabelsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectModerationLabelsCommand\", function() { return deserializeAws_json1_1DetectModerationLabelsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectProtectiveEquipmentCommand\", function() { return deserializeAws_json1_1DetectProtectiveEquipmentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectTextCommand\", function() { return deserializeAws_json1_1DetectTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetCelebrityInfoCommand\", function() { return deserializeAws_json1_1GetCelebrityInfoCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetCelebrityRecognitionCommand\", function() { return deserializeAws_json1_1GetCelebrityRecognitionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetContentModerationCommand\", function() { return deserializeAws_json1_1GetContentModerationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetFaceDetectionCommand\", function() { return deserializeAws_json1_1GetFaceDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetFaceSearchCommand\", function() { return deserializeAws_json1_1GetFaceSearchCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetLabelDetectionCommand\", function() { return deserializeAws_json1_1GetLabelDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetPersonTrackingCommand\", function() { return deserializeAws_json1_1GetPersonTrackingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetSegmentDetectionCommand\", function() { return deserializeAws_json1_1GetSegmentDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetTextDetectionCommand\", function() { return deserializeAws_json1_1GetTextDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1IndexFacesCommand\", function() { return deserializeAws_json1_1IndexFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListCollectionsCommand\", function() { return deserializeAws_json1_1ListCollectionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListFacesCommand\", function() { return deserializeAws_json1_1ListFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListStreamProcessorsCommand\", function() { return deserializeAws_json1_1ListStreamProcessorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1RecognizeCelebritiesCommand\", function() { return deserializeAws_json1_1RecognizeCelebritiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1SearchFacesCommand\", function() { return deserializeAws_json1_1SearchFacesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1SearchFacesByImageCommand\", function() { return deserializeAws_json1_1SearchFacesByImageCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartCelebrityRecognitionCommand\", function() { return deserializeAws_json1_1StartCelebrityRecognitionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartContentModerationCommand\", function() { return deserializeAws_json1_1StartContentModerationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartFaceDetectionCommand\", function() { return deserializeAws_json1_1StartFaceDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartFaceSearchCommand\", function() { return deserializeAws_json1_1StartFaceSearchCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartLabelDetectionCommand\", function() { return deserializeAws_json1_1StartLabelDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartPersonTrackingCommand\", function() { return deserializeAws_json1_1StartPersonTrackingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartProjectVersionCommand\", function() { return deserializeAws_json1_1StartProjectVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartSegmentDetectionCommand\", function() { return deserializeAws_json1_1StartSegmentDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartStreamProcessorCommand\", function() { return deserializeAws_json1_1StartStreamProcessorCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartTextDetectionCommand\", function() { return deserializeAws_json1_1StartTextDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopProjectVersionCommand\", function() { return deserializeAws_json1_1StopProjectVersionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopStreamProcessorCommand\", function() { return deserializeAws_json1_1StopStreamProcessorCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\nvar serializeAws_json1_1CompareFacesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.CompareFaces\",\n };\n body = JSON.stringify(serializeAws_json1_1CompareFacesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateCollectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.CreateCollection\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateCollectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateProjectCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.CreateProject\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateProjectRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateProjectVersionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.CreateProjectVersion\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateProjectVersionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1CreateStreamProcessorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.CreateStreamProcessor\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateStreamProcessorRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteCollectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DeleteCollection\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteCollectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteFacesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DeleteFaces\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteFacesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteProjectCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DeleteProject\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteProjectRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteProjectVersionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DeleteProjectVersion\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteProjectVersionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteStreamProcessorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DeleteStreamProcessor\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteStreamProcessorRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeCollectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DescribeCollection\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeCollectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeProjectsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DescribeProjects\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeProjectsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeProjectVersionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DescribeProjectVersions\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeProjectVersionsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeStreamProcessorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DescribeStreamProcessor\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeStreamProcessorRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectCustomLabelsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DetectCustomLabels\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectCustomLabelsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectFacesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DetectFaces\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectFacesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectLabelsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DetectLabels\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectLabelsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectModerationLabelsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DetectModerationLabels\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectModerationLabelsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectProtectiveEquipmentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DetectProtectiveEquipment\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectProtectiveEquipmentRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectTextCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.DetectText\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectTextRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetCelebrityInfoCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.GetCelebrityInfo\",\n };\n body = JSON.stringify(serializeAws_json1_1GetCelebrityInfoRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetCelebrityRecognitionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.GetCelebrityRecognition\",\n };\n body = JSON.stringify(serializeAws_json1_1GetCelebrityRecognitionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetContentModerationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.GetContentModeration\",\n };\n body = JSON.stringify(serializeAws_json1_1GetContentModerationRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetFaceDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.GetFaceDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1GetFaceDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetFaceSearchCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.GetFaceSearch\",\n };\n body = JSON.stringify(serializeAws_json1_1GetFaceSearchRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetLabelDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.GetLabelDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1GetLabelDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetPersonTrackingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.GetPersonTracking\",\n };\n body = JSON.stringify(serializeAws_json1_1GetPersonTrackingRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetSegmentDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.GetSegmentDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1GetSegmentDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetTextDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.GetTextDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1GetTextDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1IndexFacesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.IndexFaces\",\n };\n body = JSON.stringify(serializeAws_json1_1IndexFacesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListCollectionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.ListCollections\",\n };\n body = JSON.stringify(serializeAws_json1_1ListCollectionsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListFacesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.ListFaces\",\n };\n body = JSON.stringify(serializeAws_json1_1ListFacesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListStreamProcessorsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.ListStreamProcessors\",\n };\n body = JSON.stringify(serializeAws_json1_1ListStreamProcessorsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1RecognizeCelebritiesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.RecognizeCelebrities\",\n };\n body = JSON.stringify(serializeAws_json1_1RecognizeCelebritiesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1SearchFacesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.SearchFaces\",\n };\n body = JSON.stringify(serializeAws_json1_1SearchFacesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1SearchFacesByImageCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.SearchFacesByImage\",\n };\n body = JSON.stringify(serializeAws_json1_1SearchFacesByImageRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartCelebrityRecognitionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartCelebrityRecognition\",\n };\n body = JSON.stringify(serializeAws_json1_1StartCelebrityRecognitionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartContentModerationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartContentModeration\",\n };\n body = JSON.stringify(serializeAws_json1_1StartContentModerationRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartFaceDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartFaceDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1StartFaceDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartFaceSearchCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartFaceSearch\",\n };\n body = JSON.stringify(serializeAws_json1_1StartFaceSearchRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartLabelDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartLabelDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1StartLabelDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartPersonTrackingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartPersonTracking\",\n };\n body = JSON.stringify(serializeAws_json1_1StartPersonTrackingRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartProjectVersionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartProjectVersion\",\n };\n body = JSON.stringify(serializeAws_json1_1StartProjectVersionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartSegmentDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartSegmentDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1StartSegmentDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartStreamProcessorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartStreamProcessor\",\n };\n body = JSON.stringify(serializeAws_json1_1StartStreamProcessorRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartTextDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StartTextDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1StartTextDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopProjectVersionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StopProjectVersion\",\n };\n body = JSON.stringify(serializeAws_json1_1StopProjectVersionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopStreamProcessorCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"RekognitionService.StopStreamProcessor\",\n };\n body = JSON.stringify(serializeAws_json1_1StopStreamProcessorRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar deserializeAws_json1_1CompareFacesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CompareFacesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CompareFacesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CompareFacesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"ImageTooLargeException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateCollectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateCollectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateCollectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateCollectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceAlreadyExistsException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceAlreadyExistsException\": return [3 /*break*/, 10];\n case \"ThrottlingException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceAlreadyExistsExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateProjectCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateProjectCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateProjectResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateProjectCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"LimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceInUseException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateProjectVersionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateProjectVersionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateProjectVersionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateProjectVersionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"LimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceInUseException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 12];\n case \"ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateStreamProcessorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateStreamProcessorCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateStreamProcessorResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateStreamProcessorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"LimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceInUseException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteCollectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteCollectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteCollectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteCollectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"ThrottlingException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteFacesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteFacesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteFacesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteFacesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"ThrottlingException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteProjectCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteProjectCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteProjectResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteProjectCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceInUseException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteProjectVersionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteProjectVersionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteProjectVersionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteProjectVersionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceInUseException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteStreamProcessorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteStreamProcessorCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteStreamProcessorResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteStreamProcessorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceInUseException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeCollectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeCollectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeCollectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeCollectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"ThrottlingException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeProjectsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeProjectsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeProjectsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeProjectsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ThrottlingException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeProjectVersionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeProjectVersionsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeProjectVersionsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeProjectVersionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeStreamProcessorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeStreamProcessorCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeStreamProcessorResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeStreamProcessorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"ThrottlingException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectCustomLabelsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectCustomLabelsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectCustomLabelsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectCustomLabelsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, parsedBody, message;\n var _p;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_q) {\n switch (_q.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _p = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_p.body = _q.sent(), _p)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"ImageTooLargeException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"LimitExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 14];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"ResourceNotFoundException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 18];\n case \"ResourceNotReadyException\": return [3 /*break*/, 20];\n case \"com.amazonaws.rekognition#ResourceNotReadyException\": return [3 /*break*/, 20];\n case \"ThrottlingException\": return [3 /*break*/, 22];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 22];\n }\n return [3 /*break*/, 24];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 20:\n _m = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotReadyExceptionResponse(parsedOutput, context)];\n case 21:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _m.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 22:\n _o = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 23:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _o.concat([(_q.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 25];\n case 24:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _q.label = 25;\n case 25:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectFacesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectFacesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectFacesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectFacesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"ImageTooLargeException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectLabelsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectLabelsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectLabelsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectLabelsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"ImageTooLargeException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectModerationLabelsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectModerationLabelsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectModerationLabelsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectModerationLabelsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"HumanLoopQuotaExceededException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#HumanLoopQuotaExceededException\": return [3 /*break*/, 4];\n case \"ImageTooLargeException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 6];\n case \"InternalServerError\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 8];\n case \"InvalidImageFormatException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 10];\n case \"InvalidParameterException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 12];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 14];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"ThrottlingException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1HumanLoopQuotaExceededExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectProtectiveEquipmentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectProtectiveEquipmentCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectProtectiveEquipmentResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectProtectiveEquipmentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"ImageTooLargeException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectTextCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectTextCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectTextResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectTextCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"ImageTooLargeException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetCelebrityInfoCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetCelebrityInfoCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetCelebrityInfoResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetCelebrityInfoCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"ThrottlingException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetCelebrityRecognitionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetCelebrityRecognitionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetCelebrityRecognitionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetCelebrityRecognitionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetContentModerationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetContentModerationCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetContentModerationResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetContentModerationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetFaceDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetFaceDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetFaceDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetFaceDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetFaceSearchCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetFaceSearchCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetFaceSearchResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetFaceSearchCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetLabelDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetLabelDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetLabelDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetLabelDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetPersonTrackingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetPersonTrackingCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetPersonTrackingResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetPersonTrackingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetSegmentDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetSegmentDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetSegmentDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetSegmentDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetTextDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetTextDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetTextDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetTextDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1IndexFacesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1IndexFacesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1IndexFacesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1IndexFacesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, parsedBody, message;\n var _o;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_p) {\n switch (_p.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _o = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_o.body = _p.sent(), _o)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"ImageTooLargeException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ResourceNotFoundException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 16];\n case \"ServiceQuotaExceededException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#ServiceQuotaExceededException\": return [3 /*break*/, 18];\n case \"ThrottlingException\": return [3 /*break*/, 20];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 20];\n }\n return [3 /*break*/, 22];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceQuotaExceededExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 20:\n _m = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 21:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _m.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 22:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _p.label = 23;\n case 23:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListCollectionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListCollectionsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListCollectionsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListCollectionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListFacesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListFacesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListFacesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListFacesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListStreamProcessorsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListStreamProcessorsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListStreamProcessorsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListStreamProcessorsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidPaginationTokenException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ThrottlingException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidPaginationTokenExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1RecognizeCelebritiesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1RecognizeCelebritiesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1RecognizeCelebritiesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1RecognizeCelebritiesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"ImageTooLargeException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1SearchFacesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1SearchFacesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1SearchFacesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1SearchFacesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 10];\n case \"ThrottlingException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1SearchFacesByImageCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1SearchFacesByImageCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1SearchFacesByImageResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1SearchFacesByImageCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"ImageTooLargeException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#ImageTooLargeException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidImageFormatException\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ResourceNotFoundException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 16];\n case \"ThrottlingException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ImageTooLargeExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidImageFormatExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartCelebrityRecognitionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartCelebrityRecognitionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartCelebrityRecognitionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartCelebrityRecognitionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"LimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n case \"VideoTooLargeException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#VideoTooLargeException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1VideoTooLargeExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartContentModerationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartContentModerationCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartContentModerationResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartContentModerationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"LimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n case \"VideoTooLargeException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#VideoTooLargeException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1VideoTooLargeExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartFaceDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartFaceDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartFaceDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartFaceDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"LimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n case \"VideoTooLargeException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#VideoTooLargeException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1VideoTooLargeExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartFaceSearchCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartFaceSearchCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartFaceSearchResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartFaceSearchCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, parsedBody, message;\n var _o;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_p) {\n switch (_p.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _o = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_o.body = _p.sent(), _o)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"LimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ResourceNotFoundException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 16];\n case \"ThrottlingException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 18];\n case \"VideoTooLargeException\": return [3 /*break*/, 20];\n case \"com.amazonaws.rekognition#VideoTooLargeException\": return [3 /*break*/, 20];\n }\n return [3 /*break*/, 22];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 20:\n _m = [{}];\n return [4 /*yield*/, deserializeAws_json1_1VideoTooLargeExceptionResponse(parsedOutput, context)];\n case 21:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _m.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 22:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _p.label = 23;\n case 23:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartLabelDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartLabelDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartLabelDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartLabelDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"LimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n case \"VideoTooLargeException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#VideoTooLargeException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1VideoTooLargeExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartPersonTrackingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartPersonTrackingCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartPersonTrackingResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartPersonTrackingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"LimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n case \"VideoTooLargeException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#VideoTooLargeException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1VideoTooLargeExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartProjectVersionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartProjectVersionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartProjectVersionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartProjectVersionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"LimitExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 8];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 10];\n case \"ResourceInUseException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 12];\n case \"ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartSegmentDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartSegmentDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartSegmentDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartSegmentDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"LimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n case \"VideoTooLargeException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#VideoTooLargeException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1VideoTooLargeExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartStreamProcessorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartStreamProcessorCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartStreamProcessorResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartStreamProcessorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceInUseException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartTextDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartTextDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartTextDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartTextDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#IdempotentParameterMismatchException\": return [3 /*break*/, 4];\n case \"InternalServerError\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"LimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#LimitExceededException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 16];\n case \"VideoTooLargeException\": return [3 /*break*/, 18];\n case \"com.amazonaws.rekognition#VideoTooLargeException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1VideoTooLargeExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopProjectVersionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopProjectVersionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopProjectVersionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopProjectVersionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceInUseException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopStreamProcessorCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopStreamProcessorCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopStreamProcessorResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopStreamProcessorCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.rekognition#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.rekognition#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidParameterException\": return [3 /*break*/, 6];\n case \"com.amazonaws.rekognition#InvalidParameterException\": return [3 /*break*/, 6];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.rekognition#ProvisionedThroughputExceededException\": return [3 /*break*/, 8];\n case \"ResourceInUseException\": return [3 /*break*/, 10];\n case \"com.amazonaws.rekognition#ResourceInUseException\": return [3 /*break*/, 10];\n case \"ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"com.amazonaws.rekognition#ResourceNotFoundException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.rekognition#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1AccessDeniedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1AccessDeniedException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"AccessDeniedException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1HumanLoopQuotaExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1HumanLoopQuotaExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"HumanLoopQuotaExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1IdempotentParameterMismatchException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"IdempotentParameterMismatchException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ImageTooLargeExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ImageTooLargeException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ImageTooLargeException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InternalServerErrorResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InternalServerError(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InternalServerError\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidImageFormatExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidImageFormatException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidImageFormatException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidPaginationTokenExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidPaginationTokenException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidPaginationTokenException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidParameterExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidParameterException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidParameterException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidS3ObjectExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidS3ObjectException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidS3ObjectException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1LimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1LimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"LimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ProvisionedThroughputExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ProvisionedThroughputExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceAlreadyExistsExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceAlreadyExistsException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceAlreadyExistsException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceInUseExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceInUseException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceInUseException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceNotFoundException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotFoundException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceNotReadyExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceNotReadyException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotReadyException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ServiceQuotaExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ServiceQuotaExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ServiceQuotaExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ThrottlingExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ThrottlingException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ThrottlingException\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1VideoTooLargeExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1VideoTooLargeException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"VideoTooLargeException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_json1_1Asset = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.GroundTruthManifest !== undefined &&\n input.GroundTruthManifest !== null && {\n GroundTruthManifest: serializeAws_json1_1GroundTruthManifest(input.GroundTruthManifest, context),\n }));\n};\nvar serializeAws_json1_1Assets = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1Asset(entry, context);\n });\n};\nvar serializeAws_json1_1Attributes = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1BoundingBox = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Height !== undefined && input.Height !== null && { Height: input.Height })), (input.Left !== undefined && input.Left !== null && { Left: input.Left })), (input.Top !== undefined && input.Top !== null && { Top: input.Top })), (input.Width !== undefined && input.Width !== null && { Width: input.Width }));\n};\nvar serializeAws_json1_1CompareFacesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.QualityFilter !== undefined && input.QualityFilter !== null && { QualityFilter: input.QualityFilter })), (input.SimilarityThreshold !== undefined &&\n input.SimilarityThreshold !== null && { SimilarityThreshold: input.SimilarityThreshold })), (input.SourceImage !== undefined &&\n input.SourceImage !== null && { SourceImage: serializeAws_json1_1Image(input.SourceImage, context) })), (input.TargetImage !== undefined &&\n input.TargetImage !== null && { TargetImage: serializeAws_json1_1Image(input.TargetImage, context) }));\n};\nvar serializeAws_json1_1ContentClassifiers = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1CreateCollectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId }));\n};\nvar serializeAws_json1_1CreateProjectRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ProjectName !== undefined && input.ProjectName !== null && { ProjectName: input.ProjectName }));\n};\nvar serializeAws_json1_1CreateProjectVersionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.OutputConfig !== undefined &&\n input.OutputConfig !== null && { OutputConfig: serializeAws_json1_1OutputConfig(input.OutputConfig, context) })), (input.ProjectArn !== undefined && input.ProjectArn !== null && { ProjectArn: input.ProjectArn })), (input.TestingData !== undefined &&\n input.TestingData !== null && { TestingData: serializeAws_json1_1TestingData(input.TestingData, context) })), (input.TrainingData !== undefined &&\n input.TrainingData !== null && { TrainingData: serializeAws_json1_1TrainingData(input.TrainingData, context) })), (input.VersionName !== undefined && input.VersionName !== null && { VersionName: input.VersionName }));\n};\nvar serializeAws_json1_1CreateStreamProcessorRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Input !== undefined &&\n input.Input !== null && { Input: serializeAws_json1_1StreamProcessorInput(input.Input, context) })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.Output !== undefined &&\n input.Output !== null && { Output: serializeAws_json1_1StreamProcessorOutput(input.Output, context) })), (input.RoleArn !== undefined && input.RoleArn !== null && { RoleArn: input.RoleArn })), (input.Settings !== undefined &&\n input.Settings !== null && { Settings: serializeAws_json1_1StreamProcessorSettings(input.Settings, context) }));\n};\nvar serializeAws_json1_1DeleteCollectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId }));\n};\nvar serializeAws_json1_1DeleteFacesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId })), (input.FaceIds !== undefined &&\n input.FaceIds !== null && { FaceIds: serializeAws_json1_1FaceIdList(input.FaceIds, context) }));\n};\nvar serializeAws_json1_1DeleteProjectRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ProjectArn !== undefined && input.ProjectArn !== null && { ProjectArn: input.ProjectArn }));\n};\nvar serializeAws_json1_1DeleteProjectVersionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ProjectVersionArn !== undefined &&\n input.ProjectVersionArn !== null && { ProjectVersionArn: input.ProjectVersionArn }));\n};\nvar serializeAws_json1_1DeleteStreamProcessorRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name }));\n};\nvar serializeAws_json1_1DescribeCollectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId }));\n};\nvar serializeAws_json1_1DescribeProjectsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1DescribeProjectVersionsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.ProjectArn !== undefined && input.ProjectArn !== null && { ProjectArn: input.ProjectArn })), (input.VersionNames !== undefined &&\n input.VersionNames !== null && { VersionNames: serializeAws_json1_1VersionNames(input.VersionNames, context) }));\n};\nvar serializeAws_json1_1DescribeStreamProcessorRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name }));\n};\nvar serializeAws_json1_1DetectCustomLabelsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Image !== undefined &&\n input.Image !== null && { Image: serializeAws_json1_1Image(input.Image, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.MinConfidence !== undefined && input.MinConfidence !== null && { MinConfidence: input.MinConfidence })), (input.ProjectVersionArn !== undefined &&\n input.ProjectVersionArn !== null && { ProjectVersionArn: input.ProjectVersionArn }));\n};\nvar serializeAws_json1_1DetectFacesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Attributes !== undefined &&\n input.Attributes !== null && { Attributes: serializeAws_json1_1Attributes(input.Attributes, context) })), (input.Image !== undefined &&\n input.Image !== null && { Image: serializeAws_json1_1Image(input.Image, context) }));\n};\nvar serializeAws_json1_1DetectionFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MinBoundingBoxHeight !== undefined &&\n input.MinBoundingBoxHeight !== null && { MinBoundingBoxHeight: input.MinBoundingBoxHeight })), (input.MinBoundingBoxWidth !== undefined &&\n input.MinBoundingBoxWidth !== null && { MinBoundingBoxWidth: input.MinBoundingBoxWidth })), (input.MinConfidence !== undefined && input.MinConfidence !== null && { MinConfidence: input.MinConfidence }));\n};\nvar serializeAws_json1_1DetectLabelsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Image !== undefined &&\n input.Image !== null && { Image: serializeAws_json1_1Image(input.Image, context) })), (input.MaxLabels !== undefined && input.MaxLabels !== null && { MaxLabels: input.MaxLabels })), (input.MinConfidence !== undefined && input.MinConfidence !== null && { MinConfidence: input.MinConfidence }));\n};\nvar serializeAws_json1_1DetectModerationLabelsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.HumanLoopConfig !== undefined &&\n input.HumanLoopConfig !== null && {\n HumanLoopConfig: serializeAws_json1_1HumanLoopConfig(input.HumanLoopConfig, context),\n })), (input.Image !== undefined &&\n input.Image !== null && { Image: serializeAws_json1_1Image(input.Image, context) })), (input.MinConfidence !== undefined && input.MinConfidence !== null && { MinConfidence: input.MinConfidence }));\n};\nvar serializeAws_json1_1DetectProtectiveEquipmentRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Image !== undefined &&\n input.Image !== null && { Image: serializeAws_json1_1Image(input.Image, context) })), (input.SummarizationAttributes !== undefined &&\n input.SummarizationAttributes !== null && {\n SummarizationAttributes: serializeAws_json1_1ProtectiveEquipmentSummarizationAttributes(input.SummarizationAttributes, context),\n }));\n};\nvar serializeAws_json1_1DetectTextFilters = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.RegionsOfInterest !== undefined &&\n input.RegionsOfInterest !== null && {\n RegionsOfInterest: serializeAws_json1_1RegionsOfInterest(input.RegionsOfInterest, context),\n })), (input.WordFilter !== undefined &&\n input.WordFilter !== null && { WordFilter: serializeAws_json1_1DetectionFilter(input.WordFilter, context) }));\n};\nvar serializeAws_json1_1DetectTextRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filters !== undefined &&\n input.Filters !== null && { Filters: serializeAws_json1_1DetectTextFilters(input.Filters, context) })), (input.Image !== undefined &&\n input.Image !== null && { Image: serializeAws_json1_1Image(input.Image, context) }));\n};\nvar serializeAws_json1_1FaceIdList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1FaceSearchSettings = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId })), (input.FaceMatchThreshold !== undefined &&\n input.FaceMatchThreshold !== null && { FaceMatchThreshold: input.FaceMatchThreshold }));\n};\nvar serializeAws_json1_1GetCelebrityInfoRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Id !== undefined && input.Id !== null && { Id: input.Id }));\n};\nvar serializeAws_json1_1GetCelebrityRecognitionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.SortBy !== undefined && input.SortBy !== null && { SortBy: input.SortBy }));\n};\nvar serializeAws_json1_1GetContentModerationRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.SortBy !== undefined && input.SortBy !== null && { SortBy: input.SortBy }));\n};\nvar serializeAws_json1_1GetFaceDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1GetFaceSearchRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.SortBy !== undefined && input.SortBy !== null && { SortBy: input.SortBy }));\n};\nvar serializeAws_json1_1GetLabelDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.SortBy !== undefined && input.SortBy !== null && { SortBy: input.SortBy }));\n};\nvar serializeAws_json1_1GetPersonTrackingRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.SortBy !== undefined && input.SortBy !== null && { SortBy: input.SortBy }));\n};\nvar serializeAws_json1_1GetSegmentDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1GetTextDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1GroundTruthManifest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.S3Object !== undefined &&\n input.S3Object !== null && { S3Object: serializeAws_json1_1S3Object(input.S3Object, context) }));\n};\nvar serializeAws_json1_1HumanLoopConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DataAttributes !== undefined &&\n input.DataAttributes !== null && {\n DataAttributes: serializeAws_json1_1HumanLoopDataAttributes(input.DataAttributes, context),\n })), (input.FlowDefinitionArn !== undefined &&\n input.FlowDefinitionArn !== null && { FlowDefinitionArn: input.FlowDefinitionArn })), (input.HumanLoopName !== undefined && input.HumanLoopName !== null && { HumanLoopName: input.HumanLoopName }));\n};\nvar serializeAws_json1_1HumanLoopDataAttributes = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ContentClassifiers !== undefined &&\n input.ContentClassifiers !== null && {\n ContentClassifiers: serializeAws_json1_1ContentClassifiers(input.ContentClassifiers, context),\n }));\n};\nvar serializeAws_json1_1Image = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Bytes !== undefined && input.Bytes !== null && { Bytes: context.base64Encoder(input.Bytes) })), (input.S3Object !== undefined &&\n input.S3Object !== null && { S3Object: serializeAws_json1_1S3Object(input.S3Object, context) }));\n};\nvar serializeAws_json1_1IndexFacesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId })), (input.DetectionAttributes !== undefined &&\n input.DetectionAttributes !== null && {\n DetectionAttributes: serializeAws_json1_1Attributes(input.DetectionAttributes, context),\n })), (input.ExternalImageId !== undefined &&\n input.ExternalImageId !== null && { ExternalImageId: input.ExternalImageId })), (input.Image !== undefined &&\n input.Image !== null && { Image: serializeAws_json1_1Image(input.Image, context) })), (input.MaxFaces !== undefined && input.MaxFaces !== null && { MaxFaces: input.MaxFaces })), (input.QualityFilter !== undefined && input.QualityFilter !== null && { QualityFilter: input.QualityFilter }));\n};\nvar serializeAws_json1_1KinesisDataStream = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Arn !== undefined && input.Arn !== null && { Arn: input.Arn }));\n};\nvar serializeAws_json1_1KinesisVideoStream = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Arn !== undefined && input.Arn !== null && { Arn: input.Arn }));\n};\nvar serializeAws_json1_1ListCollectionsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListFacesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListStreamProcessorsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1NotificationChannel = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.RoleArn !== undefined && input.RoleArn !== null && { RoleArn: input.RoleArn })), (input.SNSTopicArn !== undefined && input.SNSTopicArn !== null && { SNSTopicArn: input.SNSTopicArn }));\n};\nvar serializeAws_json1_1OutputConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.S3Bucket !== undefined && input.S3Bucket !== null && { S3Bucket: input.S3Bucket })), (input.S3KeyPrefix !== undefined && input.S3KeyPrefix !== null && { S3KeyPrefix: input.S3KeyPrefix }));\n};\nvar serializeAws_json1_1ProtectiveEquipmentSummarizationAttributes = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MinConfidence !== undefined && input.MinConfidence !== null && { MinConfidence: input.MinConfidence })), (input.RequiredEquipmentTypes !== undefined &&\n input.RequiredEquipmentTypes !== null && {\n RequiredEquipmentTypes: serializeAws_json1_1ProtectiveEquipmentTypes(input.RequiredEquipmentTypes, context),\n }));\n};\nvar serializeAws_json1_1ProtectiveEquipmentTypes = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1RecognizeCelebritiesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Image !== undefined &&\n input.Image !== null && { Image: serializeAws_json1_1Image(input.Image, context) }));\n};\nvar serializeAws_json1_1RegionOfInterest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.BoundingBox !== undefined &&\n input.BoundingBox !== null && { BoundingBox: serializeAws_json1_1BoundingBox(input.BoundingBox, context) }));\n};\nvar serializeAws_json1_1RegionsOfInterest = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return serializeAws_json1_1RegionOfInterest(entry, context);\n });\n};\nvar serializeAws_json1_1S3Object = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Bucket !== undefined && input.Bucket !== null && { Bucket: input.Bucket })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.Version !== undefined && input.Version !== null && { Version: input.Version }));\n};\nvar serializeAws_json1_1SearchFacesByImageRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId })), (input.FaceMatchThreshold !== undefined &&\n input.FaceMatchThreshold !== null && { FaceMatchThreshold: input.FaceMatchThreshold })), (input.Image !== undefined &&\n input.Image !== null && { Image: serializeAws_json1_1Image(input.Image, context) })), (input.MaxFaces !== undefined && input.MaxFaces !== null && { MaxFaces: input.MaxFaces })), (input.QualityFilter !== undefined && input.QualityFilter !== null && { QualityFilter: input.QualityFilter }));\n};\nvar serializeAws_json1_1SearchFacesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId })), (input.FaceId !== undefined && input.FaceId !== null && { FaceId: input.FaceId })), (input.FaceMatchThreshold !== undefined &&\n input.FaceMatchThreshold !== null && { FaceMatchThreshold: input.FaceMatchThreshold })), (input.MaxFaces !== undefined && input.MaxFaces !== null && { MaxFaces: input.MaxFaces }));\n};\nvar serializeAws_json1_1SegmentTypes = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1StartCelebrityRecognitionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.Video !== undefined &&\n input.Video !== null && { Video: serializeAws_json1_1Video(input.Video, context) }));\n};\nvar serializeAws_json1_1StartContentModerationRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.MinConfidence !== undefined && input.MinConfidence !== null && { MinConfidence: input.MinConfidence })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.Video !== undefined &&\n input.Video !== null && { Video: serializeAws_json1_1Video(input.Video, context) }));\n};\nvar serializeAws_json1_1StartFaceDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.FaceAttributes !== undefined &&\n input.FaceAttributes !== null && { FaceAttributes: input.FaceAttributes })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.Video !== undefined &&\n input.Video !== null && { Video: serializeAws_json1_1Video(input.Video, context) }));\n};\nvar serializeAws_json1_1StartFaceSearchRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.CollectionId !== undefined && input.CollectionId !== null && { CollectionId: input.CollectionId })), (input.FaceMatchThreshold !== undefined &&\n input.FaceMatchThreshold !== null && { FaceMatchThreshold: input.FaceMatchThreshold })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.Video !== undefined &&\n input.Video !== null && { Video: serializeAws_json1_1Video(input.Video, context) }));\n};\nvar serializeAws_json1_1StartLabelDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.MinConfidence !== undefined && input.MinConfidence !== null && { MinConfidence: input.MinConfidence })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.Video !== undefined &&\n input.Video !== null && { Video: serializeAws_json1_1Video(input.Video, context) }));\n};\nvar serializeAws_json1_1StartPersonTrackingRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.Video !== undefined &&\n input.Video !== null && { Video: serializeAws_json1_1Video(input.Video, context) }));\n};\nvar serializeAws_json1_1StartProjectVersionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MinInferenceUnits !== undefined &&\n input.MinInferenceUnits !== null && { MinInferenceUnits: input.MinInferenceUnits })), (input.ProjectVersionArn !== undefined &&\n input.ProjectVersionArn !== null && { ProjectVersionArn: input.ProjectVersionArn }));\n};\nvar serializeAws_json1_1StartSegmentDetectionFilters = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ShotFilter !== undefined &&\n input.ShotFilter !== null && {\n ShotFilter: serializeAws_json1_1StartShotDetectionFilter(input.ShotFilter, context),\n })), (input.TechnicalCueFilter !== undefined &&\n input.TechnicalCueFilter !== null && {\n TechnicalCueFilter: serializeAws_json1_1StartTechnicalCueDetectionFilter(input.TechnicalCueFilter, context),\n }));\n};\nvar serializeAws_json1_1StartSegmentDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.Filters !== undefined &&\n input.Filters !== null && { Filters: serializeAws_json1_1StartSegmentDetectionFilters(input.Filters, context) })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.SegmentTypes !== undefined &&\n input.SegmentTypes !== null && { SegmentTypes: serializeAws_json1_1SegmentTypes(input.SegmentTypes, context) })), (input.Video !== undefined &&\n input.Video !== null && { Video: serializeAws_json1_1Video(input.Video, context) }));\n};\nvar serializeAws_json1_1StartShotDetectionFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MinSegmentConfidence !== undefined &&\n input.MinSegmentConfidence !== null && { MinSegmentConfidence: input.MinSegmentConfidence }));\n};\nvar serializeAws_json1_1StartStreamProcessorRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name }));\n};\nvar serializeAws_json1_1StartTechnicalCueDetectionFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MinSegmentConfidence !== undefined &&\n input.MinSegmentConfidence !== null && { MinSegmentConfidence: input.MinSegmentConfidence }));\n};\nvar serializeAws_json1_1StartTextDetectionFilters = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.RegionsOfInterest !== undefined &&\n input.RegionsOfInterest !== null && {\n RegionsOfInterest: serializeAws_json1_1RegionsOfInterest(input.RegionsOfInterest, context),\n })), (input.WordFilter !== undefined &&\n input.WordFilter !== null && { WordFilter: serializeAws_json1_1DetectionFilter(input.WordFilter, context) }));\n};\nvar serializeAws_json1_1StartTextDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.Filters !== undefined &&\n input.Filters !== null && { Filters: serializeAws_json1_1StartTextDetectionFilters(input.Filters, context) })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.Video !== undefined &&\n input.Video !== null && { Video: serializeAws_json1_1Video(input.Video, context) }));\n};\nvar serializeAws_json1_1StopProjectVersionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ProjectVersionArn !== undefined &&\n input.ProjectVersionArn !== null && { ProjectVersionArn: input.ProjectVersionArn }));\n};\nvar serializeAws_json1_1StopStreamProcessorRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name }));\n};\nvar serializeAws_json1_1StreamProcessorInput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.KinesisVideoStream !== undefined &&\n input.KinesisVideoStream !== null && {\n KinesisVideoStream: serializeAws_json1_1KinesisVideoStream(input.KinesisVideoStream, context),\n }));\n};\nvar serializeAws_json1_1StreamProcessorOutput = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.KinesisDataStream !== undefined &&\n input.KinesisDataStream !== null && {\n KinesisDataStream: serializeAws_json1_1KinesisDataStream(input.KinesisDataStream, context),\n }));\n};\nvar serializeAws_json1_1StreamProcessorSettings = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.FaceSearch !== undefined &&\n input.FaceSearch !== null && { FaceSearch: serializeAws_json1_1FaceSearchSettings(input.FaceSearch, context) }));\n};\nvar serializeAws_json1_1TestingData = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Assets !== undefined &&\n input.Assets !== null && { Assets: serializeAws_json1_1Assets(input.Assets, context) })), (input.AutoCreate !== undefined && input.AutoCreate !== null && { AutoCreate: input.AutoCreate }));\n};\nvar serializeAws_json1_1TrainingData = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Assets !== undefined &&\n input.Assets !== null && { Assets: serializeAws_json1_1Assets(input.Assets, context) }));\n};\nvar serializeAws_json1_1VersionNames = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1Video = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.S3Object !== undefined &&\n input.S3Object !== null && { S3Object: serializeAws_json1_1S3Object(input.S3Object, context) }));\n};\nvar deserializeAws_json1_1AccessDeniedException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1AgeRange = function (output, context) {\n return {\n High: output.High !== undefined && output.High !== null ? output.High : undefined,\n Low: output.Low !== undefined && output.Low !== null ? output.Low : undefined,\n };\n};\nvar deserializeAws_json1_1Asset = function (output, context) {\n return {\n GroundTruthManifest: output.GroundTruthManifest !== undefined && output.GroundTruthManifest !== null\n ? deserializeAws_json1_1GroundTruthManifest(output.GroundTruthManifest, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Assets = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Asset(entry, context);\n });\n};\nvar deserializeAws_json1_1AudioMetadata = function (output, context) {\n return {\n Codec: output.Codec !== undefined && output.Codec !== null ? output.Codec : undefined,\n DurationMillis: output.DurationMillis !== undefined && output.DurationMillis !== null ? output.DurationMillis : undefined,\n NumberOfChannels: output.NumberOfChannels !== undefined && output.NumberOfChannels !== null ? output.NumberOfChannels : undefined,\n SampleRate: output.SampleRate !== undefined && output.SampleRate !== null ? output.SampleRate : undefined,\n };\n};\nvar deserializeAws_json1_1AudioMetadataList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1AudioMetadata(entry, context);\n });\n};\nvar deserializeAws_json1_1Beard = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1BodyParts = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ProtectiveEquipmentBodyPart(entry, context);\n });\n};\nvar deserializeAws_json1_1BoundingBox = function (output, context) {\n return {\n Height: output.Height !== undefined && output.Height !== null ? output.Height : undefined,\n Left: output.Left !== undefined && output.Left !== null ? output.Left : undefined,\n Top: output.Top !== undefined && output.Top !== null ? output.Top : undefined,\n Width: output.Width !== undefined && output.Width !== null ? output.Width : undefined,\n };\n};\nvar deserializeAws_json1_1Celebrity = function (output, context) {\n return {\n Face: output.Face !== undefined && output.Face !== null\n ? deserializeAws_json1_1ComparedFace(output.Face, context)\n : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n MatchConfidence: output.MatchConfidence !== undefined && output.MatchConfidence !== null ? output.MatchConfidence : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Urls: output.Urls !== undefined && output.Urls !== null ? deserializeAws_json1_1Urls(output.Urls, context) : undefined,\n };\n};\nvar deserializeAws_json1_1CelebrityDetail = function (output, context) {\n return {\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Face: output.Face !== undefined && output.Face !== null\n ? deserializeAws_json1_1FaceDetail(output.Face, context)\n : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Urls: output.Urls !== undefined && output.Urls !== null ? deserializeAws_json1_1Urls(output.Urls, context) : undefined,\n };\n};\nvar deserializeAws_json1_1CelebrityList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Celebrity(entry, context);\n });\n};\nvar deserializeAws_json1_1CelebrityRecognition = function (output, context) {\n return {\n Celebrity: output.Celebrity !== undefined && output.Celebrity !== null\n ? deserializeAws_json1_1CelebrityDetail(output.Celebrity, context)\n : undefined,\n Timestamp: output.Timestamp !== undefined && output.Timestamp !== null ? output.Timestamp : undefined,\n };\n};\nvar deserializeAws_json1_1CelebrityRecognitions = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1CelebrityRecognition(entry, context);\n });\n};\nvar deserializeAws_json1_1CollectionIdList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ComparedFace = function (output, context) {\n return {\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Landmarks: output.Landmarks !== undefined && output.Landmarks !== null\n ? deserializeAws_json1_1Landmarks(output.Landmarks, context)\n : undefined,\n Pose: output.Pose !== undefined && output.Pose !== null ? deserializeAws_json1_1Pose(output.Pose, context) : undefined,\n Quality: output.Quality !== undefined && output.Quality !== null\n ? deserializeAws_json1_1ImageQuality(output.Quality, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ComparedFaceList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ComparedFace(entry, context);\n });\n};\nvar deserializeAws_json1_1ComparedSourceImageFace = function (output, context) {\n return {\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n };\n};\nvar deserializeAws_json1_1CompareFacesMatch = function (output, context) {\n return {\n Face: output.Face !== undefined && output.Face !== null\n ? deserializeAws_json1_1ComparedFace(output.Face, context)\n : undefined,\n Similarity: output.Similarity !== undefined && output.Similarity !== null ? output.Similarity : undefined,\n };\n};\nvar deserializeAws_json1_1CompareFacesMatchList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1CompareFacesMatch(entry, context);\n });\n};\nvar deserializeAws_json1_1CompareFacesResponse = function (output, context) {\n return {\n FaceMatches: output.FaceMatches !== undefined && output.FaceMatches !== null\n ? deserializeAws_json1_1CompareFacesMatchList(output.FaceMatches, context)\n : undefined,\n SourceImageFace: output.SourceImageFace !== undefined && output.SourceImageFace !== null\n ? deserializeAws_json1_1ComparedSourceImageFace(output.SourceImageFace, context)\n : undefined,\n SourceImageOrientationCorrection: output.SourceImageOrientationCorrection !== undefined && output.SourceImageOrientationCorrection !== null\n ? output.SourceImageOrientationCorrection\n : undefined,\n TargetImageOrientationCorrection: output.TargetImageOrientationCorrection !== undefined && output.TargetImageOrientationCorrection !== null\n ? output.TargetImageOrientationCorrection\n : undefined,\n UnmatchedFaces: output.UnmatchedFaces !== undefined && output.UnmatchedFaces !== null\n ? deserializeAws_json1_1CompareFacesUnmatchList(output.UnmatchedFaces, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1CompareFacesUnmatchList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ComparedFace(entry, context);\n });\n};\nvar deserializeAws_json1_1ContentModerationDetection = function (output, context) {\n return {\n ModerationLabel: output.ModerationLabel !== undefined && output.ModerationLabel !== null\n ? deserializeAws_json1_1ModerationLabel(output.ModerationLabel, context)\n : undefined,\n Timestamp: output.Timestamp !== undefined && output.Timestamp !== null ? output.Timestamp : undefined,\n };\n};\nvar deserializeAws_json1_1ContentModerationDetections = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ContentModerationDetection(entry, context);\n });\n};\nvar deserializeAws_json1_1CoversBodyPart = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1CreateCollectionResponse = function (output, context) {\n return {\n CollectionArn: output.CollectionArn !== undefined && output.CollectionArn !== null ? output.CollectionArn : undefined,\n FaceModelVersion: output.FaceModelVersion !== undefined && output.FaceModelVersion !== null ? output.FaceModelVersion : undefined,\n StatusCode: output.StatusCode !== undefined && output.StatusCode !== null ? output.StatusCode : undefined,\n };\n};\nvar deserializeAws_json1_1CreateProjectResponse = function (output, context) {\n return {\n ProjectArn: output.ProjectArn !== undefined && output.ProjectArn !== null ? output.ProjectArn : undefined,\n };\n};\nvar deserializeAws_json1_1CreateProjectVersionResponse = function (output, context) {\n return {\n ProjectVersionArn: output.ProjectVersionArn !== undefined && output.ProjectVersionArn !== null\n ? output.ProjectVersionArn\n : undefined,\n };\n};\nvar deserializeAws_json1_1CreateStreamProcessorResponse = function (output, context) {\n return {\n StreamProcessorArn: output.StreamProcessorArn !== undefined && output.StreamProcessorArn !== null\n ? output.StreamProcessorArn\n : undefined,\n };\n};\nvar deserializeAws_json1_1CustomLabel = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Geometry: output.Geometry !== undefined && output.Geometry !== null\n ? deserializeAws_json1_1Geometry(output.Geometry, context)\n : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n };\n};\nvar deserializeAws_json1_1CustomLabels = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1CustomLabel(entry, context);\n });\n};\nvar deserializeAws_json1_1DeleteCollectionResponse = function (output, context) {\n return {\n StatusCode: output.StatusCode !== undefined && output.StatusCode !== null ? output.StatusCode : undefined,\n };\n};\nvar deserializeAws_json1_1DeleteFacesResponse = function (output, context) {\n return {\n DeletedFaces: output.DeletedFaces !== undefined && output.DeletedFaces !== null\n ? deserializeAws_json1_1FaceIdList(output.DeletedFaces, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DeleteProjectResponse = function (output, context) {\n return {\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1DeleteProjectVersionResponse = function (output, context) {\n return {\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1DeleteStreamProcessorResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1DescribeCollectionResponse = function (output, context) {\n return {\n CollectionARN: output.CollectionARN !== undefined && output.CollectionARN !== null ? output.CollectionARN : undefined,\n CreationTimestamp: output.CreationTimestamp !== undefined && output.CreationTimestamp !== null\n ? new Date(Math.round(output.CreationTimestamp * 1000))\n : undefined,\n FaceCount: output.FaceCount !== undefined && output.FaceCount !== null ? output.FaceCount : undefined,\n FaceModelVersion: output.FaceModelVersion !== undefined && output.FaceModelVersion !== null ? output.FaceModelVersion : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeProjectsResponse = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n ProjectDescriptions: output.ProjectDescriptions !== undefined && output.ProjectDescriptions !== null\n ? deserializeAws_json1_1ProjectDescriptions(output.ProjectDescriptions, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeProjectVersionsResponse = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n ProjectVersionDescriptions: output.ProjectVersionDescriptions !== undefined && output.ProjectVersionDescriptions !== null\n ? deserializeAws_json1_1ProjectVersionDescriptions(output.ProjectVersionDescriptions, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeStreamProcessorResponse = function (output, context) {\n return {\n CreationTimestamp: output.CreationTimestamp !== undefined && output.CreationTimestamp !== null\n ? new Date(Math.round(output.CreationTimestamp * 1000))\n : undefined,\n Input: output.Input !== undefined && output.Input !== null\n ? deserializeAws_json1_1StreamProcessorInput(output.Input, context)\n : undefined,\n LastUpdateTimestamp: output.LastUpdateTimestamp !== undefined && output.LastUpdateTimestamp !== null\n ? new Date(Math.round(output.LastUpdateTimestamp * 1000))\n : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Output: output.Output !== undefined && output.Output !== null\n ? deserializeAws_json1_1StreamProcessorOutput(output.Output, context)\n : undefined,\n RoleArn: output.RoleArn !== undefined && output.RoleArn !== null ? output.RoleArn : undefined,\n Settings: output.Settings !== undefined && output.Settings !== null\n ? deserializeAws_json1_1StreamProcessorSettings(output.Settings, context)\n : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n StreamProcessorArn: output.StreamProcessorArn !== undefined && output.StreamProcessorArn !== null\n ? output.StreamProcessorArn\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectCustomLabelsResponse = function (output, context) {\n return {\n CustomLabels: output.CustomLabels !== undefined && output.CustomLabels !== null\n ? deserializeAws_json1_1CustomLabels(output.CustomLabels, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectFacesResponse = function (output, context) {\n return {\n FaceDetails: output.FaceDetails !== undefined && output.FaceDetails !== null\n ? deserializeAws_json1_1FaceDetailList(output.FaceDetails, context)\n : undefined,\n OrientationCorrection: output.OrientationCorrection !== undefined && output.OrientationCorrection !== null\n ? output.OrientationCorrection\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectLabelsResponse = function (output, context) {\n return {\n LabelModelVersion: output.LabelModelVersion !== undefined && output.LabelModelVersion !== null\n ? output.LabelModelVersion\n : undefined,\n Labels: output.Labels !== undefined && output.Labels !== null\n ? deserializeAws_json1_1Labels(output.Labels, context)\n : undefined,\n OrientationCorrection: output.OrientationCorrection !== undefined && output.OrientationCorrection !== null\n ? output.OrientationCorrection\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectModerationLabelsResponse = function (output, context) {\n return {\n HumanLoopActivationOutput: output.HumanLoopActivationOutput !== undefined && output.HumanLoopActivationOutput !== null\n ? deserializeAws_json1_1HumanLoopActivationOutput(output.HumanLoopActivationOutput, context)\n : undefined,\n ModerationLabels: output.ModerationLabels !== undefined && output.ModerationLabels !== null\n ? deserializeAws_json1_1ModerationLabels(output.ModerationLabels, context)\n : undefined,\n ModerationModelVersion: output.ModerationModelVersion !== undefined && output.ModerationModelVersion !== null\n ? output.ModerationModelVersion\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectProtectiveEquipmentResponse = function (output, context) {\n return {\n Persons: output.Persons !== undefined && output.Persons !== null\n ? deserializeAws_json1_1ProtectiveEquipmentPersons(output.Persons, context)\n : undefined,\n ProtectiveEquipmentModelVersion: output.ProtectiveEquipmentModelVersion !== undefined && output.ProtectiveEquipmentModelVersion !== null\n ? output.ProtectiveEquipmentModelVersion\n : undefined,\n Summary: output.Summary !== undefined && output.Summary !== null\n ? deserializeAws_json1_1ProtectiveEquipmentSummary(output.Summary, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectTextResponse = function (output, context) {\n return {\n TextDetections: output.TextDetections !== undefined && output.TextDetections !== null\n ? deserializeAws_json1_1TextDetectionList(output.TextDetections, context)\n : undefined,\n TextModelVersion: output.TextModelVersion !== undefined && output.TextModelVersion !== null ? output.TextModelVersion : undefined,\n };\n};\nvar deserializeAws_json1_1Emotion = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1Emotions = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Emotion(entry, context);\n });\n};\nvar deserializeAws_json1_1EquipmentDetection = function (output, context) {\n return {\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n CoversBodyPart: output.CoversBodyPart !== undefined && output.CoversBodyPart !== null\n ? deserializeAws_json1_1CoversBodyPart(output.CoversBodyPart, context)\n : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1EquipmentDetections = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1EquipmentDetection(entry, context);\n });\n};\nvar deserializeAws_json1_1EvaluationResult = function (output, context) {\n return {\n F1Score: output.F1Score !== undefined && output.F1Score !== null ? output.F1Score : undefined,\n Summary: output.Summary !== undefined && output.Summary !== null\n ? deserializeAws_json1_1Summary(output.Summary, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Eyeglasses = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1EyeOpen = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1Face = function (output, context) {\n return {\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n ExternalImageId: output.ExternalImageId !== undefined && output.ExternalImageId !== null ? output.ExternalImageId : undefined,\n FaceId: output.FaceId !== undefined && output.FaceId !== null ? output.FaceId : undefined,\n ImageId: output.ImageId !== undefined && output.ImageId !== null ? output.ImageId : undefined,\n };\n};\nvar deserializeAws_json1_1FaceDetail = function (output, context) {\n return {\n AgeRange: output.AgeRange !== undefined && output.AgeRange !== null\n ? deserializeAws_json1_1AgeRange(output.AgeRange, context)\n : undefined,\n Beard: output.Beard !== undefined && output.Beard !== null\n ? deserializeAws_json1_1Beard(output.Beard, context)\n : undefined,\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Emotions: output.Emotions !== undefined && output.Emotions !== null\n ? deserializeAws_json1_1Emotions(output.Emotions, context)\n : undefined,\n Eyeglasses: output.Eyeglasses !== undefined && output.Eyeglasses !== null\n ? deserializeAws_json1_1Eyeglasses(output.Eyeglasses, context)\n : undefined,\n EyesOpen: output.EyesOpen !== undefined && output.EyesOpen !== null\n ? deserializeAws_json1_1EyeOpen(output.EyesOpen, context)\n : undefined,\n Gender: output.Gender !== undefined && output.Gender !== null\n ? deserializeAws_json1_1Gender(output.Gender, context)\n : undefined,\n Landmarks: output.Landmarks !== undefined && output.Landmarks !== null\n ? deserializeAws_json1_1Landmarks(output.Landmarks, context)\n : undefined,\n MouthOpen: output.MouthOpen !== undefined && output.MouthOpen !== null\n ? deserializeAws_json1_1MouthOpen(output.MouthOpen, context)\n : undefined,\n Mustache: output.Mustache !== undefined && output.Mustache !== null\n ? deserializeAws_json1_1Mustache(output.Mustache, context)\n : undefined,\n Pose: output.Pose !== undefined && output.Pose !== null ? deserializeAws_json1_1Pose(output.Pose, context) : undefined,\n Quality: output.Quality !== undefined && output.Quality !== null\n ? deserializeAws_json1_1ImageQuality(output.Quality, context)\n : undefined,\n Smile: output.Smile !== undefined && output.Smile !== null\n ? deserializeAws_json1_1Smile(output.Smile, context)\n : undefined,\n Sunglasses: output.Sunglasses !== undefined && output.Sunglasses !== null\n ? deserializeAws_json1_1Sunglasses(output.Sunglasses, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1FaceDetailList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1FaceDetail(entry, context);\n });\n};\nvar deserializeAws_json1_1FaceDetection = function (output, context) {\n return {\n Face: output.Face !== undefined && output.Face !== null\n ? deserializeAws_json1_1FaceDetail(output.Face, context)\n : undefined,\n Timestamp: output.Timestamp !== undefined && output.Timestamp !== null ? output.Timestamp : undefined,\n };\n};\nvar deserializeAws_json1_1FaceDetections = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1FaceDetection(entry, context);\n });\n};\nvar deserializeAws_json1_1FaceIdList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1FaceList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Face(entry, context);\n });\n};\nvar deserializeAws_json1_1FaceMatch = function (output, context) {\n return {\n Face: output.Face !== undefined && output.Face !== null ? deserializeAws_json1_1Face(output.Face, context) : undefined,\n Similarity: output.Similarity !== undefined && output.Similarity !== null ? output.Similarity : undefined,\n };\n};\nvar deserializeAws_json1_1FaceMatchList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1FaceMatch(entry, context);\n });\n};\nvar deserializeAws_json1_1FaceModelVersionList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1FaceRecord = function (output, context) {\n return {\n Face: output.Face !== undefined && output.Face !== null ? deserializeAws_json1_1Face(output.Face, context) : undefined,\n FaceDetail: output.FaceDetail !== undefined && output.FaceDetail !== null\n ? deserializeAws_json1_1FaceDetail(output.FaceDetail, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1FaceRecordList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1FaceRecord(entry, context);\n });\n};\nvar deserializeAws_json1_1FaceSearchSettings = function (output, context) {\n return {\n CollectionId: output.CollectionId !== undefined && output.CollectionId !== null ? output.CollectionId : undefined,\n FaceMatchThreshold: output.FaceMatchThreshold !== undefined && output.FaceMatchThreshold !== null\n ? output.FaceMatchThreshold\n : undefined,\n };\n};\nvar deserializeAws_json1_1Gender = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1Geometry = function (output, context) {\n return {\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Polygon: output.Polygon !== undefined && output.Polygon !== null\n ? deserializeAws_json1_1Polygon(output.Polygon, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetCelebrityInfoResponse = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Urls: output.Urls !== undefined && output.Urls !== null ? deserializeAws_json1_1Urls(output.Urls, context) : undefined,\n };\n};\nvar deserializeAws_json1_1GetCelebrityRecognitionResponse = function (output, context) {\n return {\n Celebrities: output.Celebrities !== undefined && output.Celebrities !== null\n ? deserializeAws_json1_1CelebrityRecognitions(output.Celebrities, context)\n : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n VideoMetadata: output.VideoMetadata !== undefined && output.VideoMetadata !== null\n ? deserializeAws_json1_1VideoMetadata(output.VideoMetadata, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetContentModerationResponse = function (output, context) {\n return {\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n ModerationLabels: output.ModerationLabels !== undefined && output.ModerationLabels !== null\n ? deserializeAws_json1_1ContentModerationDetections(output.ModerationLabels, context)\n : undefined,\n ModerationModelVersion: output.ModerationModelVersion !== undefined && output.ModerationModelVersion !== null\n ? output.ModerationModelVersion\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n VideoMetadata: output.VideoMetadata !== undefined && output.VideoMetadata !== null\n ? deserializeAws_json1_1VideoMetadata(output.VideoMetadata, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetFaceDetectionResponse = function (output, context) {\n return {\n Faces: output.Faces !== undefined && output.Faces !== null\n ? deserializeAws_json1_1FaceDetections(output.Faces, context)\n : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n VideoMetadata: output.VideoMetadata !== undefined && output.VideoMetadata !== null\n ? deserializeAws_json1_1VideoMetadata(output.VideoMetadata, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetFaceSearchResponse = function (output, context) {\n return {\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n Persons: output.Persons !== undefined && output.Persons !== null\n ? deserializeAws_json1_1PersonMatches(output.Persons, context)\n : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n VideoMetadata: output.VideoMetadata !== undefined && output.VideoMetadata !== null\n ? deserializeAws_json1_1VideoMetadata(output.VideoMetadata, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetLabelDetectionResponse = function (output, context) {\n return {\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n LabelModelVersion: output.LabelModelVersion !== undefined && output.LabelModelVersion !== null\n ? output.LabelModelVersion\n : undefined,\n Labels: output.Labels !== undefined && output.Labels !== null\n ? deserializeAws_json1_1LabelDetections(output.Labels, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n VideoMetadata: output.VideoMetadata !== undefined && output.VideoMetadata !== null\n ? deserializeAws_json1_1VideoMetadata(output.VideoMetadata, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetPersonTrackingResponse = function (output, context) {\n return {\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n Persons: output.Persons !== undefined && output.Persons !== null\n ? deserializeAws_json1_1PersonDetections(output.Persons, context)\n : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n VideoMetadata: output.VideoMetadata !== undefined && output.VideoMetadata !== null\n ? deserializeAws_json1_1VideoMetadata(output.VideoMetadata, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetSegmentDetectionResponse = function (output, context) {\n return {\n AudioMetadata: output.AudioMetadata !== undefined && output.AudioMetadata !== null\n ? deserializeAws_json1_1AudioMetadataList(output.AudioMetadata, context)\n : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n Segments: output.Segments !== undefined && output.Segments !== null\n ? deserializeAws_json1_1SegmentDetections(output.Segments, context)\n : undefined,\n SelectedSegmentTypes: output.SelectedSegmentTypes !== undefined && output.SelectedSegmentTypes !== null\n ? deserializeAws_json1_1SegmentTypesInfo(output.SelectedSegmentTypes, context)\n : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n VideoMetadata: output.VideoMetadata !== undefined && output.VideoMetadata !== null\n ? deserializeAws_json1_1VideoMetadataList(output.VideoMetadata, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetTextDetectionResponse = function (output, context) {\n return {\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n TextDetections: output.TextDetections !== undefined && output.TextDetections !== null\n ? deserializeAws_json1_1TextDetectionResults(output.TextDetections, context)\n : undefined,\n TextModelVersion: output.TextModelVersion !== undefined && output.TextModelVersion !== null ? output.TextModelVersion : undefined,\n VideoMetadata: output.VideoMetadata !== undefined && output.VideoMetadata !== null\n ? deserializeAws_json1_1VideoMetadata(output.VideoMetadata, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GroundTruthManifest = function (output, context) {\n return {\n S3Object: output.S3Object !== undefined && output.S3Object !== null\n ? deserializeAws_json1_1S3Object(output.S3Object, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1HumanLoopActivationOutput = function (output, context) {\n return {\n HumanLoopActivationConditionsEvaluationResults: output.HumanLoopActivationConditionsEvaluationResults !== undefined &&\n output.HumanLoopActivationConditionsEvaluationResults !== null\n ? new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](output.HumanLoopActivationConditionsEvaluationResults)\n : undefined,\n HumanLoopActivationReasons: output.HumanLoopActivationReasons !== undefined && output.HumanLoopActivationReasons !== null\n ? deserializeAws_json1_1HumanLoopActivationReasons(output.HumanLoopActivationReasons, context)\n : undefined,\n HumanLoopArn: output.HumanLoopArn !== undefined && output.HumanLoopArn !== null ? output.HumanLoopArn : undefined,\n };\n};\nvar deserializeAws_json1_1HumanLoopActivationReasons = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1HumanLoopQuotaExceededException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n QuotaCode: output.QuotaCode !== undefined && output.QuotaCode !== null ? output.QuotaCode : undefined,\n ResourceType: output.ResourceType !== undefined && output.ResourceType !== null ? output.ResourceType : undefined,\n ServiceCode: output.ServiceCode !== undefined && output.ServiceCode !== null ? output.ServiceCode : undefined,\n };\n};\nvar deserializeAws_json1_1IdempotentParameterMismatchException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ImageQuality = function (output, context) {\n return {\n Brightness: output.Brightness !== undefined && output.Brightness !== null ? output.Brightness : undefined,\n Sharpness: output.Sharpness !== undefined && output.Sharpness !== null ? output.Sharpness : undefined,\n };\n};\nvar deserializeAws_json1_1ImageTooLargeException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1IndexFacesResponse = function (output, context) {\n return {\n FaceModelVersion: output.FaceModelVersion !== undefined && output.FaceModelVersion !== null ? output.FaceModelVersion : undefined,\n FaceRecords: output.FaceRecords !== undefined && output.FaceRecords !== null\n ? deserializeAws_json1_1FaceRecordList(output.FaceRecords, context)\n : undefined,\n OrientationCorrection: output.OrientationCorrection !== undefined && output.OrientationCorrection !== null\n ? output.OrientationCorrection\n : undefined,\n UnindexedFaces: output.UnindexedFaces !== undefined && output.UnindexedFaces !== null\n ? deserializeAws_json1_1UnindexedFaces(output.UnindexedFaces, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Instance = function (output, context) {\n return {\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n };\n};\nvar deserializeAws_json1_1Instances = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Instance(entry, context);\n });\n};\nvar deserializeAws_json1_1InternalServerError = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidImageFormatException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidPaginationTokenException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidParameterException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidS3ObjectException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1KinesisDataStream = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n };\n};\nvar deserializeAws_json1_1KinesisVideoStream = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n };\n};\nvar deserializeAws_json1_1Label = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Instances: output.Instances !== undefined && output.Instances !== null\n ? deserializeAws_json1_1Instances(output.Instances, context)\n : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Parents: output.Parents !== undefined && output.Parents !== null\n ? deserializeAws_json1_1Parents(output.Parents, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1LabelDetection = function (output, context) {\n return {\n Label: output.Label !== undefined && output.Label !== null\n ? deserializeAws_json1_1Label(output.Label, context)\n : undefined,\n Timestamp: output.Timestamp !== undefined && output.Timestamp !== null ? output.Timestamp : undefined,\n };\n};\nvar deserializeAws_json1_1LabelDetections = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1LabelDetection(entry, context);\n });\n};\nvar deserializeAws_json1_1Labels = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Label(entry, context);\n });\n};\nvar deserializeAws_json1_1Landmark = function (output, context) {\n return {\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n X: output.X !== undefined && output.X !== null ? output.X : undefined,\n Y: output.Y !== undefined && output.Y !== null ? output.Y : undefined,\n };\n};\nvar deserializeAws_json1_1Landmarks = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Landmark(entry, context);\n });\n};\nvar deserializeAws_json1_1LimitExceededException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ListCollectionsResponse = function (output, context) {\n return {\n CollectionIds: output.CollectionIds !== undefined && output.CollectionIds !== null\n ? deserializeAws_json1_1CollectionIdList(output.CollectionIds, context)\n : undefined,\n FaceModelVersions: output.FaceModelVersions !== undefined && output.FaceModelVersions !== null\n ? deserializeAws_json1_1FaceModelVersionList(output.FaceModelVersions, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListFacesResponse = function (output, context) {\n return {\n FaceModelVersion: output.FaceModelVersion !== undefined && output.FaceModelVersion !== null ? output.FaceModelVersion : undefined,\n Faces: output.Faces !== undefined && output.Faces !== null\n ? deserializeAws_json1_1FaceList(output.Faces, context)\n : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n };\n};\nvar deserializeAws_json1_1ListStreamProcessorsResponse = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StreamProcessors: output.StreamProcessors !== undefined && output.StreamProcessors !== null\n ? deserializeAws_json1_1StreamProcessorList(output.StreamProcessors, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ModerationLabel = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n ParentName: output.ParentName !== undefined && output.ParentName !== null ? output.ParentName : undefined,\n };\n};\nvar deserializeAws_json1_1ModerationLabels = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ModerationLabel(entry, context);\n });\n};\nvar deserializeAws_json1_1MouthOpen = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1Mustache = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1OutputConfig = function (output, context) {\n return {\n S3Bucket: output.S3Bucket !== undefined && output.S3Bucket !== null ? output.S3Bucket : undefined,\n S3KeyPrefix: output.S3KeyPrefix !== undefined && output.S3KeyPrefix !== null ? output.S3KeyPrefix : undefined,\n };\n};\nvar deserializeAws_json1_1Parent = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n };\n};\nvar deserializeAws_json1_1Parents = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Parent(entry, context);\n });\n};\nvar deserializeAws_json1_1PersonDetail = function (output, context) {\n return {\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Face: output.Face !== undefined && output.Face !== null\n ? deserializeAws_json1_1FaceDetail(output.Face, context)\n : undefined,\n Index: output.Index !== undefined && output.Index !== null ? output.Index : undefined,\n };\n};\nvar deserializeAws_json1_1PersonDetection = function (output, context) {\n return {\n Person: output.Person !== undefined && output.Person !== null\n ? deserializeAws_json1_1PersonDetail(output.Person, context)\n : undefined,\n Timestamp: output.Timestamp !== undefined && output.Timestamp !== null ? output.Timestamp : undefined,\n };\n};\nvar deserializeAws_json1_1PersonDetections = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1PersonDetection(entry, context);\n });\n};\nvar deserializeAws_json1_1PersonMatch = function (output, context) {\n return {\n FaceMatches: output.FaceMatches !== undefined && output.FaceMatches !== null\n ? deserializeAws_json1_1FaceMatchList(output.FaceMatches, context)\n : undefined,\n Person: output.Person !== undefined && output.Person !== null\n ? deserializeAws_json1_1PersonDetail(output.Person, context)\n : undefined,\n Timestamp: output.Timestamp !== undefined && output.Timestamp !== null ? output.Timestamp : undefined,\n };\n};\nvar deserializeAws_json1_1PersonMatches = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1PersonMatch(entry, context);\n });\n};\nvar deserializeAws_json1_1Point = function (output, context) {\n return {\n X: output.X !== undefined && output.X !== null ? output.X : undefined,\n Y: output.Y !== undefined && output.Y !== null ? output.Y : undefined,\n };\n};\nvar deserializeAws_json1_1Polygon = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Point(entry, context);\n });\n};\nvar deserializeAws_json1_1Pose = function (output, context) {\n return {\n Pitch: output.Pitch !== undefined && output.Pitch !== null ? output.Pitch : undefined,\n Roll: output.Roll !== undefined && output.Roll !== null ? output.Roll : undefined,\n Yaw: output.Yaw !== undefined && output.Yaw !== null ? output.Yaw : undefined,\n };\n};\nvar deserializeAws_json1_1ProjectDescription = function (output, context) {\n return {\n CreationTimestamp: output.CreationTimestamp !== undefined && output.CreationTimestamp !== null\n ? new Date(Math.round(output.CreationTimestamp * 1000))\n : undefined,\n ProjectArn: output.ProjectArn !== undefined && output.ProjectArn !== null ? output.ProjectArn : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1ProjectDescriptions = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ProjectDescription(entry, context);\n });\n};\nvar deserializeAws_json1_1ProjectVersionDescription = function (output, context) {\n return {\n BillableTrainingTimeInSeconds: output.BillableTrainingTimeInSeconds !== undefined && output.BillableTrainingTimeInSeconds !== null\n ? output.BillableTrainingTimeInSeconds\n : undefined,\n CreationTimestamp: output.CreationTimestamp !== undefined && output.CreationTimestamp !== null\n ? new Date(Math.round(output.CreationTimestamp * 1000))\n : undefined,\n EvaluationResult: output.EvaluationResult !== undefined && output.EvaluationResult !== null\n ? deserializeAws_json1_1EvaluationResult(output.EvaluationResult, context)\n : undefined,\n ManifestSummary: output.ManifestSummary !== undefined && output.ManifestSummary !== null\n ? deserializeAws_json1_1GroundTruthManifest(output.ManifestSummary, context)\n : undefined,\n MinInferenceUnits: output.MinInferenceUnits !== undefined && output.MinInferenceUnits !== null\n ? output.MinInferenceUnits\n : undefined,\n OutputConfig: output.OutputConfig !== undefined && output.OutputConfig !== null\n ? deserializeAws_json1_1OutputConfig(output.OutputConfig, context)\n : undefined,\n ProjectVersionArn: output.ProjectVersionArn !== undefined && output.ProjectVersionArn !== null\n ? output.ProjectVersionArn\n : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n TestingDataResult: output.TestingDataResult !== undefined && output.TestingDataResult !== null\n ? deserializeAws_json1_1TestingDataResult(output.TestingDataResult, context)\n : undefined,\n TrainingDataResult: output.TrainingDataResult !== undefined && output.TrainingDataResult !== null\n ? deserializeAws_json1_1TrainingDataResult(output.TrainingDataResult, context)\n : undefined,\n TrainingEndTimestamp: output.TrainingEndTimestamp !== undefined && output.TrainingEndTimestamp !== null\n ? new Date(Math.round(output.TrainingEndTimestamp * 1000))\n : undefined,\n };\n};\nvar deserializeAws_json1_1ProjectVersionDescriptions = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ProjectVersionDescription(entry, context);\n });\n};\nvar deserializeAws_json1_1ProtectiveEquipmentBodyPart = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n EquipmentDetections: output.EquipmentDetections !== undefined && output.EquipmentDetections !== null\n ? deserializeAws_json1_1EquipmentDetections(output.EquipmentDetections, context)\n : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n };\n};\nvar deserializeAws_json1_1ProtectiveEquipmentPerson = function (output, context) {\n return {\n BodyParts: output.BodyParts !== undefined && output.BodyParts !== null\n ? deserializeAws_json1_1BodyParts(output.BodyParts, context)\n : undefined,\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n };\n};\nvar deserializeAws_json1_1ProtectiveEquipmentPersonIds = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ProtectiveEquipmentPersons = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ProtectiveEquipmentPerson(entry, context);\n });\n};\nvar deserializeAws_json1_1ProtectiveEquipmentSummary = function (output, context) {\n return {\n PersonsIndeterminate: output.PersonsIndeterminate !== undefined && output.PersonsIndeterminate !== null\n ? deserializeAws_json1_1ProtectiveEquipmentPersonIds(output.PersonsIndeterminate, context)\n : undefined,\n PersonsWithRequiredEquipment: output.PersonsWithRequiredEquipment !== undefined && output.PersonsWithRequiredEquipment !== null\n ? deserializeAws_json1_1ProtectiveEquipmentPersonIds(output.PersonsWithRequiredEquipment, context)\n : undefined,\n PersonsWithoutRequiredEquipment: output.PersonsWithoutRequiredEquipment !== undefined && output.PersonsWithoutRequiredEquipment !== null\n ? deserializeAws_json1_1ProtectiveEquipmentPersonIds(output.PersonsWithoutRequiredEquipment, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ProvisionedThroughputExceededException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1Reasons = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1RecognizeCelebritiesResponse = function (output, context) {\n return {\n CelebrityFaces: output.CelebrityFaces !== undefined && output.CelebrityFaces !== null\n ? deserializeAws_json1_1CelebrityList(output.CelebrityFaces, context)\n : undefined,\n OrientationCorrection: output.OrientationCorrection !== undefined && output.OrientationCorrection !== null\n ? output.OrientationCorrection\n : undefined,\n UnrecognizedFaces: output.UnrecognizedFaces !== undefined && output.UnrecognizedFaces !== null\n ? deserializeAws_json1_1ComparedFaceList(output.UnrecognizedFaces, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceAlreadyExistsException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceInUseException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceNotFoundException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ResourceNotReadyException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1S3Object = function (output, context) {\n return {\n Bucket: output.Bucket !== undefined && output.Bucket !== null ? output.Bucket : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Version: output.Version !== undefined && output.Version !== null ? output.Version : undefined,\n };\n};\nvar deserializeAws_json1_1SearchFacesByImageResponse = function (output, context) {\n return {\n FaceMatches: output.FaceMatches !== undefined && output.FaceMatches !== null\n ? deserializeAws_json1_1FaceMatchList(output.FaceMatches, context)\n : undefined,\n FaceModelVersion: output.FaceModelVersion !== undefined && output.FaceModelVersion !== null ? output.FaceModelVersion : undefined,\n SearchedFaceBoundingBox: output.SearchedFaceBoundingBox !== undefined && output.SearchedFaceBoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.SearchedFaceBoundingBox, context)\n : undefined,\n SearchedFaceConfidence: output.SearchedFaceConfidence !== undefined && output.SearchedFaceConfidence !== null\n ? output.SearchedFaceConfidence\n : undefined,\n };\n};\nvar deserializeAws_json1_1SearchFacesResponse = function (output, context) {\n return {\n FaceMatches: output.FaceMatches !== undefined && output.FaceMatches !== null\n ? deserializeAws_json1_1FaceMatchList(output.FaceMatches, context)\n : undefined,\n FaceModelVersion: output.FaceModelVersion !== undefined && output.FaceModelVersion !== null ? output.FaceModelVersion : undefined,\n SearchedFaceId: output.SearchedFaceId !== undefined && output.SearchedFaceId !== null ? output.SearchedFaceId : undefined,\n };\n};\nvar deserializeAws_json1_1SegmentDetection = function (output, context) {\n return {\n DurationMillis: output.DurationMillis !== undefined && output.DurationMillis !== null ? output.DurationMillis : undefined,\n DurationSMPTE: output.DurationSMPTE !== undefined && output.DurationSMPTE !== null ? output.DurationSMPTE : undefined,\n EndTimecodeSMPTE: output.EndTimecodeSMPTE !== undefined && output.EndTimecodeSMPTE !== null ? output.EndTimecodeSMPTE : undefined,\n EndTimestampMillis: output.EndTimestampMillis !== undefined && output.EndTimestampMillis !== null\n ? output.EndTimestampMillis\n : undefined,\n ShotSegment: output.ShotSegment !== undefined && output.ShotSegment !== null\n ? deserializeAws_json1_1ShotSegment(output.ShotSegment, context)\n : undefined,\n StartTimecodeSMPTE: output.StartTimecodeSMPTE !== undefined && output.StartTimecodeSMPTE !== null\n ? output.StartTimecodeSMPTE\n : undefined,\n StartTimestampMillis: output.StartTimestampMillis !== undefined && output.StartTimestampMillis !== null\n ? output.StartTimestampMillis\n : undefined,\n TechnicalCueSegment: output.TechnicalCueSegment !== undefined && output.TechnicalCueSegment !== null\n ? deserializeAws_json1_1TechnicalCueSegment(output.TechnicalCueSegment, context)\n : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1SegmentDetections = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1SegmentDetection(entry, context);\n });\n};\nvar deserializeAws_json1_1SegmentTypeInfo = function (output, context) {\n return {\n ModelVersion: output.ModelVersion !== undefined && output.ModelVersion !== null ? output.ModelVersion : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1SegmentTypesInfo = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1SegmentTypeInfo(entry, context);\n });\n};\nvar deserializeAws_json1_1ServiceQuotaExceededException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ShotSegment = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Index: output.Index !== undefined && output.Index !== null ? output.Index : undefined,\n };\n};\nvar deserializeAws_json1_1Smile = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1StartCelebrityRecognitionResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1StartContentModerationResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1StartFaceDetectionResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1StartFaceSearchResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1StartLabelDetectionResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1StartPersonTrackingResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1StartProjectVersionResponse = function (output, context) {\n return {\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1StartSegmentDetectionResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1StartStreamProcessorResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1StartTextDetectionResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1StopProjectVersionResponse = function (output, context) {\n return {\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1StopStreamProcessorResponse = function (output, context) {\n return {};\n};\nvar deserializeAws_json1_1StreamProcessor = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1StreamProcessorInput = function (output, context) {\n return {\n KinesisVideoStream: output.KinesisVideoStream !== undefined && output.KinesisVideoStream !== null\n ? deserializeAws_json1_1KinesisVideoStream(output.KinesisVideoStream, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1StreamProcessorList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1StreamProcessor(entry, context);\n });\n};\nvar deserializeAws_json1_1StreamProcessorOutput = function (output, context) {\n return {\n KinesisDataStream: output.KinesisDataStream !== undefined && output.KinesisDataStream !== null\n ? deserializeAws_json1_1KinesisDataStream(output.KinesisDataStream, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1StreamProcessorSettings = function (output, context) {\n return {\n FaceSearch: output.FaceSearch !== undefined && output.FaceSearch !== null\n ? deserializeAws_json1_1FaceSearchSettings(output.FaceSearch, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Summary = function (output, context) {\n return {\n S3Object: output.S3Object !== undefined && output.S3Object !== null\n ? deserializeAws_json1_1S3Object(output.S3Object, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Sunglasses = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Value: output.Value !== undefined && output.Value !== null ? output.Value : undefined,\n };\n};\nvar deserializeAws_json1_1TechnicalCueSegment = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1TestingData = function (output, context) {\n return {\n Assets: output.Assets !== undefined && output.Assets !== null\n ? deserializeAws_json1_1Assets(output.Assets, context)\n : undefined,\n AutoCreate: output.AutoCreate !== undefined && output.AutoCreate !== null ? output.AutoCreate : undefined,\n };\n};\nvar deserializeAws_json1_1TestingDataResult = function (output, context) {\n return {\n Input: output.Input !== undefined && output.Input !== null\n ? deserializeAws_json1_1TestingData(output.Input, context)\n : undefined,\n Output: output.Output !== undefined && output.Output !== null\n ? deserializeAws_json1_1TestingData(output.Output, context)\n : undefined,\n Validation: output.Validation !== undefined && output.Validation !== null\n ? deserializeAws_json1_1ValidationData(output.Validation, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1TextDetection = function (output, context) {\n return {\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n DetectedText: output.DetectedText !== undefined && output.DetectedText !== null ? output.DetectedText : undefined,\n Geometry: output.Geometry !== undefined && output.Geometry !== null\n ? deserializeAws_json1_1Geometry(output.Geometry, context)\n : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n ParentId: output.ParentId !== undefined && output.ParentId !== null ? output.ParentId : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1TextDetectionList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1TextDetection(entry, context);\n });\n};\nvar deserializeAws_json1_1TextDetectionResult = function (output, context) {\n return {\n TextDetection: output.TextDetection !== undefined && output.TextDetection !== null\n ? deserializeAws_json1_1TextDetection(output.TextDetection, context)\n : undefined,\n Timestamp: output.Timestamp !== undefined && output.Timestamp !== null ? output.Timestamp : undefined,\n };\n};\nvar deserializeAws_json1_1TextDetectionResults = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1TextDetectionResult(entry, context);\n });\n};\nvar deserializeAws_json1_1ThrottlingException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1TrainingData = function (output, context) {\n return {\n Assets: output.Assets !== undefined && output.Assets !== null\n ? deserializeAws_json1_1Assets(output.Assets, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1TrainingDataResult = function (output, context) {\n return {\n Input: output.Input !== undefined && output.Input !== null\n ? deserializeAws_json1_1TrainingData(output.Input, context)\n : undefined,\n Output: output.Output !== undefined && output.Output !== null\n ? deserializeAws_json1_1TrainingData(output.Output, context)\n : undefined,\n Validation: output.Validation !== undefined && output.Validation !== null\n ? deserializeAws_json1_1ValidationData(output.Validation, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1UnindexedFace = function (output, context) {\n return {\n FaceDetail: output.FaceDetail !== undefined && output.FaceDetail !== null\n ? deserializeAws_json1_1FaceDetail(output.FaceDetail, context)\n : undefined,\n Reasons: output.Reasons !== undefined && output.Reasons !== null\n ? deserializeAws_json1_1Reasons(output.Reasons, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1UnindexedFaces = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1UnindexedFace(entry, context);\n });\n};\nvar deserializeAws_json1_1Urls = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ValidationData = function (output, context) {\n return {\n Assets: output.Assets !== undefined && output.Assets !== null\n ? deserializeAws_json1_1Assets(output.Assets, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1VideoMetadata = function (output, context) {\n return {\n Codec: output.Codec !== undefined && output.Codec !== null ? output.Codec : undefined,\n DurationMillis: output.DurationMillis !== undefined && output.DurationMillis !== null ? output.DurationMillis : undefined,\n Format: output.Format !== undefined && output.Format !== null ? output.Format : undefined,\n FrameHeight: output.FrameHeight !== undefined && output.FrameHeight !== null ? output.FrameHeight : undefined,\n FrameRate: output.FrameRate !== undefined && output.FrameRate !== null ? output.FrameRate : undefined,\n FrameWidth: output.FrameWidth !== undefined && output.FrameWidth !== null ? output.FrameWidth : undefined,\n };\n};\nvar deserializeAws_json1_1VideoMetadataList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1VideoMetadata(entry, context);\n });\n};\nvar deserializeAws_json1_1VideoTooLargeException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Logref: output.Logref !== undefined && output.Logref !== null ? output.Logref : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar buildHttpRpcRequest = function (context, headers, path, resolvedHostname, body) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n contents = {\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n path: path,\n headers: headers,\n };\n if (resolvedHostname !== undefined) {\n contents.hostname = resolvedHostname;\n }\n if (body !== undefined) {\n contents.body = body;\n }\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"](contents)];\n }\n });\n}); };\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_json1_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/protocols/Aws_json1_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/runtimeConfig.browser.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/runtimeConfig.browser.js ***! \***********************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/runtimeConfig.shared.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/runtimeConfig.shared.js ***! \**********************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2016-06-27\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Rekognition\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/waiters/waitForProjectVersionRunning.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/waiters/waitForProjectVersionRunning.js ***! \**************************************************************************************************/ /*! exports provided: waitForProjectVersionRunning */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"waitForProjectVersionRunning\", function() { return waitForProjectVersionRunning; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/DescribeProjectVersionsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectVersionsCommand.js\");\n/* harmony import */ var _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-waiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/index.js\");\n\n\n\nvar checkState = function (client, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var result_1, returnComparator, allStringEq_5, _a, _b, element_4, returnComparator, _c, _d, anyStringEq_4, exception_1;\n var e_1, _e, e_2, _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _g.trys.push([0, 2, , 3]);\n return [4 /*yield*/, client.send(new _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_1__[\"DescribeProjectVersionsCommand\"](input))];\n case 1:\n result_1 = _g.sent();\n try {\n returnComparator = function () {\n var flat_1 = [].concat.apply([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(result_1.ProjectVersionDescriptions));\n var projection_3 = flat_1.map(function (element_2) {\n return element_2.Status;\n });\n return projection_3;\n };\n allStringEq_5 = returnComparator().length > 0;\n try {\n for (_a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(returnComparator()), _b = _a.next(); !_b.done; _b = _a.next()) {\n element_4 = _b.value;\n allStringEq_5 = allStringEq_5 && element_4 == \"RUNNING\";\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_b && !_b.done && (_e = _a.return)) _e.call(_a);\n }\n finally { if (e_1) throw e_1.error; }\n }\n if (allStringEq_5) {\n return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].SUCCESS }];\n }\n }\n catch (e) { }\n try {\n returnComparator = function () {\n var flat_1 = [].concat.apply([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(result_1.ProjectVersionDescriptions));\n var projection_3 = flat_1.map(function (element_2) {\n return element_2.Status;\n });\n return projection_3;\n };\n try {\n for (_c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(returnComparator()), _d = _c.next(); !_d.done; _d = _c.next()) {\n anyStringEq_4 = _d.value;\n if (anyStringEq_4 == \"FAILED\") {\n return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].FAILURE }];\n }\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_f = _c.return)) _f.call(_c);\n }\n finally { if (e_2) throw e_2.error; }\n }\n }\n catch (e) { }\n return [3 /*break*/, 3];\n case 2:\n exception_1 = _g.sent();\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].RETRY }];\n }\n });\n}); };\n/**\n * Wait until the ProjectVersion is running.\n * @param params : Waiter configuration options.\n * @param input : the input to DescribeProjectVersionsCommand for polling.\n */\nvar waitForProjectVersionRunning = function (params, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var serviceDefaults;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n serviceDefaults = { minDelay: 30, maxDelay: 120 };\n return [2 /*return*/, Object(_aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"createWaiter\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, serviceDefaults), params), input, checkState)];\n });\n}); };\n//# sourceMappingURL=waitForProjectVersionRunning.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/waiters/waitForProjectVersionRunning.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/dist/es/waiters/waitForProjectVersionTrainingCompleted.js": /*!************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/dist/es/waiters/waitForProjectVersionTrainingCompleted.js ***! \************************************************************************************************************/ /*! exports provided: waitForProjectVersionTrainingCompleted */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"waitForProjectVersionTrainingCompleted\", function() { return waitForProjectVersionTrainingCompleted; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/DescribeProjectVersionsCommand */ \"./node_modules/@aws-sdk/client-rekognition/dist/es/commands/DescribeProjectVersionsCommand.js\");\n/* harmony import */ var _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-waiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/index.js\");\n\n\n\nvar checkState = function (client, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var result_1, returnComparator, allStringEq_5, _a, _b, element_4, returnComparator, _c, _d, anyStringEq_4, exception_1;\n var e_1, _e, e_2, _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _g.trys.push([0, 2, , 3]);\n return [4 /*yield*/, client.send(new _commands_DescribeProjectVersionsCommand__WEBPACK_IMPORTED_MODULE_1__[\"DescribeProjectVersionsCommand\"](input))];\n case 1:\n result_1 = _g.sent();\n try {\n returnComparator = function () {\n var flat_1 = [].concat.apply([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(result_1.ProjectVersionDescriptions));\n var projection_3 = flat_1.map(function (element_2) {\n return element_2.Status;\n });\n return projection_3;\n };\n allStringEq_5 = returnComparator().length > 0;\n try {\n for (_a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(returnComparator()), _b = _a.next(); !_b.done; _b = _a.next()) {\n element_4 = _b.value;\n allStringEq_5 = allStringEq_5 && element_4 == \"TRAINING_COMPLETED\";\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_b && !_b.done && (_e = _a.return)) _e.call(_a);\n }\n finally { if (e_1) throw e_1.error; }\n }\n if (allStringEq_5) {\n return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].SUCCESS }];\n }\n }\n catch (e) { }\n try {\n returnComparator = function () {\n var flat_1 = [].concat.apply([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(result_1.ProjectVersionDescriptions));\n var projection_3 = flat_1.map(function (element_2) {\n return element_2.Status;\n });\n return projection_3;\n };\n try {\n for (_c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(returnComparator()), _d = _c.next(); !_d.done; _d = _c.next()) {\n anyStringEq_4 = _d.value;\n if (anyStringEq_4 == \"TRAINING_FAILED\") {\n return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].FAILURE }];\n }\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_f = _c.return)) _f.call(_c);\n }\n finally { if (e_2) throw e_2.error; }\n }\n }\n catch (e) { }\n return [3 /*break*/, 3];\n case 2:\n exception_1 = _g.sent();\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].RETRY }];\n }\n });\n}); };\n/**\n * Wait until the ProjectVersion training completes.\n * @param params : Waiter configuration options.\n * @param input : the input to DescribeProjectVersionsCommand for polling.\n */\nvar waitForProjectVersionTrainingCompleted = function (params, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var serviceDefaults;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n serviceDefaults = { minDelay: 120, maxDelay: 120 };\n return [2 /*return*/, Object(_aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"createWaiter\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, serviceDefaults), params), input, checkState)];\n });\n}); };\n//# sourceMappingURL=waitForProjectVersionTrainingCompleted.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/dist/es/waiters/waitForProjectVersionTrainingCompleted.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js ***! \**********************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-rekognition/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/S3.js": /*!*******************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/S3.js ***! \*******************************************************/ /*! exports provided: S3 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3\", function() { return S3; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _S3Client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./S3Client */ \"./node_modules/@aws-sdk/client-s3/dist/es/S3Client.js\");\n/* harmony import */ var _commands_AbortMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/AbortMultipartUploadCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/AbortMultipartUploadCommand.js\");\n/* harmony import */ var _commands_CompleteMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CompleteMultipartUploadCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/CompleteMultipartUploadCommand.js\");\n/* harmony import */ var _commands_CopyObjectCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/CopyObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/CopyObjectCommand.js\");\n/* harmony import */ var _commands_CreateBucketCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/CreateBucketCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateBucketCommand.js\");\n/* harmony import */ var _commands_CreateMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/CreateMultipartUploadCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateMultipartUploadCommand.js\");\n/* harmony import */ var _commands_DeleteBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/DeleteBucketAnalyticsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketAnalyticsConfigurationCommand.js\");\n/* harmony import */ var _commands_DeleteBucketCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/DeleteBucketCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCommand.js\");\n/* harmony import */ var _commands_DeleteBucketCorsCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/DeleteBucketCorsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCorsCommand.js\");\n/* harmony import */ var _commands_DeleteBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/DeleteBucketEncryptionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketEncryptionCommand.js\");\n/* harmony import */ var _commands_DeleteBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DeleteBucketIntelligentTieringConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js\");\n/* harmony import */ var _commands_DeleteBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/DeleteBucketInventoryConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketInventoryConfigurationCommand.js\");\n/* harmony import */ var _commands_DeleteBucketLifecycleCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DeleteBucketLifecycleCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketLifecycleCommand.js\");\n/* harmony import */ var _commands_DeleteBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/DeleteBucketMetricsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketMetricsConfigurationCommand.js\");\n/* harmony import */ var _commands_DeleteBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DeleteBucketOwnershipControlsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketOwnershipControlsCommand.js\");\n/* harmony import */ var _commands_DeleteBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/DeleteBucketPolicyCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketPolicyCommand.js\");\n/* harmony import */ var _commands_DeleteBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DeleteBucketReplicationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketReplicationCommand.js\");\n/* harmony import */ var _commands_DeleteBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DeleteBucketTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketTaggingCommand.js\");\n/* harmony import */ var _commands_DeleteBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DeleteBucketWebsiteCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketWebsiteCommand.js\");\n/* harmony import */ var _commands_DeleteObjectCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DeleteObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectCommand.js\");\n/* harmony import */ var _commands_DeleteObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DeleteObjectTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectTaggingCommand.js\");\n/* harmony import */ var _commands_DeleteObjectsCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DeleteObjectsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectsCommand.js\");\n/* harmony import */ var _commands_DeletePublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/DeletePublicAccessBlockCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeletePublicAccessBlockCommand.js\");\n/* harmony import */ var _commands_GetBucketAccelerateConfigurationCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/GetBucketAccelerateConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAccelerateConfigurationCommand.js\");\n/* harmony import */ var _commands_GetBucketAclCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/GetBucketAclCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAclCommand.js\");\n/* harmony import */ var _commands_GetBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/GetBucketAnalyticsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAnalyticsConfigurationCommand.js\");\n/* harmony import */ var _commands_GetBucketCorsCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/GetBucketCorsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketCorsCommand.js\");\n/* harmony import */ var _commands_GetBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/GetBucketEncryptionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketEncryptionCommand.js\");\n/* harmony import */ var _commands_GetBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/GetBucketIntelligentTieringConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketIntelligentTieringConfigurationCommand.js\");\n/* harmony import */ var _commands_GetBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/GetBucketInventoryConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketInventoryConfigurationCommand.js\");\n/* harmony import */ var _commands_GetBucketLifecycleConfigurationCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/GetBucketLifecycleConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLifecycleConfigurationCommand.js\");\n/* harmony import */ var _commands_GetBucketLocationCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/GetBucketLocationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLocationCommand.js\");\n/* harmony import */ var _commands_GetBucketLoggingCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/GetBucketLoggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLoggingCommand.js\");\n/* harmony import */ var _commands_GetBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./commands/GetBucketMetricsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketMetricsConfigurationCommand.js\");\n/* harmony import */ var _commands_GetBucketNotificationConfigurationCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/GetBucketNotificationConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketNotificationConfigurationCommand.js\");\n/* harmony import */ var _commands_GetBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./commands/GetBucketOwnershipControlsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketOwnershipControlsCommand.js\");\n/* harmony import */ var _commands_GetBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/GetBucketPolicyCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyCommand.js\");\n/* harmony import */ var _commands_GetBucketPolicyStatusCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/GetBucketPolicyStatusCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyStatusCommand.js\");\n/* harmony import */ var _commands_GetBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/GetBucketReplicationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketReplicationCommand.js\");\n/* harmony import */ var _commands_GetBucketRequestPaymentCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/GetBucketRequestPaymentCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketRequestPaymentCommand.js\");\n/* harmony import */ var _commands_GetBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/GetBucketTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketTaggingCommand.js\");\n/* harmony import */ var _commands_GetBucketVersioningCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/GetBucketVersioningCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketVersioningCommand.js\");\n/* harmony import */ var _commands_GetBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/GetBucketWebsiteCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketWebsiteCommand.js\");\n/* harmony import */ var _commands_GetObjectAclCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/GetObjectAclCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectAclCommand.js\");\n/* harmony import */ var _commands_GetObjectCommand__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./commands/GetObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectCommand.js\");\n/* harmony import */ var _commands_GetObjectLegalHoldCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/GetObjectLegalHoldCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLegalHoldCommand.js\");\n/* harmony import */ var _commands_GetObjectLockConfigurationCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./commands/GetObjectLockConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLockConfigurationCommand.js\");\n/* harmony import */ var _commands_GetObjectRetentionCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./commands/GetObjectRetentionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectRetentionCommand.js\");\n/* harmony import */ var _commands_GetObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./commands/GetObjectTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTaggingCommand.js\");\n/* harmony import */ var _commands_GetObjectTorrentCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./commands/GetObjectTorrentCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTorrentCommand.js\");\n/* harmony import */ var _commands_GetPublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./commands/GetPublicAccessBlockCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetPublicAccessBlockCommand.js\");\n/* harmony import */ var _commands_HeadBucketCommand__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./commands/HeadBucketCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadBucketCommand.js\");\n/* harmony import */ var _commands_HeadObjectCommand__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./commands/HeadObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadObjectCommand.js\");\n/* harmony import */ var _commands_ListBucketAnalyticsConfigurationsCommand__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./commands/ListBucketAnalyticsConfigurationsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketAnalyticsConfigurationsCommand.js\");\n/* harmony import */ var _commands_ListBucketIntelligentTieringConfigurationsCommand__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./commands/ListBucketIntelligentTieringConfigurationsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketIntelligentTieringConfigurationsCommand.js\");\n/* harmony import */ var _commands_ListBucketInventoryConfigurationsCommand__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./commands/ListBucketInventoryConfigurationsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketInventoryConfigurationsCommand.js\");\n/* harmony import */ var _commands_ListBucketMetricsConfigurationsCommand__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./commands/ListBucketMetricsConfigurationsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketMetricsConfigurationsCommand.js\");\n/* harmony import */ var _commands_ListBucketsCommand__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./commands/ListBucketsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketsCommand.js\");\n/* harmony import */ var _commands_ListMultipartUploadsCommand__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./commands/ListMultipartUploadsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListMultipartUploadsCommand.js\");\n/* harmony import */ var _commands_ListObjectVersionsCommand__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./commands/ListObjectVersionsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectVersionsCommand.js\");\n/* harmony import */ var _commands_ListObjectsCommand__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./commands/ListObjectsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsCommand.js\");\n/* harmony import */ var _commands_ListObjectsV2Command__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./commands/ListObjectsV2Command */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsV2Command.js\");\n/* harmony import */ var _commands_ListPartsCommand__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./commands/ListPartsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListPartsCommand.js\");\n/* harmony import */ var _commands_PutBucketAccelerateConfigurationCommand__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./commands/PutBucketAccelerateConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAccelerateConfigurationCommand.js\");\n/* harmony import */ var _commands_PutBucketAclCommand__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./commands/PutBucketAclCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAclCommand.js\");\n/* harmony import */ var _commands_PutBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./commands/PutBucketAnalyticsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAnalyticsConfigurationCommand.js\");\n/* harmony import */ var _commands_PutBucketCorsCommand__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./commands/PutBucketCorsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketCorsCommand.js\");\n/* harmony import */ var _commands_PutBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./commands/PutBucketEncryptionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketEncryptionCommand.js\");\n/* harmony import */ var _commands_PutBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./commands/PutBucketIntelligentTieringConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketIntelligentTieringConfigurationCommand.js\");\n/* harmony import */ var _commands_PutBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./commands/PutBucketInventoryConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketInventoryConfigurationCommand.js\");\n/* harmony import */ var _commands_PutBucketLifecycleConfigurationCommand__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./commands/PutBucketLifecycleConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLifecycleConfigurationCommand.js\");\n/* harmony import */ var _commands_PutBucketLoggingCommand__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./commands/PutBucketLoggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLoggingCommand.js\");\n/* harmony import */ var _commands_PutBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./commands/PutBucketMetricsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketMetricsConfigurationCommand.js\");\n/* harmony import */ var _commands_PutBucketNotificationConfigurationCommand__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./commands/PutBucketNotificationConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketNotificationConfigurationCommand.js\");\n/* harmony import */ var _commands_PutBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./commands/PutBucketOwnershipControlsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketOwnershipControlsCommand.js\");\n/* harmony import */ var _commands_PutBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./commands/PutBucketPolicyCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketPolicyCommand.js\");\n/* harmony import */ var _commands_PutBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./commands/PutBucketReplicationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketReplicationCommand.js\");\n/* harmony import */ var _commands_PutBucketRequestPaymentCommand__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./commands/PutBucketRequestPaymentCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketRequestPaymentCommand.js\");\n/* harmony import */ var _commands_PutBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./commands/PutBucketTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketTaggingCommand.js\");\n/* harmony import */ var _commands_PutBucketVersioningCommand__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./commands/PutBucketVersioningCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketVersioningCommand.js\");\n/* harmony import */ var _commands_PutBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./commands/PutBucketWebsiteCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketWebsiteCommand.js\");\n/* harmony import */ var _commands_PutObjectAclCommand__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./commands/PutObjectAclCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectAclCommand.js\");\n/* harmony import */ var _commands_PutObjectCommand__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./commands/PutObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectCommand.js\");\n/* harmony import */ var _commands_PutObjectLegalHoldCommand__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./commands/PutObjectLegalHoldCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLegalHoldCommand.js\");\n/* harmony import */ var _commands_PutObjectLockConfigurationCommand__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./commands/PutObjectLockConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLockConfigurationCommand.js\");\n/* harmony import */ var _commands_PutObjectRetentionCommand__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./commands/PutObjectRetentionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectRetentionCommand.js\");\n/* harmony import */ var _commands_PutObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./commands/PutObjectTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectTaggingCommand.js\");\n/* harmony import */ var _commands_PutPublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./commands/PutPublicAccessBlockCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutPublicAccessBlockCommand.js\");\n/* harmony import */ var _commands_RestoreObjectCommand__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./commands/RestoreObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/RestoreObjectCommand.js\");\n/* harmony import */ var _commands_SelectObjectContentCommand__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./commands/SelectObjectContentCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/SelectObjectContentCommand.js\");\n/* harmony import */ var _commands_UploadPartCommand__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./commands/UploadPartCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCommand.js\");\n/* harmony import */ var _commands_UploadPartCopyCommand__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./commands/UploadPartCopyCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCopyCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n *

\n */\nvar S3 = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(S3, _super);\n function S3() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n S3.prototype.abortMultipartUpload = function (args, optionsOrCb, cb) {\n var command = new _commands_AbortMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_2__[\"AbortMultipartUploadCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.completeMultipartUpload = function (args, optionsOrCb, cb) {\n var command = new _commands_CompleteMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_3__[\"CompleteMultipartUploadCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.copyObject = function (args, optionsOrCb, cb) {\n var command = new _commands_CopyObjectCommand__WEBPACK_IMPORTED_MODULE_4__[\"CopyObjectCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.createBucket = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateBucketCommand__WEBPACK_IMPORTED_MODULE_5__[\"CreateBucketCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.createMultipartUpload = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_6__[\"CreateMultipartUploadCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucket = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketCommand__WEBPACK_IMPORTED_MODULE_8__[\"DeleteBucketCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketAnalyticsConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_7__[\"DeleteBucketAnalyticsConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketCors = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketCorsCommand__WEBPACK_IMPORTED_MODULE_9__[\"DeleteBucketCorsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketEncryption = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_10__[\"DeleteBucketEncryptionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketIntelligentTieringConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_11__[\"DeleteBucketIntelligentTieringConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketInventoryConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_12__[\"DeleteBucketInventoryConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketLifecycle = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketLifecycleCommand__WEBPACK_IMPORTED_MODULE_13__[\"DeleteBucketLifecycleCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketMetricsConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_14__[\"DeleteBucketMetricsConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketOwnershipControls = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_15__[\"DeleteBucketOwnershipControlsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketPolicy = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_16__[\"DeleteBucketPolicyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketReplication = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_17__[\"DeleteBucketReplicationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketTagging = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_18__[\"DeleteBucketTaggingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteBucketWebsite = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_19__[\"DeleteBucketWebsiteCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteObject = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteObjectCommand__WEBPACK_IMPORTED_MODULE_20__[\"DeleteObjectCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteObjects = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteObjectsCommand__WEBPACK_IMPORTED_MODULE_22__[\"DeleteObjectsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deleteObjectTagging = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_21__[\"DeleteObjectTaggingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.deletePublicAccessBlock = function (args, optionsOrCb, cb) {\n var command = new _commands_DeletePublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_23__[\"DeletePublicAccessBlockCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketAccelerateConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketAccelerateConfigurationCommand__WEBPACK_IMPORTED_MODULE_24__[\"GetBucketAccelerateConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketAcl = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketAclCommand__WEBPACK_IMPORTED_MODULE_25__[\"GetBucketAclCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketAnalyticsConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_26__[\"GetBucketAnalyticsConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketCors = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketCorsCommand__WEBPACK_IMPORTED_MODULE_27__[\"GetBucketCorsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketEncryption = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_28__[\"GetBucketEncryptionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketIntelligentTieringConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_29__[\"GetBucketIntelligentTieringConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketInventoryConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_30__[\"GetBucketInventoryConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketLifecycleConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketLifecycleConfigurationCommand__WEBPACK_IMPORTED_MODULE_31__[\"GetBucketLifecycleConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketLocation = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketLocationCommand__WEBPACK_IMPORTED_MODULE_32__[\"GetBucketLocationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketLogging = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketLoggingCommand__WEBPACK_IMPORTED_MODULE_33__[\"GetBucketLoggingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketMetricsConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_34__[\"GetBucketMetricsConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketNotificationConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketNotificationConfigurationCommand__WEBPACK_IMPORTED_MODULE_35__[\"GetBucketNotificationConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketOwnershipControls = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_36__[\"GetBucketOwnershipControlsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketPolicy = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_37__[\"GetBucketPolicyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketPolicyStatus = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketPolicyStatusCommand__WEBPACK_IMPORTED_MODULE_38__[\"GetBucketPolicyStatusCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketReplication = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_39__[\"GetBucketReplicationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketRequestPayment = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketRequestPaymentCommand__WEBPACK_IMPORTED_MODULE_40__[\"GetBucketRequestPaymentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketTagging = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_41__[\"GetBucketTaggingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketVersioning = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketVersioningCommand__WEBPACK_IMPORTED_MODULE_42__[\"GetBucketVersioningCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getBucketWebsite = function (args, optionsOrCb, cb) {\n var command = new _commands_GetBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_43__[\"GetBucketWebsiteCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getObject = function (args, optionsOrCb, cb) {\n var command = new _commands_GetObjectCommand__WEBPACK_IMPORTED_MODULE_45__[\"GetObjectCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getObjectAcl = function (args, optionsOrCb, cb) {\n var command = new _commands_GetObjectAclCommand__WEBPACK_IMPORTED_MODULE_44__[\"GetObjectAclCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getObjectLegalHold = function (args, optionsOrCb, cb) {\n var command = new _commands_GetObjectLegalHoldCommand__WEBPACK_IMPORTED_MODULE_46__[\"GetObjectLegalHoldCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getObjectLockConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_GetObjectLockConfigurationCommand__WEBPACK_IMPORTED_MODULE_47__[\"GetObjectLockConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getObjectRetention = function (args, optionsOrCb, cb) {\n var command = new _commands_GetObjectRetentionCommand__WEBPACK_IMPORTED_MODULE_48__[\"GetObjectRetentionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getObjectTagging = function (args, optionsOrCb, cb) {\n var command = new _commands_GetObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_49__[\"GetObjectTaggingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getObjectTorrent = function (args, optionsOrCb, cb) {\n var command = new _commands_GetObjectTorrentCommand__WEBPACK_IMPORTED_MODULE_50__[\"GetObjectTorrentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.getPublicAccessBlock = function (args, optionsOrCb, cb) {\n var command = new _commands_GetPublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_51__[\"GetPublicAccessBlockCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.headBucket = function (args, optionsOrCb, cb) {\n var command = new _commands_HeadBucketCommand__WEBPACK_IMPORTED_MODULE_52__[\"HeadBucketCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.headObject = function (args, optionsOrCb, cb) {\n var command = new _commands_HeadObjectCommand__WEBPACK_IMPORTED_MODULE_53__[\"HeadObjectCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listBucketAnalyticsConfigurations = function (args, optionsOrCb, cb) {\n var command = new _commands_ListBucketAnalyticsConfigurationsCommand__WEBPACK_IMPORTED_MODULE_54__[\"ListBucketAnalyticsConfigurationsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listBucketIntelligentTieringConfigurations = function (args, optionsOrCb, cb) {\n var command = new _commands_ListBucketIntelligentTieringConfigurationsCommand__WEBPACK_IMPORTED_MODULE_55__[\"ListBucketIntelligentTieringConfigurationsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listBucketInventoryConfigurations = function (args, optionsOrCb, cb) {\n var command = new _commands_ListBucketInventoryConfigurationsCommand__WEBPACK_IMPORTED_MODULE_56__[\"ListBucketInventoryConfigurationsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listBucketMetricsConfigurations = function (args, optionsOrCb, cb) {\n var command = new _commands_ListBucketMetricsConfigurationsCommand__WEBPACK_IMPORTED_MODULE_57__[\"ListBucketMetricsConfigurationsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listBuckets = function (args, optionsOrCb, cb) {\n var command = new _commands_ListBucketsCommand__WEBPACK_IMPORTED_MODULE_58__[\"ListBucketsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listMultipartUploads = function (args, optionsOrCb, cb) {\n var command = new _commands_ListMultipartUploadsCommand__WEBPACK_IMPORTED_MODULE_59__[\"ListMultipartUploadsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listObjects = function (args, optionsOrCb, cb) {\n var command = new _commands_ListObjectsCommand__WEBPACK_IMPORTED_MODULE_61__[\"ListObjectsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listObjectsV2 = function (args, optionsOrCb, cb) {\n var command = new _commands_ListObjectsV2Command__WEBPACK_IMPORTED_MODULE_62__[\"ListObjectsV2Command\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listObjectVersions = function (args, optionsOrCb, cb) {\n var command = new _commands_ListObjectVersionsCommand__WEBPACK_IMPORTED_MODULE_60__[\"ListObjectVersionsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.listParts = function (args, optionsOrCb, cb) {\n var command = new _commands_ListPartsCommand__WEBPACK_IMPORTED_MODULE_63__[\"ListPartsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketAccelerateConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketAccelerateConfigurationCommand__WEBPACK_IMPORTED_MODULE_64__[\"PutBucketAccelerateConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketAcl = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketAclCommand__WEBPACK_IMPORTED_MODULE_65__[\"PutBucketAclCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketAnalyticsConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_66__[\"PutBucketAnalyticsConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketCors = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketCorsCommand__WEBPACK_IMPORTED_MODULE_67__[\"PutBucketCorsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketEncryption = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_68__[\"PutBucketEncryptionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketIntelligentTieringConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_69__[\"PutBucketIntelligentTieringConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketInventoryConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_70__[\"PutBucketInventoryConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketLifecycleConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketLifecycleConfigurationCommand__WEBPACK_IMPORTED_MODULE_71__[\"PutBucketLifecycleConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketLogging = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketLoggingCommand__WEBPACK_IMPORTED_MODULE_72__[\"PutBucketLoggingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketMetricsConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_73__[\"PutBucketMetricsConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketNotificationConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketNotificationConfigurationCommand__WEBPACK_IMPORTED_MODULE_74__[\"PutBucketNotificationConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketOwnershipControls = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_75__[\"PutBucketOwnershipControlsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketPolicy = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_76__[\"PutBucketPolicyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketReplication = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_77__[\"PutBucketReplicationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketRequestPayment = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketRequestPaymentCommand__WEBPACK_IMPORTED_MODULE_78__[\"PutBucketRequestPaymentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketTagging = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_79__[\"PutBucketTaggingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketVersioning = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketVersioningCommand__WEBPACK_IMPORTED_MODULE_80__[\"PutBucketVersioningCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putBucketWebsite = function (args, optionsOrCb, cb) {\n var command = new _commands_PutBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_81__[\"PutBucketWebsiteCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putObject = function (args, optionsOrCb, cb) {\n var command = new _commands_PutObjectCommand__WEBPACK_IMPORTED_MODULE_83__[\"PutObjectCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putObjectAcl = function (args, optionsOrCb, cb) {\n var command = new _commands_PutObjectAclCommand__WEBPACK_IMPORTED_MODULE_82__[\"PutObjectAclCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putObjectLegalHold = function (args, optionsOrCb, cb) {\n var command = new _commands_PutObjectLegalHoldCommand__WEBPACK_IMPORTED_MODULE_84__[\"PutObjectLegalHoldCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putObjectLockConfiguration = function (args, optionsOrCb, cb) {\n var command = new _commands_PutObjectLockConfigurationCommand__WEBPACK_IMPORTED_MODULE_85__[\"PutObjectLockConfigurationCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putObjectRetention = function (args, optionsOrCb, cb) {\n var command = new _commands_PutObjectRetentionCommand__WEBPACK_IMPORTED_MODULE_86__[\"PutObjectRetentionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putObjectTagging = function (args, optionsOrCb, cb) {\n var command = new _commands_PutObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_87__[\"PutObjectTaggingCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.putPublicAccessBlock = function (args, optionsOrCb, cb) {\n var command = new _commands_PutPublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_88__[\"PutPublicAccessBlockCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.restoreObject = function (args, optionsOrCb, cb) {\n var command = new _commands_RestoreObjectCommand__WEBPACK_IMPORTED_MODULE_89__[\"RestoreObjectCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.selectObjectContent = function (args, optionsOrCb, cb) {\n var command = new _commands_SelectObjectContentCommand__WEBPACK_IMPORTED_MODULE_90__[\"SelectObjectContentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.uploadPart = function (args, optionsOrCb, cb) {\n var command = new _commands_UploadPartCommand__WEBPACK_IMPORTED_MODULE_91__[\"UploadPartCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n S3.prototype.uploadPartCopy = function (args, optionsOrCb, cb) {\n var command = new _commands_UploadPartCopyCommand__WEBPACK_IMPORTED_MODULE_92__[\"UploadPartCopyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return S3;\n}(_S3Client__WEBPACK_IMPORTED_MODULE_1__[\"S3Client\"]));\n\n//# sourceMappingURL=S3.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/S3.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/S3Client.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/S3Client.js ***! \*************************************************************/ /*! exports provided: S3Client */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3Client\", function() { return S3Client; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-s3/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_eventstream_serde_config_resolver__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/eventstream-serde-config-resolver */ \"./node_modules/@aws-sdk/eventstream-serde-config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_expect_continue__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-expect-continue */ \"./node_modules/@aws-sdk/middleware-expect-continue/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_sdk_s3__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @aws-sdk/middleware-sdk-s3 */ \"./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n *

\n */\nvar S3Client = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(S3Client, _super);\n function S3Client(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_11__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_9__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_7__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__[\"resolveBucketEndpointConfig\"])(_config_5);\n var _config_7 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_12__[\"resolveUserAgentConfig\"])(_config_6);\n var _config_8 = Object(_aws_sdk_eventstream_serde_config_resolver__WEBPACK_IMPORTED_MODULE_3__[\"resolveEventStreamSerdeConfig\"])(_config_7);\n _this = _super.call(this, _config_8) || this;\n _this.config = _config_8;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_11__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_9__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_5__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_7__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_8__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_sdk_s3__WEBPACK_IMPORTED_MODULE_10__[\"getValidateBucketNamePlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_sdk_s3__WEBPACK_IMPORTED_MODULE_10__[\"getUseRegionalEndpointPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_expect_continue__WEBPACK_IMPORTED_MODULE_6__[\"getAddExpectContinuePlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_12__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n S3Client.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return S3Client;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_13__[\"Client\"]));\n\n//# sourceMappingURL=S3Client.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/S3Client.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/AbortMultipartUploadCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/AbortMultipartUploadCommand.js ***! \*****************************************************************************************/ /*! exports provided: AbortMultipartUploadCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbortMultipartUploadCommand\", function() { return AbortMultipartUploadCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This operation aborts a multipart upload. After a multipart upload is aborted, no\n * additional parts can be uploaded using that upload ID. The storage consumed by any\n * previously uploaded parts will be freed. However, if any part uploads are currently in\n * progress, those part uploads might or might not succeed. As a result, it might be necessary\n * to abort a given multipart upload multiple times in order to completely free all storage\n * consumed by all parts.

\n *

To verify that all parts have been removed, so you don't get charged for the part\n * storage, you should call the ListParts operation and ensure that\n * the parts list is empty.

\n *

For information about permissions required to use the multipart upload API, see Multipart Upload API and\n * Permissions.

\n *

The following operations are related to AbortMultipartUpload:

\n * \n */\nvar AbortMultipartUploadCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AbortMultipartUploadCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function AbortMultipartUploadCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n AbortMultipartUploadCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"AbortMultipartUploadCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"AbortMultipartUploadRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"AbortMultipartUploadOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n AbortMultipartUploadCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlAbortMultipartUploadCommand\"])(input, context);\n };\n AbortMultipartUploadCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlAbortMultipartUploadCommand\"])(output, context);\n };\n return AbortMultipartUploadCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=AbortMultipartUploadCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/AbortMultipartUploadCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/CompleteMultipartUploadCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/CompleteMultipartUploadCommand.js ***! \********************************************************************************************/ /*! exports provided: CompleteMultipartUploadCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompleteMultipartUploadCommand\", function() { return CompleteMultipartUploadCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_sdk_s3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-sdk-s3 */ \"./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Completes a multipart upload by assembling previously uploaded parts.

\n *

You first initiate the multipart upload and then upload all parts using the UploadPart\n * operation. After successfully uploading all relevant parts of an upload, you call this\n * operation to complete the upload. Upon receiving this request, Amazon S3 concatenates all\n * the parts in ascending order by part number to create a new object. In the Complete\n * Multipart Upload request, you must provide the parts list. You must ensure that the parts\n * list is complete. This operation concatenates the parts that you provide in the list. For\n * each part in the list, you must provide the part number and the ETag value,\n * returned after that part was uploaded.

\n *

Processing of a Complete Multipart Upload request could take several minutes to\n * complete. After Amazon S3 begins processing the request, it sends an HTTP response header that\n * specifies a 200 OK response. While processing is in progress, Amazon S3 periodically sends white\n * space characters to keep the connection from timing out. Because a request could fail after\n * the initial 200 OK response has been sent, it is important that you check the response body\n * to determine whether the request succeeded.

\n *

Note that if CompleteMultipartUpload fails, applications should be prepared\n * to retry the failed requests. For more information, see Amazon S3 Error Best Practices.

\n *

For more information about multipart uploads, see Uploading Objects Using Multipart\n * Upload.

\n *

For information about permissions required to use the multipart upload API, see Multipart Upload API and\n * Permissions.

\n *\n *\n *

\n * CompleteMultipartUpload has the following special errors:

\n *
    \n *
  • \n *

    Error code: EntityTooSmall\n *

    \n *
      \n *
    • \n *

      Description: Your proposed upload is smaller than the minimum allowed object\n * size. Each part must be at least 5 MB in size, except the last part.

      \n *
    • \n *
    • \n *

      400 Bad Request

      \n *
    • \n *
    \n *
  • \n *
  • \n *

    Error code: InvalidPart\n *

    \n *
      \n *
    • \n *

      Description: One or more of the specified parts could not be found. The part\n * might not have been uploaded, or the specified entity tag might not have\n * matched the part's entity tag.

      \n *
    • \n *
    • \n *

      400 Bad Request

      \n *
    • \n *
    \n *
  • \n *
  • \n *

    Error code: InvalidPartOrder\n *

    \n *
      \n *
    • \n *

      Description: The list of parts was not in ascending order. The parts list\n * must be specified in order by part number.

      \n *
    • \n *
    • \n *

      400 Bad Request

      \n *
    • \n *
    \n *
  • \n *
  • \n *

    Error code: NoSuchUpload\n *

    \n *
      \n *
    • \n *

      Description: The specified multipart upload does not exist. The upload ID\n * might be invalid, or the multipart upload might have been aborted or\n * completed.

      \n *
    • \n *
    • \n *

      404 Not Found

      \n *
    • \n *
    \n *
  • \n *
\n *\n *

The following operations are related to CompleteMultipartUpload:

\n * \n */\nvar CompleteMultipartUploadCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CompleteMultipartUploadCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CompleteMultipartUploadCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CompleteMultipartUploadCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_sdk_s3__WEBPACK_IMPORTED_MODULE_4__[\"getThrow200ExceptionsPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"CompleteMultipartUploadCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CompleteMultipartUploadRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CompleteMultipartUploadOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CompleteMultipartUploadCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlCompleteMultipartUploadCommand\"])(input, context);\n };\n CompleteMultipartUploadCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlCompleteMultipartUploadCommand\"])(output, context);\n };\n return CompleteMultipartUploadCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=CompleteMultipartUploadCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/CompleteMultipartUploadCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/CopyObjectCommand.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/CopyObjectCommand.js ***! \*******************************************************************************/ /*! exports provided: CopyObjectCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectCommand\", function() { return CopyObjectCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_sdk_s3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-sdk-s3 */ \"./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-ssec */ \"./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n/**\n *

Creates a copy of an object that is already stored in Amazon S3.

\n * \n *

You can store individual objects of up to 5 TB in Amazon S3. You create a copy of your\n * object up to 5 GB in size in a single atomic operation using this API. However, to copy\n * an object greater than 5 GB, you must use the multipart upload Upload Part - Copy API.\n * For more information, see Copy Object Using the REST Multipart Upload API.

\n *
\n *

All copy requests must be authenticated. Additionally, you must have\n * read access to the source object and write\n * access to the destination bucket. For more information, see REST Authentication. Both the Region\n * that you want to copy the object from and the Region that you want to copy the object to\n * must be enabled for your account.

\n *

A copy request might return an error when Amazon S3 receives the copy request or while Amazon S3\n * is copying the files. If the error occurs before the copy operation starts, you receive a\n * standard Amazon S3 error. If the error occurs during the copy operation, the error response is\n * embedded in the 200 OK response. This means that a 200 OK\n * response can contain either a success or an error. Design your application to parse the\n * contents of the response and handle it appropriately.

\n *

If the copy is successful, you receive a response with information about the copied\n * object.

\n * \n *

If the request is an HTTP 1.1 request, the response is chunk encoded. If it were not,\n * it would not contain the content-length, and you would need to read the entire\n * body.

\n *
\n *

The copy request charge is based on the storage class and Region that you specify for\n * the destination object. For pricing information, see Amazon S3 pricing.

\n * \n *

Amazon S3 transfer acceleration does not support cross-Region copies. If you request a\n * cross-Region copy using a transfer acceleration endpoint, you get a 400 Bad\n * Request error. For more information, see Transfer Acceleration.

\n *
\n *

\n * Metadata\n *

\n *

When copying an object, you can preserve all metadata (default) or specify new metadata.\n * However, the ACL is not preserved and is set to private for the user making the request. To\n * override the default ACL setting, specify a new ACL when generating a copy request. For\n * more information, see Using ACLs.

\n *

To specify whether you want the object metadata copied from the source object or\n * replaced with metadata provided in the request, you can optionally add the\n * x-amz-metadata-directive header. When you grant permissions, you can use\n * the s3:x-amz-metadata-directive condition key to enforce certain metadata\n * behavior when objects are uploaded. For more information, see Specifying Conditions in a\n * Policy in the Amazon S3 Developer Guide. For a complete list of\n * Amazon S3-specific condition keys, see Actions, Resources, and Condition Keys for\n * Amazon S3.

\n *

\n * \n * x-amz-copy-source-if Headers\n *

\n *

To only copy an object under certain conditions, such as whether the Etag\n * matches or whether the object was modified before or after a specified date, use the\n * following request parameters:

\n *
    \n *
  • \n *

    \n * x-amz-copy-source-if-match\n *

    \n *
  • \n *
  • \n *

    \n * x-amz-copy-source-if-none-match\n *

    \n *
  • \n *
  • \n *

    \n * x-amz-copy-source-if-unmodified-since\n *

    \n *
  • \n *
  • \n *

    \n * x-amz-copy-source-if-modified-since\n *

    \n *
  • \n *
\n *

If both the x-amz-copy-source-if-match and\n * x-amz-copy-source-if-unmodified-since headers are present in the request\n * and evaluate as follows, Amazon S3 returns 200 OK and copies the data:

\n *
    \n *
  • \n *

    \n * x-amz-copy-source-if-match condition evaluates to true

    \n *
  • \n *
  • \n *

    \n * x-amz-copy-source-if-unmodified-since condition evaluates to\n * false

    \n *
  • \n *
\n *\n *

If both the x-amz-copy-source-if-none-match and\n * x-amz-copy-source-if-modified-since headers are present in the request and\n * evaluate as follows, Amazon S3 returns the 412 Precondition Failed response\n * code:

\n *
    \n *
  • \n *

    \n * x-amz-copy-source-if-none-match condition evaluates to false

    \n *
  • \n *
  • \n *

    \n * x-amz-copy-source-if-modified-since condition evaluates to\n * true

    \n *
  • \n *
\n *\n * \n *

All headers with the x-amz- prefix, including\n * x-amz-copy-source, must be signed.

\n *
\n *

\n * Server-side encryption\n *

\n *

When you perform a CopyObject operation, you can optionally use the appropriate encryption-related headers to encrypt the object using server-side encryption with AWS managed encryption keys (SSE-S3 or SSE-KMS) or a customer-provided encryption key. With server-side encryption, Amazon S3 encrypts your data as it writes it to disks in its data centers and decrypts the data when you access it. For more information about server-side encryption, see Using\n * Server-Side Encryption.

\n *

If a target object uses SSE-KMS, you can enable an S3 Bucket Key for the object. For more\n * information, see Amazon S3 Bucket Keys in the Amazon Simple Storage Service Developer Guide.

\n *

\n * Access Control List (ACL)-Specific Request\n * Headers\n *

\n *

When copying an object, you can optionally use headers to grant ACL-based permissions.\n * By default, all objects are private. Only the owner has full access control. When adding a\n * new object, you can grant permissions to individual AWS accounts or to predefined groups\n * defined by Amazon S3. These permissions are then added to the ACL on the object. For more\n * information, see Access Control List (ACL) Overview and Managing ACLs Using the REST\n * API.

\n *\n *

\n * Storage Class Options\n *

\n *

You can use the CopyObject operation to change the storage class of an\n * object that is already stored in Amazon S3 using the StorageClass parameter. For\n * more information, see Storage\n * Classes in the Amazon S3 Service Developer Guide.

\n *

\n * Versioning\n *

\n *

By default, x-amz-copy-source identifies the current version of an object\n * to copy. If the current version is a delete marker, Amazon S3 behaves as if the object was\n * deleted. To copy a different version, use the versionId subresource.

\n *

If you enable versioning on the target bucket, Amazon S3 generates a unique version ID for\n * the object being copied. This version ID is different from the version ID of the source\n * object. Amazon S3 returns the version ID of the copied object in the\n * x-amz-version-id response header in the response.

\n *

If you do not enable versioning or suspend it on the target bucket, the version ID that\n * Amazon S3 generates is always null.

\n *

If the source object's storage class is GLACIER, you must restore a copy of this object\n * before you can use it as a source object for the copy operation. For more information, see\n * RestoreObject.

\n *

The following operations are related to CopyObject:

\n * \n *

For more information, see Copying\n * Objects.

\n */\nvar CopyObjectCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CopyObjectCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CopyObjectCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CopyObjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_sdk_s3__WEBPACK_IMPORTED_MODULE_4__[\"getThrow200ExceptionsPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_6__[\"getSsecPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"CopyObjectCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CopyObjectRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CopyObjectOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CopyObjectCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlCopyObjectCommand\"])(input, context);\n };\n CopyObjectCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlCopyObjectCommand\"])(output, context);\n };\n return CopyObjectCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_7__[\"Command\"]));\n\n//# sourceMappingURL=CopyObjectCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/CopyObjectCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateBucketCommand.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateBucketCommand.js ***! \*********************************************************************************/ /*! exports provided: CreateBucketCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketCommand\", function() { return CreateBucketCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_location_constraint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-location-constraint */ \"./node_modules/@aws-sdk/middleware-location-constraint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Creates a new S3 bucket. To create a bucket, you must register with Amazon S3 and have a\n * valid AWS Access Key ID to authenticate requests. Anonymous requests are never allowed to\n * create buckets. By creating the bucket, you become the bucket owner.

\n *

Not every string is an acceptable bucket name. For information about bucket naming\n * restrictions, see Working with Amazon S3\n * buckets.

\n *

If you want to create an Amazon S3 on Outposts bucket, see Create Bucket.

\n *

By default, the bucket is created in the US East (N. Virginia) Region. You can\n * optionally specify a Region in the request body. You might choose a Region to optimize\n * latency, minimize costs, or address regulatory requirements. For example, if you reside in\n * Europe, you will probably find it advantageous to create buckets in the Europe (Ireland)\n * Region. For more information, see Accessing a\n * bucket.

\n * \n *

If you send your create bucket request to the s3.amazonaws.com endpoint,\n * the request goes to the us-east-1 Region. Accordingly, the signature calculations in\n * Signature Version 4 must use us-east-1 as the Region, even if the location constraint in\n * the request specifies another Region where the bucket is to be created. If you create a\n * bucket in a Region other than US East (N. Virginia), your application must be able to\n * handle 307 redirect. For more information, see Virtual hosting of buckets.

\n *
\n *

When creating a bucket using this operation, you can optionally specify the accounts or\n * groups that should be granted specific permissions on the bucket. There are two ways to\n * grant the appropriate permissions using the request headers.

\n *
    \n *
  • \n *

    Specify a canned ACL using the x-amz-acl request header. Amazon S3\n * supports a set of predefined ACLs, known as canned ACLs. Each\n * canned ACL has a predefined set of grantees and permissions. For more information,\n * see Canned ACL.

    \n *
  • \n *
  • \n *

    Specify access permissions explicitly using the x-amz-grant-read,\n * x-amz-grant-write, x-amz-grant-read-acp,\n * x-amz-grant-write-acp, and x-amz-grant-full-control\n * headers. These headers map to the set of permissions Amazon S3 supports in an ACL. For\n * more information, see Access control list\n * (ACL) overview.

    \n *

    You specify each grantee as a type=value pair, where the type is one of the\n * following:

    \n *
      \n *
    • \n *

      \n * id – if the value specified is the canonical user ID of an AWS\n * account

      \n *
    • \n *
    • \n *

      \n * uri – if you are granting permissions to a predefined\n * group

      \n *
    • \n *
    • \n *

      \n * emailAddress – if the value specified is the email address of\n * an AWS account

      \n * \n *

      Using email addresses to specify a grantee is only supported in the following AWS Regions:

      \n *
        \n *
      • \n *

        US East (N. Virginia)

        \n *
      • \n *
      • \n *

        US West (N. California)

        \n *
      • \n *
      • \n *

        US West (Oregon)

        \n *
      • \n *
      • \n *

        Asia Pacific (Singapore)

        \n *
      • \n *
      • \n *

        Asia Pacific (Sydney)

        \n *
      • \n *
      • \n *

        Asia Pacific (Tokyo)

        \n *
      • \n *
      • \n *

        Europe (Ireland)

        \n *
      • \n *
      • \n *

        South America (São Paulo)

        \n *
      • \n *
      \n *

      For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the AWS General Reference.

      \n *
      \n *
    • \n *
    \n *

    For example, the following x-amz-grant-read header grants the AWS accounts identified by account IDs permissions to read object data and its metadata:

    \n *

    \n * x-amz-grant-read: id=\"11112222333\", id=\"444455556666\" \n *

    \n *
  • \n *
\n * \n *

You can use either a canned ACL or specify access permissions explicitly. You cannot\n * do both.

\n *
\n *\n *\n *

The following operations are related to CreateBucket:

\n * \n */\nvar CreateBucketCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateBucketCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateBucketCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateBucketCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_location_constraint__WEBPACK_IMPORTED_MODULE_3__[\"getLocationConstraintPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"CreateBucketCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateBucketRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateBucketOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateBucketCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlCreateBucketCommand\"])(input, context);\n };\n CreateBucketCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlCreateBucketCommand\"])(output, context);\n };\n return CreateBucketCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=CreateBucketCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateBucketCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateMultipartUploadCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateMultipartUploadCommand.js ***! \******************************************************************************************/ /*! exports provided: CreateMultipartUploadCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateMultipartUploadCommand\", function() { return CreateMultipartUploadCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-ssec */ \"./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

This operation initiates a multipart upload and returns an upload ID. This upload ID is\n * used to associate all of the parts in the specific multipart upload. You specify this\n * upload ID in each of your subsequent upload part requests (see UploadPart). You also include this\n * upload ID in the final request to either complete or abort the multipart upload\n * request.

\n *\n *

For more information about multipart uploads, see Multipart Upload Overview.

\n *\n *

If you have configured a lifecycle rule to abort incomplete multipart uploads, the\n * upload must complete within the number of days specified in the bucket lifecycle\n * configuration. Otherwise, the incomplete multipart upload becomes eligible for an abort\n * operation and Amazon S3 aborts the multipart upload. For more information, see Aborting\n * Incomplete Multipart Uploads Using a Bucket Lifecycle Policy.

\n *\n *

For information about the permissions required to use the multipart upload API, see\n * Multipart Upload API and\n * Permissions.

\n *\n *

For request signing, multipart upload is just a series of regular requests. You initiate\n * a multipart upload, send one or more requests to upload parts, and then complete the\n * multipart upload process. You sign each request individually. There is nothing special\n * about signing multipart upload requests. For more information about signing, see Authenticating\n * Requests (AWS Signature Version 4).

\n *\n * \n *

After you initiate a multipart upload and upload one or more parts, to stop being\n * charged for storing the uploaded parts, you must either complete or abort the multipart\n * upload. Amazon S3 frees up the space used to store the parts and stop charging you for\n * storing them only after you either complete or abort a multipart upload.

\n *
\n *\n *

You can optionally request server-side encryption. For server-side encryption, Amazon S3\n * encrypts your data as it writes it to disks in its data centers and decrypts it when you\n * access it. You can provide your own encryption key, or use AWS Key Management Service (AWS\n * KMS) customer master keys (CMKs) or Amazon S3-managed encryption keys. If you choose to provide\n * your own encryption key, the request headers you provide in UploadPart and UploadPartCopy requests must match the headers you used in the request to\n * initiate the upload by using CreateMultipartUpload.

\n *

To perform a multipart upload with encryption using an AWS KMS CMK, the requester must\n * have permission to the kms:Encrypt, kms:Decrypt,\n * kms:ReEncrypt*, kms:GenerateDataKey*, and\n * kms:DescribeKey actions on the key. These permissions are required because\n * Amazon S3 must decrypt and read data from the encrypted file parts before it completes the\n * multipart upload.

\n *\n *

If your AWS Identity and Access Management (IAM) user or role is in the same AWS account\n * as the AWS KMS CMK, then you must have these permissions on the key policy. If your IAM\n * user or role belongs to a different account than the key, then you must have the\n * permissions on both the key policy and your IAM user or role.

\n *\n *\n *

For more information, see Protecting\n * Data Using Server-Side Encryption.

\n *\n *
\n *
Access Permissions
\n *
\n *

When copying an object, you can optionally specify the accounts or groups that\n * should be granted specific permissions on the new object. There are two ways to\n * grant the permissions using the request headers:

\n *
    \n *
  • \n *

    Specify a canned ACL with the x-amz-acl request header. For\n * more information, see Canned ACL.

    \n *
  • \n *
  • \n *

    Specify access permissions explicitly with the\n * x-amz-grant-read, x-amz-grant-read-acp,\n * x-amz-grant-write-acp, and\n * x-amz-grant-full-control headers. These parameters map to\n * the set of permissions that Amazon S3 supports in an ACL. For more information,\n * see Access Control List (ACL)\n * Overview.

    \n *
  • \n *
\n *

You can use either a canned ACL or specify access permissions explicitly. You\n * cannot do both.

\n *
\n *
Server-Side- Encryption-Specific Request Headers
\n *
\n *

You can optionally tell Amazon S3 to encrypt data at rest using server-side\n * encryption. Server-side encryption is for data encryption at rest. Amazon S3 encrypts\n * your data as it writes it to disks in its data centers and decrypts it when you\n * access it. The option you use depends on whether you want to use AWS managed\n * encryption keys or provide your own encryption key.

\n *
    \n *
  • \n *

    Use encryption keys managed by Amazon S3 or customer master keys (CMKs) stored\n * in AWS Key Management Service (AWS KMS) – If you want AWS to manage the keys\n * used to encrypt data, specify the following headers in the request.

    \n *
      \n *
    • \n *

      x-amz-server-side-encryption

      \n *
    • \n *
    • \n *

      x-amz-server-side-encryption-aws-kms-key-id

      \n *
    • \n *
    • \n *

      x-amz-server-side-encryption-context

      \n *
    • \n *
    \n * \n *

    If you specify x-amz-server-side-encryption:aws:kms, but\n * don't provide x-amz-server-side-encryption-aws-kms-key-id,\n * Amazon S3 uses the AWS managed CMK in AWS KMS to protect the data.

    \n *
    \n * \n *

    All GET and PUT requests for an object protected by AWS KMS fail if\n * you don't make them with SSL or by using SigV4.

    \n *
    \n *

    For more information about server-side encryption with CMKs stored in AWS\n * KMS (SSE-KMS), see Protecting Data Using Server-Side Encryption with CMKs stored in AWS\n * KMS.

    \n *
  • \n *
  • \n *

    Use customer-provided encryption keys – If you want to manage your own\n * encryption keys, provide all the following headers in the request.

    \n *
      \n *
    • \n *

      x-amz-server-side-encryption-customer-algorithm

      \n *
    • \n *
    • \n *

      x-amz-server-side-encryption-customer-key

      \n *
    • \n *
    • \n *

      x-amz-server-side-encryption-customer-key-MD5

      \n *
    • \n *
    \n *

    For more information about server-side encryption with CMKs stored in AWS\n * KMS (SSE-KMS), see Protecting Data Using Server-Side Encryption with CMKs stored in AWS\n * KMS.

    \n *
  • \n *
\n *
\n *
Access-Control-List (ACL)-Specific Request Headers
\n *
\n *

You also can use the following access control–related headers with this\n * operation. By default, all objects are private. Only the owner has full access\n * control. When adding a new object, you can grant permissions to individual AWS\n * accounts or to predefined groups defined by Amazon S3. These permissions are then added\n * to the access control list (ACL) on the object. For more information, see Using ACLs. With this\n * operation, you can grant access permissions using one of the following two\n * methods:

\n *
    \n *
  • \n *

    Specify a canned ACL (x-amz-acl) — Amazon S3 supports a set of\n * predefined ACLs, known as canned ACLs. Each canned ACL\n * has a predefined set of grantees and permissions. For more information, see\n * Canned\n * ACL.

    \n *
  • \n *
  • \n *

    Specify access permissions explicitly — To explicitly grant access\n * permissions to specific AWS accounts or groups, use the following headers.\n * Each header maps to specific permissions that Amazon S3 supports in an ACL. For\n * more information, see Access\n * Control List (ACL) Overview. In the header, you specify a list of\n * grantees who get the specific permission. To grant permissions explicitly,\n * use:

    \n *
      \n *
    • \n *

      x-amz-grant-read

      \n *
    • \n *
    • \n *

      x-amz-grant-write

      \n *
    • \n *
    • \n *

      x-amz-grant-read-acp

      \n *
    • \n *
    • \n *

      x-amz-grant-write-acp

      \n *
    • \n *
    • \n *

      x-amz-grant-full-control

      \n *
    • \n *
    \n *

    You specify each grantee as a type=value pair, where the type is one of\n * the following:

    \n *
      \n *
    • \n *

      \n * id – if the value specified is the canonical user ID\n * of an AWS account

      \n *
    • \n *
    • \n *

      \n * uri – if you are granting permissions to a predefined\n * group

      \n *
    • \n *
    • \n *

      \n * emailAddress – if the value specified is the email\n * address of an AWS account

      \n * \n *

      Using email addresses to specify a grantee is only supported in the following AWS Regions:

      \n *
        \n *
      • \n *

        US East (N. Virginia)

        \n *
      • \n *
      • \n *

        US West (N. California)

        \n *
      • \n *
      • \n *

        US West (Oregon)

        \n *
      • \n *
      • \n *

        Asia Pacific (Singapore)

        \n *
      • \n *
      • \n *

        Asia Pacific (Sydney)

        \n *
      • \n *
      • \n *

        Asia Pacific (Tokyo)

        \n *
      • \n *
      • \n *

        Europe (Ireland)

        \n *
      • \n *
      • \n *

        South America (São Paulo)

        \n *
      • \n *
      \n *

      For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the AWS General Reference.

      \n *
      \n *
    • \n *
    \n *

    For example, the following x-amz-grant-read header grants the AWS accounts identified by account IDs permissions to read object data and its metadata:

    \n *

    \n * x-amz-grant-read: id=\"11112222333\", id=\"444455556666\" \n *

    \n *
  • \n *
\n *\n *
\n *
\n *\n *

The following operations are related to CreateMultipartUpload:

\n * \n */\nvar CreateMultipartUploadCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateMultipartUploadCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateMultipartUploadCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateMultipartUploadCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__[\"getSsecPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"CreateMultipartUploadCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateMultipartUploadRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateMultipartUploadOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateMultipartUploadCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlCreateMultipartUploadCommand\"])(input, context);\n };\n CreateMultipartUploadCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlCreateMultipartUploadCommand\"])(output, context);\n };\n return CreateMultipartUploadCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=CreateMultipartUploadCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateMultipartUploadCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketAnalyticsConfigurationCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketAnalyticsConfigurationCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DeleteBucketAnalyticsConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketAnalyticsConfigurationCommand\", function() { return DeleteBucketAnalyticsConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes an analytics configuration for the bucket (specified by the analytics\n * configuration ID).

\n *

To use this operation, you must have permissions to perform the\n * s3:PutAnalyticsConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

For information about the Amazon S3 analytics feature, see Amazon S3 Analytics – Storage Class\n * Analysis.

\n *\n *

The following operations are related to\n * DeleteBucketAnalyticsConfiguration:

\n * \n */\nvar DeleteBucketAnalyticsConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketAnalyticsConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketAnalyticsConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketAnalyticsConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketAnalyticsConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketAnalyticsConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketAnalyticsConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand\"])(input, context);\n };\n DeleteBucketAnalyticsConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand\"])(output, context);\n };\n return DeleteBucketAnalyticsConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketAnalyticsConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketAnalyticsConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCommand.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCommand.js ***! \*********************************************************************************/ /*! exports provided: DeleteBucketCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketCommand\", function() { return DeleteBucketCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes the S3 bucket. All objects (including all object versions and delete markers) in\n * the bucket must be deleted before the bucket itself can be deleted.

\n *\n *

\n * Related Resources\n *

\n * \n */\nvar DeleteBucketCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketCommand\"])(input, context);\n };\n DeleteBucketCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketCommand\"])(output, context);\n };\n return DeleteBucketCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCorsCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCorsCommand.js ***! \*************************************************************************************/ /*! exports provided: DeleteBucketCorsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketCorsCommand\", function() { return DeleteBucketCorsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes the cors configuration information set for the bucket.

\n *

To use this operation, you must have permission to perform the\n * s3:PutBucketCORS action. The bucket owner has this permission by default\n * and can grant this permission to others.

\n *

For information about cors, see Enabling\n * Cross-Origin Resource Sharing in the Amazon Simple Storage Service Developer Guide.

\n *\n *

\n * Related Resources:\n *

\n * \n */\nvar DeleteBucketCorsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketCorsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketCorsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketCorsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketCorsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketCorsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketCorsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketCorsCommand\"])(input, context);\n };\n DeleteBucketCorsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketCorsCommand\"])(output, context);\n };\n return DeleteBucketCorsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketCorsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCorsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketEncryptionCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketEncryptionCommand.js ***! \*******************************************************************************************/ /*! exports provided: DeleteBucketEncryptionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketEncryptionCommand\", function() { return DeleteBucketEncryptionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This implementation of the DELETE operation removes default encryption from the bucket.\n * For information about the Amazon S3 default encryption feature, see Amazon S3 Default Bucket Encryption in the\n * Amazon Simple Storage Service Developer Guide.

\n *

To use this operation, you must have permissions to perform the\n * s3:PutEncryptionConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to your Amazon S3\n * Resources in the Amazon Simple Storage Service Developer Guide.

\n *\n *

\n * Related Resources\n *

\n * \n */\nvar DeleteBucketEncryptionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketEncryptionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketEncryptionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketEncryptionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketEncryptionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketEncryptionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketEncryptionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketEncryptionCommand\"])(input, context);\n };\n DeleteBucketEncryptionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketEncryptionCommand\"])(output, context);\n };\n return DeleteBucketEncryptionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketEncryptionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketEncryptionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js": /*!****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js ***! \****************************************************************************************************************/ /*! exports provided: DeleteBucketIntelligentTieringConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketIntelligentTieringConfigurationCommand\", function() { return DeleteBucketIntelligentTieringConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes the S3 Intelligent-Tiering configuration from the specified bucket.

\n *

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead. S3 Intelligent-Tiering delivers automatic cost savings by moving data between access tiers, when access patterns change.

\n *

The S3 Intelligent-Tiering storage class is suitable for objects larger than 128 KB that you plan to store for at least 30 days. If the size of an object is less than 128 KB, it is not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the frequent access tier rates in the S3 Intelligent-Tiering storage class.

\n *

If you delete an object before the end of the 30-day minimum storage duration period, you are charged for 30 days. For more information, see Storage class for automatically optimizing frequently and infrequently accessed objects.

\n *

Operations related to\n * DeleteBucketIntelligentTieringConfiguration include:

\n * \n */\nvar DeleteBucketIntelligentTieringConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketIntelligentTieringConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketIntelligentTieringConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketIntelligentTieringConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketIntelligentTieringConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketIntelligentTieringConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketIntelligentTieringConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand\"])(input, context);\n };\n DeleteBucketIntelligentTieringConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand\"])(output, context);\n };\n return DeleteBucketIntelligentTieringConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketIntelligentTieringConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketInventoryConfigurationCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketInventoryConfigurationCommand.js ***! \*******************************************************************************************************/ /*! exports provided: DeleteBucketInventoryConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketInventoryConfigurationCommand\", function() { return DeleteBucketInventoryConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes an inventory configuration (identified by the inventory ID) from the\n * bucket.

\n *

To use this operation, you must have permissions to perform the\n * s3:PutInventoryConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *

For information about the Amazon S3 inventory feature, see Amazon S3 Inventory.

\n *

Operations related to DeleteBucketInventoryConfiguration include:

\n * \n */\nvar DeleteBucketInventoryConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketInventoryConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketInventoryConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketInventoryConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketInventoryConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketInventoryConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketInventoryConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketInventoryConfigurationCommand\"])(input, context);\n };\n DeleteBucketInventoryConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketInventoryConfigurationCommand\"])(output, context);\n };\n return DeleteBucketInventoryConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketInventoryConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketInventoryConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketLifecycleCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketLifecycleCommand.js ***! \******************************************************************************************/ /*! exports provided: DeleteBucketLifecycleCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketLifecycleCommand\", function() { return DeleteBucketLifecycleCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes the lifecycle configuration from the specified bucket. Amazon S3 removes all the\n * lifecycle configuration rules in the lifecycle subresource associated with the bucket. Your\n * objects never expire, and Amazon S3 no longer automatically deletes any objects on the basis of\n * rules contained in the deleted lifecycle configuration.

\n *

To use this operation, you must have permission to perform the\n * s3:PutLifecycleConfiguration action. By default, the bucket owner has this\n * permission and the bucket owner can grant this permission to others.

\n *\n *

There is usually some time lag before lifecycle configuration deletion is fully\n * propagated to all the Amazon S3 systems.

\n *\n *

For more information about the object expiration, see Elements to\n * Describe Lifecycle Actions.

\n *

Related actions include:

\n * \n */\nvar DeleteBucketLifecycleCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketLifecycleCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketLifecycleCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketLifecycleCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketLifecycleCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketLifecycleRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketLifecycleCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketLifecycleCommand\"])(input, context);\n };\n DeleteBucketLifecycleCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketLifecycleCommand\"])(output, context);\n };\n return DeleteBucketLifecycleCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketLifecycleCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketLifecycleCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketMetricsConfigurationCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketMetricsConfigurationCommand.js ***! \*****************************************************************************************************/ /*! exports provided: DeleteBucketMetricsConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketMetricsConfigurationCommand\", function() { return DeleteBucketMetricsConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes a metrics configuration for the Amazon CloudWatch request metrics (specified by the\n * metrics configuration ID) from the bucket. Note that this doesn't include the daily storage\n * metrics.

\n *\n *

To use this operation, you must have permissions to perform the\n * s3:PutMetricsConfiguration action. The bucket owner has this permission by\n * default. The bucket owner can grant this permission to others. For more information about\n * permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

For information about CloudWatch request metrics for Amazon S3, see Monitoring Metrics with Amazon CloudWatch.

\n *

The following operations are related to\n * DeleteBucketMetricsConfiguration:

\n * \n */\nvar DeleteBucketMetricsConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketMetricsConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketMetricsConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketMetricsConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketMetricsConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketMetricsConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketMetricsConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketMetricsConfigurationCommand\"])(input, context);\n };\n DeleteBucketMetricsConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketMetricsConfigurationCommand\"])(output, context);\n };\n return DeleteBucketMetricsConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketMetricsConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketMetricsConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketOwnershipControlsCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketOwnershipControlsCommand.js ***! \**************************************************************************************************/ /*! exports provided: DeleteBucketOwnershipControlsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketOwnershipControlsCommand\", function() { return DeleteBucketOwnershipControlsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Removes OwnershipControls for an Amazon S3 bucket. To use this operation, you\n * must have the s3:PutBucketOwnershipControls permission. For more information\n * about Amazon S3 permissions, see Specifying\n * Permissions in a Policy.

\n *

For information about Amazon S3 Object Ownership, see Using Object Ownership.

\n *

The following operations are related to\n * DeleteBucketOwnershipControls:

\n * \n */\nvar DeleteBucketOwnershipControlsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketOwnershipControlsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketOwnershipControlsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketOwnershipControlsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketOwnershipControlsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketOwnershipControlsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketOwnershipControlsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketOwnershipControlsCommand\"])(input, context);\n };\n DeleteBucketOwnershipControlsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketOwnershipControlsCommand\"])(output, context);\n };\n return DeleteBucketOwnershipControlsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketOwnershipControlsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketOwnershipControlsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketPolicyCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketPolicyCommand.js ***! \***************************************************************************************/ /*! exports provided: DeleteBucketPolicyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketPolicyCommand\", function() { return DeleteBucketPolicyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This implementation of the DELETE operation uses the policy subresource to delete the\n * policy of a specified bucket. If you are using an identity other than the root user of the\n * AWS account that owns the bucket, the calling identity must have the\n * DeleteBucketPolicy permissions on the specified bucket and belong to the\n * bucket owner's account to use this operation.

\n *\n *

If you don't have DeleteBucketPolicy permissions, Amazon S3 returns a 403\n * Access Denied error. If you have the correct permissions, but you're not using an\n * identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not\n * Allowed error.

\n *\n *\n * \n *

As a security precaution, the root user of the AWS account that owns a bucket can\n * always use this operation, even if the policy explicitly denies the root user the\n * ability to perform this action.

\n *
\n *\n *

For more information about bucket policies, see Using Bucket Policies and\n * UserPolicies.

\n *

The following operations are related to DeleteBucketPolicy\n *

\n * \n */\nvar DeleteBucketPolicyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketPolicyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketPolicyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketPolicyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketPolicyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketPolicyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketPolicyCommand\"])(input, context);\n };\n DeleteBucketPolicyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketPolicyCommand\"])(output, context);\n };\n return DeleteBucketPolicyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketPolicyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketPolicyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketReplicationCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketReplicationCommand.js ***! \********************************************************************************************/ /*! exports provided: DeleteBucketReplicationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketReplicationCommand\", function() { return DeleteBucketReplicationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes the replication configuration from the bucket.

\n *

To use this operation, you must have permissions to perform the\n * s3:PutReplicationConfiguration action. The bucket owner has these\n * permissions by default and can grant it to others. For more information about permissions,\n * see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n * \n *

It can take a while for the deletion of a replication configuration to fully\n * propagate.

\n *
\n *\n *

For information about replication configuration, see Replication in the Amazon S3 Developer\n * Guide.

\n *\n *

The following operations are related to DeleteBucketReplication:

\n * \n */\nvar DeleteBucketReplicationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketReplicationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketReplicationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketReplicationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketReplicationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketReplicationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketReplicationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketReplicationCommand\"])(input, context);\n };\n DeleteBucketReplicationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketReplicationCommand\"])(output, context);\n };\n return DeleteBucketReplicationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketReplicationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketReplicationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketTaggingCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketTaggingCommand.js ***! \****************************************************************************************/ /*! exports provided: DeleteBucketTaggingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketTaggingCommand\", function() { return DeleteBucketTaggingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Deletes the tags from the bucket.

\n *\n *

To use this operation, you must have permission to perform the\n * s3:PutBucketTagging action. By default, the bucket owner has this\n * permission and can grant this permission to others.

\n *

The following operations are related to DeleteBucketTagging:

\n * \n */\nvar DeleteBucketTaggingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketTaggingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketTaggingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketTaggingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketTaggingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketTaggingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketTaggingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketTaggingCommand\"])(input, context);\n };\n DeleteBucketTaggingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketTaggingCommand\"])(output, context);\n };\n return DeleteBucketTaggingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketTaggingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketTaggingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketWebsiteCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketWebsiteCommand.js ***! \****************************************************************************************/ /*! exports provided: DeleteBucketWebsiteCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketWebsiteCommand\", function() { return DeleteBucketWebsiteCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This operation removes the website configuration for a bucket. Amazon S3 returns a 200\n * OK response upon successfully deleting a website configuration on the specified\n * bucket. You will get a 200 OK response if the website configuration you are\n * trying to delete does not exist on the bucket. Amazon S3 returns a 404 response if\n * the bucket specified in the request does not exist.

\n *\n *

This DELETE operation requires the S3:DeleteBucketWebsite permission. By\n * default, only the bucket owner can delete the website configuration attached to a bucket.\n * However, bucket owners can grant other users permission to delete the website configuration\n * by writing a bucket policy granting them the S3:DeleteBucketWebsite\n * permission.

\n *\n *

For more information about hosting websites, see Hosting Websites on Amazon S3.

\n *\n *

The following operations are related to DeleteBucketWebsite:

\n * \n */\nvar DeleteBucketWebsiteCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteBucketWebsiteCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteBucketWebsiteCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteBucketWebsiteCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteBucketWebsiteCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteBucketWebsiteRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteBucketWebsiteCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteBucketWebsiteCommand\"])(input, context);\n };\n DeleteBucketWebsiteCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteBucketWebsiteCommand\"])(output, context);\n };\n return DeleteBucketWebsiteCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteBucketWebsiteCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketWebsiteCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectCommand.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectCommand.js ***! \*********************************************************************************/ /*! exports provided: DeleteObjectCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectCommand\", function() { return DeleteObjectCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Removes the null version (if there is one) of an object and inserts a delete marker,\n * which becomes the latest version of the object. If there isn't a null version, Amazon S3 does\n * not remove any objects.

\n *\n *

To remove a specific version, you must be the bucket owner and you must use the version\n * Id subresource. Using this subresource permanently deletes the version. If the object\n * deleted is a delete marker, Amazon S3 sets the response header,\n * x-amz-delete-marker, to true.

\n *\n *

If the object you want to delete is in a bucket where the bucket versioning\n * configuration is MFA Delete enabled, you must include the x-amz-mfa request\n * header in the DELETE versionId request. Requests that include\n * x-amz-mfa must use HTTPS.

\n *\n *

For more information about MFA Delete, see Using MFA Delete. To see sample requests that use versioning, see Sample Request.

\n *\n *

You can delete objects by explicitly calling the DELETE Object API or configure its\n * lifecycle (PutBucketLifecycle) to\n * enable Amazon S3 to remove them for you. If you want to block users or accounts from removing or\n * deleting objects from your bucket, you must deny them the s3:DeleteObject,\n * s3:DeleteObjectVersion, and s3:PutLifeCycleConfiguration\n * actions.

\n *\n *

The following operation is related to DeleteObject:

\n * \n */\nvar DeleteObjectCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteObjectCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteObjectCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteObjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteObjectCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteObjectRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteObjectOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteObjectCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteObjectCommand\"])(input, context);\n };\n DeleteObjectCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteObjectCommand\"])(output, context);\n };\n return DeleteObjectCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteObjectCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectTaggingCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectTaggingCommand.js ***! \****************************************************************************************/ /*! exports provided: DeleteObjectTaggingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectTaggingCommand\", function() { return DeleteObjectTaggingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Removes the entire tag set from the specified object. For more information about\n * managing object tags, see Object\n * Tagging.

\n *\n *

To use this operation, you must have permission to perform the\n * s3:DeleteObjectTagging action.

\n *\n *

To delete tags of a specific object version, add the versionId query\n * parameter in the request. You will need permission for the\n * s3:DeleteObjectVersionTagging action.

\n *\n *

The following operations are related to\n * DeleteBucketMetricsConfiguration:

\n * \n */\nvar DeleteObjectTaggingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteObjectTaggingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteObjectTaggingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteObjectTaggingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteObjectTaggingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteObjectTaggingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteObjectTaggingOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteObjectTaggingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteObjectTaggingCommand\"])(input, context);\n };\n DeleteObjectTaggingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteObjectTaggingCommand\"])(output, context);\n };\n return DeleteObjectTaggingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeleteObjectTaggingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectTaggingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectsCommand.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectsCommand.js ***! \**********************************************************************************/ /*! exports provided: DeleteObjectsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectsCommand\", function() { return DeleteObjectsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-apply-body-checksum */ \"./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

This operation enables you to delete multiple objects from a bucket using a single HTTP\n * request. If you know the object keys that you want to delete, then this operation provides\n * a suitable alternative to sending individual delete requests, reducing per-request\n * overhead.

\n *\n *

The request contains a list of up to 1000 keys that you want to delete. In the XML, you\n * provide the object key names, and optionally, version IDs if you want to delete a specific\n * version of the object from a versioning-enabled bucket. For each key, Amazon S3 performs a\n * delete operation and returns the result of that delete, success, or failure, in the\n * response. Note that if the object specified in the request is not found, Amazon S3 returns the\n * result as deleted.

\n *\n *

The operation supports two modes for the response: verbose and quiet. By default, the\n * operation uses verbose mode in which the response includes the result of deletion of each\n * key in your request. In quiet mode the response includes only keys where the delete\n * operation encountered an error. For a successful deletion, the operation does not return\n * any information about the delete in the response body.

\n *\n *

When performing this operation on an MFA Delete enabled bucket, that attempts to delete\n * any versioned objects, you must include an MFA token. If you do not provide one, the entire\n * request will fail, even if there are non-versioned objects you are trying to delete. If you\n * provide an invalid token, whether there are versioned keys in the request or not, the\n * entire Multi-Object Delete request will fail. For information about MFA Delete, see MFA\n * Delete.

\n *\n *

Finally, the Content-MD5 header is required for all Multi-Object Delete requests. Amazon\n * S3 uses the header value to ensure that your request body has not been altered in\n * transit.

\n *\n *

The following operations are related to DeleteObjects:

\n * \n */\nvar DeleteObjectsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteObjectsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteObjectsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteObjectsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__[\"getBucketEndpointPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__[\"getApplyMd5BodyChecksumPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeleteObjectsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteObjectsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteObjectsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteObjectsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeleteObjectsCommand\"])(input, context);\n };\n DeleteObjectsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeleteObjectsCommand\"])(output, context);\n };\n return DeleteObjectsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=DeleteObjectsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/DeletePublicAccessBlockCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/DeletePublicAccessBlockCommand.js ***! \********************************************************************************************/ /*! exports provided: DeletePublicAccessBlockCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeletePublicAccessBlockCommand\", function() { return DeletePublicAccessBlockCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Removes the PublicAccessBlock configuration for an Amazon S3 bucket. To use this\n * operation, you must have the s3:PutBucketPublicAccessBlock permission. For\n * more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

The following operations are related to DeletePublicAccessBlock:

\n * \n */\nvar DeletePublicAccessBlockCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeletePublicAccessBlockCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeletePublicAccessBlockCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeletePublicAccessBlockCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"DeletePublicAccessBlockCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeletePublicAccessBlockRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeletePublicAccessBlockCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlDeletePublicAccessBlockCommand\"])(input, context);\n };\n DeletePublicAccessBlockCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlDeletePublicAccessBlockCommand\"])(output, context);\n };\n return DeletePublicAccessBlockCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=DeletePublicAccessBlockCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/DeletePublicAccessBlockCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAccelerateConfigurationCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAccelerateConfigurationCommand.js ***! \*****************************************************************************************************/ /*! exports provided: GetBucketAccelerateConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAccelerateConfigurationCommand\", function() { return GetBucketAccelerateConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This implementation of the GET operation uses the accelerate subresource to\n * return the Transfer Acceleration state of a bucket, which is either Enabled or\n * Suspended. Amazon S3 Transfer Acceleration is a bucket-level feature that\n * enables you to perform faster data transfers to and from Amazon S3.

\n *

To use this operation, you must have permission to perform the\n * s3:GetAccelerateConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to your Amazon S3\n * Resources in the Amazon Simple Storage Service Developer Guide.

\n *

You set the Transfer Acceleration state of an existing bucket to Enabled or\n * Suspended by using the PutBucketAccelerateConfiguration operation.

\n *

A GET accelerate request does not return a state value for a bucket that\n * has no transfer acceleration state. A bucket has no Transfer Acceleration state if a state\n * has never been set on the bucket.

\n *\n *

For more information about transfer acceleration, see Transfer Acceleration in the\n * Amazon Simple Storage Service Developer Guide.

\n *

\n * Related Resources\n *

\n * \n */\nvar GetBucketAccelerateConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketAccelerateConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketAccelerateConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketAccelerateConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketAccelerateConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketAccelerateConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketAccelerateConfigurationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketAccelerateConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketAccelerateConfigurationCommand\"])(input, context);\n };\n GetBucketAccelerateConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketAccelerateConfigurationCommand\"])(output, context);\n };\n return GetBucketAccelerateConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketAccelerateConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAccelerateConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAclCommand.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAclCommand.js ***! \*********************************************************************************/ /*! exports provided: GetBucketAclCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAclCommand\", function() { return GetBucketAclCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This implementation of the GET operation uses the acl\n * subresource to return the access control list (ACL) of a bucket. To use GET to\n * return the ACL of the bucket, you must have READ_ACP access to the bucket. If\n * READ_ACP permission is granted to the anonymous user, you can return the\n * ACL of the bucket without using an authorization header.

\n *\n *

\n * Related Resources\n *

\n * \n */\nvar GetBucketAclCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketAclCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketAclCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketAclCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketAclCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketAclRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketAclOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketAclCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketAclCommand\"])(input, context);\n };\n GetBucketAclCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketAclCommand\"])(output, context);\n };\n return GetBucketAclCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketAclCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAclCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAnalyticsConfigurationCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAnalyticsConfigurationCommand.js ***! \****************************************************************************************************/ /*! exports provided: GetBucketAnalyticsConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAnalyticsConfigurationCommand\", function() { return GetBucketAnalyticsConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This implementation of the GET operation returns an analytics configuration (identified\n * by the analytics configuration ID) from the bucket.

\n *

To use this operation, you must have permissions to perform the\n * s3:GetAnalyticsConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources in the Amazon Simple Storage Service Developer Guide.

\n *

For information about Amazon S3 analytics feature, see Amazon S3 Analytics – Storage Class\n * Analysis in the Amazon Simple Storage Service Developer Guide.

\n *\n *

\n * Related Resources\n *

\n * \n */\nvar GetBucketAnalyticsConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketAnalyticsConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketAnalyticsConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketAnalyticsConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketAnalyticsConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketAnalyticsConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketAnalyticsConfigurationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketAnalyticsConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketAnalyticsConfigurationCommand\"])(input, context);\n };\n GetBucketAnalyticsConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketAnalyticsConfigurationCommand\"])(output, context);\n };\n return GetBucketAnalyticsConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketAnalyticsConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAnalyticsConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketCorsCommand.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketCorsCommand.js ***! \**********************************************************************************/ /*! exports provided: GetBucketCorsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketCorsCommand\", function() { return GetBucketCorsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the cors configuration information set for the bucket.

\n *\n *

To use this operation, you must have permission to perform the s3:GetBucketCORS action.\n * By default, the bucket owner has this permission and can grant it to others.

\n *\n *

For more information about cors, see Enabling\n * Cross-Origin Resource Sharing.

\n *\n *

The following operations are related to GetBucketCors:

\n * \n */\nvar GetBucketCorsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketCorsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketCorsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketCorsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketCorsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketCorsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketCorsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketCorsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketCorsCommand\"])(input, context);\n };\n GetBucketCorsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketCorsCommand\"])(output, context);\n };\n return GetBucketCorsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketCorsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketCorsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketEncryptionCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketEncryptionCommand.js ***! \****************************************************************************************/ /*! exports provided: GetBucketEncryptionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketEncryptionCommand\", function() { return GetBucketEncryptionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the default encryption configuration for an Amazon S3 bucket. For information about\n * the Amazon S3 default encryption feature, see Amazon S3 Default Bucket Encryption.

\n *\n *

To use this operation, you must have permission to perform the\n * s3:GetEncryptionConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *

The following operations are related to GetBucketEncryption:

\n * \n */\nvar GetBucketEncryptionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketEncryptionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketEncryptionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketEncryptionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketEncryptionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketEncryptionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketEncryptionOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketEncryptionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketEncryptionCommand\"])(input, context);\n };\n GetBucketEncryptionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketEncryptionCommand\"])(output, context);\n };\n return GetBucketEncryptionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketEncryptionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketEncryptionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketIntelligentTieringConfigurationCommand.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketIntelligentTieringConfigurationCommand.js ***! \*************************************************************************************************************/ /*! exports provided: GetBucketIntelligentTieringConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketIntelligentTieringConfigurationCommand\", function() { return GetBucketIntelligentTieringConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Gets the S3 Intelligent-Tiering configuration from the specified bucket.

\n *

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead. S3 Intelligent-Tiering delivers automatic cost savings by moving data between access tiers, when access patterns change.

\n *

The S3 Intelligent-Tiering storage class is suitable for objects larger than 128 KB that you plan to store for at least 30 days. If the size of an object is less than 128 KB, it is not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the frequent access tier rates in the S3 Intelligent-Tiering storage class.

\n *

If you delete an object before the end of the 30-day minimum storage duration period, you are charged for 30 days. For more information, see Storage class for automatically optimizing frequently and infrequently accessed objects.

\n *

Operations related to\n * GetBucketIntelligentTieringConfiguration include:

\n * \n */\nvar GetBucketIntelligentTieringConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketIntelligentTieringConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketIntelligentTieringConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketIntelligentTieringConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketIntelligentTieringConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketIntelligentTieringConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketIntelligentTieringConfigurationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketIntelligentTieringConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand\"])(input, context);\n };\n GetBucketIntelligentTieringConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand\"])(output, context);\n };\n return GetBucketIntelligentTieringConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketIntelligentTieringConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketIntelligentTieringConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketInventoryConfigurationCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketInventoryConfigurationCommand.js ***! \****************************************************************************************************/ /*! exports provided: GetBucketInventoryConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketInventoryConfigurationCommand\", function() { return GetBucketInventoryConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns an inventory configuration (identified by the inventory configuration ID) from\n * the bucket.

\n *\n *

To use this operation, you must have permissions to perform the\n * s3:GetInventoryConfiguration action. The bucket owner has this permission\n * by default and can grant this permission to others. For more information about permissions,\n * see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

For information about the Amazon S3 inventory feature, see Amazon S3 Inventory.

\n *\n *

The following operations are related to\n * GetBucketInventoryConfiguration:

\n * \n */\nvar GetBucketInventoryConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketInventoryConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketInventoryConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketInventoryConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketInventoryConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketInventoryConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketInventoryConfigurationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketInventoryConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketInventoryConfigurationCommand\"])(input, context);\n };\n GetBucketInventoryConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketInventoryConfigurationCommand\"])(output, context);\n };\n return GetBucketInventoryConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketInventoryConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketInventoryConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLifecycleConfigurationCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLifecycleConfigurationCommand.js ***! \****************************************************************************************************/ /*! exports provided: GetBucketLifecycleConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLifecycleConfigurationCommand\", function() { return GetBucketLifecycleConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n * \n *

Bucket lifecycle configuration now supports specifying a lifecycle rule using an\n * object key name prefix, one or more object tags, or a combination of both. Accordingly,\n * this section describes the latest API. The response describes the new filter element\n * that you can use to specify a filter to select a subset of objects to which the rule\n * applies. If you are using a previous version of the lifecycle configuration, it still\n * works. For the earlier API description, see GetBucketLifecycle.

\n *
\n *

Returns the lifecycle configuration information set on the bucket. For information about\n * lifecycle configuration, see Object\n * Lifecycle Management.

\n *\n *

To use this operation, you must have permission to perform the\n * s3:GetLifecycleConfiguration action. The bucket owner has this permission,\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

\n * GetBucketLifecycleConfiguration has the following special error:

\n *
    \n *
  • \n *

    Error code: NoSuchLifecycleConfiguration\n *

    \n *
      \n *
    • \n *

      Description: The lifecycle configuration does not exist.

      \n *
    • \n *
    • \n *

      HTTP Status Code: 404 Not Found

      \n *
    • \n *
    • \n *

      SOAP Fault Code Prefix: Client

      \n *
    • \n *
    \n *
  • \n *
\n *

The following operations are related to\n * GetBucketLifecycleConfiguration:

\n * \n */\nvar GetBucketLifecycleConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketLifecycleConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketLifecycleConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketLifecycleConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketLifecycleConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketLifecycleConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketLifecycleConfigurationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketLifecycleConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketLifecycleConfigurationCommand\"])(input, context);\n };\n GetBucketLifecycleConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketLifecycleConfigurationCommand\"])(output, context);\n };\n return GetBucketLifecycleConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketLifecycleConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLifecycleConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLocationCommand.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLocationCommand.js ***! \**************************************************************************************/ /*! exports provided: GetBucketLocationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLocationCommand\", function() { return GetBucketLocationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the Region the bucket resides in. You set the bucket's Region using the\n * LocationConstraint request parameter in a CreateBucket\n * request. For more information, see CreateBucket.

\n *\n *

To use this implementation of the operation, you must be the bucket owner.

\n *\n *

The following operations are related to GetBucketLocation:

\n * \n */\nvar GetBucketLocationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketLocationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketLocationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketLocationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketLocationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketLocationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketLocationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketLocationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketLocationCommand\"])(input, context);\n };\n GetBucketLocationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketLocationCommand\"])(output, context);\n };\n return GetBucketLocationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketLocationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLocationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLoggingCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLoggingCommand.js ***! \*************************************************************************************/ /*! exports provided: GetBucketLoggingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLoggingCommand\", function() { return GetBucketLoggingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the logging status of a bucket and the permissions users have to view and modify\n * that status. To use GET, you must be the bucket owner.

\n *\n *

The following operations are related to GetBucketLogging:

\n * \n */\nvar GetBucketLoggingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketLoggingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketLoggingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketLoggingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketLoggingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketLoggingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketLoggingOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketLoggingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketLoggingCommand\"])(input, context);\n };\n GetBucketLoggingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketLoggingCommand\"])(output, context);\n };\n return GetBucketLoggingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketLoggingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLoggingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketMetricsConfigurationCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketMetricsConfigurationCommand.js ***! \**************************************************************************************************/ /*! exports provided: GetBucketMetricsConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketMetricsConfigurationCommand\", function() { return GetBucketMetricsConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Gets a metrics configuration (specified by the metrics configuration ID) from the\n * bucket. Note that this doesn't include the daily storage metrics.

\n *\n *

To use this operation, you must have permissions to perform the\n * s3:GetMetricsConfiguration action. The bucket owner has this permission by\n * default. The bucket owner can grant this permission to others. For more information about\n * permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

For information about CloudWatch request metrics for Amazon S3, see Monitoring Metrics with Amazon\n * CloudWatch.

\n *\n *

The following operations are related to\n * GetBucketMetricsConfiguration:

\n * \n */\nvar GetBucketMetricsConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketMetricsConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketMetricsConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketMetricsConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketMetricsConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketMetricsConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketMetricsConfigurationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketMetricsConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketMetricsConfigurationCommand\"])(input, context);\n };\n GetBucketMetricsConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketMetricsConfigurationCommand\"])(output, context);\n };\n return GetBucketMetricsConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketMetricsConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketMetricsConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketNotificationConfigurationCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketNotificationConfigurationCommand.js ***! \*******************************************************************************************************/ /*! exports provided: GetBucketNotificationConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketNotificationConfigurationCommand\", function() { return GetBucketNotificationConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the notification configuration of a bucket.

\n *

If notifications are not enabled on the bucket, the operation returns an empty\n * NotificationConfiguration element.

\n *\n *

By default, you must be the bucket owner to read the notification configuration of a\n * bucket. However, the bucket owner can use a bucket policy to grant permission to other\n * users to read this configuration with the s3:GetBucketNotification\n * permission.

\n *\n *

For more information about setting and reading the notification configuration on a\n * bucket, see Setting Up Notification of\n * Bucket Events. For more information about bucket policies, see Using Bucket Policies.

\n *\n *

The following operation is related to GetBucketNotification:

\n * \n */\nvar GetBucketNotificationConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketNotificationConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketNotificationConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketNotificationConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketNotificationConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketNotificationConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"NotificationConfiguration\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketNotificationConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketNotificationConfigurationCommand\"])(input, context);\n };\n GetBucketNotificationConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketNotificationConfigurationCommand\"])(output, context);\n };\n return GetBucketNotificationConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketNotificationConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketNotificationConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketOwnershipControlsCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketOwnershipControlsCommand.js ***! \***********************************************************************************************/ /*! exports provided: GetBucketOwnershipControlsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketOwnershipControlsCommand\", function() { return GetBucketOwnershipControlsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Retrieves OwnershipControls for an Amazon S3 bucket. To use this operation, you\n * must have the s3:GetBucketOwnershipControls permission. For more information\n * about Amazon S3 permissions, see Specifying\n * Permissions in a Policy.

\n *

For information about Amazon S3 Object Ownership, see Using Object Ownership.

\n *

The following operations are related to GetBucketOwnershipControls:

\n * \n */\nvar GetBucketOwnershipControlsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketOwnershipControlsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketOwnershipControlsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketOwnershipControlsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketOwnershipControlsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketOwnershipControlsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketOwnershipControlsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketOwnershipControlsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketOwnershipControlsCommand\"])(input, context);\n };\n GetBucketOwnershipControlsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketOwnershipControlsCommand\"])(output, context);\n };\n return GetBucketOwnershipControlsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketOwnershipControlsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketOwnershipControlsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyCommand.js ***! \************************************************************************************/ /*! exports provided: GetBucketPolicyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyCommand\", function() { return GetBucketPolicyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the policy of a specified bucket. If you are using an identity other than the\n * root user of the AWS account that owns the bucket, the calling identity must have the\n * GetBucketPolicy permissions on the specified bucket and belong to the\n * bucket owner's account in order to use this operation.

\n *\n *

If you don't have GetBucketPolicy permissions, Amazon S3 returns a 403\n * Access Denied error. If you have the correct permissions, but you're not using an\n * identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not\n * Allowed error.

\n *\n * \n *

As a security precaution, the root user of the AWS account that owns a bucket can\n * always use this operation, even if the policy explicitly denies the root user the\n * ability to perform this action.

\n *
\n *\n *

For more information about bucket policies, see Using Bucket Policies and User\n * Policies.

\n *\n *

The following operation is related to GetBucketPolicy:

\n * \n */\nvar GetBucketPolicyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketPolicyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketPolicyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketPolicyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketPolicyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketPolicyOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketPolicyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketPolicyCommand\"])(input, context);\n };\n GetBucketPolicyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketPolicyCommand\"])(output, context);\n };\n return GetBucketPolicyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketPolicyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyStatusCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyStatusCommand.js ***! \******************************************************************************************/ /*! exports provided: GetBucketPolicyStatusCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyStatusCommand\", function() { return GetBucketPolicyStatusCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Retrieves the policy status for an Amazon S3 bucket, indicating whether the bucket is public.\n * In order to use this operation, you must have the s3:GetBucketPolicyStatus\n * permission. For more information about Amazon S3 permissions, see Specifying Permissions in a\n * Policy.

\n *\n *

For more information about when Amazon S3 considers a bucket public, see The Meaning of \"Public\".

\n *\n *

The following operations are related to GetBucketPolicyStatus:

\n * \n */\nvar GetBucketPolicyStatusCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketPolicyStatusCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketPolicyStatusCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketPolicyStatusCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketPolicyStatusCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketPolicyStatusRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketPolicyStatusOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketPolicyStatusCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketPolicyStatusCommand\"])(input, context);\n };\n GetBucketPolicyStatusCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketPolicyStatusCommand\"])(output, context);\n };\n return GetBucketPolicyStatusCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketPolicyStatusCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyStatusCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketReplicationCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketReplicationCommand.js ***! \*****************************************************************************************/ /*! exports provided: GetBucketReplicationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketReplicationCommand\", function() { return GetBucketReplicationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the replication configuration of a bucket.

\n * \n *

It can take a while to propagate the put or delete a replication configuration to\n * all Amazon S3 systems. Therefore, a get request soon after put or delete can return a wrong\n * result.

\n *
\n *

For information about replication configuration, see Replication in the\n * Amazon Simple Storage Service Developer Guide.

\n *\n *

This operation requires permissions for the s3:GetReplicationConfiguration\n * action. For more information about permissions, see Using Bucket Policies and User\n * Policies.

\n *\n *

If you include the Filter element in a replication configuration, you must\n * also include the DeleteMarkerReplication and Priority elements.\n * The response also returns those elements.

\n *\n *

For information about GetBucketReplication errors, see List of\n * replication-related error codes\n *

\n *\n *\n *

The following operations are related to GetBucketReplication:

\n * \n */\nvar GetBucketReplicationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketReplicationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketReplicationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketReplicationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketReplicationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketReplicationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketReplicationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketReplicationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketReplicationCommand\"])(input, context);\n };\n GetBucketReplicationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketReplicationCommand\"])(output, context);\n };\n return GetBucketReplicationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketReplicationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketReplicationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketRequestPaymentCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketRequestPaymentCommand.js ***! \********************************************************************************************/ /*! exports provided: GetBucketRequestPaymentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketRequestPaymentCommand\", function() { return GetBucketRequestPaymentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the request payment configuration of a bucket. To use this version of the\n * operation, you must be the bucket owner. For more information, see Requester Pays Buckets.

\n *\n *

The following operations are related to GetBucketRequestPayment:

\n * \n */\nvar GetBucketRequestPaymentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketRequestPaymentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketRequestPaymentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketRequestPaymentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketRequestPaymentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketRequestPaymentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketRequestPaymentOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketRequestPaymentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketRequestPaymentCommand\"])(input, context);\n };\n GetBucketRequestPaymentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketRequestPaymentCommand\"])(output, context);\n };\n return GetBucketRequestPaymentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketRequestPaymentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketRequestPaymentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketTaggingCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketTaggingCommand.js ***! \*************************************************************************************/ /*! exports provided: GetBucketTaggingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketTaggingCommand\", function() { return GetBucketTaggingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the tag set associated with the bucket.

\n *

To use this operation, you must have permission to perform the\n * s3:GetBucketTagging action. By default, the bucket owner has this\n * permission and can grant this permission to others.

\n *\n *

\n * GetBucketTagging has the following special error:

\n *
    \n *
  • \n *

    Error code: NoSuchTagSetError\n *

    \n *
      \n *
    • \n *

      Description: There is no tag set associated with the bucket.

      \n *
    • \n *
    \n *
  • \n *
\n *\n *

The following operations are related to GetBucketTagging:

\n * \n */\nvar GetBucketTaggingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketTaggingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketTaggingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketTaggingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketTaggingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketTaggingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketTaggingOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketTaggingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketTaggingCommand\"])(input, context);\n };\n GetBucketTaggingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketTaggingCommand\"])(output, context);\n };\n return GetBucketTaggingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketTaggingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketTaggingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketVersioningCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketVersioningCommand.js ***! \****************************************************************************************/ /*! exports provided: GetBucketVersioningCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketVersioningCommand\", function() { return GetBucketVersioningCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the versioning state of a bucket.

\n *

To retrieve the versioning state of a bucket, you must be the bucket owner.

\n *\n *

This implementation also returns the MFA Delete status of the versioning state. If the\n * MFA Delete status is enabled, the bucket owner must use an authentication\n * device to change the versioning state of the bucket.

\n *\n *

The following operations are related to GetBucketVersioning:

\n * \n */\nvar GetBucketVersioningCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketVersioningCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketVersioningCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketVersioningCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketVersioningCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketVersioningRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketVersioningOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketVersioningCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketVersioningCommand\"])(input, context);\n };\n GetBucketVersioningCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketVersioningCommand\"])(output, context);\n };\n return GetBucketVersioningCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketVersioningCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketVersioningCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketWebsiteCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketWebsiteCommand.js ***! \*************************************************************************************/ /*! exports provided: GetBucketWebsiteCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketWebsiteCommand\", function() { return GetBucketWebsiteCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the website configuration for a bucket. To host website on Amazon S3, you can\n * configure a bucket as website by adding a website configuration. For more information about\n * hosting websites, see Hosting Websites on\n * Amazon S3.

\n *

This GET operation requires the S3:GetBucketWebsite permission. By default,\n * only the bucket owner can read the bucket website configuration. However, bucket owners can\n * allow other users to read the website configuration by writing a bucket policy granting\n * them the S3:GetBucketWebsite permission.

\n *

The following operations are related to DeleteBucketWebsite:

\n * \n */\nvar GetBucketWebsiteCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetBucketWebsiteCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetBucketWebsiteCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetBucketWebsiteCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetBucketWebsiteCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketWebsiteRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetBucketWebsiteOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetBucketWebsiteCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetBucketWebsiteCommand\"])(input, context);\n };\n GetBucketWebsiteCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetBucketWebsiteCommand\"])(output, context);\n };\n return GetBucketWebsiteCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetBucketWebsiteCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketWebsiteCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectAclCommand.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectAclCommand.js ***! \*********************************************************************************/ /*! exports provided: GetObjectAclCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectAclCommand\", function() { return GetObjectAclCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the access control list (ACL) of an object. To use this operation, you must have\n * READ_ACP access to the object.

\n *

This action is not supported by Amazon S3 on Outposts.

\n *

\n * Versioning\n *

\n *

By default, GET returns ACL information about the current version of an object. To\n * return ACL information about a different version, use the versionId subresource.

\n *\n *

The following operations are related to GetObjectAcl:

\n * \n */\nvar GetObjectAclCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetObjectAclCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetObjectAclCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetObjectAclCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetObjectAclCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectAclRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectAclOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetObjectAclCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetObjectAclCommand\"])(input, context);\n };\n GetObjectAclCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetObjectAclCommand\"])(output, context);\n };\n return GetObjectAclCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetObjectAclCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectAclCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectCommand.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectCommand.js ***! \******************************************************************************/ /*! exports provided: GetObjectCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectCommand\", function() { return GetObjectCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-ssec */ \"./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Retrieves objects from Amazon S3. To use GET, you must have READ\n * access to the object. If you grant READ access to the anonymous user, you can\n * return the object without using an authorization header.

\n *\n *

An Amazon S3 bucket has no directory hierarchy such as you would find in a typical computer\n * file system. You can, however, create a logical hierarchy by using object key names that\n * imply a folder structure. For example, instead of naming an object sample.jpg,\n * you can name it photos/2006/February/sample.jpg.

\n *\n *

To get an object from such a logical hierarchy, specify the full key name for the object\n * in the GET operation. For a virtual hosted-style request example, if you have\n * the object photos/2006/February/sample.jpg, specify the resource as\n * /photos/2006/February/sample.jpg. For a path-style request example, if you\n * have the object photos/2006/February/sample.jpg in the bucket named\n * examplebucket, specify the resource as\n * /examplebucket/photos/2006/February/sample.jpg. For more information about\n * request types, see HTTP Host Header Bucket Specification.

\n *\n *

To distribute large files to many people, you can save bandwidth costs by using\n * BitTorrent. For more information, see Amazon S3\n * Torrent. For more information about returning the ACL of an object, see GetObjectAcl.

\n *\n *

If the object you are retrieving is stored in the S3 Glacier or\n * S3 Glacier Deep Archive storage class, or S3 Intelligent-Tiering Archive or\n * S3 Intelligent-Tiering Deep Archive tiers, before you can retrieve the object you must first restore a\n * copy using RestoreObject. Otherwise, this operation returns an\n * InvalidObjectStateError error. For information about restoring archived\n * objects, see Restoring Archived\n * Objects.

\n *\n *

Encryption request headers, like x-amz-server-side-encryption, should not\n * be sent for GET requests if your object uses server-side encryption with CMKs stored in AWS\n * KMS (SSE-KMS) or server-side encryption with Amazon S3–managed encryption keys (SSE-S3). If your\n * object does use these types of keys, you’ll get an HTTP 400 BadRequest error.

\n *

If you encrypt an object by using server-side encryption with customer-provided\n * encryption keys (SSE-C) when you store the object in Amazon S3, then when you GET the object,\n * you must use the following headers:

\n *
    \n *
  • \n *

    x-amz-server-side-encryption-customer-algorithm

    \n *
  • \n *
  • \n *

    x-amz-server-side-encryption-customer-key

    \n *
  • \n *
  • \n *

    x-amz-server-side-encryption-customer-key-MD5

    \n *
  • \n *
\n *

For more information about SSE-C, see Server-Side Encryption (Using\n * Customer-Provided Encryption Keys).

\n *\n *

Assuming you have permission to read object tags (permission for the\n * s3:GetObjectVersionTagging action), the response also returns the\n * x-amz-tagging-count header that provides the count of number of tags\n * associated with the object. You can use GetObjectTagging to retrieve\n * the tag set associated with an object.

\n *\n *

\n * Permissions\n *

\n *

You need the s3:GetObject permission for this operation. For more\n * information, see Specifying Permissions\n * in a Policy. If the object you request does not exist, the error Amazon S3 returns\n * depends on whether you also have the s3:ListBucket permission.

\n *
    \n *
  • \n *

    If you have the s3:ListBucket permission on the bucket, Amazon S3 will\n * return an HTTP status code 404 (\"no such key\") error.

    \n *
  • \n *
  • \n *

    If you don’t have the s3:ListBucket permission, Amazon S3 will return an\n * HTTP status code 403 (\"access denied\") error.

    \n *
  • \n *
\n *\n *\n *

\n * Versioning\n *

\n *

By default, the GET operation returns the current version of an object. To return a\n * different version, use the versionId subresource.

\n *\n * \n *

If the current version of the object is a delete marker, Amazon S3 behaves as if the\n * object was deleted and includes x-amz-delete-marker: true in the\n * response.

\n *
\n *\n *\n *

For more information about versioning, see PutBucketVersioning.

\n *\n *

\n * Overriding Response Header Values\n *

\n *

There are times when you want to override certain response header values in a GET\n * response. For example, you might override the Content-Disposition response header value in\n * your GET request.

\n *\n *

You can override values for a set of response headers using the following query\n * parameters. These response header values are sent only on a successful request, that is,\n * when status code 200 OK is returned. The set of headers you can override using these\n * parameters is a subset of the headers that Amazon S3 accepts when you create an object. The\n * response headers that you can override for the GET response are Content-Type,\n * Content-Language, Expires, Cache-Control,\n * Content-Disposition, and Content-Encoding. To override these\n * header values in the GET response, you use the following request parameters.

\n *\n * \n *

You must sign the request, either using an Authorization header or a presigned URL,\n * when using these parameters. They cannot be used with an unsigned (anonymous)\n * request.

\n *
\n *
    \n *
  • \n *

    \n * response-content-type\n *

    \n *
  • \n *
  • \n *

    \n * response-content-language\n *

    \n *
  • \n *
  • \n *

    \n * response-expires\n *

    \n *
  • \n *
  • \n *

    \n * response-cache-control\n *

    \n *
  • \n *
  • \n *

    \n * response-content-disposition\n *

    \n *
  • \n *
  • \n *

    \n * response-content-encoding\n *

    \n *
  • \n *
\n *\n *

\n * Additional Considerations about Request Headers\n *

\n *\n *

If both of the If-Match and If-Unmodified-Since headers are\n * present in the request as follows: If-Match condition evaluates to\n * true, and; If-Unmodified-Since condition evaluates to\n * false; then, S3 returns 200 OK and the data requested.

\n *\n *

If both of the If-None-Match and If-Modified-Since headers are\n * present in the request as follows: If-None-Match condition evaluates to\n * false, and; If-Modified-Since condition evaluates to\n * true; then, S3 returns 304 Not Modified response code.

\n *\n *

For more information about conditional requests, see RFC 7232.

\n *\n *

The following operations are related to GetObject:

\n * \n */\nvar GetObjectCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetObjectCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetObjectCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetObjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__[\"getSsecPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetObjectCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetObjectCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetObjectCommand\"])(input, context);\n };\n GetObjectCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetObjectCommand\"])(output, context);\n };\n return GetObjectCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=GetObjectCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLegalHoldCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLegalHoldCommand.js ***! \***************************************************************************************/ /*! exports provided: GetObjectLegalHoldCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLegalHoldCommand\", function() { return GetObjectLegalHoldCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Gets an object's current Legal Hold status. For more information, see Locking Objects.

\n *

This action is not supported by Amazon S3 on Outposts.

\n */\nvar GetObjectLegalHoldCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetObjectLegalHoldCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetObjectLegalHoldCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetObjectLegalHoldCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetObjectLegalHoldCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectLegalHoldRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectLegalHoldOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetObjectLegalHoldCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetObjectLegalHoldCommand\"])(input, context);\n };\n GetObjectLegalHoldCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetObjectLegalHoldCommand\"])(output, context);\n };\n return GetObjectLegalHoldCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetObjectLegalHoldCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLegalHoldCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLockConfigurationCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLockConfigurationCommand.js ***! \***********************************************************************************************/ /*! exports provided: GetObjectLockConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLockConfigurationCommand\", function() { return GetObjectLockConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Gets the Object Lock configuration for a bucket. The rule specified in the Object Lock\n * configuration will be applied by default to every new object placed in the specified\n * bucket. For more information, see Locking\n * Objects.

\n */\nvar GetObjectLockConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetObjectLockConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetObjectLockConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetObjectLockConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetObjectLockConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectLockConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectLockConfigurationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetObjectLockConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetObjectLockConfigurationCommand\"])(input, context);\n };\n GetObjectLockConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetObjectLockConfigurationCommand\"])(output, context);\n };\n return GetObjectLockConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetObjectLockConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLockConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectRetentionCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectRetentionCommand.js ***! \***************************************************************************************/ /*! exports provided: GetObjectRetentionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRetentionCommand\", function() { return GetObjectRetentionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Retrieves an object's retention settings. For more information, see Locking Objects.

\n *

This action is not supported by Amazon S3 on Outposts.

\n */\nvar GetObjectRetentionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetObjectRetentionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetObjectRetentionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetObjectRetentionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetObjectRetentionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectRetentionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectRetentionOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetObjectRetentionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetObjectRetentionCommand\"])(input, context);\n };\n GetObjectRetentionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetObjectRetentionCommand\"])(output, context);\n };\n return GetObjectRetentionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetObjectRetentionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectRetentionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTaggingCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTaggingCommand.js ***! \*************************************************************************************/ /*! exports provided: GetObjectTaggingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTaggingCommand\", function() { return GetObjectTaggingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns the tag-set of an object. You send the GET request against the tagging\n * subresource associated with the object.

\n *\n *

To use this operation, you must have permission to perform the\n * s3:GetObjectTagging action. By default, the GET operation returns\n * information about current version of an object. For a versioned bucket, you can have\n * multiple versions of an object in your bucket. To retrieve tags of any other version, use\n * the versionId query parameter. You also need permission for the\n * s3:GetObjectVersionTagging action.

\n *\n *

By default, the bucket owner has this permission and can grant this permission to\n * others.

\n *\n *

For information about the Amazon S3 object tagging feature, see Object Tagging.

\n *\n *

The following operation is related to GetObjectTagging:

\n * \n */\nvar GetObjectTaggingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetObjectTaggingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetObjectTaggingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetObjectTaggingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetObjectTaggingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectTaggingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectTaggingOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetObjectTaggingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetObjectTaggingCommand\"])(input, context);\n };\n GetObjectTaggingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetObjectTaggingCommand\"])(output, context);\n };\n return GetObjectTaggingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetObjectTaggingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTaggingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTorrentCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTorrentCommand.js ***! \*************************************************************************************/ /*! exports provided: GetObjectTorrentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTorrentCommand\", function() { return GetObjectTorrentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns torrent files from a bucket. BitTorrent can save you bandwidth when you're\n * distributing large files. For more information about BitTorrent, see Using BitTorrent with Amazon S3.

\n * \n *

You can get torrent only for objects that are less than 5 GB in size, and that are\n * not encrypted using server-side encryption with a customer-provided encryption\n * key.

\n *
\n *

To use GET, you must have READ access to the object.

\n *

This action is not supported by Amazon S3 on Outposts.

\n *

The following operation is related to GetObjectTorrent:

\n * \n */\nvar GetObjectTorrentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetObjectTorrentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetObjectTorrentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetObjectTorrentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetObjectTorrentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectTorrentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetObjectTorrentOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetObjectTorrentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetObjectTorrentCommand\"])(input, context);\n };\n GetObjectTorrentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetObjectTorrentCommand\"])(output, context);\n };\n return GetObjectTorrentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetObjectTorrentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTorrentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/GetPublicAccessBlockCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/GetPublicAccessBlockCommand.js ***! \*****************************************************************************************/ /*! exports provided: GetPublicAccessBlockCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPublicAccessBlockCommand\", function() { return GetPublicAccessBlockCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Retrieves the PublicAccessBlock configuration for an Amazon S3 bucket. To use\n * this operation, you must have the s3:GetBucketPublicAccessBlock permission.\n * For more information about Amazon S3 permissions, see Specifying Permissions in a\n * Policy.

\n *\n * \n *

When Amazon S3 evaluates the PublicAccessBlock configuration for a bucket or\n * an object, it checks the PublicAccessBlock configuration for both the\n * bucket (or the bucket that contains the object) and the bucket owner's account. If the\n * PublicAccessBlock settings are different between the bucket and the\n * account, Amazon S3 uses the most restrictive combination of the bucket-level and\n * account-level settings.

\n *
\n *\n *

For more information about when Amazon S3 considers a bucket or an object public, see The Meaning of \"Public\".

\n *\n *

The following operations are related to GetPublicAccessBlock:

\n * \n */\nvar GetPublicAccessBlockCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetPublicAccessBlockCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetPublicAccessBlockCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetPublicAccessBlockCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"GetPublicAccessBlockCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetPublicAccessBlockRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetPublicAccessBlockOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetPublicAccessBlockCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlGetPublicAccessBlockCommand\"])(input, context);\n };\n GetPublicAccessBlockCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlGetPublicAccessBlockCommand\"])(output, context);\n };\n return GetPublicAccessBlockCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=GetPublicAccessBlockCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/GetPublicAccessBlockCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadBucketCommand.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadBucketCommand.js ***! \*******************************************************************************/ /*! exports provided: HeadBucketCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HeadBucketCommand\", function() { return HeadBucketCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This operation is useful to determine if a bucket exists and you have permission to\n * access it. The operation returns a 200 OK if the bucket exists and you have\n * permission to access it. Otherwise, the operation might return responses such as 404\n * Not Found and 403 Forbidden.

\n *\n *

To use this operation, you must have permissions to perform the\n * s3:ListBucket action. The bucket owner has this permission by default and\n * can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n */\nvar HeadBucketCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(HeadBucketCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function HeadBucketCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n HeadBucketCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"HeadBucketCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"HeadBucketRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n HeadBucketCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlHeadBucketCommand\"])(input, context);\n };\n HeadBucketCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlHeadBucketCommand\"])(output, context);\n };\n return HeadBucketCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=HeadBucketCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadBucketCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadObjectCommand.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadObjectCommand.js ***! \*******************************************************************************/ /*! exports provided: HeadObjectCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HeadObjectCommand\", function() { return HeadObjectCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-ssec */ \"./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

The HEAD operation retrieves metadata from an object without returning the object\n * itself. This operation is useful if you're only interested in an object's metadata. To use\n * HEAD, you must have READ access to the object.

\n *\n *

A HEAD request has the same options as a GET operation on an\n * object. The response is identical to the GET response except that there is no\n * response body.

\n *\n *

If you encrypt an object by using server-side encryption with customer-provided\n * encryption keys (SSE-C) when you store the object in Amazon S3, then when you retrieve the\n * metadata from the object, you must use the following headers:

\n *
    \n *
  • \n *

    x-amz-server-side-encryption-customer-algorithm

    \n *
  • \n *
  • \n *

    x-amz-server-side-encryption-customer-key

    \n *
  • \n *
  • \n *

    x-amz-server-side-encryption-customer-key-MD5

    \n *
  • \n *
\n *

For more information about SSE-C, see Server-Side Encryption (Using\n * Customer-Provided Encryption Keys).

\n * \n *

Encryption request headers, like x-amz-server-side-encryption, should\n * not be sent for GET requests if your object uses server-side encryption with CMKs stored\n * in AWS KMS (SSE-KMS) or server-side encryption with Amazon S3–managed encryption keys\n * (SSE-S3). If your object does use these types of keys, you’ll get an HTTP 400 BadRequest\n * error.

\n *
\n *\n *\n *\n *\n *\n *\n *\n *

Request headers are limited to 8 KB in size. For more information, see Common Request\n * Headers.

\n *

Consider the following when using request headers:

\n *
    \n *
  • \n *

    Consideration 1 – If both of the If-Match and\n * If-Unmodified-Since headers are present in the request as\n * follows:

    \n *
      \n *
    • \n *

      \n * If-Match condition evaluates to true, and;

      \n *
    • \n *
    • \n *

      \n * If-Unmodified-Since condition evaluates to\n * false;

      \n *
    • \n *
    \n *

    Then Amazon S3 returns 200 OK and the data requested.

    \n *
  • \n *
  • \n *

    Consideration 2 – If both of the If-None-Match and\n * If-Modified-Since headers are present in the request as\n * follows:

    \n *
      \n *
    • \n *

      \n * If-None-Match condition evaluates to false,\n * and;

      \n *
    • \n *
    • \n *

      \n * If-Modified-Since condition evaluates to\n * true;

      \n *
    • \n *
    \n *

    Then Amazon S3 returns the 304 Not Modified response code.

    \n *
  • \n *
\n *\n *

For more information about conditional requests, see RFC 7232.

\n *\n *

\n * Permissions\n *

\n *

You need the s3:GetObject permission for this operation. For more\n * information, see Specifying Permissions\n * in a Policy. If the object you request does not exist, the error Amazon S3 returns\n * depends on whether you also have the s3:ListBucket permission.

\n *
    \n *
  • \n *

    If you have the s3:ListBucket permission on the bucket, Amazon S3 returns\n * an HTTP status code 404 (\"no such key\") error.

    \n *
  • \n *
  • \n *

    If you don’t have the s3:ListBucket permission, Amazon S3 returns an HTTP\n * status code 403 (\"access denied\") error.

    \n *
  • \n *
\n *\n *

The following operation is related to HeadObject:

\n * \n */\nvar HeadObjectCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(HeadObjectCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function HeadObjectCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n HeadObjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__[\"getSsecPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"HeadObjectCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"HeadObjectRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"HeadObjectOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n HeadObjectCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlHeadObjectCommand\"])(input, context);\n };\n HeadObjectCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlHeadObjectCommand\"])(output, context);\n };\n return HeadObjectCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=HeadObjectCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadObjectCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketAnalyticsConfigurationsCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketAnalyticsConfigurationsCommand.js ***! \******************************************************************************************************/ /*! exports provided: ListBucketAnalyticsConfigurationsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketAnalyticsConfigurationsCommand\", function() { return ListBucketAnalyticsConfigurationsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Lists the analytics configurations for the bucket. You can have up to 1,000 analytics\n * configurations per bucket.

\n *\n *

This operation supports list pagination and does not return more than 100 configurations\n * at a time. You should always check the IsTruncated element in the response. If\n * there are no more configurations to list, IsTruncated is set to false. If\n * there are more configurations to list, IsTruncated is set to true, and there\n * will be a value in NextContinuationToken. You use the\n * NextContinuationToken value to continue the pagination of the list by\n * passing the value in continuation-token in the request to GET the next\n * page.

\n *\n *

To use this operation, you must have permissions to perform the\n * s3:GetAnalyticsConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

For information about Amazon S3 analytics feature, see Amazon S3 Analytics – Storage Class\n * Analysis.

\n *\n *

The following operations are related to\n * ListBucketAnalyticsConfigurations:

\n * \n */\nvar ListBucketAnalyticsConfigurationsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListBucketAnalyticsConfigurationsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListBucketAnalyticsConfigurationsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListBucketAnalyticsConfigurationsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListBucketAnalyticsConfigurationsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListBucketAnalyticsConfigurationsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListBucketAnalyticsConfigurationsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListBucketAnalyticsConfigurationsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListBucketAnalyticsConfigurationsCommand\"])(input, context);\n };\n ListBucketAnalyticsConfigurationsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListBucketAnalyticsConfigurationsCommand\"])(output, context);\n };\n return ListBucketAnalyticsConfigurationsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListBucketAnalyticsConfigurationsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketAnalyticsConfigurationsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketIntelligentTieringConfigurationsCommand.js": /*!***************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketIntelligentTieringConfigurationsCommand.js ***! \***************************************************************************************************************/ /*! exports provided: ListBucketIntelligentTieringConfigurationsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketIntelligentTieringConfigurationsCommand\", function() { return ListBucketIntelligentTieringConfigurationsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Lists the S3 Intelligent-Tiering configuration from the specified bucket.

\n *

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead. S3 Intelligent-Tiering delivers automatic cost savings by moving data between access tiers, when access patterns change.

\n *

The S3 Intelligent-Tiering storage class is suitable for objects larger than 128 KB that you plan to store for at least 30 days. If the size of an object is less than 128 KB, it is not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the frequent access tier rates in the S3 Intelligent-Tiering storage class.

\n *

If you delete an object before the end of the 30-day minimum storage duration period, you are charged for 30 days. For more information, see Storage class for automatically optimizing frequently and infrequently accessed objects.

\n *

Operations related to\n * ListBucketIntelligentTieringConfigurations include:

\n * \n */\nvar ListBucketIntelligentTieringConfigurationsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListBucketIntelligentTieringConfigurationsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListBucketIntelligentTieringConfigurationsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListBucketIntelligentTieringConfigurationsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListBucketIntelligentTieringConfigurationsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListBucketIntelligentTieringConfigurationsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListBucketIntelligentTieringConfigurationsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListBucketIntelligentTieringConfigurationsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand\"])(input, context);\n };\n ListBucketIntelligentTieringConfigurationsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand\"])(output, context);\n };\n return ListBucketIntelligentTieringConfigurationsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListBucketIntelligentTieringConfigurationsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketIntelligentTieringConfigurationsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketInventoryConfigurationsCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketInventoryConfigurationsCommand.js ***! \******************************************************************************************************/ /*! exports provided: ListBucketInventoryConfigurationsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketInventoryConfigurationsCommand\", function() { return ListBucketInventoryConfigurationsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns a list of inventory configurations for the bucket. You can have up to 1,000\n * analytics configurations per bucket.

\n *\n *

This operation supports list pagination and does not return more than 100 configurations\n * at a time. Always check the IsTruncated element in the response. If there are\n * no more configurations to list, IsTruncated is set to false. If there are more\n * configurations to list, IsTruncated is set to true, and there is a value in\n * NextContinuationToken. You use the NextContinuationToken value\n * to continue the pagination of the list by passing the value in continuation-token in the\n * request to GET the next page.

\n *\n *

To use this operation, you must have permissions to perform the\n * s3:GetInventoryConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

For information about the Amazon S3 inventory feature, see Amazon S3 Inventory\n *

\n *\n *

The following operations are related to\n * ListBucketInventoryConfigurations:

\n * \n */\nvar ListBucketInventoryConfigurationsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListBucketInventoryConfigurationsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListBucketInventoryConfigurationsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListBucketInventoryConfigurationsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListBucketInventoryConfigurationsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListBucketInventoryConfigurationsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListBucketInventoryConfigurationsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListBucketInventoryConfigurationsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListBucketInventoryConfigurationsCommand\"])(input, context);\n };\n ListBucketInventoryConfigurationsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListBucketInventoryConfigurationsCommand\"])(output, context);\n };\n return ListBucketInventoryConfigurationsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListBucketInventoryConfigurationsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketInventoryConfigurationsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketMetricsConfigurationsCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketMetricsConfigurationsCommand.js ***! \****************************************************************************************************/ /*! exports provided: ListBucketMetricsConfigurationsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketMetricsConfigurationsCommand\", function() { return ListBucketMetricsConfigurationsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Lists the metrics configurations for the bucket. The metrics configurations are only for\n * the request metrics of the bucket and do not provide information on daily storage metrics.\n * You can have up to 1,000 configurations per bucket.

\n *\n *

This operation supports list pagination and does not return more than 100 configurations\n * at a time. Always check the IsTruncated element in the response. If there are\n * no more configurations to list, IsTruncated is set to false. If there are more\n * configurations to list, IsTruncated is set to true, and there is a value in\n * NextContinuationToken. You use the NextContinuationToken value\n * to continue the pagination of the list by passing the value in\n * continuation-token in the request to GET the next page.

\n *\n *

To use this operation, you must have permissions to perform the\n * s3:GetMetricsConfiguration action. The bucket owner has this permission by\n * default. The bucket owner can grant this permission to others. For more information about\n * permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

For more information about metrics configurations and CloudWatch request metrics, see\n * Monitoring Metrics with Amazon\n * CloudWatch.

\n *\n *

The following operations are related to\n * ListBucketMetricsConfigurations:

\n * \n */\nvar ListBucketMetricsConfigurationsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListBucketMetricsConfigurationsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListBucketMetricsConfigurationsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListBucketMetricsConfigurationsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListBucketMetricsConfigurationsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListBucketMetricsConfigurationsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListBucketMetricsConfigurationsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListBucketMetricsConfigurationsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListBucketMetricsConfigurationsCommand\"])(input, context);\n };\n ListBucketMetricsConfigurationsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListBucketMetricsConfigurationsCommand\"])(output, context);\n };\n return ListBucketMetricsConfigurationsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListBucketMetricsConfigurationsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketMetricsConfigurationsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketsCommand.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketsCommand.js ***! \********************************************************************************/ /*! exports provided: ListBucketsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketsCommand\", function() { return ListBucketsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Returns a list of all buckets owned by the authenticated sender of the request.

\n */\nvar ListBucketsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListBucketsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListBucketsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListBucketsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListBucketsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: function (input) { return input; },\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListBucketsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListBucketsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListBucketsCommand\"])(input, context);\n };\n ListBucketsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListBucketsCommand\"])(output, context);\n };\n return ListBucketsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListBucketsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListMultipartUploadsCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListMultipartUploadsCommand.js ***! \*****************************************************************************************/ /*! exports provided: ListMultipartUploadsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListMultipartUploadsCommand\", function() { return ListMultipartUploadsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This operation lists in-progress multipart uploads. An in-progress multipart upload is a\n * multipart upload that has been initiated using the Initiate Multipart Upload request, but\n * has not yet been completed or aborted.

\n *\n *

This operation returns at most 1,000 multipart uploads in the response. 1,000 multipart\n * uploads is the maximum number of uploads a response can include, which is also the default\n * value. You can further limit the number of uploads in a response by specifying the\n * max-uploads parameter in the response. If additional multipart uploads\n * satisfy the list criteria, the response will contain an IsTruncated element\n * with the value true. To list the additional multipart uploads, use the\n * key-marker and upload-id-marker request parameters.

\n *\n *

In the response, the uploads are sorted by key. If your application has initiated more\n * than one multipart upload using the same object key, then uploads in the response are first\n * sorted by key. Additionally, uploads are sorted in ascending order within each key by the\n * upload initiation time.

\n *\n *

For more information on multipart uploads, see Uploading Objects Using Multipart\n * Upload.

\n *\n *

For information on permissions required to use the multipart upload API, see Multipart Upload API and\n * Permissions.

\n *\n *

The following operations are related to ListMultipartUploads:

\n * \n */\nvar ListMultipartUploadsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListMultipartUploadsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListMultipartUploadsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListMultipartUploadsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListMultipartUploadsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListMultipartUploadsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListMultipartUploadsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListMultipartUploadsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListMultipartUploadsCommand\"])(input, context);\n };\n ListMultipartUploadsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListMultipartUploadsCommand\"])(output, context);\n };\n return ListMultipartUploadsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListMultipartUploadsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListMultipartUploadsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectVersionsCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectVersionsCommand.js ***! \***************************************************************************************/ /*! exports provided: ListObjectVersionsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListObjectVersionsCommand\", function() { return ListObjectVersionsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns metadata about all versions of the objects in a bucket. You can also use request\n * parameters as selection criteria to return metadata about a subset of all the object\n * versions.

\n * \n *

A 200 OK response can contain valid or invalid XML. Make sure to design your\n * application to parse the contents of the response and handle it appropriately.

\n *
\n *

To use this operation, you must have READ access to the bucket.

\n *

This action is not supported by Amazon S3 on Outposts.

\n *

The following operations are related to\n * ListObjectVersions:

\n * \n */\nvar ListObjectVersionsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListObjectVersionsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListObjectVersionsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListObjectVersionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListObjectVersionsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListObjectVersionsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListObjectVersionsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListObjectVersionsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListObjectVersionsCommand\"])(input, context);\n };\n ListObjectVersionsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListObjectVersionsCommand\"])(output, context);\n };\n return ListObjectVersionsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListObjectVersionsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectVersionsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsCommand.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsCommand.js ***! \********************************************************************************/ /*! exports provided: ListObjectsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsCommand\", function() { return ListObjectsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns some or all (up to 1,000) of the objects in a bucket. You can use the request\n * parameters as selection criteria to return a subset of the objects in a bucket. A 200 OK\n * response can contain valid or invalid XML. Be sure to design your application to parse the\n * contents of the response and handle it appropriately.

\n * \n *

This API has been revised. We recommend that you use the newer version, ListObjectsV2, when developing applications. For backward compatibility,\n * Amazon S3 continues to support ListObjects.

\n *
\n *\n *\n *

The following operations are related to ListObjects:

\n * \n */\nvar ListObjectsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListObjectsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListObjectsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListObjectsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListObjectsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListObjectsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListObjectsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListObjectsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListObjectsCommand\"])(input, context);\n };\n ListObjectsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListObjectsCommand\"])(output, context);\n };\n return ListObjectsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListObjectsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsV2Command.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsV2Command.js ***! \**********************************************************************************/ /*! exports provided: ListObjectsV2Command */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsV2Command\", function() { return ListObjectsV2Command; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Returns some or all (up to 1,000) of the objects in a bucket. You can use the request\n * parameters as selection criteria to return a subset of the objects in a bucket. A 200\n * OK response can contain valid or invalid XML. Make sure to design your\n * application to parse the contents of the response and handle it appropriately.

\n *\n *

To use this operation, you must have READ access to the bucket.

\n *\n *

To use this operation in an AWS Identity and Access Management (IAM) policy, you must\n * have permissions to perform the s3:ListBucket action. The bucket owner has\n * this permission by default and can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n * \n *

This section describes the latest revision of the API. We recommend that you use this\n * revised API for application development. For backward compatibility, Amazon S3 continues to\n * support the prior version of this API, ListObjects.

\n *
\n *\n *

To get a list of your buckets, see ListBuckets.

\n *\n *

The following operations are related to ListObjectsV2:

\n * \n */\nvar ListObjectsV2Command = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListObjectsV2Command, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListObjectsV2Command(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListObjectsV2Command.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListObjectsV2Command\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListObjectsV2Request\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListObjectsV2Output\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListObjectsV2Command.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListObjectsV2Command\"])(input, context);\n };\n ListObjectsV2Command.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListObjectsV2Command\"])(output, context);\n };\n return ListObjectsV2Command;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListObjectsV2Command.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsV2Command.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/ListPartsCommand.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/ListPartsCommand.js ***! \******************************************************************************/ /*! exports provided: ListPartsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPartsCommand\", function() { return ListPartsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Lists the parts that have been uploaded for a specific multipart upload. This operation\n * must include the upload ID, which you obtain by sending the initiate multipart upload\n * request (see CreateMultipartUpload).\n * This request returns a maximum of 1,000 uploaded parts. The default number of parts\n * returned is 1,000 parts. You can restrict the number of parts returned by specifying the\n * max-parts request parameter. If your multipart upload consists of more than\n * 1,000 parts, the response returns an IsTruncated field with the value of true,\n * and a NextPartNumberMarker element. In subsequent ListParts\n * requests you can include the part-number-marker query string parameter and set its value to\n * the NextPartNumberMarker field value from the previous response.

\n *\n *

For more information on multipart uploads, see Uploading Objects Using Multipart\n * Upload.

\n *\n *

For information on permissions required to use the multipart upload API, see Multipart Upload API and\n * Permissions.

\n *\n *

The following operations are related to ListParts:

\n * \n */\nvar ListPartsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListPartsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListPartsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListPartsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"ListPartsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListPartsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListPartsOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListPartsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlListPartsCommand\"])(input, context);\n };\n ListPartsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlListPartsCommand\"])(output, context);\n };\n return ListPartsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=ListPartsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/ListPartsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAccelerateConfigurationCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAccelerateConfigurationCommand.js ***! \*****************************************************************************************************/ /*! exports provided: PutBucketAccelerateConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAccelerateConfigurationCommand\", function() { return PutBucketAccelerateConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Sets the accelerate configuration of an existing bucket. Amazon S3 Transfer Acceleration is a\n * bucket-level feature that enables you to perform faster data transfers to Amazon S3.

\n *\n *

To use this operation, you must have permission to perform the\n * s3:PutAccelerateConfiguration action. The bucket owner has this permission by default. The\n * bucket owner can grant this permission to others. For more information about permissions,\n * see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

The Transfer Acceleration state of a bucket can be set to one of the following two\n * values:

\n *
    \n *
  • \n *

    Enabled – Enables accelerated data transfers to the bucket.

    \n *
  • \n *
  • \n *

    Suspended – Disables accelerated data transfers to the bucket.

    \n *
  • \n *
\n *\n *\n *

The GetBucketAccelerateConfiguration operation returns the transfer acceleration\n * state of a bucket.

\n *\n *

After setting the Transfer Acceleration state of a bucket to Enabled, it might take up\n * to thirty minutes before the data transfer rates to the bucket increase.

\n *\n *

The name of the bucket used for Transfer Acceleration must be DNS-compliant and must\n * not contain periods (\".\").

\n *\n *

For more information about transfer acceleration, see Transfer Acceleration.

\n *\n *

The following operations are related to\n * PutBucketAccelerateConfiguration:

\n * \n */\nvar PutBucketAccelerateConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketAccelerateConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketAccelerateConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketAccelerateConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketAccelerateConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketAccelerateConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketAccelerateConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketAccelerateConfigurationCommand\"])(input, context);\n };\n PutBucketAccelerateConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketAccelerateConfigurationCommand\"])(output, context);\n };\n return PutBucketAccelerateConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketAccelerateConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAccelerateConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAclCommand.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAclCommand.js ***! \*********************************************************************************/ /*! exports provided: PutBucketAclCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAclCommand\", function() { return PutBucketAclCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Sets the permissions on an existing bucket using access control lists (ACL). For more\n * information, see Using ACLs. To set\n * the ACL of a bucket, you must have WRITE_ACP permission.

\n *\n *

You can use one of the following two ways to set a bucket's permissions:

\n *
    \n *
  • \n *

    Specify the ACL in the request body

    \n *
  • \n *
  • \n *

    Specify permissions using request headers

    \n *
  • \n *
\n *\n * \n *

You cannot specify access permission using both the body and the request\n * headers.

\n *
\n *\n *

Depending on your application needs, you may choose to set the ACL on a bucket using\n * either the request body or the headers. For example, if you have an existing application\n * that updates a bucket ACL using the request body, then you can continue to use that\n * approach.

\n *\n *\n *

\n * Access Permissions\n *

\n *

You can set access permissions using one of the following methods:

\n *
    \n *
  • \n *

    Specify a canned ACL with the x-amz-acl request header. Amazon S3 supports\n * a set of predefined ACLs, known as canned ACLs. Each canned ACL\n * has a predefined set of grantees and permissions. Specify the canned ACL name as the\n * value of x-amz-acl. If you use this header, you cannot use other access\n * control-specific headers in your request. For more information, see Canned ACL.

    \n *
  • \n *
  • \n *

    Specify access permissions explicitly with the x-amz-grant-read,\n * x-amz-grant-read-acp, x-amz-grant-write-acp, and\n * x-amz-grant-full-control headers. When using these headers, you\n * specify explicit access permissions and grantees (AWS accounts or Amazon S3 groups) who\n * will receive the permission. If you use these ACL-specific headers, you cannot use\n * the x-amz-acl header to set a canned ACL. These parameters map to the\n * set of permissions that Amazon S3 supports in an ACL. For more information, see Access Control List (ACL)\n * Overview.

    \n *

    You specify each grantee as a type=value pair, where the type is one of the\n * following:

    \n *
      \n *
    • \n *

      \n * id – if the value specified is the canonical user ID of an AWS\n * account

      \n *
    • \n *
    • \n *

      \n * uri – if you are granting permissions to a predefined\n * group

      \n *
    • \n *
    • \n *

      \n * emailAddress – if the value specified is the email address of\n * an AWS account

      \n * \n *

      Using email addresses to specify a grantee is only supported in the following AWS Regions:

      \n *
        \n *
      • \n *

        US East (N. Virginia)

        \n *
      • \n *
      • \n *

        US West (N. California)

        \n *
      • \n *
      • \n *

        US West (Oregon)

        \n *
      • \n *
      • \n *

        Asia Pacific (Singapore)

        \n *
      • \n *
      • \n *

        Asia Pacific (Sydney)

        \n *
      • \n *
      • \n *

        Asia Pacific (Tokyo)

        \n *
      • \n *
      • \n *

        Europe (Ireland)

        \n *
      • \n *
      • \n *

        South America (São Paulo)

        \n *
      • \n *
      \n *

      For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the AWS General Reference.

      \n *
      \n *
    • \n *
    \n *

    For example, the following x-amz-grant-write header grants create,\n * overwrite, and delete objects permission to LogDelivery group predefined by Amazon S3 and\n * two AWS accounts identified by their email addresses.

    \n *

    \n * x-amz-grant-write: uri=\"http://acs.amazonaws.com/groups/s3/LogDelivery\",\n * id=\"111122223333\", id=\"555566667777\" \n *

    \n *\n *
  • \n *
\n *

You can use either a canned ACL or specify access permissions explicitly. You cannot do\n * both.

\n *

\n * Grantee Values\n *

\n *

You can specify the person (grantee) to whom you're assigning access rights (using\n * request elements) in the following ways:

\n *
    \n *
  • \n *

    By the person's ID:

    \n *

    \n * <>ID<><>GranteesEmail<>\n * \n *

    \n *

    DisplayName is optional and ignored in the request

    \n *
  • \n *
  • \n *

    By URI:

    \n *

    \n * <>http://acs.amazonaws.com/groups/global/AuthenticatedUsers<>\n *

    \n *
  • \n *
  • \n *

    By Email address:

    \n *

    \n * <>Grantees@email.com<>lt;/Grantee>\n *

    \n *

    The grantee is resolved to the CanonicalUser and, in a response to a GET Object\n * acl request, appears as the CanonicalUser.

    \n * \n *

    Using email addresses to specify a grantee is only supported in the following AWS Regions:

    \n *
      \n *
    • \n *

      US East (N. Virginia)

      \n *
    • \n *
    • \n *

      US West (N. California)

      \n *
    • \n *
    • \n *

      US West (Oregon)

      \n *
    • \n *
    • \n *

      Asia Pacific (Singapore)

      \n *
    • \n *
    • \n *

      Asia Pacific (Sydney)

      \n *
    • \n *
    • \n *

      Asia Pacific (Tokyo)

      \n *
    • \n *
    • \n *

      Europe (Ireland)

      \n *
    • \n *
    • \n *

      South America (São Paulo)

      \n *
    • \n *
    \n *

    For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the AWS General Reference.

    \n *
    \n *
  • \n *
\n *\n *\n *

\n * Related Resources\n *

\n * \n */\nvar PutBucketAclCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketAclCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketAclCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketAclCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketAclCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketAclRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketAclCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketAclCommand\"])(input, context);\n };\n PutBucketAclCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketAclCommand\"])(output, context);\n };\n return PutBucketAclCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketAclCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAclCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAnalyticsConfigurationCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAnalyticsConfigurationCommand.js ***! \****************************************************************************************************/ /*! exports provided: PutBucketAnalyticsConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAnalyticsConfigurationCommand\", function() { return PutBucketAnalyticsConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Sets an analytics configuration for the bucket (specified by the analytics configuration\n * ID). You can have up to 1,000 analytics configurations per bucket.

\n *\n *

You can choose to have storage class analysis export analysis reports sent to a\n * comma-separated values (CSV) flat file. See the DataExport request element.\n * Reports are updated daily and are based on the object filters that you configure. When\n * selecting data export, you specify a destination bucket and an optional destination prefix\n * where the file is written. You can export the data to a destination bucket in a different\n * account. However, the destination bucket must be in the same Region as the bucket that you\n * are making the PUT analytics configuration to. For more information, see Amazon S3 Analytics – Storage Class\n * Analysis.

\n *\n * \n *

You must create a bucket policy on the destination bucket where the exported file is\n * written to grant permissions to Amazon S3 to write objects to the bucket. For an example\n * policy, see Granting Permissions for Amazon S3 Inventory and Storage Class Analysis.

\n *
\n *\n *

To use this operation, you must have permissions to perform the\n * s3:PutAnalyticsConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *\n *

\n * Special Errors\n *

\n *
    \n *
  • \n *
      \n *
    • \n *

      \n * HTTP Error: HTTP 400 Bad Request\n *

      \n *
    • \n *
    • \n *

      \n * Code: InvalidArgument\n *

      \n *
    • \n *
    • \n *

      \n * Cause: Invalid argument.\n *

      \n *
    • \n *
    \n *
  • \n *
  • \n *
      \n *
    • \n *

      \n * HTTP Error: HTTP 400 Bad Request\n *

      \n *
    • \n *
    • \n *

      \n * Code: TooManyConfigurations\n *

      \n *
    • \n *
    • \n *

      \n * Cause: You are attempting to create a new configuration but have\n * already reached the 1,000-configuration limit.\n *

      \n *
    • \n *
    \n *
  • \n *
  • \n *
      \n *
    • \n *

      \n * HTTP Error: HTTP 403 Forbidden\n *

      \n *
    • \n *
    • \n *

      \n * Code: AccessDenied\n *

      \n *
    • \n *
    • \n *

      \n * Cause: You are not the owner of the specified bucket, or you do\n * not have the s3:PutAnalyticsConfiguration bucket permission to set the\n * configuration on the bucket.\n *

      \n *
    • \n *
    \n *
  • \n *
\n *\n *\n *\n *\n *\n *\n *

\n * Related Resources\n *

\n * \n */\nvar PutBucketAnalyticsConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketAnalyticsConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketAnalyticsConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketAnalyticsConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketAnalyticsConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketAnalyticsConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketAnalyticsConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketAnalyticsConfigurationCommand\"])(input, context);\n };\n PutBucketAnalyticsConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketAnalyticsConfigurationCommand\"])(output, context);\n };\n return PutBucketAnalyticsConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketAnalyticsConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAnalyticsConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketCorsCommand.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketCorsCommand.js ***! \**********************************************************************************/ /*! exports provided: PutBucketCorsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketCorsCommand\", function() { return PutBucketCorsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-apply-body-checksum */ \"./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Sets the cors configuration for your bucket. If the configuration exists,\n * Amazon S3 replaces it.

\n *

To use this operation, you must be allowed to perform the s3:PutBucketCORS\n * action. By default, the bucket owner has this permission and can grant it to others.

\n *

You set this configuration on a bucket so that the bucket can service cross-origin\n * requests. For example, you might want to enable a request whose origin is\n * http://www.example.com to access your Amazon S3 bucket at\n * my.example.bucket.com by using the browser's XMLHttpRequest\n * capability.

\n *

To enable cross-origin resource sharing (CORS) on a bucket, you add the\n * cors subresource to the bucket. The cors subresource is an XML\n * document in which you configure rules that identify origins and the HTTP methods that can\n * be executed on your bucket. The document is limited to 64 KB in size.

\n *

When Amazon S3 receives a cross-origin request (or a pre-flight OPTIONS request) against a\n * bucket, it evaluates the cors configuration on the bucket and uses the first\n * CORSRule rule that matches the incoming browser request to enable a\n * cross-origin request. For a rule to match, the following conditions must be met:

\n *
    \n *
  • \n *

    The request's Origin header must match AllowedOrigin\n * elements.

    \n *
  • \n *
  • \n *

    The request method (for example, GET, PUT, HEAD, and so on) or the\n * Access-Control-Request-Method header in case of a pre-flight\n * OPTIONS request must be one of the AllowedMethod\n * elements.

    \n *
  • \n *
  • \n *

    Every header specified in the Access-Control-Request-Headers request\n * header of a pre-flight request must match an AllowedHeader element.\n *

    \n *
  • \n *
\n *

For more information about CORS, go to Enabling\n * Cross-Origin Resource Sharing in the Amazon Simple Storage Service Developer Guide.

\n *\n *

\n * Related Resources\n *

\n * \n */\nvar PutBucketCorsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketCorsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketCorsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketCorsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__[\"getBucketEndpointPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__[\"getApplyMd5BodyChecksumPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketCorsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketCorsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketCorsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketCorsCommand\"])(input, context);\n };\n PutBucketCorsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketCorsCommand\"])(output, context);\n };\n return PutBucketCorsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketCorsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketCorsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketEncryptionCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketEncryptionCommand.js ***! \****************************************************************************************/ /*! exports provided: PutBucketEncryptionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketEncryptionCommand\", function() { return PutBucketEncryptionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This operation uses the encryption subresource to configure default\n * encryption and Amazon S3 Bucket Key for an existing bucket.

\n *

Default encryption for a bucket can use server-side encryption with Amazon S3-managed keys\n * (SSE-S3) or AWS KMS customer master keys (SSE-KMS). If you specify default encryption\n * using SSE-KMS, you can also configure Amazon S3 Bucket Key. For information about default\n * encryption, see Amazon S3 default bucket encryption\n * in the Amazon Simple Storage Service Developer Guide. For more information about S3 Bucket Keys,\n * see Amazon S3 Bucket Keys in the Amazon Simple Storage Service Developer Guide.

\n * \n *

This operation requires AWS Signature Version 4. For more information, see Authenticating Requests (AWS Signature\n * Version 4).

\n *
\n *

To use this operation, you must have permissions to perform the\n * s3:PutEncryptionConfiguration action. The bucket owner has this permission\n * by default. The bucket owner can grant this permission to others. For more information\n * about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources in the Amazon Simple Storage Service Developer Guide.

\n *\n *

\n * Related Resources\n *

\n * \n */\nvar PutBucketEncryptionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketEncryptionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketEncryptionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketEncryptionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketEncryptionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketEncryptionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketEncryptionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketEncryptionCommand\"])(input, context);\n };\n PutBucketEncryptionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketEncryptionCommand\"])(output, context);\n };\n return PutBucketEncryptionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketEncryptionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketEncryptionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketIntelligentTieringConfigurationCommand.js": /*!*************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketIntelligentTieringConfigurationCommand.js ***! \*************************************************************************************************************/ /*! exports provided: PutBucketIntelligentTieringConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketIntelligentTieringConfigurationCommand\", function() { return PutBucketIntelligentTieringConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Puts a S3 Intelligent-Tiering configuration to the specified bucket.

\n *

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead. S3 Intelligent-Tiering delivers automatic cost savings by moving data between access tiers, when access patterns change.

\n *

The S3 Intelligent-Tiering storage class is suitable for objects larger than 128 KB that you plan to store for at least 30 days. If the size of an object is less than 128 KB, it is not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the frequent access tier rates in the S3 Intelligent-Tiering storage class.

\n *

If you delete an object before the end of the 30-day minimum storage duration period, you are charged for 30 days. For more information, see Storage class for automatically optimizing frequently and infrequently accessed objects.

\n *

Operations related to\n * PutBucketIntelligentTieringConfiguration include:

\n * \n */\nvar PutBucketIntelligentTieringConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketIntelligentTieringConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketIntelligentTieringConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketIntelligentTieringConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketIntelligentTieringConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketIntelligentTieringConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketIntelligentTieringConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand\"])(input, context);\n };\n PutBucketIntelligentTieringConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand\"])(output, context);\n };\n return PutBucketIntelligentTieringConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketIntelligentTieringConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketIntelligentTieringConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketInventoryConfigurationCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketInventoryConfigurationCommand.js ***! \****************************************************************************************************/ /*! exports provided: PutBucketInventoryConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketInventoryConfigurationCommand\", function() { return PutBucketInventoryConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

This implementation of the PUT operation adds an inventory configuration\n * (identified by the inventory ID) to the bucket. You can have up to 1,000 inventory\n * configurations per bucket.

\n *

Amazon S3 inventory generates inventories of the objects in the bucket on a daily or weekly\n * basis, and the results are published to a flat file. The bucket that is inventoried is\n * called the source bucket, and the bucket where the inventory flat file\n * is stored is called the destination bucket. The\n * destination bucket must be in the same AWS Region as the\n * source bucket.

\n *

When you configure an inventory for a source bucket, you specify\n * the destination bucket where you want the inventory to be stored, and\n * whether to generate the inventory daily or weekly. You can also configure what object\n * metadata to include and whether to inventory all object versions or only current versions.\n * For more information, see Amazon S3\n * Inventory in the Amazon Simple Storage Service Developer Guide.

\n * \n *

You must create a bucket policy on the destination bucket to\n * grant permissions to Amazon S3 to write objects to the bucket in the defined location. For an\n * example policy, see \n * Granting Permissions for Amazon S3 Inventory and Storage Class Analysis.

\n *
\n *

To use this operation, you must have permissions to perform the\n * s3:PutInventoryConfiguration action. The bucket owner has this permission\n * by default and can grant this permission to others. For more information about permissions,\n * see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources in the Amazon Simple Storage Service Developer Guide.

\n *\n *

\n * Special Errors\n *

\n *
    \n *
  • \n *

    \n * HTTP 400 Bad Request Error\n *

    \n *
      \n *
    • \n *

      \n * Code: InvalidArgument

      \n *
    • \n *
    • \n *

      \n * Cause: Invalid Argument

      \n *
    • \n *
    \n *
  • \n *
  • \n *

    \n * HTTP 400 Bad Request Error\n *

    \n *
      \n *
    • \n *

      \n * Code: TooManyConfigurations

      \n *
    • \n *
    • \n *

      \n * Cause: You are attempting to create a new configuration\n * but have already reached the 1,000-configuration limit.

      \n *
    • \n *
    \n *
  • \n *
  • \n *

    \n * HTTP 403 Forbidden Error\n *

    \n *
      \n *
    • \n *

      \n * Code: AccessDenied

      \n *
    • \n *
    • \n *

      \n * Cause: You are not the owner of the specified bucket,\n * or you do not have the s3:PutInventoryConfiguration bucket\n * permission to set the configuration on the bucket.

      \n *
    • \n *
    \n *
  • \n *
\n *\n *

\n * Related Resources\n *

\n * \n */\nvar PutBucketInventoryConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketInventoryConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketInventoryConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketInventoryConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketInventoryConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketInventoryConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketInventoryConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketInventoryConfigurationCommand\"])(input, context);\n };\n PutBucketInventoryConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketInventoryConfigurationCommand\"])(output, context);\n };\n return PutBucketInventoryConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketInventoryConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketInventoryConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLifecycleConfigurationCommand.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLifecycleConfigurationCommand.js ***! \****************************************************************************************************/ /*! exports provided: PutBucketLifecycleConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLifecycleConfigurationCommand\", function() { return PutBucketLifecycleConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-apply-body-checksum */ \"./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Creates a new lifecycle configuration for the bucket or replaces an existing lifecycle\n * configuration. For information about lifecycle configuration, see Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n * \n *

Bucket lifecycle configuration now supports specifying a lifecycle rule using an\n * object key name prefix, one or more object tags, or a combination of both. Accordingly,\n * this section describes the latest API. The previous version of the API supported\n * filtering based only on an object key name prefix, which is supported for backward\n * compatibility. For the related API description, see PutBucketLifecycle.

\n *
\n *\n *\n *\n *

\n * Rules\n *

\n *

You specify the lifecycle configuration in your request body. The lifecycle\n * configuration is specified as XML consisting of one or more rules. Each rule consists of\n * the following:

\n *\n *
    \n *
  • \n *

    Filter identifying a subset of objects to which the rule applies. The filter can\n * be based on a key name prefix, object tags, or a combination of both.

    \n *
  • \n *
  • \n *

    Status whether the rule is in effect.

    \n *
  • \n *
  • \n *

    One or more lifecycle transition and expiration actions that you want Amazon S3 to\n * perform on the objects identified by the filter. If the state of your bucket is\n * versioning-enabled or versioning-suspended, you can have many versions of the same\n * object (one current version and zero or more noncurrent versions). Amazon S3 provides\n * predefined actions that you can specify for current and noncurrent object\n * versions.

    \n *
  • \n *
\n *\n *

For more information, see Object\n * Lifecycle Management and Lifecycle Configuration Elements.

\n *\n *\n *

\n * Permissions\n *

\n *\n *\n *

By default, all Amazon S3 resources are private, including buckets, objects, and related\n * subresources (for example, lifecycle configuration and website configuration). Only the\n * resource owner (that is, the AWS account that created it) can access the resource. The\n * resource owner can optionally grant access permissions to others by writing an access\n * policy. For this operation, a user must get the s3:PutLifecycleConfiguration\n * permission.

\n *\n *

You can also explicitly deny permissions. Explicit deny also supersedes any other\n * permissions. If you want to block users or accounts from removing or deleting objects from\n * your bucket, you must deny them permissions for the following actions:

\n *\n *
    \n *
  • \n *

    s3:DeleteObject

    \n *
  • \n *
  • \n *

    s3:DeleteObjectVersion

    \n *
  • \n *
  • \n *

    s3:PutLifecycleConfiguration

    \n *
  • \n *
\n *\n *\n *

For more information about permissions, see Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

The following are related to PutBucketLifecycleConfiguration:

\n * \n */\nvar PutBucketLifecycleConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketLifecycleConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketLifecycleConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketLifecycleConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__[\"getBucketEndpointPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__[\"getApplyMd5BodyChecksumPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketLifecycleConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketLifecycleConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketLifecycleConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketLifecycleConfigurationCommand\"])(input, context);\n };\n PutBucketLifecycleConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketLifecycleConfigurationCommand\"])(output, context);\n };\n return PutBucketLifecycleConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketLifecycleConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLifecycleConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLoggingCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLoggingCommand.js ***! \*************************************************************************************/ /*! exports provided: PutBucketLoggingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLoggingCommand\", function() { return PutBucketLoggingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Set the logging parameters for a bucket and to specify permissions for who can view and\n * modify the logging parameters. All logs are saved to buckets in the same AWS Region as the\n * source bucket. To set the logging status of a bucket, you must be the bucket owner.

\n *\n *

The bucket owner is automatically granted FULL_CONTROL to all logs. You use the\n * Grantee request element to grant access to other people. The\n * Permissions request element specifies the kind of access the grantee has to\n * the logs.

\n *\n *

\n * Grantee Values\n *

\n *

You can specify the person (grantee) to whom you're assigning access rights (using\n * request elements) in the following ways:

\n *\n *
    \n *
  • \n *

    By the person's ID:

    \n *

    \n * <>ID<><>GranteesEmail<>\n * \n *

    \n *

    DisplayName is optional and ignored in the request.

    \n *
  • \n *
  • \n *

    By Email address:

    \n *

    \n * <>Grantees@email.com<>\n *

    \n *

    The grantee is resolved to the CanonicalUser and, in a response to a GET Object\n * acl request, appears as the CanonicalUser.

    \n *
  • \n *
  • \n *

    By URI:

    \n *

    \n * <>http://acs.amazonaws.com/groups/global/AuthenticatedUsers<>\n *

    \n *
  • \n *
\n *\n *\n *

To enable logging, you use LoggingEnabled and its children request elements. To disable\n * logging, you use an empty BucketLoggingStatus request element:

\n *\n *

\n * \n *

\n *\n *

For more information about server access logging, see Server Access Logging.

\n *\n *

For more information about creating a bucket, see CreateBucket. For more\n * information about returning the logging status of a bucket, see GetBucketLogging.

\n *\n *

The following operations are related to PutBucketLogging:

\n * \n */\nvar PutBucketLoggingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketLoggingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketLoggingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketLoggingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketLoggingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketLoggingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketLoggingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketLoggingCommand\"])(input, context);\n };\n PutBucketLoggingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketLoggingCommand\"])(output, context);\n };\n return PutBucketLoggingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketLoggingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLoggingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketMetricsConfigurationCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketMetricsConfigurationCommand.js ***! \**************************************************************************************************/ /*! exports provided: PutBucketMetricsConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketMetricsConfigurationCommand\", function() { return PutBucketMetricsConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Sets a metrics configuration (specified by the metrics configuration ID) for the bucket.\n * You can have up to 1,000 metrics configurations per bucket. If you're updating an existing\n * metrics configuration, note that this is a full replacement of the existing metrics\n * configuration. If you don't include the elements you want to keep, they are erased.

\n *\n *

To use this operation, you must have permissions to perform the\n * s3:PutMetricsConfiguration action. The bucket owner has this permission by\n * default. The bucket owner can grant this permission to others. For more information about\n * permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

For information about CloudWatch request metrics for Amazon S3, see Monitoring Metrics with Amazon\n * CloudWatch.

\n *\n *

The following operations are related to\n * PutBucketMetricsConfiguration:

\n * \n *\n *\n *\n *\n *\n *\n *

\n * GetBucketLifecycle has the following special error:

\n *
    \n *
  • \n *

    Error code: TooManyConfigurations\n *

    \n *
      \n *
    • \n *

      Description: You are attempting to create a new configuration but have\n * already reached the 1,000-configuration limit.

      \n *
    • \n *
    • \n *

      HTTP Status Code: HTTP 400 Bad Request

      \n *
    • \n *
    \n *
  • \n *
\n */\nvar PutBucketMetricsConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketMetricsConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketMetricsConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketMetricsConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketMetricsConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketMetricsConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketMetricsConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketMetricsConfigurationCommand\"])(input, context);\n };\n PutBucketMetricsConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketMetricsConfigurationCommand\"])(output, context);\n };\n return PutBucketMetricsConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketMetricsConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketMetricsConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketNotificationConfigurationCommand.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketNotificationConfigurationCommand.js ***! \*******************************************************************************************************/ /*! exports provided: PutBucketNotificationConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketNotificationConfigurationCommand\", function() { return PutBucketNotificationConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Enables notifications of specified events for a bucket. For more information about event\n * notifications, see Configuring Event\n * Notifications.

\n *\n *

Using this API, you can replace an existing notification configuration. The\n * configuration is an XML file that defines the event types that you want Amazon S3 to publish and\n * the destination where you want Amazon S3 to publish an event notification when it detects an\n * event of the specified type.

\n *\n *

By default, your bucket has no event notifications configured. That is, the notification\n * configuration will be an empty NotificationConfiguration.

\n *\n *

\n * \n *

\n *

\n * \n *

\n *

This operation replaces the existing notification configuration with the configuration\n * you include in the request body.

\n *\n *

After Amazon S3 receives this request, it first verifies that any Amazon Simple Notification\n * Service (Amazon SNS) or Amazon Simple Queue Service (Amazon SQS) destination exists, and\n * that the bucket owner has permission to publish to it by sending a test notification. In\n * the case of AWS Lambda destinations, Amazon S3 verifies that the Lambda function permissions\n * grant Amazon S3 permission to invoke the function from the Amazon S3 bucket. For more information,\n * see Configuring Notifications for Amazon S3\n * Events.

\n *\n *

You can disable notifications by adding the empty NotificationConfiguration\n * element.

\n *\n *

By default, only the bucket owner can configure notifications on a bucket. However,\n * bucket owners can use a bucket policy to grant permission to other users to set this\n * configuration with s3:PutBucketNotification permission.

\n *\n * \n *

The PUT notification is an atomic operation. For example, suppose your notification\n * configuration includes SNS topic, SQS queue, and Lambda function configurations. When\n * you send a PUT request with this configuration, Amazon S3 sends test messages to your SNS\n * topic. If the message fails, the entire PUT operation will fail, and Amazon S3 will not add\n * the configuration to your bucket.

\n *
\n *\n *

\n * Responses\n *

\n *

If the configuration in the request body includes only one\n * TopicConfiguration specifying only the\n * s3:ReducedRedundancyLostObject event type, the response will also include\n * the x-amz-sns-test-message-id header containing the message ID of the test\n * notification sent to the topic.

\n *\n *

The following operation is related to\n * PutBucketNotificationConfiguration:

\n * \n */\nvar PutBucketNotificationConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketNotificationConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketNotificationConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketNotificationConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketNotificationConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketNotificationConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketNotificationConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketNotificationConfigurationCommand\"])(input, context);\n };\n PutBucketNotificationConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketNotificationConfigurationCommand\"])(output, context);\n };\n return PutBucketNotificationConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketNotificationConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketNotificationConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketOwnershipControlsCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketOwnershipControlsCommand.js ***! \***********************************************************************************************/ /*! exports provided: PutBucketOwnershipControlsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketOwnershipControlsCommand\", function() { return PutBucketOwnershipControlsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Creates or modifies OwnershipControls for an Amazon S3 bucket. To use this\n * operation, you must have the s3:PutBucketOwnershipControls permission. For\n * more information about Amazon S3 permissions, see Specifying Permissions in a Policy.

\n *

For information about Amazon S3 Object Ownership, see Using Object Ownership.

\n *

The following operations are related to PutBucketOwnershipControls:

\n * \n */\nvar PutBucketOwnershipControlsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketOwnershipControlsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketOwnershipControlsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketOwnershipControlsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketOwnershipControlsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketOwnershipControlsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketOwnershipControlsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketOwnershipControlsCommand\"])(input, context);\n };\n PutBucketOwnershipControlsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketOwnershipControlsCommand\"])(output, context);\n };\n return PutBucketOwnershipControlsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketOwnershipControlsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketOwnershipControlsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketPolicyCommand.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketPolicyCommand.js ***! \************************************************************************************/ /*! exports provided: PutBucketPolicyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketPolicyCommand\", function() { return PutBucketPolicyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-apply-body-checksum */ \"./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Applies an Amazon S3 bucket policy to an Amazon S3 bucket. If you are using an identity other than\n * the root user of the AWS account that owns the bucket, the calling identity must have the\n * PutBucketPolicy permissions on the specified bucket and belong to the\n * bucket owner's account in order to use this operation.

\n *\n *

If you don't have PutBucketPolicy permissions, Amazon S3 returns a 403\n * Access Denied error. If you have the correct permissions, but you're not using an\n * identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not\n * Allowed error.

\n *\n * \n *

As a security precaution, the root user of the AWS account that owns a bucket can\n * always use this operation, even if the policy explicitly denies the root user the\n * ability to perform this action.

\n *
\n *\n *\n *

For more information about bucket policies, see Using Bucket Policies and User\n * Policies.

\n *\n *

The following operations are related to PutBucketPolicy:

\n * \n */\nvar PutBucketPolicyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketPolicyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketPolicyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__[\"getBucketEndpointPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__[\"getApplyMd5BodyChecksumPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketPolicyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketPolicyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketPolicyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketPolicyCommand\"])(input, context);\n };\n PutBucketPolicyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketPolicyCommand\"])(output, context);\n };\n return PutBucketPolicyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketPolicyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketPolicyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketReplicationCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketReplicationCommand.js ***! \*****************************************************************************************/ /*! exports provided: PutBucketReplicationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketReplicationCommand\", function() { return PutBucketReplicationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-apply-body-checksum */ \"./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Creates a replication configuration or replaces an existing one. For more information,\n * see Replication in the Amazon S3 Developer Guide.

\n * \n *

To perform this operation, the user or role performing the operation must have the\n * iam:PassRole permission.

\n *
\n *

Specify the replication configuration in the request body. In the replication\n * configuration, you provide the name of the destination bucket or buckets where you want\n * Amazon S3 to replicate objects, the IAM role that Amazon S3 can assume to replicate objects on your\n * behalf, and other relevant information.

\n *\n *\n *

A replication configuration must include at least one rule, and can contain a maximum of\n * 1,000. Each rule identifies a subset of objects to replicate by filtering the objects in\n * the source bucket. To choose additional subsets of objects to replicate, add a rule for\n * each subset.

\n *\n *

To specify a subset of the objects in the source bucket to apply a replication rule to,\n * add the Filter element as a child of the Rule element. You can filter objects based on an\n * object key prefix, one or more object tags, or both. When you add the Filter element in the\n * configuration, you must also add the following elements:\n * DeleteMarkerReplication, Status, and\n * Priority.

\n * \n *

If you are using an earlier version of the replication configuration, Amazon S3 handles\n * replication of delete markers differently. For more information, see Backward Compatibility.

\n *
\n *

For information about enabling versioning on a bucket, see Using Versioning.

\n *\n *

By default, a resource owner, in this case the AWS account that created the bucket, can\n * perform this operation. The resource owner can also grant others permissions to perform the\n * operation. For more information about permissions, see Specifying Permissions in a Policy\n * and Managing Access Permissions to Your\n * Amazon S3 Resources.

\n *\n *

\n * Handling Replication of Encrypted Objects\n *

\n *

By default, Amazon S3 doesn't replicate objects that are stored at rest using server-side\n * encryption with CMKs stored in AWS KMS. To replicate AWS KMS-encrypted objects, add the\n * following: SourceSelectionCriteria, SseKmsEncryptedObjects,\n * Status, EncryptionConfiguration, and\n * ReplicaKmsKeyID. For information about replication configuration, see\n * Replicating Objects\n * Created with SSE Using CMKs stored in AWS KMS.

\n *\n *

For information on PutBucketReplication errors, see List of\n * replication-related error codes\n *

\n *\n *\n *

The following operations are related to PutBucketReplication:

\n * \n */\nvar PutBucketReplicationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketReplicationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketReplicationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketReplicationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__[\"getBucketEndpointPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__[\"getApplyMd5BodyChecksumPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketReplicationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketReplicationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketReplicationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketReplicationCommand\"])(input, context);\n };\n PutBucketReplicationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketReplicationCommand\"])(output, context);\n };\n return PutBucketReplicationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketReplicationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketReplicationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketRequestPaymentCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketRequestPaymentCommand.js ***! \********************************************************************************************/ /*! exports provided: PutBucketRequestPaymentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketRequestPaymentCommand\", function() { return PutBucketRequestPaymentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Sets the request payment configuration for a bucket. By default, the bucket owner pays\n * for downloads from the bucket. This configuration parameter enables the bucket owner (only)\n * to specify that the person requesting the download will be charged for the download. For\n * more information, see Requester Pays\n * Buckets.

\n *\n *

The following operations are related to PutBucketRequestPayment:

\n * \n */\nvar PutBucketRequestPaymentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketRequestPaymentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketRequestPaymentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketRequestPaymentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketRequestPaymentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketRequestPaymentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketRequestPaymentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketRequestPaymentCommand\"])(input, context);\n };\n PutBucketRequestPaymentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketRequestPaymentCommand\"])(output, context);\n };\n return PutBucketRequestPaymentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketRequestPaymentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketRequestPaymentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketTaggingCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketTaggingCommand.js ***! \*************************************************************************************/ /*! exports provided: PutBucketTaggingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketTaggingCommand\", function() { return PutBucketTaggingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-apply-body-checksum */ \"./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Sets the tags for a bucket.

\n *

Use tags to organize your AWS bill to reflect your own cost structure. To do this, sign\n * up to get your AWS account bill with tag key values included. Then, to see the cost of\n * combined resources, organize your billing information according to resources with the same\n * tag key values. For example, you can tag several resources with a specific application\n * name, and then organize your billing information to see the total cost of that application\n * across several services. For more information, see Cost Allocation\n * and Tagging.

\n *\n * \n *

Within a bucket, if you add a tag that has the same key as an existing tag, the new\n * value overwrites the old value. For more information, see Using Cost Allocation in Amazon S3 Bucket\n * Tags.

\n *
\n *

To use this operation, you must have permissions to perform the\n * s3:PutBucketTagging action. The bucket owner has this permission by default\n * and can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources.

\n *\n *

\n * PutBucketTagging has the following special errors:

\n *
    \n *
  • \n *

    Error code: InvalidTagError\n *

    \n * \n *
  • \n *
  • \n *

    Error code: MalformedXMLError\n *

    \n *
      \n *
    • \n *

      Description: The XML provided does not match the schema.

      \n *
    • \n *
    \n *
  • \n *
  • \n *

    Error code: OperationAbortedError \n *

    \n *
      \n *
    • \n *

      Description: A conflicting conditional operation is currently in progress\n * against this resource. Please try again.

      \n *
    • \n *
    \n *
  • \n *
  • \n *

    Error code: InternalError\n *

    \n *
      \n *
    • \n *

      Description: The service was unable to apply the provided tag to the\n * bucket.

      \n *
    • \n *
    \n *
  • \n *
\n *\n *\n *

The following operations are related to PutBucketTagging:

\n * \n */\nvar PutBucketTaggingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketTaggingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketTaggingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketTaggingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__[\"getBucketEndpointPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_apply_body_checksum__WEBPACK_IMPORTED_MODULE_3__[\"getApplyMd5BodyChecksumPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketTaggingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketTaggingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketTaggingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketTaggingCommand\"])(input, context);\n };\n PutBucketTaggingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketTaggingCommand\"])(output, context);\n };\n return PutBucketTaggingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketTaggingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketTaggingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketVersioningCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketVersioningCommand.js ***! \****************************************************************************************/ /*! exports provided: PutBucketVersioningCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketVersioningCommand\", function() { return PutBucketVersioningCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Sets the versioning state of an existing bucket. To set the versioning state, you must\n * be the bucket owner.

\n *

You can set the versioning state with one of the following values:

\n *\n *

\n * Enabled—Enables versioning for the objects in the\n * bucket. All objects added to the bucket receive a unique version ID.

\n *\n *

\n * Suspended—Disables versioning for the objects in the\n * bucket. All objects added to the bucket receive the version ID null.

\n *\n *

If the versioning state has never been set on a bucket, it has no versioning state; a\n * GetBucketVersioning request does not return a versioning state value.

\n *\n *

If the bucket owner enables MFA Delete in the bucket versioning configuration, the\n * bucket owner must include the x-amz-mfa request header and the\n * Status and the MfaDelete request elements in a request to set\n * the versioning state of the bucket.

\n *\n * \n *

If you have an object expiration lifecycle policy in your non-versioned bucket and\n * you want to maintain the same permanent delete behavior when you enable versioning, you\n * must add a noncurrent expiration policy. The noncurrent expiration lifecycle policy will\n * manage the deletes of the noncurrent object versions in the version-enabled bucket. (A\n * version-enabled bucket maintains one current and zero or more noncurrent object\n * versions.) For more information, see Lifecycle and Versioning.

\n *
\n *\n *

\n * Related Resources\n *

\n * \n */\nvar PutBucketVersioningCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketVersioningCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketVersioningCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketVersioningCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketVersioningCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketVersioningRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketVersioningCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketVersioningCommand\"])(input, context);\n };\n PutBucketVersioningCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketVersioningCommand\"])(output, context);\n };\n return PutBucketVersioningCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketVersioningCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketVersioningCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketWebsiteCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketWebsiteCommand.js ***! \*************************************************************************************/ /*! exports provided: PutBucketWebsiteCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketWebsiteCommand\", function() { return PutBucketWebsiteCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Sets the configuration of the website that is specified in the website\n * subresource. To configure a bucket as a website, you can add this subresource on the bucket\n * with website configuration information such as the file name of the index document and any\n * redirect rules. For more information, see Hosting Websites on Amazon S3.

\n *\n *

This PUT operation requires the S3:PutBucketWebsite permission. By default,\n * only the bucket owner can configure the website attached to a bucket; however, bucket\n * owners can allow other users to set the website configuration by writing a bucket policy\n * that grants them the S3:PutBucketWebsite permission.

\n *\n *

To redirect all website requests sent to the bucket's website endpoint, you add a\n * website configuration with the following elements. Because all requests are sent to another\n * website, you don't need to provide index document name for the bucket.

\n *
    \n *
  • \n *

    \n * WebsiteConfiguration\n *

    \n *
  • \n *
  • \n *

    \n * RedirectAllRequestsTo\n *

    \n *
  • \n *
  • \n *

    \n * HostName\n *

    \n *
  • \n *
  • \n *

    \n * Protocol\n *

    \n *
  • \n *
\n *\n *

If you want granular control over redirects, you can use the following elements to add\n * routing rules that describe conditions for redirecting requests and information about the\n * redirect destination. In this case, the website configuration must provide an index\n * document for the bucket, because some requests might not be redirected.

\n *
    \n *
  • \n *

    \n * WebsiteConfiguration\n *

    \n *
  • \n *
  • \n *

    \n * IndexDocument\n *

    \n *
  • \n *
  • \n *

    \n * Suffix\n *

    \n *
  • \n *
  • \n *

    \n * ErrorDocument\n *

    \n *
  • \n *
  • \n *

    \n * Key\n *

    \n *
  • \n *
  • \n *

    \n * RoutingRules\n *

    \n *
  • \n *
  • \n *

    \n * RoutingRule\n *

    \n *
  • \n *
  • \n *

    \n * Condition\n *

    \n *
  • \n *
  • \n *

    \n * HttpErrorCodeReturnedEquals\n *

    \n *
  • \n *
  • \n *

    \n * KeyPrefixEquals\n *

    \n *
  • \n *
  • \n *

    \n * Redirect\n *

    \n *
  • \n *
  • \n *

    \n * Protocol\n *

    \n *
  • \n *
  • \n *

    \n * HostName\n *

    \n *
  • \n *
  • \n *

    \n * ReplaceKeyPrefixWith\n *

    \n *
  • \n *
  • \n *

    \n * ReplaceKeyWith\n *

    \n *
  • \n *
  • \n *

    \n * HttpRedirectCode\n *

    \n *
  • \n *
\n *\n *

Amazon S3 has a limitation of 50 routing rules per website configuration. If you require more\n * than 50 routing rules, you can use object redirect. For more information, see Configuring an\n * Object Redirect in the Amazon Simple Storage Service Developer Guide.

\n */\nvar PutBucketWebsiteCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutBucketWebsiteCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutBucketWebsiteCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutBucketWebsiteCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutBucketWebsiteCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutBucketWebsiteRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutBucketWebsiteCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutBucketWebsiteCommand\"])(input, context);\n };\n PutBucketWebsiteCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutBucketWebsiteCommand\"])(output, context);\n };\n return PutBucketWebsiteCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutBucketWebsiteCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketWebsiteCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectAclCommand.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectAclCommand.js ***! \*********************************************************************************/ /*! exports provided: PutObjectAclCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectAclCommand\", function() { return PutObjectAclCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Uses the acl subresource to set the access control list (ACL) permissions\n * for a new or existing object in an S3 bucket. You must have WRITE_ACP\n * permission to set the ACL of an object. For more information, see What\n * permissions can I grant? in the Amazon Simple Storage Service Developer Guide.

\n *

This action is not supported by Amazon S3 on Outposts.

\n *

Depending on your application needs, you can choose to set\n * the ACL on an object using either the request body or the headers. For example, if you have\n * an existing application that updates a bucket ACL using the request body, you can continue\n * to use that approach. For more information, see Access Control List (ACL) Overview in the Amazon S3 Developer\n * Guide.

\n *\n *\n *\n *

\n * Access Permissions\n *

\n *

You can set access permissions using one of the following methods:

\n *
    \n *
  • \n *

    Specify a canned ACL with the x-amz-acl request header. Amazon S3 supports\n * a set of predefined ACLs, known as canned ACLs. Each canned ACL has a predefined set\n * of grantees and permissions. Specify the canned ACL name as the value of\n * x-amz-acl. If you use this header, you cannot use other access\n * control-specific headers in your request. For more information, see Canned ACL.

    \n *
  • \n *
  • \n *

    Specify access permissions explicitly with the x-amz-grant-read,\n * x-amz-grant-read-acp, x-amz-grant-write-acp, and\n * x-amz-grant-full-control headers. When using these headers, you\n * specify explicit access permissions and grantees (AWS accounts or Amazon S3 groups) who\n * will receive the permission. If you use these ACL-specific headers, you cannot use\n * x-amz-acl header to set a canned ACL. These parameters map to the set\n * of permissions that Amazon S3 supports in an ACL. For more information, see Access Control List (ACL)\n * Overview.

    \n *\n *

    You specify each grantee as a type=value pair, where the type is one of the\n * following:

    \n *
      \n *
    • \n *

      \n * id – if the value specified is the canonical user ID of an AWS\n * account

      \n *
    • \n *
    • \n *

      \n * uri – if you are granting permissions to a predefined\n * group

      \n *
    • \n *
    • \n *

      \n * emailAddress – if the value specified is the email address of\n * an AWS account

      \n * \n *

      Using email addresses to specify a grantee is only supported in the following AWS Regions:

      \n *
        \n *
      • \n *

        US East (N. Virginia)

        \n *
      • \n *
      • \n *

        US West (N. California)

        \n *
      • \n *
      • \n *

        US West (Oregon)

        \n *
      • \n *
      • \n *

        Asia Pacific (Singapore)

        \n *
      • \n *
      • \n *

        Asia Pacific (Sydney)

        \n *
      • \n *
      • \n *

        Asia Pacific (Tokyo)

        \n *
      • \n *
      • \n *

        Europe (Ireland)

        \n *
      • \n *
      • \n *

        South America (São Paulo)

        \n *
      • \n *
      \n *

      For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the AWS General Reference.

      \n *
      \n *
    • \n *
    \n *

    For example, the following x-amz-grant-read header grants list\n * objects permission to the two AWS accounts identified by their email\n * addresses.

    \n *

    \n * x-amz-grant-read: emailAddress=\"xyz@amazon.com\",\n * emailAddress=\"abc@amazon.com\" \n *

    \n *\n *
  • \n *
\n *

You can use either a canned ACL or specify access permissions explicitly. You cannot do\n * both.

\n *

\n * Grantee Values\n *

\n *

You can specify the person (grantee) to whom you're assigning access rights (using\n * request elements) in the following ways:

\n *
    \n *
  • \n *

    By the person's ID:

    \n *

    \n * <>ID<><>GranteesEmail<>\n * \n *

    \n *

    DisplayName is optional and ignored in the request.

    \n *
  • \n *
  • \n *

    By URI:

    \n *

    \n * <>http://acs.amazonaws.com/groups/global/AuthenticatedUsers<>\n *

    \n *
  • \n *
  • \n *

    By Email address:

    \n *

    \n * <>Grantees@email.com<>lt;/Grantee>\n *

    \n *

    The grantee is resolved to the CanonicalUser and, in a response to a GET Object\n * acl request, appears as the CanonicalUser.

    \n * \n *

    Using email addresses to specify a grantee is only supported in the following AWS Regions:

    \n *
      \n *
    • \n *

      US East (N. Virginia)

      \n *
    • \n *
    • \n *

      US West (N. California)

      \n *
    • \n *
    • \n *

      US West (Oregon)

      \n *
    • \n *
    • \n *

      Asia Pacific (Singapore)

      \n *
    • \n *
    • \n *

      Asia Pacific (Sydney)

      \n *
    • \n *
    • \n *

      Asia Pacific (Tokyo)

      \n *
    • \n *
    • \n *

      Europe (Ireland)

      \n *
    • \n *
    • \n *

      South America (São Paulo)

      \n *
    • \n *
    \n *

    For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the AWS General Reference.

    \n *
    \n *
  • \n *
\n *

\n * Versioning\n *

\n *

The ACL of an object is set at the object version level. By default, PUT sets the ACL of\n * the current version of an object. To set the ACL of a different version, use the\n * versionId subresource.

\n *

\n * Related Resources\n *

\n * \n */\nvar PutObjectAclCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutObjectAclCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutObjectAclCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutObjectAclCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutObjectAclCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectAclRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectAclOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutObjectAclCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutObjectAclCommand\"])(input, context);\n };\n PutObjectAclCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutObjectAclCommand\"])(output, context);\n };\n return PutObjectAclCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutObjectAclCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectAclCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectCommand.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectCommand.js ***! \******************************************************************************/ /*! exports provided: PutObjectCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectCommand\", function() { return PutObjectCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-ssec */ \"./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Adds an object to a bucket. You must have WRITE permissions on a bucket to add an object\n * to it.

\n *\n *\n *

Amazon S3 never adds partial objects; if you receive a success response, Amazon S3 added the\n * entire object to the bucket.

\n *\n *

Amazon S3 is a distributed system. If it receives multiple write requests for the same object\n * simultaneously, it overwrites all but the last object written. Amazon S3 does not provide object\n * locking; if you need this, make sure to build it into your application layer or use\n * versioning instead.

\n *\n *

To ensure that data is not corrupted traversing the network, use the\n * Content-MD5 header. When you use this header, Amazon S3 checks the object\n * against the provided MD5 value and, if they do not match, returns an error. Additionally,\n * you can calculate the MD5 while putting an object to Amazon S3 and compare the returned ETag to\n * the calculated MD5 value.

\n * \n *

The Content-MD5 header is required for any request to upload an object\n * with a retention period configured using Amazon S3 Object Lock. For more information about\n * Amazon S3 Object Lock, see Amazon S3 Object Lock Overview\n * in the Amazon Simple Storage Service Developer Guide.

\n *
\n *\n *\n *

\n * Server-side Encryption\n *

\n *

You can optionally request server-side encryption. With server-side encryption, Amazon S3 encrypts your data as it writes it to disks in its data centers and decrypts the data\n * when you access it. You have the option to provide your own encryption key or use AWS\n * managed encryption keys (SSE-S3 or SSE-KMS). For more information, see Using Server-Side\n * Encryption.

\n *

If you request server-side encryption using AWS Key Management Service (SSE-KMS), you can enable an S3 Bucket Key at the object-level. For more information, see Amazon S3 Bucket Keys in the Amazon Simple Storage Service Developer Guide.

\n *

\n * Access Control List (ACL)-Specific Request\n * Headers\n *

\n *

You can use headers to grant ACL- based permissions. By default, all objects are\n * private. Only the owner has full access control. When adding a new object, you can grant\n * permissions to individual AWS accounts or to predefined groups defined by Amazon S3. These\n * permissions are then added to the ACL on the object. For more information, see Access Control List\n * (ACL) Overview and Managing ACLs Using the REST\n * API.

\n *\n *

\n * Storage Class Options\n *

\n *

By default, Amazon S3 uses the STANDARD Storage Class to store newly created objects. The\n * STANDARD storage class provides high durability and high availability. Depending on\n * performance needs, you can specify a different Storage Class. Amazon S3 on Outposts only uses\n * the OUTPOSTS Storage Class. For more information, see Storage Classes in the Amazon S3\n * Service Developer Guide.

\n *\n *\n *

\n * Versioning\n *

\n *

If you enable versioning for a bucket, Amazon S3 automatically generates a unique version ID\n * for the object being stored. Amazon S3 returns this ID in the response. When you enable\n * versioning for a bucket, if Amazon S3 receives multiple write requests for the same object\n * simultaneously, it stores all of the objects.

\n *

For more information about versioning, see Adding Objects to\n * Versioning Enabled Buckets. For information about returning the versioning state\n * of a bucket, see GetBucketVersioning.

\n *\n *\n *

\n * Related Resources\n *

\n * \n */\nvar PutObjectCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutObjectCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutObjectCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutObjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__[\"getSsecPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutObjectCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutObjectCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutObjectCommand\"])(input, context);\n };\n PutObjectCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutObjectCommand\"])(output, context);\n };\n return PutObjectCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=PutObjectCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLegalHoldCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLegalHoldCommand.js ***! \***************************************************************************************/ /*! exports provided: PutObjectLegalHoldCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLegalHoldCommand\", function() { return PutObjectLegalHoldCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Applies a Legal Hold configuration to the specified object.

\n *

This action is not supported by Amazon S3 on Outposts.

\n *

\n * Related Resources\n *

\n * \n */\nvar PutObjectLegalHoldCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutObjectLegalHoldCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutObjectLegalHoldCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutObjectLegalHoldCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutObjectLegalHoldCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectLegalHoldRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectLegalHoldOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutObjectLegalHoldCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutObjectLegalHoldCommand\"])(input, context);\n };\n PutObjectLegalHoldCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutObjectLegalHoldCommand\"])(output, context);\n };\n return PutObjectLegalHoldCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutObjectLegalHoldCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLegalHoldCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLockConfigurationCommand.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLockConfigurationCommand.js ***! \***********************************************************************************************/ /*! exports provided: PutObjectLockConfigurationCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLockConfigurationCommand\", function() { return PutObjectLockConfigurationCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Places an Object Lock configuration on the specified bucket. The rule specified in the\n * Object Lock configuration will be applied by default to every new object placed in the\n * specified bucket.

\n * \n *

\n * DefaultRetention requires either Days or Years. You can't specify both\n * at the same time.

\n *
\n *

\n * Related Resources\n *

\n * \n */\nvar PutObjectLockConfigurationCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutObjectLockConfigurationCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutObjectLockConfigurationCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutObjectLockConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutObjectLockConfigurationCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectLockConfigurationRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectLockConfigurationOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutObjectLockConfigurationCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutObjectLockConfigurationCommand\"])(input, context);\n };\n PutObjectLockConfigurationCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutObjectLockConfigurationCommand\"])(output, context);\n };\n return PutObjectLockConfigurationCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutObjectLockConfigurationCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLockConfigurationCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectRetentionCommand.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectRetentionCommand.js ***! \***************************************************************************************/ /*! exports provided: PutObjectRetentionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRetentionCommand\", function() { return PutObjectRetentionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Places an Object Retention configuration on an object.

\n *

This action is not supported by Amazon S3 on Outposts.

\n *

\n * Related Resources\n *

\n * \n */\nvar PutObjectRetentionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutObjectRetentionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutObjectRetentionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutObjectRetentionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutObjectRetentionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectRetentionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectRetentionOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutObjectRetentionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutObjectRetentionCommand\"])(input, context);\n };\n PutObjectRetentionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutObjectRetentionCommand\"])(output, context);\n };\n return PutObjectRetentionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutObjectRetentionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectRetentionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectTaggingCommand.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectTaggingCommand.js ***! \*************************************************************************************/ /*! exports provided: PutObjectTaggingCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectTaggingCommand\", function() { return PutObjectTaggingCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Sets the supplied tag-set to an object that already exists in a bucket.

\n *

A tag is a key-value pair. You can associate tags with an object by sending a PUT\n * request against the tagging subresource that is associated with the object. You can\n * retrieve tags by sending a GET request. For more information, see GetObjectTagging.

\n *\n *

For tagging-related restrictions related to characters and encodings, see Tag\n * Restrictions. Note that Amazon S3 limits the maximum number of tags to 10 tags per\n * object.

\n *\n *

To use this operation, you must have permission to perform the\n * s3:PutObjectTagging action. By default, the bucket owner has this\n * permission and can grant this permission to others.

\n *\n *

To put tags of any other version, use the versionId query parameter. You\n * also need permission for the s3:PutObjectVersionTagging action.

\n *\n *

For information about the Amazon S3 object tagging feature, see Object Tagging.

\n *\n *\n *

\n * Special Errors\n *

\n *
    \n *
  • \n *
      \n *
    • \n *

      \n * Code: InvalidTagError \n *

      \n *
    • \n *
    • \n *

      \n * Cause: The tag provided was not a valid tag. This error can occur\n * if the tag did not pass input validation. For more information, see Object Tagging.\n *

      \n *
    • \n *
    \n *
  • \n *
  • \n *
      \n *
    • \n *

      \n * Code: MalformedXMLError \n *

      \n *
    • \n *
    • \n *

      \n * Cause: The XML provided does not match the schema.\n *

      \n *
    • \n *
    \n *
  • \n *
  • \n *
      \n *
    • \n *

      \n * Code: OperationAbortedError \n *

      \n *
    • \n *
    • \n *

      \n * Cause: A conflicting conditional operation is currently in\n * progress against this resource. Please try again.\n *

      \n *
    • \n *
    \n *
  • \n *
  • \n *
      \n *
    • \n *

      \n * Code: InternalError\n *

      \n *
    • \n *
    • \n *

      \n * Cause: The service was unable to apply the provided tag to the\n * object.\n *

      \n *
    • \n *
    \n *
  • \n *
\n *\n *\n *\n *\n *\n *\n *

\n * Related Resources\n *

\n * \n */\nvar PutObjectTaggingCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutObjectTaggingCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutObjectTaggingCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutObjectTaggingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutObjectTaggingCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectTaggingRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutObjectTaggingOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutObjectTaggingCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutObjectTaggingCommand\"])(input, context);\n };\n PutObjectTaggingCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutObjectTaggingCommand\"])(output, context);\n };\n return PutObjectTaggingCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutObjectTaggingCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectTaggingCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/PutPublicAccessBlockCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/PutPublicAccessBlockCommand.js ***! \*****************************************************************************************/ /*! exports provided: PutPublicAccessBlockCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutPublicAccessBlockCommand\", function() { return PutPublicAccessBlockCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n/**\n *

Creates or modifies the PublicAccessBlock configuration for an Amazon S3 bucket.\n * To use this operation, you must have the s3:PutBucketPublicAccessBlock\n * permission. For more information about Amazon S3 permissions, see Specifying Permissions in a\n * Policy.

\n *\n * \n *

When Amazon S3 evaluates the PublicAccessBlock configuration for a bucket or\n * an object, it checks the PublicAccessBlock configuration for both the\n * bucket (or the bucket that contains the object) and the bucket owner's account. If the\n * PublicAccessBlock configurations are different between the bucket and\n * the account, Amazon S3 uses the most restrictive combination of the bucket-level and\n * account-level settings.

\n *
\n *\n *\n *

For more information about when Amazon S3 considers a bucket or an object public, see The Meaning of \"Public\".

\n *\n *\n *\n *

\n * Related Resources\n *

\n * \n */\nvar PutPublicAccessBlockCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(PutPublicAccessBlockCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function PutPublicAccessBlockCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n PutPublicAccessBlockCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"PutPublicAccessBlockCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"PutPublicAccessBlockRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n PutPublicAccessBlockCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlPutPublicAccessBlockCommand\"])(input, context);\n };\n PutPublicAccessBlockCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlPutPublicAccessBlockCommand\"])(output, context);\n };\n return PutPublicAccessBlockCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_5__[\"Command\"]));\n\n//# sourceMappingURL=PutPublicAccessBlockCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/PutPublicAccessBlockCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/RestoreObjectCommand.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/RestoreObjectCommand.js ***! \**********************************************************************************/ /*! exports provided: RestoreObjectCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RestoreObjectCommand\", function() { return RestoreObjectCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Restores an archived copy of an object back into Amazon S3

\n *

This action is not supported by Amazon S3 on Outposts.

\n *

This action performs the following types of requests:

\n *
    \n *
  • \n *

    \n * select - Perform a select query on an archived object

    \n *
  • \n *
  • \n *

    \n * restore an archive - Restore an archived object

    \n *
  • \n *
\n *

To use this operation, you must have permissions to perform the\n * s3:RestoreObject action. The bucket owner has this permission by default\n * and can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3\n * Resources in the Amazon Simple Storage Service Developer Guide.

\n *

\n * Querying Archives with Select Requests\n *

\n *

You use a select type of request to perform SQL queries on archived objects. The\n * archived objects that are being queried by the select request must be formatted as\n * uncompressed comma-separated values (CSV) files. You can run queries and custom analytics\n * on your archived data without having to restore your data to a hotter Amazon S3 tier. For an\n * overview about select requests, see Querying Archived Objects in the Amazon Simple Storage Service Developer Guide.

\n *

When making a select request, do the following:

\n *
    \n *
  • \n *

    Define an output location for the select query's output. This must be an Amazon S3\n * bucket in the same AWS Region as the bucket that contains the archive object that is\n * being queried. The AWS account that initiates the job must have permissions to write\n * to the S3 bucket. You can specify the storage class and encryption for the output\n * objects stored in the bucket. For more information about output, see Querying Archived Objects\n * in the Amazon Simple Storage Service Developer Guide.

    \n *

    For more information about the S3 structure in the request body, see\n * the following:

    \n * \n *
  • \n *
  • \n *

    Define the SQL expression for the SELECT type of restoration for your\n * query in the request body's SelectParameters structure. You can use\n * expressions like the following examples.

    \n *
      \n *
    • \n *

      The following expression returns all records from the specified\n * object.

      \n *

      \n * SELECT * FROM Object\n *

      \n *
    • \n *
    • \n *

      Assuming that you are not using any headers for data stored in the object,\n * you can specify columns with positional headers.

      \n *

      \n * SELECT s._1, s._2 FROM Object s WHERE s._3 > 100\n *

      \n *
    • \n *
    • \n *

      If you have headers and you set the fileHeaderInfo in the\n * CSV structure in the request body to USE, you can\n * specify headers in the query. (If you set the fileHeaderInfo field\n * to IGNORE, the first row is skipped for the query.) You cannot mix\n * ordinal positions with header column names.

      \n *

      \n * SELECT s.Id, s.FirstName, s.SSN FROM S3Object s\n *

      \n *
    • \n *
    \n *
  • \n *
\n *

For more information about using SQL with S3 Glacier Select restore, see SQL Reference for Amazon S3 Select and\n * S3 Glacier Select in the Amazon Simple Storage Service Developer Guide.

\n *

When making a select request, you can also do the following:

\n *
    \n *
  • \n *

    To expedite your queries, specify the Expedited tier. For more\n * information about tiers, see \"Restoring Archives,\" later in this topic.

    \n *
  • \n *
  • \n *

    Specify details about the data serialization format of both the input object that\n * is being queried and the serialization of the CSV-encoded query results.

    \n *
  • \n *
\n *

The following are additional important facts about the select feature:

\n *
    \n *
  • \n *

    The output results are new Amazon S3 objects. Unlike archive retrievals, they are\n * stored until explicitly deleted-manually or through a lifecycle policy.

    \n *
  • \n *
  • \n *

    You can issue more than one select request on the same Amazon S3 object. Amazon S3 doesn't\n * deduplicate requests, so avoid issuing duplicate requests.

    \n *
  • \n *
  • \n *

    Amazon S3 accepts a select request even if the object has already been restored. A\n * select request doesn’t return error response 409.

    \n *
  • \n *
\n *

\n * Restoring objects\n *

\n *

Objects that you archive to the S3 Glacier or\n * S3 Glacier Deep Archive storage class, and S3 Intelligent-Tiering Archive or\n * S3 Intelligent-Tiering Deep Archive tiers are not accessible in real time. For objects in\n * Archive Access or Deep Archive Access tiers you must first initiate a restore request, and\n * then wait until the object is moved into the Frequent Access tier. For objects in\n * S3 Glacier or S3 Glacier Deep Archive storage classes you must\n * first initiate a restore request, and then wait until a temporary copy of the object is\n * available. To access an archived object, you must restore the object for the duration\n * (number of days) that you specify.

\n *

To restore a specific object version, you can provide a version ID. If you don't provide\n * a version ID, Amazon S3 restores the current version.

\n *

When restoring an archived object (or using a select request), you can specify one of\n * the following data access tier options in the Tier element of the request\n * body:

\n *
    \n *
  • \n *

    \n * \n * Expedited\n * - Expedited retrievals\n * allow you to quickly access your data stored in the S3 Glacier\n * storage class or S3 Intelligent-Tiering Archive tier when occasional urgent requests for a\n * subset of archives are required. For all but the largest archived objects (250 MB+),\n * data accessed using Expedited retrievals is typically made available within 1–5\n * minutes. Provisioned capacity ensures that retrieval capacity for Expedited\n * retrievals is available when you need it. Expedited retrievals and provisioned\n * capacity are not available for objects stored in the S3 Glacier Deep Archive\n * storage class or S3 Intelligent-Tiering Deep Archive tier.

    \n *
  • \n *
  • \n *

    \n * \n * Standard\n * - Standard retrievals allow\n * you to access any of your archived objects within several hours. This is the default\n * option for retrieval requests that do not specify the retrieval option. Standard\n * retrievals typically finish within 3–5 hours for objects stored in the\n * S3 Glacier storage class or S3 Intelligent-Tiering Archive tier. They\n * typically finish within 12 hours for objects stored in the\n * S3 Glacier Deep Archive storage class or S3 Intelligent-Tiering Deep Archive tier.\n * Standard retrievals are free for objects stored in S3 Intelligent-Tiering.

    \n *
  • \n *
  • \n *

    \n * \n * Bulk\n * - Bulk retrievals are the\n * lowest-cost retrieval option in S3 Glacier, enabling you to retrieve large amounts,\n * even petabytes, of data inexpensively. Bulk retrievals typically finish within 5–12\n * hours for objects stored in the S3 Glacier storage class or\n * S3 Intelligent-Tiering Archive tier. They typically finish within 48 hours for objects stored\n * in the S3 Glacier Deep Archive storage class or S3 Intelligent-Tiering Deep Archive tier.\n * Bulk retrievals are free for objects stored in S3 Intelligent-Tiering.

    \n *
  • \n *
\n *

For more information about archive retrieval options and provisioned capacity for\n * Expedited data access, see Restoring Archived Objects in the Amazon Simple Storage Service Developer Guide.

\n *

You can use Amazon S3 restore speed upgrade to change the restore speed to a faster speed\n * while it is in progress. For more information, see \n * Upgrading the speed of an in-progress restore in the\n * Amazon Simple Storage Service Developer Guide.

\n *

To get the status of object restoration, you can send a HEAD request.\n * Operations return the x-amz-restore header, which provides information about\n * the restoration status, in the response. You can use Amazon S3 event notifications to notify you\n * when a restore is initiated or completed. For more information, see Configuring Amazon S3 Event Notifications in\n * the Amazon Simple Storage Service Developer Guide.

\n *

After restoring an archived object, you can update the restoration period by reissuing\n * the request with a new period. Amazon S3 updates the restoration period relative to the current\n * time and charges only for the request-there are no data transfer charges. You cannot\n * update the restoration period when Amazon S3 is actively processing your current restore request\n * for the object.

\n *

If your bucket has a lifecycle configuration with a rule that includes an expiration\n * action, the object expiration overrides the life span that you specify in a restore\n * request. For example, if you restore an object copy for 10 days, but the object is\n * scheduled to expire in 3 days, Amazon S3 deletes the object in 3 days. For more information\n * about lifecycle configuration, see PutBucketLifecycleConfiguration and Object Lifecycle Management in\n * Amazon Simple Storage Service Developer Guide.

\n *

\n * Responses\n *

\n *

A successful operation returns either the 200 OK or 202\n * Accepted status code.

\n *
    \n *
  • \n *

    If the object is not previously restored, then Amazon S3 returns 202\n * Accepted in the response.

    \n *
  • \n *
  • \n *

    If the object is previously restored, Amazon S3 returns 200 OK in the\n * response.

    \n *
  • \n *
\n *

\n * Special Errors\n *

\n *
    \n *
  • \n *
      \n *
    • \n *

      \n * Code: RestoreAlreadyInProgress\n *

      \n *
    • \n *
    • \n *

      \n * Cause: Object restore is already in progress. (This error does not\n * apply to SELECT type requests.)\n *

      \n *
    • \n *
    • \n *

      \n * HTTP Status Code: 409 Conflict\n *

      \n *
    • \n *
    • \n *

      \n * SOAP Fault Code Prefix: Client\n *

      \n *
    • \n *
    \n *
  • \n *
  • \n *
      \n *
    • \n *

      \n * Code: GlacierExpeditedRetrievalNotAvailable\n *

      \n *
    • \n *
    • \n *

      \n * Cause: expedited retrievals are currently not available. Try again\n * later. (Returned if there is insufficient capacity to process the Expedited\n * request. This error applies only to Expedited retrievals and not to\n * S3 Standard or Bulk retrievals.)\n *

      \n *
    • \n *
    • \n *

      \n * HTTP Status Code: 503\n *

      \n *
    • \n *
    • \n *

      \n * SOAP Fault Code Prefix: N/A\n *

      \n *
    • \n *
    \n *
  • \n *
\n *\n *

\n * Related Resources\n *

\n * \n */\nvar RestoreObjectCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(RestoreObjectCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function RestoreObjectCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n RestoreObjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_4__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"RestoreObjectCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_2__[\"RestoreObjectRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"RestoreObjectOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n RestoreObjectCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_3__[\"serializeAws_restXmlRestoreObjectCommand\"])(input, context);\n };\n RestoreObjectCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_3__[\"deserializeAws_restXmlRestoreObjectCommand\"])(output, context);\n };\n return RestoreObjectCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=RestoreObjectCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/RestoreObjectCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/SelectObjectContentCommand.js": /*!****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/SelectObjectContentCommand.js ***! \****************************************************************************************/ /*! exports provided: SelectObjectContentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentCommand\", function() { return SelectObjectContentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-ssec */ \"./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

This operation filters the contents of an Amazon S3 object based on a simple structured query\n * language (SQL) statement. In the request, along with the SQL expression, you must also\n * specify a data serialization format (JSON, CSV, or Apache Parquet) of the object. Amazon S3 uses\n * this format to parse object data into records, and returns only records that match the\n * specified SQL expression. You must also specify the data serialization format for the\n * response.

\n *

This action is not supported by Amazon S3 on Outposts.

\n *

For more information about Amazon S3 Select,\n * see Selecting Content from\n * Objects in the Amazon Simple Storage Service Developer Guide.

\n *

For more information about using SQL with Amazon S3 Select, see SQL Reference for Amazon S3 Select\n * and S3 Glacier Select in the Amazon Simple Storage Service Developer Guide.

\n *

\n *

\n * Permissions\n *

\n *

You must have s3:GetObject permission for this operation. Amazon S3 Select does\n * not support anonymous access. For more information about permissions, see Specifying Permissions in a Policy\n * in the Amazon Simple Storage Service Developer Guide.

\n *

\n *

\n * Object Data Formats\n *

\n *

You can use Amazon S3 Select to query objects that have the following format\n * properties:

\n *
    \n *
  • \n *

    \n * CSV, JSON, and Parquet - Objects must be in CSV, JSON, or\n * Parquet format.

    \n *
  • \n *
  • \n *

    \n * UTF-8 - UTF-8 is the only encoding type Amazon S3 Select\n * supports.

    \n *
  • \n *
  • \n *

    \n * GZIP or BZIP2 - CSV and JSON files can be compressed using\n * GZIP or BZIP2. GZIP and BZIP2 are the only compression formats that Amazon S3 Select\n * supports for CSV and JSON files. Amazon S3 Select supports columnar compression for\n * Parquet using GZIP or Snappy. Amazon S3 Select does not support whole-object compression\n * for Parquet objects.

    \n *
  • \n *
  • \n *

    \n * Server-side encryption - Amazon S3 Select supports querying\n * objects that are protected with server-side encryption.

    \n *

    For objects that are encrypted with customer-provided encryption keys (SSE-C), you\n * must use HTTPS, and you must use the headers that are documented in the GetObject. For more information about SSE-C, see Server-Side Encryption\n * (Using Customer-Provided Encryption Keys) in the\n * Amazon Simple Storage Service Developer Guide.

    \n *

    For objects that are encrypted with Amazon S3 managed encryption keys (SSE-S3) and\n * customer master keys (CMKs) stored in AWS Key Management Service (SSE-KMS),\n * server-side encryption is handled transparently, so you don't need to specify\n * anything. For more information about server-side encryption, including SSE-S3 and\n * SSE-KMS, see Protecting Data Using\n * Server-Side Encryption in the Amazon Simple Storage Service Developer Guide.

    \n *
  • \n *
\n *\n *

\n * Working with the Response Body\n *

\n *

Given the response size is unknown, Amazon S3 Select streams the response as a series of\n * messages and includes a Transfer-Encoding header with chunked as\n * its value in the response. For more information, see Appendix: SelectObjectContent\n * Response\n * .

\n *\n *

\n *

\n * GetObject Support\n *

\n *

The SelectObjectContent operation does not support the following\n * GetObject functionality. For more information, see GetObject.

\n *
    \n *
  • \n *

    \n * Range: Although you can specify a scan range for an Amazon S3 Select request\n * (see SelectObjectContentRequest - ScanRange in the request parameters),\n * you cannot specify the range of bytes of an object to return.

    \n *
  • \n *
  • \n *

    GLACIER, DEEP_ARCHIVE and REDUCED_REDUNDANCY storage classes: You cannot specify\n * the GLACIER, DEEP_ARCHIVE, or REDUCED_REDUNDANCY storage classes. For\n * more information, about storage classes see Storage Classes\n * in the Amazon Simple Storage Service Developer Guide.

    \n *
  • \n *
\n *

\n *

\n * Special Errors\n *

\n *\n *

For a list of special errors for this operation, see List of\n * SELECT Object Content Error Codes\n *

\n *

\n * Related Resources\n *

\n * \n */\nvar SelectObjectContentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(SelectObjectContentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function SelectObjectContentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n SelectObjectContentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__[\"getSsecPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"SelectObjectContentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"SelectObjectContentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"SelectObjectContentOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n SelectObjectContentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlSelectObjectContentCommand\"])(input, context);\n };\n SelectObjectContentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlSelectObjectContentCommand\"])(output, context);\n };\n return SelectObjectContentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=SelectObjectContentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/SelectObjectContentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCommand.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCommand.js ***! \*******************************************************************************/ /*! exports provided: UploadPartCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCommand\", function() { return UploadPartCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-ssec */ \"./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n/**\n *

Uploads a part in a multipart upload.

\n * \n *

In this operation, you provide part data in your request. However, you have an option\n * to specify your existing Amazon S3 object as a data source for the part you are uploading. To\n * upload a part from an existing object, you use the UploadPartCopy operation.\n *

\n *
\n *\n *

You must initiate a multipart upload (see CreateMultipartUpload)\n * before you can upload any part. In response to your initiate request, Amazon S3 returns an\n * upload ID, a unique identifier, that you must include in your upload part request.

\n *

Part numbers can be any number from 1 to 10,000, inclusive. A part number uniquely\n * identifies a part and also defines its position within the object being created. If you\n * upload a new part using the same part number that was used with a previous part, the\n * previously uploaded part is overwritten. Each part must be at least 5 MB in size, except\n * the last part. There is no size limit on the last part of your multipart upload.

\n *

To ensure that data is not corrupted when traversing the network, specify the\n * Content-MD5 header in the upload part request. Amazon S3 checks the part data\n * against the provided MD5 value. If they do not match, Amazon S3 returns an error.

\n *\n *

If the upload request is signed with Signature Version 4, then AWS S3 uses the\n * x-amz-content-sha256 header as a checksum instead of\n * Content-MD5. For more information see Authenticating Requests: Using the Authorization Header (AWS Signature Version\n * 4).

\n *\n *\n *\n *

\n * Note: After you initiate multipart upload and upload\n * one or more parts, you must either complete or abort multipart upload in order to stop\n * getting charged for storage of the uploaded parts. Only after you either complete or abort\n * multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts\n * storage.

\n *\n *

For more information on multipart uploads, go to Multipart Upload Overview in the\n * Amazon Simple Storage Service Developer Guide .

\n *

For information on the permissions required to use the multipart upload API, go to\n * Multipart Upload API and\n * Permissions in the Amazon Simple Storage Service Developer Guide.

\n *\n *

You can optionally request server-side encryption where Amazon S3 encrypts your data as it\n * writes it to disks in its data centers and decrypts it for you when you access it. You have\n * the option of providing your own encryption key, or you can use the AWS managed encryption\n * keys. If you choose to provide your own encryption key, the request headers you provide in\n * the request must match the headers you used in the request to initiate the upload by using\n * CreateMultipartUpload. For more information, go to Using Server-Side Encryption in\n * the Amazon Simple Storage Service Developer Guide.

\n *\n *

Server-side encryption is supported by the S3 Multipart Upload actions. Unless you are\n * using a customer-provided encryption key, you don't need to specify the encryption\n * parameters in each UploadPart request. Instead, you only need to specify the server-side\n * encryption parameters in the initial Initiate Multipart request. For more information, see\n * CreateMultipartUpload.

\n *\n *

If you requested server-side encryption using a customer-provided encryption key in your\n * initiate multipart upload request, you must provide identical encryption information in\n * each part upload using the following headers.

\n *\n *\n *
    \n *
  • \n *

    x-amz-server-side-encryption-customer-algorithm

    \n *
  • \n *
  • \n *

    x-amz-server-side-encryption-customer-key

    \n *
  • \n *
  • \n *

    x-amz-server-side-encryption-customer-key-MD5

    \n *
  • \n *
\n *\n *

\n * Special Errors\n *

\n *
    \n *
  • \n *
      \n *
    • \n *

      \n * Code: NoSuchUpload\n *

      \n *
    • \n *
    • \n *

      \n * Cause: The specified multipart upload does not exist. The upload\n * ID might be invalid, or the multipart upload might have been aborted or\n * completed.\n *

      \n *
    • \n *
    • \n *

      \n * HTTP Status Code: 404 Not Found \n *

      \n *
    • \n *
    • \n *

      \n * SOAP Fault Code Prefix: Client\n *

      \n *
    • \n *
    \n *
  • \n *
\n *\n *\n *\n *\n *\n *\n *

\n * Related Resources\n *

\n * \n */\nvar UploadPartCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UploadPartCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UploadPartCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UploadPartCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_4__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_5__[\"getSsecPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"UploadPartCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UploadPartRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UploadPartOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UploadPartCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlUploadPartCommand\"])(input, context);\n };\n UploadPartCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlUploadPartCommand\"])(output, context);\n };\n return UploadPartCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_6__[\"Command\"]));\n\n//# sourceMappingURL=UploadPartCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCopyCommand.js": /*!***********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCopyCommand.js ***! \***********************************************************************************/ /*! exports provided: UploadPartCopyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCopyCommand\", function() { return UploadPartCopyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_1 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_1.js\");\n/* harmony import */ var _protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_restXml */ \"./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js\");\n/* harmony import */ var _aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-bucket-endpoint */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_sdk_s3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-sdk-s3 */ \"./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-ssec */ \"./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n/**\n *

Uploads a part by copying data from an existing object as data source. You specify the\n * data source by adding the request header x-amz-copy-source in your request and\n * a byte range by adding the request header x-amz-copy-source-range in your\n * request.

\n *

The minimum allowable part size for a multipart upload is 5 MB. For more information\n * about multipart upload limits, go to Quick\n * Facts in the Amazon Simple Storage Service Developer Guide.

\n * \n *

Instead of using an existing object as part data, you might use the UploadPart\n * operation and provide data in your request.

\n *
\n *\n *

You must initiate a multipart upload before you can upload any part. In response to your\n * initiate request. Amazon S3 returns a unique identifier, the upload ID, that you must include in\n * your upload part request.

\n *

For more information about using the UploadPartCopy operation, see the\n * following:

\n *\n *
    \n *
  • \n *

    For conceptual information about multipart uploads, see Uploading Objects Using Multipart\n * Upload in the Amazon Simple Storage Service Developer Guide.

    \n *
  • \n *
  • \n *

    For information about permissions required to use the multipart upload API, see\n * Multipart Upload API and\n * Permissions in the Amazon Simple Storage Service Developer Guide.

    \n *
  • \n *
  • \n *

    For information about copying objects using a single atomic operation vs. the\n * multipart upload, see Operations on\n * Objects in the Amazon Simple Storage Service Developer Guide.

    \n *
  • \n *
  • \n *

    For information about using server-side encryption with customer-provided\n * encryption keys with the UploadPartCopy operation, see CopyObject and UploadPart.

    \n *
  • \n *
\n *

Note the following additional considerations about the request headers\n * x-amz-copy-source-if-match, x-amz-copy-source-if-none-match,\n * x-amz-copy-source-if-unmodified-since, and\n * x-amz-copy-source-if-modified-since:

\n *

\n *
    \n *
  • \n *

    \n * Consideration 1 - If both of the\n * x-amz-copy-source-if-match and\n * x-amz-copy-source-if-unmodified-since headers are present in the\n * request as follows:

    \n *

    \n * x-amz-copy-source-if-match condition evaluates to true,\n * and;

    \n *

    \n * x-amz-copy-source-if-unmodified-since condition evaluates to\n * false;

    \n *

    Amazon S3 returns 200 OK and copies the data.\n *

    \n *\n *
  • \n *
  • \n *

    \n * Consideration 2 - If both of the\n * x-amz-copy-source-if-none-match and\n * x-amz-copy-source-if-modified-since headers are present in the\n * request as follows:

    \n *

    \n * x-amz-copy-source-if-none-match condition evaluates to\n * false, and;

    \n *

    \n * x-amz-copy-source-if-modified-since condition evaluates to\n * true;

    \n *

    Amazon S3 returns 412 Precondition Failed response code.\n *

    \n *
  • \n *
\n *

\n * Versioning\n *

\n *

If your bucket has versioning enabled, you could have multiple versions of the same\n * object. By default, x-amz-copy-source identifies the current version of the\n * object to copy. If the current version is a delete marker and you don't specify a versionId\n * in the x-amz-copy-source, Amazon S3 returns a 404 error, because the object does\n * not exist. If you specify versionId in the x-amz-copy-source and the versionId\n * is a delete marker, Amazon S3 returns an HTTP 400 error, because you are not allowed to specify\n * a delete marker as a version for the x-amz-copy-source.

\n *

You can optionally specify a specific version of the source object to copy by adding the\n * versionId subresource as shown in the following example:

\n *

\n * x-amz-copy-source: /bucket/object?versionId=version id\n *

\n *\n *

\n * Special Errors\n *

\n *
    \n *
  • \n *
      \n *
    • \n *

      \n * Code: NoSuchUpload\n *

      \n *
    • \n *
    • \n *

      \n * Cause: The specified multipart upload does not exist. The upload\n * ID might be invalid, or the multipart upload might have been aborted or\n * completed.\n *

      \n *
    • \n *
    • \n *

      \n * HTTP Status Code: 404 Not Found\n *

      \n *
    • \n *
    \n *
  • \n *
  • \n *
      \n *
    • \n *

      \n * Code: InvalidRequest\n *

      \n *
    • \n *
    • \n *

      \n * Cause: The specified copy source is not supported as a byte-range\n * copy source.\n *

      \n *
    • \n *
    • \n *

      \n * HTTP Status Code: 400 Bad Request\n *

      \n *
    • \n *
    \n *
  • \n *
\n *\n *\n *\n *\n *\n *\n *

\n * Related Resources\n *

\n * \n */\nvar UploadPartCopyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UploadPartCopyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UploadPartCopyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UploadPartCopyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_5__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n this.middlewareStack.use(Object(_aws_sdk_middleware_sdk_s3__WEBPACK_IMPORTED_MODULE_4__[\"getThrow200ExceptionsPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_ssec__WEBPACK_IMPORTED_MODULE_6__[\"getSsecPlugin\"])(configuration));\n this.middlewareStack.use(Object(_aws_sdk_middleware_bucket_endpoint__WEBPACK_IMPORTED_MODULE_3__[\"getBucketEndpointPlugin\"])(configuration));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"S3Client\";\n var commandName = \"UploadPartCopyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UploadPartCopyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_1__WEBPACK_IMPORTED_MODULE_1__[\"UploadPartCopyOutput\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UploadPartCopyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_restXmlUploadPartCopyCommand\"])(input, context);\n };\n UploadPartCopyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_restXml__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_restXmlUploadPartCopyCommand\"])(output, context);\n };\n return UploadPartCopyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_7__[\"Command\"]));\n\n//# sourceMappingURL=UploadPartCopyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCopyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/endpoints.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/endpoints.js ***! \**************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"s3.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"s3.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"s3.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"s3.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"s3.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"af-south-1\":\n regionInfo = {\n hostname: \"s3.af-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-east-1\":\n regionInfo = {\n hostname: \"s3.ap-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"s3.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"s3.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"s3.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"s3.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"s3.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"aws-global\":\n regionInfo = {\n hostname: \"s3.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"s3.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"cn-north-1\":\n regionInfo = {\n hostname: \"s3.cn-north-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"cn-northwest-1\":\n regionInfo = {\n hostname: \"s3.cn-northwest-1.amazonaws.com.cn\",\n partition: \"aws-cn\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"s3.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-north-1\":\n regionInfo = {\n hostname: \"s3.eu-north-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-south-1\":\n regionInfo = {\n hostname: \"s3.eu-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"s3.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"s3.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-3\":\n regionInfo = {\n hostname: \"s3.eu-west-3.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"fips-us-gov-west-1\":\n regionInfo = {\n hostname: \"s3-fips.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"me-south-1\":\n regionInfo = {\n hostname: \"s3.me-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"s3-external-1\":\n regionInfo = {\n hostname: \"s3-external-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"sa-east-1\":\n regionInfo = {\n hostname: \"s3.sa-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"s3.us-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-2\":\n regionInfo = {\n hostname: \"s3.us-east-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-gov-east-1\":\n regionInfo = {\n hostname: \"s3.us-gov-east-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"s3.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n };\n break;\n case \"us-iso-east-1\":\n regionInfo = {\n hostname: \"s3.us-iso-east-1.c2s.ic.gov\",\n partition: \"aws-iso\",\n };\n break;\n case \"us-isob-east-1\":\n regionInfo = {\n hostname: \"s3.us-isob-east-1.sc2s.sgov.gov\",\n partition: \"aws-iso-b\",\n };\n break;\n case \"us-west-1\":\n regionInfo = {\n hostname: \"s3.us-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"s3.us-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"s3\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/index.js": /*!**********************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/index.js ***! \**********************************************************/ /*! exports provided: S3Client, S3, AbortMultipartUploadCommand, CompleteMultipartUploadCommand, CopyObjectCommand, CreateBucketCommand, CreateMultipartUploadCommand, DeleteBucketCommand, DeleteBucketAnalyticsConfigurationCommand, DeleteBucketCorsCommand, DeleteBucketEncryptionCommand, DeleteBucketIntelligentTieringConfigurationCommand, DeleteBucketInventoryConfigurationCommand, DeleteBucketLifecycleCommand, DeleteBucketMetricsConfigurationCommand, DeleteBucketOwnershipControlsCommand, DeleteBucketPolicyCommand, DeleteBucketReplicationCommand, DeleteBucketTaggingCommand, DeleteBucketWebsiteCommand, DeleteObjectCommand, DeleteObjectsCommand, DeleteObjectTaggingCommand, DeletePublicAccessBlockCommand, GetBucketAccelerateConfigurationCommand, GetBucketAclCommand, GetBucketAnalyticsConfigurationCommand, GetBucketCorsCommand, GetBucketEncryptionCommand, GetBucketIntelligentTieringConfigurationCommand, GetBucketInventoryConfigurationCommand, GetBucketLifecycleConfigurationCommand, GetBucketLocationCommand, GetBucketLoggingCommand, GetBucketMetricsConfigurationCommand, GetBucketNotificationConfigurationCommand, GetBucketOwnershipControlsCommand, GetBucketPolicyCommand, GetBucketPolicyStatusCommand, GetBucketReplicationCommand, GetBucketRequestPaymentCommand, GetBucketTaggingCommand, GetBucketVersioningCommand, GetBucketWebsiteCommand, GetObjectCommand, GetObjectAclCommand, GetObjectLegalHoldCommand, GetObjectLockConfigurationCommand, GetObjectRetentionCommand, GetObjectTaggingCommand, GetObjectTorrentCommand, GetPublicAccessBlockCommand, HeadBucketCommand, waitForBucketExists, HeadObjectCommand, waitForObjectExists, ListBucketAnalyticsConfigurationsCommand, ListBucketIntelligentTieringConfigurationsCommand, ListBucketInventoryConfigurationsCommand, ListBucketMetricsConfigurationsCommand, ListBucketsCommand, ListMultipartUploadsCommand, ListObjectsCommand, ListObjectsV2Command, paginateListObjectsV2, ListObjectVersionsCommand, ListPartsCommand, paginateListParts, PutBucketAccelerateConfigurationCommand, PutBucketAclCommand, PutBucketAnalyticsConfigurationCommand, PutBucketCorsCommand, PutBucketEncryptionCommand, PutBucketIntelligentTieringConfigurationCommand, PutBucketInventoryConfigurationCommand, PutBucketLifecycleConfigurationCommand, PutBucketLoggingCommand, PutBucketMetricsConfigurationCommand, PutBucketNotificationConfigurationCommand, PutBucketOwnershipControlsCommand, PutBucketPolicyCommand, PutBucketReplicationCommand, PutBucketRequestPaymentCommand, PutBucketTaggingCommand, PutBucketVersioningCommand, PutBucketWebsiteCommand, PutObjectCommand, PutObjectAclCommand, PutObjectLegalHoldCommand, PutObjectLockConfigurationCommand, PutObjectRetentionCommand, PutObjectTaggingCommand, PutPublicAccessBlockCommand, RestoreObjectCommand, SelectObjectContentCommand, UploadPartCommand, UploadPartCopyCommand, AbortIncompleteMultipartUpload, AbortMultipartUploadOutput, AbortMultipartUploadRequest, NoSuchUpload, AccelerateConfiguration, Grantee, Grant, Owner, AccessControlPolicy, AccessControlTranslation, CompleteMultipartUploadOutput, CompletedPart, CompletedMultipartUpload, CompleteMultipartUploadRequest, CopyObjectResult, CopyObjectOutput, CopyObjectRequest, ObjectNotInActiveTierError, BucketAlreadyExists, BucketAlreadyOwnedByYou, CreateBucketOutput, CreateBucketConfiguration, CreateBucketRequest, CreateMultipartUploadOutput, CreateMultipartUploadRequest, DeleteBucketRequest, DeleteBucketAnalyticsConfigurationRequest, DeleteBucketCorsRequest, DeleteBucketEncryptionRequest, DeleteBucketIntelligentTieringConfigurationRequest, DeleteBucketInventoryConfigurationRequest, DeleteBucketLifecycleRequest, DeleteBucketMetricsConfigurationRequest, DeleteBucketOwnershipControlsRequest, DeleteBucketPolicyRequest, DeleteBucketReplicationRequest, DeleteBucketTaggingRequest, DeleteBucketWebsiteRequest, DeleteObjectOutput, DeleteObjectRequest, DeletedObject, _Error, DeleteObjectsOutput, ObjectIdentifier, Delete, DeleteObjectsRequest, DeleteObjectTaggingOutput, DeleteObjectTaggingRequest, DeletePublicAccessBlockRequest, GetBucketAccelerateConfigurationOutput, GetBucketAccelerateConfigurationRequest, GetBucketAclOutput, GetBucketAclRequest, Tag, AnalyticsAndOperator, AnalyticsFilter, AnalyticsS3BucketDestination, AnalyticsExportDestination, StorageClassAnalysisDataExport, StorageClassAnalysis, AnalyticsConfiguration, GetBucketAnalyticsConfigurationOutput, GetBucketAnalyticsConfigurationRequest, CORSRule, GetBucketCorsOutput, GetBucketCorsRequest, ServerSideEncryptionByDefault, ServerSideEncryptionRule, ServerSideEncryptionConfiguration, GetBucketEncryptionOutput, GetBucketEncryptionRequest, IntelligentTieringAndOperator, IntelligentTieringFilter, Tiering, IntelligentTieringConfiguration, GetBucketIntelligentTieringConfigurationOutput, GetBucketIntelligentTieringConfigurationRequest, SSEKMS, SSES3, InventoryEncryption, InventoryS3BucketDestination, InventoryDestination, InventoryFilter, InventorySchedule, InventoryConfiguration, GetBucketInventoryConfigurationOutput, GetBucketInventoryConfigurationRequest, LifecycleExpiration, LifecycleRuleAndOperator, LifecycleRuleFilter, NoncurrentVersionExpiration, NoncurrentVersionTransition, Transition, LifecycleRule, GetBucketLifecycleConfigurationOutput, GetBucketLifecycleConfigurationRequest, GetBucketLocationOutput, GetBucketLocationRequest, TargetGrant, LoggingEnabled, GetBucketLoggingOutput, GetBucketLoggingRequest, MetricsAndOperator, MetricsFilter, MetricsConfiguration, GetBucketMetricsConfigurationOutput, GetBucketMetricsConfigurationRequest, GetBucketNotificationConfigurationRequest, FilterRule, S3KeyFilter, NotificationConfigurationFilter, LambdaFunctionConfiguration, QueueConfiguration, TopicConfiguration, NotificationConfiguration, OwnershipControlsRule, OwnershipControls, GetBucketOwnershipControlsOutput, GetBucketOwnershipControlsRequest, GetBucketPolicyOutput, GetBucketPolicyRequest, PolicyStatus, GetBucketPolicyStatusOutput, GetBucketPolicyStatusRequest, DeleteMarkerReplication, EncryptionConfiguration, ReplicationTimeValue, Metrics, ReplicationTime, Destination, ExistingObjectReplication, ReplicationRuleAndOperator, ReplicationRuleFilter, ReplicaModifications, SseKmsEncryptedObjects, SourceSelectionCriteria, ReplicationRule, ReplicationConfiguration, GetBucketReplicationOutput, GetBucketReplicationRequest, GetBucketRequestPaymentOutput, GetBucketRequestPaymentRequest, GetBucketTaggingOutput, GetBucketTaggingRequest, GetBucketVersioningOutput, GetBucketVersioningRequest, ErrorDocument, IndexDocument, RedirectAllRequestsTo, Condition, Redirect, RoutingRule, GetBucketWebsiteOutput, GetBucketWebsiteRequest, GetObjectOutput, GetObjectRequest, InvalidObjectState, NoSuchKey, GetObjectAclOutput, GetObjectAclRequest, ObjectLockLegalHold, GetObjectLegalHoldOutput, GetObjectLegalHoldRequest, DefaultRetention, ObjectLockRule, ObjectLockConfiguration, GetObjectLockConfigurationOutput, GetObjectLockConfigurationRequest, ObjectLockRetention, GetObjectRetentionOutput, GetObjectRetentionRequest, GetObjectTaggingOutput, GetObjectTaggingRequest, GetObjectTorrentOutput, GetObjectTorrentRequest, PublicAccessBlockConfiguration, GetPublicAccessBlockOutput, GetPublicAccessBlockRequest, HeadBucketRequest, NoSuchBucket, HeadObjectOutput, HeadObjectRequest, ListBucketAnalyticsConfigurationsOutput, ListBucketAnalyticsConfigurationsRequest, ListBucketIntelligentTieringConfigurationsOutput, ListBucketIntelligentTieringConfigurationsRequest, ListBucketInventoryConfigurationsOutput, ListBucketInventoryConfigurationsRequest, ListBucketMetricsConfigurationsOutput, ListBucketMetricsConfigurationsRequest, Bucket, ListBucketsOutput, CommonPrefix, Initiator, MultipartUpload, ListMultipartUploadsOutput, ListMultipartUploadsRequest, _Object, ListObjectsOutput, ListObjectsRequest, ListObjectsV2Output, ListObjectsV2Request, DeleteMarkerEntry, ObjectVersion, ListObjectVersionsOutput, ListObjectVersionsRequest, Part, ListPartsOutput, ListPartsRequest, PutBucketAccelerateConfigurationRequest, PutBucketAclRequest, PutBucketAnalyticsConfigurationRequest, CORSConfiguration, PutBucketCorsRequest, PutBucketEncryptionRequest, PutBucketIntelligentTieringConfigurationRequest, PutBucketInventoryConfigurationRequest, BucketLifecycleConfiguration, PutBucketLifecycleConfigurationRequest, BucketLoggingStatus, PutBucketLoggingRequest, PutBucketMetricsConfigurationRequest, PutBucketNotificationConfigurationRequest, PutBucketOwnershipControlsRequest, PutBucketPolicyRequest, PutBucketReplicationRequest, RequestPaymentConfiguration, PutBucketRequestPaymentRequest, Tagging, PutBucketTaggingRequest, VersioningConfiguration, PutBucketVersioningRequest, WebsiteConfiguration, PutBucketWebsiteRequest, PutObjectOutput, PutObjectRequest, PutObjectAclOutput, PutObjectAclRequest, PutObjectLegalHoldOutput, PutObjectLegalHoldRequest, PutObjectLockConfigurationOutput, PutObjectLockConfigurationRequest, PutObjectRetentionOutput, PutObjectRetentionRequest, PutObjectTaggingOutput, PutObjectTaggingRequest, PutPublicAccessBlockRequest, ObjectAlreadyInActiveTierError, RestoreObjectOutput, GlacierJobParameters, Encryption, MetadataEntry, S3Location, OutputLocation, FileHeaderInfo, CSVInput, JSONType, JSONInput, ParquetInput, InputSerialization, QuoteFields, CSVOutput, JSONOutput, OutputSerialization, SelectParameters, RestoreRequestType, RestoreRequest, RestoreObjectRequest, ContinuationEvent, EndEvent, Progress, ProgressEvent, RecordsEvent, Stats, StatsEvent, SelectObjectContentEventStream, SelectObjectContentOutput, RequestProgress, ScanRange, SelectObjectContentRequest, UploadPartOutput, UploadPartRequest, CopyPartResult, UploadPartCopyOutput, UploadPartCopyRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _S3Client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./S3Client */ \"./node_modules/@aws-sdk/client-s3/dist/es/S3Client.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3Client\", function() { return _S3Client__WEBPACK_IMPORTED_MODULE_0__[\"S3Client\"]; });\n\n/* harmony import */ var _S3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./S3 */ \"./node_modules/@aws-sdk/client-s3/dist/es/S3.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3\", function() { return _S3__WEBPACK_IMPORTED_MODULE_1__[\"S3\"]; });\n\n/* harmony import */ var _commands_AbortMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/AbortMultipartUploadCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/AbortMultipartUploadCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbortMultipartUploadCommand\", function() { return _commands_AbortMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_2__[\"AbortMultipartUploadCommand\"]; });\n\n/* harmony import */ var _commands_CompleteMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/CompleteMultipartUploadCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/CompleteMultipartUploadCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompleteMultipartUploadCommand\", function() { return _commands_CompleteMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_3__[\"CompleteMultipartUploadCommand\"]; });\n\n/* harmony import */ var _commands_CopyObjectCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/CopyObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/CopyObjectCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectCommand\", function() { return _commands_CopyObjectCommand__WEBPACK_IMPORTED_MODULE_4__[\"CopyObjectCommand\"]; });\n\n/* harmony import */ var _commands_CreateBucketCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/CreateBucketCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateBucketCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketCommand\", function() { return _commands_CreateBucketCommand__WEBPACK_IMPORTED_MODULE_5__[\"CreateBucketCommand\"]; });\n\n/* harmony import */ var _commands_CreateMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/CreateMultipartUploadCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/CreateMultipartUploadCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMultipartUploadCommand\", function() { return _commands_CreateMultipartUploadCommand__WEBPACK_IMPORTED_MODULE_6__[\"CreateMultipartUploadCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/DeleteBucketCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketCommand\", function() { return _commands_DeleteBucketCommand__WEBPACK_IMPORTED_MODULE_7__[\"DeleteBucketCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/DeleteBucketAnalyticsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketAnalyticsConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketAnalyticsConfigurationCommand\", function() { return _commands_DeleteBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_8__[\"DeleteBucketAnalyticsConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketCorsCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/DeleteBucketCorsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketCorsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketCorsCommand\", function() { return _commands_DeleteBucketCorsCommand__WEBPACK_IMPORTED_MODULE_9__[\"DeleteBucketCorsCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/DeleteBucketEncryptionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketEncryptionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketEncryptionCommand\", function() { return _commands_DeleteBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_10__[\"DeleteBucketEncryptionCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/DeleteBucketIntelligentTieringConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketIntelligentTieringConfigurationCommand\", function() { return _commands_DeleteBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_11__[\"DeleteBucketIntelligentTieringConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/DeleteBucketInventoryConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketInventoryConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketInventoryConfigurationCommand\", function() { return _commands_DeleteBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_12__[\"DeleteBucketInventoryConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketLifecycleCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/DeleteBucketLifecycleCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketLifecycleCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketLifecycleCommand\", function() { return _commands_DeleteBucketLifecycleCommand__WEBPACK_IMPORTED_MODULE_13__[\"DeleteBucketLifecycleCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/DeleteBucketMetricsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketMetricsConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketMetricsConfigurationCommand\", function() { return _commands_DeleteBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_14__[\"DeleteBucketMetricsConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/DeleteBucketOwnershipControlsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketOwnershipControlsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketOwnershipControlsCommand\", function() { return _commands_DeleteBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_15__[\"DeleteBucketOwnershipControlsCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/DeleteBucketPolicyCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketPolicyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketPolicyCommand\", function() { return _commands_DeleteBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_16__[\"DeleteBucketPolicyCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/DeleteBucketReplicationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketReplicationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketReplicationCommand\", function() { return _commands_DeleteBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_17__[\"DeleteBucketReplicationCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/DeleteBucketTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketTaggingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketTaggingCommand\", function() { return _commands_DeleteBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_18__[\"DeleteBucketTaggingCommand\"]; });\n\n/* harmony import */ var _commands_DeleteBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./commands/DeleteBucketWebsiteCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteBucketWebsiteCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketWebsiteCommand\", function() { return _commands_DeleteBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_19__[\"DeleteBucketWebsiteCommand\"]; });\n\n/* harmony import */ var _commands_DeleteObjectCommand__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./commands/DeleteObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectCommand\", function() { return _commands_DeleteObjectCommand__WEBPACK_IMPORTED_MODULE_20__[\"DeleteObjectCommand\"]; });\n\n/* harmony import */ var _commands_DeleteObjectsCommand__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./commands/DeleteObjectsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectsCommand\", function() { return _commands_DeleteObjectsCommand__WEBPACK_IMPORTED_MODULE_21__[\"DeleteObjectsCommand\"]; });\n\n/* harmony import */ var _commands_DeleteObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./commands/DeleteObjectTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeleteObjectTaggingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectTaggingCommand\", function() { return _commands_DeleteObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_22__[\"DeleteObjectTaggingCommand\"]; });\n\n/* harmony import */ var _commands_DeletePublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./commands/DeletePublicAccessBlockCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/DeletePublicAccessBlockCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePublicAccessBlockCommand\", function() { return _commands_DeletePublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_23__[\"DeletePublicAccessBlockCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketAccelerateConfigurationCommand__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./commands/GetBucketAccelerateConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAccelerateConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAccelerateConfigurationCommand\", function() { return _commands_GetBucketAccelerateConfigurationCommand__WEBPACK_IMPORTED_MODULE_24__[\"GetBucketAccelerateConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketAclCommand__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./commands/GetBucketAclCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAclCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAclCommand\", function() { return _commands_GetBucketAclCommand__WEBPACK_IMPORTED_MODULE_25__[\"GetBucketAclCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./commands/GetBucketAnalyticsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketAnalyticsConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAnalyticsConfigurationCommand\", function() { return _commands_GetBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_26__[\"GetBucketAnalyticsConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketCorsCommand__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./commands/GetBucketCorsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketCorsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketCorsCommand\", function() { return _commands_GetBucketCorsCommand__WEBPACK_IMPORTED_MODULE_27__[\"GetBucketCorsCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./commands/GetBucketEncryptionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketEncryptionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketEncryptionCommand\", function() { return _commands_GetBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_28__[\"GetBucketEncryptionCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./commands/GetBucketIntelligentTieringConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketIntelligentTieringConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketIntelligentTieringConfigurationCommand\", function() { return _commands_GetBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_29__[\"GetBucketIntelligentTieringConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./commands/GetBucketInventoryConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketInventoryConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketInventoryConfigurationCommand\", function() { return _commands_GetBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_30__[\"GetBucketInventoryConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketLifecycleConfigurationCommand__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./commands/GetBucketLifecycleConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLifecycleConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLifecycleConfigurationCommand\", function() { return _commands_GetBucketLifecycleConfigurationCommand__WEBPACK_IMPORTED_MODULE_31__[\"GetBucketLifecycleConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketLocationCommand__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./commands/GetBucketLocationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLocationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLocationCommand\", function() { return _commands_GetBucketLocationCommand__WEBPACK_IMPORTED_MODULE_32__[\"GetBucketLocationCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketLoggingCommand__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./commands/GetBucketLoggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketLoggingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLoggingCommand\", function() { return _commands_GetBucketLoggingCommand__WEBPACK_IMPORTED_MODULE_33__[\"GetBucketLoggingCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./commands/GetBucketMetricsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketMetricsConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketMetricsConfigurationCommand\", function() { return _commands_GetBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_34__[\"GetBucketMetricsConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketNotificationConfigurationCommand__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./commands/GetBucketNotificationConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketNotificationConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketNotificationConfigurationCommand\", function() { return _commands_GetBucketNotificationConfigurationCommand__WEBPACK_IMPORTED_MODULE_35__[\"GetBucketNotificationConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./commands/GetBucketOwnershipControlsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketOwnershipControlsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketOwnershipControlsCommand\", function() { return _commands_GetBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_36__[\"GetBucketOwnershipControlsCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./commands/GetBucketPolicyCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyCommand\", function() { return _commands_GetBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_37__[\"GetBucketPolicyCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketPolicyStatusCommand__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./commands/GetBucketPolicyStatusCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketPolicyStatusCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyStatusCommand\", function() { return _commands_GetBucketPolicyStatusCommand__WEBPACK_IMPORTED_MODULE_38__[\"GetBucketPolicyStatusCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./commands/GetBucketReplicationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketReplicationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketReplicationCommand\", function() { return _commands_GetBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_39__[\"GetBucketReplicationCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketRequestPaymentCommand__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./commands/GetBucketRequestPaymentCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketRequestPaymentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketRequestPaymentCommand\", function() { return _commands_GetBucketRequestPaymentCommand__WEBPACK_IMPORTED_MODULE_40__[\"GetBucketRequestPaymentCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./commands/GetBucketTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketTaggingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketTaggingCommand\", function() { return _commands_GetBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_41__[\"GetBucketTaggingCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketVersioningCommand__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./commands/GetBucketVersioningCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketVersioningCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketVersioningCommand\", function() { return _commands_GetBucketVersioningCommand__WEBPACK_IMPORTED_MODULE_42__[\"GetBucketVersioningCommand\"]; });\n\n/* harmony import */ var _commands_GetBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./commands/GetBucketWebsiteCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetBucketWebsiteCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketWebsiteCommand\", function() { return _commands_GetBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_43__[\"GetBucketWebsiteCommand\"]; });\n\n/* harmony import */ var _commands_GetObjectCommand__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./commands/GetObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectCommand\", function() { return _commands_GetObjectCommand__WEBPACK_IMPORTED_MODULE_44__[\"GetObjectCommand\"]; });\n\n/* harmony import */ var _commands_GetObjectAclCommand__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./commands/GetObjectAclCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectAclCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectAclCommand\", function() { return _commands_GetObjectAclCommand__WEBPACK_IMPORTED_MODULE_45__[\"GetObjectAclCommand\"]; });\n\n/* harmony import */ var _commands_GetObjectLegalHoldCommand__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./commands/GetObjectLegalHoldCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLegalHoldCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLegalHoldCommand\", function() { return _commands_GetObjectLegalHoldCommand__WEBPACK_IMPORTED_MODULE_46__[\"GetObjectLegalHoldCommand\"]; });\n\n/* harmony import */ var _commands_GetObjectLockConfigurationCommand__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./commands/GetObjectLockConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectLockConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLockConfigurationCommand\", function() { return _commands_GetObjectLockConfigurationCommand__WEBPACK_IMPORTED_MODULE_47__[\"GetObjectLockConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_GetObjectRetentionCommand__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./commands/GetObjectRetentionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectRetentionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRetentionCommand\", function() { return _commands_GetObjectRetentionCommand__WEBPACK_IMPORTED_MODULE_48__[\"GetObjectRetentionCommand\"]; });\n\n/* harmony import */ var _commands_GetObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./commands/GetObjectTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTaggingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTaggingCommand\", function() { return _commands_GetObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_49__[\"GetObjectTaggingCommand\"]; });\n\n/* harmony import */ var _commands_GetObjectTorrentCommand__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./commands/GetObjectTorrentCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetObjectTorrentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTorrentCommand\", function() { return _commands_GetObjectTorrentCommand__WEBPACK_IMPORTED_MODULE_50__[\"GetObjectTorrentCommand\"]; });\n\n/* harmony import */ var _commands_GetPublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./commands/GetPublicAccessBlockCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/GetPublicAccessBlockCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPublicAccessBlockCommand\", function() { return _commands_GetPublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_51__[\"GetPublicAccessBlockCommand\"]; });\n\n/* harmony import */ var _commands_HeadBucketCommand__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./commands/HeadBucketCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadBucketCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeadBucketCommand\", function() { return _commands_HeadBucketCommand__WEBPACK_IMPORTED_MODULE_52__[\"HeadBucketCommand\"]; });\n\n/* harmony import */ var _waiters_waitForBucketExists__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./waiters/waitForBucketExists */ \"./node_modules/@aws-sdk/client-s3/dist/es/waiters/waitForBucketExists.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"waitForBucketExists\", function() { return _waiters_waitForBucketExists__WEBPACK_IMPORTED_MODULE_53__[\"waitForBucketExists\"]; });\n\n/* harmony import */ var _commands_HeadObjectCommand__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./commands/HeadObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadObjectCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeadObjectCommand\", function() { return _commands_HeadObjectCommand__WEBPACK_IMPORTED_MODULE_54__[\"HeadObjectCommand\"]; });\n\n/* harmony import */ var _waiters_waitForObjectExists__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./waiters/waitForObjectExists */ \"./node_modules/@aws-sdk/client-s3/dist/es/waiters/waitForObjectExists.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"waitForObjectExists\", function() { return _waiters_waitForObjectExists__WEBPACK_IMPORTED_MODULE_55__[\"waitForObjectExists\"]; });\n\n/* harmony import */ var _commands_ListBucketAnalyticsConfigurationsCommand__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./commands/ListBucketAnalyticsConfigurationsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketAnalyticsConfigurationsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketAnalyticsConfigurationsCommand\", function() { return _commands_ListBucketAnalyticsConfigurationsCommand__WEBPACK_IMPORTED_MODULE_56__[\"ListBucketAnalyticsConfigurationsCommand\"]; });\n\n/* harmony import */ var _commands_ListBucketIntelligentTieringConfigurationsCommand__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./commands/ListBucketIntelligentTieringConfigurationsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketIntelligentTieringConfigurationsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketIntelligentTieringConfigurationsCommand\", function() { return _commands_ListBucketIntelligentTieringConfigurationsCommand__WEBPACK_IMPORTED_MODULE_57__[\"ListBucketIntelligentTieringConfigurationsCommand\"]; });\n\n/* harmony import */ var _commands_ListBucketInventoryConfigurationsCommand__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./commands/ListBucketInventoryConfigurationsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketInventoryConfigurationsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketInventoryConfigurationsCommand\", function() { return _commands_ListBucketInventoryConfigurationsCommand__WEBPACK_IMPORTED_MODULE_58__[\"ListBucketInventoryConfigurationsCommand\"]; });\n\n/* harmony import */ var _commands_ListBucketMetricsConfigurationsCommand__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./commands/ListBucketMetricsConfigurationsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketMetricsConfigurationsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketMetricsConfigurationsCommand\", function() { return _commands_ListBucketMetricsConfigurationsCommand__WEBPACK_IMPORTED_MODULE_59__[\"ListBucketMetricsConfigurationsCommand\"]; });\n\n/* harmony import */ var _commands_ListBucketsCommand__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./commands/ListBucketsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListBucketsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketsCommand\", function() { return _commands_ListBucketsCommand__WEBPACK_IMPORTED_MODULE_60__[\"ListBucketsCommand\"]; });\n\n/* harmony import */ var _commands_ListMultipartUploadsCommand__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./commands/ListMultipartUploadsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListMultipartUploadsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMultipartUploadsCommand\", function() { return _commands_ListMultipartUploadsCommand__WEBPACK_IMPORTED_MODULE_61__[\"ListMultipartUploadsCommand\"]; });\n\n/* harmony import */ var _commands_ListObjectsCommand__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./commands/ListObjectsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsCommand\", function() { return _commands_ListObjectsCommand__WEBPACK_IMPORTED_MODULE_62__[\"ListObjectsCommand\"]; });\n\n/* harmony import */ var _commands_ListObjectsV2Command__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./commands/ListObjectsV2Command */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsV2Command.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsV2Command\", function() { return _commands_ListObjectsV2Command__WEBPACK_IMPORTED_MODULE_63__[\"ListObjectsV2Command\"]; });\n\n/* harmony import */ var _pagination_ListObjectsV2Paginator__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./pagination/ListObjectsV2Paginator */ \"./node_modules/@aws-sdk/client-s3/dist/es/pagination/ListObjectsV2Paginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListObjectsV2\", function() { return _pagination_ListObjectsV2Paginator__WEBPACK_IMPORTED_MODULE_64__[\"paginateListObjectsV2\"]; });\n\n/* harmony import */ var _commands_ListObjectVersionsCommand__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./commands/ListObjectVersionsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectVersionsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectVersionsCommand\", function() { return _commands_ListObjectVersionsCommand__WEBPACK_IMPORTED_MODULE_65__[\"ListObjectVersionsCommand\"]; });\n\n/* harmony import */ var _commands_ListPartsCommand__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./commands/ListPartsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListPartsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPartsCommand\", function() { return _commands_ListPartsCommand__WEBPACK_IMPORTED_MODULE_66__[\"ListPartsCommand\"]; });\n\n/* harmony import */ var _pagination_ListPartsPaginator__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./pagination/ListPartsPaginator */ \"./node_modules/@aws-sdk/client-s3/dist/es/pagination/ListPartsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListParts\", function() { return _pagination_ListPartsPaginator__WEBPACK_IMPORTED_MODULE_67__[\"paginateListParts\"]; });\n\n/* harmony import */ var _commands_PutBucketAccelerateConfigurationCommand__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./commands/PutBucketAccelerateConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAccelerateConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAccelerateConfigurationCommand\", function() { return _commands_PutBucketAccelerateConfigurationCommand__WEBPACK_IMPORTED_MODULE_68__[\"PutBucketAccelerateConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketAclCommand__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./commands/PutBucketAclCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAclCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAclCommand\", function() { return _commands_PutBucketAclCommand__WEBPACK_IMPORTED_MODULE_69__[\"PutBucketAclCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./commands/PutBucketAnalyticsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketAnalyticsConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAnalyticsConfigurationCommand\", function() { return _commands_PutBucketAnalyticsConfigurationCommand__WEBPACK_IMPORTED_MODULE_70__[\"PutBucketAnalyticsConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketCorsCommand__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./commands/PutBucketCorsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketCorsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketCorsCommand\", function() { return _commands_PutBucketCorsCommand__WEBPACK_IMPORTED_MODULE_71__[\"PutBucketCorsCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./commands/PutBucketEncryptionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketEncryptionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketEncryptionCommand\", function() { return _commands_PutBucketEncryptionCommand__WEBPACK_IMPORTED_MODULE_72__[\"PutBucketEncryptionCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./commands/PutBucketIntelligentTieringConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketIntelligentTieringConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketIntelligentTieringConfigurationCommand\", function() { return _commands_PutBucketIntelligentTieringConfigurationCommand__WEBPACK_IMPORTED_MODULE_73__[\"PutBucketIntelligentTieringConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./commands/PutBucketInventoryConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketInventoryConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketInventoryConfigurationCommand\", function() { return _commands_PutBucketInventoryConfigurationCommand__WEBPACK_IMPORTED_MODULE_74__[\"PutBucketInventoryConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketLifecycleConfigurationCommand__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./commands/PutBucketLifecycleConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLifecycleConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLifecycleConfigurationCommand\", function() { return _commands_PutBucketLifecycleConfigurationCommand__WEBPACK_IMPORTED_MODULE_75__[\"PutBucketLifecycleConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketLoggingCommand__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./commands/PutBucketLoggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketLoggingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLoggingCommand\", function() { return _commands_PutBucketLoggingCommand__WEBPACK_IMPORTED_MODULE_76__[\"PutBucketLoggingCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./commands/PutBucketMetricsConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketMetricsConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketMetricsConfigurationCommand\", function() { return _commands_PutBucketMetricsConfigurationCommand__WEBPACK_IMPORTED_MODULE_77__[\"PutBucketMetricsConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketNotificationConfigurationCommand__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./commands/PutBucketNotificationConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketNotificationConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketNotificationConfigurationCommand\", function() { return _commands_PutBucketNotificationConfigurationCommand__WEBPACK_IMPORTED_MODULE_78__[\"PutBucketNotificationConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./commands/PutBucketOwnershipControlsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketOwnershipControlsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketOwnershipControlsCommand\", function() { return _commands_PutBucketOwnershipControlsCommand__WEBPACK_IMPORTED_MODULE_79__[\"PutBucketOwnershipControlsCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./commands/PutBucketPolicyCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketPolicyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketPolicyCommand\", function() { return _commands_PutBucketPolicyCommand__WEBPACK_IMPORTED_MODULE_80__[\"PutBucketPolicyCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./commands/PutBucketReplicationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketReplicationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketReplicationCommand\", function() { return _commands_PutBucketReplicationCommand__WEBPACK_IMPORTED_MODULE_81__[\"PutBucketReplicationCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketRequestPaymentCommand__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./commands/PutBucketRequestPaymentCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketRequestPaymentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketRequestPaymentCommand\", function() { return _commands_PutBucketRequestPaymentCommand__WEBPACK_IMPORTED_MODULE_82__[\"PutBucketRequestPaymentCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./commands/PutBucketTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketTaggingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketTaggingCommand\", function() { return _commands_PutBucketTaggingCommand__WEBPACK_IMPORTED_MODULE_83__[\"PutBucketTaggingCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketVersioningCommand__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./commands/PutBucketVersioningCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketVersioningCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketVersioningCommand\", function() { return _commands_PutBucketVersioningCommand__WEBPACK_IMPORTED_MODULE_84__[\"PutBucketVersioningCommand\"]; });\n\n/* harmony import */ var _commands_PutBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./commands/PutBucketWebsiteCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutBucketWebsiteCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketWebsiteCommand\", function() { return _commands_PutBucketWebsiteCommand__WEBPACK_IMPORTED_MODULE_85__[\"PutBucketWebsiteCommand\"]; });\n\n/* harmony import */ var _commands_PutObjectCommand__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./commands/PutObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectCommand\", function() { return _commands_PutObjectCommand__WEBPACK_IMPORTED_MODULE_86__[\"PutObjectCommand\"]; });\n\n/* harmony import */ var _commands_PutObjectAclCommand__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./commands/PutObjectAclCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectAclCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectAclCommand\", function() { return _commands_PutObjectAclCommand__WEBPACK_IMPORTED_MODULE_87__[\"PutObjectAclCommand\"]; });\n\n/* harmony import */ var _commands_PutObjectLegalHoldCommand__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./commands/PutObjectLegalHoldCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLegalHoldCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLegalHoldCommand\", function() { return _commands_PutObjectLegalHoldCommand__WEBPACK_IMPORTED_MODULE_88__[\"PutObjectLegalHoldCommand\"]; });\n\n/* harmony import */ var _commands_PutObjectLockConfigurationCommand__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./commands/PutObjectLockConfigurationCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectLockConfigurationCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLockConfigurationCommand\", function() { return _commands_PutObjectLockConfigurationCommand__WEBPACK_IMPORTED_MODULE_89__[\"PutObjectLockConfigurationCommand\"]; });\n\n/* harmony import */ var _commands_PutObjectRetentionCommand__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./commands/PutObjectRetentionCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectRetentionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRetentionCommand\", function() { return _commands_PutObjectRetentionCommand__WEBPACK_IMPORTED_MODULE_90__[\"PutObjectRetentionCommand\"]; });\n\n/* harmony import */ var _commands_PutObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./commands/PutObjectTaggingCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutObjectTaggingCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectTaggingCommand\", function() { return _commands_PutObjectTaggingCommand__WEBPACK_IMPORTED_MODULE_91__[\"PutObjectTaggingCommand\"]; });\n\n/* harmony import */ var _commands_PutPublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./commands/PutPublicAccessBlockCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/PutPublicAccessBlockCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutPublicAccessBlockCommand\", function() { return _commands_PutPublicAccessBlockCommand__WEBPACK_IMPORTED_MODULE_92__[\"PutPublicAccessBlockCommand\"]; });\n\n/* harmony import */ var _commands_RestoreObjectCommand__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./commands/RestoreObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/RestoreObjectCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestoreObjectCommand\", function() { return _commands_RestoreObjectCommand__WEBPACK_IMPORTED_MODULE_93__[\"RestoreObjectCommand\"]; });\n\n/* harmony import */ var _commands_SelectObjectContentCommand__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./commands/SelectObjectContentCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/SelectObjectContentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentCommand\", function() { return _commands_SelectObjectContentCommand__WEBPACK_IMPORTED_MODULE_94__[\"SelectObjectContentCommand\"]; });\n\n/* harmony import */ var _commands_UploadPartCommand__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./commands/UploadPartCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCommand\", function() { return _commands_UploadPartCommand__WEBPACK_IMPORTED_MODULE_95__[\"UploadPartCommand\"]; });\n\n/* harmony import */ var _commands_UploadPartCopyCommand__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./commands/UploadPartCopyCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/UploadPartCopyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCopyCommand\", function() { return _commands_UploadPartCopyCommand__WEBPACK_IMPORTED_MODULE_96__[\"UploadPartCopyCommand\"]; });\n\n/* harmony import */ var _pagination_Interfaces__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./pagination/Interfaces */ \"./node_modules/@aws-sdk/client-s3/dist/es/pagination/Interfaces.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbortIncompleteMultipartUpload\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AbortIncompleteMultipartUpload\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbortMultipartUploadOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AbortMultipartUploadOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbortMultipartUploadRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AbortMultipartUploadRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoSuchUpload\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"NoSuchUpload\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccelerateConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AccelerateConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Grantee\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Grantee\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Grant\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Grant\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Owner\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Owner\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessControlPolicy\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AccessControlPolicy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessControlTranslation\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AccessControlTranslation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompleteMultipartUploadOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CompleteMultipartUploadOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompletedPart\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CompletedPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompletedMultipartUpload\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CompletedMultipartUpload\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompleteMultipartUploadRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CompleteMultipartUploadRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CopyObjectResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CopyObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CopyObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectNotInActiveTierError\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ObjectNotInActiveTierError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BucketAlreadyExists\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"BucketAlreadyExists\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BucketAlreadyOwnedByYou\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"BucketAlreadyOwnedByYou\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CreateBucketOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CreateBucketConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CreateBucketRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMultipartUploadOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CreateMultipartUploadOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMultipartUploadRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CreateMultipartUploadRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketAnalyticsConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketAnalyticsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketCorsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketCorsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketEncryptionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketEncryptionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketIntelligentTieringConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketIntelligentTieringConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketInventoryConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketInventoryConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketLifecycleRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketLifecycleRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketMetricsConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketMetricsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketOwnershipControlsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketOwnershipControlsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketPolicyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketReplicationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketReplicationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketTaggingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketWebsiteRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteBucketWebsiteRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletedObject\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeletedObject\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"_Error\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"_Error\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteObjectsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectIdentifier\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ObjectIdentifier\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Delete\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Delete\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteObjectsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectTaggingOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteObjectTaggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectTaggingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteObjectTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePublicAccessBlockRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeletePublicAccessBlockRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAccelerateConfigurationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketAccelerateConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAccelerateConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketAccelerateConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAclOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketAclOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAclRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketAclRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Tag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsAndOperator\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AnalyticsAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AnalyticsFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsS3BucketDestination\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AnalyticsS3BucketDestination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsExportDestination\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AnalyticsExportDestination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StorageClassAnalysisDataExport\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"StorageClassAnalysisDataExport\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StorageClassAnalysis\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"StorageClassAnalysis\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"AnalyticsConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAnalyticsConfigurationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketAnalyticsConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAnalyticsConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketAnalyticsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CORSRule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CORSRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketCorsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketCorsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketCorsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketCorsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServerSideEncryptionByDefault\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ServerSideEncryptionByDefault\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServerSideEncryptionRule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ServerSideEncryptionRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServerSideEncryptionConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ServerSideEncryptionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketEncryptionOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketEncryptionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketEncryptionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketEncryptionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntelligentTieringAndOperator\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"IntelligentTieringAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntelligentTieringFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"IntelligentTieringFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tiering\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Tiering\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntelligentTieringConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"IntelligentTieringConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketIntelligentTieringConfigurationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketIntelligentTieringConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketIntelligentTieringConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketIntelligentTieringConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SSEKMS\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"SSEKMS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SSES3\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"SSES3\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryEncryption\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"InventoryEncryption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryS3BucketDestination\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"InventoryS3BucketDestination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryDestination\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"InventoryDestination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"InventoryFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventorySchedule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"InventorySchedule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"InventoryConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketInventoryConfigurationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketInventoryConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketInventoryConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketInventoryConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LifecycleExpiration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"LifecycleExpiration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LifecycleRuleAndOperator\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"LifecycleRuleAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LifecycleRuleFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"LifecycleRuleFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoncurrentVersionExpiration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"NoncurrentVersionExpiration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoncurrentVersionTransition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"NoncurrentVersionTransition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Transition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Transition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LifecycleRule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"LifecycleRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLifecycleConfigurationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketLifecycleConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLifecycleConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketLifecycleConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLocationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketLocationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLocationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketLocationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TargetGrant\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"TargetGrant\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LoggingEnabled\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"LoggingEnabled\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLoggingOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketLoggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLoggingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketLoggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricsAndOperator\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"MetricsAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricsFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"MetricsFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricsConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"MetricsConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketMetricsConfigurationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketMetricsConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketMetricsConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketMetricsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketNotificationConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketNotificationConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilterRule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"FilterRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3KeyFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"S3KeyFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotificationConfigurationFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"NotificationConfigurationFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LambdaFunctionConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"LambdaFunctionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueueConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"QueueConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TopicConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"TopicConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotificationConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"NotificationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OwnershipControlsRule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"OwnershipControlsRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OwnershipControls\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"OwnershipControls\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketOwnershipControlsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketOwnershipControlsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketOwnershipControlsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketOwnershipControlsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketPolicyOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PolicyStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PolicyStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyStatusOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketPolicyStatusOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyStatusRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketPolicyStatusRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMarkerReplication\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteMarkerReplication\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"EncryptionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationTimeValue\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ReplicationTimeValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Metrics\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Metrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationTime\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ReplicationTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Destination\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Destination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExistingObjectReplication\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ExistingObjectReplication\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationRuleAndOperator\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ReplicationRuleAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationRuleFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ReplicationRuleFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicaModifications\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ReplicaModifications\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SseKmsEncryptedObjects\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"SseKmsEncryptedObjects\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SourceSelectionCriteria\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"SourceSelectionCriteria\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationRule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ReplicationRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ReplicationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketReplicationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketReplicationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketReplicationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketReplicationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketRequestPaymentOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketRequestPaymentOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketRequestPaymentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketRequestPaymentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketTaggingOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketTaggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketTaggingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketVersioningOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketVersioningOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketVersioningRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketVersioningRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ErrorDocument\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ErrorDocument\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IndexDocument\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"IndexDocument\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedirectAllRequestsTo\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"RedirectAllRequestsTo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Condition\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Condition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Redirect\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Redirect\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RoutingRule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"RoutingRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketWebsiteOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketWebsiteOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketWebsiteRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetBucketWebsiteRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidObjectState\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"InvalidObjectState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoSuchKey\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"NoSuchKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectAclOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectAclOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectAclRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectAclRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockLegalHold\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ObjectLockLegalHold\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLegalHoldOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectLegalHoldOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLegalHoldRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectLegalHoldRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultRetention\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DefaultRetention\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockRule\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ObjectLockRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ObjectLockConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLockConfigurationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectLockConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLockConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectLockConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockRetention\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ObjectLockRetention\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRetentionOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectRetentionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRetentionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectRetentionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTaggingOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectTaggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTaggingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTorrentOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectTorrentOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTorrentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetObjectTorrentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PublicAccessBlockConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PublicAccessBlockConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPublicAccessBlockOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetPublicAccessBlockOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPublicAccessBlockRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GetPublicAccessBlockRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeadBucketRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"HeadBucketRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoSuchBucket\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"NoSuchBucket\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeadObjectOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"HeadObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeadObjectRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"HeadObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketAnalyticsConfigurationsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListBucketAnalyticsConfigurationsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketAnalyticsConfigurationsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListBucketAnalyticsConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketIntelligentTieringConfigurationsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListBucketIntelligentTieringConfigurationsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketIntelligentTieringConfigurationsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListBucketIntelligentTieringConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketInventoryConfigurationsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListBucketInventoryConfigurationsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketInventoryConfigurationsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListBucketInventoryConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketMetricsConfigurationsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListBucketMetricsConfigurationsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketMetricsConfigurationsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListBucketMetricsConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Bucket\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Bucket\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListBucketsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CommonPrefix\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CommonPrefix\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Initiator\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Initiator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MultipartUpload\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"MultipartUpload\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMultipartUploadsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListMultipartUploadsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMultipartUploadsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListMultipartUploadsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"_Object\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"_Object\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListObjectsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListObjectsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsV2Output\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListObjectsV2Output\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsV2Request\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListObjectsV2Request\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMarkerEntry\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"DeleteMarkerEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectVersion\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ObjectVersion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectVersionsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListObjectVersionsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectVersionsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListObjectVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Part\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Part\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPartsOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListPartsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPartsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ListPartsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAccelerateConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketAccelerateConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAclRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketAclRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAnalyticsConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketAnalyticsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CORSConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CORSConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketCorsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketCorsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketEncryptionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketEncryptionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketIntelligentTieringConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketIntelligentTieringConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketInventoryConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketInventoryConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BucketLifecycleConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"BucketLifecycleConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLifecycleConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketLifecycleConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BucketLoggingStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"BucketLoggingStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLoggingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketLoggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketMetricsConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketMetricsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketNotificationConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketNotificationConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketOwnershipControlsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketOwnershipControlsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketPolicyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketReplicationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketReplicationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RequestPaymentConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"RequestPaymentConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketRequestPaymentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketRequestPaymentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tagging\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Tagging\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketTaggingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VersioningConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"VersioningConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketVersioningRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketVersioningRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WebsiteConfiguration\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"WebsiteConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketWebsiteRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutBucketWebsiteRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectAclOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectAclOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectAclRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectAclRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLegalHoldOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectLegalHoldOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLegalHoldRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectLegalHoldRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLockConfigurationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectLockConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLockConfigurationRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectLockConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRetentionOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectRetentionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRetentionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectRetentionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectTaggingOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectTaggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectTaggingRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutObjectTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutPublicAccessBlockRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"PutPublicAccessBlockRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectAlreadyInActiveTierError\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ObjectAlreadyInActiveTierError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestoreObjectOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"RestoreObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GlacierJobParameters\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"GlacierJobParameters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Encryption\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Encryption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetadataEntry\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"MetadataEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3Location\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"S3Location\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputLocation\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"OutputLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FileHeaderInfo\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"FileHeaderInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CSVInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CSVInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JSONType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"JSONType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JSONInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"JSONInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParquetInput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ParquetInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputSerialization\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"InputSerialization\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QuoteFields\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"QuoteFields\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CSVOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CSVOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JSONOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"JSONOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputSerialization\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"OutputSerialization\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectParameters\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"SelectParameters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestoreRequestType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"RestoreRequestType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestoreRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"RestoreRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestoreObjectRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"RestoreObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContinuationEvent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ContinuationEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndEvent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"EndEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Progress\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Progress\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProgressEvent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ProgressEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecordsEvent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"RecordsEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Stats\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"Stats\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StatsEvent\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"StatsEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentEventStream\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"SelectObjectContentEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"SelectObjectContentOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RequestProgress\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"RequestProgress\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScanRange\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"ScanRange\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"SelectObjectContentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"UploadPartOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"UploadPartRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyPartResult\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"CopyPartResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCopyOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"UploadPartCopyOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCopyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_98__[\"UploadPartCopyRequest\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/models/index.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/models/index.js ***! \*****************************************************************/ /*! exports provided: AbortIncompleteMultipartUpload, AbortMultipartUploadOutput, AbortMultipartUploadRequest, NoSuchUpload, AccelerateConfiguration, Grantee, Grant, Owner, AccessControlPolicy, AccessControlTranslation, CompleteMultipartUploadOutput, CompletedPart, CompletedMultipartUpload, CompleteMultipartUploadRequest, CopyObjectResult, CopyObjectOutput, CopyObjectRequest, ObjectNotInActiveTierError, BucketAlreadyExists, BucketAlreadyOwnedByYou, CreateBucketOutput, CreateBucketConfiguration, CreateBucketRequest, CreateMultipartUploadOutput, CreateMultipartUploadRequest, DeleteBucketRequest, DeleteBucketAnalyticsConfigurationRequest, DeleteBucketCorsRequest, DeleteBucketEncryptionRequest, DeleteBucketIntelligentTieringConfigurationRequest, DeleteBucketInventoryConfigurationRequest, DeleteBucketLifecycleRequest, DeleteBucketMetricsConfigurationRequest, DeleteBucketOwnershipControlsRequest, DeleteBucketPolicyRequest, DeleteBucketReplicationRequest, DeleteBucketTaggingRequest, DeleteBucketWebsiteRequest, DeleteObjectOutput, DeleteObjectRequest, DeletedObject, _Error, DeleteObjectsOutput, ObjectIdentifier, Delete, DeleteObjectsRequest, DeleteObjectTaggingOutput, DeleteObjectTaggingRequest, DeletePublicAccessBlockRequest, GetBucketAccelerateConfigurationOutput, GetBucketAccelerateConfigurationRequest, GetBucketAclOutput, GetBucketAclRequest, Tag, AnalyticsAndOperator, AnalyticsFilter, AnalyticsS3BucketDestination, AnalyticsExportDestination, StorageClassAnalysisDataExport, StorageClassAnalysis, AnalyticsConfiguration, GetBucketAnalyticsConfigurationOutput, GetBucketAnalyticsConfigurationRequest, CORSRule, GetBucketCorsOutput, GetBucketCorsRequest, ServerSideEncryptionByDefault, ServerSideEncryptionRule, ServerSideEncryptionConfiguration, GetBucketEncryptionOutput, GetBucketEncryptionRequest, IntelligentTieringAndOperator, IntelligentTieringFilter, Tiering, IntelligentTieringConfiguration, GetBucketIntelligentTieringConfigurationOutput, GetBucketIntelligentTieringConfigurationRequest, SSEKMS, SSES3, InventoryEncryption, InventoryS3BucketDestination, InventoryDestination, InventoryFilter, InventorySchedule, InventoryConfiguration, GetBucketInventoryConfigurationOutput, GetBucketInventoryConfigurationRequest, LifecycleExpiration, LifecycleRuleAndOperator, LifecycleRuleFilter, NoncurrentVersionExpiration, NoncurrentVersionTransition, Transition, LifecycleRule, GetBucketLifecycleConfigurationOutput, GetBucketLifecycleConfigurationRequest, GetBucketLocationOutput, GetBucketLocationRequest, TargetGrant, LoggingEnabled, GetBucketLoggingOutput, GetBucketLoggingRequest, MetricsAndOperator, MetricsFilter, MetricsConfiguration, GetBucketMetricsConfigurationOutput, GetBucketMetricsConfigurationRequest, GetBucketNotificationConfigurationRequest, FilterRule, S3KeyFilter, NotificationConfigurationFilter, LambdaFunctionConfiguration, QueueConfiguration, TopicConfiguration, NotificationConfiguration, OwnershipControlsRule, OwnershipControls, GetBucketOwnershipControlsOutput, GetBucketOwnershipControlsRequest, GetBucketPolicyOutput, GetBucketPolicyRequest, PolicyStatus, GetBucketPolicyStatusOutput, GetBucketPolicyStatusRequest, DeleteMarkerReplication, EncryptionConfiguration, ReplicationTimeValue, Metrics, ReplicationTime, Destination, ExistingObjectReplication, ReplicationRuleAndOperator, ReplicationRuleFilter, ReplicaModifications, SseKmsEncryptedObjects, SourceSelectionCriteria, ReplicationRule, ReplicationConfiguration, GetBucketReplicationOutput, GetBucketReplicationRequest, GetBucketRequestPaymentOutput, GetBucketRequestPaymentRequest, GetBucketTaggingOutput, GetBucketTaggingRequest, GetBucketVersioningOutput, GetBucketVersioningRequest, ErrorDocument, IndexDocument, RedirectAllRequestsTo, Condition, Redirect, RoutingRule, GetBucketWebsiteOutput, GetBucketWebsiteRequest, GetObjectOutput, GetObjectRequest, InvalidObjectState, NoSuchKey, GetObjectAclOutput, GetObjectAclRequest, ObjectLockLegalHold, GetObjectLegalHoldOutput, GetObjectLegalHoldRequest, DefaultRetention, ObjectLockRule, ObjectLockConfiguration, GetObjectLockConfigurationOutput, GetObjectLockConfigurationRequest, ObjectLockRetention, GetObjectRetentionOutput, GetObjectRetentionRequest, GetObjectTaggingOutput, GetObjectTaggingRequest, GetObjectTorrentOutput, GetObjectTorrentRequest, PublicAccessBlockConfiguration, GetPublicAccessBlockOutput, GetPublicAccessBlockRequest, HeadBucketRequest, NoSuchBucket, HeadObjectOutput, HeadObjectRequest, ListBucketAnalyticsConfigurationsOutput, ListBucketAnalyticsConfigurationsRequest, ListBucketIntelligentTieringConfigurationsOutput, ListBucketIntelligentTieringConfigurationsRequest, ListBucketInventoryConfigurationsOutput, ListBucketInventoryConfigurationsRequest, ListBucketMetricsConfigurationsOutput, ListBucketMetricsConfigurationsRequest, Bucket, ListBucketsOutput, CommonPrefix, Initiator, MultipartUpload, ListMultipartUploadsOutput, ListMultipartUploadsRequest, _Object, ListObjectsOutput, ListObjectsRequest, ListObjectsV2Output, ListObjectsV2Request, DeleteMarkerEntry, ObjectVersion, ListObjectVersionsOutput, ListObjectVersionsRequest, Part, ListPartsOutput, ListPartsRequest, PutBucketAccelerateConfigurationRequest, PutBucketAclRequest, PutBucketAnalyticsConfigurationRequest, CORSConfiguration, PutBucketCorsRequest, PutBucketEncryptionRequest, PutBucketIntelligentTieringConfigurationRequest, PutBucketInventoryConfigurationRequest, BucketLifecycleConfiguration, PutBucketLifecycleConfigurationRequest, BucketLoggingStatus, PutBucketLoggingRequest, PutBucketMetricsConfigurationRequest, PutBucketNotificationConfigurationRequest, PutBucketOwnershipControlsRequest, PutBucketPolicyRequest, PutBucketReplicationRequest, RequestPaymentConfiguration, PutBucketRequestPaymentRequest, Tagging, PutBucketTaggingRequest, VersioningConfiguration, PutBucketVersioningRequest, WebsiteConfiguration, PutBucketWebsiteRequest, PutObjectOutput, PutObjectRequest, PutObjectAclOutput, PutObjectAclRequest, PutObjectLegalHoldOutput, PutObjectLegalHoldRequest, PutObjectLockConfigurationOutput, PutObjectLockConfigurationRequest, PutObjectRetentionOutput, PutObjectRetentionRequest, PutObjectTaggingOutput, PutObjectTaggingRequest, PutPublicAccessBlockRequest, ObjectAlreadyInActiveTierError, RestoreObjectOutput, GlacierJobParameters, Encryption, MetadataEntry, S3Location, OutputLocation, FileHeaderInfo, CSVInput, JSONType, JSONInput, ParquetInput, InputSerialization, QuoteFields, CSVOutput, JSONOutput, OutputSerialization, SelectParameters, RestoreRequestType, RestoreRequest, RestoreObjectRequest, ContinuationEvent, EndEvent, Progress, ProgressEvent, RecordsEvent, Stats, StatsEvent, SelectObjectContentEventStream, SelectObjectContentOutput, RequestProgress, ScanRange, SelectObjectContentRequest, UploadPartOutput, UploadPartRequest, CopyPartResult, UploadPartCopyOutput, UploadPartCopyRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbortIncompleteMultipartUpload\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AbortIncompleteMultipartUpload\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbortMultipartUploadOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AbortMultipartUploadOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AbortMultipartUploadRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AbortMultipartUploadRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoSuchUpload\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NoSuchUpload\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccelerateConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AccelerateConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Grantee\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Grantee\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Grant\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Grant\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Owner\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Owner\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessControlPolicy\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AccessControlPolicy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessControlTranslation\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AccessControlTranslation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompleteMultipartUploadOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CompleteMultipartUploadOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompletedPart\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CompletedPart\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompletedMultipartUpload\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CompletedMultipartUpload\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompleteMultipartUploadRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CompleteMultipartUploadRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectResult\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CopyObjectResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CopyObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CopyObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectNotInActiveTierError\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ObjectNotInActiveTierError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BucketAlreadyExists\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BucketAlreadyExists\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BucketAlreadyOwnedByYou\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BucketAlreadyOwnedByYou\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateBucketOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateBucketConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateBucketRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMultipartUploadOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateMultipartUploadOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateMultipartUploadRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateMultipartUploadRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketAnalyticsConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketAnalyticsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketCorsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketCorsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketEncryptionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketEncryptionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketIntelligentTieringConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketIntelligentTieringConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketInventoryConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketInventoryConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketLifecycleRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketLifecycleRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketMetricsConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketMetricsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketOwnershipControlsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketOwnershipControlsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketPolicyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketReplicationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketReplicationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketTaggingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketWebsiteRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteBucketWebsiteRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletedObject\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeletedObject\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"_Error\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"_Error\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteObjectsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectIdentifier\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ObjectIdentifier\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Delete\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Delete\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteObjectsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectTaggingOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteObjectTaggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectTaggingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteObjectTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeletePublicAccessBlockRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeletePublicAccessBlockRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAccelerateConfigurationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketAccelerateConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAccelerateConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketAccelerateConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAclOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketAclOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAclRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketAclRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Tag\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsAndOperator\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AnalyticsAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AnalyticsFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsS3BucketDestination\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AnalyticsS3BucketDestination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsExportDestination\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AnalyticsExportDestination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StorageClassAnalysisDataExport\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StorageClassAnalysisDataExport\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StorageClassAnalysis\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StorageClassAnalysis\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AnalyticsConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAnalyticsConfigurationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketAnalyticsConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAnalyticsConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketAnalyticsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CORSRule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CORSRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketCorsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketCorsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketCorsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketCorsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServerSideEncryptionByDefault\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ServerSideEncryptionByDefault\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServerSideEncryptionRule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ServerSideEncryptionRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServerSideEncryptionConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ServerSideEncryptionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketEncryptionOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketEncryptionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketEncryptionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketEncryptionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntelligentTieringAndOperator\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IntelligentTieringAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntelligentTieringFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IntelligentTieringFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tiering\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Tiering\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IntelligentTieringConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IntelligentTieringConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketIntelligentTieringConfigurationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketIntelligentTieringConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketIntelligentTieringConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketIntelligentTieringConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SSEKMS\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SSEKMS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SSES3\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SSES3\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryEncryption\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InventoryEncryption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryS3BucketDestination\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InventoryS3BucketDestination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryDestination\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InventoryDestination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InventoryFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventorySchedule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InventorySchedule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InventoryConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InventoryConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketInventoryConfigurationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketInventoryConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketInventoryConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketInventoryConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LifecycleExpiration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LifecycleExpiration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LifecycleRuleAndOperator\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LifecycleRuleAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LifecycleRuleFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LifecycleRuleFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoncurrentVersionExpiration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NoncurrentVersionExpiration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoncurrentVersionTransition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NoncurrentVersionTransition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Transition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Transition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LifecycleRule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LifecycleRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLifecycleConfigurationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketLifecycleConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLifecycleConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketLifecycleConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLocationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketLocationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLocationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketLocationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TargetGrant\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TargetGrant\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LoggingEnabled\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LoggingEnabled\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLoggingOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketLoggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLoggingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketLoggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricsAndOperator\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MetricsAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricsFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MetricsFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetricsConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MetricsConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketMetricsConfigurationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketMetricsConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketMetricsConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketMetricsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketNotificationConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketNotificationConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FilterRule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FilterRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3KeyFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"S3KeyFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotificationConfigurationFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NotificationConfigurationFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LambdaFunctionConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LambdaFunctionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QueueConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"QueueConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TopicConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TopicConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotificationConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NotificationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OwnershipControlsRule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OwnershipControlsRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OwnershipControls\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OwnershipControls\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketOwnershipControlsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketOwnershipControlsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketOwnershipControlsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketOwnershipControlsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketPolicyOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PolicyStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PolicyStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyStatusOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketPolicyStatusOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyStatusRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketPolicyStatusRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMarkerReplication\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteMarkerReplication\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EncryptionConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationTimeValue\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ReplicationTimeValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Metrics\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Metrics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationTime\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ReplicationTime\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Destination\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Destination\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExistingObjectReplication\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ExistingObjectReplication\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationRuleAndOperator\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ReplicationRuleAndOperator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationRuleFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ReplicationRuleFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicaModifications\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ReplicaModifications\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SseKmsEncryptedObjects\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SseKmsEncryptedObjects\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SourceSelectionCriteria\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SourceSelectionCriteria\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationRule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ReplicationRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReplicationConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ReplicationConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketReplicationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketReplicationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketReplicationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketReplicationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketRequestPaymentOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketRequestPaymentOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketRequestPaymentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketRequestPaymentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketTaggingOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketTaggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketTaggingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketVersioningOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketVersioningOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketVersioningRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketVersioningRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ErrorDocument\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ErrorDocument\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IndexDocument\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IndexDocument\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RedirectAllRequestsTo\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RedirectAllRequestsTo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Condition\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Condition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Redirect\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Redirect\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RoutingRule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RoutingRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketWebsiteOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketWebsiteOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetBucketWebsiteRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetBucketWebsiteRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidObjectState\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidObjectState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoSuchKey\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NoSuchKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectAclOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectAclOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectAclRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectAclRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockLegalHold\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ObjectLockLegalHold\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLegalHoldOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectLegalHoldOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLegalHoldRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectLegalHoldRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultRetention\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DefaultRetention\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockRule\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ObjectLockRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ObjectLockConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLockConfigurationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectLockConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLockConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectLockConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockRetention\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ObjectLockRetention\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRetentionOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectRetentionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRetentionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectRetentionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTaggingOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectTaggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTaggingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTorrentOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectTorrentOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTorrentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetObjectTorrentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PublicAccessBlockConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PublicAccessBlockConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPublicAccessBlockOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetPublicAccessBlockOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetPublicAccessBlockRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetPublicAccessBlockRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeadBucketRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HeadBucketRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoSuchBucket\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NoSuchBucket\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeadObjectOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HeadObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HeadObjectRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HeadObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketAnalyticsConfigurationsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListBucketAnalyticsConfigurationsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketAnalyticsConfigurationsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListBucketAnalyticsConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketIntelligentTieringConfigurationsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListBucketIntelligentTieringConfigurationsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketIntelligentTieringConfigurationsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListBucketIntelligentTieringConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketInventoryConfigurationsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListBucketInventoryConfigurationsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketInventoryConfigurationsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListBucketInventoryConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketMetricsConfigurationsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListBucketMetricsConfigurationsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketMetricsConfigurationsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListBucketMetricsConfigurationsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Bucket\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Bucket\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListBucketsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListBucketsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CommonPrefix\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CommonPrefix\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Initiator\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Initiator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MultipartUpload\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MultipartUpload\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMultipartUploadsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListMultipartUploadsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListMultipartUploadsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListMultipartUploadsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"_Object\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"_Object\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListObjectsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListObjectsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsV2Output\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListObjectsV2Output\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsV2Request\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListObjectsV2Request\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteMarkerEntry\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteMarkerEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectVersion\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ObjectVersion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectVersionsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListObjectVersionsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListObjectVersionsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListObjectVersionsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Part\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Part\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPartsOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListPartsOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPartsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListPartsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAccelerateConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketAccelerateConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAclRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketAclRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAnalyticsConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketAnalyticsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CORSConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CORSConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketCorsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketCorsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketEncryptionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketEncryptionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketIntelligentTieringConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketIntelligentTieringConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketInventoryConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketInventoryConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BucketLifecycleConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BucketLifecycleConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLifecycleConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketLifecycleConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BucketLoggingStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BucketLoggingStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLoggingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketLoggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketMetricsConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketMetricsConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketNotificationConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketNotificationConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketOwnershipControlsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketOwnershipControlsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketPolicyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketPolicyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketReplicationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketReplicationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RequestPaymentConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RequestPaymentConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketRequestPaymentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketRequestPaymentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tagging\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Tagging\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketTaggingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VersioningConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"VersioningConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketVersioningRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketVersioningRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WebsiteConfiguration\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"WebsiteConfiguration\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutBucketWebsiteRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutBucketWebsiteRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectAclOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectAclOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectAclRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectAclRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLegalHoldOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectLegalHoldOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLegalHoldRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectLegalHoldRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLockConfigurationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectLockConfigurationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLockConfigurationRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectLockConfigurationRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRetentionOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectRetentionOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRetentionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectRetentionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectTaggingOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectTaggingOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutObjectTaggingRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutObjectTaggingRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PutPublicAccessBlockRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"PutPublicAccessBlockRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ObjectAlreadyInActiveTierError\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ObjectAlreadyInActiveTierError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestoreObjectOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RestoreObjectOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GlacierJobParameters\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GlacierJobParameters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Encryption\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Encryption\"]; });\n\n/* harmony import */ var _models_1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./models_1 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_1.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MetadataEntry\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"MetadataEntry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3Location\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"S3Location\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputLocation\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"OutputLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FileHeaderInfo\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"FileHeaderInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CSVInput\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"CSVInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JSONType\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"JSONType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JSONInput\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"JSONInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParquetInput\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ParquetInput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputSerialization\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"InputSerialization\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"QuoteFields\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"QuoteFields\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CSVOutput\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"CSVOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JSONOutput\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"JSONOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputSerialization\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"OutputSerialization\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectParameters\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SelectParameters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestoreRequestType\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"RestoreRequestType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestoreRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"RestoreRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RestoreObjectRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"RestoreObjectRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContinuationEvent\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ContinuationEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EndEvent\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"EndEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Progress\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"Progress\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProgressEvent\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ProgressEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecordsEvent\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"RecordsEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Stats\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"Stats\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StatsEvent\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"StatsEvent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentEventStream\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SelectObjectContentEventStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentOutput\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SelectObjectContentOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RequestProgress\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"RequestProgress\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScanRange\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"ScanRange\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"SelectObjectContentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartOutput\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UploadPartOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UploadPartRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CopyPartResult\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"CopyPartResult\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCopyOutput\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UploadPartCopyOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCopyRequest\", function() { return _models_1__WEBPACK_IMPORTED_MODULE_1__[\"UploadPartCopyRequest\"]; });\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js ***! \********************************************************************/ /*! exports provided: AbortIncompleteMultipartUpload, AbortMultipartUploadOutput, AbortMultipartUploadRequest, NoSuchUpload, AccelerateConfiguration, Grantee, Grant, Owner, AccessControlPolicy, AccessControlTranslation, CompleteMultipartUploadOutput, CompletedPart, CompletedMultipartUpload, CompleteMultipartUploadRequest, CopyObjectResult, CopyObjectOutput, CopyObjectRequest, ObjectNotInActiveTierError, BucketAlreadyExists, BucketAlreadyOwnedByYou, CreateBucketOutput, CreateBucketConfiguration, CreateBucketRequest, CreateMultipartUploadOutput, CreateMultipartUploadRequest, DeleteBucketRequest, DeleteBucketAnalyticsConfigurationRequest, DeleteBucketCorsRequest, DeleteBucketEncryptionRequest, DeleteBucketIntelligentTieringConfigurationRequest, DeleteBucketInventoryConfigurationRequest, DeleteBucketLifecycleRequest, DeleteBucketMetricsConfigurationRequest, DeleteBucketOwnershipControlsRequest, DeleteBucketPolicyRequest, DeleteBucketReplicationRequest, DeleteBucketTaggingRequest, DeleteBucketWebsiteRequest, DeleteObjectOutput, DeleteObjectRequest, DeletedObject, _Error, DeleteObjectsOutput, ObjectIdentifier, Delete, DeleteObjectsRequest, DeleteObjectTaggingOutput, DeleteObjectTaggingRequest, DeletePublicAccessBlockRequest, GetBucketAccelerateConfigurationOutput, GetBucketAccelerateConfigurationRequest, GetBucketAclOutput, GetBucketAclRequest, Tag, AnalyticsAndOperator, AnalyticsFilter, AnalyticsS3BucketDestination, AnalyticsExportDestination, StorageClassAnalysisDataExport, StorageClassAnalysis, AnalyticsConfiguration, GetBucketAnalyticsConfigurationOutput, GetBucketAnalyticsConfigurationRequest, CORSRule, GetBucketCorsOutput, GetBucketCorsRequest, ServerSideEncryptionByDefault, ServerSideEncryptionRule, ServerSideEncryptionConfiguration, GetBucketEncryptionOutput, GetBucketEncryptionRequest, IntelligentTieringAndOperator, IntelligentTieringFilter, Tiering, IntelligentTieringConfiguration, GetBucketIntelligentTieringConfigurationOutput, GetBucketIntelligentTieringConfigurationRequest, SSEKMS, SSES3, InventoryEncryption, InventoryS3BucketDestination, InventoryDestination, InventoryFilter, InventorySchedule, InventoryConfiguration, GetBucketInventoryConfigurationOutput, GetBucketInventoryConfigurationRequest, LifecycleExpiration, LifecycleRuleAndOperator, LifecycleRuleFilter, NoncurrentVersionExpiration, NoncurrentVersionTransition, Transition, LifecycleRule, GetBucketLifecycleConfigurationOutput, GetBucketLifecycleConfigurationRequest, GetBucketLocationOutput, GetBucketLocationRequest, TargetGrant, LoggingEnabled, GetBucketLoggingOutput, GetBucketLoggingRequest, MetricsAndOperator, MetricsFilter, MetricsConfiguration, GetBucketMetricsConfigurationOutput, GetBucketMetricsConfigurationRequest, GetBucketNotificationConfigurationRequest, FilterRule, S3KeyFilter, NotificationConfigurationFilter, LambdaFunctionConfiguration, QueueConfiguration, TopicConfiguration, NotificationConfiguration, OwnershipControlsRule, OwnershipControls, GetBucketOwnershipControlsOutput, GetBucketOwnershipControlsRequest, GetBucketPolicyOutput, GetBucketPolicyRequest, PolicyStatus, GetBucketPolicyStatusOutput, GetBucketPolicyStatusRequest, DeleteMarkerReplication, EncryptionConfiguration, ReplicationTimeValue, Metrics, ReplicationTime, Destination, ExistingObjectReplication, ReplicationRuleAndOperator, ReplicationRuleFilter, ReplicaModifications, SseKmsEncryptedObjects, SourceSelectionCriteria, ReplicationRule, ReplicationConfiguration, GetBucketReplicationOutput, GetBucketReplicationRequest, GetBucketRequestPaymentOutput, GetBucketRequestPaymentRequest, GetBucketTaggingOutput, GetBucketTaggingRequest, GetBucketVersioningOutput, GetBucketVersioningRequest, ErrorDocument, IndexDocument, RedirectAllRequestsTo, Condition, Redirect, RoutingRule, GetBucketWebsiteOutput, GetBucketWebsiteRequest, GetObjectOutput, GetObjectRequest, InvalidObjectState, NoSuchKey, GetObjectAclOutput, GetObjectAclRequest, ObjectLockLegalHold, GetObjectLegalHoldOutput, GetObjectLegalHoldRequest, DefaultRetention, ObjectLockRule, ObjectLockConfiguration, GetObjectLockConfigurationOutput, GetObjectLockConfigurationRequest, ObjectLockRetention, GetObjectRetentionOutput, GetObjectRetentionRequest, GetObjectTaggingOutput, GetObjectTaggingRequest, GetObjectTorrentOutput, GetObjectTorrentRequest, PublicAccessBlockConfiguration, GetPublicAccessBlockOutput, GetPublicAccessBlockRequest, HeadBucketRequest, NoSuchBucket, HeadObjectOutput, HeadObjectRequest, ListBucketAnalyticsConfigurationsOutput, ListBucketAnalyticsConfigurationsRequest, ListBucketIntelligentTieringConfigurationsOutput, ListBucketIntelligentTieringConfigurationsRequest, ListBucketInventoryConfigurationsOutput, ListBucketInventoryConfigurationsRequest, ListBucketMetricsConfigurationsOutput, ListBucketMetricsConfigurationsRequest, Bucket, ListBucketsOutput, CommonPrefix, Initiator, MultipartUpload, ListMultipartUploadsOutput, ListMultipartUploadsRequest, _Object, ListObjectsOutput, ListObjectsRequest, ListObjectsV2Output, ListObjectsV2Request, DeleteMarkerEntry, ObjectVersion, ListObjectVersionsOutput, ListObjectVersionsRequest, Part, ListPartsOutput, ListPartsRequest, PutBucketAccelerateConfigurationRequest, PutBucketAclRequest, PutBucketAnalyticsConfigurationRequest, CORSConfiguration, PutBucketCorsRequest, PutBucketEncryptionRequest, PutBucketIntelligentTieringConfigurationRequest, PutBucketInventoryConfigurationRequest, BucketLifecycleConfiguration, PutBucketLifecycleConfigurationRequest, BucketLoggingStatus, PutBucketLoggingRequest, PutBucketMetricsConfigurationRequest, PutBucketNotificationConfigurationRequest, PutBucketOwnershipControlsRequest, PutBucketPolicyRequest, PutBucketReplicationRequest, RequestPaymentConfiguration, PutBucketRequestPaymentRequest, Tagging, PutBucketTaggingRequest, VersioningConfiguration, PutBucketVersioningRequest, WebsiteConfiguration, PutBucketWebsiteRequest, PutObjectOutput, PutObjectRequest, PutObjectAclOutput, PutObjectAclRequest, PutObjectLegalHoldOutput, PutObjectLegalHoldRequest, PutObjectLockConfigurationOutput, PutObjectLockConfigurationRequest, PutObjectRetentionOutput, PutObjectRetentionRequest, PutObjectTaggingOutput, PutObjectTaggingRequest, PutPublicAccessBlockRequest, ObjectAlreadyInActiveTierError, RestoreObjectOutput, GlacierJobParameters, Encryption */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbortIncompleteMultipartUpload\", function() { return AbortIncompleteMultipartUpload; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbortMultipartUploadOutput\", function() { return AbortMultipartUploadOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AbortMultipartUploadRequest\", function() { return AbortMultipartUploadRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoSuchUpload\", function() { return NoSuchUpload; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AccelerateConfiguration\", function() { return AccelerateConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Grantee\", function() { return Grantee; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Grant\", function() { return Grant; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Owner\", function() { return Owner; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AccessControlPolicy\", function() { return AccessControlPolicy; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AccessControlTranslation\", function() { return AccessControlTranslation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompleteMultipartUploadOutput\", function() { return CompleteMultipartUploadOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompletedPart\", function() { return CompletedPart; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompletedMultipartUpload\", function() { return CompletedMultipartUpload; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CompleteMultipartUploadRequest\", function() { return CompleteMultipartUploadRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectResult\", function() { return CopyObjectResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectOutput\", function() { return CopyObjectOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CopyObjectRequest\", function() { return CopyObjectRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ObjectNotInActiveTierError\", function() { return ObjectNotInActiveTierError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BucketAlreadyExists\", function() { return BucketAlreadyExists; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BucketAlreadyOwnedByYou\", function() { return BucketAlreadyOwnedByYou; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketOutput\", function() { return CreateBucketOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketConfiguration\", function() { return CreateBucketConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateBucketRequest\", function() { return CreateBucketRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateMultipartUploadOutput\", function() { return CreateMultipartUploadOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateMultipartUploadRequest\", function() { return CreateMultipartUploadRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketRequest\", function() { return DeleteBucketRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketAnalyticsConfigurationRequest\", function() { return DeleteBucketAnalyticsConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketCorsRequest\", function() { return DeleteBucketCorsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketEncryptionRequest\", function() { return DeleteBucketEncryptionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketIntelligentTieringConfigurationRequest\", function() { return DeleteBucketIntelligentTieringConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketInventoryConfigurationRequest\", function() { return DeleteBucketInventoryConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketLifecycleRequest\", function() { return DeleteBucketLifecycleRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketMetricsConfigurationRequest\", function() { return DeleteBucketMetricsConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketOwnershipControlsRequest\", function() { return DeleteBucketOwnershipControlsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketPolicyRequest\", function() { return DeleteBucketPolicyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketReplicationRequest\", function() { return DeleteBucketReplicationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketTaggingRequest\", function() { return DeleteBucketTaggingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteBucketWebsiteRequest\", function() { return DeleteBucketWebsiteRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectOutput\", function() { return DeleteObjectOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectRequest\", function() { return DeleteObjectRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeletedObject\", function() { return DeletedObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"_Error\", function() { return _Error; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectsOutput\", function() { return DeleteObjectsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ObjectIdentifier\", function() { return ObjectIdentifier; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Delete\", function() { return Delete; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectsRequest\", function() { return DeleteObjectsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectTaggingOutput\", function() { return DeleteObjectTaggingOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteObjectTaggingRequest\", function() { return DeleteObjectTaggingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeletePublicAccessBlockRequest\", function() { return DeletePublicAccessBlockRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAccelerateConfigurationOutput\", function() { return GetBucketAccelerateConfigurationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAccelerateConfigurationRequest\", function() { return GetBucketAccelerateConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAclOutput\", function() { return GetBucketAclOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAclRequest\", function() { return GetBucketAclRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Tag\", function() { return Tag; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsAndOperator\", function() { return AnalyticsAndOperator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsFilter\", function() { return AnalyticsFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsS3BucketDestination\", function() { return AnalyticsS3BucketDestination; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsExportDestination\", function() { return AnalyticsExportDestination; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StorageClassAnalysisDataExport\", function() { return StorageClassAnalysisDataExport; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StorageClassAnalysis\", function() { return StorageClassAnalysis; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnalyticsConfiguration\", function() { return AnalyticsConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAnalyticsConfigurationOutput\", function() { return GetBucketAnalyticsConfigurationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketAnalyticsConfigurationRequest\", function() { return GetBucketAnalyticsConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CORSRule\", function() { return CORSRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketCorsOutput\", function() { return GetBucketCorsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketCorsRequest\", function() { return GetBucketCorsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServerSideEncryptionByDefault\", function() { return ServerSideEncryptionByDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServerSideEncryptionRule\", function() { return ServerSideEncryptionRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServerSideEncryptionConfiguration\", function() { return ServerSideEncryptionConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketEncryptionOutput\", function() { return GetBucketEncryptionOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketEncryptionRequest\", function() { return GetBucketEncryptionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IntelligentTieringAndOperator\", function() { return IntelligentTieringAndOperator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IntelligentTieringFilter\", function() { return IntelligentTieringFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Tiering\", function() { return Tiering; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IntelligentTieringConfiguration\", function() { return IntelligentTieringConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketIntelligentTieringConfigurationOutput\", function() { return GetBucketIntelligentTieringConfigurationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketIntelligentTieringConfigurationRequest\", function() { return GetBucketIntelligentTieringConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SSEKMS\", function() { return SSEKMS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SSES3\", function() { return SSES3; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InventoryEncryption\", function() { return InventoryEncryption; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InventoryS3BucketDestination\", function() { return InventoryS3BucketDestination; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InventoryDestination\", function() { return InventoryDestination; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InventoryFilter\", function() { return InventoryFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InventorySchedule\", function() { return InventorySchedule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InventoryConfiguration\", function() { return InventoryConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketInventoryConfigurationOutput\", function() { return GetBucketInventoryConfigurationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketInventoryConfigurationRequest\", function() { return GetBucketInventoryConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LifecycleExpiration\", function() { return LifecycleExpiration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LifecycleRuleAndOperator\", function() { return LifecycleRuleAndOperator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LifecycleRuleFilter\", function() { return LifecycleRuleFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoncurrentVersionExpiration\", function() { return NoncurrentVersionExpiration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoncurrentVersionTransition\", function() { return NoncurrentVersionTransition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Transition\", function() { return Transition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LifecycleRule\", function() { return LifecycleRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLifecycleConfigurationOutput\", function() { return GetBucketLifecycleConfigurationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLifecycleConfigurationRequest\", function() { return GetBucketLifecycleConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLocationOutput\", function() { return GetBucketLocationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLocationRequest\", function() { return GetBucketLocationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TargetGrant\", function() { return TargetGrant; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LoggingEnabled\", function() { return LoggingEnabled; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLoggingOutput\", function() { return GetBucketLoggingOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketLoggingRequest\", function() { return GetBucketLoggingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MetricsAndOperator\", function() { return MetricsAndOperator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MetricsFilter\", function() { return MetricsFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MetricsConfiguration\", function() { return MetricsConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketMetricsConfigurationOutput\", function() { return GetBucketMetricsConfigurationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketMetricsConfigurationRequest\", function() { return GetBucketMetricsConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketNotificationConfigurationRequest\", function() { return GetBucketNotificationConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FilterRule\", function() { return FilterRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3KeyFilter\", function() { return S3KeyFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NotificationConfigurationFilter\", function() { return NotificationConfigurationFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LambdaFunctionConfiguration\", function() { return LambdaFunctionConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QueueConfiguration\", function() { return QueueConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TopicConfiguration\", function() { return TopicConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NotificationConfiguration\", function() { return NotificationConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OwnershipControlsRule\", function() { return OwnershipControlsRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OwnershipControls\", function() { return OwnershipControls; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketOwnershipControlsOutput\", function() { return GetBucketOwnershipControlsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketOwnershipControlsRequest\", function() { return GetBucketOwnershipControlsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyOutput\", function() { return GetBucketPolicyOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyRequest\", function() { return GetBucketPolicyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PolicyStatus\", function() { return PolicyStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyStatusOutput\", function() { return GetBucketPolicyStatusOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketPolicyStatusRequest\", function() { return GetBucketPolicyStatusRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteMarkerReplication\", function() { return DeleteMarkerReplication; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EncryptionConfiguration\", function() { return EncryptionConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReplicationTimeValue\", function() { return ReplicationTimeValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Metrics\", function() { return Metrics; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReplicationTime\", function() { return ReplicationTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Destination\", function() { return Destination; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExistingObjectReplication\", function() { return ExistingObjectReplication; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReplicationRuleAndOperator\", function() { return ReplicationRuleAndOperator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReplicationRuleFilter\", function() { return ReplicationRuleFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReplicaModifications\", function() { return ReplicaModifications; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SseKmsEncryptedObjects\", function() { return SseKmsEncryptedObjects; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SourceSelectionCriteria\", function() { return SourceSelectionCriteria; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReplicationRule\", function() { return ReplicationRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReplicationConfiguration\", function() { return ReplicationConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketReplicationOutput\", function() { return GetBucketReplicationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketReplicationRequest\", function() { return GetBucketReplicationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketRequestPaymentOutput\", function() { return GetBucketRequestPaymentOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketRequestPaymentRequest\", function() { return GetBucketRequestPaymentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketTaggingOutput\", function() { return GetBucketTaggingOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketTaggingRequest\", function() { return GetBucketTaggingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketVersioningOutput\", function() { return GetBucketVersioningOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketVersioningRequest\", function() { return GetBucketVersioningRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ErrorDocument\", function() { return ErrorDocument; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IndexDocument\", function() { return IndexDocument; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RedirectAllRequestsTo\", function() { return RedirectAllRequestsTo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Condition\", function() { return Condition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Redirect\", function() { return Redirect; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RoutingRule\", function() { return RoutingRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketWebsiteOutput\", function() { return GetBucketWebsiteOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetBucketWebsiteRequest\", function() { return GetBucketWebsiteRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectOutput\", function() { return GetObjectOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRequest\", function() { return GetObjectRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidObjectState\", function() { return InvalidObjectState; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoSuchKey\", function() { return NoSuchKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectAclOutput\", function() { return GetObjectAclOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectAclRequest\", function() { return GetObjectAclRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockLegalHold\", function() { return ObjectLockLegalHold; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLegalHoldOutput\", function() { return GetObjectLegalHoldOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLegalHoldRequest\", function() { return GetObjectLegalHoldRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultRetention\", function() { return DefaultRetention; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockRule\", function() { return ObjectLockRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockConfiguration\", function() { return ObjectLockConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLockConfigurationOutput\", function() { return GetObjectLockConfigurationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectLockConfigurationRequest\", function() { return GetObjectLockConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ObjectLockRetention\", function() { return ObjectLockRetention; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRetentionOutput\", function() { return GetObjectRetentionOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectRetentionRequest\", function() { return GetObjectRetentionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTaggingOutput\", function() { return GetObjectTaggingOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTaggingRequest\", function() { return GetObjectTaggingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTorrentOutput\", function() { return GetObjectTorrentOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetObjectTorrentRequest\", function() { return GetObjectTorrentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PublicAccessBlockConfiguration\", function() { return PublicAccessBlockConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPublicAccessBlockOutput\", function() { return GetPublicAccessBlockOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetPublicAccessBlockRequest\", function() { return GetPublicAccessBlockRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HeadBucketRequest\", function() { return HeadBucketRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoSuchBucket\", function() { return NoSuchBucket; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HeadObjectOutput\", function() { return HeadObjectOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HeadObjectRequest\", function() { return HeadObjectRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketAnalyticsConfigurationsOutput\", function() { return ListBucketAnalyticsConfigurationsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketAnalyticsConfigurationsRequest\", function() { return ListBucketAnalyticsConfigurationsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketIntelligentTieringConfigurationsOutput\", function() { return ListBucketIntelligentTieringConfigurationsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketIntelligentTieringConfigurationsRequest\", function() { return ListBucketIntelligentTieringConfigurationsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketInventoryConfigurationsOutput\", function() { return ListBucketInventoryConfigurationsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketInventoryConfigurationsRequest\", function() { return ListBucketInventoryConfigurationsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketMetricsConfigurationsOutput\", function() { return ListBucketMetricsConfigurationsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketMetricsConfigurationsRequest\", function() { return ListBucketMetricsConfigurationsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Bucket\", function() { return Bucket; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListBucketsOutput\", function() { return ListBucketsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CommonPrefix\", function() { return CommonPrefix; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Initiator\", function() { return Initiator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MultipartUpload\", function() { return MultipartUpload; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListMultipartUploadsOutput\", function() { return ListMultipartUploadsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListMultipartUploadsRequest\", function() { return ListMultipartUploadsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"_Object\", function() { return _Object; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsOutput\", function() { return ListObjectsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsRequest\", function() { return ListObjectsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsV2Output\", function() { return ListObjectsV2Output; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListObjectsV2Request\", function() { return ListObjectsV2Request; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteMarkerEntry\", function() { return DeleteMarkerEntry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ObjectVersion\", function() { return ObjectVersion; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListObjectVersionsOutput\", function() { return ListObjectVersionsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListObjectVersionsRequest\", function() { return ListObjectVersionsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Part\", function() { return Part; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPartsOutput\", function() { return ListPartsOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListPartsRequest\", function() { return ListPartsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAccelerateConfigurationRequest\", function() { return PutBucketAccelerateConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAclRequest\", function() { return PutBucketAclRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketAnalyticsConfigurationRequest\", function() { return PutBucketAnalyticsConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CORSConfiguration\", function() { return CORSConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketCorsRequest\", function() { return PutBucketCorsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketEncryptionRequest\", function() { return PutBucketEncryptionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketIntelligentTieringConfigurationRequest\", function() { return PutBucketIntelligentTieringConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketInventoryConfigurationRequest\", function() { return PutBucketInventoryConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BucketLifecycleConfiguration\", function() { return BucketLifecycleConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLifecycleConfigurationRequest\", function() { return PutBucketLifecycleConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BucketLoggingStatus\", function() { return BucketLoggingStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketLoggingRequest\", function() { return PutBucketLoggingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketMetricsConfigurationRequest\", function() { return PutBucketMetricsConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketNotificationConfigurationRequest\", function() { return PutBucketNotificationConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketOwnershipControlsRequest\", function() { return PutBucketOwnershipControlsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketPolicyRequest\", function() { return PutBucketPolicyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketReplicationRequest\", function() { return PutBucketReplicationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RequestPaymentConfiguration\", function() { return RequestPaymentConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketRequestPaymentRequest\", function() { return PutBucketRequestPaymentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Tagging\", function() { return Tagging; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketTaggingRequest\", function() { return PutBucketTaggingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VersioningConfiguration\", function() { return VersioningConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketVersioningRequest\", function() { return PutBucketVersioningRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WebsiteConfiguration\", function() { return WebsiteConfiguration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutBucketWebsiteRequest\", function() { return PutBucketWebsiteRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectOutput\", function() { return PutObjectOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRequest\", function() { return PutObjectRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectAclOutput\", function() { return PutObjectAclOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectAclRequest\", function() { return PutObjectAclRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLegalHoldOutput\", function() { return PutObjectLegalHoldOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLegalHoldRequest\", function() { return PutObjectLegalHoldRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLockConfigurationOutput\", function() { return PutObjectLockConfigurationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectLockConfigurationRequest\", function() { return PutObjectLockConfigurationRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRetentionOutput\", function() { return PutObjectRetentionOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectRetentionRequest\", function() { return PutObjectRetentionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectTaggingOutput\", function() { return PutObjectTaggingOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutObjectTaggingRequest\", function() { return PutObjectTaggingRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PutPublicAccessBlockRequest\", function() { return PutPublicAccessBlockRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ObjectAlreadyInActiveTierError\", function() { return ObjectAlreadyInActiveTierError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RestoreObjectOutput\", function() { return RestoreObjectOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GlacierJobParameters\", function() { return GlacierJobParameters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Encryption\", function() { return Encryption; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\nvar AbortIncompleteMultipartUpload;\n(function (AbortIncompleteMultipartUpload) {\n AbortIncompleteMultipartUpload.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AbortIncompleteMultipartUpload || (AbortIncompleteMultipartUpload = {}));\nvar AbortMultipartUploadOutput;\n(function (AbortMultipartUploadOutput) {\n AbortMultipartUploadOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AbortMultipartUploadOutput || (AbortMultipartUploadOutput = {}));\nvar AbortMultipartUploadRequest;\n(function (AbortMultipartUploadRequest) {\n AbortMultipartUploadRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AbortMultipartUploadRequest || (AbortMultipartUploadRequest = {}));\nvar NoSuchUpload;\n(function (NoSuchUpload) {\n NoSuchUpload.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NoSuchUpload || (NoSuchUpload = {}));\nvar AccelerateConfiguration;\n(function (AccelerateConfiguration) {\n AccelerateConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AccelerateConfiguration || (AccelerateConfiguration = {}));\nvar Grantee;\n(function (Grantee) {\n Grantee.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Grantee || (Grantee = {}));\nvar Grant;\n(function (Grant) {\n Grant.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Grant || (Grant = {}));\nvar Owner;\n(function (Owner) {\n Owner.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Owner || (Owner = {}));\nvar AccessControlPolicy;\n(function (AccessControlPolicy) {\n AccessControlPolicy.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AccessControlPolicy || (AccessControlPolicy = {}));\nvar AccessControlTranslation;\n(function (AccessControlTranslation) {\n AccessControlTranslation.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AccessControlTranslation || (AccessControlTranslation = {}));\nvar CompleteMultipartUploadOutput;\n(function (CompleteMultipartUploadOutput) {\n CompleteMultipartUploadOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(CompleteMultipartUploadOutput || (CompleteMultipartUploadOutput = {}));\nvar CompletedPart;\n(function (CompletedPart) {\n CompletedPart.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CompletedPart || (CompletedPart = {}));\nvar CompletedMultipartUpload;\n(function (CompletedMultipartUpload) {\n CompletedMultipartUpload.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CompletedMultipartUpload || (CompletedMultipartUpload = {}));\nvar CompleteMultipartUploadRequest;\n(function (CompleteMultipartUploadRequest) {\n CompleteMultipartUploadRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CompleteMultipartUploadRequest || (CompleteMultipartUploadRequest = {}));\nvar CopyObjectResult;\n(function (CopyObjectResult) {\n CopyObjectResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CopyObjectResult || (CopyObjectResult = {}));\nvar CopyObjectOutput;\n(function (CopyObjectOutput) {\n CopyObjectOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(CopyObjectOutput || (CopyObjectOutput = {}));\nvar CopyObjectRequest;\n(function (CopyObjectRequest) {\n CopyObjectRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSECustomerKey && { SSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.CopySourceSSECustomerKey && { CopySourceSSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(CopyObjectRequest || (CopyObjectRequest = {}));\nvar ObjectNotInActiveTierError;\n(function (ObjectNotInActiveTierError) {\n ObjectNotInActiveTierError.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ObjectNotInActiveTierError || (ObjectNotInActiveTierError = {}));\nvar BucketAlreadyExists;\n(function (BucketAlreadyExists) {\n BucketAlreadyExists.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BucketAlreadyExists || (BucketAlreadyExists = {}));\nvar BucketAlreadyOwnedByYou;\n(function (BucketAlreadyOwnedByYou) {\n BucketAlreadyOwnedByYou.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BucketAlreadyOwnedByYou || (BucketAlreadyOwnedByYou = {}));\nvar CreateBucketOutput;\n(function (CreateBucketOutput) {\n CreateBucketOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateBucketOutput || (CreateBucketOutput = {}));\nvar CreateBucketConfiguration;\n(function (CreateBucketConfiguration) {\n CreateBucketConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateBucketConfiguration || (CreateBucketConfiguration = {}));\nvar CreateBucketRequest;\n(function (CreateBucketRequest) {\n CreateBucketRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateBucketRequest || (CreateBucketRequest = {}));\nvar CreateMultipartUploadOutput;\n(function (CreateMultipartUploadOutput) {\n CreateMultipartUploadOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(CreateMultipartUploadOutput || (CreateMultipartUploadOutput = {}));\nvar CreateMultipartUploadRequest;\n(function (CreateMultipartUploadRequest) {\n CreateMultipartUploadRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSECustomerKey && { SSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(CreateMultipartUploadRequest || (CreateMultipartUploadRequest = {}));\nvar DeleteBucketRequest;\n(function (DeleteBucketRequest) {\n DeleteBucketRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketRequest || (DeleteBucketRequest = {}));\nvar DeleteBucketAnalyticsConfigurationRequest;\n(function (DeleteBucketAnalyticsConfigurationRequest) {\n DeleteBucketAnalyticsConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketAnalyticsConfigurationRequest || (DeleteBucketAnalyticsConfigurationRequest = {}));\nvar DeleteBucketCorsRequest;\n(function (DeleteBucketCorsRequest) {\n DeleteBucketCorsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketCorsRequest || (DeleteBucketCorsRequest = {}));\nvar DeleteBucketEncryptionRequest;\n(function (DeleteBucketEncryptionRequest) {\n DeleteBucketEncryptionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketEncryptionRequest || (DeleteBucketEncryptionRequest = {}));\nvar DeleteBucketIntelligentTieringConfigurationRequest;\n(function (DeleteBucketIntelligentTieringConfigurationRequest) {\n DeleteBucketIntelligentTieringConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketIntelligentTieringConfigurationRequest || (DeleteBucketIntelligentTieringConfigurationRequest = {}));\nvar DeleteBucketInventoryConfigurationRequest;\n(function (DeleteBucketInventoryConfigurationRequest) {\n DeleteBucketInventoryConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketInventoryConfigurationRequest || (DeleteBucketInventoryConfigurationRequest = {}));\nvar DeleteBucketLifecycleRequest;\n(function (DeleteBucketLifecycleRequest) {\n DeleteBucketLifecycleRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketLifecycleRequest || (DeleteBucketLifecycleRequest = {}));\nvar DeleteBucketMetricsConfigurationRequest;\n(function (DeleteBucketMetricsConfigurationRequest) {\n DeleteBucketMetricsConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketMetricsConfigurationRequest || (DeleteBucketMetricsConfigurationRequest = {}));\nvar DeleteBucketOwnershipControlsRequest;\n(function (DeleteBucketOwnershipControlsRequest) {\n DeleteBucketOwnershipControlsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketOwnershipControlsRequest || (DeleteBucketOwnershipControlsRequest = {}));\nvar DeleteBucketPolicyRequest;\n(function (DeleteBucketPolicyRequest) {\n DeleteBucketPolicyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketPolicyRequest || (DeleteBucketPolicyRequest = {}));\nvar DeleteBucketReplicationRequest;\n(function (DeleteBucketReplicationRequest) {\n DeleteBucketReplicationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketReplicationRequest || (DeleteBucketReplicationRequest = {}));\nvar DeleteBucketTaggingRequest;\n(function (DeleteBucketTaggingRequest) {\n DeleteBucketTaggingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketTaggingRequest || (DeleteBucketTaggingRequest = {}));\nvar DeleteBucketWebsiteRequest;\n(function (DeleteBucketWebsiteRequest) {\n DeleteBucketWebsiteRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteBucketWebsiteRequest || (DeleteBucketWebsiteRequest = {}));\nvar DeleteObjectOutput;\n(function (DeleteObjectOutput) {\n DeleteObjectOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteObjectOutput || (DeleteObjectOutput = {}));\nvar DeleteObjectRequest;\n(function (DeleteObjectRequest) {\n DeleteObjectRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteObjectRequest || (DeleteObjectRequest = {}));\nvar DeletedObject;\n(function (DeletedObject) {\n DeletedObject.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeletedObject || (DeletedObject = {}));\nvar _Error;\n(function (_Error) {\n _Error.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(_Error || (_Error = {}));\nvar DeleteObjectsOutput;\n(function (DeleteObjectsOutput) {\n DeleteObjectsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteObjectsOutput || (DeleteObjectsOutput = {}));\nvar ObjectIdentifier;\n(function (ObjectIdentifier) {\n ObjectIdentifier.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ObjectIdentifier || (ObjectIdentifier = {}));\nvar Delete;\n(function (Delete) {\n Delete.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Delete || (Delete = {}));\nvar DeleteObjectsRequest;\n(function (DeleteObjectsRequest) {\n DeleteObjectsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteObjectsRequest || (DeleteObjectsRequest = {}));\nvar DeleteObjectTaggingOutput;\n(function (DeleteObjectTaggingOutput) {\n DeleteObjectTaggingOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteObjectTaggingOutput || (DeleteObjectTaggingOutput = {}));\nvar DeleteObjectTaggingRequest;\n(function (DeleteObjectTaggingRequest) {\n DeleteObjectTaggingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteObjectTaggingRequest || (DeleteObjectTaggingRequest = {}));\nvar DeletePublicAccessBlockRequest;\n(function (DeletePublicAccessBlockRequest) {\n DeletePublicAccessBlockRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeletePublicAccessBlockRequest || (DeletePublicAccessBlockRequest = {}));\nvar GetBucketAccelerateConfigurationOutput;\n(function (GetBucketAccelerateConfigurationOutput) {\n GetBucketAccelerateConfigurationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketAccelerateConfigurationOutput || (GetBucketAccelerateConfigurationOutput = {}));\nvar GetBucketAccelerateConfigurationRequest;\n(function (GetBucketAccelerateConfigurationRequest) {\n GetBucketAccelerateConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketAccelerateConfigurationRequest || (GetBucketAccelerateConfigurationRequest = {}));\nvar GetBucketAclOutput;\n(function (GetBucketAclOutput) {\n GetBucketAclOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketAclOutput || (GetBucketAclOutput = {}));\nvar GetBucketAclRequest;\n(function (GetBucketAclRequest) {\n GetBucketAclRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketAclRequest || (GetBucketAclRequest = {}));\nvar Tag;\n(function (Tag) {\n Tag.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Tag || (Tag = {}));\nvar AnalyticsAndOperator;\n(function (AnalyticsAndOperator) {\n AnalyticsAndOperator.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AnalyticsAndOperator || (AnalyticsAndOperator = {}));\nvar AnalyticsFilter;\n(function (AnalyticsFilter) {\n AnalyticsFilter.visit = function (value, visitor) {\n if (value.Prefix !== undefined)\n return visitor.Prefix(value.Prefix);\n if (value.Tag !== undefined)\n return visitor.Tag(value.Tag);\n if (value.And !== undefined)\n return visitor.And(value.And);\n return visitor._(value.$unknown[0], value.$unknown[1]);\n };\n AnalyticsFilter.filterSensitiveLog = function (obj) {\n var _a;\n if (obj.Prefix !== undefined)\n return { Prefix: obj.Prefix };\n if (obj.Tag !== undefined)\n return { Tag: Tag.filterSensitiveLog(obj.Tag) };\n if (obj.And !== undefined)\n return { And: AnalyticsAndOperator.filterSensitiveLog(obj.And) };\n if (obj.$unknown !== undefined)\n return _a = {}, _a[obj.$unknown[0]] = \"UNKNOWN\", _a;\n };\n})(AnalyticsFilter || (AnalyticsFilter = {}));\nvar AnalyticsS3BucketDestination;\n(function (AnalyticsS3BucketDestination) {\n AnalyticsS3BucketDestination.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AnalyticsS3BucketDestination || (AnalyticsS3BucketDestination = {}));\nvar AnalyticsExportDestination;\n(function (AnalyticsExportDestination) {\n AnalyticsExportDestination.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AnalyticsExportDestination || (AnalyticsExportDestination = {}));\nvar StorageClassAnalysisDataExport;\n(function (StorageClassAnalysisDataExport) {\n StorageClassAnalysisDataExport.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StorageClassAnalysisDataExport || (StorageClassAnalysisDataExport = {}));\nvar StorageClassAnalysis;\n(function (StorageClassAnalysis) {\n StorageClassAnalysis.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StorageClassAnalysis || (StorageClassAnalysis = {}));\nvar AnalyticsConfiguration;\n(function (AnalyticsConfiguration) {\n AnalyticsConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Filter && { Filter: AnalyticsFilter.filterSensitiveLog(obj.Filter) }))); };\n})(AnalyticsConfiguration || (AnalyticsConfiguration = {}));\nvar GetBucketAnalyticsConfigurationOutput;\n(function (GetBucketAnalyticsConfigurationOutput) {\n GetBucketAnalyticsConfigurationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.AnalyticsConfiguration && {\n AnalyticsConfiguration: AnalyticsConfiguration.filterSensitiveLog(obj.AnalyticsConfiguration),\n }))); };\n})(GetBucketAnalyticsConfigurationOutput || (GetBucketAnalyticsConfigurationOutput = {}));\nvar GetBucketAnalyticsConfigurationRequest;\n(function (GetBucketAnalyticsConfigurationRequest) {\n GetBucketAnalyticsConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketAnalyticsConfigurationRequest || (GetBucketAnalyticsConfigurationRequest = {}));\nvar CORSRule;\n(function (CORSRule) {\n CORSRule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CORSRule || (CORSRule = {}));\nvar GetBucketCorsOutput;\n(function (GetBucketCorsOutput) {\n GetBucketCorsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketCorsOutput || (GetBucketCorsOutput = {}));\nvar GetBucketCorsRequest;\n(function (GetBucketCorsRequest) {\n GetBucketCorsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketCorsRequest || (GetBucketCorsRequest = {}));\nvar ServerSideEncryptionByDefault;\n(function (ServerSideEncryptionByDefault) {\n ServerSideEncryptionByDefault.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.KMSMasterKeyID && { KMSMasterKeyID: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(ServerSideEncryptionByDefault || (ServerSideEncryptionByDefault = {}));\nvar ServerSideEncryptionRule;\n(function (ServerSideEncryptionRule) {\n ServerSideEncryptionRule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.ApplyServerSideEncryptionByDefault && {\n ApplyServerSideEncryptionByDefault: ServerSideEncryptionByDefault.filterSensitiveLog(obj.ApplyServerSideEncryptionByDefault),\n }))); };\n})(ServerSideEncryptionRule || (ServerSideEncryptionRule = {}));\nvar ServerSideEncryptionConfiguration;\n(function (ServerSideEncryptionConfiguration) {\n ServerSideEncryptionConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Rules && { Rules: obj.Rules.map(function (item) { return ServerSideEncryptionRule.filterSensitiveLog(item); }) }))); };\n})(ServerSideEncryptionConfiguration || (ServerSideEncryptionConfiguration = {}));\nvar GetBucketEncryptionOutput;\n(function (GetBucketEncryptionOutput) {\n GetBucketEncryptionOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.ServerSideEncryptionConfiguration && {\n ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration.filterSensitiveLog(obj.ServerSideEncryptionConfiguration),\n }))); };\n})(GetBucketEncryptionOutput || (GetBucketEncryptionOutput = {}));\nvar GetBucketEncryptionRequest;\n(function (GetBucketEncryptionRequest) {\n GetBucketEncryptionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketEncryptionRequest || (GetBucketEncryptionRequest = {}));\nvar IntelligentTieringAndOperator;\n(function (IntelligentTieringAndOperator) {\n IntelligentTieringAndOperator.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IntelligentTieringAndOperator || (IntelligentTieringAndOperator = {}));\nvar IntelligentTieringFilter;\n(function (IntelligentTieringFilter) {\n IntelligentTieringFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IntelligentTieringFilter || (IntelligentTieringFilter = {}));\nvar Tiering;\n(function (Tiering) {\n Tiering.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Tiering || (Tiering = {}));\nvar IntelligentTieringConfiguration;\n(function (IntelligentTieringConfiguration) {\n IntelligentTieringConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IntelligentTieringConfiguration || (IntelligentTieringConfiguration = {}));\nvar GetBucketIntelligentTieringConfigurationOutput;\n(function (GetBucketIntelligentTieringConfigurationOutput) {\n GetBucketIntelligentTieringConfigurationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketIntelligentTieringConfigurationOutput || (GetBucketIntelligentTieringConfigurationOutput = {}));\nvar GetBucketIntelligentTieringConfigurationRequest;\n(function (GetBucketIntelligentTieringConfigurationRequest) {\n GetBucketIntelligentTieringConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketIntelligentTieringConfigurationRequest || (GetBucketIntelligentTieringConfigurationRequest = {}));\nvar SSEKMS;\n(function (SSEKMS) {\n SSEKMS.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.KeyId && { KeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(SSEKMS || (SSEKMS = {}));\nvar SSES3;\n(function (SSES3) {\n SSES3.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SSES3 || (SSES3 = {}));\nvar InventoryEncryption;\n(function (InventoryEncryption) {\n InventoryEncryption.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSEKMS && { SSEKMS: SSEKMS.filterSensitiveLog(obj.SSEKMS) }))); };\n})(InventoryEncryption || (InventoryEncryption = {}));\nvar InventoryS3BucketDestination;\n(function (InventoryS3BucketDestination) {\n InventoryS3BucketDestination.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Encryption && { Encryption: InventoryEncryption.filterSensitiveLog(obj.Encryption) }))); };\n})(InventoryS3BucketDestination || (InventoryS3BucketDestination = {}));\nvar InventoryDestination;\n(function (InventoryDestination) {\n InventoryDestination.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.S3BucketDestination && {\n S3BucketDestination: InventoryS3BucketDestination.filterSensitiveLog(obj.S3BucketDestination),\n }))); };\n})(InventoryDestination || (InventoryDestination = {}));\nvar InventoryFilter;\n(function (InventoryFilter) {\n InventoryFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InventoryFilter || (InventoryFilter = {}));\nvar InventorySchedule;\n(function (InventorySchedule) {\n InventorySchedule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InventorySchedule || (InventorySchedule = {}));\nvar InventoryConfiguration;\n(function (InventoryConfiguration) {\n InventoryConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Destination && { Destination: InventoryDestination.filterSensitiveLog(obj.Destination) }))); };\n})(InventoryConfiguration || (InventoryConfiguration = {}));\nvar GetBucketInventoryConfigurationOutput;\n(function (GetBucketInventoryConfigurationOutput) {\n GetBucketInventoryConfigurationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.InventoryConfiguration && {\n InventoryConfiguration: InventoryConfiguration.filterSensitiveLog(obj.InventoryConfiguration),\n }))); };\n})(GetBucketInventoryConfigurationOutput || (GetBucketInventoryConfigurationOutput = {}));\nvar GetBucketInventoryConfigurationRequest;\n(function (GetBucketInventoryConfigurationRequest) {\n GetBucketInventoryConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketInventoryConfigurationRequest || (GetBucketInventoryConfigurationRequest = {}));\nvar LifecycleExpiration;\n(function (LifecycleExpiration) {\n LifecycleExpiration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LifecycleExpiration || (LifecycleExpiration = {}));\nvar LifecycleRuleAndOperator;\n(function (LifecycleRuleAndOperator) {\n LifecycleRuleAndOperator.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LifecycleRuleAndOperator || (LifecycleRuleAndOperator = {}));\nvar LifecycleRuleFilter;\n(function (LifecycleRuleFilter) {\n LifecycleRuleFilter.visit = function (value, visitor) {\n if (value.Prefix !== undefined)\n return visitor.Prefix(value.Prefix);\n if (value.Tag !== undefined)\n return visitor.Tag(value.Tag);\n if (value.And !== undefined)\n return visitor.And(value.And);\n return visitor._(value.$unknown[0], value.$unknown[1]);\n };\n LifecycleRuleFilter.filterSensitiveLog = function (obj) {\n var _a;\n if (obj.Prefix !== undefined)\n return { Prefix: obj.Prefix };\n if (obj.Tag !== undefined)\n return { Tag: Tag.filterSensitiveLog(obj.Tag) };\n if (obj.And !== undefined)\n return { And: LifecycleRuleAndOperator.filterSensitiveLog(obj.And) };\n if (obj.$unknown !== undefined)\n return _a = {}, _a[obj.$unknown[0]] = \"UNKNOWN\", _a;\n };\n})(LifecycleRuleFilter || (LifecycleRuleFilter = {}));\nvar NoncurrentVersionExpiration;\n(function (NoncurrentVersionExpiration) {\n NoncurrentVersionExpiration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NoncurrentVersionExpiration || (NoncurrentVersionExpiration = {}));\nvar NoncurrentVersionTransition;\n(function (NoncurrentVersionTransition) {\n NoncurrentVersionTransition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NoncurrentVersionTransition || (NoncurrentVersionTransition = {}));\nvar Transition;\n(function (Transition) {\n Transition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Transition || (Transition = {}));\nvar LifecycleRule;\n(function (LifecycleRule) {\n LifecycleRule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Filter && { Filter: LifecycleRuleFilter.filterSensitiveLog(obj.Filter) }))); };\n})(LifecycleRule || (LifecycleRule = {}));\nvar GetBucketLifecycleConfigurationOutput;\n(function (GetBucketLifecycleConfigurationOutput) {\n GetBucketLifecycleConfigurationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Rules && { Rules: obj.Rules.map(function (item) { return LifecycleRule.filterSensitiveLog(item); }) }))); };\n})(GetBucketLifecycleConfigurationOutput || (GetBucketLifecycleConfigurationOutput = {}));\nvar GetBucketLifecycleConfigurationRequest;\n(function (GetBucketLifecycleConfigurationRequest) {\n GetBucketLifecycleConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketLifecycleConfigurationRequest || (GetBucketLifecycleConfigurationRequest = {}));\nvar GetBucketLocationOutput;\n(function (GetBucketLocationOutput) {\n GetBucketLocationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketLocationOutput || (GetBucketLocationOutput = {}));\nvar GetBucketLocationRequest;\n(function (GetBucketLocationRequest) {\n GetBucketLocationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketLocationRequest || (GetBucketLocationRequest = {}));\nvar TargetGrant;\n(function (TargetGrant) {\n TargetGrant.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TargetGrant || (TargetGrant = {}));\nvar LoggingEnabled;\n(function (LoggingEnabled) {\n LoggingEnabled.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LoggingEnabled || (LoggingEnabled = {}));\nvar GetBucketLoggingOutput;\n(function (GetBucketLoggingOutput) {\n GetBucketLoggingOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketLoggingOutput || (GetBucketLoggingOutput = {}));\nvar GetBucketLoggingRequest;\n(function (GetBucketLoggingRequest) {\n GetBucketLoggingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketLoggingRequest || (GetBucketLoggingRequest = {}));\nvar MetricsAndOperator;\n(function (MetricsAndOperator) {\n MetricsAndOperator.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MetricsAndOperator || (MetricsAndOperator = {}));\nvar MetricsFilter;\n(function (MetricsFilter) {\n MetricsFilter.visit = function (value, visitor) {\n if (value.Prefix !== undefined)\n return visitor.Prefix(value.Prefix);\n if (value.Tag !== undefined)\n return visitor.Tag(value.Tag);\n if (value.And !== undefined)\n return visitor.And(value.And);\n return visitor._(value.$unknown[0], value.$unknown[1]);\n };\n MetricsFilter.filterSensitiveLog = function (obj) {\n var _a;\n if (obj.Prefix !== undefined)\n return { Prefix: obj.Prefix };\n if (obj.Tag !== undefined)\n return { Tag: Tag.filterSensitiveLog(obj.Tag) };\n if (obj.And !== undefined)\n return { And: MetricsAndOperator.filterSensitiveLog(obj.And) };\n if (obj.$unknown !== undefined)\n return _a = {}, _a[obj.$unknown[0]] = \"UNKNOWN\", _a;\n };\n})(MetricsFilter || (MetricsFilter = {}));\nvar MetricsConfiguration;\n(function (MetricsConfiguration) {\n MetricsConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Filter && { Filter: MetricsFilter.filterSensitiveLog(obj.Filter) }))); };\n})(MetricsConfiguration || (MetricsConfiguration = {}));\nvar GetBucketMetricsConfigurationOutput;\n(function (GetBucketMetricsConfigurationOutput) {\n GetBucketMetricsConfigurationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.MetricsConfiguration && {\n MetricsConfiguration: MetricsConfiguration.filterSensitiveLog(obj.MetricsConfiguration),\n }))); };\n})(GetBucketMetricsConfigurationOutput || (GetBucketMetricsConfigurationOutput = {}));\nvar GetBucketMetricsConfigurationRequest;\n(function (GetBucketMetricsConfigurationRequest) {\n GetBucketMetricsConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketMetricsConfigurationRequest || (GetBucketMetricsConfigurationRequest = {}));\nvar GetBucketNotificationConfigurationRequest;\n(function (GetBucketNotificationConfigurationRequest) {\n GetBucketNotificationConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketNotificationConfigurationRequest || (GetBucketNotificationConfigurationRequest = {}));\nvar FilterRule;\n(function (FilterRule) {\n FilterRule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(FilterRule || (FilterRule = {}));\nvar S3KeyFilter;\n(function (S3KeyFilter) {\n S3KeyFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(S3KeyFilter || (S3KeyFilter = {}));\nvar NotificationConfigurationFilter;\n(function (NotificationConfigurationFilter) {\n NotificationConfigurationFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NotificationConfigurationFilter || (NotificationConfigurationFilter = {}));\nvar LambdaFunctionConfiguration;\n(function (LambdaFunctionConfiguration) {\n LambdaFunctionConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LambdaFunctionConfiguration || (LambdaFunctionConfiguration = {}));\nvar QueueConfiguration;\n(function (QueueConfiguration) {\n QueueConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(QueueConfiguration || (QueueConfiguration = {}));\nvar TopicConfiguration;\n(function (TopicConfiguration) {\n TopicConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TopicConfiguration || (TopicConfiguration = {}));\nvar NotificationConfiguration;\n(function (NotificationConfiguration) {\n NotificationConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NotificationConfiguration || (NotificationConfiguration = {}));\nvar OwnershipControlsRule;\n(function (OwnershipControlsRule) {\n OwnershipControlsRule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OwnershipControlsRule || (OwnershipControlsRule = {}));\nvar OwnershipControls;\n(function (OwnershipControls) {\n OwnershipControls.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OwnershipControls || (OwnershipControls = {}));\nvar GetBucketOwnershipControlsOutput;\n(function (GetBucketOwnershipControlsOutput) {\n GetBucketOwnershipControlsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketOwnershipControlsOutput || (GetBucketOwnershipControlsOutput = {}));\nvar GetBucketOwnershipControlsRequest;\n(function (GetBucketOwnershipControlsRequest) {\n GetBucketOwnershipControlsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketOwnershipControlsRequest || (GetBucketOwnershipControlsRequest = {}));\nvar GetBucketPolicyOutput;\n(function (GetBucketPolicyOutput) {\n GetBucketPolicyOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketPolicyOutput || (GetBucketPolicyOutput = {}));\nvar GetBucketPolicyRequest;\n(function (GetBucketPolicyRequest) {\n GetBucketPolicyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketPolicyRequest || (GetBucketPolicyRequest = {}));\nvar PolicyStatus;\n(function (PolicyStatus) {\n PolicyStatus.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PolicyStatus || (PolicyStatus = {}));\nvar GetBucketPolicyStatusOutput;\n(function (GetBucketPolicyStatusOutput) {\n GetBucketPolicyStatusOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketPolicyStatusOutput || (GetBucketPolicyStatusOutput = {}));\nvar GetBucketPolicyStatusRequest;\n(function (GetBucketPolicyStatusRequest) {\n GetBucketPolicyStatusRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketPolicyStatusRequest || (GetBucketPolicyStatusRequest = {}));\nvar DeleteMarkerReplication;\n(function (DeleteMarkerReplication) {\n DeleteMarkerReplication.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteMarkerReplication || (DeleteMarkerReplication = {}));\nvar EncryptionConfiguration;\n(function (EncryptionConfiguration) {\n EncryptionConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EncryptionConfiguration || (EncryptionConfiguration = {}));\nvar ReplicationTimeValue;\n(function (ReplicationTimeValue) {\n ReplicationTimeValue.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ReplicationTimeValue || (ReplicationTimeValue = {}));\nvar Metrics;\n(function (Metrics) {\n Metrics.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Metrics || (Metrics = {}));\nvar ReplicationTime;\n(function (ReplicationTime) {\n ReplicationTime.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ReplicationTime || (ReplicationTime = {}));\nvar Destination;\n(function (Destination) {\n Destination.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Destination || (Destination = {}));\nvar ExistingObjectReplication;\n(function (ExistingObjectReplication) {\n ExistingObjectReplication.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ExistingObjectReplication || (ExistingObjectReplication = {}));\nvar ReplicationRuleAndOperator;\n(function (ReplicationRuleAndOperator) {\n ReplicationRuleAndOperator.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ReplicationRuleAndOperator || (ReplicationRuleAndOperator = {}));\nvar ReplicationRuleFilter;\n(function (ReplicationRuleFilter) {\n ReplicationRuleFilter.visit = function (value, visitor) {\n if (value.Prefix !== undefined)\n return visitor.Prefix(value.Prefix);\n if (value.Tag !== undefined)\n return visitor.Tag(value.Tag);\n if (value.And !== undefined)\n return visitor.And(value.And);\n return visitor._(value.$unknown[0], value.$unknown[1]);\n };\n ReplicationRuleFilter.filterSensitiveLog = function (obj) {\n var _a;\n if (obj.Prefix !== undefined)\n return { Prefix: obj.Prefix };\n if (obj.Tag !== undefined)\n return { Tag: Tag.filterSensitiveLog(obj.Tag) };\n if (obj.And !== undefined)\n return { And: ReplicationRuleAndOperator.filterSensitiveLog(obj.And) };\n if (obj.$unknown !== undefined)\n return _a = {}, _a[obj.$unknown[0]] = \"UNKNOWN\", _a;\n };\n})(ReplicationRuleFilter || (ReplicationRuleFilter = {}));\nvar ReplicaModifications;\n(function (ReplicaModifications) {\n ReplicaModifications.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ReplicaModifications || (ReplicaModifications = {}));\nvar SseKmsEncryptedObjects;\n(function (SseKmsEncryptedObjects) {\n SseKmsEncryptedObjects.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SseKmsEncryptedObjects || (SseKmsEncryptedObjects = {}));\nvar SourceSelectionCriteria;\n(function (SourceSelectionCriteria) {\n SourceSelectionCriteria.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SourceSelectionCriteria || (SourceSelectionCriteria = {}));\nvar ReplicationRule;\n(function (ReplicationRule) {\n ReplicationRule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Filter && { Filter: ReplicationRuleFilter.filterSensitiveLog(obj.Filter) }))); };\n})(ReplicationRule || (ReplicationRule = {}));\nvar ReplicationConfiguration;\n(function (ReplicationConfiguration) {\n ReplicationConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Rules && { Rules: obj.Rules.map(function (item) { return ReplicationRule.filterSensitiveLog(item); }) }))); };\n})(ReplicationConfiguration || (ReplicationConfiguration = {}));\nvar GetBucketReplicationOutput;\n(function (GetBucketReplicationOutput) {\n GetBucketReplicationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.ReplicationConfiguration && {\n ReplicationConfiguration: ReplicationConfiguration.filterSensitiveLog(obj.ReplicationConfiguration),\n }))); };\n})(GetBucketReplicationOutput || (GetBucketReplicationOutput = {}));\nvar GetBucketReplicationRequest;\n(function (GetBucketReplicationRequest) {\n GetBucketReplicationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketReplicationRequest || (GetBucketReplicationRequest = {}));\nvar GetBucketRequestPaymentOutput;\n(function (GetBucketRequestPaymentOutput) {\n GetBucketRequestPaymentOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketRequestPaymentOutput || (GetBucketRequestPaymentOutput = {}));\nvar GetBucketRequestPaymentRequest;\n(function (GetBucketRequestPaymentRequest) {\n GetBucketRequestPaymentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketRequestPaymentRequest || (GetBucketRequestPaymentRequest = {}));\nvar GetBucketTaggingOutput;\n(function (GetBucketTaggingOutput) {\n GetBucketTaggingOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketTaggingOutput || (GetBucketTaggingOutput = {}));\nvar GetBucketTaggingRequest;\n(function (GetBucketTaggingRequest) {\n GetBucketTaggingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketTaggingRequest || (GetBucketTaggingRequest = {}));\nvar GetBucketVersioningOutput;\n(function (GetBucketVersioningOutput) {\n GetBucketVersioningOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketVersioningOutput || (GetBucketVersioningOutput = {}));\nvar GetBucketVersioningRequest;\n(function (GetBucketVersioningRequest) {\n GetBucketVersioningRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketVersioningRequest || (GetBucketVersioningRequest = {}));\nvar ErrorDocument;\n(function (ErrorDocument) {\n ErrorDocument.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ErrorDocument || (ErrorDocument = {}));\nvar IndexDocument;\n(function (IndexDocument) {\n IndexDocument.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IndexDocument || (IndexDocument = {}));\nvar RedirectAllRequestsTo;\n(function (RedirectAllRequestsTo) {\n RedirectAllRequestsTo.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RedirectAllRequestsTo || (RedirectAllRequestsTo = {}));\nvar Condition;\n(function (Condition) {\n Condition.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Condition || (Condition = {}));\nvar Redirect;\n(function (Redirect) {\n Redirect.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Redirect || (Redirect = {}));\nvar RoutingRule;\n(function (RoutingRule) {\n RoutingRule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RoutingRule || (RoutingRule = {}));\nvar GetBucketWebsiteOutput;\n(function (GetBucketWebsiteOutput) {\n GetBucketWebsiteOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketWebsiteOutput || (GetBucketWebsiteOutput = {}));\nvar GetBucketWebsiteRequest;\n(function (GetBucketWebsiteRequest) {\n GetBucketWebsiteRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetBucketWebsiteRequest || (GetBucketWebsiteRequest = {}));\nvar GetObjectOutput;\n(function (GetObjectOutput) {\n GetObjectOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(GetObjectOutput || (GetObjectOutput = {}));\nvar GetObjectRequest;\n(function (GetObjectRequest) {\n GetObjectRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSECustomerKey && { SSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(GetObjectRequest || (GetObjectRequest = {}));\nvar InvalidObjectState;\n(function (InvalidObjectState) {\n InvalidObjectState.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidObjectState || (InvalidObjectState = {}));\nvar NoSuchKey;\n(function (NoSuchKey) {\n NoSuchKey.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NoSuchKey || (NoSuchKey = {}));\nvar GetObjectAclOutput;\n(function (GetObjectAclOutput) {\n GetObjectAclOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectAclOutput || (GetObjectAclOutput = {}));\nvar GetObjectAclRequest;\n(function (GetObjectAclRequest) {\n GetObjectAclRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectAclRequest || (GetObjectAclRequest = {}));\nvar ObjectLockLegalHold;\n(function (ObjectLockLegalHold) {\n ObjectLockLegalHold.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ObjectLockLegalHold || (ObjectLockLegalHold = {}));\nvar GetObjectLegalHoldOutput;\n(function (GetObjectLegalHoldOutput) {\n GetObjectLegalHoldOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectLegalHoldOutput || (GetObjectLegalHoldOutput = {}));\nvar GetObjectLegalHoldRequest;\n(function (GetObjectLegalHoldRequest) {\n GetObjectLegalHoldRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectLegalHoldRequest || (GetObjectLegalHoldRequest = {}));\nvar DefaultRetention;\n(function (DefaultRetention) {\n DefaultRetention.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DefaultRetention || (DefaultRetention = {}));\nvar ObjectLockRule;\n(function (ObjectLockRule) {\n ObjectLockRule.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ObjectLockRule || (ObjectLockRule = {}));\nvar ObjectLockConfiguration;\n(function (ObjectLockConfiguration) {\n ObjectLockConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ObjectLockConfiguration || (ObjectLockConfiguration = {}));\nvar GetObjectLockConfigurationOutput;\n(function (GetObjectLockConfigurationOutput) {\n GetObjectLockConfigurationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectLockConfigurationOutput || (GetObjectLockConfigurationOutput = {}));\nvar GetObjectLockConfigurationRequest;\n(function (GetObjectLockConfigurationRequest) {\n GetObjectLockConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectLockConfigurationRequest || (GetObjectLockConfigurationRequest = {}));\nvar ObjectLockRetention;\n(function (ObjectLockRetention) {\n ObjectLockRetention.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ObjectLockRetention || (ObjectLockRetention = {}));\nvar GetObjectRetentionOutput;\n(function (GetObjectRetentionOutput) {\n GetObjectRetentionOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectRetentionOutput || (GetObjectRetentionOutput = {}));\nvar GetObjectRetentionRequest;\n(function (GetObjectRetentionRequest) {\n GetObjectRetentionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectRetentionRequest || (GetObjectRetentionRequest = {}));\nvar GetObjectTaggingOutput;\n(function (GetObjectTaggingOutput) {\n GetObjectTaggingOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectTaggingOutput || (GetObjectTaggingOutput = {}));\nvar GetObjectTaggingRequest;\n(function (GetObjectTaggingRequest) {\n GetObjectTaggingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectTaggingRequest || (GetObjectTaggingRequest = {}));\nvar GetObjectTorrentOutput;\n(function (GetObjectTorrentOutput) {\n GetObjectTorrentOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectTorrentOutput || (GetObjectTorrentOutput = {}));\nvar GetObjectTorrentRequest;\n(function (GetObjectTorrentRequest) {\n GetObjectTorrentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetObjectTorrentRequest || (GetObjectTorrentRequest = {}));\nvar PublicAccessBlockConfiguration;\n(function (PublicAccessBlockConfiguration) {\n PublicAccessBlockConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PublicAccessBlockConfiguration || (PublicAccessBlockConfiguration = {}));\nvar GetPublicAccessBlockOutput;\n(function (GetPublicAccessBlockOutput) {\n GetPublicAccessBlockOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetPublicAccessBlockOutput || (GetPublicAccessBlockOutput = {}));\nvar GetPublicAccessBlockRequest;\n(function (GetPublicAccessBlockRequest) {\n GetPublicAccessBlockRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetPublicAccessBlockRequest || (GetPublicAccessBlockRequest = {}));\nvar HeadBucketRequest;\n(function (HeadBucketRequest) {\n HeadBucketRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HeadBucketRequest || (HeadBucketRequest = {}));\nvar NoSuchBucket;\n(function (NoSuchBucket) {\n NoSuchBucket.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NoSuchBucket || (NoSuchBucket = {}));\nvar HeadObjectOutput;\n(function (HeadObjectOutput) {\n HeadObjectOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(HeadObjectOutput || (HeadObjectOutput = {}));\nvar HeadObjectRequest;\n(function (HeadObjectRequest) {\n HeadObjectRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSECustomerKey && { SSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(HeadObjectRequest || (HeadObjectRequest = {}));\nvar ListBucketAnalyticsConfigurationsOutput;\n(function (ListBucketAnalyticsConfigurationsOutput) {\n ListBucketAnalyticsConfigurationsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.AnalyticsConfigurationList && {\n AnalyticsConfigurationList: obj.AnalyticsConfigurationList.map(function (item) {\n return AnalyticsConfiguration.filterSensitiveLog(item);\n }),\n }))); };\n})(ListBucketAnalyticsConfigurationsOutput || (ListBucketAnalyticsConfigurationsOutput = {}));\nvar ListBucketAnalyticsConfigurationsRequest;\n(function (ListBucketAnalyticsConfigurationsRequest) {\n ListBucketAnalyticsConfigurationsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListBucketAnalyticsConfigurationsRequest || (ListBucketAnalyticsConfigurationsRequest = {}));\nvar ListBucketIntelligentTieringConfigurationsOutput;\n(function (ListBucketIntelligentTieringConfigurationsOutput) {\n ListBucketIntelligentTieringConfigurationsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListBucketIntelligentTieringConfigurationsOutput || (ListBucketIntelligentTieringConfigurationsOutput = {}));\nvar ListBucketIntelligentTieringConfigurationsRequest;\n(function (ListBucketIntelligentTieringConfigurationsRequest) {\n ListBucketIntelligentTieringConfigurationsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListBucketIntelligentTieringConfigurationsRequest || (ListBucketIntelligentTieringConfigurationsRequest = {}));\nvar ListBucketInventoryConfigurationsOutput;\n(function (ListBucketInventoryConfigurationsOutput) {\n ListBucketInventoryConfigurationsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.InventoryConfigurationList && {\n InventoryConfigurationList: obj.InventoryConfigurationList.map(function (item) {\n return InventoryConfiguration.filterSensitiveLog(item);\n }),\n }))); };\n})(ListBucketInventoryConfigurationsOutput || (ListBucketInventoryConfigurationsOutput = {}));\nvar ListBucketInventoryConfigurationsRequest;\n(function (ListBucketInventoryConfigurationsRequest) {\n ListBucketInventoryConfigurationsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListBucketInventoryConfigurationsRequest || (ListBucketInventoryConfigurationsRequest = {}));\nvar ListBucketMetricsConfigurationsOutput;\n(function (ListBucketMetricsConfigurationsOutput) {\n ListBucketMetricsConfigurationsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.MetricsConfigurationList && {\n MetricsConfigurationList: obj.MetricsConfigurationList.map(function (item) {\n return MetricsConfiguration.filterSensitiveLog(item);\n }),\n }))); };\n})(ListBucketMetricsConfigurationsOutput || (ListBucketMetricsConfigurationsOutput = {}));\nvar ListBucketMetricsConfigurationsRequest;\n(function (ListBucketMetricsConfigurationsRequest) {\n ListBucketMetricsConfigurationsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListBucketMetricsConfigurationsRequest || (ListBucketMetricsConfigurationsRequest = {}));\nvar Bucket;\n(function (Bucket) {\n Bucket.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Bucket || (Bucket = {}));\nvar ListBucketsOutput;\n(function (ListBucketsOutput) {\n ListBucketsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListBucketsOutput || (ListBucketsOutput = {}));\nvar CommonPrefix;\n(function (CommonPrefix) {\n CommonPrefix.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CommonPrefix || (CommonPrefix = {}));\nvar Initiator;\n(function (Initiator) {\n Initiator.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Initiator || (Initiator = {}));\nvar MultipartUpload;\n(function (MultipartUpload) {\n MultipartUpload.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MultipartUpload || (MultipartUpload = {}));\nvar ListMultipartUploadsOutput;\n(function (ListMultipartUploadsOutput) {\n ListMultipartUploadsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListMultipartUploadsOutput || (ListMultipartUploadsOutput = {}));\nvar ListMultipartUploadsRequest;\n(function (ListMultipartUploadsRequest) {\n ListMultipartUploadsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListMultipartUploadsRequest || (ListMultipartUploadsRequest = {}));\nvar _Object;\n(function (_Object) {\n _Object.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(_Object || (_Object = {}));\nvar ListObjectsOutput;\n(function (ListObjectsOutput) {\n ListObjectsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListObjectsOutput || (ListObjectsOutput = {}));\nvar ListObjectsRequest;\n(function (ListObjectsRequest) {\n ListObjectsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListObjectsRequest || (ListObjectsRequest = {}));\nvar ListObjectsV2Output;\n(function (ListObjectsV2Output) {\n ListObjectsV2Output.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListObjectsV2Output || (ListObjectsV2Output = {}));\nvar ListObjectsV2Request;\n(function (ListObjectsV2Request) {\n ListObjectsV2Request.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListObjectsV2Request || (ListObjectsV2Request = {}));\nvar DeleteMarkerEntry;\n(function (DeleteMarkerEntry) {\n DeleteMarkerEntry.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteMarkerEntry || (DeleteMarkerEntry = {}));\nvar ObjectVersion;\n(function (ObjectVersion) {\n ObjectVersion.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ObjectVersion || (ObjectVersion = {}));\nvar ListObjectVersionsOutput;\n(function (ListObjectVersionsOutput) {\n ListObjectVersionsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListObjectVersionsOutput || (ListObjectVersionsOutput = {}));\nvar ListObjectVersionsRequest;\n(function (ListObjectVersionsRequest) {\n ListObjectVersionsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListObjectVersionsRequest || (ListObjectVersionsRequest = {}));\nvar Part;\n(function (Part) {\n Part.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Part || (Part = {}));\nvar ListPartsOutput;\n(function (ListPartsOutput) {\n ListPartsOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListPartsOutput || (ListPartsOutput = {}));\nvar ListPartsRequest;\n(function (ListPartsRequest) {\n ListPartsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListPartsRequest || (ListPartsRequest = {}));\nvar PutBucketAccelerateConfigurationRequest;\n(function (PutBucketAccelerateConfigurationRequest) {\n PutBucketAccelerateConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketAccelerateConfigurationRequest || (PutBucketAccelerateConfigurationRequest = {}));\nvar PutBucketAclRequest;\n(function (PutBucketAclRequest) {\n PutBucketAclRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketAclRequest || (PutBucketAclRequest = {}));\nvar PutBucketAnalyticsConfigurationRequest;\n(function (PutBucketAnalyticsConfigurationRequest) {\n PutBucketAnalyticsConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.AnalyticsConfiguration && {\n AnalyticsConfiguration: AnalyticsConfiguration.filterSensitiveLog(obj.AnalyticsConfiguration),\n }))); };\n})(PutBucketAnalyticsConfigurationRequest || (PutBucketAnalyticsConfigurationRequest = {}));\nvar CORSConfiguration;\n(function (CORSConfiguration) {\n CORSConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CORSConfiguration || (CORSConfiguration = {}));\nvar PutBucketCorsRequest;\n(function (PutBucketCorsRequest) {\n PutBucketCorsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketCorsRequest || (PutBucketCorsRequest = {}));\nvar PutBucketEncryptionRequest;\n(function (PutBucketEncryptionRequest) {\n PutBucketEncryptionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.ServerSideEncryptionConfiguration && {\n ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration.filterSensitiveLog(obj.ServerSideEncryptionConfiguration),\n }))); };\n})(PutBucketEncryptionRequest || (PutBucketEncryptionRequest = {}));\nvar PutBucketIntelligentTieringConfigurationRequest;\n(function (PutBucketIntelligentTieringConfigurationRequest) {\n PutBucketIntelligentTieringConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketIntelligentTieringConfigurationRequest || (PutBucketIntelligentTieringConfigurationRequest = {}));\nvar PutBucketInventoryConfigurationRequest;\n(function (PutBucketInventoryConfigurationRequest) {\n PutBucketInventoryConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.InventoryConfiguration && {\n InventoryConfiguration: InventoryConfiguration.filterSensitiveLog(obj.InventoryConfiguration),\n }))); };\n})(PutBucketInventoryConfigurationRequest || (PutBucketInventoryConfigurationRequest = {}));\nvar BucketLifecycleConfiguration;\n(function (BucketLifecycleConfiguration) {\n BucketLifecycleConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Rules && { Rules: obj.Rules.map(function (item) { return LifecycleRule.filterSensitiveLog(item); }) }))); };\n})(BucketLifecycleConfiguration || (BucketLifecycleConfiguration = {}));\nvar PutBucketLifecycleConfigurationRequest;\n(function (PutBucketLifecycleConfigurationRequest) {\n PutBucketLifecycleConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.LifecycleConfiguration && {\n LifecycleConfiguration: BucketLifecycleConfiguration.filterSensitiveLog(obj.LifecycleConfiguration),\n }))); };\n})(PutBucketLifecycleConfigurationRequest || (PutBucketLifecycleConfigurationRequest = {}));\nvar BucketLoggingStatus;\n(function (BucketLoggingStatus) {\n BucketLoggingStatus.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BucketLoggingStatus || (BucketLoggingStatus = {}));\nvar PutBucketLoggingRequest;\n(function (PutBucketLoggingRequest) {\n PutBucketLoggingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketLoggingRequest || (PutBucketLoggingRequest = {}));\nvar PutBucketMetricsConfigurationRequest;\n(function (PutBucketMetricsConfigurationRequest) {\n PutBucketMetricsConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.MetricsConfiguration && {\n MetricsConfiguration: MetricsConfiguration.filterSensitiveLog(obj.MetricsConfiguration),\n }))); };\n})(PutBucketMetricsConfigurationRequest || (PutBucketMetricsConfigurationRequest = {}));\nvar PutBucketNotificationConfigurationRequest;\n(function (PutBucketNotificationConfigurationRequest) {\n PutBucketNotificationConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketNotificationConfigurationRequest || (PutBucketNotificationConfigurationRequest = {}));\nvar PutBucketOwnershipControlsRequest;\n(function (PutBucketOwnershipControlsRequest) {\n PutBucketOwnershipControlsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketOwnershipControlsRequest || (PutBucketOwnershipControlsRequest = {}));\nvar PutBucketPolicyRequest;\n(function (PutBucketPolicyRequest) {\n PutBucketPolicyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketPolicyRequest || (PutBucketPolicyRequest = {}));\nvar PutBucketReplicationRequest;\n(function (PutBucketReplicationRequest) {\n PutBucketReplicationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.ReplicationConfiguration && {\n ReplicationConfiguration: ReplicationConfiguration.filterSensitiveLog(obj.ReplicationConfiguration),\n }))); };\n})(PutBucketReplicationRequest || (PutBucketReplicationRequest = {}));\nvar RequestPaymentConfiguration;\n(function (RequestPaymentConfiguration) {\n RequestPaymentConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RequestPaymentConfiguration || (RequestPaymentConfiguration = {}));\nvar PutBucketRequestPaymentRequest;\n(function (PutBucketRequestPaymentRequest) {\n PutBucketRequestPaymentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketRequestPaymentRequest || (PutBucketRequestPaymentRequest = {}));\nvar Tagging;\n(function (Tagging) {\n Tagging.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Tagging || (Tagging = {}));\nvar PutBucketTaggingRequest;\n(function (PutBucketTaggingRequest) {\n PutBucketTaggingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketTaggingRequest || (PutBucketTaggingRequest = {}));\nvar VersioningConfiguration;\n(function (VersioningConfiguration) {\n VersioningConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(VersioningConfiguration || (VersioningConfiguration = {}));\nvar PutBucketVersioningRequest;\n(function (PutBucketVersioningRequest) {\n PutBucketVersioningRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketVersioningRequest || (PutBucketVersioningRequest = {}));\nvar WebsiteConfiguration;\n(function (WebsiteConfiguration) {\n WebsiteConfiguration.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(WebsiteConfiguration || (WebsiteConfiguration = {}));\nvar PutBucketWebsiteRequest;\n(function (PutBucketWebsiteRequest) {\n PutBucketWebsiteRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutBucketWebsiteRequest || (PutBucketWebsiteRequest = {}));\nvar PutObjectOutput;\n(function (PutObjectOutput) {\n PutObjectOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(PutObjectOutput || (PutObjectOutput = {}));\nvar PutObjectRequest;\n(function (PutObjectRequest) {\n PutObjectRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSECustomerKey && { SSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] })), (obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(PutObjectRequest || (PutObjectRequest = {}));\nvar PutObjectAclOutput;\n(function (PutObjectAclOutput) {\n PutObjectAclOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectAclOutput || (PutObjectAclOutput = {}));\nvar PutObjectAclRequest;\n(function (PutObjectAclRequest) {\n PutObjectAclRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectAclRequest || (PutObjectAclRequest = {}));\nvar PutObjectLegalHoldOutput;\n(function (PutObjectLegalHoldOutput) {\n PutObjectLegalHoldOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectLegalHoldOutput || (PutObjectLegalHoldOutput = {}));\nvar PutObjectLegalHoldRequest;\n(function (PutObjectLegalHoldRequest) {\n PutObjectLegalHoldRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectLegalHoldRequest || (PutObjectLegalHoldRequest = {}));\nvar PutObjectLockConfigurationOutput;\n(function (PutObjectLockConfigurationOutput) {\n PutObjectLockConfigurationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectLockConfigurationOutput || (PutObjectLockConfigurationOutput = {}));\nvar PutObjectLockConfigurationRequest;\n(function (PutObjectLockConfigurationRequest) {\n PutObjectLockConfigurationRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectLockConfigurationRequest || (PutObjectLockConfigurationRequest = {}));\nvar PutObjectRetentionOutput;\n(function (PutObjectRetentionOutput) {\n PutObjectRetentionOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectRetentionOutput || (PutObjectRetentionOutput = {}));\nvar PutObjectRetentionRequest;\n(function (PutObjectRetentionRequest) {\n PutObjectRetentionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectRetentionRequest || (PutObjectRetentionRequest = {}));\nvar PutObjectTaggingOutput;\n(function (PutObjectTaggingOutput) {\n PutObjectTaggingOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectTaggingOutput || (PutObjectTaggingOutput = {}));\nvar PutObjectTaggingRequest;\n(function (PutObjectTaggingRequest) {\n PutObjectTaggingRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutObjectTaggingRequest || (PutObjectTaggingRequest = {}));\nvar PutPublicAccessBlockRequest;\n(function (PutPublicAccessBlockRequest) {\n PutPublicAccessBlockRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(PutPublicAccessBlockRequest || (PutPublicAccessBlockRequest = {}));\nvar ObjectAlreadyInActiveTierError;\n(function (ObjectAlreadyInActiveTierError) {\n ObjectAlreadyInActiveTierError.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ObjectAlreadyInActiveTierError || (ObjectAlreadyInActiveTierError = {}));\nvar RestoreObjectOutput;\n(function (RestoreObjectOutput) {\n RestoreObjectOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RestoreObjectOutput || (RestoreObjectOutput = {}));\nvar GlacierJobParameters;\n(function (GlacierJobParameters) {\n GlacierJobParameters.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GlacierJobParameters || (GlacierJobParameters = {}));\nvar Encryption;\n(function (Encryption) {\n Encryption.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.KMSKeyId && { KMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(Encryption || (Encryption = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/models/models_1.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/models/models_1.js ***! \********************************************************************/ /*! exports provided: MetadataEntry, S3Location, OutputLocation, FileHeaderInfo, CSVInput, JSONType, JSONInput, ParquetInput, InputSerialization, QuoteFields, CSVOutput, JSONOutput, OutputSerialization, SelectParameters, RestoreRequestType, RestoreRequest, RestoreObjectRequest, ContinuationEvent, EndEvent, Progress, ProgressEvent, RecordsEvent, Stats, StatsEvent, SelectObjectContentEventStream, SelectObjectContentOutput, RequestProgress, ScanRange, SelectObjectContentRequest, UploadPartOutput, UploadPartRequest, CopyPartResult, UploadPartCopyOutput, UploadPartCopyRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MetadataEntry\", function() { return MetadataEntry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3Location\", function() { return S3Location; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OutputLocation\", function() { return OutputLocation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FileHeaderInfo\", function() { return FileHeaderInfo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CSVInput\", function() { return CSVInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JSONType\", function() { return JSONType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JSONInput\", function() { return JSONInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ParquetInput\", function() { return ParquetInput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InputSerialization\", function() { return InputSerialization; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QuoteFields\", function() { return QuoteFields; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CSVOutput\", function() { return CSVOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JSONOutput\", function() { return JSONOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OutputSerialization\", function() { return OutputSerialization; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SelectParameters\", function() { return SelectParameters; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RestoreRequestType\", function() { return RestoreRequestType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RestoreRequest\", function() { return RestoreRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RestoreObjectRequest\", function() { return RestoreObjectRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ContinuationEvent\", function() { return ContinuationEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EndEvent\", function() { return EndEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Progress\", function() { return Progress; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProgressEvent\", function() { return ProgressEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecordsEvent\", function() { return RecordsEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Stats\", function() { return Stats; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StatsEvent\", function() { return StatsEvent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentEventStream\", function() { return SelectObjectContentEventStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentOutput\", function() { return SelectObjectContentOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RequestProgress\", function() { return RequestProgress; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScanRange\", function() { return ScanRange; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SelectObjectContentRequest\", function() { return SelectObjectContentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UploadPartOutput\", function() { return UploadPartOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UploadPartRequest\", function() { return UploadPartRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CopyPartResult\", function() { return CopyPartResult; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCopyOutput\", function() { return UploadPartCopyOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UploadPartCopyRequest\", function() { return UploadPartCopyRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\nvar MetadataEntry;\n(function (MetadataEntry) {\n MetadataEntry.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(MetadataEntry || (MetadataEntry = {}));\nvar S3Location;\n(function (S3Location) {\n S3Location.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Encryption && { Encryption: _models_0__WEBPACK_IMPORTED_MODULE_1__[\"Encryption\"].filterSensitiveLog(obj.Encryption) }))); };\n})(S3Location || (S3Location = {}));\nvar OutputLocation;\n(function (OutputLocation) {\n OutputLocation.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.S3 && { S3: S3Location.filterSensitiveLog(obj.S3) }))); };\n})(OutputLocation || (OutputLocation = {}));\nvar FileHeaderInfo;\n(function (FileHeaderInfo) {\n FileHeaderInfo[\"IGNORE\"] = \"IGNORE\";\n FileHeaderInfo[\"NONE\"] = \"NONE\";\n FileHeaderInfo[\"USE\"] = \"USE\";\n})(FileHeaderInfo || (FileHeaderInfo = {}));\nvar CSVInput;\n(function (CSVInput) {\n CSVInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CSVInput || (CSVInput = {}));\nvar JSONType;\n(function (JSONType) {\n JSONType[\"DOCUMENT\"] = \"DOCUMENT\";\n JSONType[\"LINES\"] = \"LINES\";\n})(JSONType || (JSONType = {}));\nvar JSONInput;\n(function (JSONInput) {\n JSONInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JSONInput || (JSONInput = {}));\nvar ParquetInput;\n(function (ParquetInput) {\n ParquetInput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ParquetInput || (ParquetInput = {}));\nvar InputSerialization;\n(function (InputSerialization) {\n InputSerialization.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InputSerialization || (InputSerialization = {}));\nvar QuoteFields;\n(function (QuoteFields) {\n QuoteFields[\"ALWAYS\"] = \"ALWAYS\";\n QuoteFields[\"ASNEEDED\"] = \"ASNEEDED\";\n})(QuoteFields || (QuoteFields = {}));\nvar CSVOutput;\n(function (CSVOutput) {\n CSVOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CSVOutput || (CSVOutput = {}));\nvar JSONOutput;\n(function (JSONOutput) {\n JSONOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JSONOutput || (JSONOutput = {}));\nvar OutputSerialization;\n(function (OutputSerialization) {\n OutputSerialization.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OutputSerialization || (OutputSerialization = {}));\nvar SelectParameters;\n(function (SelectParameters) {\n SelectParameters.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(SelectParameters || (SelectParameters = {}));\nvar RestoreRequestType;\n(function (RestoreRequestType) {\n RestoreRequestType[\"SELECT\"] = \"SELECT\";\n})(RestoreRequestType || (RestoreRequestType = {}));\nvar RestoreRequest;\n(function (RestoreRequest) {\n RestoreRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.OutputLocation && { OutputLocation: OutputLocation.filterSensitiveLog(obj.OutputLocation) }))); };\n})(RestoreRequest || (RestoreRequest = {}));\nvar RestoreObjectRequest;\n(function (RestoreObjectRequest) {\n RestoreObjectRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.RestoreRequest && { RestoreRequest: RestoreRequest.filterSensitiveLog(obj.RestoreRequest) }))); };\n})(RestoreObjectRequest || (RestoreObjectRequest = {}));\nvar ContinuationEvent;\n(function (ContinuationEvent) {\n ContinuationEvent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ContinuationEvent || (ContinuationEvent = {}));\nvar EndEvent;\n(function (EndEvent) {\n EndEvent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EndEvent || (EndEvent = {}));\nvar Progress;\n(function (Progress) {\n Progress.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Progress || (Progress = {}));\nvar ProgressEvent;\n(function (ProgressEvent) {\n ProgressEvent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProgressEvent || (ProgressEvent = {}));\nvar RecordsEvent;\n(function (RecordsEvent) {\n RecordsEvent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RecordsEvent || (RecordsEvent = {}));\nvar Stats;\n(function (Stats) {\n Stats.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Stats || (Stats = {}));\nvar StatsEvent;\n(function (StatsEvent) {\n StatsEvent.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StatsEvent || (StatsEvent = {}));\nvar SelectObjectContentEventStream;\n(function (SelectObjectContentEventStream) {\n SelectObjectContentEventStream.visit = function (value, visitor) {\n if (value.Records !== undefined)\n return visitor.Records(value.Records);\n if (value.Stats !== undefined)\n return visitor.Stats(value.Stats);\n if (value.Progress !== undefined)\n return visitor.Progress(value.Progress);\n if (value.Cont !== undefined)\n return visitor.Cont(value.Cont);\n if (value.End !== undefined)\n return visitor.End(value.End);\n return visitor._(value.$unknown[0], value.$unknown[1]);\n };\n SelectObjectContentEventStream.filterSensitiveLog = function (obj) {\n var _a;\n if (obj.Records !== undefined)\n return { Records: RecordsEvent.filterSensitiveLog(obj.Records) };\n if (obj.Stats !== undefined)\n return { Stats: StatsEvent.filterSensitiveLog(obj.Stats) };\n if (obj.Progress !== undefined)\n return { Progress: ProgressEvent.filterSensitiveLog(obj.Progress) };\n if (obj.Cont !== undefined)\n return { Cont: ContinuationEvent.filterSensitiveLog(obj.Cont) };\n if (obj.End !== undefined)\n return { End: EndEvent.filterSensitiveLog(obj.End) };\n if (obj.$unknown !== undefined)\n return _a = {}, _a[obj.$unknown[0]] = \"UNKNOWN\", _a;\n };\n})(SelectObjectContentEventStream || (SelectObjectContentEventStream = {}));\nvar SelectObjectContentOutput;\n(function (SelectObjectContentOutput) {\n SelectObjectContentOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.Payload && { Payload: \"STREAMING_CONTENT\" }))); };\n})(SelectObjectContentOutput || (SelectObjectContentOutput = {}));\nvar RequestProgress;\n(function (RequestProgress) {\n RequestProgress.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(RequestProgress || (RequestProgress = {}));\nvar ScanRange;\n(function (ScanRange) {\n ScanRange.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ScanRange || (ScanRange = {}));\nvar SelectObjectContentRequest;\n(function (SelectObjectContentRequest) {\n SelectObjectContentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSECustomerKey && { SSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"SENSITIVE_STRING\"] }))); };\n})(SelectObjectContentRequest || (SelectObjectContentRequest = {}));\nvar UploadPartOutput;\n(function (UploadPartOutput) {\n UploadPartOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"SENSITIVE_STRING\"] }))); };\n})(UploadPartOutput || (UploadPartOutput = {}));\nvar UploadPartRequest;\n(function (UploadPartRequest) {\n UploadPartRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSECustomerKey && { SSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"SENSITIVE_STRING\"] }))); };\n})(UploadPartRequest || (UploadPartRequest = {}));\nvar CopyPartResult;\n(function (CopyPartResult) {\n CopyPartResult.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CopyPartResult || (CopyPartResult = {}));\nvar UploadPartCopyOutput;\n(function (UploadPartCopyOutput) {\n UploadPartCopyOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSEKMSKeyId && { SSEKMSKeyId: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"SENSITIVE_STRING\"] }))); };\n})(UploadPartCopyOutput || (UploadPartCopyOutput = {}));\nvar UploadPartCopyRequest;\n(function (UploadPartCopyRequest) {\n UploadPartCopyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.SSECustomerKey && { SSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"SENSITIVE_STRING\"] })), (obj.CopySourceSSECustomerKey && { CopySourceSSECustomerKey: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"SENSITIVE_STRING\"] }))); };\n})(UploadPartCopyRequest || (UploadPartCopyRequest = {}));\n//# sourceMappingURL=models_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/models/models_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/package.json": /*!**************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/package.json ***! \**************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-s3\\\",\\\"description\\\":\\\"AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test:unit\\\":\\\"mocha **/cjs/**/*.spec.js\\\",\\\"test:e2e\\\":\\\"mocha **/cjs/**/*.ispec.js && karma start karma.conf.js\\\",\\\"test\\\":\\\"yarn test:unit\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/eventstream-serde-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/eventstream-serde-config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/eventstream-serde-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-blob-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-stream-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/md5-js\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-apply-body-checksum\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-bucket-endpoint\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-expect-continue\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-location-constraint\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-sdk-s3\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-ssec\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-waiter\\\":\\\"3.6.1\\\",\\\"@aws-sdk/xml-builder\\\":\\\"3.6.1\\\",\\\"fast-xml-parser\\\":\\\"^3.16.0\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/chai\\\":\\\"^4.2.11\\\",\\\"@types/mocha\\\":\\\"^8.0.4\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-s3\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/pagination/Interfaces.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/pagination/Interfaces.js ***! \**************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=Interfaces.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/pagination/Interfaces.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/pagination/ListObjectsV2Paginator.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/pagination/ListObjectsV2Paginator.js ***! \**************************************************************************************/ /*! exports provided: paginateListObjectsV2 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListObjectsV2\", function() { return paginateListObjectsV2; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _S3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../S3 */ \"./node_modules/@aws-sdk/client-s3/dist/es/S3.js\");\n/* harmony import */ var _S3Client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../S3Client */ \"./node_modules/@aws-sdk/client-s3/dist/es/S3Client.js\");\n/* harmony import */ var _commands_ListObjectsV2Command__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListObjectsV2Command */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListObjectsV2Command.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListObjectsV2Command__WEBPACK_IMPORTED_MODULE_3__[\"ListObjectsV2Command\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listObjectsV2.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListObjectsV2(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListObjectsV2_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.ContinuationToken = token;\n input[\"MaxKeys\"] = config.pageSize;\n if (!(config.client instanceof _S3__WEBPACK_IMPORTED_MODULE_1__[\"S3\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _S3Client__WEBPACK_IMPORTED_MODULE_2__[\"S3Client\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected S3 | S3Client\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextContinuationToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListObjectsV2Paginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/pagination/ListObjectsV2Paginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/pagination/ListPartsPaginator.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/pagination/ListPartsPaginator.js ***! \**********************************************************************************/ /*! exports provided: paginateListParts */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListParts\", function() { return paginateListParts; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _S3__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../S3 */ \"./node_modules/@aws-sdk/client-s3/dist/es/S3.js\");\n/* harmony import */ var _S3Client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../S3Client */ \"./node_modules/@aws-sdk/client-s3/dist/es/S3Client.js\");\n/* harmony import */ var _commands_ListPartsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListPartsCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/ListPartsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListPartsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListPartsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listParts.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListParts(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListParts_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.PartNumberMarker = token;\n input[\"MaxParts\"] = config.pageSize;\n if (!(config.client instanceof _S3__WEBPACK_IMPORTED_MODULE_1__[\"S3\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _S3Client__WEBPACK_IMPORTED_MODULE_2__[\"S3Client\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected S3 | S3Client\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextPartNumberMarker;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListPartsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/pagination/ListPartsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js ***! \**************************************************************************/ /*! exports provided: serializeAws_restXmlAbortMultipartUploadCommand, serializeAws_restXmlCompleteMultipartUploadCommand, serializeAws_restXmlCopyObjectCommand, serializeAws_restXmlCreateBucketCommand, serializeAws_restXmlCreateMultipartUploadCommand, serializeAws_restXmlDeleteBucketCommand, serializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand, serializeAws_restXmlDeleteBucketCorsCommand, serializeAws_restXmlDeleteBucketEncryptionCommand, serializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand, serializeAws_restXmlDeleteBucketInventoryConfigurationCommand, serializeAws_restXmlDeleteBucketLifecycleCommand, serializeAws_restXmlDeleteBucketMetricsConfigurationCommand, serializeAws_restXmlDeleteBucketOwnershipControlsCommand, serializeAws_restXmlDeleteBucketPolicyCommand, serializeAws_restXmlDeleteBucketReplicationCommand, serializeAws_restXmlDeleteBucketTaggingCommand, serializeAws_restXmlDeleteBucketWebsiteCommand, serializeAws_restXmlDeleteObjectCommand, serializeAws_restXmlDeleteObjectsCommand, serializeAws_restXmlDeleteObjectTaggingCommand, serializeAws_restXmlDeletePublicAccessBlockCommand, serializeAws_restXmlGetBucketAccelerateConfigurationCommand, serializeAws_restXmlGetBucketAclCommand, serializeAws_restXmlGetBucketAnalyticsConfigurationCommand, serializeAws_restXmlGetBucketCorsCommand, serializeAws_restXmlGetBucketEncryptionCommand, serializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand, serializeAws_restXmlGetBucketInventoryConfigurationCommand, serializeAws_restXmlGetBucketLifecycleConfigurationCommand, serializeAws_restXmlGetBucketLocationCommand, serializeAws_restXmlGetBucketLoggingCommand, serializeAws_restXmlGetBucketMetricsConfigurationCommand, serializeAws_restXmlGetBucketNotificationConfigurationCommand, serializeAws_restXmlGetBucketOwnershipControlsCommand, serializeAws_restXmlGetBucketPolicyCommand, serializeAws_restXmlGetBucketPolicyStatusCommand, serializeAws_restXmlGetBucketReplicationCommand, serializeAws_restXmlGetBucketRequestPaymentCommand, serializeAws_restXmlGetBucketTaggingCommand, serializeAws_restXmlGetBucketVersioningCommand, serializeAws_restXmlGetBucketWebsiteCommand, serializeAws_restXmlGetObjectCommand, serializeAws_restXmlGetObjectAclCommand, serializeAws_restXmlGetObjectLegalHoldCommand, serializeAws_restXmlGetObjectLockConfigurationCommand, serializeAws_restXmlGetObjectRetentionCommand, serializeAws_restXmlGetObjectTaggingCommand, serializeAws_restXmlGetObjectTorrentCommand, serializeAws_restXmlGetPublicAccessBlockCommand, serializeAws_restXmlHeadBucketCommand, serializeAws_restXmlHeadObjectCommand, serializeAws_restXmlListBucketAnalyticsConfigurationsCommand, serializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand, serializeAws_restXmlListBucketInventoryConfigurationsCommand, serializeAws_restXmlListBucketMetricsConfigurationsCommand, serializeAws_restXmlListBucketsCommand, serializeAws_restXmlListMultipartUploadsCommand, serializeAws_restXmlListObjectsCommand, serializeAws_restXmlListObjectsV2Command, serializeAws_restXmlListObjectVersionsCommand, serializeAws_restXmlListPartsCommand, serializeAws_restXmlPutBucketAccelerateConfigurationCommand, serializeAws_restXmlPutBucketAclCommand, serializeAws_restXmlPutBucketAnalyticsConfigurationCommand, serializeAws_restXmlPutBucketCorsCommand, serializeAws_restXmlPutBucketEncryptionCommand, serializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand, serializeAws_restXmlPutBucketInventoryConfigurationCommand, serializeAws_restXmlPutBucketLifecycleConfigurationCommand, serializeAws_restXmlPutBucketLoggingCommand, serializeAws_restXmlPutBucketMetricsConfigurationCommand, serializeAws_restXmlPutBucketNotificationConfigurationCommand, serializeAws_restXmlPutBucketOwnershipControlsCommand, serializeAws_restXmlPutBucketPolicyCommand, serializeAws_restXmlPutBucketReplicationCommand, serializeAws_restXmlPutBucketRequestPaymentCommand, serializeAws_restXmlPutBucketTaggingCommand, serializeAws_restXmlPutBucketVersioningCommand, serializeAws_restXmlPutBucketWebsiteCommand, serializeAws_restXmlPutObjectCommand, serializeAws_restXmlPutObjectAclCommand, serializeAws_restXmlPutObjectLegalHoldCommand, serializeAws_restXmlPutObjectLockConfigurationCommand, serializeAws_restXmlPutObjectRetentionCommand, serializeAws_restXmlPutObjectTaggingCommand, serializeAws_restXmlPutPublicAccessBlockCommand, serializeAws_restXmlRestoreObjectCommand, serializeAws_restXmlSelectObjectContentCommand, serializeAws_restXmlUploadPartCommand, serializeAws_restXmlUploadPartCopyCommand, deserializeAws_restXmlAbortMultipartUploadCommand, deserializeAws_restXmlCompleteMultipartUploadCommand, deserializeAws_restXmlCopyObjectCommand, deserializeAws_restXmlCreateBucketCommand, deserializeAws_restXmlCreateMultipartUploadCommand, deserializeAws_restXmlDeleteBucketCommand, deserializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand, deserializeAws_restXmlDeleteBucketCorsCommand, deserializeAws_restXmlDeleteBucketEncryptionCommand, deserializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand, deserializeAws_restXmlDeleteBucketInventoryConfigurationCommand, deserializeAws_restXmlDeleteBucketLifecycleCommand, deserializeAws_restXmlDeleteBucketMetricsConfigurationCommand, deserializeAws_restXmlDeleteBucketOwnershipControlsCommand, deserializeAws_restXmlDeleteBucketPolicyCommand, deserializeAws_restXmlDeleteBucketReplicationCommand, deserializeAws_restXmlDeleteBucketTaggingCommand, deserializeAws_restXmlDeleteBucketWebsiteCommand, deserializeAws_restXmlDeleteObjectCommand, deserializeAws_restXmlDeleteObjectsCommand, deserializeAws_restXmlDeleteObjectTaggingCommand, deserializeAws_restXmlDeletePublicAccessBlockCommand, deserializeAws_restXmlGetBucketAccelerateConfigurationCommand, deserializeAws_restXmlGetBucketAclCommand, deserializeAws_restXmlGetBucketAnalyticsConfigurationCommand, deserializeAws_restXmlGetBucketCorsCommand, deserializeAws_restXmlGetBucketEncryptionCommand, deserializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand, deserializeAws_restXmlGetBucketInventoryConfigurationCommand, deserializeAws_restXmlGetBucketLifecycleConfigurationCommand, deserializeAws_restXmlGetBucketLocationCommand, deserializeAws_restXmlGetBucketLoggingCommand, deserializeAws_restXmlGetBucketMetricsConfigurationCommand, deserializeAws_restXmlGetBucketNotificationConfigurationCommand, deserializeAws_restXmlGetBucketOwnershipControlsCommand, deserializeAws_restXmlGetBucketPolicyCommand, deserializeAws_restXmlGetBucketPolicyStatusCommand, deserializeAws_restXmlGetBucketReplicationCommand, deserializeAws_restXmlGetBucketRequestPaymentCommand, deserializeAws_restXmlGetBucketTaggingCommand, deserializeAws_restXmlGetBucketVersioningCommand, deserializeAws_restXmlGetBucketWebsiteCommand, deserializeAws_restXmlGetObjectCommand, deserializeAws_restXmlGetObjectAclCommand, deserializeAws_restXmlGetObjectLegalHoldCommand, deserializeAws_restXmlGetObjectLockConfigurationCommand, deserializeAws_restXmlGetObjectRetentionCommand, deserializeAws_restXmlGetObjectTaggingCommand, deserializeAws_restXmlGetObjectTorrentCommand, deserializeAws_restXmlGetPublicAccessBlockCommand, deserializeAws_restXmlHeadBucketCommand, deserializeAws_restXmlHeadObjectCommand, deserializeAws_restXmlListBucketAnalyticsConfigurationsCommand, deserializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand, deserializeAws_restXmlListBucketInventoryConfigurationsCommand, deserializeAws_restXmlListBucketMetricsConfigurationsCommand, deserializeAws_restXmlListBucketsCommand, deserializeAws_restXmlListMultipartUploadsCommand, deserializeAws_restXmlListObjectsCommand, deserializeAws_restXmlListObjectsV2Command, deserializeAws_restXmlListObjectVersionsCommand, deserializeAws_restXmlListPartsCommand, deserializeAws_restXmlPutBucketAccelerateConfigurationCommand, deserializeAws_restXmlPutBucketAclCommand, deserializeAws_restXmlPutBucketAnalyticsConfigurationCommand, deserializeAws_restXmlPutBucketCorsCommand, deserializeAws_restXmlPutBucketEncryptionCommand, deserializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand, deserializeAws_restXmlPutBucketInventoryConfigurationCommand, deserializeAws_restXmlPutBucketLifecycleConfigurationCommand, deserializeAws_restXmlPutBucketLoggingCommand, deserializeAws_restXmlPutBucketMetricsConfigurationCommand, deserializeAws_restXmlPutBucketNotificationConfigurationCommand, deserializeAws_restXmlPutBucketOwnershipControlsCommand, deserializeAws_restXmlPutBucketPolicyCommand, deserializeAws_restXmlPutBucketReplicationCommand, deserializeAws_restXmlPutBucketRequestPaymentCommand, deserializeAws_restXmlPutBucketTaggingCommand, deserializeAws_restXmlPutBucketVersioningCommand, deserializeAws_restXmlPutBucketWebsiteCommand, deserializeAws_restXmlPutObjectCommand, deserializeAws_restXmlPutObjectAclCommand, deserializeAws_restXmlPutObjectLegalHoldCommand, deserializeAws_restXmlPutObjectLockConfigurationCommand, deserializeAws_restXmlPutObjectRetentionCommand, deserializeAws_restXmlPutObjectTaggingCommand, deserializeAws_restXmlPutPublicAccessBlockCommand, deserializeAws_restXmlRestoreObjectCommand, deserializeAws_restXmlSelectObjectContentCommand, deserializeAws_restXmlUploadPartCommand, deserializeAws_restXmlUploadPartCopyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlAbortMultipartUploadCommand\", function() { return serializeAws_restXmlAbortMultipartUploadCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlCompleteMultipartUploadCommand\", function() { return serializeAws_restXmlCompleteMultipartUploadCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlCopyObjectCommand\", function() { return serializeAws_restXmlCopyObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlCreateBucketCommand\", function() { return serializeAws_restXmlCreateBucketCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlCreateMultipartUploadCommand\", function() { return serializeAws_restXmlCreateMultipartUploadCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketCommand\", function() { return serializeAws_restXmlDeleteBucketCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand\", function() { return serializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketCorsCommand\", function() { return serializeAws_restXmlDeleteBucketCorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketEncryptionCommand\", function() { return serializeAws_restXmlDeleteBucketEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand\", function() { return serializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketInventoryConfigurationCommand\", function() { return serializeAws_restXmlDeleteBucketInventoryConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketLifecycleCommand\", function() { return serializeAws_restXmlDeleteBucketLifecycleCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketMetricsConfigurationCommand\", function() { return serializeAws_restXmlDeleteBucketMetricsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketOwnershipControlsCommand\", function() { return serializeAws_restXmlDeleteBucketOwnershipControlsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketPolicyCommand\", function() { return serializeAws_restXmlDeleteBucketPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketReplicationCommand\", function() { return serializeAws_restXmlDeleteBucketReplicationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketTaggingCommand\", function() { return serializeAws_restXmlDeleteBucketTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteBucketWebsiteCommand\", function() { return serializeAws_restXmlDeleteBucketWebsiteCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteObjectCommand\", function() { return serializeAws_restXmlDeleteObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteObjectsCommand\", function() { return serializeAws_restXmlDeleteObjectsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeleteObjectTaggingCommand\", function() { return serializeAws_restXmlDeleteObjectTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlDeletePublicAccessBlockCommand\", function() { return serializeAws_restXmlDeletePublicAccessBlockCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketAccelerateConfigurationCommand\", function() { return serializeAws_restXmlGetBucketAccelerateConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketAclCommand\", function() { return serializeAws_restXmlGetBucketAclCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketAnalyticsConfigurationCommand\", function() { return serializeAws_restXmlGetBucketAnalyticsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketCorsCommand\", function() { return serializeAws_restXmlGetBucketCorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketEncryptionCommand\", function() { return serializeAws_restXmlGetBucketEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand\", function() { return serializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketInventoryConfigurationCommand\", function() { return serializeAws_restXmlGetBucketInventoryConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketLifecycleConfigurationCommand\", function() { return serializeAws_restXmlGetBucketLifecycleConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketLocationCommand\", function() { return serializeAws_restXmlGetBucketLocationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketLoggingCommand\", function() { return serializeAws_restXmlGetBucketLoggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketMetricsConfigurationCommand\", function() { return serializeAws_restXmlGetBucketMetricsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketNotificationConfigurationCommand\", function() { return serializeAws_restXmlGetBucketNotificationConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketOwnershipControlsCommand\", function() { return serializeAws_restXmlGetBucketOwnershipControlsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketPolicyCommand\", function() { return serializeAws_restXmlGetBucketPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketPolicyStatusCommand\", function() { return serializeAws_restXmlGetBucketPolicyStatusCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketReplicationCommand\", function() { return serializeAws_restXmlGetBucketReplicationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketRequestPaymentCommand\", function() { return serializeAws_restXmlGetBucketRequestPaymentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketTaggingCommand\", function() { return serializeAws_restXmlGetBucketTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketVersioningCommand\", function() { return serializeAws_restXmlGetBucketVersioningCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetBucketWebsiteCommand\", function() { return serializeAws_restXmlGetBucketWebsiteCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetObjectCommand\", function() { return serializeAws_restXmlGetObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetObjectAclCommand\", function() { return serializeAws_restXmlGetObjectAclCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetObjectLegalHoldCommand\", function() { return serializeAws_restXmlGetObjectLegalHoldCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetObjectLockConfigurationCommand\", function() { return serializeAws_restXmlGetObjectLockConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetObjectRetentionCommand\", function() { return serializeAws_restXmlGetObjectRetentionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetObjectTaggingCommand\", function() { return serializeAws_restXmlGetObjectTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetObjectTorrentCommand\", function() { return serializeAws_restXmlGetObjectTorrentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlGetPublicAccessBlockCommand\", function() { return serializeAws_restXmlGetPublicAccessBlockCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlHeadBucketCommand\", function() { return serializeAws_restXmlHeadBucketCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlHeadObjectCommand\", function() { return serializeAws_restXmlHeadObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListBucketAnalyticsConfigurationsCommand\", function() { return serializeAws_restXmlListBucketAnalyticsConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand\", function() { return serializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListBucketInventoryConfigurationsCommand\", function() { return serializeAws_restXmlListBucketInventoryConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListBucketMetricsConfigurationsCommand\", function() { return serializeAws_restXmlListBucketMetricsConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListBucketsCommand\", function() { return serializeAws_restXmlListBucketsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListMultipartUploadsCommand\", function() { return serializeAws_restXmlListMultipartUploadsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListObjectsCommand\", function() { return serializeAws_restXmlListObjectsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListObjectsV2Command\", function() { return serializeAws_restXmlListObjectsV2Command; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListObjectVersionsCommand\", function() { return serializeAws_restXmlListObjectVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlListPartsCommand\", function() { return serializeAws_restXmlListPartsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketAccelerateConfigurationCommand\", function() { return serializeAws_restXmlPutBucketAccelerateConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketAclCommand\", function() { return serializeAws_restXmlPutBucketAclCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketAnalyticsConfigurationCommand\", function() { return serializeAws_restXmlPutBucketAnalyticsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketCorsCommand\", function() { return serializeAws_restXmlPutBucketCorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketEncryptionCommand\", function() { return serializeAws_restXmlPutBucketEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand\", function() { return serializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketInventoryConfigurationCommand\", function() { return serializeAws_restXmlPutBucketInventoryConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketLifecycleConfigurationCommand\", function() { return serializeAws_restXmlPutBucketLifecycleConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketLoggingCommand\", function() { return serializeAws_restXmlPutBucketLoggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketMetricsConfigurationCommand\", function() { return serializeAws_restXmlPutBucketMetricsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketNotificationConfigurationCommand\", function() { return serializeAws_restXmlPutBucketNotificationConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketOwnershipControlsCommand\", function() { return serializeAws_restXmlPutBucketOwnershipControlsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketPolicyCommand\", function() { return serializeAws_restXmlPutBucketPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketReplicationCommand\", function() { return serializeAws_restXmlPutBucketReplicationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketRequestPaymentCommand\", function() { return serializeAws_restXmlPutBucketRequestPaymentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketTaggingCommand\", function() { return serializeAws_restXmlPutBucketTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketVersioningCommand\", function() { return serializeAws_restXmlPutBucketVersioningCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutBucketWebsiteCommand\", function() { return serializeAws_restXmlPutBucketWebsiteCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutObjectCommand\", function() { return serializeAws_restXmlPutObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutObjectAclCommand\", function() { return serializeAws_restXmlPutObjectAclCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutObjectLegalHoldCommand\", function() { return serializeAws_restXmlPutObjectLegalHoldCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutObjectLockConfigurationCommand\", function() { return serializeAws_restXmlPutObjectLockConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutObjectRetentionCommand\", function() { return serializeAws_restXmlPutObjectRetentionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutObjectTaggingCommand\", function() { return serializeAws_restXmlPutObjectTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlPutPublicAccessBlockCommand\", function() { return serializeAws_restXmlPutPublicAccessBlockCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlRestoreObjectCommand\", function() { return serializeAws_restXmlRestoreObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlSelectObjectContentCommand\", function() { return serializeAws_restXmlSelectObjectContentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlUploadPartCommand\", function() { return serializeAws_restXmlUploadPartCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_restXmlUploadPartCopyCommand\", function() { return serializeAws_restXmlUploadPartCopyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlAbortMultipartUploadCommand\", function() { return deserializeAws_restXmlAbortMultipartUploadCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlCompleteMultipartUploadCommand\", function() { return deserializeAws_restXmlCompleteMultipartUploadCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlCopyObjectCommand\", function() { return deserializeAws_restXmlCopyObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlCreateBucketCommand\", function() { return deserializeAws_restXmlCreateBucketCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlCreateMultipartUploadCommand\", function() { return deserializeAws_restXmlCreateMultipartUploadCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketCommand\", function() { return deserializeAws_restXmlDeleteBucketCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand\", function() { return deserializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketCorsCommand\", function() { return deserializeAws_restXmlDeleteBucketCorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketEncryptionCommand\", function() { return deserializeAws_restXmlDeleteBucketEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand\", function() { return deserializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketInventoryConfigurationCommand\", function() { return deserializeAws_restXmlDeleteBucketInventoryConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketLifecycleCommand\", function() { return deserializeAws_restXmlDeleteBucketLifecycleCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketMetricsConfigurationCommand\", function() { return deserializeAws_restXmlDeleteBucketMetricsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketOwnershipControlsCommand\", function() { return deserializeAws_restXmlDeleteBucketOwnershipControlsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketPolicyCommand\", function() { return deserializeAws_restXmlDeleteBucketPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketReplicationCommand\", function() { return deserializeAws_restXmlDeleteBucketReplicationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketTaggingCommand\", function() { return deserializeAws_restXmlDeleteBucketTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteBucketWebsiteCommand\", function() { return deserializeAws_restXmlDeleteBucketWebsiteCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteObjectCommand\", function() { return deserializeAws_restXmlDeleteObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteObjectsCommand\", function() { return deserializeAws_restXmlDeleteObjectsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeleteObjectTaggingCommand\", function() { return deserializeAws_restXmlDeleteObjectTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlDeletePublicAccessBlockCommand\", function() { return deserializeAws_restXmlDeletePublicAccessBlockCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketAccelerateConfigurationCommand\", function() { return deserializeAws_restXmlGetBucketAccelerateConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketAclCommand\", function() { return deserializeAws_restXmlGetBucketAclCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketAnalyticsConfigurationCommand\", function() { return deserializeAws_restXmlGetBucketAnalyticsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketCorsCommand\", function() { return deserializeAws_restXmlGetBucketCorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketEncryptionCommand\", function() { return deserializeAws_restXmlGetBucketEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand\", function() { return deserializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketInventoryConfigurationCommand\", function() { return deserializeAws_restXmlGetBucketInventoryConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketLifecycleConfigurationCommand\", function() { return deserializeAws_restXmlGetBucketLifecycleConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketLocationCommand\", function() { return deserializeAws_restXmlGetBucketLocationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketLoggingCommand\", function() { return deserializeAws_restXmlGetBucketLoggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketMetricsConfigurationCommand\", function() { return deserializeAws_restXmlGetBucketMetricsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketNotificationConfigurationCommand\", function() { return deserializeAws_restXmlGetBucketNotificationConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketOwnershipControlsCommand\", function() { return deserializeAws_restXmlGetBucketOwnershipControlsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketPolicyCommand\", function() { return deserializeAws_restXmlGetBucketPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketPolicyStatusCommand\", function() { return deserializeAws_restXmlGetBucketPolicyStatusCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketReplicationCommand\", function() { return deserializeAws_restXmlGetBucketReplicationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketRequestPaymentCommand\", function() { return deserializeAws_restXmlGetBucketRequestPaymentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketTaggingCommand\", function() { return deserializeAws_restXmlGetBucketTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketVersioningCommand\", function() { return deserializeAws_restXmlGetBucketVersioningCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetBucketWebsiteCommand\", function() { return deserializeAws_restXmlGetBucketWebsiteCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetObjectCommand\", function() { return deserializeAws_restXmlGetObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetObjectAclCommand\", function() { return deserializeAws_restXmlGetObjectAclCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetObjectLegalHoldCommand\", function() { return deserializeAws_restXmlGetObjectLegalHoldCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetObjectLockConfigurationCommand\", function() { return deserializeAws_restXmlGetObjectLockConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetObjectRetentionCommand\", function() { return deserializeAws_restXmlGetObjectRetentionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetObjectTaggingCommand\", function() { return deserializeAws_restXmlGetObjectTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetObjectTorrentCommand\", function() { return deserializeAws_restXmlGetObjectTorrentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlGetPublicAccessBlockCommand\", function() { return deserializeAws_restXmlGetPublicAccessBlockCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlHeadBucketCommand\", function() { return deserializeAws_restXmlHeadBucketCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlHeadObjectCommand\", function() { return deserializeAws_restXmlHeadObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListBucketAnalyticsConfigurationsCommand\", function() { return deserializeAws_restXmlListBucketAnalyticsConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand\", function() { return deserializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListBucketInventoryConfigurationsCommand\", function() { return deserializeAws_restXmlListBucketInventoryConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListBucketMetricsConfigurationsCommand\", function() { return deserializeAws_restXmlListBucketMetricsConfigurationsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListBucketsCommand\", function() { return deserializeAws_restXmlListBucketsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListMultipartUploadsCommand\", function() { return deserializeAws_restXmlListMultipartUploadsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListObjectsCommand\", function() { return deserializeAws_restXmlListObjectsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListObjectsV2Command\", function() { return deserializeAws_restXmlListObjectsV2Command; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListObjectVersionsCommand\", function() { return deserializeAws_restXmlListObjectVersionsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlListPartsCommand\", function() { return deserializeAws_restXmlListPartsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketAccelerateConfigurationCommand\", function() { return deserializeAws_restXmlPutBucketAccelerateConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketAclCommand\", function() { return deserializeAws_restXmlPutBucketAclCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketAnalyticsConfigurationCommand\", function() { return deserializeAws_restXmlPutBucketAnalyticsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketCorsCommand\", function() { return deserializeAws_restXmlPutBucketCorsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketEncryptionCommand\", function() { return deserializeAws_restXmlPutBucketEncryptionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand\", function() { return deserializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketInventoryConfigurationCommand\", function() { return deserializeAws_restXmlPutBucketInventoryConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketLifecycleConfigurationCommand\", function() { return deserializeAws_restXmlPutBucketLifecycleConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketLoggingCommand\", function() { return deserializeAws_restXmlPutBucketLoggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketMetricsConfigurationCommand\", function() { return deserializeAws_restXmlPutBucketMetricsConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketNotificationConfigurationCommand\", function() { return deserializeAws_restXmlPutBucketNotificationConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketOwnershipControlsCommand\", function() { return deserializeAws_restXmlPutBucketOwnershipControlsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketPolicyCommand\", function() { return deserializeAws_restXmlPutBucketPolicyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketReplicationCommand\", function() { return deserializeAws_restXmlPutBucketReplicationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketRequestPaymentCommand\", function() { return deserializeAws_restXmlPutBucketRequestPaymentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketTaggingCommand\", function() { return deserializeAws_restXmlPutBucketTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketVersioningCommand\", function() { return deserializeAws_restXmlPutBucketVersioningCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutBucketWebsiteCommand\", function() { return deserializeAws_restXmlPutBucketWebsiteCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutObjectCommand\", function() { return deserializeAws_restXmlPutObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutObjectAclCommand\", function() { return deserializeAws_restXmlPutObjectAclCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutObjectLegalHoldCommand\", function() { return deserializeAws_restXmlPutObjectLegalHoldCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutObjectLockConfigurationCommand\", function() { return deserializeAws_restXmlPutObjectLockConfigurationCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutObjectRetentionCommand\", function() { return deserializeAws_restXmlPutObjectRetentionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutObjectTaggingCommand\", function() { return deserializeAws_restXmlPutObjectTaggingCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlPutPublicAccessBlockCommand\", function() { return deserializeAws_restXmlPutPublicAccessBlockCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlRestoreObjectCommand\", function() { return deserializeAws_restXmlRestoreObjectCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlSelectObjectContentCommand\", function() { return deserializeAws_restXmlSelectObjectContentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlUploadPartCommand\", function() { return deserializeAws_restXmlUploadPartCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_restXmlUploadPartCopyCommand\", function() { return deserializeAws_restXmlUploadPartCopyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-s3/dist/es/models/models_0.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/xml-builder */ \"./node_modules/@aws-sdk/xml-builder/dist/es/index.js\");\n/* harmony import */ var fast_xml_parser__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! fast-xml-parser */ \"./node_modules/fast-xml-parser/src/parser.js\");\n/* harmony import */ var fast_xml_parser__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(fast_xml_parser__WEBPACK_IMPORTED_MODULE_5__);\n\n\n\n\n\n\nvar serializeAws_restXmlAbortMultipartUploadCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"x-id\": \"AbortMultipartUpload\" }, (input.UploadId !== undefined && { uploadId: input.UploadId }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlCompleteMultipartUploadCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.UploadId !== undefined && { uploadId: input.UploadId }));\n if (input.MultipartUpload !== undefined) {\n contents = serializeAws_restXmlCompletedMultipartUpload(input.MultipartUpload, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlCopyObjectCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ACL) && { \"x-amz-acl\": input.ACL })), (isSerializableHeaderValue(input.CacheControl) && { \"cache-control\": input.CacheControl })), (isSerializableHeaderValue(input.ContentDisposition) && { \"content-disposition\": input.ContentDisposition })), (isSerializableHeaderValue(input.ContentEncoding) && { \"content-encoding\": input.ContentEncoding })), (isSerializableHeaderValue(input.ContentLanguage) && { \"content-language\": input.ContentLanguage })), (isSerializableHeaderValue(input.ContentType) && { \"content-type\": input.ContentType })), (isSerializableHeaderValue(input.CopySource) && { \"x-amz-copy-source\": input.CopySource })), (isSerializableHeaderValue(input.CopySourceIfMatch) && {\n \"x-amz-copy-source-if-match\": input.CopySourceIfMatch,\n })), (isSerializableHeaderValue(input.CopySourceIfModifiedSince) && {\n \"x-amz-copy-source-if-modified-since\": Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.CopySourceIfModifiedSince).toString(),\n })), (isSerializableHeaderValue(input.CopySourceIfNoneMatch) && {\n \"x-amz-copy-source-if-none-match\": input.CopySourceIfNoneMatch,\n })), (isSerializableHeaderValue(input.CopySourceIfUnmodifiedSince) && {\n \"x-amz-copy-source-if-unmodified-since\": Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.CopySourceIfUnmodifiedSince).toString(),\n })), (isSerializableHeaderValue(input.Expires) && { expires: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.Expires).toString() })), (isSerializableHeaderValue(input.GrantFullControl) && { \"x-amz-grant-full-control\": input.GrantFullControl })), (isSerializableHeaderValue(input.GrantRead) && { \"x-amz-grant-read\": input.GrantRead })), (isSerializableHeaderValue(input.GrantReadACP) && { \"x-amz-grant-read-acp\": input.GrantReadACP })), (isSerializableHeaderValue(input.GrantWriteACP) && { \"x-amz-grant-write-acp\": input.GrantWriteACP })), (isSerializableHeaderValue(input.MetadataDirective) && { \"x-amz-metadata-directive\": input.MetadataDirective })), (isSerializableHeaderValue(input.TaggingDirective) && { \"x-amz-tagging-directive\": input.TaggingDirective })), (isSerializableHeaderValue(input.ServerSideEncryption) && {\n \"x-amz-server-side-encryption\": input.ServerSideEncryption,\n })), (isSerializableHeaderValue(input.StorageClass) && { \"x-amz-storage-class\": input.StorageClass })), (isSerializableHeaderValue(input.WebsiteRedirectLocation) && {\n \"x-amz-website-redirect-location\": input.WebsiteRedirectLocation,\n })), (isSerializableHeaderValue(input.SSECustomerAlgorithm) && {\n \"x-amz-server-side-encryption-customer-algorithm\": input.SSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.SSECustomerKey) && {\n \"x-amz-server-side-encryption-customer-key\": input.SSECustomerKey,\n })), (isSerializableHeaderValue(input.SSECustomerKeyMD5) && {\n \"x-amz-server-side-encryption-customer-key-md5\": input.SSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.SSEKMSKeyId) && {\n \"x-amz-server-side-encryption-aws-kms-key-id\": input.SSEKMSKeyId,\n })), (isSerializableHeaderValue(input.SSEKMSEncryptionContext) && {\n \"x-amz-server-side-encryption-context\": input.SSEKMSEncryptionContext,\n })), (isSerializableHeaderValue(input.BucketKeyEnabled) && {\n \"x-amz-server-side-encryption-bucket-key-enabled\": input.BucketKeyEnabled.toString(),\n })), (isSerializableHeaderValue(input.CopySourceSSECustomerAlgorithm) && {\n \"x-amz-copy-source-server-side-encryption-customer-algorithm\": input.CopySourceSSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.CopySourceSSECustomerKey) && {\n \"x-amz-copy-source-server-side-encryption-customer-key\": input.CopySourceSSECustomerKey,\n })), (isSerializableHeaderValue(input.CopySourceSSECustomerKeyMD5) && {\n \"x-amz-copy-source-server-side-encryption-customer-key-md5\": input.CopySourceSSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.Tagging) && { \"x-amz-tagging\": input.Tagging })), (isSerializableHeaderValue(input.ObjectLockMode) && { \"x-amz-object-lock-mode\": input.ObjectLockMode })), (isSerializableHeaderValue(input.ObjectLockRetainUntilDate) && {\n \"x-amz-object-lock-retain-until-date\": (input.ObjectLockRetainUntilDate.toISOString().split(\".\")[0] + \"Z\").toString(),\n })), (isSerializableHeaderValue(input.ObjectLockLegalHoldStatus) && {\n \"x-amz-object-lock-legal-hold\": input.ObjectLockLegalHoldStatus,\n })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n })), (isSerializableHeaderValue(input.ExpectedSourceBucketOwner) && {\n \"x-amz-source-expected-bucket-owner\": input.ExpectedSourceBucketOwner,\n })), (input.Metadata !== undefined &&\n Object.keys(input.Metadata).reduce(function (acc, suffix) {\n var _a;\n return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_a = {}, _a[\"x-amz-meta-\" + suffix.toLowerCase()] = input.Metadata[suffix], _a)));\n }, {})));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = {\n \"x-id\": \"CopyObject\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlCreateBucketCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ACL) && { \"x-amz-acl\": input.ACL })), (isSerializableHeaderValue(input.GrantFullControl) && { \"x-amz-grant-full-control\": input.GrantFullControl })), (isSerializableHeaderValue(input.GrantRead) && { \"x-amz-grant-read\": input.GrantRead })), (isSerializableHeaderValue(input.GrantReadACP) && { \"x-amz-grant-read-acp\": input.GrantReadACP })), (isSerializableHeaderValue(input.GrantWrite) && { \"x-amz-grant-write\": input.GrantWrite })), (isSerializableHeaderValue(input.GrantWriteACP) && { \"x-amz-grant-write-acp\": input.GrantWriteACP })), (isSerializableHeaderValue(input.ObjectLockEnabledForBucket) && {\n \"x-amz-bucket-object-lock-enabled\": input.ObjectLockEnabledForBucket.toString(),\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.CreateBucketConfiguration !== undefined) {\n contents = serializeAws_restXmlCreateBucketConfiguration(input.CreateBucketConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlCreateMultipartUploadCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ACL) && { \"x-amz-acl\": input.ACL })), (isSerializableHeaderValue(input.CacheControl) && { \"cache-control\": input.CacheControl })), (isSerializableHeaderValue(input.ContentDisposition) && { \"content-disposition\": input.ContentDisposition })), (isSerializableHeaderValue(input.ContentEncoding) && { \"content-encoding\": input.ContentEncoding })), (isSerializableHeaderValue(input.ContentLanguage) && { \"content-language\": input.ContentLanguage })), (isSerializableHeaderValue(input.ContentType) && { \"content-type\": input.ContentType })), (isSerializableHeaderValue(input.Expires) && { expires: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.Expires).toString() })), (isSerializableHeaderValue(input.GrantFullControl) && { \"x-amz-grant-full-control\": input.GrantFullControl })), (isSerializableHeaderValue(input.GrantRead) && { \"x-amz-grant-read\": input.GrantRead })), (isSerializableHeaderValue(input.GrantReadACP) && { \"x-amz-grant-read-acp\": input.GrantReadACP })), (isSerializableHeaderValue(input.GrantWriteACP) && { \"x-amz-grant-write-acp\": input.GrantWriteACP })), (isSerializableHeaderValue(input.ServerSideEncryption) && {\n \"x-amz-server-side-encryption\": input.ServerSideEncryption,\n })), (isSerializableHeaderValue(input.StorageClass) && { \"x-amz-storage-class\": input.StorageClass })), (isSerializableHeaderValue(input.WebsiteRedirectLocation) && {\n \"x-amz-website-redirect-location\": input.WebsiteRedirectLocation,\n })), (isSerializableHeaderValue(input.SSECustomerAlgorithm) && {\n \"x-amz-server-side-encryption-customer-algorithm\": input.SSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.SSECustomerKey) && {\n \"x-amz-server-side-encryption-customer-key\": input.SSECustomerKey,\n })), (isSerializableHeaderValue(input.SSECustomerKeyMD5) && {\n \"x-amz-server-side-encryption-customer-key-md5\": input.SSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.SSEKMSKeyId) && {\n \"x-amz-server-side-encryption-aws-kms-key-id\": input.SSEKMSKeyId,\n })), (isSerializableHeaderValue(input.SSEKMSEncryptionContext) && {\n \"x-amz-server-side-encryption-context\": input.SSEKMSEncryptionContext,\n })), (isSerializableHeaderValue(input.BucketKeyEnabled) && {\n \"x-amz-server-side-encryption-bucket-key-enabled\": input.BucketKeyEnabled.toString(),\n })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.Tagging) && { \"x-amz-tagging\": input.Tagging })), (isSerializableHeaderValue(input.ObjectLockMode) && { \"x-amz-object-lock-mode\": input.ObjectLockMode })), (isSerializableHeaderValue(input.ObjectLockRetainUntilDate) && {\n \"x-amz-object-lock-retain-until-date\": (input.ObjectLockRetainUntilDate.toISOString().split(\".\")[0] + \"Z\").toString(),\n })), (isSerializableHeaderValue(input.ObjectLockLegalHoldStatus) && {\n \"x-amz-object-lock-legal-hold\": input.ObjectLockLegalHoldStatus,\n })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n })), (input.Metadata !== undefined &&\n Object.keys(input.Metadata).reduce(function (acc, suffix) {\n var _a;\n return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_a = {}, _a[\"x-amz-meta-\" + suffix.toLowerCase()] = input.Metadata[suffix], _a)));\n }, {})));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = {\n uploads: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ analytics: \"\" }, (input.Id !== undefined && { id: input.Id }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketCorsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n cors: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketEncryptionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n encryption: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"intelligent-tiering\": \"\" }, (input.Id !== undefined && { id: input.Id }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketInventoryConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ inventory: \"\" }, (input.Id !== undefined && { id: input.Id }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketLifecycleCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n lifecycle: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketMetricsConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ metrics: \"\" }, (input.Id !== undefined && { id: input.Id }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketOwnershipControlsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n ownershipControls: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketPolicyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n policy: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketReplicationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n replication: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketTaggingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n tagging: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteBucketWebsiteCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n website: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteObjectCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.MFA) && { \"x-amz-mfa\": input.MFA })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.BypassGovernanceRetention) && {\n \"x-amz-bypass-governance-retention\": input.BypassGovernanceRetention.toString(),\n })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"x-id\": \"DeleteObject\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteObjectsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.MFA) && { \"x-amz-mfa\": input.MFA })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.BypassGovernanceRetention) && {\n \"x-amz-bypass-governance-retention\": input.BypassGovernanceRetention.toString(),\n })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n delete: \"\",\n };\n if (input.Delete !== undefined) {\n contents = serializeAws_restXmlDelete(input.Delete, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeleteObjectTaggingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ tagging: \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlDeletePublicAccessBlockCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n publicAccessBlock: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"DELETE\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketAccelerateConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n accelerate: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketAclCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n acl: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketAnalyticsConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ analytics: \"\", \"x-id\": \"GetBucketAnalyticsConfiguration\" }, (input.Id !== undefined && { id: input.Id }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketCorsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n cors: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketEncryptionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n encryption: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"intelligent-tiering\": \"\", \"x-id\": \"GetBucketIntelligentTieringConfiguration\" }, (input.Id !== undefined && { id: input.Id }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketInventoryConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ inventory: \"\", \"x-id\": \"GetBucketInventoryConfiguration\" }, (input.Id !== undefined && { id: input.Id }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketLifecycleConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n lifecycle: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketLocationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n location: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketLoggingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n logging: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketMetricsConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ metrics: \"\", \"x-id\": \"GetBucketMetricsConfiguration\" }, (input.Id !== undefined && { id: input.Id }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketNotificationConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n notification: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketOwnershipControlsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n ownershipControls: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketPolicyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n policy: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketPolicyStatusCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n policyStatus: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketReplicationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n replication: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketRequestPaymentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n requestPayment: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketTaggingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n tagging: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketVersioningCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n versioning: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetBucketWebsiteCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n website: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetObjectCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.IfMatch) && { \"if-match\": input.IfMatch })), (isSerializableHeaderValue(input.IfModifiedSince) && {\n \"if-modified-since\": Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.IfModifiedSince).toString(),\n })), (isSerializableHeaderValue(input.IfNoneMatch) && { \"if-none-match\": input.IfNoneMatch })), (isSerializableHeaderValue(input.IfUnmodifiedSince) && {\n \"if-unmodified-since\": Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.IfUnmodifiedSince).toString(),\n })), (isSerializableHeaderValue(input.Range) && { range: input.Range })), (isSerializableHeaderValue(input.SSECustomerAlgorithm) && {\n \"x-amz-server-side-encryption-customer-algorithm\": input.SSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.SSECustomerKey) && {\n \"x-amz-server-side-encryption-customer-key\": input.SSECustomerKey,\n })), (isSerializableHeaderValue(input.SSECustomerKeyMD5) && {\n \"x-amz-server-side-encryption-customer-key-md5\": input.SSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"x-id\": \"GetObject\" }, (input.ResponseCacheControl !== undefined && { \"response-cache-control\": input.ResponseCacheControl })), (input.ResponseContentDisposition !== undefined && {\n \"response-content-disposition\": input.ResponseContentDisposition,\n })), (input.ResponseContentEncoding !== undefined && { \"response-content-encoding\": input.ResponseContentEncoding })), (input.ResponseContentLanguage !== undefined && { \"response-content-language\": input.ResponseContentLanguage })), (input.ResponseContentType !== undefined && { \"response-content-type\": input.ResponseContentType })), (input.ResponseExpires !== undefined && {\n \"response-expires\": (input.ResponseExpires.toISOString().split(\".\")[0] + \"Z\").toString(),\n })), (input.VersionId !== undefined && { versionId: input.VersionId })), (input.PartNumber !== undefined && { partNumber: input.PartNumber.toString() }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetObjectAclCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ acl: \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetObjectLegalHoldCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"legal-hold\": \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetObjectLockConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n \"object-lock\": \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetObjectRetentionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ retention: \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetObjectTaggingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ tagging: \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetObjectTorrentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = {\n torrent: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlGetPublicAccessBlockCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n publicAccessBlock: \"\",\n };\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlHeadBucketCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"HEAD\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlHeadObjectCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.IfMatch) && { \"if-match\": input.IfMatch })), (isSerializableHeaderValue(input.IfModifiedSince) && {\n \"if-modified-since\": Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.IfModifiedSince).toString(),\n })), (isSerializableHeaderValue(input.IfNoneMatch) && { \"if-none-match\": input.IfNoneMatch })), (isSerializableHeaderValue(input.IfUnmodifiedSince) && {\n \"if-unmodified-since\": Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.IfUnmodifiedSince).toString(),\n })), (isSerializableHeaderValue(input.Range) && { range: input.Range })), (isSerializableHeaderValue(input.SSECustomerAlgorithm) && {\n \"x-amz-server-side-encryption-customer-algorithm\": input.SSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.SSECustomerKey) && {\n \"x-amz-server-side-encryption-customer-key\": input.SSECustomerKey,\n })), (isSerializableHeaderValue(input.SSECustomerKeyMD5) && {\n \"x-amz-server-side-encryption-customer-key-md5\": input.SSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.VersionId !== undefined && { versionId: input.VersionId })), (input.PartNumber !== undefined && { partNumber: input.PartNumber.toString() }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"HEAD\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListBucketAnalyticsConfigurationsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ analytics: \"\", \"x-id\": \"ListBucketAnalyticsConfigurations\" }, (input.ContinuationToken !== undefined && { \"continuation-token\": input.ContinuationToken }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"intelligent-tiering\": \"\", \"x-id\": \"ListBucketIntelligentTieringConfigurations\" }, (input.ContinuationToken !== undefined && { \"continuation-token\": input.ContinuationToken }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListBucketInventoryConfigurationsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ inventory: \"\", \"x-id\": \"ListBucketInventoryConfigurations\" }, (input.ContinuationToken !== undefined && { \"continuation-token\": input.ContinuationToken }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListBucketMetricsConfigurationsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ metrics: \"\", \"x-id\": \"ListBucketMetricsConfigurations\" }, (input.ContinuationToken !== undefined && { \"continuation-token\": input.ContinuationToken }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListBucketsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {};\n resolvedPath = \"/\";\n body = \"\";\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListMultipartUploadsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ uploads: \"\" }, (input.Delimiter !== undefined && { delimiter: input.Delimiter })), (input.EncodingType !== undefined && { \"encoding-type\": input.EncodingType })), (input.KeyMarker !== undefined && { \"key-marker\": input.KeyMarker })), (input.MaxUploads !== undefined && { \"max-uploads\": input.MaxUploads.toString() })), (input.Prefix !== undefined && { prefix: input.Prefix })), (input.UploadIdMarker !== undefined && { \"upload-id-marker\": input.UploadIdMarker }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListObjectsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Delimiter !== undefined && { delimiter: input.Delimiter })), (input.EncodingType !== undefined && { \"encoding-type\": input.EncodingType })), (input.Marker !== undefined && { marker: input.Marker })), (input.MaxKeys !== undefined && { \"max-keys\": input.MaxKeys.toString() })), (input.Prefix !== undefined && { prefix: input.Prefix }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListObjectsV2Command = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"list-type\": \"2\" }, (input.Delimiter !== undefined && { delimiter: input.Delimiter })), (input.EncodingType !== undefined && { \"encoding-type\": input.EncodingType })), (input.MaxKeys !== undefined && { \"max-keys\": input.MaxKeys.toString() })), (input.Prefix !== undefined && { prefix: input.Prefix })), (input.ContinuationToken !== undefined && { \"continuation-token\": input.ContinuationToken })), (input.FetchOwner !== undefined && { \"fetch-owner\": input.FetchOwner.toString() })), (input.StartAfter !== undefined && { \"start-after\": input.StartAfter }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListObjectVersionsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ versions: \"\" }, (input.Delimiter !== undefined && { delimiter: input.Delimiter })), (input.EncodingType !== undefined && { \"encoding-type\": input.EncodingType })), (input.KeyMarker !== undefined && { \"key-marker\": input.KeyMarker })), (input.MaxKeys !== undefined && { \"max-keys\": input.MaxKeys.toString() })), (input.Prefix !== undefined && { prefix: input.Prefix })), (input.VersionIdMarker !== undefined && { \"version-id-marker\": input.VersionIdMarker }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlListPartsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"x-id\": \"ListParts\" }, (input.MaxParts !== undefined && { \"max-parts\": input.MaxParts.toString() })), (input.PartNumberMarker !== undefined && { \"part-number-marker\": input.PartNumberMarker })), (input.UploadId !== undefined && { uploadId: input.UploadId }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"GET\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketAccelerateConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n accelerate: \"\",\n };\n if (input.AccelerateConfiguration !== undefined) {\n contents = serializeAws_restXmlAccelerateConfiguration(input.AccelerateConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketAclCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ACL) && { \"x-amz-acl\": input.ACL })), (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.GrantFullControl) && { \"x-amz-grant-full-control\": input.GrantFullControl })), (isSerializableHeaderValue(input.GrantRead) && { \"x-amz-grant-read\": input.GrantRead })), (isSerializableHeaderValue(input.GrantReadACP) && { \"x-amz-grant-read-acp\": input.GrantReadACP })), (isSerializableHeaderValue(input.GrantWrite) && { \"x-amz-grant-write\": input.GrantWrite })), (isSerializableHeaderValue(input.GrantWriteACP) && { \"x-amz-grant-write-acp\": input.GrantWriteACP })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n acl: \"\",\n };\n if (input.AccessControlPolicy !== undefined) {\n contents = serializeAws_restXmlAccessControlPolicy(input.AccessControlPolicy, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketAnalyticsConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ analytics: \"\" }, (input.Id !== undefined && { id: input.Id }));\n if (input.AnalyticsConfiguration !== undefined) {\n contents = serializeAws_restXmlAnalyticsConfiguration(input.AnalyticsConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketCorsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n cors: \"\",\n };\n if (input.CORSConfiguration !== undefined) {\n contents = serializeAws_restXmlCORSConfiguration(input.CORSConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketEncryptionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n encryption: \"\",\n };\n if (input.ServerSideEncryptionConfiguration !== undefined) {\n contents = serializeAws_restXmlServerSideEncryptionConfiguration(input.ServerSideEncryptionConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = {\n \"content-type\": \"application/xml\",\n };\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"intelligent-tiering\": \"\" }, (input.Id !== undefined && { id: input.Id }));\n if (input.IntelligentTieringConfiguration !== undefined) {\n contents = serializeAws_restXmlIntelligentTieringConfiguration(input.IntelligentTieringConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketInventoryConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ inventory: \"\" }, (input.Id !== undefined && { id: input.Id }));\n if (input.InventoryConfiguration !== undefined) {\n contents = serializeAws_restXmlInventoryConfiguration(input.InventoryConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketLifecycleConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n lifecycle: \"\",\n };\n if (input.LifecycleConfiguration !== undefined) {\n contents = serializeAws_restXmlBucketLifecycleConfiguration(input.LifecycleConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketLoggingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n logging: \"\",\n };\n if (input.BucketLoggingStatus !== undefined) {\n contents = serializeAws_restXmlBucketLoggingStatus(input.BucketLoggingStatus, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketMetricsConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ metrics: \"\" }, (input.Id !== undefined && { id: input.Id }));\n if (input.MetricsConfiguration !== undefined) {\n contents = serializeAws_restXmlMetricsConfiguration(input.MetricsConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketNotificationConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n notification: \"\",\n };\n if (input.NotificationConfiguration !== undefined) {\n contents = serializeAws_restXmlNotificationConfiguration(input.NotificationConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketOwnershipControlsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n ownershipControls: \"\",\n };\n if (input.OwnershipControls !== undefined) {\n contents = serializeAws_restXmlOwnershipControls(input.OwnershipControls, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketPolicyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"text/plain\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ConfirmRemoveSelfBucketAccess) && {\n \"x-amz-confirm-remove-self-bucket-access\": input.ConfirmRemoveSelfBucketAccess.toString(),\n })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n policy: \"\",\n };\n if (input.Policy !== undefined) {\n contents = input.Policy;\n body = contents;\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketReplicationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.Token) && { \"x-amz-bucket-object-lock-token\": input.Token })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n replication: \"\",\n };\n if (input.ReplicationConfiguration !== undefined) {\n contents = serializeAws_restXmlReplicationConfiguration(input.ReplicationConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketRequestPaymentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n requestPayment: \"\",\n };\n if (input.RequestPaymentConfiguration !== undefined) {\n contents = serializeAws_restXmlRequestPaymentConfiguration(input.RequestPaymentConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketTaggingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n tagging: \"\",\n };\n if (input.Tagging !== undefined) {\n contents = serializeAws_restXmlTagging(input.Tagging, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketVersioningCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.MFA) && { \"x-amz-mfa\": input.MFA })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n versioning: \"\",\n };\n if (input.VersioningConfiguration !== undefined) {\n contents = serializeAws_restXmlVersioningConfiguration(input.VersioningConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutBucketWebsiteCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n website: \"\",\n };\n if (input.WebsiteConfiguration !== undefined) {\n contents = serializeAws_restXmlWebsiteConfiguration(input.WebsiteConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutObjectCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/octet-stream\" }, (isSerializableHeaderValue(input.ACL) && { \"x-amz-acl\": input.ACL })), (isSerializableHeaderValue(input.CacheControl) && { \"cache-control\": input.CacheControl })), (isSerializableHeaderValue(input.ContentDisposition) && { \"content-disposition\": input.ContentDisposition })), (isSerializableHeaderValue(input.ContentEncoding) && { \"content-encoding\": input.ContentEncoding })), (isSerializableHeaderValue(input.ContentLanguage) && { \"content-language\": input.ContentLanguage })), (isSerializableHeaderValue(input.ContentLength) && { \"content-length\": input.ContentLength.toString() })), (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ContentType) && { \"content-type\": input.ContentType })), (isSerializableHeaderValue(input.Expires) && { expires: Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.Expires).toString() })), (isSerializableHeaderValue(input.GrantFullControl) && { \"x-amz-grant-full-control\": input.GrantFullControl })), (isSerializableHeaderValue(input.GrantRead) && { \"x-amz-grant-read\": input.GrantRead })), (isSerializableHeaderValue(input.GrantReadACP) && { \"x-amz-grant-read-acp\": input.GrantReadACP })), (isSerializableHeaderValue(input.GrantWriteACP) && { \"x-amz-grant-write-acp\": input.GrantWriteACP })), (isSerializableHeaderValue(input.ServerSideEncryption) && {\n \"x-amz-server-side-encryption\": input.ServerSideEncryption,\n })), (isSerializableHeaderValue(input.StorageClass) && { \"x-amz-storage-class\": input.StorageClass })), (isSerializableHeaderValue(input.WebsiteRedirectLocation) && {\n \"x-amz-website-redirect-location\": input.WebsiteRedirectLocation,\n })), (isSerializableHeaderValue(input.SSECustomerAlgorithm) && {\n \"x-amz-server-side-encryption-customer-algorithm\": input.SSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.SSECustomerKey) && {\n \"x-amz-server-side-encryption-customer-key\": input.SSECustomerKey,\n })), (isSerializableHeaderValue(input.SSECustomerKeyMD5) && {\n \"x-amz-server-side-encryption-customer-key-md5\": input.SSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.SSEKMSKeyId) && {\n \"x-amz-server-side-encryption-aws-kms-key-id\": input.SSEKMSKeyId,\n })), (isSerializableHeaderValue(input.SSEKMSEncryptionContext) && {\n \"x-amz-server-side-encryption-context\": input.SSEKMSEncryptionContext,\n })), (isSerializableHeaderValue(input.BucketKeyEnabled) && {\n \"x-amz-server-side-encryption-bucket-key-enabled\": input.BucketKeyEnabled.toString(),\n })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.Tagging) && { \"x-amz-tagging\": input.Tagging })), (isSerializableHeaderValue(input.ObjectLockMode) && { \"x-amz-object-lock-mode\": input.ObjectLockMode })), (isSerializableHeaderValue(input.ObjectLockRetainUntilDate) && {\n \"x-amz-object-lock-retain-until-date\": (input.ObjectLockRetainUntilDate.toISOString().split(\".\")[0] + \"Z\").toString(),\n })), (isSerializableHeaderValue(input.ObjectLockLegalHoldStatus) && {\n \"x-amz-object-lock-legal-hold\": input.ObjectLockLegalHoldStatus,\n })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n })), (input.Metadata !== undefined &&\n Object.keys(input.Metadata).reduce(function (acc, suffix) {\n var _a;\n return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, acc), (_a = {}, _a[\"x-amz-meta-\" + suffix.toLowerCase()] = input.Metadata[suffix], _a)));\n }, {})));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = {\n \"x-id\": \"PutObject\",\n };\n if (input.Body !== undefined) {\n contents = input.Body;\n body = contents;\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutObjectAclCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ACL) && { \"x-amz-acl\": input.ACL })), (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.GrantFullControl) && { \"x-amz-grant-full-control\": input.GrantFullControl })), (isSerializableHeaderValue(input.GrantRead) && { \"x-amz-grant-read\": input.GrantRead })), (isSerializableHeaderValue(input.GrantReadACP) && { \"x-amz-grant-read-acp\": input.GrantReadACP })), (isSerializableHeaderValue(input.GrantWrite) && { \"x-amz-grant-write\": input.GrantWrite })), (isSerializableHeaderValue(input.GrantWriteACP) && { \"x-amz-grant-write-acp\": input.GrantWriteACP })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ acl: \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n if (input.AccessControlPolicy !== undefined) {\n contents = serializeAws_restXmlAccessControlPolicy(input.AccessControlPolicy, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutObjectLegalHoldCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"legal-hold\": \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n if (input.LegalHold !== undefined) {\n contents = serializeAws_restXmlObjectLockLegalHold(input.LegalHold, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutObjectLockConfigurationCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.Token) && { \"x-amz-bucket-object-lock-token\": input.Token })), (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n \"object-lock\": \"\",\n };\n if (input.ObjectLockConfiguration !== undefined) {\n contents = serializeAws_restXmlObjectLockConfiguration(input.ObjectLockConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutObjectRetentionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.BypassGovernanceRetention) && {\n \"x-amz-bypass-governance-retention\": input.BypassGovernanceRetention.toString(),\n })), (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ retention: \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n if (input.Retention !== undefined) {\n contents = serializeAws_restXmlObjectLockRetention(input.Retention, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutObjectTaggingCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ tagging: \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n if (input.Tagging !== undefined) {\n contents = serializeAws_restXmlTagging(input.Tagging, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlPutPublicAccessBlockCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n query = {\n publicAccessBlock: \"\",\n };\n if (input.PublicAccessBlockConfiguration !== undefined) {\n contents = serializeAws_restXmlPublicAccessBlockConfiguration(input.PublicAccessBlockConfiguration, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlRestoreObjectCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ restore: \"\" }, (input.VersionId !== undefined && { versionId: input.VersionId }));\n if (input.RestoreRequest !== undefined) {\n contents = serializeAws_restXmlRestoreRequest(input.RestoreRequest, context);\n body = '';\n contents.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n body += contents.toString();\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlSelectObjectContentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, bodyNode, node, node, node, node, node, node, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/xml\" }, (isSerializableHeaderValue(input.SSECustomerAlgorithm) && {\n \"x-amz-server-side-encryption-customer-algorithm\": input.SSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.SSECustomerKey) && {\n \"x-amz-server-side-encryption-customer-key\": input.SSECustomerKey,\n })), (isSerializableHeaderValue(input.SSECustomerKeyMD5) && {\n \"x-amz-server-side-encryption-customer-key-md5\": input.SSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = {\n select: \"\",\n \"select-type\": \"2\",\n };\n body = '';\n bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SelectObjectContentRequest\");\n bodyNode.addAttribute(\"xmlns\", \"http://s3.amazonaws.com/doc/2006-03-01/\");\n if (input.Expression !== undefined) {\n node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Expression\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Expression)).withName(\"Expression\");\n bodyNode.addChildNode(node);\n }\n if (input.ExpressionType !== undefined) {\n node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ExpressionType\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ExpressionType))\n .withName(\"ExpressionType\");\n bodyNode.addChildNode(node);\n }\n if (input.InputSerialization !== undefined) {\n node = serializeAws_restXmlInputSerialization(input.InputSerialization, context).withName(\"InputSerialization\");\n bodyNode.addChildNode(node);\n }\n if (input.OutputSerialization !== undefined) {\n node = serializeAws_restXmlOutputSerialization(input.OutputSerialization, context).withName(\"OutputSerialization\");\n bodyNode.addChildNode(node);\n }\n if (input.RequestProgress !== undefined) {\n node = serializeAws_restXmlRequestProgress(input.RequestProgress, context).withName(\"RequestProgress\");\n bodyNode.addChildNode(node);\n }\n if (input.ScanRange !== undefined) {\n node = serializeAws_restXmlScanRange(input.ScanRange, context).withName(\"ScanRange\");\n bodyNode.addChildNode(node);\n }\n body += bodyNode.toString();\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlUploadPartCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, contents, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"content-type\": \"application/octet-stream\" }, (isSerializableHeaderValue(input.ContentLength) && { \"content-length\": input.ContentLength.toString() })), (isSerializableHeaderValue(input.ContentMD5) && { \"content-md5\": input.ContentMD5 })), (isSerializableHeaderValue(input.SSECustomerAlgorithm) && {\n \"x-amz-server-side-encryption-customer-algorithm\": input.SSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.SSECustomerKey) && {\n \"x-amz-server-side-encryption-customer-key\": input.SSECustomerKey,\n })), (isSerializableHeaderValue(input.SSECustomerKeyMD5) && {\n \"x-amz-server-side-encryption-customer-key-md5\": input.SSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"x-id\": \"UploadPart\" }, (input.PartNumber !== undefined && { partNumber: input.PartNumber.toString() })), (input.UploadId !== undefined && { uploadId: input.UploadId }));\n if (input.Body !== undefined) {\n contents = input.Body;\n body = contents;\n }\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar serializeAws_restXmlUploadPartCopyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, resolvedPath, labelValue, labelValue, query, body, _a, hostname, _b, protocol, port;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (isSerializableHeaderValue(input.CopySource) && { \"x-amz-copy-source\": input.CopySource })), (isSerializableHeaderValue(input.CopySourceIfMatch) && {\n \"x-amz-copy-source-if-match\": input.CopySourceIfMatch,\n })), (isSerializableHeaderValue(input.CopySourceIfModifiedSince) && {\n \"x-amz-copy-source-if-modified-since\": Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.CopySourceIfModifiedSince).toString(),\n })), (isSerializableHeaderValue(input.CopySourceIfNoneMatch) && {\n \"x-amz-copy-source-if-none-match\": input.CopySourceIfNoneMatch,\n })), (isSerializableHeaderValue(input.CopySourceIfUnmodifiedSince) && {\n \"x-amz-copy-source-if-unmodified-since\": Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"dateToUtcString\"])(input.CopySourceIfUnmodifiedSince).toString(),\n })), (isSerializableHeaderValue(input.CopySourceRange) && { \"x-amz-copy-source-range\": input.CopySourceRange })), (isSerializableHeaderValue(input.SSECustomerAlgorithm) && {\n \"x-amz-server-side-encryption-customer-algorithm\": input.SSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.SSECustomerKey) && {\n \"x-amz-server-side-encryption-customer-key\": input.SSECustomerKey,\n })), (isSerializableHeaderValue(input.SSECustomerKeyMD5) && {\n \"x-amz-server-side-encryption-customer-key-md5\": input.SSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.CopySourceSSECustomerAlgorithm) && {\n \"x-amz-copy-source-server-side-encryption-customer-algorithm\": input.CopySourceSSECustomerAlgorithm,\n })), (isSerializableHeaderValue(input.CopySourceSSECustomerKey) && {\n \"x-amz-copy-source-server-side-encryption-customer-key\": input.CopySourceSSECustomerKey,\n })), (isSerializableHeaderValue(input.CopySourceSSECustomerKeyMD5) && {\n \"x-amz-copy-source-server-side-encryption-customer-key-md5\": input.CopySourceSSECustomerKeyMD5,\n })), (isSerializableHeaderValue(input.RequestPayer) && { \"x-amz-request-payer\": input.RequestPayer })), (isSerializableHeaderValue(input.ExpectedBucketOwner) && {\n \"x-amz-expected-bucket-owner\": input.ExpectedBucketOwner,\n })), (isSerializableHeaderValue(input.ExpectedSourceBucketOwner) && {\n \"x-amz-source-expected-bucket-owner\": input.ExpectedSourceBucketOwner,\n }));\n resolvedPath = \"/{Bucket}/{Key+}\";\n if (input.Bucket !== undefined) {\n labelValue = input.Bucket;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Bucket.\");\n }\n resolvedPath = resolvedPath.replace(\"{Bucket}\", Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(labelValue));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Bucket.\");\n }\n if (input.Key !== undefined) {\n labelValue = input.Key;\n if (labelValue.length <= 0) {\n throw new Error(\"Empty value provided for input HTTP label: Key.\");\n }\n resolvedPath = resolvedPath.replace(\"{Key+}\", labelValue\n .split(\"/\")\n .map(function (segment) { return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"extendedEncodeURIComponent\"])(segment); })\n .join(\"/\"));\n }\n else {\n throw new Error(\"No value provided for input HTTP label: Key.\");\n }\n query = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \"x-id\": \"UploadPartCopy\" }, (input.PartNumber !== undefined && { partNumber: input.PartNumber.toString() })), (input.UploadId !== undefined && { uploadId: input.UploadId }));\n return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"]({\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"PUT\",\n headers: headers,\n path: resolvedPath,\n query: query,\n body: body,\n })];\n }\n });\n}); };\nvar deserializeAws_restXmlAbortMultipartUploadCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlAbortMultipartUploadCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RequestCharged: undefined,\n };\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlAbortMultipartUploadCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"NoSuchUpload\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#NoSuchUpload\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlNoSuchUploadResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlCompleteMultipartUploadCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlCompleteMultipartUploadCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Bucket: undefined,\n BucketKeyEnabled: undefined,\n ETag: undefined,\n Expiration: undefined,\n Key: undefined,\n Location: undefined,\n RequestCharged: undefined,\n SSEKMSKeyId: undefined,\n ServerSideEncryption: undefined,\n VersionId: undefined,\n };\n if (output.headers[\"x-amz-expiration\"] !== undefined) {\n contents.Expiration = output.headers[\"x-amz-expiration\"];\n }\n if (output.headers[\"x-amz-server-side-encryption\"] !== undefined) {\n contents.ServerSideEncryption = output.headers[\"x-amz-server-side-encryption\"];\n }\n if (output.headers[\"x-amz-version-id\"] !== undefined) {\n contents.VersionId = output.headers[\"x-amz-version-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"] !== undefined) {\n contents.SSEKMSKeyId = output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] !== undefined) {\n contents.BucketKeyEnabled = output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] === \"true\";\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"Bucket\"] !== undefined) {\n contents.Bucket = data[\"Bucket\"];\n }\n if (data[\"ETag\"] !== undefined) {\n contents.ETag = data[\"ETag\"];\n }\n if (data[\"Key\"] !== undefined) {\n contents.Key = data[\"Key\"];\n }\n if (data[\"Location\"] !== undefined) {\n contents.Location = data[\"Location\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlCompleteMultipartUploadCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlCopyObjectCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlCopyObjectCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n BucketKeyEnabled: undefined,\n CopyObjectResult: undefined,\n CopySourceVersionId: undefined,\n Expiration: undefined,\n RequestCharged: undefined,\n SSECustomerAlgorithm: undefined,\n SSECustomerKeyMD5: undefined,\n SSEKMSEncryptionContext: undefined,\n SSEKMSKeyId: undefined,\n ServerSideEncryption: undefined,\n VersionId: undefined,\n };\n if (output.headers[\"x-amz-expiration\"] !== undefined) {\n contents.Expiration = output.headers[\"x-amz-expiration\"];\n }\n if (output.headers[\"x-amz-copy-source-version-id\"] !== undefined) {\n contents.CopySourceVersionId = output.headers[\"x-amz-copy-source-version-id\"];\n }\n if (output.headers[\"x-amz-version-id\"] !== undefined) {\n contents.VersionId = output.headers[\"x-amz-version-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption\"] !== undefined) {\n contents.ServerSideEncryption = output.headers[\"x-amz-server-side-encryption\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-algorithm\"] !== undefined) {\n contents.SSECustomerAlgorithm = output.headers[\"x-amz-server-side-encryption-customer-algorithm\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-key-md5\"] !== undefined) {\n contents.SSECustomerKeyMD5 = output.headers[\"x-amz-server-side-encryption-customer-key-md5\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"] !== undefined) {\n contents.SSEKMSKeyId = output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-context\"] !== undefined) {\n contents.SSEKMSEncryptionContext = output.headers[\"x-amz-server-side-encryption-context\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] !== undefined) {\n contents.BucketKeyEnabled = output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] === \"true\";\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CopyObjectResult = deserializeAws_restXmlCopyObjectResult(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlCopyObjectCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ObjectNotInActiveTierError\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#ObjectNotInActiveTierError\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlObjectNotInActiveTierErrorResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlCreateBucketCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlCreateBucketCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Location: undefined,\n };\n if (output.headers[\"location\"] !== undefined) {\n contents.Location = output.headers[\"location\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlCreateBucketCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"BucketAlreadyExists\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#BucketAlreadyExists\": return [3 /*break*/, 2];\n case \"BucketAlreadyOwnedByYou\": return [3 /*break*/, 4];\n case \"com.amazonaws.s3#BucketAlreadyOwnedByYou\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlBucketAlreadyExistsResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restXmlBucketAlreadyOwnedByYouResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlCreateMultipartUploadCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlCreateMultipartUploadCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n AbortDate: undefined,\n AbortRuleId: undefined,\n Bucket: undefined,\n BucketKeyEnabled: undefined,\n Key: undefined,\n RequestCharged: undefined,\n SSECustomerAlgorithm: undefined,\n SSECustomerKeyMD5: undefined,\n SSEKMSEncryptionContext: undefined,\n SSEKMSKeyId: undefined,\n ServerSideEncryption: undefined,\n UploadId: undefined,\n };\n if (output.headers[\"x-amz-abort-date\"] !== undefined) {\n contents.AbortDate = new Date(output.headers[\"x-amz-abort-date\"]);\n }\n if (output.headers[\"x-amz-abort-rule-id\"] !== undefined) {\n contents.AbortRuleId = output.headers[\"x-amz-abort-rule-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption\"] !== undefined) {\n contents.ServerSideEncryption = output.headers[\"x-amz-server-side-encryption\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-algorithm\"] !== undefined) {\n contents.SSECustomerAlgorithm = output.headers[\"x-amz-server-side-encryption-customer-algorithm\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-key-md5\"] !== undefined) {\n contents.SSECustomerKeyMD5 = output.headers[\"x-amz-server-side-encryption-customer-key-md5\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"] !== undefined) {\n contents.SSEKMSKeyId = output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-context\"] !== undefined) {\n contents.SSEKMSEncryptionContext = output.headers[\"x-amz-server-side-encryption-context\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] !== undefined) {\n contents.BucketKeyEnabled = output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] === \"true\";\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"Bucket\"] !== undefined) {\n contents.Bucket = data[\"Bucket\"];\n }\n if (data[\"Key\"] !== undefined) {\n contents.Key = data[\"Key\"];\n }\n if (data[\"UploadId\"] !== undefined) {\n contents.UploadId = data[\"UploadId\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlCreateMultipartUploadCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketAnalyticsConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketAnalyticsConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketAnalyticsConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketCorsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketCorsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketCorsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketEncryptionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketEncryptionCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketEncryptionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketIntelligentTieringConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketInventoryConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketInventoryConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketInventoryConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketLifecycleCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketLifecycleCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketLifecycleCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketMetricsConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketMetricsConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketMetricsConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketOwnershipControlsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketOwnershipControlsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketOwnershipControlsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketPolicyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketPolicyCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketPolicyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketReplicationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketReplicationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketReplicationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketTaggingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketTaggingCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketTaggingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketWebsiteCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteBucketWebsiteCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteBucketWebsiteCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteObjectCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteObjectCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n DeleteMarker: undefined,\n RequestCharged: undefined,\n VersionId: undefined,\n };\n if (output.headers[\"x-amz-delete-marker\"] !== undefined) {\n contents.DeleteMarker = output.headers[\"x-amz-delete-marker\"] === \"true\";\n }\n if (output.headers[\"x-amz-version-id\"] !== undefined) {\n contents.VersionId = output.headers[\"x-amz-version-id\"];\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteObjectCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteObjectsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteObjectsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Deleted: undefined,\n Errors: undefined,\n RequestCharged: undefined,\n };\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.Deleted === \"\") {\n contents.Deleted = [];\n }\n if (data[\"Deleted\"] !== undefined) {\n contents.Deleted = deserializeAws_restXmlDeletedObjects(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"Deleted\"]), context);\n }\n if (data.Error === \"\") {\n contents.Errors = [];\n }\n if (data[\"Error\"] !== undefined) {\n contents.Errors = deserializeAws_restXmlErrors(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"Error\"]), context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteObjectsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteObjectTaggingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeleteObjectTaggingCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n VersionId: undefined,\n };\n if (output.headers[\"x-amz-version-id\"] !== undefined) {\n contents.VersionId = output.headers[\"x-amz-version-id\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeleteObjectTaggingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlDeletePublicAccessBlockCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 204 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlDeletePublicAccessBlockCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlDeletePublicAccessBlockCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketAccelerateConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketAccelerateConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Status: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"Status\"] !== undefined) {\n contents.Status = data[\"Status\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketAccelerateConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketAclCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketAclCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Grants: undefined,\n Owner: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.AccessControlList === \"\") {\n contents.Grants = [];\n }\n if (data[\"AccessControlList\"] !== undefined && data[\"AccessControlList\"][\"Grant\"] !== undefined) {\n contents.Grants = deserializeAws_restXmlGrants(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"AccessControlList\"][\"Grant\"]), context);\n }\n if (data[\"Owner\"] !== undefined) {\n contents.Owner = deserializeAws_restXmlOwner(data[\"Owner\"], context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketAclCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketAnalyticsConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketAnalyticsConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n AnalyticsConfiguration: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.AnalyticsConfiguration = deserializeAws_restXmlAnalyticsConfiguration(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketAnalyticsConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketCorsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketCorsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CORSRules: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.CORSRule === \"\") {\n contents.CORSRules = [];\n }\n if (data[\"CORSRule\"] !== undefined) {\n contents.CORSRules = deserializeAws_restXmlCORSRules(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"CORSRule\"]), context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketCorsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketEncryptionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketEncryptionCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ServerSideEncryptionConfiguration: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ServerSideEncryptionConfiguration = deserializeAws_restXmlServerSideEncryptionConfiguration(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketEncryptionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketIntelligentTieringConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketIntelligentTieringConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n IntelligentTieringConfiguration: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.IntelligentTieringConfiguration = deserializeAws_restXmlIntelligentTieringConfiguration(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketIntelligentTieringConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketInventoryConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketInventoryConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n InventoryConfiguration: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.InventoryConfiguration = deserializeAws_restXmlInventoryConfiguration(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketInventoryConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketLifecycleConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketLifecycleConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Rules: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.Rule === \"\") {\n contents.Rules = [];\n }\n if (data[\"Rule\"] !== undefined) {\n contents.Rules = deserializeAws_restXmlLifecycleRules(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"Rule\"]), context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketLifecycleConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketLocationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketLocationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n LocationConstraint: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"LocationConstraint\"] !== undefined) {\n contents.LocationConstraint = data[\"LocationConstraint\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketLocationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketLoggingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketLoggingCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n LoggingEnabled: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"LoggingEnabled\"] !== undefined) {\n contents.LoggingEnabled = deserializeAws_restXmlLoggingEnabled(data[\"LoggingEnabled\"], context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketLoggingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketMetricsConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketMetricsConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MetricsConfiguration: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.MetricsConfiguration = deserializeAws_restXmlMetricsConfiguration(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketMetricsConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketNotificationConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketNotificationConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n LambdaFunctionConfigurations: undefined,\n QueueConfigurations: undefined,\n TopicConfigurations: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.CloudFunctionConfiguration === \"\") {\n contents.LambdaFunctionConfigurations = [];\n }\n if (data[\"CloudFunctionConfiguration\"] !== undefined) {\n contents.LambdaFunctionConfigurations = deserializeAws_restXmlLambdaFunctionConfigurationList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"CloudFunctionConfiguration\"]), context);\n }\n if (data.QueueConfiguration === \"\") {\n contents.QueueConfigurations = [];\n }\n if (data[\"QueueConfiguration\"] !== undefined) {\n contents.QueueConfigurations = deserializeAws_restXmlQueueConfigurationList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"QueueConfiguration\"]), context);\n }\n if (data.TopicConfiguration === \"\") {\n contents.TopicConfigurations = [];\n }\n if (data[\"TopicConfiguration\"] !== undefined) {\n contents.TopicConfigurations = deserializeAws_restXmlTopicConfigurationList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"TopicConfiguration\"]), context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketNotificationConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketOwnershipControlsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketOwnershipControlsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n OwnershipControls: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.OwnershipControls = deserializeAws_restXmlOwnershipControls(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketOwnershipControlsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketPolicyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketPolicyCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Policy: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"Policy\"] !== undefined) {\n contents.Policy = data[\"Policy\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketPolicyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketPolicyStatusCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketPolicyStatusCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n PolicyStatus: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.PolicyStatus = deserializeAws_restXmlPolicyStatus(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketPolicyStatusCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketReplicationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketReplicationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ReplicationConfiguration: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ReplicationConfiguration = deserializeAws_restXmlReplicationConfiguration(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketReplicationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketRequestPaymentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketRequestPaymentCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Payer: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"Payer\"] !== undefined) {\n contents.Payer = data[\"Payer\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketRequestPaymentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketTaggingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketTaggingCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n TagSet: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.TagSet === \"\") {\n contents.TagSet = [];\n }\n if (data[\"TagSet\"] !== undefined && data[\"TagSet\"][\"Tag\"] !== undefined) {\n contents.TagSet = deserializeAws_restXmlTagSet(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"TagSet\"][\"Tag\"]), context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketTaggingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketVersioningCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketVersioningCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n MFADelete: undefined,\n Status: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"MfaDelete\"] !== undefined) {\n contents.MFADelete = data[\"MfaDelete\"];\n }\n if (data[\"Status\"] !== undefined) {\n contents.Status = data[\"Status\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketVersioningCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketWebsiteCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetBucketWebsiteCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ErrorDocument: undefined,\n IndexDocument: undefined,\n RedirectAllRequestsTo: undefined,\n RoutingRules: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"ErrorDocument\"] !== undefined) {\n contents.ErrorDocument = deserializeAws_restXmlErrorDocument(data[\"ErrorDocument\"], context);\n }\n if (data[\"IndexDocument\"] !== undefined) {\n contents.IndexDocument = deserializeAws_restXmlIndexDocument(data[\"IndexDocument\"], context);\n }\n if (data[\"RedirectAllRequestsTo\"] !== undefined) {\n contents.RedirectAllRequestsTo = deserializeAws_restXmlRedirectAllRequestsTo(data[\"RedirectAllRequestsTo\"], context);\n }\n if (data.RoutingRules === \"\") {\n contents.RoutingRules = [];\n }\n if (data[\"RoutingRules\"] !== undefined && data[\"RoutingRules\"][\"RoutingRule\"] !== undefined) {\n contents.RoutingRules = deserializeAws_restXmlRoutingRules(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"RoutingRules\"][\"RoutingRule\"]), context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetBucketWebsiteCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetObjectCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n AcceptRanges: undefined,\n Body: undefined,\n BucketKeyEnabled: undefined,\n CacheControl: undefined,\n ContentDisposition: undefined,\n ContentEncoding: undefined,\n ContentLanguage: undefined,\n ContentLength: undefined,\n ContentRange: undefined,\n ContentType: undefined,\n DeleteMarker: undefined,\n ETag: undefined,\n Expiration: undefined,\n Expires: undefined,\n LastModified: undefined,\n Metadata: undefined,\n MissingMeta: undefined,\n ObjectLockLegalHoldStatus: undefined,\n ObjectLockMode: undefined,\n ObjectLockRetainUntilDate: undefined,\n PartsCount: undefined,\n ReplicationStatus: undefined,\n RequestCharged: undefined,\n Restore: undefined,\n SSECustomerAlgorithm: undefined,\n SSECustomerKeyMD5: undefined,\n SSEKMSKeyId: undefined,\n ServerSideEncryption: undefined,\n StorageClass: undefined,\n TagCount: undefined,\n VersionId: undefined,\n WebsiteRedirectLocation: undefined,\n };\n if (output.headers[\"x-amz-delete-marker\"] !== undefined) {\n contents.DeleteMarker = output.headers[\"x-amz-delete-marker\"] === \"true\";\n }\n if (output.headers[\"accept-ranges\"] !== undefined) {\n contents.AcceptRanges = output.headers[\"accept-ranges\"];\n }\n if (output.headers[\"x-amz-expiration\"] !== undefined) {\n contents.Expiration = output.headers[\"x-amz-expiration\"];\n }\n if (output.headers[\"x-amz-restore\"] !== undefined) {\n contents.Restore = output.headers[\"x-amz-restore\"];\n }\n if (output.headers[\"last-modified\"] !== undefined) {\n contents.LastModified = new Date(output.headers[\"last-modified\"]);\n }\n if (output.headers[\"content-length\"] !== undefined) {\n contents.ContentLength = parseInt(output.headers[\"content-length\"], 10);\n }\n if (output.headers[\"etag\"] !== undefined) {\n contents.ETag = output.headers[\"etag\"];\n }\n if (output.headers[\"x-amz-missing-meta\"] !== undefined) {\n contents.MissingMeta = parseInt(output.headers[\"x-amz-missing-meta\"], 10);\n }\n if (output.headers[\"x-amz-version-id\"] !== undefined) {\n contents.VersionId = output.headers[\"x-amz-version-id\"];\n }\n if (output.headers[\"cache-control\"] !== undefined) {\n contents.CacheControl = output.headers[\"cache-control\"];\n }\n if (output.headers[\"content-disposition\"] !== undefined) {\n contents.ContentDisposition = output.headers[\"content-disposition\"];\n }\n if (output.headers[\"content-encoding\"] !== undefined) {\n contents.ContentEncoding = output.headers[\"content-encoding\"];\n }\n if (output.headers[\"content-language\"] !== undefined) {\n contents.ContentLanguage = output.headers[\"content-language\"];\n }\n if (output.headers[\"content-range\"] !== undefined) {\n contents.ContentRange = output.headers[\"content-range\"];\n }\n if (output.headers[\"content-type\"] !== undefined) {\n contents.ContentType = output.headers[\"content-type\"];\n }\n if (output.headers[\"expires\"] !== undefined) {\n contents.Expires = new Date(output.headers[\"expires\"]);\n }\n if (output.headers[\"x-amz-website-redirect-location\"] !== undefined) {\n contents.WebsiteRedirectLocation = output.headers[\"x-amz-website-redirect-location\"];\n }\n if (output.headers[\"x-amz-server-side-encryption\"] !== undefined) {\n contents.ServerSideEncryption = output.headers[\"x-amz-server-side-encryption\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-algorithm\"] !== undefined) {\n contents.SSECustomerAlgorithm = output.headers[\"x-amz-server-side-encryption-customer-algorithm\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-key-md5\"] !== undefined) {\n contents.SSECustomerKeyMD5 = output.headers[\"x-amz-server-side-encryption-customer-key-md5\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"] !== undefined) {\n contents.SSEKMSKeyId = output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] !== undefined) {\n contents.BucketKeyEnabled = output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] === \"true\";\n }\n if (output.headers[\"x-amz-storage-class\"] !== undefined) {\n contents.StorageClass = output.headers[\"x-amz-storage-class\"];\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n if (output.headers[\"x-amz-replication-status\"] !== undefined) {\n contents.ReplicationStatus = output.headers[\"x-amz-replication-status\"];\n }\n if (output.headers[\"x-amz-mp-parts-count\"] !== undefined) {\n contents.PartsCount = parseInt(output.headers[\"x-amz-mp-parts-count\"], 10);\n }\n if (output.headers[\"x-amz-tagging-count\"] !== undefined) {\n contents.TagCount = parseInt(output.headers[\"x-amz-tagging-count\"], 10);\n }\n if (output.headers[\"x-amz-object-lock-mode\"] !== undefined) {\n contents.ObjectLockMode = output.headers[\"x-amz-object-lock-mode\"];\n }\n if (output.headers[\"x-amz-object-lock-retain-until-date\"] !== undefined) {\n contents.ObjectLockRetainUntilDate = new Date(output.headers[\"x-amz-object-lock-retain-until-date\"]);\n }\n if (output.headers[\"x-amz-object-lock-legal-hold\"] !== undefined) {\n contents.ObjectLockLegalHoldStatus = output.headers[\"x-amz-object-lock-legal-hold\"];\n }\n Object.keys(output.headers).forEach(function (header) {\n if (contents.Metadata === undefined) {\n contents.Metadata = {};\n }\n if (header.startsWith(\"x-amz-meta-\")) {\n contents.Metadata[header.substring(11)] = output.headers[header];\n }\n });\n data = output.body;\n contents.Body = data;\n return [2 /*return*/, Promise.resolve(contents)];\n });\n}); };\nvar deserializeAws_restXmlGetObjectCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, parsedBody, message;\n var _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _e = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_e.body = _f.sent(), _e)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InvalidObjectState\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#InvalidObjectState\": return [3 /*break*/, 2];\n case \"NoSuchKey\": return [3 /*break*/, 4];\n case \"com.amazonaws.s3#NoSuchKey\": return [3 /*break*/, 4];\n }\n return [3 /*break*/, 6];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlInvalidObjectStateResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_restXmlNoSuchKeyResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_f.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 7];\n case 6:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _f.label = 7;\n case 7:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectAclCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetObjectAclCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Grants: undefined,\n Owner: undefined,\n RequestCharged: undefined,\n };\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.AccessControlList === \"\") {\n contents.Grants = [];\n }\n if (data[\"AccessControlList\"] !== undefined && data[\"AccessControlList\"][\"Grant\"] !== undefined) {\n contents.Grants = deserializeAws_restXmlGrants(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"AccessControlList\"][\"Grant\"]), context);\n }\n if (data[\"Owner\"] !== undefined) {\n contents.Owner = deserializeAws_restXmlOwner(data[\"Owner\"], context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectAclCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"NoSuchKey\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#NoSuchKey\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlNoSuchKeyResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectLegalHoldCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetObjectLegalHoldCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n LegalHold: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.LegalHold = deserializeAws_restXmlObjectLockLegalHold(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectLegalHoldCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectLockConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetObjectLockConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ObjectLockConfiguration: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.ObjectLockConfiguration = deserializeAws_restXmlObjectLockConfiguration(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectLockConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectRetentionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetObjectRetentionCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Retention: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.Retention = deserializeAws_restXmlObjectLockRetention(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectRetentionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectTaggingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetObjectTaggingCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n TagSet: undefined,\n VersionId: undefined,\n };\n if (output.headers[\"x-amz-version-id\"] !== undefined) {\n contents.VersionId = output.headers[\"x-amz-version-id\"];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.TagSet === \"\") {\n contents.TagSet = [];\n }\n if (data[\"TagSet\"] !== undefined && data[\"TagSet\"][\"Tag\"] !== undefined) {\n contents.TagSet = deserializeAws_restXmlTagSet(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"TagSet\"][\"Tag\"]), context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectTaggingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetObjectTorrentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetObjectTorrentCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Body: undefined,\n RequestCharged: undefined,\n };\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n data = output.body;\n contents.Body = data;\n return [2 /*return*/, Promise.resolve(contents)];\n });\n}); };\nvar deserializeAws_restXmlGetObjectTorrentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlGetPublicAccessBlockCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlGetPublicAccessBlockCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n PublicAccessBlockConfiguration: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.PublicAccessBlockConfiguration = deserializeAws_restXmlPublicAccessBlockConfiguration(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlGetPublicAccessBlockCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlHeadBucketCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlHeadBucketCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlHeadBucketCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"NoSuchBucket\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#NoSuchBucket\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlNoSuchBucketResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlHeadObjectCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlHeadObjectCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n AcceptRanges: undefined,\n ArchiveStatus: undefined,\n BucketKeyEnabled: undefined,\n CacheControl: undefined,\n ContentDisposition: undefined,\n ContentEncoding: undefined,\n ContentLanguage: undefined,\n ContentLength: undefined,\n ContentType: undefined,\n DeleteMarker: undefined,\n ETag: undefined,\n Expiration: undefined,\n Expires: undefined,\n LastModified: undefined,\n Metadata: undefined,\n MissingMeta: undefined,\n ObjectLockLegalHoldStatus: undefined,\n ObjectLockMode: undefined,\n ObjectLockRetainUntilDate: undefined,\n PartsCount: undefined,\n ReplicationStatus: undefined,\n RequestCharged: undefined,\n Restore: undefined,\n SSECustomerAlgorithm: undefined,\n SSECustomerKeyMD5: undefined,\n SSEKMSKeyId: undefined,\n ServerSideEncryption: undefined,\n StorageClass: undefined,\n VersionId: undefined,\n WebsiteRedirectLocation: undefined,\n };\n if (output.headers[\"x-amz-delete-marker\"] !== undefined) {\n contents.DeleteMarker = output.headers[\"x-amz-delete-marker\"] === \"true\";\n }\n if (output.headers[\"accept-ranges\"] !== undefined) {\n contents.AcceptRanges = output.headers[\"accept-ranges\"];\n }\n if (output.headers[\"x-amz-expiration\"] !== undefined) {\n contents.Expiration = output.headers[\"x-amz-expiration\"];\n }\n if (output.headers[\"x-amz-restore\"] !== undefined) {\n contents.Restore = output.headers[\"x-amz-restore\"];\n }\n if (output.headers[\"x-amz-archive-status\"] !== undefined) {\n contents.ArchiveStatus = output.headers[\"x-amz-archive-status\"];\n }\n if (output.headers[\"last-modified\"] !== undefined) {\n contents.LastModified = new Date(output.headers[\"last-modified\"]);\n }\n if (output.headers[\"content-length\"] !== undefined) {\n contents.ContentLength = parseInt(output.headers[\"content-length\"], 10);\n }\n if (output.headers[\"etag\"] !== undefined) {\n contents.ETag = output.headers[\"etag\"];\n }\n if (output.headers[\"x-amz-missing-meta\"] !== undefined) {\n contents.MissingMeta = parseInt(output.headers[\"x-amz-missing-meta\"], 10);\n }\n if (output.headers[\"x-amz-version-id\"] !== undefined) {\n contents.VersionId = output.headers[\"x-amz-version-id\"];\n }\n if (output.headers[\"cache-control\"] !== undefined) {\n contents.CacheControl = output.headers[\"cache-control\"];\n }\n if (output.headers[\"content-disposition\"] !== undefined) {\n contents.ContentDisposition = output.headers[\"content-disposition\"];\n }\n if (output.headers[\"content-encoding\"] !== undefined) {\n contents.ContentEncoding = output.headers[\"content-encoding\"];\n }\n if (output.headers[\"content-language\"] !== undefined) {\n contents.ContentLanguage = output.headers[\"content-language\"];\n }\n if (output.headers[\"content-type\"] !== undefined) {\n contents.ContentType = output.headers[\"content-type\"];\n }\n if (output.headers[\"expires\"] !== undefined) {\n contents.Expires = new Date(output.headers[\"expires\"]);\n }\n if (output.headers[\"x-amz-website-redirect-location\"] !== undefined) {\n contents.WebsiteRedirectLocation = output.headers[\"x-amz-website-redirect-location\"];\n }\n if (output.headers[\"x-amz-server-side-encryption\"] !== undefined) {\n contents.ServerSideEncryption = output.headers[\"x-amz-server-side-encryption\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-algorithm\"] !== undefined) {\n contents.SSECustomerAlgorithm = output.headers[\"x-amz-server-side-encryption-customer-algorithm\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-key-md5\"] !== undefined) {\n contents.SSECustomerKeyMD5 = output.headers[\"x-amz-server-side-encryption-customer-key-md5\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"] !== undefined) {\n contents.SSEKMSKeyId = output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] !== undefined) {\n contents.BucketKeyEnabled = output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] === \"true\";\n }\n if (output.headers[\"x-amz-storage-class\"] !== undefined) {\n contents.StorageClass = output.headers[\"x-amz-storage-class\"];\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n if (output.headers[\"x-amz-replication-status\"] !== undefined) {\n contents.ReplicationStatus = output.headers[\"x-amz-replication-status\"];\n }\n if (output.headers[\"x-amz-mp-parts-count\"] !== undefined) {\n contents.PartsCount = parseInt(output.headers[\"x-amz-mp-parts-count\"], 10);\n }\n if (output.headers[\"x-amz-object-lock-mode\"] !== undefined) {\n contents.ObjectLockMode = output.headers[\"x-amz-object-lock-mode\"];\n }\n if (output.headers[\"x-amz-object-lock-retain-until-date\"] !== undefined) {\n contents.ObjectLockRetainUntilDate = new Date(output.headers[\"x-amz-object-lock-retain-until-date\"]);\n }\n if (output.headers[\"x-amz-object-lock-legal-hold\"] !== undefined) {\n contents.ObjectLockLegalHoldStatus = output.headers[\"x-amz-object-lock-legal-hold\"];\n }\n Object.keys(output.headers).forEach(function (header) {\n if (contents.Metadata === undefined) {\n contents.Metadata = {};\n }\n if (header.startsWith(\"x-amz-meta-\")) {\n contents.Metadata[header.substring(11)] = output.headers[header];\n }\n });\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlHeadObjectCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"NoSuchKey\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#NoSuchKey\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlNoSuchKeyResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketAnalyticsConfigurationsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListBucketAnalyticsConfigurationsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n AnalyticsConfigurationList: undefined,\n ContinuationToken: undefined,\n IsTruncated: undefined,\n NextContinuationToken: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.AnalyticsConfiguration === \"\") {\n contents.AnalyticsConfigurationList = [];\n }\n if (data[\"AnalyticsConfiguration\"] !== undefined) {\n contents.AnalyticsConfigurationList = deserializeAws_restXmlAnalyticsConfigurationList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"AnalyticsConfiguration\"]), context);\n }\n if (data[\"ContinuationToken\"] !== undefined) {\n contents.ContinuationToken = data[\"ContinuationToken\"];\n }\n if (data[\"IsTruncated\"] !== undefined) {\n contents.IsTruncated = data[\"IsTruncated\"] == \"true\";\n }\n if (data[\"NextContinuationToken\"] !== undefined) {\n contents.NextContinuationToken = data[\"NextContinuationToken\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketAnalyticsConfigurationsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketIntelligentTieringConfigurationsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListBucketIntelligentTieringConfigurationsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ContinuationToken: undefined,\n IntelligentTieringConfigurationList: undefined,\n IsTruncated: undefined,\n NextContinuationToken: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"ContinuationToken\"] !== undefined) {\n contents.ContinuationToken = data[\"ContinuationToken\"];\n }\n if (data.IntelligentTieringConfiguration === \"\") {\n contents.IntelligentTieringConfigurationList = [];\n }\n if (data[\"IntelligentTieringConfiguration\"] !== undefined) {\n contents.IntelligentTieringConfigurationList = deserializeAws_restXmlIntelligentTieringConfigurationList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"IntelligentTieringConfiguration\"]), context);\n }\n if (data[\"IsTruncated\"] !== undefined) {\n contents.IsTruncated = data[\"IsTruncated\"] == \"true\";\n }\n if (data[\"NextContinuationToken\"] !== undefined) {\n contents.NextContinuationToken = data[\"NextContinuationToken\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketIntelligentTieringConfigurationsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketInventoryConfigurationsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListBucketInventoryConfigurationsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ContinuationToken: undefined,\n InventoryConfigurationList: undefined,\n IsTruncated: undefined,\n NextContinuationToken: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"ContinuationToken\"] !== undefined) {\n contents.ContinuationToken = data[\"ContinuationToken\"];\n }\n if (data.InventoryConfiguration === \"\") {\n contents.InventoryConfigurationList = [];\n }\n if (data[\"InventoryConfiguration\"] !== undefined) {\n contents.InventoryConfigurationList = deserializeAws_restXmlInventoryConfigurationList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"InventoryConfiguration\"]), context);\n }\n if (data[\"IsTruncated\"] !== undefined) {\n contents.IsTruncated = data[\"IsTruncated\"] == \"true\";\n }\n if (data[\"NextContinuationToken\"] !== undefined) {\n contents.NextContinuationToken = data[\"NextContinuationToken\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketInventoryConfigurationsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketMetricsConfigurationsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListBucketMetricsConfigurationsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n ContinuationToken: undefined,\n IsTruncated: undefined,\n MetricsConfigurationList: undefined,\n NextContinuationToken: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"ContinuationToken\"] !== undefined) {\n contents.ContinuationToken = data[\"ContinuationToken\"];\n }\n if (data[\"IsTruncated\"] !== undefined) {\n contents.IsTruncated = data[\"IsTruncated\"] == \"true\";\n }\n if (data.MetricsConfiguration === \"\") {\n contents.MetricsConfigurationList = [];\n }\n if (data[\"MetricsConfiguration\"] !== undefined) {\n contents.MetricsConfigurationList = deserializeAws_restXmlMetricsConfigurationList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"MetricsConfiguration\"]), context);\n }\n if (data[\"NextContinuationToken\"] !== undefined) {\n contents.NextContinuationToken = data[\"NextContinuationToken\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketMetricsConfigurationsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListBucketsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Buckets: undefined,\n Owner: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.Buckets === \"\") {\n contents.Buckets = [];\n }\n if (data[\"Buckets\"] !== undefined && data[\"Buckets\"][\"Bucket\"] !== undefined) {\n contents.Buckets = deserializeAws_restXmlBuckets(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"Buckets\"][\"Bucket\"]), context);\n }\n if (data[\"Owner\"] !== undefined) {\n contents.Owner = deserializeAws_restXmlOwner(data[\"Owner\"], context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListBucketsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListMultipartUploadsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListMultipartUploadsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Bucket: undefined,\n CommonPrefixes: undefined,\n Delimiter: undefined,\n EncodingType: undefined,\n IsTruncated: undefined,\n KeyMarker: undefined,\n MaxUploads: undefined,\n NextKeyMarker: undefined,\n NextUploadIdMarker: undefined,\n Prefix: undefined,\n UploadIdMarker: undefined,\n Uploads: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"Bucket\"] !== undefined) {\n contents.Bucket = data[\"Bucket\"];\n }\n if (data.CommonPrefixes === \"\") {\n contents.CommonPrefixes = [];\n }\n if (data[\"CommonPrefixes\"] !== undefined) {\n contents.CommonPrefixes = deserializeAws_restXmlCommonPrefixList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"CommonPrefixes\"]), context);\n }\n if (data[\"Delimiter\"] !== undefined) {\n contents.Delimiter = data[\"Delimiter\"];\n }\n if (data[\"EncodingType\"] !== undefined) {\n contents.EncodingType = data[\"EncodingType\"];\n }\n if (data[\"IsTruncated\"] !== undefined) {\n contents.IsTruncated = data[\"IsTruncated\"] == \"true\";\n }\n if (data[\"KeyMarker\"] !== undefined) {\n contents.KeyMarker = data[\"KeyMarker\"];\n }\n if (data[\"MaxUploads\"] !== undefined) {\n contents.MaxUploads = parseInt(data[\"MaxUploads\"]);\n }\n if (data[\"NextKeyMarker\"] !== undefined) {\n contents.NextKeyMarker = data[\"NextKeyMarker\"];\n }\n if (data[\"NextUploadIdMarker\"] !== undefined) {\n contents.NextUploadIdMarker = data[\"NextUploadIdMarker\"];\n }\n if (data[\"Prefix\"] !== undefined) {\n contents.Prefix = data[\"Prefix\"];\n }\n if (data[\"UploadIdMarker\"] !== undefined) {\n contents.UploadIdMarker = data[\"UploadIdMarker\"];\n }\n if (data.Upload === \"\") {\n contents.Uploads = [];\n }\n if (data[\"Upload\"] !== undefined) {\n contents.Uploads = deserializeAws_restXmlMultipartUploadList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"Upload\"]), context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListMultipartUploadsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListObjectsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListObjectsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CommonPrefixes: undefined,\n Contents: undefined,\n Delimiter: undefined,\n EncodingType: undefined,\n IsTruncated: undefined,\n Marker: undefined,\n MaxKeys: undefined,\n Name: undefined,\n NextMarker: undefined,\n Prefix: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.CommonPrefixes === \"\") {\n contents.CommonPrefixes = [];\n }\n if (data[\"CommonPrefixes\"] !== undefined) {\n contents.CommonPrefixes = deserializeAws_restXmlCommonPrefixList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"CommonPrefixes\"]), context);\n }\n if (data.Contents === \"\") {\n contents.Contents = [];\n }\n if (data[\"Contents\"] !== undefined) {\n contents.Contents = deserializeAws_restXmlObjectList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"Contents\"]), context);\n }\n if (data[\"Delimiter\"] !== undefined) {\n contents.Delimiter = data[\"Delimiter\"];\n }\n if (data[\"EncodingType\"] !== undefined) {\n contents.EncodingType = data[\"EncodingType\"];\n }\n if (data[\"IsTruncated\"] !== undefined) {\n contents.IsTruncated = data[\"IsTruncated\"] == \"true\";\n }\n if (data[\"Marker\"] !== undefined) {\n contents.Marker = data[\"Marker\"];\n }\n if (data[\"MaxKeys\"] !== undefined) {\n contents.MaxKeys = parseInt(data[\"MaxKeys\"]);\n }\n if (data[\"Name\"] !== undefined) {\n contents.Name = data[\"Name\"];\n }\n if (data[\"NextMarker\"] !== undefined) {\n contents.NextMarker = data[\"NextMarker\"];\n }\n if (data[\"Prefix\"] !== undefined) {\n contents.Prefix = data[\"Prefix\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListObjectsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"NoSuchBucket\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#NoSuchBucket\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlNoSuchBucketResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListObjectsV2Command = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListObjectsV2CommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CommonPrefixes: undefined,\n Contents: undefined,\n ContinuationToken: undefined,\n Delimiter: undefined,\n EncodingType: undefined,\n IsTruncated: undefined,\n KeyCount: undefined,\n MaxKeys: undefined,\n Name: undefined,\n NextContinuationToken: undefined,\n Prefix: undefined,\n StartAfter: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.CommonPrefixes === \"\") {\n contents.CommonPrefixes = [];\n }\n if (data[\"CommonPrefixes\"] !== undefined) {\n contents.CommonPrefixes = deserializeAws_restXmlCommonPrefixList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"CommonPrefixes\"]), context);\n }\n if (data.Contents === \"\") {\n contents.Contents = [];\n }\n if (data[\"Contents\"] !== undefined) {\n contents.Contents = deserializeAws_restXmlObjectList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"Contents\"]), context);\n }\n if (data[\"ContinuationToken\"] !== undefined) {\n contents.ContinuationToken = data[\"ContinuationToken\"];\n }\n if (data[\"Delimiter\"] !== undefined) {\n contents.Delimiter = data[\"Delimiter\"];\n }\n if (data[\"EncodingType\"] !== undefined) {\n contents.EncodingType = data[\"EncodingType\"];\n }\n if (data[\"IsTruncated\"] !== undefined) {\n contents.IsTruncated = data[\"IsTruncated\"] == \"true\";\n }\n if (data[\"KeyCount\"] !== undefined) {\n contents.KeyCount = parseInt(data[\"KeyCount\"]);\n }\n if (data[\"MaxKeys\"] !== undefined) {\n contents.MaxKeys = parseInt(data[\"MaxKeys\"]);\n }\n if (data[\"Name\"] !== undefined) {\n contents.Name = data[\"Name\"];\n }\n if (data[\"NextContinuationToken\"] !== undefined) {\n contents.NextContinuationToken = data[\"NextContinuationToken\"];\n }\n if (data[\"Prefix\"] !== undefined) {\n contents.Prefix = data[\"Prefix\"];\n }\n if (data[\"StartAfter\"] !== undefined) {\n contents.StartAfter = data[\"StartAfter\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListObjectsV2CommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"NoSuchBucket\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#NoSuchBucket\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlNoSuchBucketResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListObjectVersionsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListObjectVersionsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n CommonPrefixes: undefined,\n DeleteMarkers: undefined,\n Delimiter: undefined,\n EncodingType: undefined,\n IsTruncated: undefined,\n KeyMarker: undefined,\n MaxKeys: undefined,\n Name: undefined,\n NextKeyMarker: undefined,\n NextVersionIdMarker: undefined,\n Prefix: undefined,\n VersionIdMarker: undefined,\n Versions: undefined,\n };\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data.CommonPrefixes === \"\") {\n contents.CommonPrefixes = [];\n }\n if (data[\"CommonPrefixes\"] !== undefined) {\n contents.CommonPrefixes = deserializeAws_restXmlCommonPrefixList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"CommonPrefixes\"]), context);\n }\n if (data.DeleteMarker === \"\") {\n contents.DeleteMarkers = [];\n }\n if (data[\"DeleteMarker\"] !== undefined) {\n contents.DeleteMarkers = deserializeAws_restXmlDeleteMarkers(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"DeleteMarker\"]), context);\n }\n if (data[\"Delimiter\"] !== undefined) {\n contents.Delimiter = data[\"Delimiter\"];\n }\n if (data[\"EncodingType\"] !== undefined) {\n contents.EncodingType = data[\"EncodingType\"];\n }\n if (data[\"IsTruncated\"] !== undefined) {\n contents.IsTruncated = data[\"IsTruncated\"] == \"true\";\n }\n if (data[\"KeyMarker\"] !== undefined) {\n contents.KeyMarker = data[\"KeyMarker\"];\n }\n if (data[\"MaxKeys\"] !== undefined) {\n contents.MaxKeys = parseInt(data[\"MaxKeys\"]);\n }\n if (data[\"Name\"] !== undefined) {\n contents.Name = data[\"Name\"];\n }\n if (data[\"NextKeyMarker\"] !== undefined) {\n contents.NextKeyMarker = data[\"NextKeyMarker\"];\n }\n if (data[\"NextVersionIdMarker\"] !== undefined) {\n contents.NextVersionIdMarker = data[\"NextVersionIdMarker\"];\n }\n if (data[\"Prefix\"] !== undefined) {\n contents.Prefix = data[\"Prefix\"];\n }\n if (data[\"VersionIdMarker\"] !== undefined) {\n contents.VersionIdMarker = data[\"VersionIdMarker\"];\n }\n if (data.Version === \"\") {\n contents.Versions = [];\n }\n if (data[\"Version\"] !== undefined) {\n contents.Versions = deserializeAws_restXmlObjectVersionList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"Version\"]), context);\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListObjectVersionsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlListPartsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlListPartsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n AbortDate: undefined,\n AbortRuleId: undefined,\n Bucket: undefined,\n Initiator: undefined,\n IsTruncated: undefined,\n Key: undefined,\n MaxParts: undefined,\n NextPartNumberMarker: undefined,\n Owner: undefined,\n PartNumberMarker: undefined,\n Parts: undefined,\n RequestCharged: undefined,\n StorageClass: undefined,\n UploadId: undefined,\n };\n if (output.headers[\"x-amz-abort-date\"] !== undefined) {\n contents.AbortDate = new Date(output.headers[\"x-amz-abort-date\"]);\n }\n if (output.headers[\"x-amz-abort-rule-id\"] !== undefined) {\n contents.AbortRuleId = output.headers[\"x-amz-abort-rule-id\"];\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n if (data[\"Bucket\"] !== undefined) {\n contents.Bucket = data[\"Bucket\"];\n }\n if (data[\"Initiator\"] !== undefined) {\n contents.Initiator = deserializeAws_restXmlInitiator(data[\"Initiator\"], context);\n }\n if (data[\"IsTruncated\"] !== undefined) {\n contents.IsTruncated = data[\"IsTruncated\"] == \"true\";\n }\n if (data[\"Key\"] !== undefined) {\n contents.Key = data[\"Key\"];\n }\n if (data[\"MaxParts\"] !== undefined) {\n contents.MaxParts = parseInt(data[\"MaxParts\"]);\n }\n if (data[\"NextPartNumberMarker\"] !== undefined) {\n contents.NextPartNumberMarker = data[\"NextPartNumberMarker\"];\n }\n if (data[\"Owner\"] !== undefined) {\n contents.Owner = deserializeAws_restXmlOwner(data[\"Owner\"], context);\n }\n if (data[\"PartNumberMarker\"] !== undefined) {\n contents.PartNumberMarker = data[\"PartNumberMarker\"];\n }\n if (data.Part === \"\") {\n contents.Parts = [];\n }\n if (data[\"Part\"] !== undefined) {\n contents.Parts = deserializeAws_restXmlParts(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(data[\"Part\"]), context);\n }\n if (data[\"StorageClass\"] !== undefined) {\n contents.StorageClass = data[\"StorageClass\"];\n }\n if (data[\"UploadId\"] !== undefined) {\n contents.UploadId = data[\"UploadId\"];\n }\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlListPartsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketAccelerateConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketAccelerateConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketAccelerateConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketAclCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketAclCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketAclCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketAnalyticsConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketAnalyticsConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketAnalyticsConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketCorsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketCorsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketCorsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketEncryptionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketEncryptionCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketEncryptionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketIntelligentTieringConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketIntelligentTieringConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketIntelligentTieringConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketInventoryConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketInventoryConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketInventoryConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketLifecycleConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketLifecycleConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketLifecycleConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketLoggingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketLoggingCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketLoggingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketMetricsConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketMetricsConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketMetricsConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketNotificationConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketNotificationConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketNotificationConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketOwnershipControlsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketOwnershipControlsCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketOwnershipControlsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketPolicyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketPolicyCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketPolicyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketReplicationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketReplicationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketReplicationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketRequestPaymentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketRequestPaymentCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketRequestPaymentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketTaggingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketTaggingCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketTaggingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketVersioningCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketVersioningCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketVersioningCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketWebsiteCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutBucketWebsiteCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutBucketWebsiteCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutObjectCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n BucketKeyEnabled: undefined,\n ETag: undefined,\n Expiration: undefined,\n RequestCharged: undefined,\n SSECustomerAlgorithm: undefined,\n SSECustomerKeyMD5: undefined,\n SSEKMSEncryptionContext: undefined,\n SSEKMSKeyId: undefined,\n ServerSideEncryption: undefined,\n VersionId: undefined,\n };\n if (output.headers[\"x-amz-expiration\"] !== undefined) {\n contents.Expiration = output.headers[\"x-amz-expiration\"];\n }\n if (output.headers[\"etag\"] !== undefined) {\n contents.ETag = output.headers[\"etag\"];\n }\n if (output.headers[\"x-amz-server-side-encryption\"] !== undefined) {\n contents.ServerSideEncryption = output.headers[\"x-amz-server-side-encryption\"];\n }\n if (output.headers[\"x-amz-version-id\"] !== undefined) {\n contents.VersionId = output.headers[\"x-amz-version-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-algorithm\"] !== undefined) {\n contents.SSECustomerAlgorithm = output.headers[\"x-amz-server-side-encryption-customer-algorithm\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-key-md5\"] !== undefined) {\n contents.SSECustomerKeyMD5 = output.headers[\"x-amz-server-side-encryption-customer-key-md5\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"] !== undefined) {\n contents.SSEKMSKeyId = output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-context\"] !== undefined) {\n contents.SSEKMSEncryptionContext = output.headers[\"x-amz-server-side-encryption-context\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] !== undefined) {\n contents.BucketKeyEnabled = output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] === \"true\";\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectAclCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutObjectAclCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RequestCharged: undefined,\n };\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectAclCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"NoSuchKey\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#NoSuchKey\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlNoSuchKeyResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectLegalHoldCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutObjectLegalHoldCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RequestCharged: undefined,\n };\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectLegalHoldCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectLockConfigurationCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutObjectLockConfigurationCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RequestCharged: undefined,\n };\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectLockConfigurationCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectRetentionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutObjectRetentionCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RequestCharged: undefined,\n };\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectRetentionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectTaggingCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutObjectTaggingCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n VersionId: undefined,\n };\n if (output.headers[\"x-amz-version-id\"] !== undefined) {\n contents.VersionId = output.headers[\"x-amz-version-id\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutObjectTaggingCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlPutPublicAccessBlockCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlPutPublicAccessBlockCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n };\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlPutPublicAccessBlockCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlRestoreObjectCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlRestoreObjectCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n RequestCharged: undefined,\n RestoreOutputPath: undefined,\n };\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n if (output.headers[\"x-amz-restore-output-path\"] !== undefined) {\n contents.RestoreOutputPath = output.headers[\"x-amz-restore-output-path\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlRestoreObjectCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, parsedBody, message;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _d = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_d.body = _e.sent(), _d)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ObjectAlreadyInActiveTierError\": return [3 /*break*/, 2];\n case \"com.amazonaws.s3#ObjectAlreadyInActiveTierError\": return [3 /*break*/, 2];\n }\n return [3 /*break*/, 4];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_restXmlObjectAlreadyInActiveTierErrorResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_e.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 5];\n case 4:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _e.label = 5;\n case 5:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlSelectObjectContentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlSelectObjectContentCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n Payload: undefined,\n };\n data = context.eventStreamMarshaller.deserialize(output.body, function (event) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var eventName, eventHeaders, eventMessage, parsedEvent;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n eventName = Object.keys(event)[0];\n eventHeaders = Object.entries(event[eventName].headers).reduce(function (accummulator, curr) {\n accummulator[curr[0]] = curr[1].value;\n return accummulator;\n }, {});\n eventMessage = {\n headers: eventHeaders,\n body: event[eventName].body,\n };\n parsedEvent = (_a = {},\n _a[eventName] = eventMessage,\n _a);\n return [4 /*yield*/, deserializeAws_restXmlSelectObjectContentEventStream_event(parsedEvent, context)];\n case 1: return [2 /*return*/, _b.sent()];\n }\n });\n }); });\n contents.Payload = data;\n return [2 /*return*/, Promise.resolve(contents)];\n });\n}); };\nvar deserializeAws_restXmlSelectObjectContentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlUploadPartCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlUploadPartCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n BucketKeyEnabled: undefined,\n ETag: undefined,\n RequestCharged: undefined,\n SSECustomerAlgorithm: undefined,\n SSECustomerKeyMD5: undefined,\n SSEKMSKeyId: undefined,\n ServerSideEncryption: undefined,\n };\n if (output.headers[\"x-amz-server-side-encryption\"] !== undefined) {\n contents.ServerSideEncryption = output.headers[\"x-amz-server-side-encryption\"];\n }\n if (output.headers[\"etag\"] !== undefined) {\n contents.ETag = output.headers[\"etag\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-algorithm\"] !== undefined) {\n contents.SSECustomerAlgorithm = output.headers[\"x-amz-server-side-encryption-customer-algorithm\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-key-md5\"] !== undefined) {\n contents.SSECustomerKeyMD5 = output.headers[\"x-amz-server-side-encryption-customer-key-md5\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"] !== undefined) {\n contents.SSEKMSKeyId = output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] !== undefined) {\n contents.BucketKeyEnabled = output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] === \"true\";\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlUploadPartCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlUploadPartCopyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode !== 200 && output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_restXmlUploadPartCopyCommandError(output, context)];\n }\n contents = {\n $metadata: deserializeMetadata(output),\n BucketKeyEnabled: undefined,\n CopyPartResult: undefined,\n CopySourceVersionId: undefined,\n RequestCharged: undefined,\n SSECustomerAlgorithm: undefined,\n SSECustomerKeyMD5: undefined,\n SSEKMSKeyId: undefined,\n ServerSideEncryption: undefined,\n };\n if (output.headers[\"x-amz-copy-source-version-id\"] !== undefined) {\n contents.CopySourceVersionId = output.headers[\"x-amz-copy-source-version-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption\"] !== undefined) {\n contents.ServerSideEncryption = output.headers[\"x-amz-server-side-encryption\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-algorithm\"] !== undefined) {\n contents.SSECustomerAlgorithm = output.headers[\"x-amz-server-side-encryption-customer-algorithm\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-customer-key-md5\"] !== undefined) {\n contents.SSECustomerKeyMD5 = output.headers[\"x-amz-server-side-encryption-customer-key-md5\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"] !== undefined) {\n contents.SSEKMSKeyId = output.headers[\"x-amz-server-side-encryption-aws-kms-key-id\"];\n }\n if (output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] !== undefined) {\n contents.BucketKeyEnabled = output.headers[\"x-amz-server-side-encryption-bucket-key-enabled\"] === \"true\";\n }\n if (output.headers[\"x-amz-request-charged\"] !== undefined) {\n contents.RequestCharged = output.headers[\"x-amz-request-charged\"];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents.CopyPartResult = deserializeAws_restXmlCopyPartResult(data, context);\n return [2 /*return*/, Promise.resolve(contents)];\n }\n });\n}); };\nvar deserializeAws_restXmlUploadPartCopyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, parsedBody, message;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _b = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_b.body = _c.sent(), _b)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestXmlErrorCode(output, parsedOutput.body);\n switch (errorCode) {\n default:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n }\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_restXmlSelectObjectContentEventStream_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, _b, _c, _d, _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n if (!(output[\"Records\"] !== undefined)) return [3 /*break*/, 2];\n _a = {};\n return [4 /*yield*/, deserializeAws_restXmlRecordsEvent_event(output[\"Records\"], context)];\n case 1: return [2 /*return*/, (_a.Records = _f.sent(),\n _a)];\n case 2:\n if (!(output[\"Stats\"] !== undefined)) return [3 /*break*/, 4];\n _b = {};\n return [4 /*yield*/, deserializeAws_restXmlStatsEvent_event(output[\"Stats\"], context)];\n case 3: return [2 /*return*/, (_b.Stats = _f.sent(),\n _b)];\n case 4:\n if (!(output[\"Progress\"] !== undefined)) return [3 /*break*/, 6];\n _c = {};\n return [4 /*yield*/, deserializeAws_restXmlProgressEvent_event(output[\"Progress\"], context)];\n case 5: return [2 /*return*/, (_c.Progress = _f.sent(),\n _c)];\n case 6:\n if (!(output[\"Cont\"] !== undefined)) return [3 /*break*/, 8];\n _d = {};\n return [4 /*yield*/, deserializeAws_restXmlContinuationEvent_event(output[\"Cont\"], context)];\n case 7: return [2 /*return*/, (_d.Cont = _f.sent(),\n _d)];\n case 8:\n if (!(output[\"End\"] !== undefined)) return [3 /*break*/, 10];\n _e = {};\n return [4 /*yield*/, deserializeAws_restXmlEndEvent_event(output[\"End\"], context)];\n case 9: return [2 /*return*/, (_e.End = _f.sent(),\n _e)];\n case 10: return [2 /*return*/, { $unknown: output }];\n }\n });\n}); };\nvar deserializeAws_restXmlContinuationEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {};\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlEndEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {};\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlProgressEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n contents = {};\n _a = contents;\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n _a.Details = _b.sent();\n return [2 /*return*/, contents];\n }\n });\n}); };\nvar deserializeAws_restXmlRecordsEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {};\n contents.Payload = output.body;\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlStatsEvent_event = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n contents = {};\n _a = contents;\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n _a.Details = _b.sent();\n return [2 /*return*/, contents];\n }\n });\n}); };\nvar deserializeAws_restXmlBucketAlreadyExistsResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"BucketAlreadyExists\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n };\n data = parsedOutput.body;\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlBucketAlreadyOwnedByYouResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"BucketAlreadyOwnedByYou\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n };\n data = parsedOutput.body;\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlInvalidObjectStateResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"InvalidObjectState\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n AccessTier: undefined,\n StorageClass: undefined,\n };\n data = parsedOutput.body;\n if (data[\"AccessTier\"] !== undefined) {\n contents.AccessTier = data[\"AccessTier\"];\n }\n if (data[\"StorageClass\"] !== undefined) {\n contents.StorageClass = data[\"StorageClass\"];\n }\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlNoSuchBucketResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"NoSuchBucket\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n };\n data = parsedOutput.body;\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlNoSuchKeyResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"NoSuchKey\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n };\n data = parsedOutput.body;\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlNoSuchUploadResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"NoSuchUpload\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n };\n data = parsedOutput.body;\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlObjectAlreadyInActiveTierErrorResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"ObjectAlreadyInActiveTierError\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n };\n data = parsedOutput.body;\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_restXmlObjectNotInActiveTierErrorResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var contents, data;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n contents = {\n name: \"ObjectNotInActiveTierError\",\n $fault: \"client\",\n $metadata: deserializeMetadata(parsedOutput),\n };\n data = parsedOutput.body;\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_restXmlAbortIncompleteMultipartUpload = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AbortIncompleteMultipartUpload\");\n if (input.DaysAfterInitiation !== undefined && input.DaysAfterInitiation !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"DaysAfterInitiation\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.DaysAfterInitiation)))\n .withName(\"DaysAfterInitiation\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlAccelerateConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AccelerateConfiguration\");\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketAccelerateStatus\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status)).withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlAccessControlPolicy = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AccessControlPolicy\");\n if (input.Grants !== undefined && input.Grants !== null) {\n var nodes = serializeAws_restXmlGrants(input.Grants, context);\n var containerNode_1 = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AccessControlList\");\n nodes.map(function (node) {\n containerNode_1.addChildNode(node);\n });\n bodyNode.addChildNode(containerNode_1);\n }\n if (input.Owner !== undefined && input.Owner !== null) {\n var node = serializeAws_restXmlOwner(input.Owner, context).withName(\"Owner\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlAccessControlTranslation = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AccessControlTranslation\");\n if (input.Owner !== undefined && input.Owner !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"OwnerOverride\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Owner)).withName(\"Owner\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlAllowedHeaders = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AllowedHeader\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](entry));\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlAllowedMethods = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AllowedMethod\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](entry));\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlAllowedOrigins = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AllowedOrigin\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](entry));\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlAnalyticsAndOperator = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AnalyticsAndOperator\");\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Tags !== undefined && input.Tags !== null) {\n var nodes = serializeAws_restXmlTagSet(input.Tags, context);\n nodes.map(function (node) {\n node = node.withName(\"Tag\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlAnalyticsConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AnalyticsConfiguration\");\n if (input.Id !== undefined && input.Id !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AnalyticsId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Id)).withName(\"Id\");\n bodyNode.addChildNode(node);\n }\n if (input.Filter !== undefined && input.Filter !== null) {\n var node = serializeAws_restXmlAnalyticsFilter(input.Filter, context).withName(\"Filter\");\n bodyNode.addChildNode(node);\n }\n if (input.StorageClassAnalysis !== undefined && input.StorageClassAnalysis !== null) {\n var node = serializeAws_restXmlStorageClassAnalysis(input.StorageClassAnalysis, context).withName(\"StorageClassAnalysis\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlAnalyticsExportDestination = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AnalyticsExportDestination\");\n if (input.S3BucketDestination !== undefined && input.S3BucketDestination !== null) {\n var node = serializeAws_restXmlAnalyticsS3BucketDestination(input.S3BucketDestination, context).withName(\"S3BucketDestination\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlAnalyticsFilter = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AnalyticsFilter\");\n _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"AnalyticsFilter\"].visit(input, {\n Prefix: function (value) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](value)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n },\n Tag: function (value) {\n var node = serializeAws_restXmlTag(value, context).withName(\"Tag\");\n bodyNode.addChildNode(node);\n },\n And: function (value) {\n var node = serializeAws_restXmlAnalyticsAndOperator(value, context).withName(\"And\");\n bodyNode.addChildNode(node);\n },\n _: function (name, value) {\n if (!(value instanceof _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"] || value instanceof _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"])) {\n throw new Error(\"Unable to serialize unknown union members in XML.\");\n }\n bodyNode.addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](name).addChildNode(value));\n },\n });\n return bodyNode;\n};\nvar serializeAws_restXmlAnalyticsS3BucketDestination = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AnalyticsS3BucketDestination\");\n if (input.Format !== undefined && input.Format !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AnalyticsS3ExportFileFormat\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Format))\n .withName(\"Format\");\n bodyNode.addChildNode(node);\n }\n if (input.BucketAccountId !== undefined && input.BucketAccountId !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AccountId\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.BucketAccountId))\n .withName(\"BucketAccountId\");\n bodyNode.addChildNode(node);\n }\n if (input.Bucket !== undefined && input.Bucket !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketName\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Bucket)).withName(\"Bucket\");\n bodyNode.addChildNode(node);\n }\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlBucketLifecycleConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketLifecycleConfiguration\");\n if (input.Rules !== undefined && input.Rules !== null) {\n var nodes = serializeAws_restXmlLifecycleRules(input.Rules, context);\n nodes.map(function (node) {\n node = node.withName(\"Rule\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlBucketLoggingStatus = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketLoggingStatus\");\n if (input.LoggingEnabled !== undefined && input.LoggingEnabled !== null) {\n var node = serializeAws_restXmlLoggingEnabled(input.LoggingEnabled, context).withName(\"LoggingEnabled\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlCompletedMultipartUpload = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"CompletedMultipartUpload\");\n if (input.Parts !== undefined && input.Parts !== null) {\n var nodes = serializeAws_restXmlCompletedPartList(input.Parts, context);\n nodes.map(function (node) {\n node = node.withName(\"Part\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlCompletedPart = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"CompletedPart\");\n if (input.ETag !== undefined && input.ETag !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ETag\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ETag)).withName(\"ETag\");\n bodyNode.addChildNode(node);\n }\n if (input.PartNumber !== undefined && input.PartNumber !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"PartNumber\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.PartNumber)))\n .withName(\"PartNumber\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlCompletedPartList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlCompletedPart(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlCondition = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Condition\");\n if (input.HttpErrorCodeReturnedEquals !== undefined && input.HttpErrorCodeReturnedEquals !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"HttpErrorCodeReturnedEquals\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.HttpErrorCodeReturnedEquals))\n .withName(\"HttpErrorCodeReturnedEquals\");\n bodyNode.addChildNode(node);\n }\n if (input.KeyPrefixEquals !== undefined && input.KeyPrefixEquals !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"KeyPrefixEquals\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.KeyPrefixEquals))\n .withName(\"KeyPrefixEquals\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlCORSConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"CORSConfiguration\");\n if (input.CORSRules !== undefined && input.CORSRules !== null) {\n var nodes = serializeAws_restXmlCORSRules(input.CORSRules, context);\n nodes.map(function (node) {\n node = node.withName(\"CORSRule\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlCORSRule = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"CORSRule\");\n if (input.AllowedHeaders !== undefined && input.AllowedHeaders !== null) {\n var nodes = serializeAws_restXmlAllowedHeaders(input.AllowedHeaders, context);\n nodes.map(function (node) {\n node = node.withName(\"AllowedHeader\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.AllowedMethods !== undefined && input.AllowedMethods !== null) {\n var nodes = serializeAws_restXmlAllowedMethods(input.AllowedMethods, context);\n nodes.map(function (node) {\n node = node.withName(\"AllowedMethod\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.AllowedOrigins !== undefined && input.AllowedOrigins !== null) {\n var nodes = serializeAws_restXmlAllowedOrigins(input.AllowedOrigins, context);\n nodes.map(function (node) {\n node = node.withName(\"AllowedOrigin\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.ExposeHeaders !== undefined && input.ExposeHeaders !== null) {\n var nodes = serializeAws_restXmlExposeHeaders(input.ExposeHeaders, context);\n nodes.map(function (node) {\n node = node.withName(\"ExposeHeader\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.MaxAgeSeconds !== undefined && input.MaxAgeSeconds !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MaxAgeSeconds\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.MaxAgeSeconds)))\n .withName(\"MaxAgeSeconds\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlCORSRules = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlCORSRule(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlCreateBucketConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"CreateBucketConfiguration\");\n if (input.LocationConstraint !== undefined && input.LocationConstraint !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketLocationConstraint\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.LocationConstraint))\n .withName(\"LocationConstraint\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlCSVInput = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"CSVInput\");\n if (input.FileHeaderInfo !== undefined && input.FileHeaderInfo !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"FileHeaderInfo\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.FileHeaderInfo))\n .withName(\"FileHeaderInfo\");\n bodyNode.addChildNode(node);\n }\n if (input.Comments !== undefined && input.Comments !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Comments\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Comments)).withName(\"Comments\");\n bodyNode.addChildNode(node);\n }\n if (input.QuoteEscapeCharacter !== undefined && input.QuoteEscapeCharacter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"QuoteEscapeCharacter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.QuoteEscapeCharacter))\n .withName(\"QuoteEscapeCharacter\");\n bodyNode.addChildNode(node);\n }\n if (input.RecordDelimiter !== undefined && input.RecordDelimiter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RecordDelimiter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.RecordDelimiter))\n .withName(\"RecordDelimiter\");\n bodyNode.addChildNode(node);\n }\n if (input.FieldDelimiter !== undefined && input.FieldDelimiter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"FieldDelimiter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.FieldDelimiter))\n .withName(\"FieldDelimiter\");\n bodyNode.addChildNode(node);\n }\n if (input.QuoteCharacter !== undefined && input.QuoteCharacter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"QuoteCharacter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.QuoteCharacter))\n .withName(\"QuoteCharacter\");\n bodyNode.addChildNode(node);\n }\n if (input.AllowQuotedRecordDelimiter !== undefined && input.AllowQuotedRecordDelimiter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AllowQuotedRecordDelimiter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.AllowQuotedRecordDelimiter)))\n .withName(\"AllowQuotedRecordDelimiter\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlCSVOutput = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"CSVOutput\");\n if (input.QuoteFields !== undefined && input.QuoteFields !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"QuoteFields\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.QuoteFields)).withName(\"QuoteFields\");\n bodyNode.addChildNode(node);\n }\n if (input.QuoteEscapeCharacter !== undefined && input.QuoteEscapeCharacter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"QuoteEscapeCharacter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.QuoteEscapeCharacter))\n .withName(\"QuoteEscapeCharacter\");\n bodyNode.addChildNode(node);\n }\n if (input.RecordDelimiter !== undefined && input.RecordDelimiter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RecordDelimiter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.RecordDelimiter))\n .withName(\"RecordDelimiter\");\n bodyNode.addChildNode(node);\n }\n if (input.FieldDelimiter !== undefined && input.FieldDelimiter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"FieldDelimiter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.FieldDelimiter))\n .withName(\"FieldDelimiter\");\n bodyNode.addChildNode(node);\n }\n if (input.QuoteCharacter !== undefined && input.QuoteCharacter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"QuoteCharacter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.QuoteCharacter))\n .withName(\"QuoteCharacter\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlDefaultRetention = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"DefaultRetention\");\n if (input.Mode !== undefined && input.Mode !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectLockRetentionMode\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Mode)).withName(\"Mode\");\n bodyNode.addChildNode(node);\n }\n if (input.Days !== undefined && input.Days !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Days\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Days))).withName(\"Days\");\n bodyNode.addChildNode(node);\n }\n if (input.Years !== undefined && input.Years !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Years\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Years))).withName(\"Years\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlDelete = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Delete\");\n if (input.Objects !== undefined && input.Objects !== null) {\n var nodes = serializeAws_restXmlObjectIdentifierList(input.Objects, context);\n nodes.map(function (node) {\n node = node.withName(\"Object\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.Quiet !== undefined && input.Quiet !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Quiet\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Quiet))).withName(\"Quiet\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlDeleteMarkerReplication = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"DeleteMarkerReplication\");\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"DeleteMarkerReplicationStatus\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status))\n .withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlDestination = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Destination\");\n if (input.Bucket !== undefined && input.Bucket !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketName\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Bucket)).withName(\"Bucket\");\n bodyNode.addChildNode(node);\n }\n if (input.Account !== undefined && input.Account !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AccountId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Account)).withName(\"Account\");\n bodyNode.addChildNode(node);\n }\n if (input.StorageClass !== undefined && input.StorageClass !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"StorageClass\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.StorageClass)).withName(\"StorageClass\");\n bodyNode.addChildNode(node);\n }\n if (input.AccessControlTranslation !== undefined && input.AccessControlTranslation !== null) {\n var node = serializeAws_restXmlAccessControlTranslation(input.AccessControlTranslation, context).withName(\"AccessControlTranslation\");\n bodyNode.addChildNode(node);\n }\n if (input.EncryptionConfiguration !== undefined && input.EncryptionConfiguration !== null) {\n var node = serializeAws_restXmlEncryptionConfiguration(input.EncryptionConfiguration, context).withName(\"EncryptionConfiguration\");\n bodyNode.addChildNode(node);\n }\n if (input.ReplicationTime !== undefined && input.ReplicationTime !== null) {\n var node = serializeAws_restXmlReplicationTime(input.ReplicationTime, context).withName(\"ReplicationTime\");\n bodyNode.addChildNode(node);\n }\n if (input.Metrics !== undefined && input.Metrics !== null) {\n var node = serializeAws_restXmlMetrics(input.Metrics, context).withName(\"Metrics\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlEncryption = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Encryption\");\n if (input.EncryptionType !== undefined && input.EncryptionType !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ServerSideEncryption\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.EncryptionType))\n .withName(\"EncryptionType\");\n bodyNode.addChildNode(node);\n }\n if (input.KMSKeyId !== undefined && input.KMSKeyId !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SSEKMSKeyId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.KMSKeyId)).withName(\"KMSKeyId\");\n bodyNode.addChildNode(node);\n }\n if (input.KMSContext !== undefined && input.KMSContext !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"KMSContext\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.KMSContext)).withName(\"KMSContext\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlEncryptionConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"EncryptionConfiguration\");\n if (input.ReplicaKmsKeyID !== undefined && input.ReplicaKmsKeyID !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicaKmsKeyID\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ReplicaKmsKeyID))\n .withName(\"ReplicaKmsKeyID\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlErrorDocument = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ErrorDocument\");\n if (input.Key !== undefined && input.Key !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectKey\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Key)).withName(\"Key\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlEventList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Event\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](entry));\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlExistingObjectReplication = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ExistingObjectReplication\");\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ExistingObjectReplicationStatus\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status))\n .withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlExposeHeaders = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ExposeHeader\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](entry));\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlFilterRule = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"FilterRule\");\n if (input.Name !== undefined && input.Name !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"FilterRuleName\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Name)).withName(\"Name\");\n bodyNode.addChildNode(node);\n }\n if (input.Value !== undefined && input.Value !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"FilterRuleValue\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Value)).withName(\"Value\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlFilterRuleList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlFilterRule(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlGlacierJobParameters = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"GlacierJobParameters\");\n if (input.Tier !== undefined && input.Tier !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Tier\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Tier)).withName(\"Tier\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlGrant = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Grant\");\n if (input.Grantee !== undefined && input.Grantee !== null) {\n var node = serializeAws_restXmlGrantee(input.Grantee, context).withName(\"Grantee\");\n bodyNode.addChildNode(node);\n }\n if (input.Permission !== undefined && input.Permission !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Permission\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Permission)).withName(\"Permission\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlGrantee = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Grantee\");\n if (input.DisplayName !== undefined && input.DisplayName !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"DisplayName\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.DisplayName)).withName(\"DisplayName\");\n bodyNode.addChildNode(node);\n }\n if (input.EmailAddress !== undefined && input.EmailAddress !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"EmailAddress\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.EmailAddress)).withName(\"EmailAddress\");\n bodyNode.addChildNode(node);\n }\n if (input.ID !== undefined && input.ID !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ID\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ID)).withName(\"ID\");\n bodyNode.addChildNode(node);\n }\n if (input.URI !== undefined && input.URI !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"URI\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.URI)).withName(\"URI\");\n bodyNode.addChildNode(node);\n }\n if (input.Type !== undefined && input.Type !== null) {\n bodyNode.addAttribute(\"xsi:type\", input.Type);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlGrants = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlGrant(entry, context);\n return node.withName(\"Grant\");\n });\n};\nvar serializeAws_restXmlIndexDocument = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"IndexDocument\");\n if (input.Suffix !== undefined && input.Suffix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Suffix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Suffix)).withName(\"Suffix\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlInputSerialization = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InputSerialization\");\n if (input.CSV !== undefined && input.CSV !== null) {\n var node = serializeAws_restXmlCSVInput(input.CSV, context).withName(\"CSV\");\n bodyNode.addChildNode(node);\n }\n if (input.CompressionType !== undefined && input.CompressionType !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"CompressionType\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.CompressionType))\n .withName(\"CompressionType\");\n bodyNode.addChildNode(node);\n }\n if (input.JSON !== undefined && input.JSON !== null) {\n var node = serializeAws_restXmlJSONInput(input.JSON, context).withName(\"JSON\");\n bodyNode.addChildNode(node);\n }\n if (input.Parquet !== undefined && input.Parquet !== null) {\n var node = serializeAws_restXmlParquetInput(input.Parquet, context).withName(\"Parquet\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlIntelligentTieringAndOperator = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"IntelligentTieringAndOperator\");\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Tags !== undefined && input.Tags !== null) {\n var nodes = serializeAws_restXmlTagSet(input.Tags, context);\n nodes.map(function (node) {\n node = node.withName(\"Tag\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlIntelligentTieringConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"IntelligentTieringConfiguration\");\n if (input.Id !== undefined && input.Id !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"IntelligentTieringId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Id)).withName(\"Id\");\n bodyNode.addChildNode(node);\n }\n if (input.Filter !== undefined && input.Filter !== null) {\n var node = serializeAws_restXmlIntelligentTieringFilter(input.Filter, context).withName(\"Filter\");\n bodyNode.addChildNode(node);\n }\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"IntelligentTieringStatus\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status)).withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n if (input.Tierings !== undefined && input.Tierings !== null) {\n var nodes = serializeAws_restXmlTieringList(input.Tierings, context);\n nodes.map(function (node) {\n node = node.withName(\"Tiering\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlIntelligentTieringFilter = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"IntelligentTieringFilter\");\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Tag !== undefined && input.Tag !== null) {\n var node = serializeAws_restXmlTag(input.Tag, context).withName(\"Tag\");\n bodyNode.addChildNode(node);\n }\n if (input.And !== undefined && input.And !== null) {\n var node = serializeAws_restXmlIntelligentTieringAndOperator(input.And, context).withName(\"And\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlInventoryConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryConfiguration\");\n if (input.Destination !== undefined && input.Destination !== null) {\n var node = serializeAws_restXmlInventoryDestination(input.Destination, context).withName(\"Destination\");\n bodyNode.addChildNode(node);\n }\n if (input.IsEnabled !== undefined && input.IsEnabled !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"IsEnabled\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.IsEnabled))).withName(\"IsEnabled\");\n bodyNode.addChildNode(node);\n }\n if (input.Filter !== undefined && input.Filter !== null) {\n var node = serializeAws_restXmlInventoryFilter(input.Filter, context).withName(\"Filter\");\n bodyNode.addChildNode(node);\n }\n if (input.Id !== undefined && input.Id !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Id)).withName(\"Id\");\n bodyNode.addChildNode(node);\n }\n if (input.IncludedObjectVersions !== undefined && input.IncludedObjectVersions !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryIncludedObjectVersions\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.IncludedObjectVersions))\n .withName(\"IncludedObjectVersions\");\n bodyNode.addChildNode(node);\n }\n if (input.OptionalFields !== undefined && input.OptionalFields !== null) {\n var nodes = serializeAws_restXmlInventoryOptionalFields(input.OptionalFields, context);\n var containerNode_2 = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"OptionalFields\");\n nodes.map(function (node) {\n containerNode_2.addChildNode(node);\n });\n bodyNode.addChildNode(containerNode_2);\n }\n if (input.Schedule !== undefined && input.Schedule !== null) {\n var node = serializeAws_restXmlInventorySchedule(input.Schedule, context).withName(\"Schedule\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlInventoryDestination = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryDestination\");\n if (input.S3BucketDestination !== undefined && input.S3BucketDestination !== null) {\n var node = serializeAws_restXmlInventoryS3BucketDestination(input.S3BucketDestination, context).withName(\"S3BucketDestination\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlInventoryEncryption = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryEncryption\");\n if (input.SSES3 !== undefined && input.SSES3 !== null) {\n var node = serializeAws_restXmlSSES3(input.SSES3, context).withName(\"SSE-S3\");\n bodyNode.addChildNode(node);\n }\n if (input.SSEKMS !== undefined && input.SSEKMS !== null) {\n var node = serializeAws_restXmlSSEKMS(input.SSEKMS, context).withName(\"SSE-KMS\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlInventoryFilter = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryFilter\");\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlInventoryOptionalFields = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryOptionalField\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](entry));\n return node.withName(\"Field\");\n });\n};\nvar serializeAws_restXmlInventoryS3BucketDestination = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryS3BucketDestination\");\n if (input.AccountId !== undefined && input.AccountId !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AccountId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.AccountId)).withName(\"AccountId\");\n bodyNode.addChildNode(node);\n }\n if (input.Bucket !== undefined && input.Bucket !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketName\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Bucket)).withName(\"Bucket\");\n bodyNode.addChildNode(node);\n }\n if (input.Format !== undefined && input.Format !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryFormat\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Format)).withName(\"Format\");\n bodyNode.addChildNode(node);\n }\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Encryption !== undefined && input.Encryption !== null) {\n var node = serializeAws_restXmlInventoryEncryption(input.Encryption, context).withName(\"Encryption\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlInventorySchedule = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventorySchedule\");\n if (input.Frequency !== undefined && input.Frequency !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"InventoryFrequency\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Frequency)).withName(\"Frequency\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlJSONInput = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"JSONInput\");\n if (input.Type !== undefined && input.Type !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"JSONType\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Type)).withName(\"Type\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlJSONOutput = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"JSONOutput\");\n if (input.RecordDelimiter !== undefined && input.RecordDelimiter !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RecordDelimiter\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.RecordDelimiter))\n .withName(\"RecordDelimiter\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlLambdaFunctionConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"LambdaFunctionConfiguration\");\n if (input.Id !== undefined && input.Id !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"NotificationId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Id)).withName(\"Id\");\n bodyNode.addChildNode(node);\n }\n if (input.LambdaFunctionArn !== undefined && input.LambdaFunctionArn !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"LambdaFunctionArn\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.LambdaFunctionArn))\n .withName(\"CloudFunction\");\n bodyNode.addChildNode(node);\n }\n if (input.Events !== undefined && input.Events !== null) {\n var nodes = serializeAws_restXmlEventList(input.Events, context);\n nodes.map(function (node) {\n node = node.withName(\"Event\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.Filter !== undefined && input.Filter !== null) {\n var node = serializeAws_restXmlNotificationConfigurationFilter(input.Filter, context).withName(\"Filter\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlLambdaFunctionConfigurationList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlLambdaFunctionConfiguration(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlLifecycleExpiration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"LifecycleExpiration\");\n if (input.Date !== undefined && input.Date !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Date\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Date.toISOString().split(\".\")[0] + \"Z\"))\n .withName(\"Date\");\n bodyNode.addChildNode(node);\n }\n if (input.Days !== undefined && input.Days !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Days\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Days))).withName(\"Days\");\n bodyNode.addChildNode(node);\n }\n if (input.ExpiredObjectDeleteMarker !== undefined && input.ExpiredObjectDeleteMarker !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ExpiredObjectDeleteMarker\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.ExpiredObjectDeleteMarker)))\n .withName(\"ExpiredObjectDeleteMarker\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlLifecycleRule = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"LifecycleRule\");\n if (input.Expiration !== undefined && input.Expiration !== null) {\n var node = serializeAws_restXmlLifecycleExpiration(input.Expiration, context).withName(\"Expiration\");\n bodyNode.addChildNode(node);\n }\n if (input.ID !== undefined && input.ID !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ID\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ID)).withName(\"ID\");\n bodyNode.addChildNode(node);\n }\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Filter !== undefined && input.Filter !== null) {\n var node = serializeAws_restXmlLifecycleRuleFilter(input.Filter, context).withName(\"Filter\");\n bodyNode.addChildNode(node);\n }\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ExpirationStatus\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status)).withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n if (input.Transitions !== undefined && input.Transitions !== null) {\n var nodes = serializeAws_restXmlTransitionList(input.Transitions, context);\n nodes.map(function (node) {\n node = node.withName(\"Transition\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.NoncurrentVersionTransitions !== undefined && input.NoncurrentVersionTransitions !== null) {\n var nodes = serializeAws_restXmlNoncurrentVersionTransitionList(input.NoncurrentVersionTransitions, context);\n nodes.map(function (node) {\n node = node.withName(\"NoncurrentVersionTransition\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.NoncurrentVersionExpiration !== undefined && input.NoncurrentVersionExpiration !== null) {\n var node = serializeAws_restXmlNoncurrentVersionExpiration(input.NoncurrentVersionExpiration, context).withName(\"NoncurrentVersionExpiration\");\n bodyNode.addChildNode(node);\n }\n if (input.AbortIncompleteMultipartUpload !== undefined && input.AbortIncompleteMultipartUpload !== null) {\n var node = serializeAws_restXmlAbortIncompleteMultipartUpload(input.AbortIncompleteMultipartUpload, context).withName(\"AbortIncompleteMultipartUpload\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlLifecycleRuleAndOperator = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"LifecycleRuleAndOperator\");\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Tags !== undefined && input.Tags !== null) {\n var nodes = serializeAws_restXmlTagSet(input.Tags, context);\n nodes.map(function (node) {\n node = node.withName(\"Tag\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlLifecycleRuleFilter = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"LifecycleRuleFilter\");\n _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"LifecycleRuleFilter\"].visit(input, {\n Prefix: function (value) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](value)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n },\n Tag: function (value) {\n var node = serializeAws_restXmlTag(value, context).withName(\"Tag\");\n bodyNode.addChildNode(node);\n },\n And: function (value) {\n var node = serializeAws_restXmlLifecycleRuleAndOperator(value, context).withName(\"And\");\n bodyNode.addChildNode(node);\n },\n _: function (name, value) {\n if (!(value instanceof _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"] || value instanceof _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"])) {\n throw new Error(\"Unable to serialize unknown union members in XML.\");\n }\n bodyNode.addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](name).addChildNode(value));\n },\n });\n return bodyNode;\n};\nvar serializeAws_restXmlLifecycleRules = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlLifecycleRule(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlLoggingEnabled = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"LoggingEnabled\");\n if (input.TargetBucket !== undefined && input.TargetBucket !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"TargetBucket\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.TargetBucket)).withName(\"TargetBucket\");\n bodyNode.addChildNode(node);\n }\n if (input.TargetGrants !== undefined && input.TargetGrants !== null) {\n var nodes = serializeAws_restXmlTargetGrants(input.TargetGrants, context);\n var containerNode_3 = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"TargetGrants\");\n nodes.map(function (node) {\n containerNode_3.addChildNode(node);\n });\n bodyNode.addChildNode(containerNode_3);\n }\n if (input.TargetPrefix !== undefined && input.TargetPrefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"TargetPrefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.TargetPrefix)).withName(\"TargetPrefix\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlMetadataEntry = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MetadataEntry\");\n if (input.Name !== undefined && input.Name !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MetadataKey\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Name)).withName(\"Name\");\n bodyNode.addChildNode(node);\n }\n if (input.Value !== undefined && input.Value !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MetadataValue\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Value)).withName(\"Value\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlMetrics = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Metrics\");\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MetricsStatus\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status)).withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n if (input.EventThreshold !== undefined && input.EventThreshold !== null) {\n var node = serializeAws_restXmlReplicationTimeValue(input.EventThreshold, context).withName(\"EventThreshold\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlMetricsAndOperator = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MetricsAndOperator\");\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Tags !== undefined && input.Tags !== null) {\n var nodes = serializeAws_restXmlTagSet(input.Tags, context);\n nodes.map(function (node) {\n node = node.withName(\"Tag\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlMetricsConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MetricsConfiguration\");\n if (input.Id !== undefined && input.Id !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MetricsId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Id)).withName(\"Id\");\n bodyNode.addChildNode(node);\n }\n if (input.Filter !== undefined && input.Filter !== null) {\n var node = serializeAws_restXmlMetricsFilter(input.Filter, context).withName(\"Filter\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlMetricsFilter = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MetricsFilter\");\n _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"MetricsFilter\"].visit(input, {\n Prefix: function (value) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](value)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n },\n Tag: function (value) {\n var node = serializeAws_restXmlTag(value, context).withName(\"Tag\");\n bodyNode.addChildNode(node);\n },\n And: function (value) {\n var node = serializeAws_restXmlMetricsAndOperator(value, context).withName(\"And\");\n bodyNode.addChildNode(node);\n },\n _: function (name, value) {\n if (!(value instanceof _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"] || value instanceof _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"])) {\n throw new Error(\"Unable to serialize unknown union members in XML.\");\n }\n bodyNode.addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](name).addChildNode(value));\n },\n });\n return bodyNode;\n};\nvar serializeAws_restXmlNoncurrentVersionExpiration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"NoncurrentVersionExpiration\");\n if (input.NoncurrentDays !== undefined && input.NoncurrentDays !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Days\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.NoncurrentDays)))\n .withName(\"NoncurrentDays\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlNoncurrentVersionTransition = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"NoncurrentVersionTransition\");\n if (input.NoncurrentDays !== undefined && input.NoncurrentDays !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Days\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.NoncurrentDays)))\n .withName(\"NoncurrentDays\");\n bodyNode.addChildNode(node);\n }\n if (input.StorageClass !== undefined && input.StorageClass !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"TransitionStorageClass\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.StorageClass))\n .withName(\"StorageClass\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlNoncurrentVersionTransitionList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlNoncurrentVersionTransition(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlNotificationConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"NotificationConfiguration\");\n if (input.TopicConfigurations !== undefined && input.TopicConfigurations !== null) {\n var nodes = serializeAws_restXmlTopicConfigurationList(input.TopicConfigurations, context);\n nodes.map(function (node) {\n node = node.withName(\"TopicConfiguration\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.QueueConfigurations !== undefined && input.QueueConfigurations !== null) {\n var nodes = serializeAws_restXmlQueueConfigurationList(input.QueueConfigurations, context);\n nodes.map(function (node) {\n node = node.withName(\"QueueConfiguration\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.LambdaFunctionConfigurations !== undefined && input.LambdaFunctionConfigurations !== null) {\n var nodes = serializeAws_restXmlLambdaFunctionConfigurationList(input.LambdaFunctionConfigurations, context);\n nodes.map(function (node) {\n node = node.withName(\"CloudFunctionConfiguration\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlNotificationConfigurationFilter = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"NotificationConfigurationFilter\");\n if (input.Key !== undefined && input.Key !== null) {\n var node = serializeAws_restXmlS3KeyFilter(input.Key, context).withName(\"S3Key\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlObjectIdentifier = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectIdentifier\");\n if (input.Key !== undefined && input.Key !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectKey\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Key)).withName(\"Key\");\n bodyNode.addChildNode(node);\n }\n if (input.VersionId !== undefined && input.VersionId !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectVersionId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.VersionId)).withName(\"VersionId\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlObjectIdentifierList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlObjectIdentifier(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlObjectLockConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectLockConfiguration\");\n if (input.ObjectLockEnabled !== undefined && input.ObjectLockEnabled !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectLockEnabled\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ObjectLockEnabled))\n .withName(\"ObjectLockEnabled\");\n bodyNode.addChildNode(node);\n }\n if (input.Rule !== undefined && input.Rule !== null) {\n var node = serializeAws_restXmlObjectLockRule(input.Rule, context).withName(\"Rule\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlObjectLockLegalHold = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectLockLegalHold\");\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectLockLegalHoldStatus\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status))\n .withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlObjectLockRetention = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectLockRetention\");\n if (input.Mode !== undefined && input.Mode !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectLockRetentionMode\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Mode)).withName(\"Mode\");\n bodyNode.addChildNode(node);\n }\n if (input.RetainUntilDate !== undefined && input.RetainUntilDate !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Date\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.RetainUntilDate.toISOString().split(\".\")[0] + \"Z\"))\n .withName(\"RetainUntilDate\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlObjectLockRule = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectLockRule\");\n if (input.DefaultRetention !== undefined && input.DefaultRetention !== null) {\n var node = serializeAws_restXmlDefaultRetention(input.DefaultRetention, context).withName(\"DefaultRetention\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlOutputLocation = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"OutputLocation\");\n if (input.S3 !== undefined && input.S3 !== null) {\n var node = serializeAws_restXmlS3Location(input.S3, context).withName(\"S3\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlOutputSerialization = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"OutputSerialization\");\n if (input.CSV !== undefined && input.CSV !== null) {\n var node = serializeAws_restXmlCSVOutput(input.CSV, context).withName(\"CSV\");\n bodyNode.addChildNode(node);\n }\n if (input.JSON !== undefined && input.JSON !== null) {\n var node = serializeAws_restXmlJSONOutput(input.JSON, context).withName(\"JSON\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlOwner = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Owner\");\n if (input.DisplayName !== undefined && input.DisplayName !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"DisplayName\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.DisplayName)).withName(\"DisplayName\");\n bodyNode.addChildNode(node);\n }\n if (input.ID !== undefined && input.ID !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ID\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ID)).withName(\"ID\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlOwnershipControls = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"OwnershipControls\");\n if (input.Rules !== undefined && input.Rules !== null) {\n var nodes = serializeAws_restXmlOwnershipControlsRules(input.Rules, context);\n nodes.map(function (node) {\n node = node.withName(\"Rule\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlOwnershipControlsRule = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"OwnershipControlsRule\");\n if (input.ObjectOwnership !== undefined && input.ObjectOwnership !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectOwnership\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ObjectOwnership))\n .withName(\"ObjectOwnership\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlOwnershipControlsRules = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlOwnershipControlsRule(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlParquetInput = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ParquetInput\");\n return bodyNode;\n};\nvar serializeAws_restXmlPublicAccessBlockConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"PublicAccessBlockConfiguration\");\n if (input.BlockPublicAcls !== undefined && input.BlockPublicAcls !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Setting\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.BlockPublicAcls)))\n .withName(\"BlockPublicAcls\");\n bodyNode.addChildNode(node);\n }\n if (input.IgnorePublicAcls !== undefined && input.IgnorePublicAcls !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Setting\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.IgnorePublicAcls)))\n .withName(\"IgnorePublicAcls\");\n bodyNode.addChildNode(node);\n }\n if (input.BlockPublicPolicy !== undefined && input.BlockPublicPolicy !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Setting\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.BlockPublicPolicy)))\n .withName(\"BlockPublicPolicy\");\n bodyNode.addChildNode(node);\n }\n if (input.RestrictPublicBuckets !== undefined && input.RestrictPublicBuckets !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Setting\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.RestrictPublicBuckets)))\n .withName(\"RestrictPublicBuckets\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlQueueConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"QueueConfiguration\");\n if (input.Id !== undefined && input.Id !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"NotificationId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Id)).withName(\"Id\");\n bodyNode.addChildNode(node);\n }\n if (input.QueueArn !== undefined && input.QueueArn !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"QueueArn\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.QueueArn)).withName(\"Queue\");\n bodyNode.addChildNode(node);\n }\n if (input.Events !== undefined && input.Events !== null) {\n var nodes = serializeAws_restXmlEventList(input.Events, context);\n nodes.map(function (node) {\n node = node.withName(\"Event\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.Filter !== undefined && input.Filter !== null) {\n var node = serializeAws_restXmlNotificationConfigurationFilter(input.Filter, context).withName(\"Filter\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlQueueConfigurationList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlQueueConfiguration(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlRedirect = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Redirect\");\n if (input.HostName !== undefined && input.HostName !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"HostName\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.HostName)).withName(\"HostName\");\n bodyNode.addChildNode(node);\n }\n if (input.HttpRedirectCode !== undefined && input.HttpRedirectCode !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"HttpRedirectCode\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.HttpRedirectCode))\n .withName(\"HttpRedirectCode\");\n bodyNode.addChildNode(node);\n }\n if (input.Protocol !== undefined && input.Protocol !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Protocol\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Protocol)).withName(\"Protocol\");\n bodyNode.addChildNode(node);\n }\n if (input.ReplaceKeyPrefixWith !== undefined && input.ReplaceKeyPrefixWith !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplaceKeyPrefixWith\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ReplaceKeyPrefixWith))\n .withName(\"ReplaceKeyPrefixWith\");\n bodyNode.addChildNode(node);\n }\n if (input.ReplaceKeyWith !== undefined && input.ReplaceKeyWith !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplaceKeyWith\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ReplaceKeyWith))\n .withName(\"ReplaceKeyWith\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlRedirectAllRequestsTo = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RedirectAllRequestsTo\");\n if (input.HostName !== undefined && input.HostName !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"HostName\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.HostName)).withName(\"HostName\");\n bodyNode.addChildNode(node);\n }\n if (input.Protocol !== undefined && input.Protocol !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Protocol\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Protocol)).withName(\"Protocol\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlReplicaModifications = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicaModifications\");\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicaModificationsStatus\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status))\n .withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlReplicationConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicationConfiguration\");\n if (input.Role !== undefined && input.Role !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Role\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Role)).withName(\"Role\");\n bodyNode.addChildNode(node);\n }\n if (input.Rules !== undefined && input.Rules !== null) {\n var nodes = serializeAws_restXmlReplicationRules(input.Rules, context);\n nodes.map(function (node) {\n node = node.withName(\"Rule\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlReplicationRule = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicationRule\");\n if (input.ID !== undefined && input.ID !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ID\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ID)).withName(\"ID\");\n bodyNode.addChildNode(node);\n }\n if (input.Priority !== undefined && input.Priority !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Priority\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Priority))).withName(\"Priority\");\n bodyNode.addChildNode(node);\n }\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Filter !== undefined && input.Filter !== null) {\n var node = serializeAws_restXmlReplicationRuleFilter(input.Filter, context).withName(\"Filter\");\n bodyNode.addChildNode(node);\n }\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicationRuleStatus\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status)).withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n if (input.SourceSelectionCriteria !== undefined && input.SourceSelectionCriteria !== null) {\n var node = serializeAws_restXmlSourceSelectionCriteria(input.SourceSelectionCriteria, context).withName(\"SourceSelectionCriteria\");\n bodyNode.addChildNode(node);\n }\n if (input.ExistingObjectReplication !== undefined && input.ExistingObjectReplication !== null) {\n var node = serializeAws_restXmlExistingObjectReplication(input.ExistingObjectReplication, context).withName(\"ExistingObjectReplication\");\n bodyNode.addChildNode(node);\n }\n if (input.Destination !== undefined && input.Destination !== null) {\n var node = serializeAws_restXmlDestination(input.Destination, context).withName(\"Destination\");\n bodyNode.addChildNode(node);\n }\n if (input.DeleteMarkerReplication !== undefined && input.DeleteMarkerReplication !== null) {\n var node = serializeAws_restXmlDeleteMarkerReplication(input.DeleteMarkerReplication, context).withName(\"DeleteMarkerReplication\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlReplicationRuleAndOperator = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicationRuleAndOperator\");\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Tags !== undefined && input.Tags !== null) {\n var nodes = serializeAws_restXmlTagSet(input.Tags, context);\n nodes.map(function (node) {\n node = node.withName(\"Tag\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlReplicationRuleFilter = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicationRuleFilter\");\n _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ReplicationRuleFilter\"].visit(input, {\n Prefix: function (value) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Prefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](value)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n },\n Tag: function (value) {\n var node = serializeAws_restXmlTag(value, context).withName(\"Tag\");\n bodyNode.addChildNode(node);\n },\n And: function (value) {\n var node = serializeAws_restXmlReplicationRuleAndOperator(value, context).withName(\"And\");\n bodyNode.addChildNode(node);\n },\n _: function (name, value) {\n if (!(value instanceof _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"] || value instanceof _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"])) {\n throw new Error(\"Unable to serialize unknown union members in XML.\");\n }\n bodyNode.addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](name).addChildNode(value));\n },\n });\n return bodyNode;\n};\nvar serializeAws_restXmlReplicationRules = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlReplicationRule(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlReplicationTime = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicationTime\");\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicationTimeStatus\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status)).withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n if (input.Time !== undefined && input.Time !== null) {\n var node = serializeAws_restXmlReplicationTimeValue(input.Time, context).withName(\"Time\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlReplicationTimeValue = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ReplicationTimeValue\");\n if (input.Minutes !== undefined && input.Minutes !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Minutes\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Minutes))).withName(\"Minutes\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlRequestPaymentConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RequestPaymentConfiguration\");\n if (input.Payer !== undefined && input.Payer !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Payer\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Payer)).withName(\"Payer\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlRequestProgress = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RequestProgress\");\n if (input.Enabled !== undefined && input.Enabled !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"EnableRequestProgress\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Enabled)))\n .withName(\"Enabled\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlRestoreRequest = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RestoreRequest\");\n if (input.Days !== undefined && input.Days !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Days\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Days))).withName(\"Days\");\n bodyNode.addChildNode(node);\n }\n if (input.GlacierJobParameters !== undefined && input.GlacierJobParameters !== null) {\n var node = serializeAws_restXmlGlacierJobParameters(input.GlacierJobParameters, context).withName(\"GlacierJobParameters\");\n bodyNode.addChildNode(node);\n }\n if (input.Type !== undefined && input.Type !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RestoreRequestType\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Type)).withName(\"Type\");\n bodyNode.addChildNode(node);\n }\n if (input.Tier !== undefined && input.Tier !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Tier\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Tier)).withName(\"Tier\");\n bodyNode.addChildNode(node);\n }\n if (input.Description !== undefined && input.Description !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Description\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Description)).withName(\"Description\");\n bodyNode.addChildNode(node);\n }\n if (input.SelectParameters !== undefined && input.SelectParameters !== null) {\n var node = serializeAws_restXmlSelectParameters(input.SelectParameters, context).withName(\"SelectParameters\");\n bodyNode.addChildNode(node);\n }\n if (input.OutputLocation !== undefined && input.OutputLocation !== null) {\n var node = serializeAws_restXmlOutputLocation(input.OutputLocation, context).withName(\"OutputLocation\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlRoutingRule = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RoutingRule\");\n if (input.Condition !== undefined && input.Condition !== null) {\n var node = serializeAws_restXmlCondition(input.Condition, context).withName(\"Condition\");\n bodyNode.addChildNode(node);\n }\n if (input.Redirect !== undefined && input.Redirect !== null) {\n var node = serializeAws_restXmlRedirect(input.Redirect, context).withName(\"Redirect\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlRoutingRules = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlRoutingRule(entry, context);\n return node.withName(\"RoutingRule\");\n });\n};\nvar serializeAws_restXmlS3KeyFilter = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"S3KeyFilter\");\n if (input.FilterRules !== undefined && input.FilterRules !== null) {\n var nodes = serializeAws_restXmlFilterRuleList(input.FilterRules, context);\n nodes.map(function (node) {\n node = node.withName(\"FilterRule\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlS3Location = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"S3Location\");\n if (input.BucketName !== undefined && input.BucketName !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketName\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.BucketName)).withName(\"BucketName\");\n bodyNode.addChildNode(node);\n }\n if (input.Prefix !== undefined && input.Prefix !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"LocationPrefix\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Prefix)).withName(\"Prefix\");\n bodyNode.addChildNode(node);\n }\n if (input.Encryption !== undefined && input.Encryption !== null) {\n var node = serializeAws_restXmlEncryption(input.Encryption, context).withName(\"Encryption\");\n bodyNode.addChildNode(node);\n }\n if (input.CannedACL !== undefined && input.CannedACL !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectCannedACL\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.CannedACL)).withName(\"CannedACL\");\n bodyNode.addChildNode(node);\n }\n if (input.AccessControlList !== undefined && input.AccessControlList !== null) {\n var nodes = serializeAws_restXmlGrants(input.AccessControlList, context);\n var containerNode_4 = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"AccessControlList\");\n nodes.map(function (node) {\n containerNode_4.addChildNode(node);\n });\n bodyNode.addChildNode(containerNode_4);\n }\n if (input.Tagging !== undefined && input.Tagging !== null) {\n var node = serializeAws_restXmlTagging(input.Tagging, context).withName(\"Tagging\");\n bodyNode.addChildNode(node);\n }\n if (input.UserMetadata !== undefined && input.UserMetadata !== null) {\n var nodes = serializeAws_restXmlUserMetadata(input.UserMetadata, context);\n var containerNode_5 = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"UserMetadata\");\n nodes.map(function (node) {\n containerNode_5.addChildNode(node);\n });\n bodyNode.addChildNode(containerNode_5);\n }\n if (input.StorageClass !== undefined && input.StorageClass !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"StorageClass\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.StorageClass)).withName(\"StorageClass\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlScanRange = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ScanRange\");\n if (input.Start !== undefined && input.Start !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Start\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Start))).withName(\"Start\");\n bodyNode.addChildNode(node);\n }\n if (input.End !== undefined && input.End !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"End\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.End))).withName(\"End\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlSelectParameters = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SelectParameters\");\n if (input.InputSerialization !== undefined && input.InputSerialization !== null) {\n var node = serializeAws_restXmlInputSerialization(input.InputSerialization, context).withName(\"InputSerialization\");\n bodyNode.addChildNode(node);\n }\n if (input.ExpressionType !== undefined && input.ExpressionType !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ExpressionType\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.ExpressionType))\n .withName(\"ExpressionType\");\n bodyNode.addChildNode(node);\n }\n if (input.Expression !== undefined && input.Expression !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Expression\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Expression)).withName(\"Expression\");\n bodyNode.addChildNode(node);\n }\n if (input.OutputSerialization !== undefined && input.OutputSerialization !== null) {\n var node = serializeAws_restXmlOutputSerialization(input.OutputSerialization, context).withName(\"OutputSerialization\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlServerSideEncryptionByDefault = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ServerSideEncryptionByDefault\");\n if (input.SSEAlgorithm !== undefined && input.SSEAlgorithm !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ServerSideEncryption\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.SSEAlgorithm))\n .withName(\"SSEAlgorithm\");\n bodyNode.addChildNode(node);\n }\n if (input.KMSMasterKeyID !== undefined && input.KMSMasterKeyID !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SSEKMSKeyId\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.KMSMasterKeyID))\n .withName(\"KMSMasterKeyID\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlServerSideEncryptionConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ServerSideEncryptionConfiguration\");\n if (input.Rules !== undefined && input.Rules !== null) {\n var nodes = serializeAws_restXmlServerSideEncryptionRules(input.Rules, context);\n nodes.map(function (node) {\n node = node.withName(\"Rule\");\n bodyNode.addChildNode(node);\n });\n }\n return bodyNode;\n};\nvar serializeAws_restXmlServerSideEncryptionRule = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ServerSideEncryptionRule\");\n if (input.ApplyServerSideEncryptionByDefault !== undefined && input.ApplyServerSideEncryptionByDefault !== null) {\n var node = serializeAws_restXmlServerSideEncryptionByDefault(input.ApplyServerSideEncryptionByDefault, context).withName(\"ApplyServerSideEncryptionByDefault\");\n bodyNode.addChildNode(node);\n }\n if (input.BucketKeyEnabled !== undefined && input.BucketKeyEnabled !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketKeyEnabled\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.BucketKeyEnabled)))\n .withName(\"BucketKeyEnabled\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlServerSideEncryptionRules = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlServerSideEncryptionRule(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlSourceSelectionCriteria = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SourceSelectionCriteria\");\n if (input.SseKmsEncryptedObjects !== undefined && input.SseKmsEncryptedObjects !== null) {\n var node = serializeAws_restXmlSseKmsEncryptedObjects(input.SseKmsEncryptedObjects, context).withName(\"SseKmsEncryptedObjects\");\n bodyNode.addChildNode(node);\n }\n if (input.ReplicaModifications !== undefined && input.ReplicaModifications !== null) {\n var node = serializeAws_restXmlReplicaModifications(input.ReplicaModifications, context).withName(\"ReplicaModifications\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlSSEKMS = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SSE-KMS\");\n if (input.KeyId !== undefined && input.KeyId !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SSEKMSKeyId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.KeyId)).withName(\"KeyId\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlSseKmsEncryptedObjects = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SseKmsEncryptedObjects\");\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SseKmsEncryptedObjectsStatus\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status))\n .withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlSSES3 = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"SSE-S3\");\n return bodyNode;\n};\nvar serializeAws_restXmlStorageClassAnalysis = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"StorageClassAnalysis\");\n if (input.DataExport !== undefined && input.DataExport !== null) {\n var node = serializeAws_restXmlStorageClassAnalysisDataExport(input.DataExport, context).withName(\"DataExport\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlStorageClassAnalysisDataExport = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"StorageClassAnalysisDataExport\");\n if (input.OutputSchemaVersion !== undefined && input.OutputSchemaVersion !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"StorageClassAnalysisSchemaVersion\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.OutputSchemaVersion))\n .withName(\"OutputSchemaVersion\");\n bodyNode.addChildNode(node);\n }\n if (input.Destination !== undefined && input.Destination !== null) {\n var node = serializeAws_restXmlAnalyticsExportDestination(input.Destination, context).withName(\"Destination\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlTag = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Tag\");\n if (input.Key !== undefined && input.Key !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"ObjectKey\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Key)).withName(\"Key\");\n bodyNode.addChildNode(node);\n }\n if (input.Value !== undefined && input.Value !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Value\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Value)).withName(\"Value\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlTagging = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Tagging\");\n if (input.TagSet !== undefined && input.TagSet !== null) {\n var nodes = serializeAws_restXmlTagSet(input.TagSet, context);\n var containerNode_6 = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"TagSet\");\n nodes.map(function (node) {\n containerNode_6.addChildNode(node);\n });\n bodyNode.addChildNode(containerNode_6);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlTagSet = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlTag(entry, context);\n return node.withName(\"Tag\");\n });\n};\nvar serializeAws_restXmlTargetGrant = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"TargetGrant\");\n if (input.Grantee !== undefined && input.Grantee !== null) {\n var node = serializeAws_restXmlGrantee(input.Grantee, context).withName(\"Grantee\");\n bodyNode.addChildNode(node);\n }\n if (input.Permission !== undefined && input.Permission !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketLogsPermission\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Permission))\n .withName(\"Permission\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlTargetGrants = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlTargetGrant(entry, context);\n return node.withName(\"Grant\");\n });\n};\nvar serializeAws_restXmlTiering = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Tiering\");\n if (input.Days !== undefined && input.Days !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"IntelligentTieringDays\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Days)))\n .withName(\"Days\");\n bodyNode.addChildNode(node);\n }\n if (input.AccessTier !== undefined && input.AccessTier !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"IntelligentTieringAccessTier\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.AccessTier))\n .withName(\"AccessTier\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlTieringList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlTiering(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlTopicConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"TopicConfiguration\");\n if (input.Id !== undefined && input.Id !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"NotificationId\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Id)).withName(\"Id\");\n bodyNode.addChildNode(node);\n }\n if (input.TopicArn !== undefined && input.TopicArn !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"TopicArn\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.TopicArn)).withName(\"Topic\");\n bodyNode.addChildNode(node);\n }\n if (input.Events !== undefined && input.Events !== null) {\n var nodes = serializeAws_restXmlEventList(input.Events, context);\n nodes.map(function (node) {\n node = node.withName(\"Event\");\n bodyNode.addChildNode(node);\n });\n }\n if (input.Filter !== undefined && input.Filter !== null) {\n var node = serializeAws_restXmlNotificationConfigurationFilter(input.Filter, context).withName(\"Filter\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlTopicConfigurationList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlTopicConfiguration(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlTransition = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Transition\");\n if (input.Date !== undefined && input.Date !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Date\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Date.toISOString().split(\".\")[0] + \"Z\"))\n .withName(\"Date\");\n bodyNode.addChildNode(node);\n }\n if (input.Days !== undefined && input.Days !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"Days\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](String(input.Days))).withName(\"Days\");\n bodyNode.addChildNode(node);\n }\n if (input.StorageClass !== undefined && input.StorageClass !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"TransitionStorageClass\")\n .addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.StorageClass))\n .withName(\"StorageClass\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlTransitionList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlTransition(entry, context);\n return node.withName(\"member\");\n });\n};\nvar serializeAws_restXmlUserMetadata = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n var node = serializeAws_restXmlMetadataEntry(entry, context);\n return node.withName(\"MetadataEntry\");\n });\n};\nvar serializeAws_restXmlVersioningConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"VersioningConfiguration\");\n if (input.MFADelete !== undefined && input.MFADelete !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"MFADelete\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.MFADelete)).withName(\"MfaDelete\");\n bodyNode.addChildNode(node);\n }\n if (input.Status !== undefined && input.Status !== null) {\n var node = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"BucketVersioningStatus\").addChildNode(new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlText\"](input.Status)).withName(\"Status\");\n bodyNode.addChildNode(node);\n }\n return bodyNode;\n};\nvar serializeAws_restXmlWebsiteConfiguration = function (input, context) {\n var bodyNode = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"WebsiteConfiguration\");\n if (input.ErrorDocument !== undefined && input.ErrorDocument !== null) {\n var node = serializeAws_restXmlErrorDocument(input.ErrorDocument, context).withName(\"ErrorDocument\");\n bodyNode.addChildNode(node);\n }\n if (input.IndexDocument !== undefined && input.IndexDocument !== null) {\n var node = serializeAws_restXmlIndexDocument(input.IndexDocument, context).withName(\"IndexDocument\");\n bodyNode.addChildNode(node);\n }\n if (input.RedirectAllRequestsTo !== undefined && input.RedirectAllRequestsTo !== null) {\n var node = serializeAws_restXmlRedirectAllRequestsTo(input.RedirectAllRequestsTo, context).withName(\"RedirectAllRequestsTo\");\n bodyNode.addChildNode(node);\n }\n if (input.RoutingRules !== undefined && input.RoutingRules !== null) {\n var nodes = serializeAws_restXmlRoutingRules(input.RoutingRules, context);\n var containerNode_7 = new _aws_sdk_xml_builder__WEBPACK_IMPORTED_MODULE_4__[\"XmlNode\"](\"RoutingRules\");\n nodes.map(function (node) {\n containerNode_7.addChildNode(node);\n });\n bodyNode.addChildNode(containerNode_7);\n }\n return bodyNode;\n};\nvar deserializeAws_restXmlAbortIncompleteMultipartUpload = function (output, context) {\n var contents = {\n DaysAfterInitiation: undefined,\n };\n if (output[\"DaysAfterInitiation\"] !== undefined) {\n contents.DaysAfterInitiation = parseInt(output[\"DaysAfterInitiation\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlAccessControlTranslation = function (output, context) {\n var contents = {\n Owner: undefined,\n };\n if (output[\"Owner\"] !== undefined) {\n contents.Owner = output[\"Owner\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlAllowedHeaders = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restXmlAllowedMethods = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restXmlAllowedOrigins = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restXmlAnalyticsAndOperator = function (output, context) {\n var contents = {\n Prefix: undefined,\n Tags: undefined,\n };\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n if (output.Tag === \"\") {\n contents.Tags = [];\n }\n if (output[\"Tag\"] !== undefined) {\n contents.Tags = deserializeAws_restXmlTagSet(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Tag\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlAnalyticsConfiguration = function (output, context) {\n var contents = {\n Id: undefined,\n Filter: undefined,\n StorageClassAnalysis: undefined,\n };\n if (output[\"Id\"] !== undefined) {\n contents.Id = output[\"Id\"];\n }\n if (output[\"Filter\"] !== undefined) {\n contents.Filter = deserializeAws_restXmlAnalyticsFilter(output[\"Filter\"], context);\n }\n if (output[\"StorageClassAnalysis\"] !== undefined) {\n contents.StorageClassAnalysis = deserializeAws_restXmlStorageClassAnalysis(output[\"StorageClassAnalysis\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlAnalyticsConfigurationList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlAnalyticsConfiguration(entry, context);\n });\n};\nvar deserializeAws_restXmlAnalyticsExportDestination = function (output, context) {\n var contents = {\n S3BucketDestination: undefined,\n };\n if (output[\"S3BucketDestination\"] !== undefined) {\n contents.S3BucketDestination = deserializeAws_restXmlAnalyticsS3BucketDestination(output[\"S3BucketDestination\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlAnalyticsFilter = function (output, context) {\n if (output[\"Prefix\"] !== undefined) {\n return {\n Prefix: output[\"Prefix\"],\n };\n }\n if (output[\"Tag\"] !== undefined) {\n return {\n Tag: deserializeAws_restXmlTag(output[\"Tag\"], context),\n };\n }\n if (output[\"And\"] !== undefined) {\n return {\n And: deserializeAws_restXmlAnalyticsAndOperator(output[\"And\"], context),\n };\n }\n return { $unknown: Object.entries(output)[0] };\n};\nvar deserializeAws_restXmlAnalyticsS3BucketDestination = function (output, context) {\n var contents = {\n Format: undefined,\n BucketAccountId: undefined,\n Bucket: undefined,\n Prefix: undefined,\n };\n if (output[\"Format\"] !== undefined) {\n contents.Format = output[\"Format\"];\n }\n if (output[\"BucketAccountId\"] !== undefined) {\n contents.BucketAccountId = output[\"BucketAccountId\"];\n }\n if (output[\"Bucket\"] !== undefined) {\n contents.Bucket = output[\"Bucket\"];\n }\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlBucket = function (output, context) {\n var contents = {\n Name: undefined,\n CreationDate: undefined,\n };\n if (output[\"Name\"] !== undefined) {\n contents.Name = output[\"Name\"];\n }\n if (output[\"CreationDate\"] !== undefined) {\n contents.CreationDate = new Date(output[\"CreationDate\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlBuckets = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlBucket(entry, context);\n });\n};\nvar deserializeAws_restXmlCommonPrefix = function (output, context) {\n var contents = {\n Prefix: undefined,\n };\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlCommonPrefixList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlCommonPrefix(entry, context);\n });\n};\nvar deserializeAws_restXmlCondition = function (output, context) {\n var contents = {\n HttpErrorCodeReturnedEquals: undefined,\n KeyPrefixEquals: undefined,\n };\n if (output[\"HttpErrorCodeReturnedEquals\"] !== undefined) {\n contents.HttpErrorCodeReturnedEquals = output[\"HttpErrorCodeReturnedEquals\"];\n }\n if (output[\"KeyPrefixEquals\"] !== undefined) {\n contents.KeyPrefixEquals = output[\"KeyPrefixEquals\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlCopyObjectResult = function (output, context) {\n var contents = {\n ETag: undefined,\n LastModified: undefined,\n };\n if (output[\"ETag\"] !== undefined) {\n contents.ETag = output[\"ETag\"];\n }\n if (output[\"LastModified\"] !== undefined) {\n contents.LastModified = new Date(output[\"LastModified\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlCopyPartResult = function (output, context) {\n var contents = {\n ETag: undefined,\n LastModified: undefined,\n };\n if (output[\"ETag\"] !== undefined) {\n contents.ETag = output[\"ETag\"];\n }\n if (output[\"LastModified\"] !== undefined) {\n contents.LastModified = new Date(output[\"LastModified\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlCORSRule = function (output, context) {\n var contents = {\n AllowedHeaders: undefined,\n AllowedMethods: undefined,\n AllowedOrigins: undefined,\n ExposeHeaders: undefined,\n MaxAgeSeconds: undefined,\n };\n if (output.AllowedHeader === \"\") {\n contents.AllowedHeaders = [];\n }\n if (output[\"AllowedHeader\"] !== undefined) {\n contents.AllowedHeaders = deserializeAws_restXmlAllowedHeaders(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"AllowedHeader\"]), context);\n }\n if (output.AllowedMethod === \"\") {\n contents.AllowedMethods = [];\n }\n if (output[\"AllowedMethod\"] !== undefined) {\n contents.AllowedMethods = deserializeAws_restXmlAllowedMethods(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"AllowedMethod\"]), context);\n }\n if (output.AllowedOrigin === \"\") {\n contents.AllowedOrigins = [];\n }\n if (output[\"AllowedOrigin\"] !== undefined) {\n contents.AllowedOrigins = deserializeAws_restXmlAllowedOrigins(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"AllowedOrigin\"]), context);\n }\n if (output.ExposeHeader === \"\") {\n contents.ExposeHeaders = [];\n }\n if (output[\"ExposeHeader\"] !== undefined) {\n contents.ExposeHeaders = deserializeAws_restXmlExposeHeaders(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"ExposeHeader\"]), context);\n }\n if (output[\"MaxAgeSeconds\"] !== undefined) {\n contents.MaxAgeSeconds = parseInt(output[\"MaxAgeSeconds\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlCORSRules = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlCORSRule(entry, context);\n });\n};\nvar deserializeAws_restXmlDefaultRetention = function (output, context) {\n var contents = {\n Mode: undefined,\n Days: undefined,\n Years: undefined,\n };\n if (output[\"Mode\"] !== undefined) {\n contents.Mode = output[\"Mode\"];\n }\n if (output[\"Days\"] !== undefined) {\n contents.Days = parseInt(output[\"Days\"]);\n }\n if (output[\"Years\"] !== undefined) {\n contents.Years = parseInt(output[\"Years\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlDeletedObject = function (output, context) {\n var contents = {\n Key: undefined,\n VersionId: undefined,\n DeleteMarker: undefined,\n DeleteMarkerVersionId: undefined,\n };\n if (output[\"Key\"] !== undefined) {\n contents.Key = output[\"Key\"];\n }\n if (output[\"VersionId\"] !== undefined) {\n contents.VersionId = output[\"VersionId\"];\n }\n if (output[\"DeleteMarker\"] !== undefined) {\n contents.DeleteMarker = output[\"DeleteMarker\"] == \"true\";\n }\n if (output[\"DeleteMarkerVersionId\"] !== undefined) {\n contents.DeleteMarkerVersionId = output[\"DeleteMarkerVersionId\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlDeletedObjects = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlDeletedObject(entry, context);\n });\n};\nvar deserializeAws_restXmlDeleteMarkerEntry = function (output, context) {\n var contents = {\n Owner: undefined,\n Key: undefined,\n VersionId: undefined,\n IsLatest: undefined,\n LastModified: undefined,\n };\n if (output[\"Owner\"] !== undefined) {\n contents.Owner = deserializeAws_restXmlOwner(output[\"Owner\"], context);\n }\n if (output[\"Key\"] !== undefined) {\n contents.Key = output[\"Key\"];\n }\n if (output[\"VersionId\"] !== undefined) {\n contents.VersionId = output[\"VersionId\"];\n }\n if (output[\"IsLatest\"] !== undefined) {\n contents.IsLatest = output[\"IsLatest\"] == \"true\";\n }\n if (output[\"LastModified\"] !== undefined) {\n contents.LastModified = new Date(output[\"LastModified\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlDeleteMarkerReplication = function (output, context) {\n var contents = {\n Status: undefined,\n };\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlDeleteMarkers = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlDeleteMarkerEntry(entry, context);\n });\n};\nvar deserializeAws_restXmlDestination = function (output, context) {\n var contents = {\n Bucket: undefined,\n Account: undefined,\n StorageClass: undefined,\n AccessControlTranslation: undefined,\n EncryptionConfiguration: undefined,\n ReplicationTime: undefined,\n Metrics: undefined,\n };\n if (output[\"Bucket\"] !== undefined) {\n contents.Bucket = output[\"Bucket\"];\n }\n if (output[\"Account\"] !== undefined) {\n contents.Account = output[\"Account\"];\n }\n if (output[\"StorageClass\"] !== undefined) {\n contents.StorageClass = output[\"StorageClass\"];\n }\n if (output[\"AccessControlTranslation\"] !== undefined) {\n contents.AccessControlTranslation = deserializeAws_restXmlAccessControlTranslation(output[\"AccessControlTranslation\"], context);\n }\n if (output[\"EncryptionConfiguration\"] !== undefined) {\n contents.EncryptionConfiguration = deserializeAws_restXmlEncryptionConfiguration(output[\"EncryptionConfiguration\"], context);\n }\n if (output[\"ReplicationTime\"] !== undefined) {\n contents.ReplicationTime = deserializeAws_restXmlReplicationTime(output[\"ReplicationTime\"], context);\n }\n if (output[\"Metrics\"] !== undefined) {\n contents.Metrics = deserializeAws_restXmlMetrics(output[\"Metrics\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlEncryptionConfiguration = function (output, context) {\n var contents = {\n ReplicaKmsKeyID: undefined,\n };\n if (output[\"ReplicaKmsKeyID\"] !== undefined) {\n contents.ReplicaKmsKeyID = output[\"ReplicaKmsKeyID\"];\n }\n return contents;\n};\nvar deserializeAws_restXml_Error = function (output, context) {\n var contents = {\n Key: undefined,\n VersionId: undefined,\n Code: undefined,\n Message: undefined,\n };\n if (output[\"Key\"] !== undefined) {\n contents.Key = output[\"Key\"];\n }\n if (output[\"VersionId\"] !== undefined) {\n contents.VersionId = output[\"VersionId\"];\n }\n if (output[\"Code\"] !== undefined) {\n contents.Code = output[\"Code\"];\n }\n if (output[\"Message\"] !== undefined) {\n contents.Message = output[\"Message\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlErrorDocument = function (output, context) {\n var contents = {\n Key: undefined,\n };\n if (output[\"Key\"] !== undefined) {\n contents.Key = output[\"Key\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlErrors = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXml_Error(entry, context);\n });\n};\nvar deserializeAws_restXmlEventList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restXmlExistingObjectReplication = function (output, context) {\n var contents = {\n Status: undefined,\n };\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlExposeHeaders = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restXmlFilterRule = function (output, context) {\n var contents = {\n Name: undefined,\n Value: undefined,\n };\n if (output[\"Name\"] !== undefined) {\n contents.Name = output[\"Name\"];\n }\n if (output[\"Value\"] !== undefined) {\n contents.Value = output[\"Value\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlFilterRuleList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlFilterRule(entry, context);\n });\n};\nvar deserializeAws_restXmlGrant = function (output, context) {\n var contents = {\n Grantee: undefined,\n Permission: undefined,\n };\n if (output[\"Grantee\"] !== undefined) {\n contents.Grantee = deserializeAws_restXmlGrantee(output[\"Grantee\"], context);\n }\n if (output[\"Permission\"] !== undefined) {\n contents.Permission = output[\"Permission\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlGrantee = function (output, context) {\n var contents = {\n DisplayName: undefined,\n EmailAddress: undefined,\n ID: undefined,\n URI: undefined,\n Type: undefined,\n };\n if (output[\"DisplayName\"] !== undefined) {\n contents.DisplayName = output[\"DisplayName\"];\n }\n if (output[\"EmailAddress\"] !== undefined) {\n contents.EmailAddress = output[\"EmailAddress\"];\n }\n if (output[\"ID\"] !== undefined) {\n contents.ID = output[\"ID\"];\n }\n if (output[\"URI\"] !== undefined) {\n contents.URI = output[\"URI\"];\n }\n if (output[\"xsi:type\"] !== undefined) {\n contents.Type = output[\"xsi:type\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlGrants = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlGrant(entry, context);\n });\n};\nvar deserializeAws_restXmlIndexDocument = function (output, context) {\n var contents = {\n Suffix: undefined,\n };\n if (output[\"Suffix\"] !== undefined) {\n contents.Suffix = output[\"Suffix\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlInitiator = function (output, context) {\n var contents = {\n ID: undefined,\n DisplayName: undefined,\n };\n if (output[\"ID\"] !== undefined) {\n contents.ID = output[\"ID\"];\n }\n if (output[\"DisplayName\"] !== undefined) {\n contents.DisplayName = output[\"DisplayName\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlIntelligentTieringAndOperator = function (output, context) {\n var contents = {\n Prefix: undefined,\n Tags: undefined,\n };\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n if (output.Tag === \"\") {\n contents.Tags = [];\n }\n if (output[\"Tag\"] !== undefined) {\n contents.Tags = deserializeAws_restXmlTagSet(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Tag\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlIntelligentTieringConfiguration = function (output, context) {\n var contents = {\n Id: undefined,\n Filter: undefined,\n Status: undefined,\n Tierings: undefined,\n };\n if (output[\"Id\"] !== undefined) {\n contents.Id = output[\"Id\"];\n }\n if (output[\"Filter\"] !== undefined) {\n contents.Filter = deserializeAws_restXmlIntelligentTieringFilter(output[\"Filter\"], context);\n }\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n if (output.Tiering === \"\") {\n contents.Tierings = [];\n }\n if (output[\"Tiering\"] !== undefined) {\n contents.Tierings = deserializeAws_restXmlTieringList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Tiering\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlIntelligentTieringConfigurationList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlIntelligentTieringConfiguration(entry, context);\n });\n};\nvar deserializeAws_restXmlIntelligentTieringFilter = function (output, context) {\n var contents = {\n Prefix: undefined,\n Tag: undefined,\n And: undefined,\n };\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n if (output[\"Tag\"] !== undefined) {\n contents.Tag = deserializeAws_restXmlTag(output[\"Tag\"], context);\n }\n if (output[\"And\"] !== undefined) {\n contents.And = deserializeAws_restXmlIntelligentTieringAndOperator(output[\"And\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlInventoryConfiguration = function (output, context) {\n var contents = {\n Destination: undefined,\n IsEnabled: undefined,\n Filter: undefined,\n Id: undefined,\n IncludedObjectVersions: undefined,\n OptionalFields: undefined,\n Schedule: undefined,\n };\n if (output[\"Destination\"] !== undefined) {\n contents.Destination = deserializeAws_restXmlInventoryDestination(output[\"Destination\"], context);\n }\n if (output[\"IsEnabled\"] !== undefined) {\n contents.IsEnabled = output[\"IsEnabled\"] == \"true\";\n }\n if (output[\"Filter\"] !== undefined) {\n contents.Filter = deserializeAws_restXmlInventoryFilter(output[\"Filter\"], context);\n }\n if (output[\"Id\"] !== undefined) {\n contents.Id = output[\"Id\"];\n }\n if (output[\"IncludedObjectVersions\"] !== undefined) {\n contents.IncludedObjectVersions = output[\"IncludedObjectVersions\"];\n }\n if (output.OptionalFields === \"\") {\n contents.OptionalFields = [];\n }\n if (output[\"OptionalFields\"] !== undefined && output[\"OptionalFields\"][\"Field\"] !== undefined) {\n contents.OptionalFields = deserializeAws_restXmlInventoryOptionalFields(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"OptionalFields\"][\"Field\"]), context);\n }\n if (output[\"Schedule\"] !== undefined) {\n contents.Schedule = deserializeAws_restXmlInventorySchedule(output[\"Schedule\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlInventoryConfigurationList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlInventoryConfiguration(entry, context);\n });\n};\nvar deserializeAws_restXmlInventoryDestination = function (output, context) {\n var contents = {\n S3BucketDestination: undefined,\n };\n if (output[\"S3BucketDestination\"] !== undefined) {\n contents.S3BucketDestination = deserializeAws_restXmlInventoryS3BucketDestination(output[\"S3BucketDestination\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlInventoryEncryption = function (output, context) {\n var contents = {\n SSES3: undefined,\n SSEKMS: undefined,\n };\n if (output[\"SSE-S3\"] !== undefined) {\n contents.SSES3 = deserializeAws_restXmlSSES3(output[\"SSE-S3\"], context);\n }\n if (output[\"SSE-KMS\"] !== undefined) {\n contents.SSEKMS = deserializeAws_restXmlSSEKMS(output[\"SSE-KMS\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlInventoryFilter = function (output, context) {\n var contents = {\n Prefix: undefined,\n };\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlInventoryOptionalFields = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_restXmlInventoryS3BucketDestination = function (output, context) {\n var contents = {\n AccountId: undefined,\n Bucket: undefined,\n Format: undefined,\n Prefix: undefined,\n Encryption: undefined,\n };\n if (output[\"AccountId\"] !== undefined) {\n contents.AccountId = output[\"AccountId\"];\n }\n if (output[\"Bucket\"] !== undefined) {\n contents.Bucket = output[\"Bucket\"];\n }\n if (output[\"Format\"] !== undefined) {\n contents.Format = output[\"Format\"];\n }\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n if (output[\"Encryption\"] !== undefined) {\n contents.Encryption = deserializeAws_restXmlInventoryEncryption(output[\"Encryption\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlInventorySchedule = function (output, context) {\n var contents = {\n Frequency: undefined,\n };\n if (output[\"Frequency\"] !== undefined) {\n contents.Frequency = output[\"Frequency\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlLambdaFunctionConfiguration = function (output, context) {\n var contents = {\n Id: undefined,\n LambdaFunctionArn: undefined,\n Events: undefined,\n Filter: undefined,\n };\n if (output[\"Id\"] !== undefined) {\n contents.Id = output[\"Id\"];\n }\n if (output[\"CloudFunction\"] !== undefined) {\n contents.LambdaFunctionArn = output[\"CloudFunction\"];\n }\n if (output.Event === \"\") {\n contents.Events = [];\n }\n if (output[\"Event\"] !== undefined) {\n contents.Events = deserializeAws_restXmlEventList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Event\"]), context);\n }\n if (output[\"Filter\"] !== undefined) {\n contents.Filter = deserializeAws_restXmlNotificationConfigurationFilter(output[\"Filter\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlLambdaFunctionConfigurationList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlLambdaFunctionConfiguration(entry, context);\n });\n};\nvar deserializeAws_restXmlLifecycleExpiration = function (output, context) {\n var contents = {\n Date: undefined,\n Days: undefined,\n ExpiredObjectDeleteMarker: undefined,\n };\n if (output[\"Date\"] !== undefined) {\n contents.Date = new Date(output[\"Date\"]);\n }\n if (output[\"Days\"] !== undefined) {\n contents.Days = parseInt(output[\"Days\"]);\n }\n if (output[\"ExpiredObjectDeleteMarker\"] !== undefined) {\n contents.ExpiredObjectDeleteMarker = output[\"ExpiredObjectDeleteMarker\"] == \"true\";\n }\n return contents;\n};\nvar deserializeAws_restXmlLifecycleRule = function (output, context) {\n var contents = {\n Expiration: undefined,\n ID: undefined,\n Prefix: undefined,\n Filter: undefined,\n Status: undefined,\n Transitions: undefined,\n NoncurrentVersionTransitions: undefined,\n NoncurrentVersionExpiration: undefined,\n AbortIncompleteMultipartUpload: undefined,\n };\n if (output[\"Expiration\"] !== undefined) {\n contents.Expiration = deserializeAws_restXmlLifecycleExpiration(output[\"Expiration\"], context);\n }\n if (output[\"ID\"] !== undefined) {\n contents.ID = output[\"ID\"];\n }\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n if (output[\"Filter\"] !== undefined) {\n contents.Filter = deserializeAws_restXmlLifecycleRuleFilter(output[\"Filter\"], context);\n }\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n if (output.Transition === \"\") {\n contents.Transitions = [];\n }\n if (output[\"Transition\"] !== undefined) {\n contents.Transitions = deserializeAws_restXmlTransitionList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Transition\"]), context);\n }\n if (output.NoncurrentVersionTransition === \"\") {\n contents.NoncurrentVersionTransitions = [];\n }\n if (output[\"NoncurrentVersionTransition\"] !== undefined) {\n contents.NoncurrentVersionTransitions = deserializeAws_restXmlNoncurrentVersionTransitionList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"NoncurrentVersionTransition\"]), context);\n }\n if (output[\"NoncurrentVersionExpiration\"] !== undefined) {\n contents.NoncurrentVersionExpiration = deserializeAws_restXmlNoncurrentVersionExpiration(output[\"NoncurrentVersionExpiration\"], context);\n }\n if (output[\"AbortIncompleteMultipartUpload\"] !== undefined) {\n contents.AbortIncompleteMultipartUpload = deserializeAws_restXmlAbortIncompleteMultipartUpload(output[\"AbortIncompleteMultipartUpload\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlLifecycleRuleAndOperator = function (output, context) {\n var contents = {\n Prefix: undefined,\n Tags: undefined,\n };\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n if (output.Tag === \"\") {\n contents.Tags = [];\n }\n if (output[\"Tag\"] !== undefined) {\n contents.Tags = deserializeAws_restXmlTagSet(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Tag\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlLifecycleRuleFilter = function (output, context) {\n if (output[\"Prefix\"] !== undefined) {\n return {\n Prefix: output[\"Prefix\"],\n };\n }\n if (output[\"Tag\"] !== undefined) {\n return {\n Tag: deserializeAws_restXmlTag(output[\"Tag\"], context),\n };\n }\n if (output[\"And\"] !== undefined) {\n return {\n And: deserializeAws_restXmlLifecycleRuleAndOperator(output[\"And\"], context),\n };\n }\n return { $unknown: Object.entries(output)[0] };\n};\nvar deserializeAws_restXmlLifecycleRules = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlLifecycleRule(entry, context);\n });\n};\nvar deserializeAws_restXmlLoggingEnabled = function (output, context) {\n var contents = {\n TargetBucket: undefined,\n TargetGrants: undefined,\n TargetPrefix: undefined,\n };\n if (output[\"TargetBucket\"] !== undefined) {\n contents.TargetBucket = output[\"TargetBucket\"];\n }\n if (output.TargetGrants === \"\") {\n contents.TargetGrants = [];\n }\n if (output[\"TargetGrants\"] !== undefined && output[\"TargetGrants\"][\"Grant\"] !== undefined) {\n contents.TargetGrants = deserializeAws_restXmlTargetGrants(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"TargetGrants\"][\"Grant\"]), context);\n }\n if (output[\"TargetPrefix\"] !== undefined) {\n contents.TargetPrefix = output[\"TargetPrefix\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlMetrics = function (output, context) {\n var contents = {\n Status: undefined,\n EventThreshold: undefined,\n };\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n if (output[\"EventThreshold\"] !== undefined) {\n contents.EventThreshold = deserializeAws_restXmlReplicationTimeValue(output[\"EventThreshold\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlMetricsAndOperator = function (output, context) {\n var contents = {\n Prefix: undefined,\n Tags: undefined,\n };\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n if (output.Tag === \"\") {\n contents.Tags = [];\n }\n if (output[\"Tag\"] !== undefined) {\n contents.Tags = deserializeAws_restXmlTagSet(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Tag\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlMetricsConfiguration = function (output, context) {\n var contents = {\n Id: undefined,\n Filter: undefined,\n };\n if (output[\"Id\"] !== undefined) {\n contents.Id = output[\"Id\"];\n }\n if (output[\"Filter\"] !== undefined) {\n contents.Filter = deserializeAws_restXmlMetricsFilter(output[\"Filter\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlMetricsConfigurationList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlMetricsConfiguration(entry, context);\n });\n};\nvar deserializeAws_restXmlMetricsFilter = function (output, context) {\n if (output[\"Prefix\"] !== undefined) {\n return {\n Prefix: output[\"Prefix\"],\n };\n }\n if (output[\"Tag\"] !== undefined) {\n return {\n Tag: deserializeAws_restXmlTag(output[\"Tag\"], context),\n };\n }\n if (output[\"And\"] !== undefined) {\n return {\n And: deserializeAws_restXmlMetricsAndOperator(output[\"And\"], context),\n };\n }\n return { $unknown: Object.entries(output)[0] };\n};\nvar deserializeAws_restXmlMultipartUpload = function (output, context) {\n var contents = {\n UploadId: undefined,\n Key: undefined,\n Initiated: undefined,\n StorageClass: undefined,\n Owner: undefined,\n Initiator: undefined,\n };\n if (output[\"UploadId\"] !== undefined) {\n contents.UploadId = output[\"UploadId\"];\n }\n if (output[\"Key\"] !== undefined) {\n contents.Key = output[\"Key\"];\n }\n if (output[\"Initiated\"] !== undefined) {\n contents.Initiated = new Date(output[\"Initiated\"]);\n }\n if (output[\"StorageClass\"] !== undefined) {\n contents.StorageClass = output[\"StorageClass\"];\n }\n if (output[\"Owner\"] !== undefined) {\n contents.Owner = deserializeAws_restXmlOwner(output[\"Owner\"], context);\n }\n if (output[\"Initiator\"] !== undefined) {\n contents.Initiator = deserializeAws_restXmlInitiator(output[\"Initiator\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlMultipartUploadList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlMultipartUpload(entry, context);\n });\n};\nvar deserializeAws_restXmlNoncurrentVersionExpiration = function (output, context) {\n var contents = {\n NoncurrentDays: undefined,\n };\n if (output[\"NoncurrentDays\"] !== undefined) {\n contents.NoncurrentDays = parseInt(output[\"NoncurrentDays\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlNoncurrentVersionTransition = function (output, context) {\n var contents = {\n NoncurrentDays: undefined,\n StorageClass: undefined,\n };\n if (output[\"NoncurrentDays\"] !== undefined) {\n contents.NoncurrentDays = parseInt(output[\"NoncurrentDays\"]);\n }\n if (output[\"StorageClass\"] !== undefined) {\n contents.StorageClass = output[\"StorageClass\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlNoncurrentVersionTransitionList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlNoncurrentVersionTransition(entry, context);\n });\n};\nvar deserializeAws_restXmlNotificationConfigurationFilter = function (output, context) {\n var contents = {\n Key: undefined,\n };\n if (output[\"S3Key\"] !== undefined) {\n contents.Key = deserializeAws_restXmlS3KeyFilter(output[\"S3Key\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXml_Object = function (output, context) {\n var contents = {\n Key: undefined,\n LastModified: undefined,\n ETag: undefined,\n Size: undefined,\n StorageClass: undefined,\n Owner: undefined,\n };\n if (output[\"Key\"] !== undefined) {\n contents.Key = output[\"Key\"];\n }\n if (output[\"LastModified\"] !== undefined) {\n contents.LastModified = new Date(output[\"LastModified\"]);\n }\n if (output[\"ETag\"] !== undefined) {\n contents.ETag = output[\"ETag\"];\n }\n if (output[\"Size\"] !== undefined) {\n contents.Size = parseInt(output[\"Size\"]);\n }\n if (output[\"StorageClass\"] !== undefined) {\n contents.StorageClass = output[\"StorageClass\"];\n }\n if (output[\"Owner\"] !== undefined) {\n contents.Owner = deserializeAws_restXmlOwner(output[\"Owner\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlObjectList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXml_Object(entry, context);\n });\n};\nvar deserializeAws_restXmlObjectLockConfiguration = function (output, context) {\n var contents = {\n ObjectLockEnabled: undefined,\n Rule: undefined,\n };\n if (output[\"ObjectLockEnabled\"] !== undefined) {\n contents.ObjectLockEnabled = output[\"ObjectLockEnabled\"];\n }\n if (output[\"Rule\"] !== undefined) {\n contents.Rule = deserializeAws_restXmlObjectLockRule(output[\"Rule\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlObjectLockLegalHold = function (output, context) {\n var contents = {\n Status: undefined,\n };\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlObjectLockRetention = function (output, context) {\n var contents = {\n Mode: undefined,\n RetainUntilDate: undefined,\n };\n if (output[\"Mode\"] !== undefined) {\n contents.Mode = output[\"Mode\"];\n }\n if (output[\"RetainUntilDate\"] !== undefined) {\n contents.RetainUntilDate = new Date(output[\"RetainUntilDate\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlObjectLockRule = function (output, context) {\n var contents = {\n DefaultRetention: undefined,\n };\n if (output[\"DefaultRetention\"] !== undefined) {\n contents.DefaultRetention = deserializeAws_restXmlDefaultRetention(output[\"DefaultRetention\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlObjectVersion = function (output, context) {\n var contents = {\n ETag: undefined,\n Size: undefined,\n StorageClass: undefined,\n Key: undefined,\n VersionId: undefined,\n IsLatest: undefined,\n LastModified: undefined,\n Owner: undefined,\n };\n if (output[\"ETag\"] !== undefined) {\n contents.ETag = output[\"ETag\"];\n }\n if (output[\"Size\"] !== undefined) {\n contents.Size = parseInt(output[\"Size\"]);\n }\n if (output[\"StorageClass\"] !== undefined) {\n contents.StorageClass = output[\"StorageClass\"];\n }\n if (output[\"Key\"] !== undefined) {\n contents.Key = output[\"Key\"];\n }\n if (output[\"VersionId\"] !== undefined) {\n contents.VersionId = output[\"VersionId\"];\n }\n if (output[\"IsLatest\"] !== undefined) {\n contents.IsLatest = output[\"IsLatest\"] == \"true\";\n }\n if (output[\"LastModified\"] !== undefined) {\n contents.LastModified = new Date(output[\"LastModified\"]);\n }\n if (output[\"Owner\"] !== undefined) {\n contents.Owner = deserializeAws_restXmlOwner(output[\"Owner\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlObjectVersionList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlObjectVersion(entry, context);\n });\n};\nvar deserializeAws_restXmlOwner = function (output, context) {\n var contents = {\n DisplayName: undefined,\n ID: undefined,\n };\n if (output[\"DisplayName\"] !== undefined) {\n contents.DisplayName = output[\"DisplayName\"];\n }\n if (output[\"ID\"] !== undefined) {\n contents.ID = output[\"ID\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlOwnershipControls = function (output, context) {\n var contents = {\n Rules: undefined,\n };\n if (output.Rule === \"\") {\n contents.Rules = [];\n }\n if (output[\"Rule\"] !== undefined) {\n contents.Rules = deserializeAws_restXmlOwnershipControlsRules(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Rule\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlOwnershipControlsRule = function (output, context) {\n var contents = {\n ObjectOwnership: undefined,\n };\n if (output[\"ObjectOwnership\"] !== undefined) {\n contents.ObjectOwnership = output[\"ObjectOwnership\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlOwnershipControlsRules = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlOwnershipControlsRule(entry, context);\n });\n};\nvar deserializeAws_restXmlPart = function (output, context) {\n var contents = {\n PartNumber: undefined,\n LastModified: undefined,\n ETag: undefined,\n Size: undefined,\n };\n if (output[\"PartNumber\"] !== undefined) {\n contents.PartNumber = parseInt(output[\"PartNumber\"]);\n }\n if (output[\"LastModified\"] !== undefined) {\n contents.LastModified = new Date(output[\"LastModified\"]);\n }\n if (output[\"ETag\"] !== undefined) {\n contents.ETag = output[\"ETag\"];\n }\n if (output[\"Size\"] !== undefined) {\n contents.Size = parseInt(output[\"Size\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlParts = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlPart(entry, context);\n });\n};\nvar deserializeAws_restXmlPolicyStatus = function (output, context) {\n var contents = {\n IsPublic: undefined,\n };\n if (output[\"IsPublic\"] !== undefined) {\n contents.IsPublic = output[\"IsPublic\"] == \"true\";\n }\n return contents;\n};\nvar deserializeAws_restXmlPublicAccessBlockConfiguration = function (output, context) {\n var contents = {\n BlockPublicAcls: undefined,\n IgnorePublicAcls: undefined,\n BlockPublicPolicy: undefined,\n RestrictPublicBuckets: undefined,\n };\n if (output[\"BlockPublicAcls\"] !== undefined) {\n contents.BlockPublicAcls = output[\"BlockPublicAcls\"] == \"true\";\n }\n if (output[\"IgnorePublicAcls\"] !== undefined) {\n contents.IgnorePublicAcls = output[\"IgnorePublicAcls\"] == \"true\";\n }\n if (output[\"BlockPublicPolicy\"] !== undefined) {\n contents.BlockPublicPolicy = output[\"BlockPublicPolicy\"] == \"true\";\n }\n if (output[\"RestrictPublicBuckets\"] !== undefined) {\n contents.RestrictPublicBuckets = output[\"RestrictPublicBuckets\"] == \"true\";\n }\n return contents;\n};\nvar deserializeAws_restXmlQueueConfiguration = function (output, context) {\n var contents = {\n Id: undefined,\n QueueArn: undefined,\n Events: undefined,\n Filter: undefined,\n };\n if (output[\"Id\"] !== undefined) {\n contents.Id = output[\"Id\"];\n }\n if (output[\"Queue\"] !== undefined) {\n contents.QueueArn = output[\"Queue\"];\n }\n if (output.Event === \"\") {\n contents.Events = [];\n }\n if (output[\"Event\"] !== undefined) {\n contents.Events = deserializeAws_restXmlEventList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Event\"]), context);\n }\n if (output[\"Filter\"] !== undefined) {\n contents.Filter = deserializeAws_restXmlNotificationConfigurationFilter(output[\"Filter\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlQueueConfigurationList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlQueueConfiguration(entry, context);\n });\n};\nvar deserializeAws_restXmlRedirect = function (output, context) {\n var contents = {\n HostName: undefined,\n HttpRedirectCode: undefined,\n Protocol: undefined,\n ReplaceKeyPrefixWith: undefined,\n ReplaceKeyWith: undefined,\n };\n if (output[\"HostName\"] !== undefined) {\n contents.HostName = output[\"HostName\"];\n }\n if (output[\"HttpRedirectCode\"] !== undefined) {\n contents.HttpRedirectCode = output[\"HttpRedirectCode\"];\n }\n if (output[\"Protocol\"] !== undefined) {\n contents.Protocol = output[\"Protocol\"];\n }\n if (output[\"ReplaceKeyPrefixWith\"] !== undefined) {\n contents.ReplaceKeyPrefixWith = output[\"ReplaceKeyPrefixWith\"];\n }\n if (output[\"ReplaceKeyWith\"] !== undefined) {\n contents.ReplaceKeyWith = output[\"ReplaceKeyWith\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlRedirectAllRequestsTo = function (output, context) {\n var contents = {\n HostName: undefined,\n Protocol: undefined,\n };\n if (output[\"HostName\"] !== undefined) {\n contents.HostName = output[\"HostName\"];\n }\n if (output[\"Protocol\"] !== undefined) {\n contents.Protocol = output[\"Protocol\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlReplicaModifications = function (output, context) {\n var contents = {\n Status: undefined,\n };\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlReplicationConfiguration = function (output, context) {\n var contents = {\n Role: undefined,\n Rules: undefined,\n };\n if (output[\"Role\"] !== undefined) {\n contents.Role = output[\"Role\"];\n }\n if (output.Rule === \"\") {\n contents.Rules = [];\n }\n if (output[\"Rule\"] !== undefined) {\n contents.Rules = deserializeAws_restXmlReplicationRules(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Rule\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlReplicationRule = function (output, context) {\n var contents = {\n ID: undefined,\n Priority: undefined,\n Prefix: undefined,\n Filter: undefined,\n Status: undefined,\n SourceSelectionCriteria: undefined,\n ExistingObjectReplication: undefined,\n Destination: undefined,\n DeleteMarkerReplication: undefined,\n };\n if (output[\"ID\"] !== undefined) {\n contents.ID = output[\"ID\"];\n }\n if (output[\"Priority\"] !== undefined) {\n contents.Priority = parseInt(output[\"Priority\"]);\n }\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n if (output[\"Filter\"] !== undefined) {\n contents.Filter = deserializeAws_restXmlReplicationRuleFilter(output[\"Filter\"], context);\n }\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n if (output[\"SourceSelectionCriteria\"] !== undefined) {\n contents.SourceSelectionCriteria = deserializeAws_restXmlSourceSelectionCriteria(output[\"SourceSelectionCriteria\"], context);\n }\n if (output[\"ExistingObjectReplication\"] !== undefined) {\n contents.ExistingObjectReplication = deserializeAws_restXmlExistingObjectReplication(output[\"ExistingObjectReplication\"], context);\n }\n if (output[\"Destination\"] !== undefined) {\n contents.Destination = deserializeAws_restXmlDestination(output[\"Destination\"], context);\n }\n if (output[\"DeleteMarkerReplication\"] !== undefined) {\n contents.DeleteMarkerReplication = deserializeAws_restXmlDeleteMarkerReplication(output[\"DeleteMarkerReplication\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlReplicationRuleAndOperator = function (output, context) {\n var contents = {\n Prefix: undefined,\n Tags: undefined,\n };\n if (output[\"Prefix\"] !== undefined) {\n contents.Prefix = output[\"Prefix\"];\n }\n if (output.Tag === \"\") {\n contents.Tags = [];\n }\n if (output[\"Tag\"] !== undefined) {\n contents.Tags = deserializeAws_restXmlTagSet(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Tag\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlReplicationRuleFilter = function (output, context) {\n if (output[\"Prefix\"] !== undefined) {\n return {\n Prefix: output[\"Prefix\"],\n };\n }\n if (output[\"Tag\"] !== undefined) {\n return {\n Tag: deserializeAws_restXmlTag(output[\"Tag\"], context),\n };\n }\n if (output[\"And\"] !== undefined) {\n return {\n And: deserializeAws_restXmlReplicationRuleAndOperator(output[\"And\"], context),\n };\n }\n return { $unknown: Object.entries(output)[0] };\n};\nvar deserializeAws_restXmlReplicationRules = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlReplicationRule(entry, context);\n });\n};\nvar deserializeAws_restXmlReplicationTime = function (output, context) {\n var contents = {\n Status: undefined,\n Time: undefined,\n };\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n if (output[\"Time\"] !== undefined) {\n contents.Time = deserializeAws_restXmlReplicationTimeValue(output[\"Time\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlReplicationTimeValue = function (output, context) {\n var contents = {\n Minutes: undefined,\n };\n if (output[\"Minutes\"] !== undefined) {\n contents.Minutes = parseInt(output[\"Minutes\"]);\n }\n return contents;\n};\nvar deserializeAws_restXmlRoutingRule = function (output, context) {\n var contents = {\n Condition: undefined,\n Redirect: undefined,\n };\n if (output[\"Condition\"] !== undefined) {\n contents.Condition = deserializeAws_restXmlCondition(output[\"Condition\"], context);\n }\n if (output[\"Redirect\"] !== undefined) {\n contents.Redirect = deserializeAws_restXmlRedirect(output[\"Redirect\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlRoutingRules = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlRoutingRule(entry, context);\n });\n};\nvar deserializeAws_restXmlS3KeyFilter = function (output, context) {\n var contents = {\n FilterRules: undefined,\n };\n if (output.FilterRule === \"\") {\n contents.FilterRules = [];\n }\n if (output[\"FilterRule\"] !== undefined) {\n contents.FilterRules = deserializeAws_restXmlFilterRuleList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"FilterRule\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlServerSideEncryptionByDefault = function (output, context) {\n var contents = {\n SSEAlgorithm: undefined,\n KMSMasterKeyID: undefined,\n };\n if (output[\"SSEAlgorithm\"] !== undefined) {\n contents.SSEAlgorithm = output[\"SSEAlgorithm\"];\n }\n if (output[\"KMSMasterKeyID\"] !== undefined) {\n contents.KMSMasterKeyID = output[\"KMSMasterKeyID\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlServerSideEncryptionConfiguration = function (output, context) {\n var contents = {\n Rules: undefined,\n };\n if (output.Rule === \"\") {\n contents.Rules = [];\n }\n if (output[\"Rule\"] !== undefined) {\n contents.Rules = deserializeAws_restXmlServerSideEncryptionRules(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Rule\"]), context);\n }\n return contents;\n};\nvar deserializeAws_restXmlServerSideEncryptionRule = function (output, context) {\n var contents = {\n ApplyServerSideEncryptionByDefault: undefined,\n BucketKeyEnabled: undefined,\n };\n if (output[\"ApplyServerSideEncryptionByDefault\"] !== undefined) {\n contents.ApplyServerSideEncryptionByDefault = deserializeAws_restXmlServerSideEncryptionByDefault(output[\"ApplyServerSideEncryptionByDefault\"], context);\n }\n if (output[\"BucketKeyEnabled\"] !== undefined) {\n contents.BucketKeyEnabled = output[\"BucketKeyEnabled\"] == \"true\";\n }\n return contents;\n};\nvar deserializeAws_restXmlServerSideEncryptionRules = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlServerSideEncryptionRule(entry, context);\n });\n};\nvar deserializeAws_restXmlSourceSelectionCriteria = function (output, context) {\n var contents = {\n SseKmsEncryptedObjects: undefined,\n ReplicaModifications: undefined,\n };\n if (output[\"SseKmsEncryptedObjects\"] !== undefined) {\n contents.SseKmsEncryptedObjects = deserializeAws_restXmlSseKmsEncryptedObjects(output[\"SseKmsEncryptedObjects\"], context);\n }\n if (output[\"ReplicaModifications\"] !== undefined) {\n contents.ReplicaModifications = deserializeAws_restXmlReplicaModifications(output[\"ReplicaModifications\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlSSEKMS = function (output, context) {\n var contents = {\n KeyId: undefined,\n };\n if (output[\"KeyId\"] !== undefined) {\n contents.KeyId = output[\"KeyId\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlSseKmsEncryptedObjects = function (output, context) {\n var contents = {\n Status: undefined,\n };\n if (output[\"Status\"] !== undefined) {\n contents.Status = output[\"Status\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlSSES3 = function (output, context) {\n var contents = {};\n return contents;\n};\nvar deserializeAws_restXmlStorageClassAnalysis = function (output, context) {\n var contents = {\n DataExport: undefined,\n };\n if (output[\"DataExport\"] !== undefined) {\n contents.DataExport = deserializeAws_restXmlStorageClassAnalysisDataExport(output[\"DataExport\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlStorageClassAnalysisDataExport = function (output, context) {\n var contents = {\n OutputSchemaVersion: undefined,\n Destination: undefined,\n };\n if (output[\"OutputSchemaVersion\"] !== undefined) {\n contents.OutputSchemaVersion = output[\"OutputSchemaVersion\"];\n }\n if (output[\"Destination\"] !== undefined) {\n contents.Destination = deserializeAws_restXmlAnalyticsExportDestination(output[\"Destination\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlTag = function (output, context) {\n var contents = {\n Key: undefined,\n Value: undefined,\n };\n if (output[\"Key\"] !== undefined) {\n contents.Key = output[\"Key\"];\n }\n if (output[\"Value\"] !== undefined) {\n contents.Value = output[\"Value\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlTagSet = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlTag(entry, context);\n });\n};\nvar deserializeAws_restXmlTargetGrant = function (output, context) {\n var contents = {\n Grantee: undefined,\n Permission: undefined,\n };\n if (output[\"Grantee\"] !== undefined) {\n contents.Grantee = deserializeAws_restXmlGrantee(output[\"Grantee\"], context);\n }\n if (output[\"Permission\"] !== undefined) {\n contents.Permission = output[\"Permission\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlTargetGrants = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlTargetGrant(entry, context);\n });\n};\nvar deserializeAws_restXmlTiering = function (output, context) {\n var contents = {\n Days: undefined,\n AccessTier: undefined,\n };\n if (output[\"Days\"] !== undefined) {\n contents.Days = parseInt(output[\"Days\"]);\n }\n if (output[\"AccessTier\"] !== undefined) {\n contents.AccessTier = output[\"AccessTier\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlTieringList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlTiering(entry, context);\n });\n};\nvar deserializeAws_restXmlTopicConfiguration = function (output, context) {\n var contents = {\n Id: undefined,\n TopicArn: undefined,\n Events: undefined,\n Filter: undefined,\n };\n if (output[\"Id\"] !== undefined) {\n contents.Id = output[\"Id\"];\n }\n if (output[\"Topic\"] !== undefined) {\n contents.TopicArn = output[\"Topic\"];\n }\n if (output.Event === \"\") {\n contents.Events = [];\n }\n if (output[\"Event\"] !== undefined) {\n contents.Events = deserializeAws_restXmlEventList(Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getArrayIfSingleItem\"])(output[\"Event\"]), context);\n }\n if (output[\"Filter\"] !== undefined) {\n contents.Filter = deserializeAws_restXmlNotificationConfigurationFilter(output[\"Filter\"], context);\n }\n return contents;\n};\nvar deserializeAws_restXmlTopicConfigurationList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlTopicConfiguration(entry, context);\n });\n};\nvar deserializeAws_restXmlTransition = function (output, context) {\n var contents = {\n Date: undefined,\n Days: undefined,\n StorageClass: undefined,\n };\n if (output[\"Date\"] !== undefined) {\n contents.Date = new Date(output[\"Date\"]);\n }\n if (output[\"Days\"] !== undefined) {\n contents.Days = parseInt(output[\"Days\"]);\n }\n if (output[\"StorageClass\"] !== undefined) {\n contents.StorageClass = output[\"StorageClass\"];\n }\n return contents;\n};\nvar deserializeAws_restXmlTransitionList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_restXmlTransition(entry, context);\n });\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar isSerializableHeaderValue = function (value) {\n return value !== undefined &&\n value !== null &&\n value !== \"\" &&\n (!Object.getOwnPropertyNames(value).includes(\"length\") || value.length != 0) &&\n (!Object.getOwnPropertyNames(value).includes(\"size\") || value.size != 0);\n};\nvar decodeEscapedXML = function (str) {\n return str\n .replace(/&/g, \"&\")\n .replace(/'/g, \"'\")\n .replace(/"/g, '\"')\n .replace(/>/g, \">\")\n .replace(/</g, \"<\");\n};\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n var parsedObj = Object(fast_xml_parser__WEBPACK_IMPORTED_MODULE_5__[\"parse\"])(encoded, {\n attributeNamePrefix: \"\",\n ignoreAttributes: false,\n parseNodeValue: false,\n tagValueProcessor: function (val, tagName) { return decodeEscapedXML(val); },\n });\n var textNodeName = \"#text\";\n var key = Object.keys(parsedObj)[0];\n var parsedObjToReturn = parsedObj[key];\n if (parsedObjToReturn[textNodeName]) {\n parsedObjToReturn[key] = parsedObjToReturn[textNodeName];\n delete parsedObjToReturn[textNodeName];\n }\n return Object(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_3__[\"getValueFromTextNode\"])(parsedObjToReturn);\n }\n return {};\n });\n};\nvar loadRestXmlErrorCode = function (output, data) {\n if (data.Code !== undefined) {\n return data.Code;\n }\n if (output.statusCode == 404) {\n return \"NotFound\";\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_restXml.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/protocols/Aws_restXml.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/runtimeConfig.browser.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/runtimeConfig.browser.js ***! \**************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-s3/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-s3/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_eventstream_serde_browser__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/eventstream-serde-browser */ \"./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_hash_blob_browser__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/hash-blob-browser */ \"./node_modules/@aws-sdk/hash-blob-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_md5_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/md5-js */ \"./node_modules/@aws-sdk/md5-js/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-s3/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_13__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_9__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_10__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_11__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_13__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), eventStreamSerdeProvider: _aws_sdk_eventstream_serde_browser__WEBPACK_IMPORTED_MODULE_3__[\"eventStreamSerdeProvider\"], maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_8__[\"DEFAULT_MAX_ATTEMPTS\"], md5: _aws_sdk_md5_js__WEBPACK_IMPORTED_MODULE_7__[\"Md5\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_6__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_4__[\"streamCollector\"],\n streamHasher: _aws_sdk_hash_blob_browser__WEBPACK_IMPORTED_MODULE_5__[\"blobHasher\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_12__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_12__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/runtimeConfig.shared.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/runtimeConfig.shared.js ***! \*************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-s3/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2006-03-01\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"S3\",\n signingEscapePath: false,\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n useArnRegion: false,\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/waiters/waitForBucketExists.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/waiters/waitForBucketExists.js ***! \********************************************************************************/ /*! exports provided: waitForBucketExists */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"waitForBucketExists\", function() { return waitForBucketExists; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_HeadBucketCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/HeadBucketCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadBucketCommand.js\");\n/* harmony import */ var _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-waiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/index.js\");\n\n\n\nvar checkState = function (client, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var result, exception_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, client.send(new _commands_HeadBucketCommand__WEBPACK_IMPORTED_MODULE_1__[\"HeadBucketCommand\"](input))];\n case 1:\n result = _a.sent();\n return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].SUCCESS }];\n case 2:\n exception_1 = _a.sent();\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].RETRY }];\n }\n });\n}); };\n/**\n *\n * @param params : Waiter configuration options.\n * @param input : the input to HeadBucketCommand for polling.\n */\nvar waitForBucketExists = function (params, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var serviceDefaults;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n serviceDefaults = { minDelay: 5, maxDelay: 120 };\n return [2 /*return*/, Object(_aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"createWaiter\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, serviceDefaults), params), input, checkState)];\n });\n}); };\n//# sourceMappingURL=waitForBucketExists.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/waiters/waitForBucketExists.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/dist/es/waiters/waitForObjectExists.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/dist/es/waiters/waitForObjectExists.js ***! \********************************************************************************/ /*! exports provided: waitForObjectExists */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"waitForObjectExists\", function() { return waitForObjectExists; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _commands_HeadObjectCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/HeadObjectCommand */ \"./node_modules/@aws-sdk/client-s3/dist/es/commands/HeadObjectCommand.js\");\n/* harmony import */ var _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-waiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/index.js\");\n\n\n\nvar checkState = function (client, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var result, exception_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, client.send(new _commands_HeadObjectCommand__WEBPACK_IMPORTED_MODULE_1__[\"HeadObjectCommand\"](input))];\n case 1:\n result = _a.sent();\n return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].SUCCESS }];\n case 2:\n exception_1 = _a.sent();\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/, { state: _aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].RETRY }];\n }\n });\n}); };\n/**\n *\n * @param params : Waiter configuration options.\n * @param input : the input to HeadObjectCommand for polling.\n */\nvar waitForObjectExists = function (params, input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var serviceDefaults;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n serviceDefaults = { minDelay: 5, maxDelay: 120 };\n return [2 /*return*/, Object(_aws_sdk_util_waiter__WEBPACK_IMPORTED_MODULE_2__[\"createWaiter\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, serviceDefaults), params), input, checkState)];\n });\n}); };\n//# sourceMappingURL=waitForObjectExists.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/dist/es/waiters/waitForObjectExists.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js ***! \*************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-s3/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/Textract.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/Textract.js ***! \*******************************************************************/ /*! exports provided: Textract */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Textract\", function() { return Textract; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _TextractClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./TextractClient */ \"./node_modules/@aws-sdk/client-textract/dist/es/TextractClient.js\");\n/* harmony import */ var _commands_AnalyzeDocumentCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/AnalyzeDocumentCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/AnalyzeDocumentCommand.js\");\n/* harmony import */ var _commands_DetectDocumentTextCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DetectDocumentTextCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/DetectDocumentTextCommand.js\");\n/* harmony import */ var _commands_GetDocumentAnalysisCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/GetDocumentAnalysisCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentAnalysisCommand.js\");\n/* harmony import */ var _commands_GetDocumentTextDetectionCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/GetDocumentTextDetectionCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentTextDetectionCommand.js\");\n/* harmony import */ var _commands_StartDocumentAnalysisCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/StartDocumentAnalysisCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentAnalysisCommand.js\");\n/* harmony import */ var _commands_StartDocumentTextDetectionCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/StartDocumentTextDetectionCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentTextDetectionCommand.js\");\n\n\n\n\n\n\n\n\n/**\n *

Amazon Textract detects and analyzes text in documents and converts it\n * into machine-readable text. This is the API reference documentation for\n * Amazon Textract.

\n */\nvar Textract = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(Textract, _super);\n function Textract() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Textract.prototype.analyzeDocument = function (args, optionsOrCb, cb) {\n var command = new _commands_AnalyzeDocumentCommand__WEBPACK_IMPORTED_MODULE_2__[\"AnalyzeDocumentCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Textract.prototype.detectDocumentText = function (args, optionsOrCb, cb) {\n var command = new _commands_DetectDocumentTextCommand__WEBPACK_IMPORTED_MODULE_3__[\"DetectDocumentTextCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Textract.prototype.getDocumentAnalysis = function (args, optionsOrCb, cb) {\n var command = new _commands_GetDocumentAnalysisCommand__WEBPACK_IMPORTED_MODULE_4__[\"GetDocumentAnalysisCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Textract.prototype.getDocumentTextDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_GetDocumentTextDetectionCommand__WEBPACK_IMPORTED_MODULE_5__[\"GetDocumentTextDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Textract.prototype.startDocumentAnalysis = function (args, optionsOrCb, cb) {\n var command = new _commands_StartDocumentAnalysisCommand__WEBPACK_IMPORTED_MODULE_6__[\"StartDocumentAnalysisCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Textract.prototype.startDocumentTextDetection = function (args, optionsOrCb, cb) {\n var command = new _commands_StartDocumentTextDetectionCommand__WEBPACK_IMPORTED_MODULE_7__[\"StartDocumentTextDetectionCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return Textract;\n}(_TextractClient__WEBPACK_IMPORTED_MODULE_1__[\"TextractClient\"]));\n\n//# sourceMappingURL=Textract.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/Textract.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/TextractClient.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/TextractClient.js ***! \*************************************************************************/ /*! exports provided: TextractClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextractClient\", function() { return TextractClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-textract/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n *

Amazon Textract detects and analyzes text in documents and converts it\n * into machine-readable text. This is the API reference documentation for\n * Amazon Textract.

\n */\nvar TextractClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TextractClient, _super);\n function TextractClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n TextractClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return TextractClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=TextractClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/TextractClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/commands/AnalyzeDocumentCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/commands/AnalyzeDocumentCommand.js ***! \******************************************************************************************/ /*! exports provided: AnalyzeDocumentCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnalyzeDocumentCommand\", function() { return AnalyzeDocumentCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-textract/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Analyzes an input document for relationships between detected items.

\n *

The types of information returned are as follows:

\n *
    \n *
  • \n *

    Form data (key-value pairs). The related information is returned in two Block objects, each of type KEY_VALUE_SET: a KEY\n * Block object and a VALUE Block object. For example,\n * Name: Ana Silva Carolina contains a key and value.\n * Name: is the key. Ana Silva Carolina is\n * the value.

    \n *
  • \n *
  • \n *

    Table and table cell data. A TABLE Block object contains information about a detected table. A CELL\n * Block object is returned for each cell in a table.

    \n *
  • \n *
  • \n *

    Lines and words of text. A LINE Block object contains one or more WORD Block objects.\n * All lines and words that are detected in the document are returned (including text that doesn't have a\n * relationship with the value of FeatureTypes).

    \n *
  • \n *
\n *\n *

Selection elements such as check boxes and option buttons (radio buttons) can be detected in form data and in tables.\n * A SELECTION_ELEMENT Block object contains information about a selection element,\n * including the selection status.

\n *

You can choose which type of analysis to perform by specifying the FeatureTypes list.\n *

\n *

The output is returned in a list of Block objects.

\n *

\n * AnalyzeDocument is a synchronous operation. To analyze documents\n * asynchronously, use StartDocumentAnalysis.

\n *

For more information, see Document Text Analysis.

\n */\nvar AnalyzeDocumentCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(AnalyzeDocumentCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function AnalyzeDocumentCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n AnalyzeDocumentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TextractClient\";\n var commandName = \"AnalyzeDocumentCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"AnalyzeDocumentRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"AnalyzeDocumentResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n AnalyzeDocumentCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1AnalyzeDocumentCommand\"])(input, context);\n };\n AnalyzeDocumentCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1AnalyzeDocumentCommand\"])(output, context);\n };\n return AnalyzeDocumentCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=AnalyzeDocumentCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/commands/AnalyzeDocumentCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/commands/DetectDocumentTextCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/commands/DetectDocumentTextCommand.js ***! \*********************************************************************************************/ /*! exports provided: DetectDocumentTextCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectDocumentTextCommand\", function() { return DetectDocumentTextCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-textract/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Detects text in the input document. Amazon Textract can detect lines of text and the\n * words that make up a line of text. The input document must be an image in JPEG or PNG\n * format. DetectDocumentText returns the detected text in an array of Block objects.

\n *

Each document page has as an associated Block of type PAGE. Each PAGE Block object\n * is the parent of LINE Block objects that represent the lines of detected text on a page. A LINE Block object is\n * a parent for each word that makes up the line. Words are represented by Block objects of type WORD.

\n *\n *

\n * DetectDocumentText is a synchronous operation. To analyze documents\n * asynchronously, use StartDocumentTextDetection.

\n *

For more information, see Document Text Detection.

\n */\nvar DetectDocumentTextCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DetectDocumentTextCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DetectDocumentTextCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DetectDocumentTextCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TextractClient\";\n var commandName = \"DetectDocumentTextCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectDocumentTextRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DetectDocumentTextResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DetectDocumentTextCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DetectDocumentTextCommand\"])(input, context);\n };\n DetectDocumentTextCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DetectDocumentTextCommand\"])(output, context);\n };\n return DetectDocumentTextCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DetectDocumentTextCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/commands/DetectDocumentTextCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentAnalysisCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentAnalysisCommand.js ***! \**********************************************************************************************/ /*! exports provided: GetDocumentAnalysisCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentAnalysisCommand\", function() { return GetDocumentAnalysisCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-textract/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the results for an Amazon Textract asynchronous operation that analyzes text in a document.

\n *

You start asynchronous text analysis by calling StartDocumentAnalysis, which returns a job identifier\n * (JobId). When the text analysis operation finishes, Amazon Textract publishes a\n * completion status to the Amazon Simple Notification Service (Amazon SNS) topic that's registered in the initial call to\n * StartDocumentAnalysis. To get the results of the text-detection operation,\n * first check that the status value published to the Amazon SNS topic is SUCCEEDED.\n * If so, call GetDocumentAnalysis, and pass the job identifier\n * (JobId) from the initial call to StartDocumentAnalysis.

\n *

\n * GetDocumentAnalysis returns an array of Block objects. The following\n * types of information are returned:

\n *
    \n *
  • \n *

    Form data (key-value pairs). The related information is returned in two Block objects, each of type KEY_VALUE_SET: a KEY\n * Block object and a VALUE Block object. For example,\n * Name: Ana Silva Carolina contains a key and value.\n * Name: is the key. Ana Silva Carolina is\n * the value.

    \n *
  • \n *
  • \n *

    Table and table cell data. A TABLE Block object contains information about a detected table. A CELL\n * Block object is returned for each cell in a table.

    \n *
  • \n *
  • \n *

    Lines and words of text. A LINE Block object contains one or more WORD Block objects.\n * All lines and words that are detected in the document are returned (including text that doesn't have a\n * relationship with the value of the StartDocumentAnalysis\n * FeatureTypes input parameter).

    \n *
  • \n *
\n *\n *

Selection elements such as check boxes and option buttons (radio buttons) can be detected in form data and in tables.\n * A SELECTION_ELEMENT Block object contains information about a selection element,\n * including the selection status.

\n *\n *\n *\n *

Use the MaxResults parameter to limit the number of blocks that are\n * returned. If there are more results than specified in MaxResults, the value of\n * NextToken in the operation response contains a pagination token for getting\n * the next set of results. To get the next page of results, call\n * GetDocumentAnalysis, and populate the NextToken request\n * parameter with the token value that's returned from the previous call to\n * GetDocumentAnalysis.

\n *

For more information, see Document Text Analysis.

\n */\nvar GetDocumentAnalysisCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetDocumentAnalysisCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetDocumentAnalysisCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetDocumentAnalysisCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TextractClient\";\n var commandName = \"GetDocumentAnalysisCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetDocumentAnalysisRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetDocumentAnalysisResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetDocumentAnalysisCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetDocumentAnalysisCommand\"])(input, context);\n };\n GetDocumentAnalysisCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetDocumentAnalysisCommand\"])(output, context);\n };\n return GetDocumentAnalysisCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetDocumentAnalysisCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentAnalysisCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentTextDetectionCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentTextDetectionCommand.js ***! \***************************************************************************************************/ /*! exports provided: GetDocumentTextDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentTextDetectionCommand\", function() { return GetDocumentTextDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-textract/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the results for an Amazon Textract asynchronous operation that detects text in a document.\n * Amazon Textract can detect lines of text and the words that make up a line of text.

\n *

You start asynchronous text detection by calling StartDocumentTextDetection, which returns a job identifier\n * (JobId). When the text detection operation finishes, Amazon Textract publishes a\n * completion status to the Amazon Simple Notification Service (Amazon SNS) topic that's registered in the initial call to\n * StartDocumentTextDetection. To get the results of the text-detection\n * operation, first check that the status value published to the Amazon SNS topic is\n * SUCCEEDED. If so, call GetDocumentTextDetection, and pass the\n * job identifier (JobId) from the initial call to\n * StartDocumentTextDetection.

\n *

\n * GetDocumentTextDetection returns an array of Block\n * objects.

\n *

Each document page has as an associated Block of type PAGE. Each PAGE Block object\n * is the parent of LINE Block objects that represent the lines of detected text on a page. A LINE Block object is\n * a parent for each word that makes up the line. Words are represented by Block objects of type WORD.

\n *\n *

Use the MaxResults parameter to limit the number of blocks that are returned. If there\n * are more results than specified in MaxResults, the value of\n * NextToken in the operation response contains a pagination token for getting\n * the next set of results. To get the next page of results, call\n * GetDocumentTextDetection, and populate the NextToken request\n * parameter with the token value that's returned from the previous call to\n * GetDocumentTextDetection.

\n *

For more information, see Document Text Detection.

\n */\nvar GetDocumentTextDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetDocumentTextDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetDocumentTextDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetDocumentTextDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TextractClient\";\n var commandName = \"GetDocumentTextDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetDocumentTextDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetDocumentTextDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetDocumentTextDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetDocumentTextDetectionCommand\"])(input, context);\n };\n GetDocumentTextDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetDocumentTextDetectionCommand\"])(output, context);\n };\n return GetDocumentTextDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetDocumentTextDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentTextDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentAnalysisCommand.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentAnalysisCommand.js ***! \************************************************************************************************/ /*! exports provided: StartDocumentAnalysisCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentAnalysisCommand\", function() { return StartDocumentAnalysisCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-textract/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts the asynchronous analysis of an input document for relationships between detected\n * items such as key-value pairs, tables, and selection elements.

\n *\n *

\n * StartDocumentAnalysis can analyze text in documents that are in JPEG, PNG, and PDF format. The\n * documents are stored in an Amazon S3 bucket. Use DocumentLocation to specify the bucket name and file name\n * of the document.\n *

\n *

\n * StartDocumentAnalysis returns a job identifier\n * (JobId) that you use to get the results of the operation. When text\n * analysis is finished, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS)\n * topic that you specify in NotificationChannel. To get the results of the text\n * analysis operation, first check that the status value published to the Amazon SNS topic is\n * SUCCEEDED. If so, call GetDocumentAnalysis, and pass\n * the job identifier (JobId) from the initial call to\n * StartDocumentAnalysis.

\n *

For more information, see Document Text Analysis.

\n */\nvar StartDocumentAnalysisCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartDocumentAnalysisCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartDocumentAnalysisCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartDocumentAnalysisCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TextractClient\";\n var commandName = \"StartDocumentAnalysisCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDocumentAnalysisRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDocumentAnalysisResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartDocumentAnalysisCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartDocumentAnalysisCommand\"])(input, context);\n };\n StartDocumentAnalysisCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartDocumentAnalysisCommand\"])(output, context);\n };\n return StartDocumentAnalysisCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartDocumentAnalysisCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentAnalysisCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentTextDetectionCommand.js": /*!*****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentTextDetectionCommand.js ***! \*****************************************************************************************************/ /*! exports provided: StartDocumentTextDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentTextDetectionCommand\", function() { return StartDocumentTextDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-textract/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts the asynchronous detection of text in a document. Amazon Textract can detect lines of\n * text and the words that make up a line of text.

\n *

\n * StartDocumentTextDetection can analyze text in documents that are in JPEG, PNG, and PDF format. The\n * documents are stored in an Amazon S3 bucket. Use DocumentLocation to specify the bucket name and file name\n * of the document.\n *

\n *

\n * StartTextDetection returns a job identifier\n * (JobId) that you use to get the results of the operation. When text\n * detection is finished, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS)\n * topic that you specify in NotificationChannel. To get the results of the text\n * detection operation, first check that the status value published to the Amazon SNS topic is\n * SUCCEEDED. If so, call GetDocumentTextDetection, and\n * pass the job identifier (JobId) from the initial call to\n * StartDocumentTextDetection.

\n *

For more information, see Document Text Detection.

\n */\nvar StartDocumentTextDetectionCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartDocumentTextDetectionCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartDocumentTextDetectionCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartDocumentTextDetectionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TextractClient\";\n var commandName = \"StartDocumentTextDetectionCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDocumentTextDetectionRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartDocumentTextDetectionResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartDocumentTextDetectionCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartDocumentTextDetectionCommand\"])(input, context);\n };\n StartDocumentTextDetectionCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartDocumentTextDetectionCommand\"])(output, context);\n };\n return StartDocumentTextDetectionCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartDocumentTextDetectionCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentTextDetectionCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/endpoints.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/endpoints.js ***! \********************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"textract.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"textract.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"textract.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"textract.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"textract.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"textract\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/index.js ***! \****************************************************************/ /*! exports provided: TextractClient, Textract, AnalyzeDocumentCommand, DetectDocumentTextCommand, GetDocumentAnalysisCommand, GetDocumentTextDetectionCommand, StartDocumentAnalysisCommand, StartDocumentTextDetectionCommand, AccessDeniedException, S3Object, Document, FeatureType, ContentClassifier, HumanLoopDataAttributes, HumanLoopConfig, AnalyzeDocumentRequest, BlockType, EntityType, BoundingBox, Point, Geometry, RelationshipType, Relationship, SelectionStatus, TextType, Block, DocumentMetadata, HumanLoopActivationOutput, AnalyzeDocumentResponse, BadDocumentException, DocumentTooLargeException, HumanLoopQuotaExceededException, InternalServerError, InvalidParameterException, InvalidS3ObjectException, ProvisionedThroughputExceededException, ThrottlingException, UnsupportedDocumentException, DetectDocumentTextRequest, DetectDocumentTextResponse, DocumentLocation, GetDocumentAnalysisRequest, JobStatus, Warning, GetDocumentAnalysisResponse, InvalidJobIdException, GetDocumentTextDetectionRequest, GetDocumentTextDetectionResponse, IdempotentParameterMismatchException, InvalidKMSKeyException, LimitExceededException, NotificationChannel, OutputConfig, StartDocumentAnalysisRequest, StartDocumentAnalysisResponse, StartDocumentTextDetectionRequest, StartDocumentTextDetectionResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _TextractClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./TextractClient */ \"./node_modules/@aws-sdk/client-textract/dist/es/TextractClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextractClient\", function() { return _TextractClient__WEBPACK_IMPORTED_MODULE_0__[\"TextractClient\"]; });\n\n/* harmony import */ var _Textract__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Textract */ \"./node_modules/@aws-sdk/client-textract/dist/es/Textract.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Textract\", function() { return _Textract__WEBPACK_IMPORTED_MODULE_1__[\"Textract\"]; });\n\n/* harmony import */ var _commands_AnalyzeDocumentCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/AnalyzeDocumentCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/AnalyzeDocumentCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyzeDocumentCommand\", function() { return _commands_AnalyzeDocumentCommand__WEBPACK_IMPORTED_MODULE_2__[\"AnalyzeDocumentCommand\"]; });\n\n/* harmony import */ var _commands_DetectDocumentTextCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DetectDocumentTextCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/DetectDocumentTextCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDocumentTextCommand\", function() { return _commands_DetectDocumentTextCommand__WEBPACK_IMPORTED_MODULE_3__[\"DetectDocumentTextCommand\"]; });\n\n/* harmony import */ var _commands_GetDocumentAnalysisCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/GetDocumentAnalysisCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentAnalysisCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentAnalysisCommand\", function() { return _commands_GetDocumentAnalysisCommand__WEBPACK_IMPORTED_MODULE_4__[\"GetDocumentAnalysisCommand\"]; });\n\n/* harmony import */ var _commands_GetDocumentTextDetectionCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/GetDocumentTextDetectionCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/GetDocumentTextDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentTextDetectionCommand\", function() { return _commands_GetDocumentTextDetectionCommand__WEBPACK_IMPORTED_MODULE_5__[\"GetDocumentTextDetectionCommand\"]; });\n\n/* harmony import */ var _commands_StartDocumentAnalysisCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/StartDocumentAnalysisCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentAnalysisCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentAnalysisCommand\", function() { return _commands_StartDocumentAnalysisCommand__WEBPACK_IMPORTED_MODULE_6__[\"StartDocumentAnalysisCommand\"]; });\n\n/* harmony import */ var _commands_StartDocumentTextDetectionCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/StartDocumentTextDetectionCommand */ \"./node_modules/@aws-sdk/client-textract/dist/es/commands/StartDocumentTextDetectionCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentTextDetectionCommand\", function() { return _commands_StartDocumentTextDetectionCommand__WEBPACK_IMPORTED_MODULE_7__[\"StartDocumentTextDetectionCommand\"]; });\n\n/* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-textract/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"AccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3Object\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"S3Object\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Document\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"Document\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FeatureType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"FeatureType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentClassifier\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"ContentClassifier\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopDataAttributes\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"HumanLoopDataAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"HumanLoopConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyzeDocumentRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"AnalyzeDocumentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BlockType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"BlockType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"EntityType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BoundingBox\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"BoundingBox\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Point\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"Point\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Geometry\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"Geometry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RelationshipType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"RelationshipType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Relationship\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"Relationship\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"SelectionStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"TextType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Block\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"Block\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentMetadata\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"DocumentMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopActivationOutput\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"HumanLoopActivationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyzeDocumentResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"AnalyzeDocumentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadDocumentException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"BadDocumentException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentTooLargeException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"DocumentTooLargeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopQuotaExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"HumanLoopQuotaExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerError\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"InternalServerError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"InvalidParameterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3ObjectException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"InvalidS3ObjectException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProvisionedThroughputExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"ProvisionedThroughputExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"ThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedDocumentException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"UnsupportedDocumentException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDocumentTextRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"DetectDocumentTextRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDocumentTextResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"DetectDocumentTextResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentLocation\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"DocumentLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentAnalysisRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"GetDocumentAnalysisRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"JobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Warning\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"Warning\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentAnalysisResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"GetDocumentAnalysisResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidJobIdException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"InvalidJobIdException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentTextDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"GetDocumentTextDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentTextDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"GetDocumentTextDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdempotentParameterMismatchException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"IdempotentParameterMismatchException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidKMSKeyException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"InvalidKMSKeyException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotificationChannel\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"NotificationChannel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"OutputConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentAnalysisRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"StartDocumentAnalysisRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentAnalysisResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"StartDocumentAnalysisResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentTextDetectionRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"StartDocumentTextDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentTextDetectionResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_8__[\"StartDocumentTextDetectionResponse\"]; });\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/models/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/models/index.js ***! \***********************************************************************/ /*! exports provided: AccessDeniedException, S3Object, Document, FeatureType, ContentClassifier, HumanLoopDataAttributes, HumanLoopConfig, AnalyzeDocumentRequest, BlockType, EntityType, BoundingBox, Point, Geometry, RelationshipType, Relationship, SelectionStatus, TextType, Block, DocumentMetadata, HumanLoopActivationOutput, AnalyzeDocumentResponse, BadDocumentException, DocumentTooLargeException, HumanLoopQuotaExceededException, InternalServerError, InvalidParameterException, InvalidS3ObjectException, ProvisionedThroughputExceededException, ThrottlingException, UnsupportedDocumentException, DetectDocumentTextRequest, DetectDocumentTextResponse, DocumentLocation, GetDocumentAnalysisRequest, JobStatus, Warning, GetDocumentAnalysisResponse, InvalidJobIdException, GetDocumentTextDetectionRequest, GetDocumentTextDetectionResponse, IdempotentParameterMismatchException, InvalidKMSKeyException, LimitExceededException, NotificationChannel, OutputConfig, StartDocumentAnalysisRequest, StartDocumentAnalysisResponse, StartDocumentTextDetectionRequest, StartDocumentTextDetectionResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AccessDeniedException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3Object\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"S3Object\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Document\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Document\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FeatureType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"FeatureType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContentClassifier\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ContentClassifier\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopDataAttributes\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HumanLoopDataAttributes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HumanLoopConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyzeDocumentRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AnalyzeDocumentRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BlockType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BlockType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EntityType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EntityType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BoundingBox\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BoundingBox\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Point\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Point\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Geometry\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Geometry\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RelationshipType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"RelationshipType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Relationship\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Relationship\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"SelectionStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Block\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Block\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentMetadata\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentMetadata\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopActivationOutput\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HumanLoopActivationOutput\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnalyzeDocumentResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AnalyzeDocumentResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BadDocumentException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"BadDocumentException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentTooLargeException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentTooLargeException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopQuotaExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"HumanLoopQuotaExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerError\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalServerError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidParameterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3ObjectException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidS3ObjectException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProvisionedThroughputExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ProvisionedThroughputExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ThrottlingException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedDocumentException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnsupportedDocumentException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDocumentTextRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectDocumentTextRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectDocumentTextResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectDocumentTextResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentLocation\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DocumentLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentAnalysisRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetDocumentAnalysisRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Warning\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Warning\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentAnalysisResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetDocumentAnalysisResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidJobIdException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidJobIdException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentTextDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetDocumentTextDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentTextDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetDocumentTextDetectionResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IdempotentParameterMismatchException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"IdempotentParameterMismatchException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidKMSKeyException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidKMSKeyException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotificationChannel\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"NotificationChannel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OutputConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentAnalysisRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDocumentAnalysisRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentAnalysisResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDocumentAnalysisResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentTextDetectionRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDocumentTextDetectionRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentTextDetectionResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartDocumentTextDetectionResponse\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js ***! \**************************************************************************/ /*! exports provided: AccessDeniedException, S3Object, Document, FeatureType, ContentClassifier, HumanLoopDataAttributes, HumanLoopConfig, AnalyzeDocumentRequest, BlockType, EntityType, BoundingBox, Point, Geometry, RelationshipType, Relationship, SelectionStatus, TextType, Block, DocumentMetadata, HumanLoopActivationOutput, AnalyzeDocumentResponse, BadDocumentException, DocumentTooLargeException, HumanLoopQuotaExceededException, InternalServerError, InvalidParameterException, InvalidS3ObjectException, ProvisionedThroughputExceededException, ThrottlingException, UnsupportedDocumentException, DetectDocumentTextRequest, DetectDocumentTextResponse, DocumentLocation, GetDocumentAnalysisRequest, JobStatus, Warning, GetDocumentAnalysisResponse, InvalidJobIdException, GetDocumentTextDetectionRequest, GetDocumentTextDetectionResponse, IdempotentParameterMismatchException, InvalidKMSKeyException, LimitExceededException, NotificationChannel, OutputConfig, StartDocumentAnalysisRequest, StartDocumentAnalysisResponse, StartDocumentTextDetectionRequest, StartDocumentTextDetectionResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AccessDeniedException\", function() { return AccessDeniedException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3Object\", function() { return S3Object; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Document\", function() { return Document; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FeatureType\", function() { return FeatureType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ContentClassifier\", function() { return ContentClassifier; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopDataAttributes\", function() { return HumanLoopDataAttributes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopConfig\", function() { return HumanLoopConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnalyzeDocumentRequest\", function() { return AnalyzeDocumentRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BlockType\", function() { return BlockType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EntityType\", function() { return EntityType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BoundingBox\", function() { return BoundingBox; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Point\", function() { return Point; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Geometry\", function() { return Geometry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RelationshipType\", function() { return RelationshipType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Relationship\", function() { return Relationship; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SelectionStatus\", function() { return SelectionStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextType\", function() { return TextType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Block\", function() { return Block; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentMetadata\", function() { return DocumentMetadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopActivationOutput\", function() { return HumanLoopActivationOutput; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnalyzeDocumentResponse\", function() { return AnalyzeDocumentResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BadDocumentException\", function() { return BadDocumentException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentTooLargeException\", function() { return DocumentTooLargeException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HumanLoopQuotaExceededException\", function() { return HumanLoopQuotaExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalServerError\", function() { return InternalServerError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterException\", function() { return InvalidParameterException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidS3ObjectException\", function() { return InvalidS3ObjectException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProvisionedThroughputExceededException\", function() { return ProvisionedThroughputExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ThrottlingException\", function() { return ThrottlingException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedDocumentException\", function() { return UnsupportedDocumentException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectDocumentTextRequest\", function() { return DetectDocumentTextRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectDocumentTextResponse\", function() { return DetectDocumentTextResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DocumentLocation\", function() { return DocumentLocation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentAnalysisRequest\", function() { return GetDocumentAnalysisRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return JobStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Warning\", function() { return Warning; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentAnalysisResponse\", function() { return GetDocumentAnalysisResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidJobIdException\", function() { return InvalidJobIdException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentTextDetectionRequest\", function() { return GetDocumentTextDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetDocumentTextDetectionResponse\", function() { return GetDocumentTextDetectionResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IdempotentParameterMismatchException\", function() { return IdempotentParameterMismatchException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidKMSKeyException\", function() { return InvalidKMSKeyException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return LimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NotificationChannel\", function() { return NotificationChannel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OutputConfig\", function() { return OutputConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentAnalysisRequest\", function() { return StartDocumentAnalysisRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentAnalysisResponse\", function() { return StartDocumentAnalysisResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentTextDetectionRequest\", function() { return StartDocumentTextDetectionRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartDocumentTextDetectionResponse\", function() { return StartDocumentTextDetectionResponse; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n\nvar AccessDeniedException;\n(function (AccessDeniedException) {\n AccessDeniedException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AccessDeniedException || (AccessDeniedException = {}));\nvar S3Object;\n(function (S3Object) {\n S3Object.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(S3Object || (S3Object = {}));\nvar Document;\n(function (Document) {\n Document.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Document || (Document = {}));\nvar FeatureType;\n(function (FeatureType) {\n FeatureType[\"FORMS\"] = \"FORMS\";\n FeatureType[\"TABLES\"] = \"TABLES\";\n})(FeatureType || (FeatureType = {}));\nvar ContentClassifier;\n(function (ContentClassifier) {\n ContentClassifier[\"FREE_OF_ADULT_CONTENT\"] = \"FreeOfAdultContent\";\n ContentClassifier[\"FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION\"] = \"FreeOfPersonallyIdentifiableInformation\";\n})(ContentClassifier || (ContentClassifier = {}));\nvar HumanLoopDataAttributes;\n(function (HumanLoopDataAttributes) {\n HumanLoopDataAttributes.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HumanLoopDataAttributes || (HumanLoopDataAttributes = {}));\nvar HumanLoopConfig;\n(function (HumanLoopConfig) {\n HumanLoopConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HumanLoopConfig || (HumanLoopConfig = {}));\nvar AnalyzeDocumentRequest;\n(function (AnalyzeDocumentRequest) {\n AnalyzeDocumentRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AnalyzeDocumentRequest || (AnalyzeDocumentRequest = {}));\nvar BlockType;\n(function (BlockType) {\n BlockType[\"CELL\"] = \"CELL\";\n BlockType[\"KEY_VALUE_SET\"] = \"KEY_VALUE_SET\";\n BlockType[\"LINE\"] = \"LINE\";\n BlockType[\"PAGE\"] = \"PAGE\";\n BlockType[\"SELECTION_ELEMENT\"] = \"SELECTION_ELEMENT\";\n BlockType[\"TABLE\"] = \"TABLE\";\n BlockType[\"WORD\"] = \"WORD\";\n})(BlockType || (BlockType = {}));\nvar EntityType;\n(function (EntityType) {\n EntityType[\"KEY\"] = \"KEY\";\n EntityType[\"VALUE\"] = \"VALUE\";\n})(EntityType || (EntityType = {}));\nvar BoundingBox;\n(function (BoundingBox) {\n BoundingBox.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BoundingBox || (BoundingBox = {}));\nvar Point;\n(function (Point) {\n Point.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Point || (Point = {}));\nvar Geometry;\n(function (Geometry) {\n Geometry.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Geometry || (Geometry = {}));\nvar RelationshipType;\n(function (RelationshipType) {\n RelationshipType[\"CHILD\"] = \"CHILD\";\n RelationshipType[\"COMPLEX_FEATURES\"] = \"COMPLEX_FEATURES\";\n RelationshipType[\"VALUE\"] = \"VALUE\";\n})(RelationshipType || (RelationshipType = {}));\nvar Relationship;\n(function (Relationship) {\n Relationship.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Relationship || (Relationship = {}));\nvar SelectionStatus;\n(function (SelectionStatus) {\n SelectionStatus[\"NOT_SELECTED\"] = \"NOT_SELECTED\";\n SelectionStatus[\"SELECTED\"] = \"SELECTED\";\n})(SelectionStatus || (SelectionStatus = {}));\nvar TextType;\n(function (TextType) {\n TextType[\"HANDWRITING\"] = \"HANDWRITING\";\n TextType[\"PRINTED\"] = \"PRINTED\";\n})(TextType || (TextType = {}));\nvar Block;\n(function (Block) {\n Block.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Block || (Block = {}));\nvar DocumentMetadata;\n(function (DocumentMetadata) {\n DocumentMetadata.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentMetadata || (DocumentMetadata = {}));\nvar HumanLoopActivationOutput;\n(function (HumanLoopActivationOutput) {\n HumanLoopActivationOutput.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HumanLoopActivationOutput || (HumanLoopActivationOutput = {}));\nvar AnalyzeDocumentResponse;\n(function (AnalyzeDocumentResponse) {\n AnalyzeDocumentResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AnalyzeDocumentResponse || (AnalyzeDocumentResponse = {}));\nvar BadDocumentException;\n(function (BadDocumentException) {\n BadDocumentException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(BadDocumentException || (BadDocumentException = {}));\nvar DocumentTooLargeException;\n(function (DocumentTooLargeException) {\n DocumentTooLargeException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentTooLargeException || (DocumentTooLargeException = {}));\nvar HumanLoopQuotaExceededException;\n(function (HumanLoopQuotaExceededException) {\n HumanLoopQuotaExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(HumanLoopQuotaExceededException || (HumanLoopQuotaExceededException = {}));\nvar InternalServerError;\n(function (InternalServerError) {\n InternalServerError.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InternalServerError || (InternalServerError = {}));\nvar InvalidParameterException;\n(function (InvalidParameterException) {\n InvalidParameterException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidParameterException || (InvalidParameterException = {}));\nvar InvalidS3ObjectException;\n(function (InvalidS3ObjectException) {\n InvalidS3ObjectException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidS3ObjectException || (InvalidS3ObjectException = {}));\nvar ProvisionedThroughputExceededException;\n(function (ProvisionedThroughputExceededException) {\n ProvisionedThroughputExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ProvisionedThroughputExceededException || (ProvisionedThroughputExceededException = {}));\nvar ThrottlingException;\n(function (ThrottlingException) {\n ThrottlingException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ThrottlingException || (ThrottlingException = {}));\nvar UnsupportedDocumentException;\n(function (UnsupportedDocumentException) {\n UnsupportedDocumentException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnsupportedDocumentException || (UnsupportedDocumentException = {}));\nvar DetectDocumentTextRequest;\n(function (DetectDocumentTextRequest) {\n DetectDocumentTextRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectDocumentTextRequest || (DetectDocumentTextRequest = {}));\nvar DetectDocumentTextResponse;\n(function (DetectDocumentTextResponse) {\n DetectDocumentTextResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectDocumentTextResponse || (DetectDocumentTextResponse = {}));\nvar DocumentLocation;\n(function (DocumentLocation) {\n DocumentLocation.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DocumentLocation || (DocumentLocation = {}));\nvar GetDocumentAnalysisRequest;\n(function (GetDocumentAnalysisRequest) {\n GetDocumentAnalysisRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetDocumentAnalysisRequest || (GetDocumentAnalysisRequest = {}));\nvar JobStatus;\n(function (JobStatus) {\n JobStatus[\"FAILED\"] = \"FAILED\";\n JobStatus[\"IN_PROGRESS\"] = \"IN_PROGRESS\";\n JobStatus[\"PARTIAL_SUCCESS\"] = \"PARTIAL_SUCCESS\";\n JobStatus[\"SUCCEEDED\"] = \"SUCCEEDED\";\n})(JobStatus || (JobStatus = {}));\nvar Warning;\n(function (Warning) {\n Warning.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Warning || (Warning = {}));\nvar GetDocumentAnalysisResponse;\n(function (GetDocumentAnalysisResponse) {\n GetDocumentAnalysisResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetDocumentAnalysisResponse || (GetDocumentAnalysisResponse = {}));\nvar InvalidJobIdException;\n(function (InvalidJobIdException) {\n InvalidJobIdException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidJobIdException || (InvalidJobIdException = {}));\nvar GetDocumentTextDetectionRequest;\n(function (GetDocumentTextDetectionRequest) {\n GetDocumentTextDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetDocumentTextDetectionRequest || (GetDocumentTextDetectionRequest = {}));\nvar GetDocumentTextDetectionResponse;\n(function (GetDocumentTextDetectionResponse) {\n GetDocumentTextDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetDocumentTextDetectionResponse || (GetDocumentTextDetectionResponse = {}));\nvar IdempotentParameterMismatchException;\n(function (IdempotentParameterMismatchException) {\n IdempotentParameterMismatchException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(IdempotentParameterMismatchException || (IdempotentParameterMismatchException = {}));\nvar InvalidKMSKeyException;\n(function (InvalidKMSKeyException) {\n InvalidKMSKeyException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidKMSKeyException || (InvalidKMSKeyException = {}));\nvar LimitExceededException;\n(function (LimitExceededException) {\n LimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LimitExceededException || (LimitExceededException = {}));\nvar NotificationChannel;\n(function (NotificationChannel) {\n NotificationChannel.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(NotificationChannel || (NotificationChannel = {}));\nvar OutputConfig;\n(function (OutputConfig) {\n OutputConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OutputConfig || (OutputConfig = {}));\nvar StartDocumentAnalysisRequest;\n(function (StartDocumentAnalysisRequest) {\n StartDocumentAnalysisRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDocumentAnalysisRequest || (StartDocumentAnalysisRequest = {}));\nvar StartDocumentAnalysisResponse;\n(function (StartDocumentAnalysisResponse) {\n StartDocumentAnalysisResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDocumentAnalysisResponse || (StartDocumentAnalysisResponse = {}));\nvar StartDocumentTextDetectionRequest;\n(function (StartDocumentTextDetectionRequest) {\n StartDocumentTextDetectionRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDocumentTextDetectionRequest || (StartDocumentTextDetectionRequest = {}));\nvar StartDocumentTextDetectionResponse;\n(function (StartDocumentTextDetectionResponse) {\n StartDocumentTextDetectionResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartDocumentTextDetectionResponse || (StartDocumentTextDetectionResponse = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/package.json": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/package.json ***! \********************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-textract\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Textract Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-textract\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-textract\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/protocols/Aws_json1_1.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/protocols/Aws_json1_1.js ***! \********************************************************************************/ /*! exports provided: serializeAws_json1_1AnalyzeDocumentCommand, serializeAws_json1_1DetectDocumentTextCommand, serializeAws_json1_1GetDocumentAnalysisCommand, serializeAws_json1_1GetDocumentTextDetectionCommand, serializeAws_json1_1StartDocumentAnalysisCommand, serializeAws_json1_1StartDocumentTextDetectionCommand, deserializeAws_json1_1AnalyzeDocumentCommand, deserializeAws_json1_1DetectDocumentTextCommand, deserializeAws_json1_1GetDocumentAnalysisCommand, deserializeAws_json1_1GetDocumentTextDetectionCommand, deserializeAws_json1_1StartDocumentAnalysisCommand, deserializeAws_json1_1StartDocumentTextDetectionCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1AnalyzeDocumentCommand\", function() { return serializeAws_json1_1AnalyzeDocumentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DetectDocumentTextCommand\", function() { return serializeAws_json1_1DetectDocumentTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetDocumentAnalysisCommand\", function() { return serializeAws_json1_1GetDocumentAnalysisCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetDocumentTextDetectionCommand\", function() { return serializeAws_json1_1GetDocumentTextDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartDocumentAnalysisCommand\", function() { return serializeAws_json1_1StartDocumentAnalysisCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartDocumentTextDetectionCommand\", function() { return serializeAws_json1_1StartDocumentTextDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1AnalyzeDocumentCommand\", function() { return deserializeAws_json1_1AnalyzeDocumentCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DetectDocumentTextCommand\", function() { return deserializeAws_json1_1DetectDocumentTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetDocumentAnalysisCommand\", function() { return deserializeAws_json1_1GetDocumentAnalysisCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetDocumentTextDetectionCommand\", function() { return deserializeAws_json1_1GetDocumentTextDetectionCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartDocumentAnalysisCommand\", function() { return deserializeAws_json1_1StartDocumentAnalysisCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartDocumentTextDetectionCommand\", function() { return deserializeAws_json1_1StartDocumentTextDetectionCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\nvar serializeAws_json1_1AnalyzeDocumentCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Textract.AnalyzeDocument\",\n };\n body = JSON.stringify(serializeAws_json1_1AnalyzeDocumentRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DetectDocumentTextCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Textract.DetectDocumentText\",\n };\n body = JSON.stringify(serializeAws_json1_1DetectDocumentTextRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetDocumentAnalysisCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Textract.GetDocumentAnalysis\",\n };\n body = JSON.stringify(serializeAws_json1_1GetDocumentAnalysisRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetDocumentTextDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Textract.GetDocumentTextDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1GetDocumentTextDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartDocumentAnalysisCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Textract.StartDocumentAnalysis\",\n };\n body = JSON.stringify(serializeAws_json1_1StartDocumentAnalysisRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartDocumentTextDetectionCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"Textract.StartDocumentTextDetection\",\n };\n body = JSON.stringify(serializeAws_json1_1StartDocumentTextDetectionRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar deserializeAws_json1_1AnalyzeDocumentCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1AnalyzeDocumentCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1AnalyzeDocumentResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1AnalyzeDocumentCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, parsedBody, message;\n var _o;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_p) {\n switch (_p.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _o = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_o.body = _p.sent(), _o)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.textract#AccessDeniedException\": return [3 /*break*/, 2];\n case \"BadDocumentException\": return [3 /*break*/, 4];\n case \"com.amazonaws.textract#BadDocumentException\": return [3 /*break*/, 4];\n case \"DocumentTooLargeException\": return [3 /*break*/, 6];\n case \"com.amazonaws.textract#DocumentTooLargeException\": return [3 /*break*/, 6];\n case \"HumanLoopQuotaExceededException\": return [3 /*break*/, 8];\n case \"com.amazonaws.textract#HumanLoopQuotaExceededException\": return [3 /*break*/, 8];\n case \"InternalServerError\": return [3 /*break*/, 10];\n case \"com.amazonaws.textract#InternalServerError\": return [3 /*break*/, 10];\n case \"InvalidParameterException\": return [3 /*break*/, 12];\n case \"com.amazonaws.textract#InvalidParameterException\": return [3 /*break*/, 12];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 14];\n case \"com.amazonaws.textract#InvalidS3ObjectException\": return [3 /*break*/, 14];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"com.amazonaws.textract#ProvisionedThroughputExceededException\": return [3 /*break*/, 16];\n case \"ThrottlingException\": return [3 /*break*/, 18];\n case \"com.amazonaws.textract#ThrottlingException\": return [3 /*break*/, 18];\n case \"UnsupportedDocumentException\": return [3 /*break*/, 20];\n case \"com.amazonaws.textract#UnsupportedDocumentException\": return [3 /*break*/, 20];\n }\n return [3 /*break*/, 22];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1BadDocumentExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1DocumentTooLargeExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1HumanLoopQuotaExceededExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 20:\n _m = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedDocumentExceptionResponse(parsedOutput, context)];\n case 21:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _m.concat([(_p.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 23];\n case 22:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _p.label = 23;\n case 23:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectDocumentTextCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DetectDocumentTextCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DetectDocumentTextResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DetectDocumentTextCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, parsedBody, message;\n var _m;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_o) {\n switch (_o.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _m = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_m.body = _o.sent(), _m)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.textract#AccessDeniedException\": return [3 /*break*/, 2];\n case \"BadDocumentException\": return [3 /*break*/, 4];\n case \"com.amazonaws.textract#BadDocumentException\": return [3 /*break*/, 4];\n case \"DocumentTooLargeException\": return [3 /*break*/, 6];\n case \"com.amazonaws.textract#DocumentTooLargeException\": return [3 /*break*/, 6];\n case \"InternalServerError\": return [3 /*break*/, 8];\n case \"com.amazonaws.textract#InternalServerError\": return [3 /*break*/, 8];\n case \"InvalidParameterException\": return [3 /*break*/, 10];\n case \"com.amazonaws.textract#InvalidParameterException\": return [3 /*break*/, 10];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"com.amazonaws.textract#InvalidS3ObjectException\": return [3 /*break*/, 12];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"com.amazonaws.textract#ProvisionedThroughputExceededException\": return [3 /*break*/, 14];\n case \"ThrottlingException\": return [3 /*break*/, 16];\n case \"com.amazonaws.textract#ThrottlingException\": return [3 /*break*/, 16];\n case \"UnsupportedDocumentException\": return [3 /*break*/, 18];\n case \"com.amazonaws.textract#UnsupportedDocumentException\": return [3 /*break*/, 18];\n }\n return [3 /*break*/, 20];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1BadDocumentExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1DocumentTooLargeExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedDocumentExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_o.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 21];\n case 20:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _o.label = 21;\n case 21:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetDocumentAnalysisCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetDocumentAnalysisCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetDocumentAnalysisResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetDocumentAnalysisCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.textract#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.textract#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidJobIdException\": return [3 /*break*/, 6];\n case \"com.amazonaws.textract#InvalidJobIdException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.textract#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.textract#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.textract#ProvisionedThroughputExceededException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.textract#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidJobIdExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetDocumentTextDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetDocumentTextDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetDocumentTextDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetDocumentTextDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, parsedBody, message;\n var _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _k = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_k.body = _l.sent(), _k)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.textract#AccessDeniedException\": return [3 /*break*/, 2];\n case \"InternalServerError\": return [3 /*break*/, 4];\n case \"com.amazonaws.textract#InternalServerError\": return [3 /*break*/, 4];\n case \"InvalidJobIdException\": return [3 /*break*/, 6];\n case \"com.amazonaws.textract#InvalidJobIdException\": return [3 /*break*/, 6];\n case \"InvalidParameterException\": return [3 /*break*/, 8];\n case \"com.amazonaws.textract#InvalidParameterException\": return [3 /*break*/, 8];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"com.amazonaws.textract#InvalidS3ObjectException\": return [3 /*break*/, 10];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.textract#ProvisionedThroughputExceededException\": return [3 /*break*/, 12];\n case \"ThrottlingException\": return [3 /*break*/, 14];\n case \"com.amazonaws.textract#ThrottlingException\": return [3 /*break*/, 14];\n }\n return [3 /*break*/, 16];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidJobIdExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_l.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 17];\n case 16:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _l.label = 17;\n case 17:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDocumentAnalysisCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartDocumentAnalysisCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartDocumentAnalysisResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDocumentAnalysisCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, parsedBody, message;\n var _q;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_r) {\n switch (_r.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _q = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_q.body = _r.sent(), _q)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.textract#AccessDeniedException\": return [3 /*break*/, 2];\n case \"BadDocumentException\": return [3 /*break*/, 4];\n case \"com.amazonaws.textract#BadDocumentException\": return [3 /*break*/, 4];\n case \"DocumentTooLargeException\": return [3 /*break*/, 6];\n case \"com.amazonaws.textract#DocumentTooLargeException\": return [3 /*break*/, 6];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 8];\n case \"com.amazonaws.textract#IdempotentParameterMismatchException\": return [3 /*break*/, 8];\n case \"InternalServerError\": return [3 /*break*/, 10];\n case \"com.amazonaws.textract#InternalServerError\": return [3 /*break*/, 10];\n case \"InvalidKMSKeyException\": return [3 /*break*/, 12];\n case \"com.amazonaws.textract#InvalidKMSKeyException\": return [3 /*break*/, 12];\n case \"InvalidParameterException\": return [3 /*break*/, 14];\n case \"com.amazonaws.textract#InvalidParameterException\": return [3 /*break*/, 14];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 16];\n case \"com.amazonaws.textract#InvalidS3ObjectException\": return [3 /*break*/, 16];\n case \"LimitExceededException\": return [3 /*break*/, 18];\n case \"com.amazonaws.textract#LimitExceededException\": return [3 /*break*/, 18];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 20];\n case \"com.amazonaws.textract#ProvisionedThroughputExceededException\": return [3 /*break*/, 20];\n case \"ThrottlingException\": return [3 /*break*/, 22];\n case \"com.amazonaws.textract#ThrottlingException\": return [3 /*break*/, 22];\n case \"UnsupportedDocumentException\": return [3 /*break*/, 24];\n case \"com.amazonaws.textract#UnsupportedDocumentException\": return [3 /*break*/, 24];\n }\n return [3 /*break*/, 26];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1BadDocumentExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1DocumentTooLargeExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidKMSKeyExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 20:\n _m = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 21:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _m.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 22:\n _o = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 23:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _o.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 24:\n _p = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedDocumentExceptionResponse(parsedOutput, context)];\n case 25:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _p.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 26:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _r.label = 27;\n case 27:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDocumentTextDetectionCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartDocumentTextDetectionCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartDocumentTextDetectionResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartDocumentTextDetectionCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, parsedBody, message;\n var _q;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_r) {\n switch (_r.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _q = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_q.body = _r.sent(), _q)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"AccessDeniedException\": return [3 /*break*/, 2];\n case \"com.amazonaws.textract#AccessDeniedException\": return [3 /*break*/, 2];\n case \"BadDocumentException\": return [3 /*break*/, 4];\n case \"com.amazonaws.textract#BadDocumentException\": return [3 /*break*/, 4];\n case \"DocumentTooLargeException\": return [3 /*break*/, 6];\n case \"com.amazonaws.textract#DocumentTooLargeException\": return [3 /*break*/, 6];\n case \"IdempotentParameterMismatchException\": return [3 /*break*/, 8];\n case \"com.amazonaws.textract#IdempotentParameterMismatchException\": return [3 /*break*/, 8];\n case \"InternalServerError\": return [3 /*break*/, 10];\n case \"com.amazonaws.textract#InternalServerError\": return [3 /*break*/, 10];\n case \"InvalidKMSKeyException\": return [3 /*break*/, 12];\n case \"com.amazonaws.textract#InvalidKMSKeyException\": return [3 /*break*/, 12];\n case \"InvalidParameterException\": return [3 /*break*/, 14];\n case \"com.amazonaws.textract#InvalidParameterException\": return [3 /*break*/, 14];\n case \"InvalidS3ObjectException\": return [3 /*break*/, 16];\n case \"com.amazonaws.textract#InvalidS3ObjectException\": return [3 /*break*/, 16];\n case \"LimitExceededException\": return [3 /*break*/, 18];\n case \"com.amazonaws.textract#LimitExceededException\": return [3 /*break*/, 18];\n case \"ProvisionedThroughputExceededException\": return [3 /*break*/, 20];\n case \"com.amazonaws.textract#ProvisionedThroughputExceededException\": return [3 /*break*/, 20];\n case \"ThrottlingException\": return [3 /*break*/, 22];\n case \"com.amazonaws.textract#ThrottlingException\": return [3 /*break*/, 22];\n case \"UnsupportedDocumentException\": return [3 /*break*/, 24];\n case \"com.amazonaws.textract#UnsupportedDocumentException\": return [3 /*break*/, 24];\n }\n return [3 /*break*/, 26];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1BadDocumentExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1DocumentTooLargeExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerErrorResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidKMSKeyExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidS3ObjectExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 18:\n _l = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 19:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _l.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 20:\n _m = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse(parsedOutput, context)];\n case 21:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _m.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 22:\n _o = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context)];\n case 23:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _o.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 24:\n _p = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedDocumentExceptionResponse(parsedOutput, context)];\n case 25:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _p.concat([(_r.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 27];\n case 26:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _r.label = 27;\n case 27:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1AccessDeniedExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1AccessDeniedException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"AccessDeniedException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1BadDocumentExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1BadDocumentException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"BadDocumentException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1DocumentTooLargeExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1DocumentTooLargeException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"DocumentTooLargeException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1HumanLoopQuotaExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1HumanLoopQuotaExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"HumanLoopQuotaExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1IdempotentParameterMismatchExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1IdempotentParameterMismatchException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"IdempotentParameterMismatchException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InternalServerErrorResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InternalServerError(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InternalServerError\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidJobIdExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidJobIdException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidJobIdException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidKMSKeyExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidKMSKeyException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidKMSKeyException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidParameterExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidParameterException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidParameterException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidS3ObjectExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidS3ObjectException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidS3ObjectException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1LimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1LimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"LimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ProvisionedThroughputExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ProvisionedThroughputExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ProvisionedThroughputExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ThrottlingExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ThrottlingException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ThrottlingException\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1UnsupportedDocumentExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1UnsupportedDocumentException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"UnsupportedDocumentException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_json1_1AnalyzeDocumentRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Document !== undefined &&\n input.Document !== null && { Document: serializeAws_json1_1Document(input.Document, context) })), (input.FeatureTypes !== undefined &&\n input.FeatureTypes !== null && { FeatureTypes: serializeAws_json1_1FeatureTypes(input.FeatureTypes, context) })), (input.HumanLoopConfig !== undefined &&\n input.HumanLoopConfig !== null && {\n HumanLoopConfig: serializeAws_json1_1HumanLoopConfig(input.HumanLoopConfig, context),\n }));\n};\nvar serializeAws_json1_1ContentClassifiers = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1DetectDocumentTextRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Document !== undefined &&\n input.Document !== null && { Document: serializeAws_json1_1Document(input.Document, context) }));\n};\nvar serializeAws_json1_1Document = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Bytes !== undefined && input.Bytes !== null && { Bytes: context.base64Encoder(input.Bytes) })), (input.S3Object !== undefined &&\n input.S3Object !== null && { S3Object: serializeAws_json1_1S3Object(input.S3Object, context) }));\n};\nvar serializeAws_json1_1DocumentLocation = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.S3Object !== undefined &&\n input.S3Object !== null && { S3Object: serializeAws_json1_1S3Object(input.S3Object, context) }));\n};\nvar serializeAws_json1_1FeatureTypes = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1GetDocumentAnalysisRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1GetDocumentTextDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1HumanLoopConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.DataAttributes !== undefined &&\n input.DataAttributes !== null && {\n DataAttributes: serializeAws_json1_1HumanLoopDataAttributes(input.DataAttributes, context),\n })), (input.FlowDefinitionArn !== undefined &&\n input.FlowDefinitionArn !== null && { FlowDefinitionArn: input.FlowDefinitionArn })), (input.HumanLoopName !== undefined && input.HumanLoopName !== null && { HumanLoopName: input.HumanLoopName }));\n};\nvar serializeAws_json1_1HumanLoopDataAttributes = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ContentClassifiers !== undefined &&\n input.ContentClassifiers !== null && {\n ContentClassifiers: serializeAws_json1_1ContentClassifiers(input.ContentClassifiers, context),\n }));\n};\nvar serializeAws_json1_1NotificationChannel = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.RoleArn !== undefined && input.RoleArn !== null && { RoleArn: input.RoleArn })), (input.SNSTopicArn !== undefined && input.SNSTopicArn !== null && { SNSTopicArn: input.SNSTopicArn }));\n};\nvar serializeAws_json1_1OutputConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.S3Bucket !== undefined && input.S3Bucket !== null && { S3Bucket: input.S3Bucket })), (input.S3Prefix !== undefined && input.S3Prefix !== null && { S3Prefix: input.S3Prefix }));\n};\nvar serializeAws_json1_1S3Object = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Bucket !== undefined && input.Bucket !== null && { Bucket: input.Bucket })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.Version !== undefined && input.Version !== null && { Version: input.Version }));\n};\nvar serializeAws_json1_1StartDocumentAnalysisRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.DocumentLocation !== undefined &&\n input.DocumentLocation !== null && {\n DocumentLocation: serializeAws_json1_1DocumentLocation(input.DocumentLocation, context),\n })), (input.FeatureTypes !== undefined &&\n input.FeatureTypes !== null && { FeatureTypes: serializeAws_json1_1FeatureTypes(input.FeatureTypes, context) })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.KMSKeyId !== undefined && input.KMSKeyId !== null && { KMSKeyId: input.KMSKeyId })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.OutputConfig !== undefined &&\n input.OutputConfig !== null && { OutputConfig: serializeAws_json1_1OutputConfig(input.OutputConfig, context) }));\n};\nvar serializeAws_json1_1StartDocumentTextDetectionRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ClientRequestToken !== undefined &&\n input.ClientRequestToken !== null && { ClientRequestToken: input.ClientRequestToken })), (input.DocumentLocation !== undefined &&\n input.DocumentLocation !== null && {\n DocumentLocation: serializeAws_json1_1DocumentLocation(input.DocumentLocation, context),\n })), (input.JobTag !== undefined && input.JobTag !== null && { JobTag: input.JobTag })), (input.KMSKeyId !== undefined && input.KMSKeyId !== null && { KMSKeyId: input.KMSKeyId })), (input.NotificationChannel !== undefined &&\n input.NotificationChannel !== null && {\n NotificationChannel: serializeAws_json1_1NotificationChannel(input.NotificationChannel, context),\n })), (input.OutputConfig !== undefined &&\n input.OutputConfig !== null && { OutputConfig: serializeAws_json1_1OutputConfig(input.OutputConfig, context) }));\n};\nvar deserializeAws_json1_1AccessDeniedException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1AnalyzeDocumentResponse = function (output, context) {\n return {\n AnalyzeDocumentModelVersion: output.AnalyzeDocumentModelVersion !== undefined && output.AnalyzeDocumentModelVersion !== null\n ? output.AnalyzeDocumentModelVersion\n : undefined,\n Blocks: output.Blocks !== undefined && output.Blocks !== null\n ? deserializeAws_json1_1BlockList(output.Blocks, context)\n : undefined,\n DocumentMetadata: output.DocumentMetadata !== undefined && output.DocumentMetadata !== null\n ? deserializeAws_json1_1DocumentMetadata(output.DocumentMetadata, context)\n : undefined,\n HumanLoopActivationOutput: output.HumanLoopActivationOutput !== undefined && output.HumanLoopActivationOutput !== null\n ? deserializeAws_json1_1HumanLoopActivationOutput(output.HumanLoopActivationOutput, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1BadDocumentException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1Block = function (output, context) {\n return {\n BlockType: output.BlockType !== undefined && output.BlockType !== null ? output.BlockType : undefined,\n ColumnIndex: output.ColumnIndex !== undefined && output.ColumnIndex !== null ? output.ColumnIndex : undefined,\n ColumnSpan: output.ColumnSpan !== undefined && output.ColumnSpan !== null ? output.ColumnSpan : undefined,\n Confidence: output.Confidence !== undefined && output.Confidence !== null ? output.Confidence : undefined,\n EntityTypes: output.EntityTypes !== undefined && output.EntityTypes !== null\n ? deserializeAws_json1_1EntityTypes(output.EntityTypes, context)\n : undefined,\n Geometry: output.Geometry !== undefined && output.Geometry !== null\n ? deserializeAws_json1_1Geometry(output.Geometry, context)\n : undefined,\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n Page: output.Page !== undefined && output.Page !== null ? output.Page : undefined,\n Relationships: output.Relationships !== undefined && output.Relationships !== null\n ? deserializeAws_json1_1RelationshipList(output.Relationships, context)\n : undefined,\n RowIndex: output.RowIndex !== undefined && output.RowIndex !== null ? output.RowIndex : undefined,\n RowSpan: output.RowSpan !== undefined && output.RowSpan !== null ? output.RowSpan : undefined,\n SelectionStatus: output.SelectionStatus !== undefined && output.SelectionStatus !== null ? output.SelectionStatus : undefined,\n Text: output.Text !== undefined && output.Text !== null ? output.Text : undefined,\n TextType: output.TextType !== undefined && output.TextType !== null ? output.TextType : undefined,\n };\n};\nvar deserializeAws_json1_1BlockList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Block(entry, context);\n });\n};\nvar deserializeAws_json1_1BoundingBox = function (output, context) {\n return {\n Height: output.Height !== undefined && output.Height !== null ? output.Height : undefined,\n Left: output.Left !== undefined && output.Left !== null ? output.Left : undefined,\n Top: output.Top !== undefined && output.Top !== null ? output.Top : undefined,\n Width: output.Width !== undefined && output.Width !== null ? output.Width : undefined,\n };\n};\nvar deserializeAws_json1_1DetectDocumentTextResponse = function (output, context) {\n return {\n Blocks: output.Blocks !== undefined && output.Blocks !== null\n ? deserializeAws_json1_1BlockList(output.Blocks, context)\n : undefined,\n DetectDocumentTextModelVersion: output.DetectDocumentTextModelVersion !== undefined && output.DetectDocumentTextModelVersion !== null\n ? output.DetectDocumentTextModelVersion\n : undefined,\n DocumentMetadata: output.DocumentMetadata !== undefined && output.DocumentMetadata !== null\n ? deserializeAws_json1_1DocumentMetadata(output.DocumentMetadata, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DocumentMetadata = function (output, context) {\n return {\n Pages: output.Pages !== undefined && output.Pages !== null ? output.Pages : undefined,\n };\n};\nvar deserializeAws_json1_1DocumentTooLargeException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1EntityTypes = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1Geometry = function (output, context) {\n return {\n BoundingBox: output.BoundingBox !== undefined && output.BoundingBox !== null\n ? deserializeAws_json1_1BoundingBox(output.BoundingBox, context)\n : undefined,\n Polygon: output.Polygon !== undefined && output.Polygon !== null\n ? deserializeAws_json1_1Polygon(output.Polygon, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetDocumentAnalysisResponse = function (output, context) {\n return {\n AnalyzeDocumentModelVersion: output.AnalyzeDocumentModelVersion !== undefined && output.AnalyzeDocumentModelVersion !== null\n ? output.AnalyzeDocumentModelVersion\n : undefined,\n Blocks: output.Blocks !== undefined && output.Blocks !== null\n ? deserializeAws_json1_1BlockList(output.Blocks, context)\n : undefined,\n DocumentMetadata: output.DocumentMetadata !== undefined && output.DocumentMetadata !== null\n ? deserializeAws_json1_1DocumentMetadata(output.DocumentMetadata, context)\n : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n Warnings: output.Warnings !== undefined && output.Warnings !== null\n ? deserializeAws_json1_1Warnings(output.Warnings, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetDocumentTextDetectionResponse = function (output, context) {\n return {\n Blocks: output.Blocks !== undefined && output.Blocks !== null\n ? deserializeAws_json1_1BlockList(output.Blocks, context)\n : undefined,\n DetectDocumentTextModelVersion: output.DetectDocumentTextModelVersion !== undefined && output.DetectDocumentTextModelVersion !== null\n ? output.DetectDocumentTextModelVersion\n : undefined,\n DocumentMetadata: output.DocumentMetadata !== undefined && output.DocumentMetadata !== null\n ? deserializeAws_json1_1DocumentMetadata(output.DocumentMetadata, context)\n : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n StatusMessage: output.StatusMessage !== undefined && output.StatusMessage !== null ? output.StatusMessage : undefined,\n Warnings: output.Warnings !== undefined && output.Warnings !== null\n ? deserializeAws_json1_1Warnings(output.Warnings, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1HumanLoopActivationOutput = function (output, context) {\n return {\n HumanLoopActivationConditionsEvaluationResults: output.HumanLoopActivationConditionsEvaluationResults !== undefined &&\n output.HumanLoopActivationConditionsEvaluationResults !== null\n ? new _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__[\"LazyJsonString\"](output.HumanLoopActivationConditionsEvaluationResults)\n : undefined,\n HumanLoopActivationReasons: output.HumanLoopActivationReasons !== undefined && output.HumanLoopActivationReasons !== null\n ? deserializeAws_json1_1HumanLoopActivationReasons(output.HumanLoopActivationReasons, context)\n : undefined,\n HumanLoopArn: output.HumanLoopArn !== undefined && output.HumanLoopArn !== null ? output.HumanLoopArn : undefined,\n };\n};\nvar deserializeAws_json1_1HumanLoopActivationReasons = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1HumanLoopQuotaExceededException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n QuotaCode: output.QuotaCode !== undefined && output.QuotaCode !== null ? output.QuotaCode : undefined,\n ResourceType: output.ResourceType !== undefined && output.ResourceType !== null ? output.ResourceType : undefined,\n ServiceCode: output.ServiceCode !== undefined && output.ServiceCode !== null ? output.ServiceCode : undefined,\n };\n};\nvar deserializeAws_json1_1IdempotentParameterMismatchException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1IdList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1InternalServerError = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidJobIdException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidKMSKeyException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidParameterException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidS3ObjectException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1LimitExceededException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1Pages = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1Point = function (output, context) {\n return {\n X: output.X !== undefined && output.X !== null ? output.X : undefined,\n Y: output.Y !== undefined && output.Y !== null ? output.Y : undefined,\n };\n};\nvar deserializeAws_json1_1Polygon = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Point(entry, context);\n });\n};\nvar deserializeAws_json1_1ProvisionedThroughputExceededException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1Relationship = function (output, context) {\n return {\n Ids: output.Ids !== undefined && output.Ids !== null ? deserializeAws_json1_1IdList(output.Ids, context) : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1RelationshipList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Relationship(entry, context);\n });\n};\nvar deserializeAws_json1_1StartDocumentAnalysisResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1StartDocumentTextDetectionResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n };\n};\nvar deserializeAws_json1_1ThrottlingException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1UnsupportedDocumentException = function (output, context) {\n return {\n Code: output.Code !== undefined && output.Code !== null ? output.Code : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1Warning = function (output, context) {\n return {\n ErrorCode: output.ErrorCode !== undefined && output.ErrorCode !== null ? output.ErrorCode : undefined,\n Pages: output.Pages !== undefined && output.Pages !== null\n ? deserializeAws_json1_1Pages(output.Pages, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1Warnings = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Warning(entry, context);\n });\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar buildHttpRpcRequest = function (context, headers, path, resolvedHostname, body) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n contents = {\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n path: path,\n headers: headers,\n };\n if (resolvedHostname !== undefined) {\n contents.hostname = resolvedHostname;\n }\n if (body !== undefined) {\n contents.body = body;\n }\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"](contents)];\n }\n });\n}); };\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_json1_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/protocols/Aws_json1_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/runtimeConfig.browser.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/runtimeConfig.browser.js ***! \********************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-textract/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-textract/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-textract/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/dist/es/runtimeConfig.shared.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/dist/es/runtimeConfig.shared.js ***! \*******************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-textract/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2018-06-27\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Textract\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js ***! \*******************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-textract/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/Translate.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/Translate.js ***! \*********************************************************************/ /*! exports provided: Translate */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Translate\", function() { return Translate; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _TranslateClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./TranslateClient */ \"./node_modules/@aws-sdk/client-translate/dist/es/TranslateClient.js\");\n/* harmony import */ var _commands_CreateParallelDataCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CreateParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/CreateParallelDataCommand.js\");\n/* harmony import */ var _commands_DeleteParallelDataCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DeleteParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteParallelDataCommand.js\");\n/* harmony import */ var _commands_DeleteTerminologyCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/DeleteTerminologyCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteTerminologyCommand.js\");\n/* harmony import */ var _commands_DescribeTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/DescribeTextTranslationJobCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/DescribeTextTranslationJobCommand.js\");\n/* harmony import */ var _commands_GetParallelDataCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/GetParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/GetParallelDataCommand.js\");\n/* harmony import */ var _commands_GetTerminologyCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/GetTerminologyCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/GetTerminologyCommand.js\");\n/* harmony import */ var _commands_ImportTerminologyCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/ImportTerminologyCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ImportTerminologyCommand.js\");\n/* harmony import */ var _commands_ListParallelDataCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/ListParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ListParallelDataCommand.js\");\n/* harmony import */ var _commands_ListTerminologiesCommand__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./commands/ListTerminologiesCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTerminologiesCommand.js\");\n/* harmony import */ var _commands_ListTextTranslationJobsCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/ListTextTranslationJobsCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTextTranslationJobsCommand.js\");\n/* harmony import */ var _commands_StartTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./commands/StartTextTranslationJobCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/StartTextTranslationJobCommand.js\");\n/* harmony import */ var _commands_StopTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/StopTextTranslationJobCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/StopTextTranslationJobCommand.js\");\n/* harmony import */ var _commands_TranslateTextCommand__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./commands/TranslateTextCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/TranslateTextCommand.js\");\n/* harmony import */ var _commands_UpdateParallelDataCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/UpdateParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/UpdateParallelDataCommand.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n *

Provides translation between one source language and another of the same set of\n * languages.

\n */\nvar Translate = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(Translate, _super);\n function Translate() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Translate.prototype.createParallelData = function (args, optionsOrCb, cb) {\n var command = new _commands_CreateParallelDataCommand__WEBPACK_IMPORTED_MODULE_2__[\"CreateParallelDataCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.deleteParallelData = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteParallelDataCommand__WEBPACK_IMPORTED_MODULE_3__[\"DeleteParallelDataCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.deleteTerminology = function (args, optionsOrCb, cb) {\n var command = new _commands_DeleteTerminologyCommand__WEBPACK_IMPORTED_MODULE_4__[\"DeleteTerminologyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.describeTextTranslationJob = function (args, optionsOrCb, cb) {\n var command = new _commands_DescribeTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_5__[\"DescribeTextTranslationJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.getParallelData = function (args, optionsOrCb, cb) {\n var command = new _commands_GetParallelDataCommand__WEBPACK_IMPORTED_MODULE_6__[\"GetParallelDataCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.getTerminology = function (args, optionsOrCb, cb) {\n var command = new _commands_GetTerminologyCommand__WEBPACK_IMPORTED_MODULE_7__[\"GetTerminologyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.importTerminology = function (args, optionsOrCb, cb) {\n var command = new _commands_ImportTerminologyCommand__WEBPACK_IMPORTED_MODULE_8__[\"ImportTerminologyCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.listParallelData = function (args, optionsOrCb, cb) {\n var command = new _commands_ListParallelDataCommand__WEBPACK_IMPORTED_MODULE_9__[\"ListParallelDataCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.listTerminologies = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTerminologiesCommand__WEBPACK_IMPORTED_MODULE_10__[\"ListTerminologiesCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.listTextTranslationJobs = function (args, optionsOrCb, cb) {\n var command = new _commands_ListTextTranslationJobsCommand__WEBPACK_IMPORTED_MODULE_11__[\"ListTextTranslationJobsCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.startTextTranslationJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StartTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_12__[\"StartTextTranslationJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.stopTextTranslationJob = function (args, optionsOrCb, cb) {\n var command = new _commands_StopTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_13__[\"StopTextTranslationJobCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.translateText = function (args, optionsOrCb, cb) {\n var command = new _commands_TranslateTextCommand__WEBPACK_IMPORTED_MODULE_14__[\"TranslateTextCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n Translate.prototype.updateParallelData = function (args, optionsOrCb, cb) {\n var command = new _commands_UpdateParallelDataCommand__WEBPACK_IMPORTED_MODULE_15__[\"UpdateParallelDataCommand\"](args);\n if (typeof optionsOrCb === \"function\") {\n this.send(command, optionsOrCb);\n }\n else if (typeof cb === \"function\") {\n if (typeof optionsOrCb !== \"object\")\n throw new Error(\"Expect http options but get \" + typeof optionsOrCb);\n this.send(command, optionsOrCb || {}, cb);\n }\n else {\n return this.send(command, optionsOrCb);\n }\n };\n return Translate;\n}(_TranslateClient__WEBPACK_IMPORTED_MODULE_1__[\"TranslateClient\"]));\n\n//# sourceMappingURL=Translate.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/Translate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/TranslateClient.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/TranslateClient.js ***! \***************************************************************************/ /*! exports provided: TranslateClient */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TranslateClient\", function() { return TranslateClient; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./runtimeConfig */ \"./node_modules/@aws-sdk/client-translate/dist/es/runtimeConfig.browser.js\");\n/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/config-resolver */ \"./node_modules/@aws-sdk/config-resolver/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ \"./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ \"./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-logger */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/middleware-signing */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/middleware-user-agent */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n *

Provides translation between one source language and another of the same set of\n * languages.

\n */\nvar TranslateClient = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TranslateClient, _super);\n function TranslateClient(configuration) {\n var _this = this;\n var _config_0 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig__WEBPACK_IMPORTED_MODULE_1__[\"ClientDefaultValues\"]), configuration);\n var _config_1 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveRegionConfig\"])(_config_0);\n var _config_2 = Object(_aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_2__[\"resolveEndpointsConfig\"])(_config_1);\n var _config_3 = Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"resolveAwsAuthConfig\"])(_config_2);\n var _config_4 = Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"resolveRetryConfig\"])(_config_3);\n var _config_5 = Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"resolveHostHeaderConfig\"])(_config_4);\n var _config_6 = Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"resolveUserAgentConfig\"])(_config_5);\n _this = _super.call(this, _config_6) || this;\n _this.config = _config_6;\n _this.middlewareStack.use(Object(_aws_sdk_middleware_signing__WEBPACK_IMPORTED_MODULE_7__[\"getAwsAuthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_6__[\"getRetryPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_3__[\"getContentLengthPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_4__[\"getHostHeaderPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_logger__WEBPACK_IMPORTED_MODULE_5__[\"getLoggerPlugin\"])(_this.config));\n _this.middlewareStack.use(Object(_aws_sdk_middleware_user_agent__WEBPACK_IMPORTED_MODULE_8__[\"getUserAgentPlugin\"])(_this.config));\n return _this;\n }\n TranslateClient.prototype.destroy = function () {\n _super.prototype.destroy.call(this);\n };\n return TranslateClient;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_9__[\"Client\"]));\n\n//# sourceMappingURL=TranslateClient.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/TranslateClient.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/CreateParallelDataCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/CreateParallelDataCommand.js ***! \**********************************************************************************************/ /*! exports provided: CreateParallelDataCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateParallelDataCommand\", function() { return CreateParallelDataCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates a parallel data resource in Amazon Translate by importing an input file from\n * Amazon S3. Parallel data files contain examples of source phrases and their translations from\n * your translation memory. By adding parallel data, you can influence the style, tone, and word\n * choice in your translation output.

\n */\nvar CreateParallelDataCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CreateParallelDataCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function CreateParallelDataCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n CreateParallelDataCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"CreateParallelDataCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateParallelDataRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"CreateParallelDataResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n CreateParallelDataCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1CreateParallelDataCommand\"])(input, context);\n };\n CreateParallelDataCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1CreateParallelDataCommand\"])(output, context);\n };\n return CreateParallelDataCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=CreateParallelDataCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/CreateParallelDataCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteParallelDataCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteParallelDataCommand.js ***! \**********************************************************************************************/ /*! exports provided: DeleteParallelDataCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteParallelDataCommand\", function() { return DeleteParallelDataCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Deletes a parallel data resource in Amazon Translate.

\n */\nvar DeleteParallelDataCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteParallelDataCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteParallelDataCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteParallelDataCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"DeleteParallelDataCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteParallelDataRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteParallelDataResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteParallelDataCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteParallelDataCommand\"])(input, context);\n };\n DeleteParallelDataCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteParallelDataCommand\"])(output, context);\n };\n return DeleteParallelDataCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteParallelDataCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteParallelDataCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteTerminologyCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteTerminologyCommand.js ***! \*********************************************************************************************/ /*! exports provided: DeleteTerminologyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteTerminologyCommand\", function() { return DeleteTerminologyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

A synchronous action that deletes a custom terminology.

\n */\nvar DeleteTerminologyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DeleteTerminologyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DeleteTerminologyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DeleteTerminologyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"DeleteTerminologyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DeleteTerminologyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: function (output) { return output; },\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DeleteTerminologyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DeleteTerminologyCommand\"])(input, context);\n };\n DeleteTerminologyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DeleteTerminologyCommand\"])(output, context);\n };\n return DeleteTerminologyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DeleteTerminologyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteTerminologyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/DescribeTextTranslationJobCommand.js": /*!******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/DescribeTextTranslationJobCommand.js ***! \******************************************************************************************************/ /*! exports provided: DescribeTextTranslationJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeTextTranslationJobCommand\", function() { return DescribeTextTranslationJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets the properties associated with an asycnhronous batch translation job including name,\n * ID, status, source and target languages, input/output S3 buckets, and so on.

\n */\nvar DescribeTextTranslationJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(DescribeTextTranslationJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function DescribeTextTranslationJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n DescribeTextTranslationJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"DescribeTextTranslationJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeTextTranslationJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"DescribeTextTranslationJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n DescribeTextTranslationJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1DescribeTextTranslationJobCommand\"])(input, context);\n };\n DescribeTextTranslationJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1DescribeTextTranslationJobCommand\"])(output, context);\n };\n return DescribeTextTranslationJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=DescribeTextTranslationJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/DescribeTextTranslationJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/GetParallelDataCommand.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/GetParallelDataCommand.js ***! \*******************************************************************************************/ /*! exports provided: GetParallelDataCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetParallelDataCommand\", function() { return GetParallelDataCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Provides information about a parallel data resource.

\n */\nvar GetParallelDataCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetParallelDataCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetParallelDataCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetParallelDataCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"GetParallelDataCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetParallelDataRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetParallelDataResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetParallelDataCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetParallelDataCommand\"])(input, context);\n };\n GetParallelDataCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetParallelDataCommand\"])(output, context);\n };\n return GetParallelDataCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetParallelDataCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/GetParallelDataCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/GetTerminologyCommand.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/GetTerminologyCommand.js ***! \******************************************************************************************/ /*! exports provided: GetTerminologyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetTerminologyCommand\", function() { return GetTerminologyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Retrieves a custom terminology.

\n */\nvar GetTerminologyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(GetTerminologyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function GetTerminologyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n GetTerminologyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"GetTerminologyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetTerminologyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"GetTerminologyResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n GetTerminologyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1GetTerminologyCommand\"])(input, context);\n };\n GetTerminologyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1GetTerminologyCommand\"])(output, context);\n };\n return GetTerminologyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=GetTerminologyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/GetTerminologyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/ImportTerminologyCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/ImportTerminologyCommand.js ***! \*********************************************************************************************/ /*! exports provided: ImportTerminologyCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImportTerminologyCommand\", function() { return ImportTerminologyCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Creates or updates a custom terminology, depending on whether or not one already exists\n * for the given terminology name. Importing a terminology with the same name as an existing one\n * will merge the terminologies based on the chosen merge strategy. Currently, the only supported\n * merge strategy is OVERWRITE, and so the imported terminology will overwrite an existing\n * terminology of the same name.

\n *

If you import a terminology that overwrites an existing one, the new terminology take up\n * to 10 minutes to fully propagate and be available for use in a translation due to cache\n * policies with the DataPlane service that performs the translations.

\n */\nvar ImportTerminologyCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ImportTerminologyCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ImportTerminologyCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ImportTerminologyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"ImportTerminologyCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ImportTerminologyRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ImportTerminologyResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ImportTerminologyCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ImportTerminologyCommand\"])(input, context);\n };\n ImportTerminologyCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ImportTerminologyCommand\"])(output, context);\n };\n return ImportTerminologyCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ImportTerminologyCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/ImportTerminologyCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/ListParallelDataCommand.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/ListParallelDataCommand.js ***! \********************************************************************************************/ /*! exports provided: ListParallelDataCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListParallelDataCommand\", function() { return ListParallelDataCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Provides a list of your parallel data resources in Amazon Translate.

\n */\nvar ListParallelDataCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListParallelDataCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListParallelDataCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListParallelDataCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"ListParallelDataCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListParallelDataRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListParallelDataResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListParallelDataCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListParallelDataCommand\"])(input, context);\n };\n ListParallelDataCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListParallelDataCommand\"])(output, context);\n };\n return ListParallelDataCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListParallelDataCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/ListParallelDataCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTerminologiesCommand.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTerminologiesCommand.js ***! \*********************************************************************************************/ /*! exports provided: ListTerminologiesCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTerminologiesCommand\", function() { return ListTerminologiesCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Provides a list of custom terminologies associated with your account.

\n */\nvar ListTerminologiesCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTerminologiesCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTerminologiesCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTerminologiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"ListTerminologiesCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTerminologiesRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTerminologiesResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTerminologiesCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListTerminologiesCommand\"])(input, context);\n };\n ListTerminologiesCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListTerminologiesCommand\"])(output, context);\n };\n return ListTerminologiesCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTerminologiesCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTerminologiesCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTextTranslationJobsCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTextTranslationJobsCommand.js ***! \***************************************************************************************************/ /*! exports provided: ListTextTranslationJobsCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTextTranslationJobsCommand\", function() { return ListTextTranslationJobsCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Gets a list of the batch translation jobs that you have submitted.

\n */\nvar ListTextTranslationJobsCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ListTextTranslationJobsCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function ListTextTranslationJobsCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n ListTextTranslationJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"ListTextTranslationJobsCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTextTranslationJobsRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"ListTextTranslationJobsResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n ListTextTranslationJobsCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1ListTextTranslationJobsCommand\"])(input, context);\n };\n ListTextTranslationJobsCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1ListTextTranslationJobsCommand\"])(output, context);\n };\n return ListTextTranslationJobsCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=ListTextTranslationJobsCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTextTranslationJobsCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/StartTextTranslationJobCommand.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/StartTextTranslationJobCommand.js ***! \***************************************************************************************************/ /*! exports provided: StartTextTranslationJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTextTranslationJobCommand\", function() { return StartTextTranslationJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Starts an asynchronous batch translation job. Batch translation jobs can be used to\n * translate large volumes of text across multiple documents at once. For more information, see\n * async.

\n *\n *

Batch translation jobs can be described with the DescribeTextTranslationJob operation, listed with the ListTextTranslationJobs operation, and stopped with the StopTextTranslationJob operation.

\n * \n *

Amazon Translate does not support batch translation of multiple source languages at once.

\n *
\n */\nvar StartTextTranslationJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StartTextTranslationJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StartTextTranslationJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StartTextTranslationJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"StartTextTranslationJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartTextTranslationJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StartTextTranslationJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StartTextTranslationJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StartTextTranslationJobCommand\"])(input, context);\n };\n StartTextTranslationJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StartTextTranslationJobCommand\"])(output, context);\n };\n return StartTextTranslationJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StartTextTranslationJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/StartTextTranslationJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/StopTextTranslationJobCommand.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/StopTextTranslationJobCommand.js ***! \**************************************************************************************************/ /*! exports provided: StopTextTranslationJobCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopTextTranslationJobCommand\", function() { return StopTextTranslationJobCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Stops an asynchronous batch translation job that is in progress.

\n *

If the job's state is IN_PROGRESS, the job will be marked for termination and\n * put into the STOP_REQUESTED state. If the job completes before it can be stopped,\n * it is put into the COMPLETED state. Otherwise, the job is put into the\n * STOPPED state.

\n *

Asynchronous batch translation jobs are started with the StartTextTranslationJob operation. You can use the DescribeTextTranslationJob or ListTextTranslationJobs\n * operations to get a batch translation job's JobId.

\n */\nvar StopTextTranslationJobCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(StopTextTranslationJobCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function StopTextTranslationJobCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n StopTextTranslationJobCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"StopTextTranslationJobCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopTextTranslationJobRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"StopTextTranslationJobResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n StopTextTranslationJobCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1StopTextTranslationJobCommand\"])(input, context);\n };\n StopTextTranslationJobCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1StopTextTranslationJobCommand\"])(output, context);\n };\n return StopTextTranslationJobCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=StopTextTranslationJobCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/StopTextTranslationJobCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/TranslateTextCommand.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/TranslateTextCommand.js ***! \*****************************************************************************************/ /*! exports provided: TranslateTextCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TranslateTextCommand\", function() { return TranslateTextCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Translates input text from the source language to the target language. For a list of\n * available languages and language codes, see what-is-languages.

\n */\nvar TranslateTextCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TranslateTextCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function TranslateTextCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n TranslateTextCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"TranslateTextCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TranslateTextRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"TranslateTextResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n TranslateTextCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1TranslateTextCommand\"])(input, context);\n };\n TranslateTextCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1TranslateTextCommand\"])(output, context);\n };\n return TranslateTextCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=TranslateTextCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/TranslateTextCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/commands/UpdateParallelDataCommand.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/commands/UpdateParallelDataCommand.js ***! \**********************************************************************************************/ /*! exports provided: UpdateParallelDataCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateParallelDataCommand\", function() { return UpdateParallelDataCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../models/models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony import */ var _protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../protocols/Aws_json1_1 */ \"./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js\");\n/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\n\n\n\n/**\n *

Updates a previously created parallel data resource by importing a new input file from\n * Amazon S3.

\n */\nvar UpdateParallelDataCommand = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(UpdateParallelDataCommand, _super);\n // Start section: command_properties\n // End section: command_properties\n function UpdateParallelDataCommand(input) {\n var _this = \n // Start section: command_constructor\n _super.call(this) || this;\n _this.input = input;\n return _this;\n // End section: command_constructor\n }\n /**\n * @internal\n */\n UpdateParallelDataCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {\n this.middlewareStack.use(Object(_aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_3__[\"getSerdePlugin\"])(configuration, this.serialize, this.deserialize));\n var stack = clientStack.concat(this.middlewareStack);\n var logger = configuration.logger;\n var clientName = \"TranslateClient\";\n var commandName = \"UpdateParallelDataCommand\";\n var handlerExecutionContext = {\n logger: logger,\n clientName: clientName,\n commandName: commandName,\n inputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UpdateParallelDataRequest\"].filterSensitiveLog,\n outputFilterSensitiveLog: _models_models_0__WEBPACK_IMPORTED_MODULE_1__[\"UpdateParallelDataResponse\"].filterSensitiveLog,\n };\n var requestHandler = configuration.requestHandler;\n return stack.resolve(function (request) {\n return requestHandler.handle(request.request, options || {});\n }, handlerExecutionContext);\n };\n UpdateParallelDataCommand.prototype.serialize = function (input, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"serializeAws_json1_1UpdateParallelDataCommand\"])(input, context);\n };\n UpdateParallelDataCommand.prototype.deserialize = function (output, context) {\n return Object(_protocols_Aws_json1_1__WEBPACK_IMPORTED_MODULE_2__[\"deserializeAws_json1_1UpdateParallelDataCommand\"])(output, context);\n };\n return UpdateParallelDataCommand;\n}(_aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_4__[\"Command\"]));\n\n//# sourceMappingURL=UpdateParallelDataCommand.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/commands/UpdateParallelDataCommand.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/endpoints.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/endpoints.js ***! \*********************************************************************/ /*! exports provided: defaultRegionInfoProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRegionInfoProvider\", function() { return defaultRegionInfoProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n\n// Partition default templates\nvar AWS_TEMPLATE = \"translate.{region}.amazonaws.com\";\nvar AWS_CN_TEMPLATE = \"translate.{region}.amazonaws.com.cn\";\nvar AWS_ISO_TEMPLATE = \"translate.{region}.c2s.ic.gov\";\nvar AWS_ISO_B_TEMPLATE = \"translate.{region}.sc2s.sgov.gov\";\nvar AWS_US_GOV_TEMPLATE = \"translate.{region}.amazonaws.com\";\n// Partition regions\nvar AWS_REGIONS = new Set([\n \"af-south-1\",\n \"ap-east-1\",\n \"ap-northeast-1\",\n \"ap-northeast-2\",\n \"ap-south-1\",\n \"ap-southeast-1\",\n \"ap-southeast-2\",\n \"ca-central-1\",\n \"eu-central-1\",\n \"eu-north-1\",\n \"eu-south-1\",\n \"eu-west-1\",\n \"eu-west-2\",\n \"eu-west-3\",\n \"me-south-1\",\n \"sa-east-1\",\n \"us-east-1\",\n \"us-east-2\",\n \"us-west-1\",\n \"us-west-2\",\n]);\nvar AWS_CN_REGIONS = new Set([\"cn-north-1\", \"cn-northwest-1\"]);\nvar AWS_ISO_REGIONS = new Set([\"us-iso-east-1\"]);\nvar AWS_ISO_B_REGIONS = new Set([\"us-isob-east-1\"]);\nvar AWS_US_GOV_REGIONS = new Set([\"us-gov-east-1\", \"us-gov-west-1\"]);\nvar defaultRegionInfoProvider = function (region, options) {\n var regionInfo = undefined;\n switch (region) {\n // First, try to match exact region names.\n case \"ap-east-1\":\n regionInfo = {\n hostname: \"translate.ap-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-1\":\n regionInfo = {\n hostname: \"translate.ap-northeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-northeast-2\":\n regionInfo = {\n hostname: \"translate.ap-northeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-south-1\":\n regionInfo = {\n hostname: \"translate.ap-south-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-1\":\n regionInfo = {\n hostname: \"translate.ap-southeast-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ap-southeast-2\":\n regionInfo = {\n hostname: \"translate.ap-southeast-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"ca-central-1\":\n regionInfo = {\n hostname: \"translate.ca-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-central-1\":\n regionInfo = {\n hostname: \"translate.eu-central-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-north-1\":\n regionInfo = {\n hostname: \"translate.eu-north-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-1\":\n regionInfo = {\n hostname: \"translate.eu-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-2\":\n regionInfo = {\n hostname: \"translate.eu-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"eu-west-3\":\n regionInfo = {\n hostname: \"translate.eu-west-3.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-1\":\n regionInfo = {\n hostname: \"translate.us-east-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-1-fips\":\n regionInfo = {\n hostname: \"translate-fips.us-east-1.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-1\",\n };\n break;\n case \"us-east-2\":\n regionInfo = {\n hostname: \"translate.us-east-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-east-2-fips\":\n regionInfo = {\n hostname: \"translate-fips.us-east-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-east-2\",\n };\n break;\n case \"us-gov-west-1\":\n regionInfo = {\n hostname: \"translate.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n };\n break;\n case \"us-gov-west-1-fips\":\n regionInfo = {\n hostname: \"translate-fips.us-gov-west-1.amazonaws.com\",\n partition: \"aws-us-gov\",\n signingRegion: \"us-gov-west-1\",\n };\n break;\n case \"us-iso-east-1\":\n regionInfo = {\n hostname: \"translate.us-iso-east-1.c2s.ic.gov\",\n partition: \"aws-iso\",\n };\n break;\n case \"us-west-1\":\n regionInfo = {\n hostname: \"translate.us-west-1.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-west-2\":\n regionInfo = {\n hostname: \"translate.us-west-2.amazonaws.com\",\n partition: \"aws\",\n };\n break;\n case \"us-west-2-fips\":\n regionInfo = {\n hostname: \"translate-fips.us-west-2.amazonaws.com\",\n partition: \"aws\",\n signingRegion: \"us-west-2\",\n };\n break;\n // Next, try to match partition endpoints.\n default:\n if (AWS_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n if (AWS_CN_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_CN_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-cn\",\n };\n }\n if (AWS_ISO_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso\",\n };\n }\n if (AWS_ISO_B_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_ISO_B_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-iso-b\",\n };\n }\n if (AWS_US_GOV_REGIONS.has(region)) {\n regionInfo = {\n hostname: AWS_US_GOV_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws-us-gov\",\n };\n }\n // Finally, assume it's an AWS partition endpoint.\n if (regionInfo === undefined) {\n regionInfo = {\n hostname: AWS_TEMPLATE.replace(\"{region}\", region),\n partition: \"aws\",\n };\n }\n }\n return Promise.resolve(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ signingService: \"translate\" }, regionInfo));\n};\n//# sourceMappingURL=endpoints.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/endpoints.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/index.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/index.js ***! \*****************************************************************/ /*! exports provided: TranslateClient, Translate, CreateParallelDataCommand, DeleteParallelDataCommand, DeleteTerminologyCommand, DescribeTextTranslationJobCommand, GetParallelDataCommand, GetTerminologyCommand, ImportTerminologyCommand, ListParallelDataCommand, paginateListParallelData, ListTerminologiesCommand, paginateListTerminologies, ListTextTranslationJobsCommand, paginateListTextTranslationJobs, StartTextTranslationJobCommand, StopTextTranslationJobCommand, TranslateTextCommand, UpdateParallelDataCommand, Term, AppliedTerminology, ConflictException, EncryptionKeyType, EncryptionKey, ParallelDataFormat, ParallelDataConfig, CreateParallelDataRequest, ParallelDataStatus, CreateParallelDataResponse, InternalServerException, InvalidParameterValueException, InvalidRequestException, LimitExceededException, TooManyRequestsException, ConcurrentModificationException, DeleteParallelDataRequest, DeleteParallelDataResponse, ResourceNotFoundException, DeleteTerminologyRequest, DescribeTextTranslationJobRequest, InputDataConfig, JobDetails, JobStatus, OutputDataConfig, TextTranslationJobProperties, DescribeTextTranslationJobResponse, GetParallelDataRequest, ParallelDataDataLocation, ParallelDataProperties, GetParallelDataResponse, TerminologyDataFormat, GetTerminologyRequest, TerminologyDataLocation, TerminologyProperties, GetTerminologyResponse, MergeStrategy, TerminologyData, ImportTerminologyRequest, ImportTerminologyResponse, ListParallelDataRequest, ListParallelDataResponse, ListTerminologiesRequest, ListTerminologiesResponse, InvalidFilterException, TextTranslationJobFilter, ListTextTranslationJobsRequest, ListTextTranslationJobsResponse, StartTextTranslationJobRequest, StartTextTranslationJobResponse, UnsupportedLanguagePairException, StopTextTranslationJobRequest, StopTextTranslationJobResponse, DetectedLanguageLowConfidenceException, ServiceUnavailableException, TextSizeLimitExceededException, TranslateTextRequest, TranslateTextResponse, UpdateParallelDataRequest, UpdateParallelDataResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _TranslateClient__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./TranslateClient */ \"./node_modules/@aws-sdk/client-translate/dist/es/TranslateClient.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TranslateClient\", function() { return _TranslateClient__WEBPACK_IMPORTED_MODULE_0__[\"TranslateClient\"]; });\n\n/* harmony import */ var _Translate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Translate */ \"./node_modules/@aws-sdk/client-translate/dist/es/Translate.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Translate\", function() { return _Translate__WEBPACK_IMPORTED_MODULE_1__[\"Translate\"]; });\n\n/* harmony import */ var _commands_CreateParallelDataCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/CreateParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/CreateParallelDataCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateParallelDataCommand\", function() { return _commands_CreateParallelDataCommand__WEBPACK_IMPORTED_MODULE_2__[\"CreateParallelDataCommand\"]; });\n\n/* harmony import */ var _commands_DeleteParallelDataCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/DeleteParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteParallelDataCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteParallelDataCommand\", function() { return _commands_DeleteParallelDataCommand__WEBPACK_IMPORTED_MODULE_3__[\"DeleteParallelDataCommand\"]; });\n\n/* harmony import */ var _commands_DeleteTerminologyCommand__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./commands/DeleteTerminologyCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/DeleteTerminologyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteTerminologyCommand\", function() { return _commands_DeleteTerminologyCommand__WEBPACK_IMPORTED_MODULE_4__[\"DeleteTerminologyCommand\"]; });\n\n/* harmony import */ var _commands_DescribeTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./commands/DescribeTextTranslationJobCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/DescribeTextTranslationJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTextTranslationJobCommand\", function() { return _commands_DescribeTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_5__[\"DescribeTextTranslationJobCommand\"]; });\n\n/* harmony import */ var _commands_GetParallelDataCommand__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./commands/GetParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/GetParallelDataCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetParallelDataCommand\", function() { return _commands_GetParallelDataCommand__WEBPACK_IMPORTED_MODULE_6__[\"GetParallelDataCommand\"]; });\n\n/* harmony import */ var _commands_GetTerminologyCommand__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./commands/GetTerminologyCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/GetTerminologyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTerminologyCommand\", function() { return _commands_GetTerminologyCommand__WEBPACK_IMPORTED_MODULE_7__[\"GetTerminologyCommand\"]; });\n\n/* harmony import */ var _commands_ImportTerminologyCommand__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./commands/ImportTerminologyCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ImportTerminologyCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportTerminologyCommand\", function() { return _commands_ImportTerminologyCommand__WEBPACK_IMPORTED_MODULE_8__[\"ImportTerminologyCommand\"]; });\n\n/* harmony import */ var _commands_ListParallelDataCommand__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./commands/ListParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ListParallelDataCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListParallelDataCommand\", function() { return _commands_ListParallelDataCommand__WEBPACK_IMPORTED_MODULE_9__[\"ListParallelDataCommand\"]; });\n\n/* harmony import */ var _pagination_ListParallelDataPaginator__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./pagination/ListParallelDataPaginator */ \"./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListParallelDataPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListParallelData\", function() { return _pagination_ListParallelDataPaginator__WEBPACK_IMPORTED_MODULE_10__[\"paginateListParallelData\"]; });\n\n/* harmony import */ var _commands_ListTerminologiesCommand__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./commands/ListTerminologiesCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTerminologiesCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTerminologiesCommand\", function() { return _commands_ListTerminologiesCommand__WEBPACK_IMPORTED_MODULE_11__[\"ListTerminologiesCommand\"]; });\n\n/* harmony import */ var _pagination_ListTerminologiesPaginator__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./pagination/ListTerminologiesPaginator */ \"./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListTerminologiesPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListTerminologies\", function() { return _pagination_ListTerminologiesPaginator__WEBPACK_IMPORTED_MODULE_12__[\"paginateListTerminologies\"]; });\n\n/* harmony import */ var _commands_ListTextTranslationJobsCommand__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./commands/ListTextTranslationJobsCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTextTranslationJobsCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTextTranslationJobsCommand\", function() { return _commands_ListTextTranslationJobsCommand__WEBPACK_IMPORTED_MODULE_13__[\"ListTextTranslationJobsCommand\"]; });\n\n/* harmony import */ var _pagination_ListTextTranslationJobsPaginator__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./pagination/ListTextTranslationJobsPaginator */ \"./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListTextTranslationJobsPaginator.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"paginateListTextTranslationJobs\", function() { return _pagination_ListTextTranslationJobsPaginator__WEBPACK_IMPORTED_MODULE_14__[\"paginateListTextTranslationJobs\"]; });\n\n/* harmony import */ var _commands_StartTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./commands/StartTextTranslationJobCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/StartTextTranslationJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextTranslationJobCommand\", function() { return _commands_StartTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_15__[\"StartTextTranslationJobCommand\"]; });\n\n/* harmony import */ var _commands_StopTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./commands/StopTextTranslationJobCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/StopTextTranslationJobCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTextTranslationJobCommand\", function() { return _commands_StopTextTranslationJobCommand__WEBPACK_IMPORTED_MODULE_16__[\"StopTextTranslationJobCommand\"]; });\n\n/* harmony import */ var _commands_TranslateTextCommand__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./commands/TranslateTextCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/TranslateTextCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TranslateTextCommand\", function() { return _commands_TranslateTextCommand__WEBPACK_IMPORTED_MODULE_17__[\"TranslateTextCommand\"]; });\n\n/* harmony import */ var _commands_UpdateParallelDataCommand__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./commands/UpdateParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/UpdateParallelDataCommand.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateParallelDataCommand\", function() { return _commands_UpdateParallelDataCommand__WEBPACK_IMPORTED_MODULE_18__[\"UpdateParallelDataCommand\"]; });\n\n/* harmony import */ var _pagination_Interfaces__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./pagination/Interfaces */ \"./node_modules/@aws-sdk/client-translate/dist/es/pagination/Interfaces.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _models_index__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./models/index */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Term\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"Term\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AppliedTerminology\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"AppliedTerminology\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionKeyType\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"EncryptionKeyType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionKey\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"EncryptionKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataFormat\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ParallelDataFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ParallelDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateParallelDataRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"CreateParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ParallelDataStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateParallelDataResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"CreateParallelDataResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"InternalServerException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterValueException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"InvalidParameterValueException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidRequestException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"InvalidRequestException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TooManyRequestsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ConcurrentModificationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteParallelDataRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"DeleteParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteParallelDataResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"DeleteParallelDataResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteTerminologyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"DeleteTerminologyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTextTranslationJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"DescribeTextTranslationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputDataConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"InputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobDetails\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"JobDetails\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"JobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputDataConfig\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"OutputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextTranslationJobProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TextTranslationJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTextTranslationJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"DescribeTextTranslationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetParallelDataRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"GetParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataDataLocation\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ParallelDataDataLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ParallelDataProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetParallelDataResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"GetParallelDataResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TerminologyDataFormat\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TerminologyDataFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTerminologyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"GetTerminologyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TerminologyDataLocation\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TerminologyDataLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TerminologyProperties\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TerminologyProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTerminologyResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"GetTerminologyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeStrategy\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"MergeStrategy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TerminologyData\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TerminologyData\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportTerminologyRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ImportTerminologyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportTerminologyResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ImportTerminologyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListParallelDataRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ListParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListParallelDataResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ListParallelDataResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTerminologiesRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ListTerminologiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTerminologiesResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ListTerminologiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidFilterException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"InvalidFilterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextTranslationJobFilter\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TextTranslationJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTextTranslationJobsRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ListTextTranslationJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTextTranslationJobsResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ListTextTranslationJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextTranslationJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"StartTextTranslationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextTranslationJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"StartTextTranslationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedLanguagePairException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"UnsupportedLanguagePairException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTextTranslationJobRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"StopTextTranslationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTextTranslationJobResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"StopTextTranslationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectedLanguageLowConfidenceException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"DetectedLanguageLowConfidenceException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceUnavailableException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"ServiceUnavailableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextSizeLimitExceededException\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TextSizeLimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TranslateTextRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TranslateTextRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TranslateTextResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"TranslateTextResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateParallelDataRequest\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"UpdateParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateParallelDataResponse\", function() { return _models_index__WEBPACK_IMPORTED_MODULE_20__[\"UpdateParallelDataResponse\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/models/index.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/models/index.js ***! \************************************************************************/ /*! exports provided: Term, AppliedTerminology, ConflictException, EncryptionKeyType, EncryptionKey, ParallelDataFormat, ParallelDataConfig, CreateParallelDataRequest, ParallelDataStatus, CreateParallelDataResponse, InternalServerException, InvalidParameterValueException, InvalidRequestException, LimitExceededException, TooManyRequestsException, ConcurrentModificationException, DeleteParallelDataRequest, DeleteParallelDataResponse, ResourceNotFoundException, DeleteTerminologyRequest, DescribeTextTranslationJobRequest, InputDataConfig, JobDetails, JobStatus, OutputDataConfig, TextTranslationJobProperties, DescribeTextTranslationJobResponse, GetParallelDataRequest, ParallelDataDataLocation, ParallelDataProperties, GetParallelDataResponse, TerminologyDataFormat, GetTerminologyRequest, TerminologyDataLocation, TerminologyProperties, GetTerminologyResponse, MergeStrategy, TerminologyData, ImportTerminologyRequest, ImportTerminologyResponse, ListParallelDataRequest, ListParallelDataResponse, ListTerminologiesRequest, ListTerminologiesResponse, InvalidFilterException, TextTranslationJobFilter, ListTextTranslationJobsRequest, ListTextTranslationJobsResponse, StartTextTranslationJobRequest, StartTextTranslationJobResponse, UnsupportedLanguagePairException, StopTextTranslationJobRequest, StopTextTranslationJobResponse, DetectedLanguageLowConfidenceException, ServiceUnavailableException, TextSizeLimitExceededException, TranslateTextRequest, TranslateTextResponse, UpdateParallelDataRequest, UpdateParallelDataResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _models_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./models_0 */ \"./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Term\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"Term\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AppliedTerminology\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"AppliedTerminology\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConflictException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionKeyType\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EncryptionKeyType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EncryptionKey\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"EncryptionKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataFormat\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ParallelDataFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ParallelDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateParallelDataRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ParallelDataStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CreateParallelDataResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"CreateParallelDataResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InternalServerException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterValueException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidParameterValueException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidRequestException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidRequestException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"LimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TooManyRequestsException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ConcurrentModificationException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteParallelDataRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteParallelDataResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteParallelDataResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ResourceNotFoundException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DeleteTerminologyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DeleteTerminologyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTextTranslationJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeTextTranslationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InputDataConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobDetails\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JobDetails\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"JobStatus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OutputDataConfig\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"OutputDataConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextTranslationJobProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextTranslationJobProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DescribeTextTranslationJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DescribeTextTranslationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetParallelDataRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataDataLocation\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ParallelDataDataLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ParallelDataProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetParallelDataResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetParallelDataResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TerminologyDataFormat\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TerminologyDataFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTerminologyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetTerminologyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TerminologyDataLocation\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TerminologyDataLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TerminologyProperties\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TerminologyProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GetTerminologyResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"GetTerminologyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MergeStrategy\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"MergeStrategy\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TerminologyData\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TerminologyData\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportTerminologyRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ImportTerminologyRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImportTerminologyResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ImportTerminologyResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListParallelDataRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListParallelDataResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListParallelDataResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTerminologiesRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTerminologiesRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTerminologiesResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTerminologiesResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InvalidFilterException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"InvalidFilterException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextTranslationJobFilter\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextTranslationJobFilter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTextTranslationJobsRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTextTranslationJobsRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListTextTranslationJobsResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ListTextTranslationJobsResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextTranslationJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartTextTranslationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StartTextTranslationJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StartTextTranslationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedLanguagePairException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UnsupportedLanguagePairException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTextTranslationJobRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopTextTranslationJobRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StopTextTranslationJobResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"StopTextTranslationJobResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetectedLanguageLowConfidenceException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"DetectedLanguageLowConfidenceException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceUnavailableException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"ServiceUnavailableException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextSizeLimitExceededException\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TextSizeLimitExceededException\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TranslateTextRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TranslateTextRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TranslateTextResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"TranslateTextResponse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateParallelDataRequest\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateParallelDataRequest\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UpdateParallelDataResponse\", function() { return _models_0__WEBPACK_IMPORTED_MODULE_0__[\"UpdateParallelDataResponse\"]; });\n\n\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/models/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js ***! \***************************************************************************/ /*! exports provided: Term, AppliedTerminology, ConflictException, EncryptionKeyType, EncryptionKey, ParallelDataFormat, ParallelDataConfig, CreateParallelDataRequest, ParallelDataStatus, CreateParallelDataResponse, InternalServerException, InvalidParameterValueException, InvalidRequestException, LimitExceededException, TooManyRequestsException, ConcurrentModificationException, DeleteParallelDataRequest, DeleteParallelDataResponse, ResourceNotFoundException, DeleteTerminologyRequest, DescribeTextTranslationJobRequest, InputDataConfig, JobDetails, JobStatus, OutputDataConfig, TextTranslationJobProperties, DescribeTextTranslationJobResponse, GetParallelDataRequest, ParallelDataDataLocation, ParallelDataProperties, GetParallelDataResponse, TerminologyDataFormat, GetTerminologyRequest, TerminologyDataLocation, TerminologyProperties, GetTerminologyResponse, MergeStrategy, TerminologyData, ImportTerminologyRequest, ImportTerminologyResponse, ListParallelDataRequest, ListParallelDataResponse, ListTerminologiesRequest, ListTerminologiesResponse, InvalidFilterException, TextTranslationJobFilter, ListTextTranslationJobsRequest, ListTextTranslationJobsResponse, StartTextTranslationJobRequest, StartTextTranslationJobResponse, UnsupportedLanguagePairException, StopTextTranslationJobRequest, StopTextTranslationJobResponse, DetectedLanguageLowConfidenceException, ServiceUnavailableException, TextSizeLimitExceededException, TranslateTextRequest, TranslateTextResponse, UpdateParallelDataRequest, UpdateParallelDataResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Term\", function() { return Term; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AppliedTerminology\", function() { return AppliedTerminology; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConflictException\", function() { return ConflictException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EncryptionKeyType\", function() { return EncryptionKeyType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EncryptionKey\", function() { return EncryptionKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataFormat\", function() { return ParallelDataFormat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataConfig\", function() { return ParallelDataConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateParallelDataRequest\", function() { return CreateParallelDataRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataStatus\", function() { return ParallelDataStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CreateParallelDataResponse\", function() { return CreateParallelDataResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InternalServerException\", function() { return InternalServerException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidParameterValueException\", function() { return InvalidParameterValueException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidRequestException\", function() { return InvalidRequestException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LimitExceededException\", function() { return LimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TooManyRequestsException\", function() { return TooManyRequestsException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ConcurrentModificationException\", function() { return ConcurrentModificationException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteParallelDataRequest\", function() { return DeleteParallelDataRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteParallelDataResponse\", function() { return DeleteParallelDataResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ResourceNotFoundException\", function() { return ResourceNotFoundException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DeleteTerminologyRequest\", function() { return DeleteTerminologyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeTextTranslationJobRequest\", function() { return DescribeTextTranslationJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InputDataConfig\", function() { return InputDataConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JobDetails\", function() { return JobDetails; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"JobStatus\", function() { return JobStatus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OutputDataConfig\", function() { return OutputDataConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextTranslationJobProperties\", function() { return TextTranslationJobProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DescribeTextTranslationJobResponse\", function() { return DescribeTextTranslationJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetParallelDataRequest\", function() { return GetParallelDataRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataDataLocation\", function() { return ParallelDataDataLocation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ParallelDataProperties\", function() { return ParallelDataProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetParallelDataResponse\", function() { return GetParallelDataResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TerminologyDataFormat\", function() { return TerminologyDataFormat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetTerminologyRequest\", function() { return GetTerminologyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TerminologyDataLocation\", function() { return TerminologyDataLocation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TerminologyProperties\", function() { return TerminologyProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GetTerminologyResponse\", function() { return GetTerminologyResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MergeStrategy\", function() { return MergeStrategy; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TerminologyData\", function() { return TerminologyData; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImportTerminologyRequest\", function() { return ImportTerminologyRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ImportTerminologyResponse\", function() { return ImportTerminologyResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListParallelDataRequest\", function() { return ListParallelDataRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListParallelDataResponse\", function() { return ListParallelDataResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTerminologiesRequest\", function() { return ListTerminologiesRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTerminologiesResponse\", function() { return ListTerminologiesResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InvalidFilterException\", function() { return InvalidFilterException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextTranslationJobFilter\", function() { return TextTranslationJobFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTextTranslationJobsRequest\", function() { return ListTextTranslationJobsRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ListTextTranslationJobsResponse\", function() { return ListTextTranslationJobsResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTextTranslationJobRequest\", function() { return StartTextTranslationJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StartTextTranslationJobResponse\", function() { return StartTextTranslationJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnsupportedLanguagePairException\", function() { return UnsupportedLanguagePairException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopTextTranslationJobRequest\", function() { return StopTextTranslationJobRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StopTextTranslationJobResponse\", function() { return StopTextTranslationJobResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DetectedLanguageLowConfidenceException\", function() { return DetectedLanguageLowConfidenceException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ServiceUnavailableException\", function() { return ServiceUnavailableException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TextSizeLimitExceededException\", function() { return TextSizeLimitExceededException; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TranslateTextRequest\", function() { return TranslateTextRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TranslateTextResponse\", function() { return TranslateTextResponse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateParallelDataRequest\", function() { return UpdateParallelDataRequest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UpdateParallelDataResponse\", function() { return UpdateParallelDataResponse; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/index.js\");\n\n\nvar Term;\n(function (Term) {\n Term.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(Term || (Term = {}));\nvar AppliedTerminology;\n(function (AppliedTerminology) {\n AppliedTerminology.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(AppliedTerminology || (AppliedTerminology = {}));\nvar ConflictException;\n(function (ConflictException) {\n ConflictException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ConflictException || (ConflictException = {}));\nvar EncryptionKeyType;\n(function (EncryptionKeyType) {\n EncryptionKeyType[\"KMS\"] = \"KMS\";\n})(EncryptionKeyType || (EncryptionKeyType = {}));\nvar EncryptionKey;\n(function (EncryptionKey) {\n EncryptionKey.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(EncryptionKey || (EncryptionKey = {}));\nvar ParallelDataFormat;\n(function (ParallelDataFormat) {\n ParallelDataFormat[\"CSV\"] = \"CSV\";\n ParallelDataFormat[\"TMX\"] = \"TMX\";\n ParallelDataFormat[\"TSV\"] = \"TSV\";\n})(ParallelDataFormat || (ParallelDataFormat = {}));\nvar ParallelDataConfig;\n(function (ParallelDataConfig) {\n ParallelDataConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ParallelDataConfig || (ParallelDataConfig = {}));\nvar CreateParallelDataRequest;\n(function (CreateParallelDataRequest) {\n CreateParallelDataRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateParallelDataRequest || (CreateParallelDataRequest = {}));\nvar ParallelDataStatus;\n(function (ParallelDataStatus) {\n ParallelDataStatus[\"ACTIVE\"] = \"ACTIVE\";\n ParallelDataStatus[\"CREATING\"] = \"CREATING\";\n ParallelDataStatus[\"DELETING\"] = \"DELETING\";\n ParallelDataStatus[\"FAILED\"] = \"FAILED\";\n ParallelDataStatus[\"UPDATING\"] = \"UPDATING\";\n})(ParallelDataStatus || (ParallelDataStatus = {}));\nvar CreateParallelDataResponse;\n(function (CreateParallelDataResponse) {\n CreateParallelDataResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(CreateParallelDataResponse || (CreateParallelDataResponse = {}));\nvar InternalServerException;\n(function (InternalServerException) {\n InternalServerException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InternalServerException || (InternalServerException = {}));\nvar InvalidParameterValueException;\n(function (InvalidParameterValueException) {\n InvalidParameterValueException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidParameterValueException || (InvalidParameterValueException = {}));\nvar InvalidRequestException;\n(function (InvalidRequestException) {\n InvalidRequestException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidRequestException || (InvalidRequestException = {}));\nvar LimitExceededException;\n(function (LimitExceededException) {\n LimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(LimitExceededException || (LimitExceededException = {}));\nvar TooManyRequestsException;\n(function (TooManyRequestsException) {\n TooManyRequestsException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TooManyRequestsException || (TooManyRequestsException = {}));\nvar ConcurrentModificationException;\n(function (ConcurrentModificationException) {\n ConcurrentModificationException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ConcurrentModificationException || (ConcurrentModificationException = {}));\nvar DeleteParallelDataRequest;\n(function (DeleteParallelDataRequest) {\n DeleteParallelDataRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteParallelDataRequest || (DeleteParallelDataRequest = {}));\nvar DeleteParallelDataResponse;\n(function (DeleteParallelDataResponse) {\n DeleteParallelDataResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteParallelDataResponse || (DeleteParallelDataResponse = {}));\nvar ResourceNotFoundException;\n(function (ResourceNotFoundException) {\n ResourceNotFoundException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ResourceNotFoundException || (ResourceNotFoundException = {}));\nvar DeleteTerminologyRequest;\n(function (DeleteTerminologyRequest) {\n DeleteTerminologyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DeleteTerminologyRequest || (DeleteTerminologyRequest = {}));\nvar DescribeTextTranslationJobRequest;\n(function (DescribeTextTranslationJobRequest) {\n DescribeTextTranslationJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeTextTranslationJobRequest || (DescribeTextTranslationJobRequest = {}));\nvar InputDataConfig;\n(function (InputDataConfig) {\n InputDataConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InputDataConfig || (InputDataConfig = {}));\nvar JobDetails;\n(function (JobDetails) {\n JobDetails.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(JobDetails || (JobDetails = {}));\nvar JobStatus;\n(function (JobStatus) {\n JobStatus[\"COMPLETED\"] = \"COMPLETED\";\n JobStatus[\"COMPLETED_WITH_ERROR\"] = \"COMPLETED_WITH_ERROR\";\n JobStatus[\"FAILED\"] = \"FAILED\";\n JobStatus[\"IN_PROGRESS\"] = \"IN_PROGRESS\";\n JobStatus[\"STOPPED\"] = \"STOPPED\";\n JobStatus[\"STOP_REQUESTED\"] = \"STOP_REQUESTED\";\n JobStatus[\"SUBMITTED\"] = \"SUBMITTED\";\n})(JobStatus || (JobStatus = {}));\nvar OutputDataConfig;\n(function (OutputDataConfig) {\n OutputDataConfig.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(OutputDataConfig || (OutputDataConfig = {}));\nvar TextTranslationJobProperties;\n(function (TextTranslationJobProperties) {\n TextTranslationJobProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TextTranslationJobProperties || (TextTranslationJobProperties = {}));\nvar DescribeTextTranslationJobResponse;\n(function (DescribeTextTranslationJobResponse) {\n DescribeTextTranslationJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DescribeTextTranslationJobResponse || (DescribeTextTranslationJobResponse = {}));\nvar GetParallelDataRequest;\n(function (GetParallelDataRequest) {\n GetParallelDataRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetParallelDataRequest || (GetParallelDataRequest = {}));\nvar ParallelDataDataLocation;\n(function (ParallelDataDataLocation) {\n ParallelDataDataLocation.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ParallelDataDataLocation || (ParallelDataDataLocation = {}));\nvar ParallelDataProperties;\n(function (ParallelDataProperties) {\n ParallelDataProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ParallelDataProperties || (ParallelDataProperties = {}));\nvar GetParallelDataResponse;\n(function (GetParallelDataResponse) {\n GetParallelDataResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetParallelDataResponse || (GetParallelDataResponse = {}));\nvar TerminologyDataFormat;\n(function (TerminologyDataFormat) {\n TerminologyDataFormat[\"CSV\"] = \"CSV\";\n TerminologyDataFormat[\"TMX\"] = \"TMX\";\n})(TerminologyDataFormat || (TerminologyDataFormat = {}));\nvar GetTerminologyRequest;\n(function (GetTerminologyRequest) {\n GetTerminologyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetTerminologyRequest || (GetTerminologyRequest = {}));\nvar TerminologyDataLocation;\n(function (TerminologyDataLocation) {\n TerminologyDataLocation.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TerminologyDataLocation || (TerminologyDataLocation = {}));\nvar TerminologyProperties;\n(function (TerminologyProperties) {\n TerminologyProperties.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TerminologyProperties || (TerminologyProperties = {}));\nvar GetTerminologyResponse;\n(function (GetTerminologyResponse) {\n GetTerminologyResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(GetTerminologyResponse || (GetTerminologyResponse = {}));\nvar MergeStrategy;\n(function (MergeStrategy) {\n MergeStrategy[\"OVERWRITE\"] = \"OVERWRITE\";\n})(MergeStrategy || (MergeStrategy = {}));\nvar TerminologyData;\n(function (TerminologyData) {\n TerminologyData.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.File && { File: _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__[\"SENSITIVE_STRING\"] }))); };\n})(TerminologyData || (TerminologyData = {}));\nvar ImportTerminologyRequest;\n(function (ImportTerminologyRequest) {\n ImportTerminologyRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj), (obj.TerminologyData && { TerminologyData: TerminologyData.filterSensitiveLog(obj.TerminologyData) }))); };\n})(ImportTerminologyRequest || (ImportTerminologyRequest = {}));\nvar ImportTerminologyResponse;\n(function (ImportTerminologyResponse) {\n ImportTerminologyResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ImportTerminologyResponse || (ImportTerminologyResponse = {}));\nvar ListParallelDataRequest;\n(function (ListParallelDataRequest) {\n ListParallelDataRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListParallelDataRequest || (ListParallelDataRequest = {}));\nvar ListParallelDataResponse;\n(function (ListParallelDataResponse) {\n ListParallelDataResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListParallelDataResponse || (ListParallelDataResponse = {}));\nvar ListTerminologiesRequest;\n(function (ListTerminologiesRequest) {\n ListTerminologiesRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTerminologiesRequest || (ListTerminologiesRequest = {}));\nvar ListTerminologiesResponse;\n(function (ListTerminologiesResponse) {\n ListTerminologiesResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTerminologiesResponse || (ListTerminologiesResponse = {}));\nvar InvalidFilterException;\n(function (InvalidFilterException) {\n InvalidFilterException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(InvalidFilterException || (InvalidFilterException = {}));\nvar TextTranslationJobFilter;\n(function (TextTranslationJobFilter) {\n TextTranslationJobFilter.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TextTranslationJobFilter || (TextTranslationJobFilter = {}));\nvar ListTextTranslationJobsRequest;\n(function (ListTextTranslationJobsRequest) {\n ListTextTranslationJobsRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTextTranslationJobsRequest || (ListTextTranslationJobsRequest = {}));\nvar ListTextTranslationJobsResponse;\n(function (ListTextTranslationJobsResponse) {\n ListTextTranslationJobsResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ListTextTranslationJobsResponse || (ListTextTranslationJobsResponse = {}));\nvar StartTextTranslationJobRequest;\n(function (StartTextTranslationJobRequest) {\n StartTextTranslationJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartTextTranslationJobRequest || (StartTextTranslationJobRequest = {}));\nvar StartTextTranslationJobResponse;\n(function (StartTextTranslationJobResponse) {\n StartTextTranslationJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StartTextTranslationJobResponse || (StartTextTranslationJobResponse = {}));\nvar UnsupportedLanguagePairException;\n(function (UnsupportedLanguagePairException) {\n UnsupportedLanguagePairException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UnsupportedLanguagePairException || (UnsupportedLanguagePairException = {}));\nvar StopTextTranslationJobRequest;\n(function (StopTextTranslationJobRequest) {\n StopTextTranslationJobRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopTextTranslationJobRequest || (StopTextTranslationJobRequest = {}));\nvar StopTextTranslationJobResponse;\n(function (StopTextTranslationJobResponse) {\n StopTextTranslationJobResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(StopTextTranslationJobResponse || (StopTextTranslationJobResponse = {}));\nvar DetectedLanguageLowConfidenceException;\n(function (DetectedLanguageLowConfidenceException) {\n DetectedLanguageLowConfidenceException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(DetectedLanguageLowConfidenceException || (DetectedLanguageLowConfidenceException = {}));\nvar ServiceUnavailableException;\n(function (ServiceUnavailableException) {\n ServiceUnavailableException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(ServiceUnavailableException || (ServiceUnavailableException = {}));\nvar TextSizeLimitExceededException;\n(function (TextSizeLimitExceededException) {\n TextSizeLimitExceededException.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TextSizeLimitExceededException || (TextSizeLimitExceededException = {}));\nvar TranslateTextRequest;\n(function (TranslateTextRequest) {\n TranslateTextRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TranslateTextRequest || (TranslateTextRequest = {}));\nvar TranslateTextResponse;\n(function (TranslateTextResponse) {\n TranslateTextResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(TranslateTextResponse || (TranslateTextResponse = {}));\nvar UpdateParallelDataRequest;\n(function (UpdateParallelDataRequest) {\n UpdateParallelDataRequest.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateParallelDataRequest || (UpdateParallelDataRequest = {}));\nvar UpdateParallelDataResponse;\n(function (UpdateParallelDataResponse) {\n UpdateParallelDataResponse.filterSensitiveLog = function (obj) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, obj)); };\n})(UpdateParallelDataResponse || (UpdateParallelDataResponse = {}));\n//# sourceMappingURL=models_0.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/models/models_0.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/package.json": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/package.json ***! \*********************************************************************/ /*! exports provided: name, description, version, scripts, main, types, module, browser, react-native, sideEffects, dependencies, devDependencies, engines, typesVersions, author, license, homepage, repository, default */ /***/ (function(module) { eval("module.exports = JSON.parse(\"{\\\"name\\\":\\\"@aws-sdk/client-translate\\\",\\\"description\\\":\\\"AWS SDK for JavaScript Translate Client for Node.js, Browser and React Native\\\",\\\"version\\\":\\\"3.6.1\\\",\\\"scripts\\\":{\\\"clean\\\":\\\"yarn remove-definitions && yarn remove-dist && yarn remove-documentation\\\",\\\"build-documentation\\\":\\\"yarn remove-documentation && typedoc ./\\\",\\\"prepublishOnly\\\":\\\"yarn build\\\",\\\"pretest\\\":\\\"yarn build:cjs\\\",\\\"remove-definitions\\\":\\\"rimraf ./types\\\",\\\"remove-dist\\\":\\\"rimraf ./dist\\\",\\\"remove-documentation\\\":\\\"rimraf ./docs\\\",\\\"test\\\":\\\"exit 0\\\",\\\"build:cjs\\\":\\\"tsc -p tsconfig.json\\\",\\\"build:es\\\":\\\"tsc -p tsconfig.es.json\\\",\\\"build\\\":\\\"yarn build:cjs && yarn build:es\\\",\\\"postbuild\\\":\\\"downlevel-dts types types/ts3.4\\\"},\\\"main\\\":\\\"./dist/cjs/index.js\\\",\\\"types\\\":\\\"./types/index.d.ts\\\",\\\"module\\\":\\\"./dist/es/index.js\\\",\\\"browser\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.browser\\\"},\\\"react-native\\\":{\\\"./runtimeConfig\\\":\\\"./runtimeConfig.native\\\"},\\\"sideEffects\\\":false,\\\"dependencies\\\":{\\\"@aws-crypto/sha256-browser\\\":\\\"^1.0.0\\\",\\\"@aws-crypto/sha256-js\\\":\\\"^1.0.0\\\",\\\"@aws-sdk/config-resolver\\\":\\\"3.6.1\\\",\\\"@aws-sdk/credential-provider-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/fetch-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/hash-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/invalid-dependency\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-content-length\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-host-header\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-logger\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-retry\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-serde\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-signing\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-stack\\\":\\\"3.6.1\\\",\\\"@aws-sdk/middleware-user-agent\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-config-provider\\\":\\\"3.6.1\\\",\\\"@aws-sdk/node-http-handler\\\":\\\"3.6.1\\\",\\\"@aws-sdk/protocol-http\\\":\\\"3.6.1\\\",\\\"@aws-sdk/smithy-client\\\":\\\"3.6.1\\\",\\\"@aws-sdk/types\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/url-parser-native\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-base64-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-body-length-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-user-agent-node\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-browser\\\":\\\"3.6.1\\\",\\\"@aws-sdk/util-utf8-node\\\":\\\"3.6.1\\\",\\\"tslib\\\":\\\"^2.0.0\\\",\\\"uuid\\\":\\\"^3.0.0\\\"},\\\"devDependencies\\\":{\\\"@aws-sdk/client-documentation-generator\\\":\\\"3.6.1\\\",\\\"@types/node\\\":\\\"^12.7.5\\\",\\\"@types/uuid\\\":\\\"^3.0.0\\\",\\\"downlevel-dts\\\":\\\"0.7.0\\\",\\\"jest\\\":\\\"^26.1.0\\\",\\\"rimraf\\\":\\\"^3.0.0\\\",\\\"typedoc\\\":\\\"^0.19.2\\\",\\\"typescript\\\":\\\"~4.1.2\\\"},\\\"engines\\\":{\\\"node\\\":\\\">=10.0.0\\\"},\\\"typesVersions\\\":{\\\"<4.0\\\":{\\\"types/*\\\":[\\\"types/ts3.4/*\\\"]}},\\\"author\\\":{\\\"name\\\":\\\"AWS SDK for JavaScript Team\\\",\\\"url\\\":\\\"https://aws.amazon.com/javascript/\\\"},\\\"license\\\":\\\"Apache-2.0\\\",\\\"homepage\\\":\\\"https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-translate\\\",\\\"repository\\\":{\\\"type\\\":\\\"git\\\",\\\"url\\\":\\\"https://github.com/aws/aws-sdk-js-v3.git\\\",\\\"directory\\\":\\\"clients/client-translate\\\"}}\");\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/package.json?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/pagination/Interfaces.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/pagination/Interfaces.js ***! \*********************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=Interfaces.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/pagination/Interfaces.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListParallelDataPaginator.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListParallelDataPaginator.js ***! \************************************************************************************************/ /*! exports provided: paginateListParallelData */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListParallelData\", function() { return paginateListParallelData; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Translate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Translate */ \"./node_modules/@aws-sdk/client-translate/dist/es/Translate.js\");\n/* harmony import */ var _TranslateClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../TranslateClient */ \"./node_modules/@aws-sdk/client-translate/dist/es/TranslateClient.js\");\n/* harmony import */ var _commands_ListParallelDataCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListParallelDataCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ListParallelDataCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListParallelDataCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListParallelDataCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listParallelData.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListParallelData(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListParallelData_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Translate__WEBPACK_IMPORTED_MODULE_1__[\"Translate\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _TranslateClient__WEBPACK_IMPORTED_MODULE_2__[\"TranslateClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Translate | TranslateClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListParallelDataPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListParallelDataPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListTerminologiesPaginator.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListTerminologiesPaginator.js ***! \*************************************************************************************************/ /*! exports provided: paginateListTerminologies */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListTerminologies\", function() { return paginateListTerminologies; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Translate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Translate */ \"./node_modules/@aws-sdk/client-translate/dist/es/Translate.js\");\n/* harmony import */ var _TranslateClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../TranslateClient */ \"./node_modules/@aws-sdk/client-translate/dist/es/TranslateClient.js\");\n/* harmony import */ var _commands_ListTerminologiesCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListTerminologiesCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTerminologiesCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListTerminologiesCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListTerminologiesCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listTerminologies.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListTerminologies(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListTerminologies_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Translate__WEBPACK_IMPORTED_MODULE_1__[\"Translate\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _TranslateClient__WEBPACK_IMPORTED_MODULE_2__[\"TranslateClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Translate | TranslateClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListTerminologiesPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListTerminologiesPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListTextTranslationJobsPaginator.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListTextTranslationJobsPaginator.js ***! \*******************************************************************************************************/ /*! exports provided: paginateListTextTranslationJobs */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"paginateListTextTranslationJobs\", function() { return paginateListTextTranslationJobs; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _Translate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Translate */ \"./node_modules/@aws-sdk/client-translate/dist/es/Translate.js\");\n/* harmony import */ var _TranslateClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../TranslateClient */ \"./node_modules/@aws-sdk/client-translate/dist/es/TranslateClient.js\");\n/* harmony import */ var _commands_ListTextTranslationJobsCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../commands/ListTextTranslationJobsCommand */ \"./node_modules/@aws-sdk/client-translate/dist/es/commands/ListTextTranslationJobsCommand.js\");\n\n\n\n\n/**\n * @private\n */\nvar makePagedClientRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.send.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([new _commands_ListTextTranslationJobsCommand__WEBPACK_IMPORTED_MODULE_3__[\"ListTextTranslationJobsCommand\"](input)], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\n/**\n * @private\n */\nvar makePagedRequest = function (client, input) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, client.listTextTranslationJobs.apply(client, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([input], args))];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n};\nfunction paginateListTextTranslationJobs(config, input) {\n var additionalArguments = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n additionalArguments[_i - 2] = arguments[_i];\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function paginateListTextTranslationJobs_1() {\n var token, hasNext, page;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n token = config.startingToken || undefined;\n hasNext = true;\n _a.label = 1;\n case 1:\n if (!hasNext) return [3 /*break*/, 9];\n input.NextToken = token;\n input[\"MaxResults\"] = config.pageSize;\n if (!(config.client instanceof _Translate__WEBPACK_IMPORTED_MODULE_1__[\"Translate\"])) return [3 /*break*/, 3];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 2:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 3:\n if (!(config.client instanceof _TranslateClient__WEBPACK_IMPORTED_MODULE_2__[\"TranslateClient\"])) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(makePagedClientRequest.apply(void 0, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([config.client, input], additionalArguments)))];\n case 4:\n page = _a.sent();\n return [3 /*break*/, 6];\n case 5: throw new Error(\"Invalid client, expected Translate | TranslateClient\");\n case 6: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(page)];\n case 7: return [4 /*yield*/, _a.sent()];\n case 8:\n _a.sent();\n token = page.NextToken;\n hasNext = !!token;\n return [3 /*break*/, 1];\n case 9: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(undefined)];\n case 10: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=ListTextTranslationJobsPaginator.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/pagination/ListTextTranslationJobsPaginator.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js ***! \*********************************************************************************/ /*! exports provided: serializeAws_json1_1CreateParallelDataCommand, serializeAws_json1_1DeleteParallelDataCommand, serializeAws_json1_1DeleteTerminologyCommand, serializeAws_json1_1DescribeTextTranslationJobCommand, serializeAws_json1_1GetParallelDataCommand, serializeAws_json1_1GetTerminologyCommand, serializeAws_json1_1ImportTerminologyCommand, serializeAws_json1_1ListParallelDataCommand, serializeAws_json1_1ListTerminologiesCommand, serializeAws_json1_1ListTextTranslationJobsCommand, serializeAws_json1_1StartTextTranslationJobCommand, serializeAws_json1_1StopTextTranslationJobCommand, serializeAws_json1_1TranslateTextCommand, serializeAws_json1_1UpdateParallelDataCommand, deserializeAws_json1_1CreateParallelDataCommand, deserializeAws_json1_1DeleteParallelDataCommand, deserializeAws_json1_1DeleteTerminologyCommand, deserializeAws_json1_1DescribeTextTranslationJobCommand, deserializeAws_json1_1GetParallelDataCommand, deserializeAws_json1_1GetTerminologyCommand, deserializeAws_json1_1ImportTerminologyCommand, deserializeAws_json1_1ListParallelDataCommand, deserializeAws_json1_1ListTerminologiesCommand, deserializeAws_json1_1ListTextTranslationJobsCommand, deserializeAws_json1_1StartTextTranslationJobCommand, deserializeAws_json1_1StopTextTranslationJobCommand, deserializeAws_json1_1TranslateTextCommand, deserializeAws_json1_1UpdateParallelDataCommand */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1CreateParallelDataCommand\", function() { return serializeAws_json1_1CreateParallelDataCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteParallelDataCommand\", function() { return serializeAws_json1_1DeleteParallelDataCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DeleteTerminologyCommand\", function() { return serializeAws_json1_1DeleteTerminologyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1DescribeTextTranslationJobCommand\", function() { return serializeAws_json1_1DescribeTextTranslationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetParallelDataCommand\", function() { return serializeAws_json1_1GetParallelDataCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1GetTerminologyCommand\", function() { return serializeAws_json1_1GetTerminologyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ImportTerminologyCommand\", function() { return serializeAws_json1_1ImportTerminologyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListParallelDataCommand\", function() { return serializeAws_json1_1ListParallelDataCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListTerminologiesCommand\", function() { return serializeAws_json1_1ListTerminologiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1ListTextTranslationJobsCommand\", function() { return serializeAws_json1_1ListTextTranslationJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StartTextTranslationJobCommand\", function() { return serializeAws_json1_1StartTextTranslationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1StopTextTranslationJobCommand\", function() { return serializeAws_json1_1StopTextTranslationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1TranslateTextCommand\", function() { return serializeAws_json1_1TranslateTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeAws_json1_1UpdateParallelDataCommand\", function() { return serializeAws_json1_1UpdateParallelDataCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1CreateParallelDataCommand\", function() { return deserializeAws_json1_1CreateParallelDataCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteParallelDataCommand\", function() { return deserializeAws_json1_1DeleteParallelDataCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DeleteTerminologyCommand\", function() { return deserializeAws_json1_1DeleteTerminologyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1DescribeTextTranslationJobCommand\", function() { return deserializeAws_json1_1DescribeTextTranslationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetParallelDataCommand\", function() { return deserializeAws_json1_1GetParallelDataCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1GetTerminologyCommand\", function() { return deserializeAws_json1_1GetTerminologyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ImportTerminologyCommand\", function() { return deserializeAws_json1_1ImportTerminologyCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListParallelDataCommand\", function() { return deserializeAws_json1_1ListParallelDataCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListTerminologiesCommand\", function() { return deserializeAws_json1_1ListTerminologiesCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1ListTextTranslationJobsCommand\", function() { return deserializeAws_json1_1ListTextTranslationJobsCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StartTextTranslationJobCommand\", function() { return deserializeAws_json1_1StartTextTranslationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1StopTextTranslationJobCommand\", function() { return deserializeAws_json1_1StopTextTranslationJobCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1TranslateTextCommand\", function() { return deserializeAws_json1_1TranslateTextCommand; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializeAws_json1_1UpdateParallelDataCommand\", function() { return deserializeAws_json1_1UpdateParallelDataCommand; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! uuid */ \"./node_modules/uuid/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_2__);\n\n\n\nvar serializeAws_json1_1CreateParallelDataCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.CreateParallelData\",\n };\n body = JSON.stringify(serializeAws_json1_1CreateParallelDataRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteParallelDataCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.DeleteParallelData\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteParallelDataRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DeleteTerminologyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.DeleteTerminology\",\n };\n body = JSON.stringify(serializeAws_json1_1DeleteTerminologyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1DescribeTextTranslationJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.DescribeTextTranslationJob\",\n };\n body = JSON.stringify(serializeAws_json1_1DescribeTextTranslationJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetParallelDataCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.GetParallelData\",\n };\n body = JSON.stringify(serializeAws_json1_1GetParallelDataRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1GetTerminologyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.GetTerminology\",\n };\n body = JSON.stringify(serializeAws_json1_1GetTerminologyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ImportTerminologyCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.ImportTerminology\",\n };\n body = JSON.stringify(serializeAws_json1_1ImportTerminologyRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListParallelDataCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.ListParallelData\",\n };\n body = JSON.stringify(serializeAws_json1_1ListParallelDataRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListTerminologiesCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.ListTerminologies\",\n };\n body = JSON.stringify(serializeAws_json1_1ListTerminologiesRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1ListTextTranslationJobsCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.ListTextTranslationJobs\",\n };\n body = JSON.stringify(serializeAws_json1_1ListTextTranslationJobsRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StartTextTranslationJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.StartTextTranslationJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StartTextTranslationJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1StopTextTranslationJobCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.StopTextTranslationJob\",\n };\n body = JSON.stringify(serializeAws_json1_1StopTextTranslationJobRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1TranslateTextCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.TranslateText\",\n };\n body = JSON.stringify(serializeAws_json1_1TranslateTextRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar serializeAws_json1_1UpdateParallelDataCommand = function (input, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var headers, body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n headers = {\n \"content-type\": \"application/x-amz-json-1.1\",\n \"x-amz-target\": \"AWSShineFrontendService_20170701.UpdateParallelData\",\n };\n body = JSON.stringify(serializeAws_json1_1UpdateParallelDataRequest(input, context));\n return [2 /*return*/, buildHttpRpcRequest(context, headers, \"/\", undefined, body)];\n });\n}); };\nvar deserializeAws_json1_1CreateParallelDataCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1CreateParallelDataCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1CreateParallelDataResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1CreateParallelDataCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, parsedBody, message;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _j = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_j.body = _k.sent(), _j)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ConflictException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#ConflictException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 4];\n case \"InvalidParameterValueException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#InvalidParameterValueException\": return [3 /*break*/, 6];\n case \"InvalidRequestException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#InvalidRequestException\": return [3 /*break*/, 8];\n case \"LimitExceededException\": return [3 /*break*/, 10];\n case \"com.amazonaws.translate#LimitExceededException\": return [3 /*break*/, 10];\n case \"TooManyRequestsException\": return [3 /*break*/, 12];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 12];\n }\n return [3 /*break*/, 14];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ConflictExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterValueExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_k.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 15];\n case 14:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _k.label = 15;\n case 15:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteParallelDataCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteParallelDataCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DeleteParallelDataResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteParallelDataCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteTerminologyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DeleteTerminologyCommandError(output, context)];\n }\n return [4 /*yield*/, collectBody(output.body, context)];\n case 1:\n _a.sent();\n response = {\n $metadata: deserializeMetadata(output),\n };\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DeleteTerminologyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterValueExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeTextTranslationJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1DescribeTextTranslationJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1DescribeTextTranslationJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1DescribeTextTranslationJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"TooManyRequestsException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetParallelDataCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetParallelDataCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetParallelDataResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetParallelDataCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterValueExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1GetTerminologyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1GetTerminologyCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1GetTerminologyResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1GetTerminologyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterValueExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ImportTerminologyCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ImportTerminologyCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ImportTerminologyResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ImportTerminologyCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"LimitExceededException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#LimitExceededException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterValueExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListParallelDataCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListParallelDataCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListParallelDataResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListParallelDataCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"TooManyRequestsException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterValueExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTerminologiesCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListTerminologiesCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListTerminologiesResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTerminologiesCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InvalidParameterValueException\": return [3 /*break*/, 4];\n case \"TooManyRequestsException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterValueExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTextTranslationJobsCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1ListTextTranslationJobsCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1ListTextTranslationJobsResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1ListTextTranslationJobsCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, parsedBody, message;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _g = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_g.body = _h.sent(), _g)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidFilterException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InvalidFilterException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#InvalidRequestException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 8];\n }\n return [3 /*break*/, 10];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidFilterExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_h.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 11];\n case 10:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _h.label = 11;\n case 11:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StartTextTranslationJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StartTextTranslationJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StartTextTranslationJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StartTextTranslationJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, parsedBody, message;\n var _h;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_j) {\n switch (_j.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _h = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_h.body = _j.sent(), _h)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"InvalidRequestException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InvalidRequestException\": return [3 /*break*/, 4];\n case \"ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#ResourceNotFoundException\": return [3 /*break*/, 6];\n case \"TooManyRequestsException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 8];\n case \"UnsupportedLanguagePairException\": return [3 /*break*/, 10];\n case \"com.amazonaws.translate#UnsupportedLanguagePairException\": return [3 /*break*/, 10];\n }\n return [3 /*break*/, 12];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguagePairExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_j.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 13];\n case 12:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _j.label = 13;\n case 13:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1StopTextTranslationJobCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1StopTextTranslationJobCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1StopTextTranslationJobResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1StopTextTranslationJobCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, parsedBody, message;\n var _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _f = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.body = _g.sent(), _f)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"InternalServerException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 2];\n case \"ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#ResourceNotFoundException\": return [3 /*break*/, 4];\n case \"TooManyRequestsException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 6];\n }\n return [3 /*break*/, 8];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_g.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 9];\n case 8:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _g.label = 9;\n case 9:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1TranslateTextCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1TranslateTextCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1TranslateTextResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1TranslateTextCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"DetectedLanguageLowConfidenceException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#DetectedLanguageLowConfidenceException\": return [3 /*break*/, 2];\n case \"InternalServerException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 4];\n case \"InvalidRequestException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#InvalidRequestException\": return [3 /*break*/, 6];\n case \"ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#ResourceNotFoundException\": return [3 /*break*/, 8];\n case \"ServiceUnavailableException\": return [3 /*break*/, 10];\n case \"com.amazonaws.translate#ServiceUnavailableException\": return [3 /*break*/, 10];\n case \"TextSizeLimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.translate#TextSizeLimitExceededException\": return [3 /*break*/, 12];\n case \"TooManyRequestsException\": return [3 /*break*/, 14];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 14];\n case \"UnsupportedLanguagePairException\": return [3 /*break*/, 16];\n case \"com.amazonaws.translate#UnsupportedLanguagePairException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1DetectedLanguageLowConfidenceExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ServiceUnavailableExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TextSizeLimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1UnsupportedLanguagePairExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateParallelDataCommand = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var data, contents, response;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (output.statusCode >= 300) {\n return [2 /*return*/, deserializeAws_json1_1UpdateParallelDataCommandError(output, context)];\n }\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n data = _a.sent();\n contents = {};\n contents = deserializeAws_json1_1UpdateParallelDataResponse(data, context);\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ $metadata: deserializeMetadata(output) }, contents);\n return [2 /*return*/, Promise.resolve(response)];\n }\n });\n}); };\nvar deserializeAws_json1_1UpdateParallelDataCommandError = function (output, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedOutput, _a, response, errorCode, _b, _c, _d, _e, _f, _g, _h, _j, _k, parsedBody, message;\n var _l;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_m) {\n switch (_m.label) {\n case 0:\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, output)];\n _l = {};\n return [4 /*yield*/, parseBody(output.body, context)];\n case 1:\n parsedOutput = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_l.body = _m.sent(), _l)]));\n errorCode = \"UnknownError\";\n errorCode = loadRestJsonErrorCode(output, parsedOutput.body);\n _b = errorCode;\n switch (_b) {\n case \"ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"com.amazonaws.translate#ConcurrentModificationException\": return [3 /*break*/, 2];\n case \"ConflictException\": return [3 /*break*/, 4];\n case \"com.amazonaws.translate#ConflictException\": return [3 /*break*/, 4];\n case \"InternalServerException\": return [3 /*break*/, 6];\n case \"com.amazonaws.translate#InternalServerException\": return [3 /*break*/, 6];\n case \"InvalidParameterValueException\": return [3 /*break*/, 8];\n case \"com.amazonaws.translate#InvalidParameterValueException\": return [3 /*break*/, 8];\n case \"InvalidRequestException\": return [3 /*break*/, 10];\n case \"com.amazonaws.translate#InvalidRequestException\": return [3 /*break*/, 10];\n case \"LimitExceededException\": return [3 /*break*/, 12];\n case \"com.amazonaws.translate#LimitExceededException\": return [3 /*break*/, 12];\n case \"ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"com.amazonaws.translate#ResourceNotFoundException\": return [3 /*break*/, 14];\n case \"TooManyRequestsException\": return [3 /*break*/, 16];\n case \"com.amazonaws.translate#TooManyRequestsException\": return [3 /*break*/, 16];\n }\n return [3 /*break*/, 18];\n case 2:\n _c = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context)];\n case 3:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 4:\n _d = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ConflictExceptionResponse(parsedOutput, context)];\n case 5:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _d.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 6:\n _e = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InternalServerExceptionResponse(parsedOutput, context)];\n case 7:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _e.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 8:\n _f = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidParameterValueExceptionResponse(parsedOutput, context)];\n case 9:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _f.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 10:\n _g = [{}];\n return [4 /*yield*/, deserializeAws_json1_1InvalidRequestExceptionResponse(parsedOutput, context)];\n case 11:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _g.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 12:\n _h = [{}];\n return [4 /*yield*/, deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context)];\n case 13:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _h.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 14:\n _j = [{}];\n return [4 /*yield*/, deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context)];\n case 15:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _j.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 16:\n _k = [{}];\n return [4 /*yield*/, deserializeAws_json1_1TooManyRequestsExceptionResponse(parsedOutput, context)];\n case 17:\n response = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _k.concat([(_m.sent())])), { name: errorCode, $metadata: deserializeMetadata(output) }]);\n return [3 /*break*/, 19];\n case 18:\n parsedBody = parsedOutput.body;\n errorCode = parsedBody.code || parsedBody.Code || errorCode;\n response = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, parsedBody), { name: \"\" + errorCode, message: parsedBody.message || parsedBody.Message || errorCode, $fault: \"client\", $metadata: deserializeMetadata(output) });\n _m.label = 19;\n case 19:\n message = response.message || response.Message || errorCode;\n response.message = message;\n delete response.Message;\n return [2 /*return*/, Promise.reject(Object.assign(new Error(message), response))];\n }\n });\n}); };\nvar deserializeAws_json1_1ConcurrentModificationExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ConcurrentModificationException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ConcurrentModificationException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ConflictExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ConflictException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ConflictException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1DetectedLanguageLowConfidenceExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1DetectedLanguageLowConfidenceException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"DetectedLanguageLowConfidenceException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InternalServerExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InternalServerException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InternalServerException\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidFilterExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidFilterException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidFilterException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidParameterValueExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidParameterValueException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidParameterValueException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1InvalidRequestExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1InvalidRequestException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"InvalidRequestException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1LimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1LimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"LimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ResourceNotFoundExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ResourceNotFoundException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ResourceNotFoundException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1ServiceUnavailableExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1ServiceUnavailableException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"ServiceUnavailableException\", $fault: \"server\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1TextSizeLimitExceededExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1TextSizeLimitExceededException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"TextSizeLimitExceededException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1TooManyRequestsExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1TooManyRequestsException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"TooManyRequestsException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar deserializeAws_json1_1UnsupportedLanguagePairExceptionResponse = function (parsedOutput, context) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var body, deserialized, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n body = parsedOutput.body;\n deserialized = deserializeAws_json1_1UnsupportedLanguagePairException(body, context);\n contents = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ name: \"UnsupportedLanguagePairException\", $fault: \"client\", $metadata: deserializeMetadata(parsedOutput) }, deserialized);\n return [2 /*return*/, contents];\n });\n}); };\nvar serializeAws_json1_1CreateParallelDataRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientToken: (_a = input.ClientToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.Description !== undefined && input.Description !== null && { Description: input.Description })), (input.EncryptionKey !== undefined &&\n input.EncryptionKey !== null && {\n EncryptionKey: serializeAws_json1_1EncryptionKey(input.EncryptionKey, context),\n })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.ParallelDataConfig !== undefined &&\n input.ParallelDataConfig !== null && {\n ParallelDataConfig: serializeAws_json1_1ParallelDataConfig(input.ParallelDataConfig, context),\n }));\n};\nvar serializeAws_json1_1DeleteParallelDataRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name }));\n};\nvar serializeAws_json1_1DeleteTerminologyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name }));\n};\nvar serializeAws_json1_1DescribeTextTranslationJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1EncryptionKey = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Id !== undefined && input.Id !== null && { Id: input.Id })), (input.Type !== undefined && input.Type !== null && { Type: input.Type }));\n};\nvar serializeAws_json1_1GetParallelDataRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name }));\n};\nvar serializeAws_json1_1GetTerminologyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.TerminologyDataFormat !== undefined &&\n input.TerminologyDataFormat !== null && { TerminologyDataFormat: input.TerminologyDataFormat }));\n};\nvar serializeAws_json1_1ImportTerminologyRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Description !== undefined && input.Description !== null && { Description: input.Description })), (input.EncryptionKey !== undefined &&\n input.EncryptionKey !== null && {\n EncryptionKey: serializeAws_json1_1EncryptionKey(input.EncryptionKey, context),\n })), (input.MergeStrategy !== undefined && input.MergeStrategy !== null && { MergeStrategy: input.MergeStrategy })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.TerminologyData !== undefined &&\n input.TerminologyData !== null && {\n TerminologyData: serializeAws_json1_1TerminologyData(input.TerminologyData, context),\n }));\n};\nvar serializeAws_json1_1InputDataConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.ContentType !== undefined && input.ContentType !== null && { ContentType: input.ContentType })), (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1ListParallelDataRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListTerminologiesRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1ListTextTranslationJobsRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Filter !== undefined &&\n input.Filter !== null && { Filter: serializeAws_json1_1TextTranslationJobFilter(input.Filter, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));\n};\nvar serializeAws_json1_1OutputDataConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1ParallelDataConfig = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.Format !== undefined && input.Format !== null && { Format: input.Format })), (input.S3Uri !== undefined && input.S3Uri !== null && { S3Uri: input.S3Uri }));\n};\nvar serializeAws_json1_1ResourceNameList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1StartTextTranslationJobRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientToken: (_a = input.ClientToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.DataAccessRoleArn !== undefined &&\n input.DataAccessRoleArn !== null && { DataAccessRoleArn: input.DataAccessRoleArn })), (input.InputDataConfig !== undefined &&\n input.InputDataConfig !== null && {\n InputDataConfig: serializeAws_json1_1InputDataConfig(input.InputDataConfig, context),\n })), (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.OutputDataConfig !== undefined &&\n input.OutputDataConfig !== null && {\n OutputDataConfig: serializeAws_json1_1OutputDataConfig(input.OutputDataConfig, context),\n })), (input.ParallelDataNames !== undefined &&\n input.ParallelDataNames !== null && {\n ParallelDataNames: serializeAws_json1_1ResourceNameList(input.ParallelDataNames, context),\n })), (input.SourceLanguageCode !== undefined &&\n input.SourceLanguageCode !== null && { SourceLanguageCode: input.SourceLanguageCode })), (input.TargetLanguageCodes !== undefined &&\n input.TargetLanguageCodes !== null && {\n TargetLanguageCodes: serializeAws_json1_1TargetLanguageCodeStringList(input.TargetLanguageCodes, context),\n })), (input.TerminologyNames !== undefined &&\n input.TerminologyNames !== null && {\n TerminologyNames: serializeAws_json1_1ResourceNameList(input.TerminologyNames, context),\n }));\n};\nvar serializeAws_json1_1StopTextTranslationJobRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobId !== undefined && input.JobId !== null && { JobId: input.JobId }));\n};\nvar serializeAws_json1_1TargetLanguageCodeStringList = function (input, context) {\n return input\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar serializeAws_json1_1TerminologyData = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.File !== undefined && input.File !== null && { File: context.base64Encoder(input.File) })), (input.Format !== undefined && input.Format !== null && { Format: input.Format }));\n};\nvar serializeAws_json1_1TextTranslationJobFilter = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.JobName !== undefined && input.JobName !== null && { JobName: input.JobName })), (input.JobStatus !== undefined && input.JobStatus !== null && { JobStatus: input.JobStatus })), (input.SubmittedAfterTime !== undefined &&\n input.SubmittedAfterTime !== null && {\n SubmittedAfterTime: Math.round(input.SubmittedAfterTime.getTime() / 1000),\n })), (input.SubmittedBeforeTime !== undefined &&\n input.SubmittedBeforeTime !== null && {\n SubmittedBeforeTime: Math.round(input.SubmittedBeforeTime.getTime() / 1000),\n }));\n};\nvar serializeAws_json1_1TranslateTextRequest = function (input, context) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, (input.SourceLanguageCode !== undefined &&\n input.SourceLanguageCode !== null && { SourceLanguageCode: input.SourceLanguageCode })), (input.TargetLanguageCode !== undefined &&\n input.TargetLanguageCode !== null && { TargetLanguageCode: input.TargetLanguageCode })), (input.TerminologyNames !== undefined &&\n input.TerminologyNames !== null && {\n TerminologyNames: serializeAws_json1_1ResourceNameList(input.TerminologyNames, context),\n })), (input.Text !== undefined && input.Text !== null && { Text: input.Text }));\n};\nvar serializeAws_json1_1UpdateParallelDataRequest = function (input, context) {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ ClientToken: (_a = input.ClientToken) !== null && _a !== void 0 ? _a : Object(uuid__WEBPACK_IMPORTED_MODULE_2__[\"v4\"])() }, (input.Description !== undefined && input.Description !== null && { Description: input.Description })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.ParallelDataConfig !== undefined &&\n input.ParallelDataConfig !== null && {\n ParallelDataConfig: serializeAws_json1_1ParallelDataConfig(input.ParallelDataConfig, context),\n }));\n};\nvar deserializeAws_json1_1AppliedTerminology = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Terms: output.Terms !== undefined && output.Terms !== null\n ? deserializeAws_json1_1TermList(output.Terms, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1AppliedTerminologyList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1AppliedTerminology(entry, context);\n });\n};\nvar deserializeAws_json1_1ConcurrentModificationException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ConflictException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1CreateParallelDataResponse = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1DeleteParallelDataResponse = function (output, context) {\n return {\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeAws_json1_1DescribeTextTranslationJobResponse = function (output, context) {\n return {\n TextTranslationJobProperties: output.TextTranslationJobProperties !== undefined && output.TextTranslationJobProperties !== null\n ? deserializeAws_json1_1TextTranslationJobProperties(output.TextTranslationJobProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1DetectedLanguageLowConfidenceException = function (output, context) {\n return {\n DetectedLanguageCode: output.DetectedLanguageCode !== undefined && output.DetectedLanguageCode !== null\n ? output.DetectedLanguageCode\n : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1EncryptionKey = function (output, context) {\n return {\n Id: output.Id !== undefined && output.Id !== null ? output.Id : undefined,\n Type: output.Type !== undefined && output.Type !== null ? output.Type : undefined,\n };\n};\nvar deserializeAws_json1_1GetParallelDataResponse = function (output, context) {\n return {\n AuxiliaryDataLocation: output.AuxiliaryDataLocation !== undefined && output.AuxiliaryDataLocation !== null\n ? deserializeAws_json1_1ParallelDataDataLocation(output.AuxiliaryDataLocation, context)\n : undefined,\n DataLocation: output.DataLocation !== undefined && output.DataLocation !== null\n ? deserializeAws_json1_1ParallelDataDataLocation(output.DataLocation, context)\n : undefined,\n LatestUpdateAttemptAuxiliaryDataLocation: output.LatestUpdateAttemptAuxiliaryDataLocation !== undefined &&\n output.LatestUpdateAttemptAuxiliaryDataLocation !== null\n ? deserializeAws_json1_1ParallelDataDataLocation(output.LatestUpdateAttemptAuxiliaryDataLocation, context)\n : undefined,\n ParallelDataProperties: output.ParallelDataProperties !== undefined && output.ParallelDataProperties !== null\n ? deserializeAws_json1_1ParallelDataProperties(output.ParallelDataProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1GetTerminologyResponse = function (output, context) {\n return {\n TerminologyDataLocation: output.TerminologyDataLocation !== undefined && output.TerminologyDataLocation !== null\n ? deserializeAws_json1_1TerminologyDataLocation(output.TerminologyDataLocation, context)\n : undefined,\n TerminologyProperties: output.TerminologyProperties !== undefined && output.TerminologyProperties !== null\n ? deserializeAws_json1_1TerminologyProperties(output.TerminologyProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ImportTerminologyResponse = function (output, context) {\n return {\n TerminologyProperties: output.TerminologyProperties !== undefined && output.TerminologyProperties !== null\n ? deserializeAws_json1_1TerminologyProperties(output.TerminologyProperties, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1InputDataConfig = function (output, context) {\n return {\n ContentType: output.ContentType !== undefined && output.ContentType !== null ? output.ContentType : undefined,\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1InternalServerException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidFilterException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidParameterValueException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1InvalidRequestException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1JobDetails = function (output, context) {\n return {\n DocumentsWithErrorsCount: output.DocumentsWithErrorsCount !== undefined && output.DocumentsWithErrorsCount !== null\n ? output.DocumentsWithErrorsCount\n : undefined,\n InputDocumentsCount: output.InputDocumentsCount !== undefined && output.InputDocumentsCount !== null\n ? output.InputDocumentsCount\n : undefined,\n TranslatedDocumentsCount: output.TranslatedDocumentsCount !== undefined && output.TranslatedDocumentsCount !== null\n ? output.TranslatedDocumentsCount\n : undefined,\n };\n};\nvar deserializeAws_json1_1LanguageCodeStringList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1LimitExceededException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ListParallelDataResponse = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n ParallelDataPropertiesList: output.ParallelDataPropertiesList !== undefined && output.ParallelDataPropertiesList !== null\n ? deserializeAws_json1_1ParallelDataPropertiesList(output.ParallelDataPropertiesList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ListTerminologiesResponse = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n TerminologyPropertiesList: output.TerminologyPropertiesList !== undefined && output.TerminologyPropertiesList !== null\n ? deserializeAws_json1_1TerminologyPropertiesList(output.TerminologyPropertiesList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ListTextTranslationJobsResponse = function (output, context) {\n return {\n NextToken: output.NextToken !== undefined && output.NextToken !== null ? output.NextToken : undefined,\n TextTranslationJobPropertiesList: output.TextTranslationJobPropertiesList !== undefined && output.TextTranslationJobPropertiesList !== null\n ? deserializeAws_json1_1TextTranslationJobPropertiesList(output.TextTranslationJobPropertiesList, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1OutputDataConfig = function (output, context) {\n return {\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1ParallelDataConfig = function (output, context) {\n return {\n Format: output.Format !== undefined && output.Format !== null ? output.Format : undefined,\n S3Uri: output.S3Uri !== undefined && output.S3Uri !== null ? output.S3Uri : undefined,\n };\n};\nvar deserializeAws_json1_1ParallelDataDataLocation = function (output, context) {\n return {\n Location: output.Location !== undefined && output.Location !== null ? output.Location : undefined,\n RepositoryType: output.RepositoryType !== undefined && output.RepositoryType !== null ? output.RepositoryType : undefined,\n };\n};\nvar deserializeAws_json1_1ParallelDataProperties = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n CreatedAt: output.CreatedAt !== undefined && output.CreatedAt !== null\n ? new Date(Math.round(output.CreatedAt * 1000))\n : undefined,\n Description: output.Description !== undefined && output.Description !== null ? output.Description : undefined,\n EncryptionKey: output.EncryptionKey !== undefined && output.EncryptionKey !== null\n ? deserializeAws_json1_1EncryptionKey(output.EncryptionKey, context)\n : undefined,\n FailedRecordCount: output.FailedRecordCount !== undefined && output.FailedRecordCount !== null\n ? output.FailedRecordCount\n : undefined,\n ImportedDataSize: output.ImportedDataSize !== undefined && output.ImportedDataSize !== null ? output.ImportedDataSize : undefined,\n ImportedRecordCount: output.ImportedRecordCount !== undefined && output.ImportedRecordCount !== null\n ? output.ImportedRecordCount\n : undefined,\n LastUpdatedAt: output.LastUpdatedAt !== undefined && output.LastUpdatedAt !== null\n ? new Date(Math.round(output.LastUpdatedAt * 1000))\n : undefined,\n LatestUpdateAttemptAt: output.LatestUpdateAttemptAt !== undefined && output.LatestUpdateAttemptAt !== null\n ? new Date(Math.round(output.LatestUpdateAttemptAt * 1000))\n : undefined,\n LatestUpdateAttemptStatus: output.LatestUpdateAttemptStatus !== undefined && output.LatestUpdateAttemptStatus !== null\n ? output.LatestUpdateAttemptStatus\n : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n ParallelDataConfig: output.ParallelDataConfig !== undefined && output.ParallelDataConfig !== null\n ? deserializeAws_json1_1ParallelDataConfig(output.ParallelDataConfig, context)\n : undefined,\n SkippedRecordCount: output.SkippedRecordCount !== undefined && output.SkippedRecordCount !== null\n ? output.SkippedRecordCount\n : undefined,\n SourceLanguageCode: output.SourceLanguageCode !== undefined && output.SourceLanguageCode !== null\n ? output.SourceLanguageCode\n : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n TargetLanguageCodes: output.TargetLanguageCodes !== undefined && output.TargetLanguageCodes !== null\n ? deserializeAws_json1_1LanguageCodeStringList(output.TargetLanguageCodes, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1ParallelDataPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1ParallelDataProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1ResourceNameList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1ResourceNotFoundException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1ServiceUnavailableException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1StartTextTranslationJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1StopTextTranslationJobResponse = function (output, context) {\n return {\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n };\n};\nvar deserializeAws_json1_1TargetLanguageCodeStringList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return entry;\n });\n};\nvar deserializeAws_json1_1Term = function (output, context) {\n return {\n SourceText: output.SourceText !== undefined && output.SourceText !== null ? output.SourceText : undefined,\n TargetText: output.TargetText !== undefined && output.TargetText !== null ? output.TargetText : undefined,\n };\n};\nvar deserializeAws_json1_1TerminologyDataLocation = function (output, context) {\n return {\n Location: output.Location !== undefined && output.Location !== null ? output.Location : undefined,\n RepositoryType: output.RepositoryType !== undefined && output.RepositoryType !== null ? output.RepositoryType : undefined,\n };\n};\nvar deserializeAws_json1_1TerminologyProperties = function (output, context) {\n return {\n Arn: output.Arn !== undefined && output.Arn !== null ? output.Arn : undefined,\n CreatedAt: output.CreatedAt !== undefined && output.CreatedAt !== null\n ? new Date(Math.round(output.CreatedAt * 1000))\n : undefined,\n Description: output.Description !== undefined && output.Description !== null ? output.Description : undefined,\n EncryptionKey: output.EncryptionKey !== undefined && output.EncryptionKey !== null\n ? deserializeAws_json1_1EncryptionKey(output.EncryptionKey, context)\n : undefined,\n LastUpdatedAt: output.LastUpdatedAt !== undefined && output.LastUpdatedAt !== null\n ? new Date(Math.round(output.LastUpdatedAt * 1000))\n : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n SizeBytes: output.SizeBytes !== undefined && output.SizeBytes !== null ? output.SizeBytes : undefined,\n SourceLanguageCode: output.SourceLanguageCode !== undefined && output.SourceLanguageCode !== null\n ? output.SourceLanguageCode\n : undefined,\n TargetLanguageCodes: output.TargetLanguageCodes !== undefined && output.TargetLanguageCodes !== null\n ? deserializeAws_json1_1LanguageCodeStringList(output.TargetLanguageCodes, context)\n : undefined,\n TermCount: output.TermCount !== undefined && output.TermCount !== null ? output.TermCount : undefined,\n };\n};\nvar deserializeAws_json1_1TerminologyPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1TerminologyProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1TermList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1Term(entry, context);\n });\n};\nvar deserializeAws_json1_1TextSizeLimitExceededException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1TextTranslationJobProperties = function (output, context) {\n return {\n DataAccessRoleArn: output.DataAccessRoleArn !== undefined && output.DataAccessRoleArn !== null\n ? output.DataAccessRoleArn\n : undefined,\n EndTime: output.EndTime !== undefined && output.EndTime !== null ? new Date(Math.round(output.EndTime * 1000)) : undefined,\n InputDataConfig: output.InputDataConfig !== undefined && output.InputDataConfig !== null\n ? deserializeAws_json1_1InputDataConfig(output.InputDataConfig, context)\n : undefined,\n JobDetails: output.JobDetails !== undefined && output.JobDetails !== null\n ? deserializeAws_json1_1JobDetails(output.JobDetails, context)\n : undefined,\n JobId: output.JobId !== undefined && output.JobId !== null ? output.JobId : undefined,\n JobName: output.JobName !== undefined && output.JobName !== null ? output.JobName : undefined,\n JobStatus: output.JobStatus !== undefined && output.JobStatus !== null ? output.JobStatus : undefined,\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n OutputDataConfig: output.OutputDataConfig !== undefined && output.OutputDataConfig !== null\n ? deserializeAws_json1_1OutputDataConfig(output.OutputDataConfig, context)\n : undefined,\n ParallelDataNames: output.ParallelDataNames !== undefined && output.ParallelDataNames !== null\n ? deserializeAws_json1_1ResourceNameList(output.ParallelDataNames, context)\n : undefined,\n SourceLanguageCode: output.SourceLanguageCode !== undefined && output.SourceLanguageCode !== null\n ? output.SourceLanguageCode\n : undefined,\n SubmittedTime: output.SubmittedTime !== undefined && output.SubmittedTime !== null\n ? new Date(Math.round(output.SubmittedTime * 1000))\n : undefined,\n TargetLanguageCodes: output.TargetLanguageCodes !== undefined && output.TargetLanguageCodes !== null\n ? deserializeAws_json1_1TargetLanguageCodeStringList(output.TargetLanguageCodes, context)\n : undefined,\n TerminologyNames: output.TerminologyNames !== undefined && output.TerminologyNames !== null\n ? deserializeAws_json1_1ResourceNameList(output.TerminologyNames, context)\n : undefined,\n };\n};\nvar deserializeAws_json1_1TextTranslationJobPropertiesList = function (output, context) {\n return (output || [])\n .filter(function (e) { return e != null; })\n .map(function (entry) {\n if (entry === null) {\n return null;\n }\n return deserializeAws_json1_1TextTranslationJobProperties(entry, context);\n });\n};\nvar deserializeAws_json1_1TooManyRequestsException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n };\n};\nvar deserializeAws_json1_1TranslateTextResponse = function (output, context) {\n return {\n AppliedTerminologies: output.AppliedTerminologies !== undefined && output.AppliedTerminologies !== null\n ? deserializeAws_json1_1AppliedTerminologyList(output.AppliedTerminologies, context)\n : undefined,\n SourceLanguageCode: output.SourceLanguageCode !== undefined && output.SourceLanguageCode !== null\n ? output.SourceLanguageCode\n : undefined,\n TargetLanguageCode: output.TargetLanguageCode !== undefined && output.TargetLanguageCode !== null\n ? output.TargetLanguageCode\n : undefined,\n TranslatedText: output.TranslatedText !== undefined && output.TranslatedText !== null ? output.TranslatedText : undefined,\n };\n};\nvar deserializeAws_json1_1UnsupportedLanguagePairException = function (output, context) {\n return {\n Message: output.Message !== undefined && output.Message !== null ? output.Message : undefined,\n SourceLanguageCode: output.SourceLanguageCode !== undefined && output.SourceLanguageCode !== null\n ? output.SourceLanguageCode\n : undefined,\n TargetLanguageCode: output.TargetLanguageCode !== undefined && output.TargetLanguageCode !== null\n ? output.TargetLanguageCode\n : undefined,\n };\n};\nvar deserializeAws_json1_1UpdateParallelDataResponse = function (output, context) {\n return {\n LatestUpdateAttemptAt: output.LatestUpdateAttemptAt !== undefined && output.LatestUpdateAttemptAt !== null\n ? new Date(Math.round(output.LatestUpdateAttemptAt * 1000))\n : undefined,\n LatestUpdateAttemptStatus: output.LatestUpdateAttemptStatus !== undefined && output.LatestUpdateAttemptStatus !== null\n ? output.LatestUpdateAttemptStatus\n : undefined,\n Name: output.Name !== undefined && output.Name !== null ? output.Name : undefined,\n Status: output.Status !== undefined && output.Status !== null ? output.Status : undefined,\n };\n};\nvar deserializeMetadata = function (output) {\n var _a;\n return ({\n httpStatusCode: output.statusCode,\n requestId: (_a = output.headers[\"x-amzn-requestid\"]) !== null && _a !== void 0 ? _a : output.headers[\"x-amzn-request-id\"],\n extendedRequestId: output.headers[\"x-amz-id-2\"],\n cfId: output.headers[\"x-amz-cf-id\"],\n });\n};\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\nvar buildHttpRpcRequest = function (context, headers, path, resolvedHostname, body) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, hostname, _b, protocol, port, contents;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, context.endpoint()];\n case 1:\n _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? \"https\" : _b, port = _a.port;\n contents = {\n protocol: protocol,\n hostname: hostname,\n port: port,\n method: \"POST\",\n path: path,\n headers: headers,\n };\n if (resolvedHostname !== undefined) {\n contents.hostname = resolvedHostname;\n }\n if (body !== undefined) {\n contents.body = body;\n }\n return [2 /*return*/, new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"](contents)];\n }\n });\n}); };\nvar parseBody = function (streamBody, context) {\n return collectBodyString(streamBody, context).then(function (encoded) {\n if (encoded.length) {\n return JSON.parse(encoded);\n }\n return {};\n });\n};\n/**\n * Load an error code for the aws.rest-json-1.1 protocol.\n */\nvar loadRestJsonErrorCode = function (output, data) {\n var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };\n var sanitizeErrorCode = function (rawValue) {\n var cleanValue = rawValue;\n if (cleanValue.indexOf(\":\") >= 0) {\n cleanValue = cleanValue.split(\":\")[0];\n }\n if (cleanValue.indexOf(\"#\") >= 0) {\n cleanValue = cleanValue.split(\"#\")[1];\n }\n return cleanValue;\n };\n var headerKey = findKey(output.headers, \"x-amzn-errortype\");\n if (headerKey !== undefined) {\n return sanitizeErrorCode(output.headers[headerKey]);\n }\n if (data.code !== undefined) {\n return sanitizeErrorCode(data.code);\n }\n if (data[\"__type\"] !== undefined) {\n return sanitizeErrorCode(data[\"__type\"]);\n }\n return \"\";\n};\n//# sourceMappingURL=Aws_json1_1.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/protocols/Aws_json1_1.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/runtimeConfig.browser.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/runtimeConfig.browser.js ***! \*********************************************************************************/ /*! exports provided: ClientDefaultValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientDefaultValues\", function() { return ClientDefaultValues; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./package.json */ \"./node_modules/@aws-sdk/client-translate/dist/es/package.json\");\nvar _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ./package.json */ \"./node_modules/@aws-sdk/client-translate/dist/es/package.json\", 1);\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ \"./node_modules/@aws-crypto/sha256-browser/build/index.js\");\n/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-sdk/invalid-dependency */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-sdk/middleware-retry */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-sdk/util-body-length-browser */ \"./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-sdk/util-user-agent-browser */ \"./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./runtimeConfig.shared */ \"./node_modules/@aws-sdk/client-translate/dist/es/runtimeConfig.shared.js\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @internal\n */\nvar ClientDefaultValues = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"]), { runtime: \"browser\", base64Decoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"fromBase64\"], base64Encoder: _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_6__[\"toBase64\"], bodyLengthChecker: _aws_sdk_util_body_length_browser__WEBPACK_IMPORTED_MODULE_7__[\"calculateBodyLength\"], credentialDefaultProvider: function (_) { return function () { return Promise.reject(new Error(\"Credential is missing\")); }; }, defaultUserAgentProvider: Object(_aws_sdk_util_user_agent_browser__WEBPACK_IMPORTED_MODULE_8__[\"defaultUserAgent\"])({\n serviceId: _runtimeConfig_shared__WEBPACK_IMPORTED_MODULE_10__[\"ClientSharedValues\"].serviceId,\n clientVersion: _package_json__WEBPACK_IMPORTED_MODULE_1__.version,\n }), maxAttempts: _aws_sdk_middleware_retry__WEBPACK_IMPORTED_MODULE_5__[\"DEFAULT_MAX_ATTEMPTS\"], region: Object(_aws_sdk_invalid_dependency__WEBPACK_IMPORTED_MODULE_4__[\"invalidProvider\"])(\"Region is missing\"), requestHandler: new _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"FetchHttpHandler\"](), sha256: _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__[\"Sha256\"], streamCollector: _aws_sdk_fetch_http_handler__WEBPACK_IMPORTED_MODULE_3__[\"streamCollector\"], utf8Decoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"fromUtf8\"], utf8Encoder: _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_9__[\"toUtf8\"] });\n//# sourceMappingURL=runtimeConfig.browser.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/runtimeConfig.browser.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/dist/es/runtimeConfig.shared.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/dist/es/runtimeConfig.shared.js ***! \********************************************************************************/ /*! exports provided: ClientSharedValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ClientSharedValues\", function() { return ClientSharedValues; });\n/* harmony import */ var _endpoints__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./endpoints */ \"./node_modules/@aws-sdk/client-translate/dist/es/endpoints.js\");\n/* harmony import */ var _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/url-parser */ \"./node_modules/@aws-sdk/url-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar ClientSharedValues = {\n apiVersion: \"2017-07-01\",\n disableHostPrefix: false,\n logger: {},\n regionInfoProvider: _endpoints__WEBPACK_IMPORTED_MODULE_0__[\"defaultRegionInfoProvider\"],\n serviceId: \"Translate\",\n urlParser: _aws_sdk_url_parser__WEBPACK_IMPORTED_MODULE_1__[\"parseUrl\"],\n};\n//# sourceMappingURL=runtimeConfig.shared.js.map\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/dist/es/runtimeConfig.shared.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js ***! \********************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/client-translate/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/config-resolver/dist/es/EndpointsConfig.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/config-resolver/dist/es/EndpointsConfig.js ***! \**************************************************************************/ /*! exports provided: resolveEndpointsConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return resolveEndpointsConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar resolveEndpointsConfig = function (input) {\n var _a;\n return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { tls: (_a = input.tls) !== null && _a !== void 0 ? _a : true, endpoint: input.endpoint ? normalizeEndpoint(input) : function () { return getEndPointFromRegion(input); }, isCustomEndpoint: input.endpoint ? true : false }));\n};\nvar normalizeEndpoint = function (input) {\n var endpoint = input.endpoint, urlParser = input.urlParser;\n if (typeof endpoint === \"string\") {\n var promisified_1 = Promise.resolve(urlParser(endpoint));\n return function () { return promisified_1; };\n }\n else if (typeof endpoint === \"object\") {\n var promisified_2 = Promise.resolve(endpoint);\n return function () { return promisified_2; };\n }\n return endpoint;\n};\nvar getEndPointFromRegion = function (input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a, tls, region, dnsHostRegex, hostname;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n _a = input.tls, tls = _a === void 0 ? true : _a;\n return [4 /*yield*/, input.region()];\n case 1:\n region = _c.sent();\n dnsHostRegex = new RegExp(/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])$/);\n if (!dnsHostRegex.test(region)) {\n throw new Error(\"Invalid region in client config\");\n }\n return [4 /*yield*/, input.regionInfoProvider(region)];\n case 2:\n hostname = ((_b = (_c.sent())) !== null && _b !== void 0 ? _b : {}).hostname;\n if (!hostname) {\n throw new Error(\"Cannot resolve hostname from client config\");\n }\n return [2 /*return*/, input.urlParser((tls ? \"https:\" : \"http:\") + \"//\" + hostname)];\n }\n });\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRW5kcG9pbnRzQ29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL0VuZHBvaW50c0NvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBeUJBLE1BQU0sQ0FBQyxJQUFNLHNCQUFzQixHQUFHLFVBQ3BDLEtBQW9EOztJQUNwQixPQUFBLHVCQUM3QixLQUFLLEtBQ1IsR0FBRyxRQUFFLEtBQUssQ0FBQyxHQUFHLG1DQUFJLElBQUksRUFDdEIsUUFBUSxFQUFFLEtBQUssQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLGlCQUFpQixDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxjQUFNLE9BQUEscUJBQXFCLENBQUMsS0FBSyxDQUFDLEVBQTVCLENBQTRCLEVBQ3hGLGdCQUFnQixFQUFFLEtBQUssQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxJQUMvQyxDQUFBO0NBQUEsQ0FBQztBQUVILElBQU0saUJBQWlCLEdBQUcsVUFBQyxLQUFnRDtJQUNqRSxJQUFBLFFBQVEsR0FBZ0IsS0FBSyxTQUFyQixFQUFFLFNBQVMsR0FBSyxLQUFLLFVBQVYsQ0FBVztJQUN0QyxJQUFJLE9BQU8sUUFBUSxLQUFLLFFBQVEsRUFBRTtRQUNoQyxJQUFNLGFBQVcsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDO1FBQ3pELE9BQU8sY0FBTSxPQUFBLGFBQVcsRUFBWCxDQUFXLENBQUM7S0FDMUI7U0FBTSxJQUFJLE9BQU8sUUFBUSxLQUFLLFFBQVEsRUFBRTtRQUN2QyxJQUFNLGFBQVcsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQzlDLE9BQU8sY0FBTSxPQUFBLGFBQVcsRUFBWCxDQUFXLENBQUM7S0FDMUI7SUFDRCxPQUFPLFFBQVMsQ0FBQztBQUNuQixDQUFDLENBQUM7QUFFRixJQUFNLHFCQUFxQixHQUFHLFVBQU8sS0FBZ0Q7Ozs7OztnQkFDM0UsS0FBZSxLQUFLLElBQVYsRUFBVixHQUFHLG1CQUFHLElBQUksS0FBQSxDQUFXO2dCQUNkLHFCQUFNLEtBQUssQ0FBQyxNQUFNLEVBQUUsRUFBQTs7Z0JBQTdCLE1BQU0sR0FBRyxTQUFvQjtnQkFFN0IsWUFBWSxHQUFHLElBQUksTUFBTSxDQUFDLDBEQUEwRCxDQUFDLENBQUM7Z0JBQzVGLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFFO29CQUM5QixNQUFNLElBQUksS0FBSyxDQUFDLGlDQUFpQyxDQUFDLENBQUM7aUJBQ3BEO2dCQUVxQixxQkFBTSxLQUFLLENBQUMsa0JBQWtCLENBQUMsTUFBTSxDQUFDLEVBQUE7O2dCQUFwRCxRQUFRLFVBQUssQ0FBQyxTQUFzQyxDQUFDLG1DQUFJLEVBQUUsVUFBbkQ7Z0JBQ2hCLElBQUksQ0FBQyxRQUFRLEVBQUU7b0JBQ2IsTUFBTSxJQUFJLEtBQUssQ0FBQyw0Q0FBNEMsQ0FBQyxDQUFDO2lCQUMvRDtnQkFFRCxzQkFBTyxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUcsR0FBRyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLE9BQU8sV0FBSyxRQUFVLENBQUMsRUFBQzs7O0tBQ3BFLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFbmRwb2ludCwgUHJvdmlkZXIsIFJlZ2lvbkluZm9Qcm92aWRlciwgVXJsUGFyc2VyIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgRW5kcG9pbnRzSW5wdXRDb25maWcge1xuICAvKipcbiAgICogVGhlIGZ1bGx5IHF1YWxpZmllZCBlbmRwb2ludCBvZiB0aGUgd2Vic2VydmljZS4gVGhpcyBpcyBvbmx5IHJlcXVpcmVkIHdoZW4gdXNpbmcgYSBjdXN0b20gZW5kcG9pbnQgKGZvciBleGFtcGxlLCB3aGVuIHVzaW5nIGEgbG9jYWwgdmVyc2lvbiBvZiBTMykuXG4gICAqL1xuICBlbmRwb2ludD86IHN0cmluZyB8IEVuZHBvaW50IHwgUHJvdmlkZXI8RW5kcG9pbnQ+O1xuXG4gIC8qKlxuICAgKiBXaGV0aGVyIFRMUyBpcyBlbmFibGVkIGZvciByZXF1ZXN0cy5cbiAgICovXG4gIHRscz86IGJvb2xlYW47XG59XG5cbmludGVyZmFjZSBQcmV2aW91c2x5UmVzb2x2ZWQge1xuICByZWdpb25JbmZvUHJvdmlkZXI6IFJlZ2lvbkluZm9Qcm92aWRlcjtcbiAgdXJsUGFyc2VyOiBVcmxQYXJzZXI7XG4gIHJlZ2lvbjogUHJvdmlkZXI8c3RyaW5nPjtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBFbmRwb2ludHNSZXNvbHZlZENvbmZpZyBleHRlbmRzIFJlcXVpcmVkPEVuZHBvaW50c0lucHV0Q29uZmlnPiB7XG4gIGVuZHBvaW50OiBQcm92aWRlcjxFbmRwb2ludD47XG4gIGlzQ3VzdG9tRW5kcG9pbnQ6IGJvb2xlYW47XG59XG5cbmV4cG9ydCBjb25zdCByZXNvbHZlRW5kcG9pbnRzQ29uZmlnID0gPFQ+KFxuICBpbnB1dDogVCAmIEVuZHBvaW50c0lucHV0Q29uZmlnICYgUHJldmlvdXNseVJlc29sdmVkXG4pOiBUICYgRW5kcG9pbnRzUmVzb2x2ZWRDb25maWcgPT4gKHtcbiAgLi4uaW5wdXQsXG4gIHRsczogaW5wdXQudGxzID8/IHRydWUsXG4gIGVuZHBvaW50OiBpbnB1dC5lbmRwb2ludCA/IG5vcm1hbGl6ZUVuZHBvaW50KGlucHV0KSA6ICgpID0+IGdldEVuZFBvaW50RnJvbVJlZ2lvbihpbnB1dCksXG4gIGlzQ3VzdG9tRW5kcG9pbnQ6IGlucHV0LmVuZHBvaW50ID8gdHJ1ZSA6IGZhbHNlLFxufSk7XG5cbmNvbnN0IG5vcm1hbGl6ZUVuZHBvaW50ID0gKGlucHV0OiBFbmRwb2ludHNJbnB1dENvbmZpZyAmIFByZXZpb3VzbHlSZXNvbHZlZCk6IFByb3ZpZGVyPEVuZHBvaW50PiA9PiB7XG4gIGNvbnN0IHsgZW5kcG9pbnQsIHVybFBhcnNlciB9ID0gaW5wdXQ7XG4gIGlmICh0eXBlb2YgZW5kcG9pbnQgPT09IFwic3RyaW5nXCIpIHtcbiAgICBjb25zdCBwcm9taXNpZmllZCA9IFByb21pc2UucmVzb2x2ZSh1cmxQYXJzZXIoZW5kcG9pbnQpKTtcbiAgICByZXR1cm4gKCkgPT4gcHJvbWlzaWZpZWQ7XG4gIH0gZWxzZSBpZiAodHlwZW9mIGVuZHBvaW50ID09PSBcIm9iamVjdFwiKSB7XG4gICAgY29uc3QgcHJvbWlzaWZpZWQgPSBQcm9taXNlLnJlc29sdmUoZW5kcG9pbnQpO1xuICAgIHJldHVybiAoKSA9PiBwcm9taXNpZmllZDtcbiAgfVxuICByZXR1cm4gZW5kcG9pbnQhO1xufTtcblxuY29uc3QgZ2V0RW5kUG9pbnRGcm9tUmVnaW9uID0gYXN5bmMgKGlucHV0OiBFbmRwb2ludHNJbnB1dENvbmZpZyAmIFByZXZpb3VzbHlSZXNvbHZlZCkgPT4ge1xuICBjb25zdCB7IHRscyA9IHRydWUgfSA9IGlucHV0O1xuICBjb25zdCByZWdpb24gPSBhd2FpdCBpbnB1dC5yZWdpb24oKTtcblxuICBjb25zdCBkbnNIb3N0UmVnZXggPSBuZXcgUmVnRXhwKC9eKFthLXpBLVowLTldfFthLXpBLVowLTldW2EtekEtWjAtOS1dezAsNjF9W2EtekEtWjAtOV0pJC8pO1xuICBpZiAoIWRuc0hvc3RSZWdleC50ZXN0KHJlZ2lvbikpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJJbnZhbGlkIHJlZ2lvbiBpbiBjbGllbnQgY29uZmlnXCIpO1xuICB9XG5cbiAgY29uc3QgeyBob3N0bmFtZSB9ID0gKGF3YWl0IGlucHV0LnJlZ2lvbkluZm9Qcm92aWRlcihyZWdpb24pKSA/PyB7fTtcbiAgaWYgKCFob3N0bmFtZSkge1xuICAgIHRocm93IG5ldyBFcnJvcihcIkNhbm5vdCByZXNvbHZlIGhvc3RuYW1lIGZyb20gY2xpZW50IGNvbmZpZ1wiKTtcbiAgfVxuXG4gIHJldHVybiBpbnB1dC51cmxQYXJzZXIoYCR7dGxzID8gXCJodHRwczpcIiA6IFwiaHR0cDpcIn0vLyR7aG9zdG5hbWV9YCk7XG59O1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/config-resolver/dist/es/EndpointsConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/config-resolver/dist/es/RegionConfig.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/config-resolver/dist/es/RegionConfig.js ***! \***********************************************************************/ /*! exports provided: REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return REGION_ENV_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return REGION_INI_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return NODE_REGION_CONFIG_OPTIONS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return NODE_REGION_CONFIG_FILE_OPTIONS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return resolveRegionConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar REGION_ENV_NAME = \"AWS_REGION\";\nvar REGION_INI_NAME = \"region\";\nvar NODE_REGION_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) { return env[REGION_ENV_NAME]; },\n configFileSelector: function (profile) { return profile[REGION_INI_NAME]; },\n default: function () {\n throw new Error(\"Region is missing\");\n },\n};\nvar NODE_REGION_CONFIG_FILE_OPTIONS = {\n preferredFile: \"credentials\",\n};\nvar resolveRegionConfig = function (input) {\n if (!input.region) {\n throw new Error(\"Region is missing\");\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { region: normalizeRegion(input.region) });\n};\nvar normalizeRegion = function (region) {\n if (typeof region === \"string\") {\n var promisified_1 = Promise.resolve(region);\n return function () { return promisified_1; };\n }\n return region;\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUmVnaW9uQ29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL1JlZ2lvbkNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBR0EsTUFBTSxDQUFDLElBQU0sZUFBZSxHQUFHLFlBQVksQ0FBQztBQUM1QyxNQUFNLENBQUMsSUFBTSxlQUFlLEdBQUcsUUFBUSxDQUFDO0FBRXhDLE1BQU0sQ0FBQyxJQUFNLDBCQUEwQixHQUFrQztJQUN2RSwyQkFBMkIsRUFBRSxVQUFDLEdBQUcsSUFBSyxPQUFBLEdBQUcsQ0FBQyxlQUFlLENBQUMsRUFBcEIsQ0FBb0I7SUFDMUQsa0JBQWtCLEVBQUUsVUFBQyxPQUFPLElBQUssT0FBQSxPQUFPLENBQUMsZUFBZSxDQUFDLEVBQXhCLENBQXdCO0lBQ3pELE9BQU8sRUFBRTtRQUNQLE1BQU0sSUFBSSxLQUFLLENBQUMsbUJBQW1CLENBQUMsQ0FBQztJQUN2QyxDQUFDO0NBQ0YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLCtCQUErQixHQUF1QjtJQUNqRSxhQUFhLEVBQUUsYUFBYTtDQUM3QixDQUFDO0FBZUYsTUFBTSxDQUFDLElBQU0sbUJBQW1CLEdBQUcsVUFBSSxLQUFpRDtJQUN0RixJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRTtRQUNqQixNQUFNLElBQUksS0FBSyxDQUFDLG1CQUFtQixDQUFDLENBQUM7S0FDdEM7SUFDRCw2QkFDSyxLQUFLLEtBQ1IsTUFBTSxFQUFFLGVBQWUsQ0FBQyxLQUFLLENBQUMsTUFBTyxDQUFDLElBQ3RDO0FBQ0osQ0FBQyxDQUFDO0FBRUYsSUFBTSxlQUFlLEdBQUcsVUFBQyxNQUFpQztJQUN4RCxJQUFJLE9BQU8sTUFBTSxLQUFLLFFBQVEsRUFBRTtRQUM5QixJQUFNLGFBQVcsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBQzVDLE9BQU8sY0FBTSxPQUFBLGFBQVcsRUFBWCxDQUFXLENBQUM7S0FDMUI7SUFDRCxPQUFPLE1BQTBCLENBQUM7QUFDcEMsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTG9hZGVkQ29uZmlnU2VsZWN0b3JzLCBMb2NhbENvbmZpZ09wdGlvbnMgfSBmcm9tIFwiQGF3cy1zZGsvbm9kZS1jb25maWctcHJvdmlkZXJcIjtcbmltcG9ydCB7IFByb3ZpZGVyIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5cbmV4cG9ydCBjb25zdCBSRUdJT05fRU5WX05BTUUgPSBcIkFXU19SRUdJT05cIjtcbmV4cG9ydCBjb25zdCBSRUdJT05fSU5JX05BTUUgPSBcInJlZ2lvblwiO1xuXG5leHBvcnQgY29uc3QgTk9ERV9SRUdJT05fQ09ORklHX09QVElPTlM6IExvYWRlZENvbmZpZ1NlbGVjdG9yczxzdHJpbmc+ID0ge1xuICBlbnZpcm9ubWVudFZhcmlhYmxlU2VsZWN0b3I6IChlbnYpID0+IGVudltSRUdJT05fRU5WX05BTUVdLFxuICBjb25maWdGaWxlU2VsZWN0b3I6IChwcm9maWxlKSA9PiBwcm9maWxlW1JFR0lPTl9JTklfTkFNRV0sXG4gIGRlZmF1bHQ6ICgpID0+IHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJSZWdpb24gaXMgbWlzc2luZ1wiKTtcbiAgfSxcbn07XG5cbmV4cG9ydCBjb25zdCBOT0RFX1JFR0lPTl9DT05GSUdfRklMRV9PUFRJT05TOiBMb2NhbENvbmZpZ09wdGlvbnMgPSB7XG4gIHByZWZlcnJlZEZpbGU6IFwiY3JlZGVudGlhbHNcIixcbn07XG5cbmV4cG9ydCBpbnRlcmZhY2UgUmVnaW9uSW5wdXRDb25maWcge1xuICAvKipcbiAgICogVGhlIEFXUyByZWdpb24gdG8gd2hpY2ggdGhpcyBjbGllbnQgd2lsbCBzZW5kIHJlcXVlc3RzXG4gICAqL1xuICByZWdpb24/OiBzdHJpbmcgfCBQcm92aWRlcjxzdHJpbmc+O1xufVxuXG5pbnRlcmZhY2UgUHJldmlvdXNseVJlc29sdmVkIHt9XG5cbmV4cG9ydCBpbnRlcmZhY2UgUmVnaW9uUmVzb2x2ZWRDb25maWcge1xuICByZWdpb246IFByb3ZpZGVyPHN0cmluZz47XG59XG5cbmV4cG9ydCBjb25zdCByZXNvbHZlUmVnaW9uQ29uZmlnID0gPFQ+KGlucHV0OiBUICYgUmVnaW9uSW5wdXRDb25maWcgJiBQcmV2aW91c2x5UmVzb2x2ZWQpOiBUICYgUmVnaW9uUmVzb2x2ZWRDb25maWcgPT4ge1xuICBpZiAoIWlucHV0LnJlZ2lvbikge1xuICAgIHRocm93IG5ldyBFcnJvcihcIlJlZ2lvbiBpcyBtaXNzaW5nXCIpO1xuICB9XG4gIHJldHVybiB7XG4gICAgLi4uaW5wdXQsXG4gICAgcmVnaW9uOiBub3JtYWxpemVSZWdpb24oaW5wdXQucmVnaW9uISksXG4gIH07XG59O1xuXG5jb25zdCBub3JtYWxpemVSZWdpb24gPSAocmVnaW9uOiBzdHJpbmcgfCBQcm92aWRlcjxzdHJpbmc+KTogUHJvdmlkZXI8c3RyaW5nPiA9PiB7XG4gIGlmICh0eXBlb2YgcmVnaW9uID09PSBcInN0cmluZ1wiKSB7XG4gICAgY29uc3QgcHJvbWlzaWZpZWQgPSBQcm9taXNlLnJlc29sdmUocmVnaW9uKTtcbiAgICByZXR1cm4gKCkgPT4gcHJvbWlzaWZpZWQ7XG4gIH1cbiAgcmV0dXJuIHJlZ2lvbiBhcyBQcm92aWRlcjxzdHJpbmc+O1xufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/config-resolver/dist/es/RegionConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/config-resolver/dist/es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/config-resolver/dist/es/index.js ***! \****************************************************************/ /*! exports provided: resolveEndpointsConfig, REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _EndpointsConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EndpointsConfig */ \"./node_modules/@aws-sdk/config-resolver/dist/es/EndpointsConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEndpointsConfig\", function() { return _EndpointsConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveEndpointsConfig\"]; });\n\n/* harmony import */ var _RegionConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./RegionConfig */ \"./node_modules/@aws-sdk/config-resolver/dist/es/RegionConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_ENV_NAME\", function() { return _RegionConfig__WEBPACK_IMPORTED_MODULE_1__[\"REGION_ENV_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"REGION_INI_NAME\", function() { return _RegionConfig__WEBPACK_IMPORTED_MODULE_1__[\"REGION_INI_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_OPTIONS\", function() { return _RegionConfig__WEBPACK_IMPORTED_MODULE_1__[\"NODE_REGION_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_REGION_CONFIG_FILE_OPTIONS\", function() { return _RegionConfig__WEBPACK_IMPORTED_MODULE_1__[\"NODE_REGION_CONFIG_FILE_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRegionConfig\", function() { return _RegionConfig__WEBPACK_IMPORTED_MODULE_1__[\"resolveRegionConfig\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLGdCQUFnQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vRW5kcG9pbnRzQ29uZmlnXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9SZWdpb25Db25maWdcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/config-resolver/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/CognitoProviderParameters.js": /*!*********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/CognitoProviderParameters.js ***! \*********************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ29nbml0b1Byb3ZpZGVyUGFyYW1ldGVycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9Db2duaXRvUHJvdmlkZXJQYXJhbWV0ZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb2duaXRvSWRlbnRpdHlDbGllbnQgfSBmcm9tIFwiQGF3cy1zZGsvY2xpZW50LWNvZ25pdG8taWRlbnRpdHlcIjtcblxuaW1wb3J0IHsgTG9naW5zIH0gZnJvbSBcIi4vTG9naW5zXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgQ29nbml0b1Byb3ZpZGVyUGFyYW1ldGVycyB7XG4gIC8qKlxuICAgKiBUaGUgU0RLIGNsaWVudCB3aXRoIHdoaWNoIHRoZSBjcmVkZW50aWFsIHByb3ZpZGVyIHdpbGwgY29udGFjdCB0aGUgQW1hem9uXG4gICAqIENvZ25pdG8gc2VydmljZS5cbiAgICovXG4gIGNsaWVudDogQ29nbml0b0lkZW50aXR5Q2xpZW50O1xuXG4gIC8qKlxuICAgKiBUaGUgQW1hem9uIFJlc291cmNlIE5hbWUgKEFSTikgb2YgdGhlIHJvbGUgdG8gYmUgYXNzdW1lZCB3aGVuIG11bHRpcGxlXG4gICAqIHJvbGVzIHdlcmUgcmVjZWl2ZWQgaW4gdGhlIHRva2VuIGZyb20gdGhlIGlkZW50aXR5IHByb3ZpZGVyLiBGb3IgZXhhbXBsZSxcbiAgICogYSBTQU1MLWJhc2VkIGlkZW50aXR5IHByb3ZpZGVyLiBUaGlzIHBhcmFtZXRlciBpcyBvcHRpb25hbCBmb3IgaWRlbnRpdHlcbiAgICogcHJvdmlkZXJzIHRoYXQgZG8gbm90IHN1cHBvcnQgcm9sZSBjdXN0b21pemF0aW9uLlxuICAgKi9cbiAgY3VzdG9tUm9sZUFybj86IHN0cmluZztcblxuICAvKipcbiAgICogQSBzZXQgb2Yga2V5LXZhbHVlIHBhaXJzIHRoYXQgbWFwIGV4dGVybmFsIGlkZW50aXR5IHByb3ZpZGVyIG5hbWVzIHRvXG4gICAqIGxvZ2luIHRva2VucyBvciBmdW5jdGlvbnMgdGhhdCByZXR1cm4gcHJvbWlzZXMgZm9yIGxvZ2luIHRva2Vucy4gVGhlXG4gICAqIGxhdHRlciBzaG91bGQgYmUgdXNlZCB3aGVuIGxvZ2luIHRva2VucyBtdXN0IGJlIHBlcmlvZGljYWxseSByZWZyZXNoZWQuXG4gICAqXG4gICAqIExvZ2lucyBzaG91bGQgbm90IGJlIHNwZWNpZmllZCB3aGVuIHRyeWluZyB0byBnZXQgY3JlZGVudGlhbHMgZm9yIGFuXG4gICAqIHVuYXV0aGVudGljYXRlZCBpZGVudGl0eS5cbiAgICovXG4gIGxvZ2lucz86IExvZ2lucztcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/CognitoProviderParameters.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/InMemoryStorage.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/InMemoryStorage.js ***! \***********************************************************************************************/ /*! exports provided: InMemoryStorage */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InMemoryStorage\", function() { return InMemoryStorage; });\nvar InMemoryStorage = /** @class */ (function () {\n function InMemoryStorage(store) {\n if (store === void 0) { store = {}; }\n this.store = store;\n }\n InMemoryStorage.prototype.getItem = function (key) {\n if (key in this.store) {\n return this.store[key];\n }\n return null;\n };\n InMemoryStorage.prototype.removeItem = function (key) {\n delete this.store[key];\n };\n InMemoryStorage.prototype.setItem = function (key, value) {\n this.store[key] = value;\n };\n return InMemoryStorage;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSW5NZW1vcnlTdG9yYWdlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL0luTWVtb3J5U3RvcmFnZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQTtJQUNFLHlCQUFvQixLQUFxQztRQUFyQyxzQkFBQSxFQUFBLFVBQXFDO1FBQXJDLFVBQUssR0FBTCxLQUFLLENBQWdDO0lBQUcsQ0FBQztJQUU3RCxpQ0FBTyxHQUFQLFVBQVEsR0FBVztRQUNqQixJQUFJLEdBQUcsSUFBSSxJQUFJLENBQUMsS0FBSyxFQUFFO1lBQ3JCLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQztTQUN4QjtRQUVELE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQztJQUVELG9DQUFVLEdBQVYsVUFBVyxHQUFXO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUN6QixDQUFDO0lBRUQsaUNBQU8sR0FBUCxVQUFRLEdBQVcsRUFBRSxLQUFhO1FBQ2hDLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLEdBQUcsS0FBSyxDQUFDO0lBQzFCLENBQUM7SUFDSCxzQkFBQztBQUFELENBQUMsQUFsQkQsSUFrQkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBTdG9yYWdlIH0gZnJvbSBcIi4vU3RvcmFnZVwiO1xuXG5leHBvcnQgY2xhc3MgSW5NZW1vcnlTdG9yYWdlIGltcGxlbWVudHMgU3RvcmFnZSB7XG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgc3RvcmU6IHsgW2tleTogc3RyaW5nXTogc3RyaW5nIH0gPSB7fSkge31cblxuICBnZXRJdGVtKGtleTogc3RyaW5nKTogc3RyaW5nIHwgbnVsbCB7XG4gICAgaWYgKGtleSBpbiB0aGlzLnN0b3JlKSB7XG4gICAgICByZXR1cm4gdGhpcy5zdG9yZVtrZXldO1xuICAgIH1cblxuICAgIHJldHVybiBudWxsO1xuICB9XG5cbiAgcmVtb3ZlSXRlbShrZXk6IHN0cmluZyk6IHZvaWQge1xuICAgIGRlbGV0ZSB0aGlzLnN0b3JlW2tleV07XG4gIH1cblxuICBzZXRJdGVtKGtleTogc3RyaW5nLCB2YWx1ZTogc3RyaW5nKTogdm9pZCB7XG4gICAgdGhpcy5zdG9yZVtrZXldID0gdmFsdWU7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/InMemoryStorage.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/IndexedDbStorage.js": /*!************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/IndexedDbStorage.js ***! \************************************************************************************************/ /*! exports provided: IndexedDbStorage */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IndexedDbStorage\", function() { return IndexedDbStorage; });\nvar STORE_NAME = \"IdentityIds\";\nvar IndexedDbStorage = /** @class */ (function () {\n function IndexedDbStorage(dbName) {\n if (dbName === void 0) { dbName = \"aws:cognito-identity-ids\"; }\n this.dbName = dbName;\n }\n IndexedDbStorage.prototype.getItem = function (key) {\n return this.withObjectStore(\"readonly\", function (store) {\n var req = store.get(key);\n return new Promise(function (resolve) {\n req.onerror = function () { return resolve(null); };\n req.onsuccess = function () { return resolve(req.result ? req.result.value : null); };\n });\n }).catch(function () { return null; });\n };\n IndexedDbStorage.prototype.removeItem = function (key) {\n return this.withObjectStore(\"readwrite\", function (store) {\n var req = store.delete(key);\n return new Promise(function (resolve, reject) {\n req.onerror = function () { return reject(req.error); };\n req.onsuccess = function () { return resolve(); };\n });\n });\n };\n IndexedDbStorage.prototype.setItem = function (id, value) {\n return this.withObjectStore(\"readwrite\", function (store) {\n var req = store.put({ id: id, value: value });\n return new Promise(function (resolve, reject) {\n req.onerror = function () { return reject(req.error); };\n req.onsuccess = function () { return resolve(); };\n });\n });\n };\n IndexedDbStorage.prototype.getDb = function () {\n var openDbRequest = self.indexedDB.open(this.dbName, 1);\n return new Promise(function (resolve, reject) {\n openDbRequest.onsuccess = function () {\n resolve(openDbRequest.result);\n };\n openDbRequest.onerror = function () {\n reject(openDbRequest.error);\n };\n openDbRequest.onblocked = function () {\n reject(new Error(\"Unable to access DB\"));\n };\n openDbRequest.onupgradeneeded = function () {\n var db = openDbRequest.result;\n db.onerror = function () {\n reject(new Error(\"Failed to create object store\"));\n };\n db.createObjectStore(STORE_NAME, { keyPath: \"id\" });\n };\n });\n };\n IndexedDbStorage.prototype.withObjectStore = function (mode, action) {\n return this.getDb().then(function (db) {\n var tx = db.transaction(STORE_NAME, mode);\n tx.oncomplete = function () { return db.close(); };\n return new Promise(function (resolve, reject) {\n tx.onerror = function () { return reject(tx.error); };\n resolve(action(tx.objectStore(STORE_NAME)));\n }).catch(function (err) {\n db.close();\n throw err;\n });\n });\n };\n return IndexedDbStorage;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSW5kZXhlZERiU3RvcmFnZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9JbmRleGVkRGJTdG9yYWdlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLElBQU0sVUFBVSxHQUFHLGFBQWEsQ0FBQztBQUVqQztJQUNFLDBCQUE2QixNQUEyQztRQUEzQyx1QkFBQSxFQUFBLG1DQUEyQztRQUEzQyxXQUFNLEdBQU4sTUFBTSxDQUFxQztJQUFHLENBQUM7SUFFNUUsa0NBQU8sR0FBUCxVQUFRLEdBQVc7UUFDakIsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLFVBQVUsRUFBRSxVQUFDLEtBQUs7WUFDNUMsSUFBTSxHQUFHLEdBQUcsS0FBSyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQztZQUUzQixPQUFPLElBQUksT0FBTyxDQUFnQixVQUFDLE9BQU87Z0JBQ3hDLEdBQUcsQ0FBQyxPQUFPLEdBQUcsY0FBTSxPQUFBLE9BQU8sQ0FBQyxJQUFJLENBQUMsRUFBYixDQUFhLENBQUM7Z0JBRWxDLEdBQUcsQ0FBQyxTQUFTLEdBQUcsY0FBTSxPQUFBLE9BQU8sQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEVBQTdDLENBQTZDLENBQUM7WUFDdEUsQ0FBQyxDQUFDLENBQUM7UUFDTCxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsY0FBTSxPQUFBLElBQUksRUFBSixDQUFJLENBQUMsQ0FBQztJQUN2QixDQUFDO0lBRUQscUNBQVUsR0FBVixVQUFXLEdBQVc7UUFDcEIsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLFdBQVcsRUFBRSxVQUFDLEtBQUs7WUFDN0MsSUFBTSxHQUFHLEdBQUcsS0FBSyxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQztZQUU5QixPQUFPLElBQUksT0FBTyxDQUFPLFVBQUMsT0FBTyxFQUFFLE1BQU07Z0JBQ3ZDLEdBQUcsQ0FBQyxPQUFPLEdBQUcsY0FBTSxPQUFBLE1BQU0sQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLEVBQWpCLENBQWlCLENBQUM7Z0JBRXRDLEdBQUcsQ0FBQyxTQUFTLEdBQUcsY0FBTSxPQUFBLE9BQU8sRUFBRSxFQUFULENBQVMsQ0FBQztZQUNsQyxDQUFDLENBQUMsQ0FBQztRQUNMLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELGtDQUFPLEdBQVAsVUFBUSxFQUFVLEVBQUUsS0FBYTtRQUMvQixPQUFPLElBQUksQ0FBQyxlQUFlLENBQUMsV0FBVyxFQUFFLFVBQUMsS0FBSztZQUM3QyxJQUFNLEdBQUcsR0FBRyxLQUFLLENBQUMsR0FBRyxDQUFDLEVBQUUsRUFBRSxJQUFBLEVBQUUsS0FBSyxPQUFBLEVBQUUsQ0FBQyxDQUFDO1lBRXJDLE9BQU8sSUFBSSxPQUFPLENBQU8sVUFBQyxPQUFPLEVBQUUsTUFBTTtnQkFDdkMsR0FBRyxDQUFDLE9BQU8sR0FBRyxjQUFNLE9BQUEsTUFBTSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsRUFBakIsQ0FBaUIsQ0FBQztnQkFFdEMsR0FBRyxDQUFDLFNBQVMsR0FBRyxjQUFNLE9BQUEsT0FBTyxFQUFFLEVBQVQsQ0FBUyxDQUFDO1lBQ2xDLENBQUMsQ0FBQyxDQUFDO1FBQ0wsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU8sZ0NBQUssR0FBYjtRQUNFLElBQU0sYUFBYSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDMUQsT0FBTyxJQUFJLE9BQU8sQ0FBQyxVQUFDLE9BQU8sRUFBRSxNQUFNO1lBQ2pDLGFBQWEsQ0FBQyxTQUFTLEdBQUc7Z0JBQ3hCLE9BQU8sQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUM7WUFDaEMsQ0FBQyxDQUFDO1lBRUYsYUFBYSxDQUFDLE9BQU8sR0FBRztnQkFDdEIsTUFBTSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUM5QixDQUFDLENBQUM7WUFFRixhQUFhLENBQUMsU0FBUyxHQUFHO2dCQUN4QixNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMscUJBQXFCLENBQUMsQ0FBQyxDQUFDO1lBQzNDLENBQUMsQ0FBQztZQUVGLGFBQWEsQ0FBQyxlQUFlLEdBQUc7Z0JBQzlCLElBQU0sRUFBRSxHQUFHLGFBQWEsQ0FBQyxNQUFNLENBQUM7Z0JBQ2hDLEVBQUUsQ0FBQyxPQUFPLEdBQUc7b0JBQ1gsTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLCtCQUErQixDQUFDLENBQUMsQ0FBQztnQkFDckQsQ0FBQyxDQUFDO2dCQUVGLEVBQUUsQ0FBQyxpQkFBaUIsQ0FBQyxVQUFVLEVBQUUsRUFBRSxPQUFPLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztZQUN0RCxDQUFDLENBQUM7UUFDSixDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFTywwQ0FBZSxHQUF2QixVQUEyQixJQUF3QixFQUFFLE1BQTZDO1FBQ2hHLE9BQU8sSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDLElBQUksQ0FBQyxVQUFDLEVBQUU7WUFDMUIsSUFBTSxFQUFFLEdBQUcsRUFBRSxDQUFDLFdBQVcsQ0FBQyxVQUFVLEVBQUUsSUFBSSxDQUFDLENBQUM7WUFDNUMsRUFBRSxDQUFDLFVBQVUsR0FBRyxjQUFNLE9BQUEsRUFBRSxDQUFDLEtBQUssRUFBRSxFQUFWLENBQVUsQ0FBQztZQUVqQyxPQUFPLElBQUksT0FBTyxDQUFJLFVBQUMsT0FBTyxFQUFFLE1BQU07Z0JBQ3BDLEVBQUUsQ0FBQyxPQUFPLEdBQUcsY0FBTSxPQUFBLE1BQU0sQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLEVBQWhCLENBQWdCLENBQUM7Z0JBRXBDLE9BQU8sQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLFdBQVcsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUM7WUFDOUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLFVBQUMsR0FBRztnQkFDWCxFQUFFLENBQUMsS0FBSyxFQUFFLENBQUM7Z0JBQ1gsTUFBTSxHQUFHLENBQUM7WUFDWixDQUFDLENBQUMsQ0FBQztRQUNMLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUNILHVCQUFDO0FBQUQsQ0FBQyxBQWhGRCxJQWdGQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFN0b3JhZ2UgfSBmcm9tIFwiLi9TdG9yYWdlXCI7XG5cbmNvbnN0IFNUT1JFX05BTUUgPSBcIklkZW50aXR5SWRzXCI7XG5cbmV4cG9ydCBjbGFzcyBJbmRleGVkRGJTdG9yYWdlIGltcGxlbWVudHMgU3RvcmFnZSB7XG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgZGJOYW1lOiBzdHJpbmcgPSBcImF3czpjb2duaXRvLWlkZW50aXR5LWlkc1wiKSB7fVxuXG4gIGdldEl0ZW0oa2V5OiBzdHJpbmcpOiBQcm9taXNlPHN0cmluZyB8IG51bGw+IHtcbiAgICByZXR1cm4gdGhpcy53aXRoT2JqZWN0U3RvcmUoXCJyZWFkb25seVwiLCAoc3RvcmUpID0+IHtcbiAgICAgIGNvbnN0IHJlcSA9IHN0b3JlLmdldChrZXkpO1xuXG4gICAgICByZXR1cm4gbmV3IFByb21pc2U8c3RyaW5nIHwgbnVsbD4oKHJlc29sdmUpID0+IHtcbiAgICAgICAgcmVxLm9uZXJyb3IgPSAoKSA9PiByZXNvbHZlKG51bGwpO1xuXG4gICAgICAgIHJlcS5vbnN1Y2Nlc3MgPSAoKSA9PiByZXNvbHZlKHJlcS5yZXN1bHQgPyByZXEucmVzdWx0LnZhbHVlIDogbnVsbCk7XG4gICAgICB9KTtcbiAgICB9KS5jYXRjaCgoKSA9PiBudWxsKTtcbiAgfVxuXG4gIHJlbW92ZUl0ZW0oa2V5OiBzdHJpbmcpOiBQcm9taXNlPHZvaWQ+IHtcbiAgICByZXR1cm4gdGhpcy53aXRoT2JqZWN0U3RvcmUoXCJyZWFkd3JpdGVcIiwgKHN0b3JlKSA9PiB7XG4gICAgICBjb25zdCByZXEgPSBzdG9yZS5kZWxldGUoa2V5KTtcblxuICAgICAgcmV0dXJuIG5ldyBQcm9taXNlPHZvaWQ+KChyZXNvbHZlLCByZWplY3QpID0+IHtcbiAgICAgICAgcmVxLm9uZXJyb3IgPSAoKSA9PiByZWplY3QocmVxLmVycm9yKTtcblxuICAgICAgICByZXEub25zdWNjZXNzID0gKCkgPT4gcmVzb2x2ZSgpO1xuICAgICAgfSk7XG4gICAgfSk7XG4gIH1cblxuICBzZXRJdGVtKGlkOiBzdHJpbmcsIHZhbHVlOiBzdHJpbmcpOiBQcm9taXNlPHZvaWQ+IHtcbiAgICByZXR1cm4gdGhpcy53aXRoT2JqZWN0U3RvcmUoXCJyZWFkd3JpdGVcIiwgKHN0b3JlKSA9PiB7XG4gICAgICBjb25zdCByZXEgPSBzdG9yZS5wdXQoeyBpZCwgdmFsdWUgfSk7XG5cbiAgICAgIHJldHVybiBuZXcgUHJvbWlzZTx2b2lkPigocmVzb2x2ZSwgcmVqZWN0KSA9PiB7XG4gICAgICAgIHJlcS5vbmVycm9yID0gKCkgPT4gcmVqZWN0KHJlcS5lcnJvcik7XG5cbiAgICAgICAgcmVxLm9uc3VjY2VzcyA9ICgpID0+IHJlc29sdmUoKTtcbiAgICAgIH0pO1xuICAgIH0pO1xuICB9XG5cbiAgcHJpdmF0ZSBnZXREYigpOiBQcm9taXNlPElEQkRhdGFiYXNlPiB7XG4gICAgY29uc3Qgb3BlbkRiUmVxdWVzdCA9IHNlbGYuaW5kZXhlZERCLm9wZW4odGhpcy5kYk5hbWUsIDEpO1xuICAgIHJldHVybiBuZXcgUHJvbWlzZSgocmVzb2x2ZSwgcmVqZWN0KSA9PiB7XG4gICAgICBvcGVuRGJSZXF1ZXN0Lm9uc3VjY2VzcyA9ICgpID0+IHtcbiAgICAgICAgcmVzb2x2ZShvcGVuRGJSZXF1ZXN0LnJlc3VsdCk7XG4gICAgICB9O1xuXG4gICAgICBvcGVuRGJSZXF1ZXN0Lm9uZXJyb3IgPSAoKSA9PiB7XG4gICAgICAgIHJlamVjdChvcGVuRGJSZXF1ZXN0LmVycm9yKTtcbiAgICAgIH07XG5cbiAgICAgIG9wZW5EYlJlcXVlc3Qub25ibG9ja2VkID0gKCkgPT4ge1xuICAgICAgICByZWplY3QobmV3IEVycm9yKFwiVW5hYmxlIHRvIGFjY2VzcyBEQlwiKSk7XG4gICAgICB9O1xuXG4gICAgICBvcGVuRGJSZXF1ZXN0Lm9udXBncmFkZW5lZWRlZCA9ICgpID0+IHtcbiAgICAgICAgY29uc3QgZGIgPSBvcGVuRGJSZXF1ZXN0LnJlc3VsdDtcbiAgICAgICAgZGIub25lcnJvciA9ICgpID0+IHtcbiAgICAgICAgICByZWplY3QobmV3IEVycm9yKFwiRmFpbGVkIHRvIGNyZWF0ZSBvYmplY3Qgc3RvcmVcIikpO1xuICAgICAgICB9O1xuXG4gICAgICAgIGRiLmNyZWF0ZU9iamVjdFN0b3JlKFNUT1JFX05BTUUsIHsga2V5UGF0aDogXCJpZFwiIH0pO1xuICAgICAgfTtcbiAgICB9KTtcbiAgfVxuXG4gIHByaXZhdGUgd2l0aE9iamVjdFN0b3JlPFI+KG1vZGU6IElEQlRyYW5zYWN0aW9uTW9kZSwgYWN0aW9uOiAoc3RvcmU6IElEQk9iamVjdFN0b3JlKSA9PiBQcm9taXNlPFI+KTogUHJvbWlzZTxSPiB7XG4gICAgcmV0dXJuIHRoaXMuZ2V0RGIoKS50aGVuKChkYikgPT4ge1xuICAgICAgY29uc3QgdHggPSBkYi50cmFuc2FjdGlvbihTVE9SRV9OQU1FLCBtb2RlKTtcbiAgICAgIHR4Lm9uY29tcGxldGUgPSAoKSA9PiBkYi5jbG9zZSgpO1xuXG4gICAgICByZXR1cm4gbmV3IFByb21pc2U8Uj4oKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICB0eC5vbmVycm9yID0gKCkgPT4gcmVqZWN0KHR4LmVycm9yKTtcblxuICAgICAgICByZXNvbHZlKGFjdGlvbih0eC5vYmplY3RTdG9yZShTVE9SRV9OQU1FKSkpO1xuICAgICAgfSkuY2F0Y2goKGVycikgPT4ge1xuICAgICAgICBkYi5jbG9zZSgpO1xuICAgICAgICB0aHJvdyBlcnI7XG4gICAgICB9KTtcbiAgICB9KTtcbiAgfVxufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/IndexedDbStorage.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/Logins.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/Logins.js ***! \**************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTG9naW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL0xvZ2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUHJvdmlkZXIgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGludGVyZmFjZSBMb2dpbnMge1xuICBbcHJvdmlkZXJOYW1lOiBzdHJpbmddOiBzdHJpbmcgfCBQcm92aWRlcjxzdHJpbmc+O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFJlc29sdmVkTG9naW5zIHtcbiAgW3Byb3ZpZGVyTmFtZTogc3RyaW5nXTogc3RyaW5nO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/Logins.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/Storage.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/Storage.js ***! \***************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiU3RvcmFnZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9TdG9yYWdlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEEgc3Vic2V0IG9mIHRoZSBTdG9yYWdlIGludGVyZmFjZSBkZWZpbmVkIGluIHRoZSBXSEFUV0cgSFRNTCBzcGVjaWZpY2F0aW9uLlxuICogQWNjZXNzIGJ5IGluZGV4IGlzIG5vdCBzdXBwb3J0ZWQsIGFzIGl0IGNhbm5vdCBiZSByZXBsaWNhdGVkIHdpdGhvdXQgUHJveHlcbiAqIG9iamVjdHMuXG4gKlxuICogVGhlIGludGVyZmFjZSBoYXMgYmVlbiBhdWdtZW50ZWQgdG8gc3VwcG9ydCBhc3luY2hyb25vdXMgc3RvcmFnZVxuICpcbiAqIEBzZWUgaHR0cHM6Ly9odG1sLnNwZWMud2hhdHdnLm9yZy9tdWx0aXBhZ2Uvd2Vic3RvcmFnZS5odG1sI3RoZS1zdG9yYWdlLWludGVyZmFjZVxuICovXG5leHBvcnQgaW50ZXJmYWNlIFN0b3JhZ2Uge1xuICBnZXRJdGVtKGtleTogc3RyaW5nKTogc3RyaW5nIHwgbnVsbCB8IFByb21pc2U8c3RyaW5nIHwgbnVsbD47XG4gIHJlbW92ZUl0ZW0oa2V5OiBzdHJpbmcpOiB2b2lkIHwgUHJvbWlzZTx2b2lkPjtcbiAgc2V0SXRlbShrZXk6IHN0cmluZywgZGF0YTogc3RyaW5nKTogdm9pZCB8IFByb21pc2U8dm9pZD47XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/Storage.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/fromCognitoIdentity.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/fromCognitoIdentity.js ***! \***************************************************************************************************/ /*! exports provided: fromCognitoIdentity */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromCognitoIdentity\", function() { return fromCognitoIdentity; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-cognito-identity */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/property-provider */ \"./node_modules/@aws-sdk/property-provider/dist/es/index.js\");\n/* harmony import */ var _resolveLogins__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./resolveLogins */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/resolveLogins.js\");\n\n\n\n\n/**\n * Retrieves temporary AWS credentials using Amazon Cognito's\n * `GetCredentialsForIdentity` operation.\n *\n * Results from this function call are not cached internally.\n */\nfunction fromCognitoIdentity(parameters) {\n var _this = this;\n return function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var _a, _b, _c, AccessKeyId, Expiration, _d, SecretKey, SessionToken, _e, _f, _g, _h;\n var _j;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_k) {\n switch (_k.label) {\n case 0:\n _f = (_e = parameters.client).send;\n _g = _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_1__[\"GetCredentialsForIdentityCommand\"].bind;\n _j = {\n CustomRoleArn: parameters.customRoleArn,\n IdentityId: parameters.identityId\n };\n if (!parameters.logins) return [3 /*break*/, 2];\n return [4 /*yield*/, Object(_resolveLogins__WEBPACK_IMPORTED_MODULE_3__[\"resolveLogins\"])(parameters.logins)];\n case 1:\n _h = _k.sent();\n return [3 /*break*/, 3];\n case 2:\n _h = undefined;\n _k.label = 3;\n case 3: return [4 /*yield*/, _f.apply(_e, [new (_g.apply(_aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_1__[\"GetCredentialsForIdentityCommand\"], [void 0, (_j.Logins = _h,\n _j)]))()])];\n case 4:\n _a = (_k.sent()).Credentials, _b = _a === void 0 ? throwOnMissingCredentials() : _a, _c = _b.AccessKeyId, AccessKeyId = _c === void 0 ? throwOnMissingAccessKeyId() : _c, Expiration = _b.Expiration, _d = _b.SecretKey, SecretKey = _d === void 0 ? throwOnMissingSecretKey() : _d, SessionToken = _b.SessionToken;\n return [2 /*return*/, {\n identityId: parameters.identityId,\n accessKeyId: AccessKeyId,\n secretAccessKey: SecretKey,\n sessionToken: SessionToken,\n expiration: Expiration,\n }];\n }\n });\n }); };\n}\nfunction throwOnMissingAccessKeyId() {\n throw new _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_2__[\"ProviderError\"](\"Response from Amazon Cognito contained no access key ID\");\n}\nfunction throwOnMissingCredentials() {\n throw new _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_2__[\"ProviderError\"](\"Response from Amazon Cognito contained no credentials\");\n}\nfunction throwOnMissingSecretKey() {\n throw new _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_2__[\"ProviderError\"](\"Response from Amazon Cognito contained no secret key\");\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZnJvbUNvZ25pdG9JZGVudGl0eS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9mcm9tQ29nbml0b0lkZW50aXR5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsZ0NBQWdDLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQztBQUNwRixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFJM0QsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBU2hEOzs7OztHQUtHO0FBQ0gsTUFBTSxVQUFVLG1CQUFtQixDQUFDLFVBQXlDO0lBQTdFLGlCQXlCQztJQXhCQyxPQUFPOzs7Ozs7b0JBUUssS0FBQSxDQUFBLEtBQUEsVUFBVSxDQUFDLE1BQU0sQ0FBQSxDQUFDLElBQUksQ0FBQTt5QkFDMUIsZ0NBQWdDOzt3QkFDbEMsYUFBYSxFQUFFLFVBQVUsQ0FBQyxhQUFhO3dCQUN2QyxVQUFVLEVBQUUsVUFBVSxDQUFDLFVBQVU7O3lCQUN6QixVQUFVLENBQUMsTUFBTSxFQUFqQix3QkFBaUI7b0JBQUcscUJBQU0sYUFBYSxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsRUFBQTs7b0JBQXRDLEtBQUEsU0FBc0MsQ0FBQTs7O29CQUFHLEtBQUEsU0FBUyxDQUFBOzt3QkFKOUUscUJBQU0sY0FDUixjQUFJLGdDQUFnQyxZQUdsQyxTQUFNLEtBQXdFO3dDQUM5RSxFQUNILEVBQUE7O29CQVpDLEtBTUUsQ0FBQSxTQU1ILENBQUEsWUFQZ0MsRUFML0IscUJBS0kseUJBQXlCLEVBQUUsS0FBQSxFQUo3QixtQkFBeUMsRUFBekMsV0FBVyxtQkFBRyx5QkFBeUIsRUFBRSxLQUFBLEVBQ3pDLFVBQVUsZ0JBQUEsRUFDVixpQkFBcUMsRUFBckMsU0FBUyxtQkFBRyx1QkFBdUIsRUFBRSxLQUFBLEVBQ3JDLFlBQVksa0JBQUE7b0JBVWhCLHNCQUFPOzRCQUNMLFVBQVUsRUFBRSxVQUFVLENBQUMsVUFBVTs0QkFDakMsV0FBVyxFQUFFLFdBQVc7NEJBQ3hCLGVBQWUsRUFBRSxTQUFTOzRCQUMxQixZQUFZLEVBQUUsWUFBWTs0QkFDMUIsVUFBVSxFQUFFLFVBQVU7eUJBQ3ZCLEVBQUM7OztTQUNILENBQUM7QUFDSixDQUFDO0FBVUQsU0FBUyx5QkFBeUI7SUFDaEMsTUFBTSxJQUFJLGFBQWEsQ0FBQyx5REFBeUQsQ0FBQyxDQUFDO0FBQ3JGLENBQUM7QUFFRCxTQUFTLHlCQUF5QjtJQUNoQyxNQUFNLElBQUksYUFBYSxDQUFDLHVEQUF1RCxDQUFDLENBQUM7QUFDbkYsQ0FBQztBQUVELFNBQVMsdUJBQXVCO0lBQzlCLE1BQU0sSUFBSSxhQUFhLENBQUMsc0RBQXNELENBQUMsQ0FBQztBQUNsRixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgR2V0Q3JlZGVudGlhbHNGb3JJZGVudGl0eUNvbW1hbmQgfSBmcm9tIFwiQGF3cy1zZGsvY2xpZW50LWNvZ25pdG8taWRlbnRpdHlcIjtcbmltcG9ydCB7IFByb3ZpZGVyRXJyb3IgfSBmcm9tIFwiQGF3cy1zZGsvcHJvcGVydHktcHJvdmlkZXJcIjtcbmltcG9ydCB7IENyZWRlbnRpYWxQcm92aWRlciwgQ3JlZGVudGlhbHMgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgQ29nbml0b1Byb3ZpZGVyUGFyYW1ldGVycyB9IGZyb20gXCIuL0NvZ25pdG9Qcm92aWRlclBhcmFtZXRlcnNcIjtcbmltcG9ydCB7IHJlc29sdmVMb2dpbnMgfSBmcm9tIFwiLi9yZXNvbHZlTG9naW5zXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgQ29nbml0b0lkZW50aXR5Q3JlZGVudGlhbHMgZXh0ZW5kcyBDcmVkZW50aWFscyB7XG4gIC8qKlxuICAgKiBUaGUgQ29nbml0byBJRCByZXR1cm5lZCBieSB0aGUgbGFzdCBjYWxsIHRvIEFXUy5Db2duaXRvSWRlbnRpdHkuZ2V0T3BlbklkVG9rZW4oKS5cbiAgICovXG4gIGlkZW50aXR5SWQ6IHN0cmluZztcbn1cblxuLyoqXG4gKiBSZXRyaWV2ZXMgdGVtcG9yYXJ5IEFXUyBjcmVkZW50aWFscyB1c2luZyBBbWF6b24gQ29nbml0bydzXG4gKiBgR2V0Q3JlZGVudGlhbHNGb3JJZGVudGl0eWAgb3BlcmF0aW9uLlxuICpcbiAqIFJlc3VsdHMgZnJvbSB0aGlzIGZ1bmN0aW9uIGNhbGwgYXJlIG5vdCBjYWNoZWQgaW50ZXJuYWxseS5cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGZyb21Db2duaXRvSWRlbnRpdHkocGFyYW1ldGVyczogRnJvbUNvZ25pdG9JZGVudGl0eVBhcmFtZXRlcnMpOiBDcmVkZW50aWFsUHJvdmlkZXIge1xuICByZXR1cm4gYXN5bmMgKCk6IFByb21pc2U8Q29nbml0b0lkZW50aXR5Q3JlZGVudGlhbHM+ID0+IHtcbiAgICBjb25zdCB7XG4gICAgICBDcmVkZW50aWFsczoge1xuICAgICAgICBBY2Nlc3NLZXlJZCA9IHRocm93T25NaXNzaW5nQWNjZXNzS2V5SWQoKSxcbiAgICAgICAgRXhwaXJhdGlvbixcbiAgICAgICAgU2VjcmV0S2V5ID0gdGhyb3dPbk1pc3NpbmdTZWNyZXRLZXkoKSxcbiAgICAgICAgU2Vzc2lvblRva2VuLFxuICAgICAgfSA9IHRocm93T25NaXNzaW5nQ3JlZGVudGlhbHMoKSxcbiAgICB9ID0gYXdhaXQgcGFyYW1ldGVycy5jbGllbnQuc2VuZChcbiAgICAgIG5ldyBHZXRDcmVkZW50aWFsc0ZvcklkZW50aXR5Q29tbWFuZCh7XG4gICAgICAgIEN1c3RvbVJvbGVBcm46IHBhcmFtZXRlcnMuY3VzdG9tUm9sZUFybixcbiAgICAgICAgSWRlbnRpdHlJZDogcGFyYW1ldGVycy5pZGVudGl0eUlkLFxuICAgICAgICBMb2dpbnM6IHBhcmFtZXRlcnMubG9naW5zID8gYXdhaXQgcmVzb2x2ZUxvZ2lucyhwYXJhbWV0ZXJzLmxvZ2lucykgOiB1bmRlZmluZWQsXG4gICAgICB9KVxuICAgICk7XG5cbiAgICByZXR1cm4ge1xuICAgICAgaWRlbnRpdHlJZDogcGFyYW1ldGVycy5pZGVudGl0eUlkLFxuICAgICAgYWNjZXNzS2V5SWQ6IEFjY2Vzc0tleUlkLFxuICAgICAgc2VjcmV0QWNjZXNzS2V5OiBTZWNyZXRLZXksXG4gICAgICBzZXNzaW9uVG9rZW46IFNlc3Npb25Ub2tlbixcbiAgICAgIGV4cGlyYXRpb246IEV4cGlyYXRpb24sXG4gICAgfTtcbiAgfTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBGcm9tQ29nbml0b0lkZW50aXR5UGFyYW1ldGVycyBleHRlbmRzIENvZ25pdG9Qcm92aWRlclBhcmFtZXRlcnMge1xuICAvKipcbiAgICogVGhlIHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGUgaWRlbnRpdHkgYWdhaW5zdCB3aGljaCBjcmVkZW50aWFscyB3aWxsIGJlXG4gICAqIGlzc3VlZC5cbiAgICovXG4gIGlkZW50aXR5SWQ6IHN0cmluZztcbn1cblxuZnVuY3Rpb24gdGhyb3dPbk1pc3NpbmdBY2Nlc3NLZXlJZCgpOiBuZXZlciB7XG4gIHRocm93IG5ldyBQcm92aWRlckVycm9yKFwiUmVzcG9uc2UgZnJvbSBBbWF6b24gQ29nbml0byBjb250YWluZWQgbm8gYWNjZXNzIGtleSBJRFwiKTtcbn1cblxuZnVuY3Rpb24gdGhyb3dPbk1pc3NpbmdDcmVkZW50aWFscygpOiBuZXZlciB7XG4gIHRocm93IG5ldyBQcm92aWRlckVycm9yKFwiUmVzcG9uc2UgZnJvbSBBbWF6b24gQ29nbml0byBjb250YWluZWQgbm8gY3JlZGVudGlhbHNcIik7XG59XG5cbmZ1bmN0aW9uIHRocm93T25NaXNzaW5nU2VjcmV0S2V5KCk6IG5ldmVyIHtcbiAgdGhyb3cgbmV3IFByb3ZpZGVyRXJyb3IoXCJSZXNwb25zZSBmcm9tIEFtYXpvbiBDb2duaXRvIGNvbnRhaW5lZCBubyBzZWNyZXQga2V5XCIpO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/fromCognitoIdentity.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/fromCognitoIdentityPool.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/fromCognitoIdentityPool.js ***! \*******************************************************************************************************/ /*! exports provided: fromCognitoIdentityPool */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromCognitoIdentityPool\", function() { return fromCognitoIdentityPool; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/client-cognito-identity */ \"./node_modules/@aws-sdk/client-cognito-identity/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/property-provider */ \"./node_modules/@aws-sdk/property-provider/dist/es/index.js\");\n/* harmony import */ var _fromCognitoIdentity__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./fromCognitoIdentity */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/fromCognitoIdentity.js\");\n/* harmony import */ var _localStorage__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./localStorage */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/localStorage.js\");\n/* harmony import */ var _resolveLogins__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./resolveLogins */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/resolveLogins.js\");\n\n\n\n\n\n\n/**\n * Retrieves or generates a unique identifier using Amazon Cognito's `GetId`\n * operation, then generates temporary AWS credentials using Amazon Cognito's\n * `GetCredentialsForIdentity` operation.\n *\n * Results from `GetId` are cached internally, but results from\n * `GetCredentialsForIdentity` are not.\n */\nfunction fromCognitoIdentityPool(_a) {\n var _this = this;\n var accountId = _a.accountId, _b = _a.cache, cache = _b === void 0 ? Object(_localStorage__WEBPACK_IMPORTED_MODULE_4__[\"localStorage\"])() : _b, client = _a.client, customRoleArn = _a.customRoleArn, identityPoolId = _a.identityPoolId, logins = _a.logins, _c = _a.userIdentifier, userIdentifier = _c === void 0 ? !logins || Object.keys(logins).length === 0 ? \"ANONYMOUS\" : undefined : _c;\n var cacheKey = userIdentifier ? \"aws:cognito-identity-credentials:\" + identityPoolId + \":\" + userIdentifier : undefined;\n var provider = function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var identityId, _a, _b, IdentityId, _c, _d, _e, _f;\n var _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n _a = cacheKey;\n if (!_a) return [3 /*break*/, 2];\n return [4 /*yield*/, cache.getItem(cacheKey)];\n case 1:\n _a = (_h.sent());\n _h.label = 2;\n case 2:\n identityId = _a;\n if (!!identityId) return [3 /*break*/, 7];\n _d = (_c = client).send;\n _e = _aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_1__[\"GetIdCommand\"].bind;\n _g = {\n AccountId: accountId,\n IdentityPoolId: identityPoolId\n };\n if (!logins) return [3 /*break*/, 4];\n return [4 /*yield*/, Object(_resolveLogins__WEBPACK_IMPORTED_MODULE_5__[\"resolveLogins\"])(logins)];\n case 3:\n _f = _h.sent();\n return [3 /*break*/, 5];\n case 4:\n _f = undefined;\n _h.label = 5;\n case 5: return [4 /*yield*/, _d.apply(_c, [new (_e.apply(_aws_sdk_client_cognito_identity__WEBPACK_IMPORTED_MODULE_1__[\"GetIdCommand\"], [void 0, (_g.Logins = _f,\n _g)]))()])];\n case 6:\n _b = (_h.sent()).IdentityId, IdentityId = _b === void 0 ? throwOnMissingId() : _b;\n identityId = IdentityId;\n if (cacheKey) {\n Promise.resolve(cache.setItem(cacheKey, identityId)).catch(function () { });\n }\n _h.label = 7;\n case 7:\n provider = Object(_fromCognitoIdentity__WEBPACK_IMPORTED_MODULE_3__[\"fromCognitoIdentity\"])({\n client: client,\n customRoleArn: customRoleArn,\n logins: logins,\n identityId: identityId,\n });\n return [2 /*return*/, provider()];\n }\n });\n }); };\n return function () {\n return provider().catch(function (err) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (cacheKey) {\n Promise.resolve(cache.removeItem(cacheKey)).catch(function () { });\n }\n throw err;\n });\n }); });\n };\n}\nfunction throwOnMissingId() {\n throw new _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_2__[\"ProviderError\"](\"Response from Amazon Cognito contained no identity ID\");\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZnJvbUNvZ25pdG9JZGVudGl0eVBvb2wuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZnJvbUNvZ25pdG9JZGVudGl0eVBvb2wudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQztBQUNoRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFJM0QsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDNUQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzlDLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUdoRDs7Ozs7OztHQU9HO0FBQ0gsTUFBTSxVQUFVLHVCQUF1QixDQUFDLEVBUUo7SUFScEMsaUJBNkNDO1FBNUNDLFNBQVMsZUFBQSxFQUNULGFBQXNCLEVBQXRCLEtBQUssbUJBQUcsWUFBWSxFQUFFLEtBQUEsRUFDdEIsTUFBTSxZQUFBLEVBQ04sYUFBYSxtQkFBQSxFQUNiLGNBQWMsb0JBQUEsRUFDZCxNQUFNLFlBQUEsRUFDTixzQkFBc0YsRUFBdEYsY0FBYyxtQkFBRyxDQUFDLE1BQU0sSUFBSSxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsU0FBUyxLQUFBO0lBRXRGLElBQU0sUUFBUSxHQUFHLGNBQWMsQ0FBQyxDQUFDLENBQUMsc0NBQW9DLGNBQWMsU0FBSSxjQUFnQixDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7SUFFckgsSUFBSSxRQUFRLEdBQXVCOzs7Ozs7b0JBQ2hCLEtBQUEsUUFBUSxDQUFBOzZCQUFSLHdCQUFRO29CQUFLLHFCQUFNLEtBQUssQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLEVBQUE7O29CQUE5QixLQUFBLENBQUMsU0FBNkIsQ0FBQyxDQUFBOzs7b0JBQXhELFVBQVUsS0FBOEM7eUJBQ3hELENBQUMsVUFBVSxFQUFYLHdCQUFXO29CQUNxQyxLQUFBLENBQUEsS0FBQSxNQUFNLENBQUEsQ0FBQyxJQUFJLENBQUE7eUJBQ3ZELFlBQVk7O3dCQUNkLFNBQVMsRUFBRSxTQUFTO3dCQUNwQixjQUFjLEVBQUUsY0FBYzs7eUJBQ3RCLE1BQU0sRUFBTix3QkFBTTtvQkFBRyxxQkFBTSxhQUFhLENBQUMsTUFBTSxDQUFDLEVBQUE7O29CQUEzQixLQUFBLFNBQTJCLENBQUE7OztvQkFBRyxLQUFBLFNBQVMsQ0FBQTs7d0JBSmhCLHFCQUFNLGNBQ2hELGNBQUksWUFBWSxZQUdkLFNBQU0sS0FBa0Q7d0NBQ3hELEVBQ0gsRUFBQTs7b0JBTk8sS0FBb0MsQ0FBQSxTQU0zQyxDQUFBLFdBTnNDLEVBQS9CLFVBQVUsbUJBQUcsZ0JBQWdCLEVBQUUsS0FBQTtvQkFPdkMsVUFBVSxHQUFHLFVBQVUsQ0FBQztvQkFDeEIsSUFBSSxRQUFRLEVBQUU7d0JBQ1osT0FBTyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxVQUFVLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxjQUFPLENBQUMsQ0FBQyxDQUFDO3FCQUN0RTs7O29CQUdILFFBQVEsR0FBRyxtQkFBbUIsQ0FBQzt3QkFDN0IsTUFBTSxRQUFBO3dCQUNOLGFBQWEsZUFBQTt3QkFDYixNQUFNLFFBQUE7d0JBQ04sVUFBVSxZQUFBO3FCQUNYLENBQUMsQ0FBQztvQkFFSCxzQkFBTyxRQUFRLEVBQUUsRUFBQzs7O1NBQ25CLENBQUM7SUFFRixPQUFPO1FBQ0wsT0FBQSxRQUFRLEVBQUUsQ0FBQyxLQUFLLENBQUMsVUFBTyxHQUFHOztnQkFDekIsSUFBSSxRQUFRLEVBQUU7b0JBQ1osT0FBTyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLGNBQU8sQ0FBQyxDQUFDLENBQUM7aUJBQzdEO2dCQUVELE1BQU0sR0FBRyxDQUFDOzthQUNYLENBQUM7SUFORixDQU1FLENBQUM7QUFDUCxDQUFDO0FBc0NELFNBQVMsZ0JBQWdCO0lBQ3ZCLE1BQU0sSUFBSSxhQUFhLENBQUMsdURBQXVELENBQUMsQ0FBQztBQUNuRixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgR2V0SWRDb21tYW5kIH0gZnJvbSBcIkBhd3Mtc2RrL2NsaWVudC1jb2duaXRvLWlkZW50aXR5XCI7XG5pbXBvcnQgeyBQcm92aWRlckVycm9yIH0gZnJvbSBcIkBhd3Mtc2RrL3Byb3BlcnR5LXByb3ZpZGVyXCI7XG5pbXBvcnQgeyBDcmVkZW50aWFsUHJvdmlkZXIgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgQ29nbml0b1Byb3ZpZGVyUGFyYW1ldGVycyB9IGZyb20gXCIuL0NvZ25pdG9Qcm92aWRlclBhcmFtZXRlcnNcIjtcbmltcG9ydCB7IGZyb21Db2duaXRvSWRlbnRpdHkgfSBmcm9tIFwiLi9mcm9tQ29nbml0b0lkZW50aXR5XCI7XG5pbXBvcnQgeyBsb2NhbFN0b3JhZ2UgfSBmcm9tIFwiLi9sb2NhbFN0b3JhZ2VcIjtcbmltcG9ydCB7IHJlc29sdmVMb2dpbnMgfSBmcm9tIFwiLi9yZXNvbHZlTG9naW5zXCI7XG5pbXBvcnQgeyBTdG9yYWdlIH0gZnJvbSBcIi4vU3RvcmFnZVwiO1xuXG4vKipcbiAqIFJldHJpZXZlcyBvciBnZW5lcmF0ZXMgYSB1bmlxdWUgaWRlbnRpZmllciB1c2luZyBBbWF6b24gQ29nbml0bydzIGBHZXRJZGBcbiAqIG9wZXJhdGlvbiwgdGhlbiBnZW5lcmF0ZXMgdGVtcG9yYXJ5IEFXUyBjcmVkZW50aWFscyB1c2luZyBBbWF6b24gQ29nbml0bydzXG4gKiBgR2V0Q3JlZGVudGlhbHNGb3JJZGVudGl0eWAgb3BlcmF0aW9uLlxuICpcbiAqIFJlc3VsdHMgZnJvbSBgR2V0SWRgIGFyZSBjYWNoZWQgaW50ZXJuYWxseSwgYnV0IHJlc3VsdHMgZnJvbVxuICogYEdldENyZWRlbnRpYWxzRm9ySWRlbnRpdHlgIGFyZSBub3QuXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiBmcm9tQ29nbml0b0lkZW50aXR5UG9vbCh7XG4gIGFjY291bnRJZCxcbiAgY2FjaGUgPSBsb2NhbFN0b3JhZ2UoKSxcbiAgY2xpZW50LFxuICBjdXN0b21Sb2xlQXJuLFxuICBpZGVudGl0eVBvb2xJZCxcbiAgbG9naW5zLFxuICB1c2VySWRlbnRpZmllciA9ICFsb2dpbnMgfHwgT2JqZWN0LmtleXMobG9naW5zKS5sZW5ndGggPT09IDAgPyBcIkFOT05ZTU9VU1wiIDogdW5kZWZpbmVkLFxufTogRnJvbUNvZ25pdG9JZGVudGl0eVBvb2xQYXJhbWV0ZXJzKTogQ3JlZGVudGlhbFByb3ZpZGVyIHtcbiAgY29uc3QgY2FjaGVLZXkgPSB1c2VySWRlbnRpZmllciA/IGBhd3M6Y29nbml0by1pZGVudGl0eS1jcmVkZW50aWFsczoke2lkZW50aXR5UG9vbElkfToke3VzZXJJZGVudGlmaWVyfWAgOiB1bmRlZmluZWQ7XG5cbiAgbGV0IHByb3ZpZGVyOiBDcmVkZW50aWFsUHJvdmlkZXIgPSBhc3luYyAoKSA9PiB7XG4gICAgbGV0IGlkZW50aXR5SWQgPSBjYWNoZUtleSAmJiAoYXdhaXQgY2FjaGUuZ2V0SXRlbShjYWNoZUtleSkpO1xuICAgIGlmICghaWRlbnRpdHlJZCkge1xuICAgICAgY29uc3QgeyBJZGVudGl0eUlkID0gdGhyb3dPbk1pc3NpbmdJZCgpIH0gPSBhd2FpdCBjbGllbnQuc2VuZChcbiAgICAgICAgbmV3IEdldElkQ29tbWFuZCh7XG4gICAgICAgICAgQWNjb3VudElkOiBhY2NvdW50SWQsXG4gICAgICAgICAgSWRlbnRpdHlQb29sSWQ6IGlkZW50aXR5UG9vbElkLFxuICAgICAgICAgIExvZ2luczogbG9naW5zID8gYXdhaXQgcmVzb2x2ZUxvZ2lucyhsb2dpbnMpIDogdW5kZWZpbmVkLFxuICAgICAgICB9KVxuICAgICAgKTtcbiAgICAgIGlkZW50aXR5SWQgPSBJZGVudGl0eUlkO1xuICAgICAgaWYgKGNhY2hlS2V5KSB7XG4gICAgICAgIFByb21pc2UucmVzb2x2ZShjYWNoZS5zZXRJdGVtKGNhY2hlS2V5LCBpZGVudGl0eUlkKSkuY2F0Y2goKCkgPT4ge30pO1xuICAgICAgfVxuICAgIH1cblxuICAgIHByb3ZpZGVyID0gZnJvbUNvZ25pdG9JZGVudGl0eSh7XG4gICAgICBjbGllbnQsXG4gICAgICBjdXN0b21Sb2xlQXJuLFxuICAgICAgbG9naW5zLFxuICAgICAgaWRlbnRpdHlJZCxcbiAgICB9KTtcblxuICAgIHJldHVybiBwcm92aWRlcigpO1xuICB9O1xuXG4gIHJldHVybiAoKSA9PlxuICAgIHByb3ZpZGVyKCkuY2F0Y2goYXN5bmMgKGVycikgPT4ge1xuICAgICAgaWYgKGNhY2hlS2V5KSB7XG4gICAgICAgIFByb21pc2UucmVzb2x2ZShjYWNoZS5yZW1vdmVJdGVtKGNhY2hlS2V5KSkuY2F0Y2goKCkgPT4ge30pO1xuICAgICAgfVxuXG4gICAgICB0aHJvdyBlcnI7XG4gICAgfSk7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRnJvbUNvZ25pdG9JZGVudGl0eVBvb2xQYXJhbWV0ZXJzIGV4dGVuZHMgQ29nbml0b1Byb3ZpZGVyUGFyYW1ldGVycyB7XG4gIC8qKlxuICAgKiBBIHN0YW5kYXJkIEFXUyBhY2NvdW50IElEICg5KyBkaWdpdHMpLlxuICAgKi9cbiAgYWNjb3VudElkPzogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBBIGNhY2hlIGluIHdoaWNoIHRvIHN0b3JlIHJlc29sdmVkIENvZ25pdG8gSWRlbnRpdHlJZHMuIElmIG5vdCBzdXBwbGllZCxcbiAgICogdGhlIGNyZWRlbnRpYWwgcHJvdmlkZXIgd2lsbCBhdHRlbXB0IHRvIHN0b3JlIElkZW50aXR5SWRzIGluIG9uZSBvZiB0aGVcbiAgICogZm9sbG93aW5nIChpbiBvcmRlciBvZiBwcmVmZXJlbmNlKTpcbiAgICogICAxLiBJbmRleGVkREJcbiAgICogICAyLiBMb2NhbFN0b3JhZ2VcbiAgICogICAzLiBBbiBpbi1tZW1vcnkgY2FjaGUgb2JqZWN0IHRoYXQgd2lsbCBub3QgcGVyc2lzdCBiZXR3ZWVuIHBhZ2VzLlxuICAgKlxuICAgKiBJbmRleGVkREIgaXMgcHJlZmVycmVkIHRvIG1heGltaXplIGRhdGEgc2hhcmluZyBiZXR3ZWVuIHRvcC1sZXZlbFxuICAgKiBicm93c2luZyBjb250ZXh0cyBhbmQgd2ViIHdvcmtlcnMuXG4gICAqXG4gICAqIFRoZSBwcm92aWRlciB3aWxsIG5vdCBjYWNoZSBJZGVudGl0eUlkcyBvZiBhdXRoZW50aWNhdGVkIHVzZXJzIHVubGVzcyBhXG4gICAqIHNlcGFyYXRlIGB1c2VySWRlbnRpdGlmZXJgIHBhcmFtZXRlciBpcyBzdXBwbGllZC5cbiAgICovXG4gIGNhY2hlPzogU3RvcmFnZTtcblxuICAvKipcbiAgICogVGhlIHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGUgaWRlbnRpdHkgcG9vbCBmcm9tIHdoaWNoIGFuIGlkZW50aXR5IHNob3VsZFxuICAgKiBiZSByZXRyaWV2ZWQgb3IgZ2VuZXJhdGVkLlxuICAgKi9cbiAgaWRlbnRpdHlQb29sSWQ6IHN0cmluZztcblxuICAvKipcbiAgICogQSB1bmlxdWUgaWRlbnRpZmllciBmb3IgdGhlIHVzZXIuIFRoaXMgaXMgZGlzdGluY3QgZnJvbSBhIENvZ25pdG9cbiAgICogSWRlbnRpdHlJZCBhbmQgc2hvdWxkIGluc3RlYWQgYmUgYW4gaWRlbnRpZmllciBtZWFuaW5nZnVsIHRvIHlvdXJcbiAgICogYXBwbGljYXRpb24uIFVzZWQgdG8gY2FjaGUgQ29nbml0byBJZGVudGl0eUlkcyBvbiBhIHBlci11c2VyIGJhc2lzLlxuICAgKi9cbiAgdXNlcklkZW50aWZpZXI/OiBzdHJpbmc7XG59XG5cbmZ1bmN0aW9uIHRocm93T25NaXNzaW5nSWQoKTogbmV2ZXIge1xuICB0aHJvdyBuZXcgUHJvdmlkZXJFcnJvcihcIlJlc3BvbnNlIGZyb20gQW1hem9uIENvZ25pdG8gY29udGFpbmVkIG5vIGlkZW50aXR5IElEXCIpO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/fromCognitoIdentityPool.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/index.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/index.js ***! \*************************************************************************************/ /*! exports provided: fromCognitoIdentity, fromCognitoIdentityPool */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _CognitoProviderParameters__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CognitoProviderParameters */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/CognitoProviderParameters.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _fromCognitoIdentity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./fromCognitoIdentity */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/fromCognitoIdentity.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fromCognitoIdentity\", function() { return _fromCognitoIdentity__WEBPACK_IMPORTED_MODULE_1__[\"fromCognitoIdentity\"]; });\n\n/* harmony import */ var _fromCognitoIdentityPool__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fromCognitoIdentityPool */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/fromCognitoIdentityPool.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fromCognitoIdentityPool\", function() { return _fromCognitoIdentityPool__WEBPACK_IMPORTED_MODULE_2__[\"fromCognitoIdentityPool\"]; });\n\n/* harmony import */ var _Logins__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Logins */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/Logins.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _Storage__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Storage */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/Storage.js\");\n/* empty/unused harmony star reexport */\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxXQUFXLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLi9Db2duaXRvUHJvdmlkZXJQYXJhbWV0ZXJzXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9mcm9tQ29nbml0b0lkZW50aXR5XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9mcm9tQ29nbml0b0lkZW50aXR5UG9vbFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vTG9naW5zXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9TdG9yYWdlXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/localStorage.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/localStorage.js ***! \********************************************************************************************/ /*! exports provided: localStorage */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"localStorage\", function() { return localStorage; });\n/* harmony import */ var _IndexedDbStorage__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./IndexedDbStorage */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/IndexedDbStorage.js\");\n/* harmony import */ var _InMemoryStorage__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./InMemoryStorage */ \"./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/InMemoryStorage.js\");\n\n\nvar inMemoryStorage = new _InMemoryStorage__WEBPACK_IMPORTED_MODULE_1__[\"InMemoryStorage\"]();\nfunction localStorage() {\n if (typeof self === \"object\" && self.indexedDB) {\n return new _IndexedDbStorage__WEBPACK_IMPORTED_MODULE_0__[\"IndexedDbStorage\"]();\n }\n if (typeof window === \"object\" && window.localStorage) {\n return window.localStorage;\n }\n return inMemoryStorage;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYWxTdG9yYWdlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2xvY2FsU3RvcmFnZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUN0RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFHcEQsSUFBTSxlQUFlLEdBQUcsSUFBSSxlQUFlLEVBQUUsQ0FBQztBQUU5QyxNQUFNLFVBQVUsWUFBWTtJQUMxQixJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVEsSUFBSSxJQUFJLENBQUMsU0FBUyxFQUFFO1FBQzlDLE9BQU8sSUFBSSxnQkFBZ0IsRUFBRSxDQUFDO0tBQy9CO0lBRUQsSUFBSSxPQUFPLE1BQU0sS0FBSyxRQUFRLElBQUksTUFBTSxDQUFDLFlBQVksRUFBRTtRQUNyRCxPQUFPLE1BQU0sQ0FBQyxZQUFZLENBQUM7S0FDNUI7SUFFRCxPQUFPLGVBQWUsQ0FBQztBQUN6QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5kZXhlZERiU3RvcmFnZSB9IGZyb20gXCIuL0luZGV4ZWREYlN0b3JhZ2VcIjtcbmltcG9ydCB7IEluTWVtb3J5U3RvcmFnZSB9IGZyb20gXCIuL0luTWVtb3J5U3RvcmFnZVwiO1xuaW1wb3J0IHsgU3RvcmFnZSB9IGZyb20gXCIuL1N0b3JhZ2VcIjtcblxuY29uc3QgaW5NZW1vcnlTdG9yYWdlID0gbmV3IEluTWVtb3J5U3RvcmFnZSgpO1xuXG5leHBvcnQgZnVuY3Rpb24gbG9jYWxTdG9yYWdlKCk6IFN0b3JhZ2Uge1xuICBpZiAodHlwZW9mIHNlbGYgPT09IFwib2JqZWN0XCIgJiYgc2VsZi5pbmRleGVkREIpIHtcbiAgICByZXR1cm4gbmV3IEluZGV4ZWREYlN0b3JhZ2UoKTtcbiAgfVxuXG4gIGlmICh0eXBlb2Ygd2luZG93ID09PSBcIm9iamVjdFwiICYmIHdpbmRvdy5sb2NhbFN0b3JhZ2UpIHtcbiAgICByZXR1cm4gd2luZG93LmxvY2FsU3RvcmFnZTtcbiAgfVxuXG4gIHJldHVybiBpbk1lbW9yeVN0b3JhZ2U7XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/localStorage.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/resolveLogins.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/resolveLogins.js ***! \*********************************************************************************************/ /*! exports provided: resolveLogins */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveLogins\", function() { return resolveLogins; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\n/**\n * @internal\n */\nfunction resolveLogins(logins) {\n return Promise.all(Object.keys(logins).reduce(function (arr, name) {\n var tokenOrProvider = logins[name];\n if (typeof tokenOrProvider === \"string\") {\n arr.push([name, tokenOrProvider]);\n }\n else {\n arr.push(tokenOrProvider().then(function (token) { return [name, token]; }));\n }\n return arr;\n }, [])).then(function (resolvedPairs) {\n return resolvedPairs.reduce(function (logins, _a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), key = _b[0], value = _b[1];\n logins[key] = value;\n return logins;\n }, {});\n });\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZUxvZ2lucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9yZXNvbHZlTG9naW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFFQTs7R0FFRztBQUNILE1BQU0sVUFBVSxhQUFhLENBQUMsTUFBYztJQUMxQyxPQUFPLE9BQU8sQ0FBQyxHQUFHLENBQ2hCLE1BQU0sQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsTUFBTSxDQUFDLFVBQUMsR0FBd0QsRUFBRSxJQUFZO1FBQ2hHLElBQU0sZUFBZSxHQUFHLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUNyQyxJQUFJLE9BQU8sZUFBZSxLQUFLLFFBQVEsRUFBRTtZQUN2QyxHQUFHLENBQUMsSUFBSSxDQUFDLENBQUMsSUFBSSxFQUFFLGVBQWUsQ0FBcUIsQ0FBQyxDQUFDO1NBQ3ZEO2FBQU07WUFDTCxHQUFHLENBQUMsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDLElBQUksQ0FBQyxVQUFDLEtBQUssSUFBSyxPQUFBLENBQUMsSUFBSSxFQUFFLEtBQUssQ0FBcUIsRUFBakMsQ0FBaUMsQ0FBQyxDQUFDLENBQUM7U0FDaEY7UUFDRCxPQUFPLEdBQUcsQ0FBQztJQUNiLENBQUMsRUFBRSxFQUFzQyxDQUFDLENBQzNDLENBQUMsSUFBSSxDQUFDLFVBQUMsYUFBYTtRQUNuQixPQUFBLGFBQWEsQ0FBQyxNQUFNLENBQUMsVUFBQyxNQUFzQixFQUFFLEVBQVk7Z0JBQVosS0FBQSxhQUFZLEVBQVgsR0FBRyxRQUFBLEVBQUUsS0FBSyxRQUFBO1lBQ3ZELE1BQU0sQ0FBQyxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUM7WUFDcEIsT0FBTyxNQUFNLENBQUM7UUFDaEIsQ0FBQyxFQUFFLEVBQW9CLENBQUM7SUFIeEIsQ0FHd0IsQ0FDekIsQ0FBQztBQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBMb2dpbnMsIFJlc29sdmVkTG9naW5zIH0gZnJvbSBcIi4vTG9naW5zXCI7XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiByZXNvbHZlTG9naW5zKGxvZ2luczogTG9naW5zKTogUHJvbWlzZTxSZXNvbHZlZExvZ2lucz4ge1xuICByZXR1cm4gUHJvbWlzZS5hbGwoXG4gICAgT2JqZWN0LmtleXMobG9naW5zKS5yZWR1Y2UoKGFycjogQXJyYXk8W3N0cmluZywgc3RyaW5nXSB8IFByb21pc2U8W3N0cmluZywgc3RyaW5nXT4+LCBuYW1lOiBzdHJpbmcpID0+IHtcbiAgICAgIGNvbnN0IHRva2VuT3JQcm92aWRlciA9IGxvZ2luc1tuYW1lXTtcbiAgICAgIGlmICh0eXBlb2YgdG9rZW5PclByb3ZpZGVyID09PSBcInN0cmluZ1wiKSB7XG4gICAgICAgIGFyci5wdXNoKFtuYW1lLCB0b2tlbk9yUHJvdmlkZXJdIGFzIFtzdHJpbmcsIHN0cmluZ10pO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgYXJyLnB1c2godG9rZW5PclByb3ZpZGVyKCkudGhlbigodG9rZW4pID0+IFtuYW1lLCB0b2tlbl0gYXMgW3N0cmluZywgc3RyaW5nXSkpO1xuICAgICAgfVxuICAgICAgcmV0dXJuIGFycjtcbiAgICB9LCBbXSBhcyBBcnJheTxQcm9taXNlPFtzdHJpbmcsIHN0cmluZ10+PilcbiAgKS50aGVuKChyZXNvbHZlZFBhaXJzKSA9PlxuICAgIHJlc29sdmVkUGFpcnMucmVkdWNlKChsb2dpbnM6IFJlc29sdmVkTG9naW5zLCBba2V5LCB2YWx1ZV0pID0+IHtcbiAgICAgIGxvZ2luc1trZXldID0gdmFsdWU7XG4gICAgICByZXR1cm4gbG9naW5zO1xuICAgIH0sIHt9IGFzIFJlc29sdmVkTG9naW5zKVxuICApO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/credential-provider-cognito-identity/dist/es/resolveLogins.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-codec/dist-es/EventStreamCodec.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-codec/dist-es/EventStreamCodec.js ***! \*****************************************************************************/ /*! exports provided: EventStreamCodec */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventStreamCodec\", function() { return EventStreamCodec; });\n/* harmony import */ var _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-crypto/crc32 */ \"./node_modules/@aws-crypto/crc32/build/index.js\");\n/* harmony import */ var _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _HeaderMarshaller__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./HeaderMarshaller */ \"./node_modules/@aws-sdk/eventstream-codec/dist-es/HeaderMarshaller.js\");\n/* harmony import */ var _splitMessage__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./splitMessage */ \"./node_modules/@aws-sdk/eventstream-codec/dist-es/splitMessage.js\");\n\n\n\nvar EventStreamCodec = (function () {\n function EventStreamCodec(toUtf8, fromUtf8) {\n this.headerMarshaller = new _HeaderMarshaller__WEBPACK_IMPORTED_MODULE_1__[\"HeaderMarshaller\"](toUtf8, fromUtf8);\n }\n EventStreamCodec.prototype.encode = function (_a) {\n var rawHeaders = _a.headers, body = _a.body;\n var headers = this.headerMarshaller.format(rawHeaders);\n var length = headers.byteLength + body.byteLength + 16;\n var out = new Uint8Array(length);\n var view = new DataView(out.buffer, out.byteOffset, out.byteLength);\n var checksum = new _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__[\"Crc32\"]();\n view.setUint32(0, length, false);\n view.setUint32(4, headers.byteLength, false);\n view.setUint32(8, checksum.update(out.subarray(0, 8)).digest(), false);\n out.set(headers, 12);\n out.set(body, headers.byteLength + 12);\n view.setUint32(length - 4, checksum.update(out.subarray(8, length - 4)).digest(), false);\n return out;\n };\n EventStreamCodec.prototype.decode = function (message) {\n var _a = Object(_splitMessage__WEBPACK_IMPORTED_MODULE_2__[\"splitMessage\"])(message), headers = _a.headers, body = _a.body;\n return { headers: this.headerMarshaller.parse(headers), body: body };\n };\n EventStreamCodec.prototype.formatHeaders = function (rawHeaders) {\n return this.headerMarshaller.format(rawHeaders);\n };\n return EventStreamCodec;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-codec/dist-es/EventStreamCodec.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-codec/dist-es/HeaderMarshaller.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-codec/dist-es/HeaderMarshaller.js ***! \*****************************************************************************/ /*! exports provided: HeaderMarshaller */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HeaderMarshaller\", function() { return HeaderMarshaller; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/eventstream-codec/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/eventstream-codec/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js\");\n/* harmony import */ var _Int64__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Int64 */ \"./node_modules/@aws-sdk/eventstream-codec/dist-es/Int64.js\");\n\n\n\nvar HeaderMarshaller = (function () {\n function HeaderMarshaller(toUtf8, fromUtf8) {\n this.toUtf8 = toUtf8;\n this.fromUtf8 = fromUtf8;\n }\n HeaderMarshaller.prototype.format = function (headers) {\n var e_1, _a, e_2, _b;\n var chunks = [];\n try {\n for (var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _d = _c.next(); !_d.done; _d = _c.next()) {\n var headerName = _d.value;\n var bytes = this.fromUtf8(headerName);\n chunks.push(Uint8Array.from([bytes.byteLength]), bytes, this.formatHeaderValue(headers[headerName]));\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_a = _c.return)) _a.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var out = new Uint8Array(chunks.reduce(function (carry, bytes) { return carry + bytes.byteLength; }, 0));\n var position = 0;\n try {\n for (var chunks_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(chunks), chunks_1_1 = chunks_1.next(); !chunks_1_1.done; chunks_1_1 = chunks_1.next()) {\n var chunk = chunks_1_1.value;\n out.set(chunk, position);\n position += chunk.byteLength;\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (chunks_1_1 && !chunks_1_1.done && (_b = chunks_1.return)) _b.call(chunks_1);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return out;\n };\n HeaderMarshaller.prototype.formatHeaderValue = function (header) {\n switch (header.type) {\n case \"boolean\":\n return Uint8Array.from([header.value ? 0 : 1]);\n case \"byte\":\n return Uint8Array.from([2, header.value]);\n case \"short\":\n var shortView = new DataView(new ArrayBuffer(3));\n shortView.setUint8(0, 3);\n shortView.setInt16(1, header.value, false);\n return new Uint8Array(shortView.buffer);\n case \"integer\":\n var intView = new DataView(new ArrayBuffer(5));\n intView.setUint8(0, 4);\n intView.setInt32(1, header.value, false);\n return new Uint8Array(intView.buffer);\n case \"long\":\n var longBytes = new Uint8Array(9);\n longBytes[0] = 5;\n longBytes.set(header.value.bytes, 1);\n return longBytes;\n case \"binary\":\n var binView = new DataView(new ArrayBuffer(3 + header.value.byteLength));\n binView.setUint8(0, 6);\n binView.setUint16(1, header.value.byteLength, false);\n var binBytes = new Uint8Array(binView.buffer);\n binBytes.set(header.value, 3);\n return binBytes;\n case \"string\":\n var utf8Bytes = this.fromUtf8(header.value);\n var strView = new DataView(new ArrayBuffer(3 + utf8Bytes.byteLength));\n strView.setUint8(0, 7);\n strView.setUint16(1, utf8Bytes.byteLength, false);\n var strBytes = new Uint8Array(strView.buffer);\n strBytes.set(utf8Bytes, 3);\n return strBytes;\n case \"timestamp\":\n var tsBytes = new Uint8Array(9);\n tsBytes[0] = 8;\n tsBytes.set(_Int64__WEBPACK_IMPORTED_MODULE_2__[\"Int64\"].fromNumber(header.value.valueOf()).bytes, 1);\n return tsBytes;\n case \"uuid\":\n if (!UUID_PATTERN.test(header.value)) {\n throw new Error(\"Invalid UUID received: \".concat(header.value));\n }\n var uuidBytes = new Uint8Array(17);\n uuidBytes[0] = 9;\n uuidBytes.set(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"fromHex\"])(header.value.replace(/\\-/g, \"\")), 1);\n return uuidBytes;\n }\n };\n HeaderMarshaller.prototype.parse = function (headers) {\n var out = {};\n var position = 0;\n while (position < headers.byteLength) {\n var nameLength = headers.getUint8(position++);\n var name_1 = this.toUtf8(new Uint8Array(headers.buffer, headers.byteOffset + position, nameLength));\n position += nameLength;\n switch (headers.getUint8(position++)) {\n case 0:\n out[name_1] = {\n type: BOOLEAN_TAG,\n value: true,\n };\n break;\n case 1:\n out[name_1] = {\n type: BOOLEAN_TAG,\n value: false,\n };\n break;\n case 2:\n out[name_1] = {\n type: BYTE_TAG,\n value: headers.getInt8(position++),\n };\n break;\n case 3:\n out[name_1] = {\n type: SHORT_TAG,\n value: headers.getInt16(position, false),\n };\n position += 2;\n break;\n case 4:\n out[name_1] = {\n type: INT_TAG,\n value: headers.getInt32(position, false),\n };\n position += 4;\n break;\n case 5:\n out[name_1] = {\n type: LONG_TAG,\n value: new _Int64__WEBPACK_IMPORTED_MODULE_2__[\"Int64\"](new Uint8Array(headers.buffer, headers.byteOffset + position, 8)),\n };\n position += 8;\n break;\n case 6:\n var binaryLength = headers.getUint16(position, false);\n position += 2;\n out[name_1] = {\n type: BINARY_TAG,\n value: new Uint8Array(headers.buffer, headers.byteOffset + position, binaryLength),\n };\n position += binaryLength;\n break;\n case 7:\n var stringLength = headers.getUint16(position, false);\n position += 2;\n out[name_1] = {\n type: STRING_TAG,\n value: this.toUtf8(new Uint8Array(headers.buffer, headers.byteOffset + position, stringLength)),\n };\n position += stringLength;\n break;\n case 8:\n out[name_1] = {\n type: TIMESTAMP_TAG,\n value: new Date(new _Int64__WEBPACK_IMPORTED_MODULE_2__[\"Int64\"](new Uint8Array(headers.buffer, headers.byteOffset + position, 8)).valueOf()),\n };\n position += 8;\n break;\n case 9:\n var uuidBytes = new Uint8Array(headers.buffer, headers.byteOffset + position, 16);\n position += 16;\n out[name_1] = {\n type: UUID_TAG,\n value: \"\".concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(0, 4)), \"-\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(4, 6)), \"-\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(6, 8)), \"-\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(8, 10)), \"-\").concat(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(10))),\n };\n break;\n default:\n throw new Error(\"Unrecognized header type tag\");\n }\n }\n return out;\n };\n return HeaderMarshaller;\n}());\n\nvar HEADER_VALUE_TYPE;\n(function (HEADER_VALUE_TYPE) {\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"boolTrue\"] = 0] = \"boolTrue\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"boolFalse\"] = 1] = \"boolFalse\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"byte\"] = 2] = \"byte\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"short\"] = 3] = \"short\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"integer\"] = 4] = \"integer\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"long\"] = 5] = \"long\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"byteArray\"] = 6] = \"byteArray\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"string\"] = 7] = \"string\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"timestamp\"] = 8] = \"timestamp\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"uuid\"] = 9] = \"uuid\";\n})(HEADER_VALUE_TYPE || (HEADER_VALUE_TYPE = {}));\nvar BOOLEAN_TAG = \"boolean\";\nvar BYTE_TAG = \"byte\";\nvar SHORT_TAG = \"short\";\nvar INT_TAG = \"integer\";\nvar LONG_TAG = \"long\";\nvar BINARY_TAG = \"binary\";\nvar STRING_TAG = \"string\";\nvar TIMESTAMP_TAG = \"timestamp\";\nvar UUID_TAG = \"uuid\";\nvar UUID_PATTERN = /^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$/;\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-codec/dist-es/HeaderMarshaller.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-codec/dist-es/Int64.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-codec/dist-es/Int64.js ***! \******************************************************************/ /*! exports provided: Int64 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Int64\", function() { return Int64; });\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/eventstream-codec/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js\");\n\nvar Int64 = (function () {\n function Int64(bytes) {\n this.bytes = bytes;\n if (bytes.byteLength !== 8) {\n throw new Error(\"Int64 buffers must be exactly 8 bytes\");\n }\n }\n Int64.fromNumber = function (number) {\n if (number > 9223372036854776000 || number < -9223372036854776000) {\n throw new Error(\"\".concat(number, \" is too large (or, if negative, too small) to represent as an Int64\"));\n }\n var bytes = new Uint8Array(8);\n for (var i = 7, remaining = Math.abs(Math.round(number)); i > -1 && remaining > 0; i--, remaining /= 256) {\n bytes[i] = remaining;\n }\n if (number < 0) {\n negate(bytes);\n }\n return new Int64(bytes);\n };\n Int64.prototype.valueOf = function () {\n var bytes = this.bytes.slice(0);\n var negative = bytes[0] & 128;\n if (negative) {\n negate(bytes);\n }\n return parseInt(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_0__[\"toHex\"])(bytes), 16) * (negative ? -1 : 1);\n };\n Int64.prototype.toString = function () {\n return String(this.valueOf());\n };\n return Int64;\n}());\n\nfunction negate(bytes) {\n for (var i = 0; i < 8; i++) {\n bytes[i] ^= 0xff;\n }\n for (var i = 7; i > -1; i--) {\n bytes[i]++;\n if (bytes[i] !== 0)\n break;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-codec/dist-es/Int64.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-codec/dist-es/Message.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-codec/dist-es/Message.js ***! \********************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-codec/dist-es/Message.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-codec/dist-es/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-codec/dist-es/index.js ***! \******************************************************************/ /*! exports provided: EventStreamCodec, Int64 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _EventStreamCodec__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamCodec */ \"./node_modules/@aws-sdk/eventstream-codec/dist-es/EventStreamCodec.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStreamCodec\", function() { return _EventStreamCodec__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamCodec\"]; });\n\n/* harmony import */ var _Int64__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Int64 */ \"./node_modules/@aws-sdk/eventstream-codec/dist-es/Int64.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Int64\", function() { return _Int64__WEBPACK_IMPORTED_MODULE_1__[\"Int64\"]; });\n\n/* harmony import */ var _Message__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Message */ \"./node_modules/@aws-sdk/eventstream-codec/dist-es/Message.js\");\n/* empty/unused harmony star reexport */\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-codec/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-codec/dist-es/splitMessage.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-codec/dist-es/splitMessage.js ***! \*************************************************************************/ /*! exports provided: splitMessage */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"splitMessage\", function() { return splitMessage; });\n/* harmony import */ var _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-crypto/crc32 */ \"./node_modules/@aws-crypto/crc32/build/index.js\");\n/* harmony import */ var _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__);\n\nvar PRELUDE_MEMBER_LENGTH = 4;\nvar PRELUDE_LENGTH = PRELUDE_MEMBER_LENGTH * 2;\nvar CHECKSUM_LENGTH = 4;\nvar MINIMUM_MESSAGE_LENGTH = PRELUDE_LENGTH + CHECKSUM_LENGTH * 2;\nfunction splitMessage(_a) {\n var byteLength = _a.byteLength, byteOffset = _a.byteOffset, buffer = _a.buffer;\n if (byteLength < MINIMUM_MESSAGE_LENGTH) {\n throw new Error(\"Provided message too short to accommodate event stream message overhead\");\n }\n var view = new DataView(buffer, byteOffset, byteLength);\n var messageLength = view.getUint32(0, false);\n if (byteLength !== messageLength) {\n throw new Error(\"Reported message length does not match received message length\");\n }\n var headerLength = view.getUint32(PRELUDE_MEMBER_LENGTH, false);\n var expectedPreludeChecksum = view.getUint32(PRELUDE_LENGTH, false);\n var expectedMessageChecksum = view.getUint32(byteLength - CHECKSUM_LENGTH, false);\n var checksummer = new _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__[\"Crc32\"]().update(new Uint8Array(buffer, byteOffset, PRELUDE_LENGTH));\n if (expectedPreludeChecksum !== checksummer.digest()) {\n throw new Error(\"The prelude checksum specified in the message (\".concat(expectedPreludeChecksum, \") does not match the calculated CRC32 checksum (\").concat(checksummer.digest(), \")\"));\n }\n checksummer.update(new Uint8Array(buffer, byteOffset + PRELUDE_LENGTH, byteLength - (PRELUDE_LENGTH + CHECKSUM_LENGTH)));\n if (expectedMessageChecksum !== checksummer.digest()) {\n throw new Error(\"The message checksum (\".concat(checksummer.digest(), \") did not match the expected value of \").concat(expectedMessageChecksum));\n }\n return {\n headers: new DataView(buffer, byteOffset + PRELUDE_LENGTH + CHECKSUM_LENGTH, headerLength),\n body: new Uint8Array(buffer, byteOffset + PRELUDE_LENGTH + CHECKSUM_LENGTH + headerLength, messageLength - headerLength - (PRELUDE_LENGTH + CHECKSUM_LENGTH + CHECKSUM_LENGTH)),\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-codec/dist-es/splitMessage.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-codec/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js": /*!**********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-codec/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js ***! \**********************************************************************************************************/ /*! exports provided: fromHex, toHex */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromHex\", function() { return fromHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toHex\", function() { return toHex; });\nvar SHORT_TO_HEX = {};\nvar HEX_TO_SHORT = {};\nfor (var i = 0; i < 256; i++) {\n var encodedByte = i.toString(16).toLowerCase();\n if (encodedByte.length === 1) {\n encodedByte = \"0\".concat(encodedByte);\n }\n SHORT_TO_HEX[i] = encodedByte;\n HEX_TO_SHORT[encodedByte] = i;\n}\nfunction fromHex(encoded) {\n if (encoded.length % 2 !== 0) {\n throw new Error(\"Hex encoded strings must have an even number length\");\n }\n var out = new Uint8Array(encoded.length / 2);\n for (var i = 0; i < encoded.length; i += 2) {\n var encodedByte = encoded.slice(i, i + 2).toLowerCase();\n if (encodedByte in HEX_TO_SHORT) {\n out[i / 2] = HEX_TO_SHORT[encodedByte];\n }\n else {\n throw new Error(\"Cannot decode unrecognized sequence \".concat(encodedByte, \" as hexadecimal\"));\n }\n }\n return out;\n}\nfunction toHex(bytes) {\n var out = \"\";\n for (var i = 0; i < bytes.byteLength; i++) {\n out += SHORT_TO_HEX[bytes[i]];\n }\n return out;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-codec/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-codec/node_modules/tslib/tslib.es6.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-codec/node_modules/tslib/tslib.es6.js ***! \*********************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-codec/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-marshaller/dist/es/EventStreamMarshaller.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-marshaller/dist/es/EventStreamMarshaller.js ***! \***************************************************************************************/ /*! exports provided: EventStreamMarshaller */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return EventStreamMarshaller; });\n/* harmony import */ var _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-crypto/crc32 */ \"./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/index.js\");\n/* harmony import */ var _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _HeaderMarshaller__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./HeaderMarshaller */ \"./node_modules/@aws-sdk/eventstream-marshaller/dist/es/HeaderMarshaller.js\");\n/* harmony import */ var _splitMessage__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./splitMessage */ \"./node_modules/@aws-sdk/eventstream-marshaller/dist/es/splitMessage.js\");\n\n\n\n/**\n * A marshaller that can convert binary-packed event stream messages into\n * JavaScript objects and back again into their binary format.\n */\nvar EventStreamMarshaller = /** @class */ (function () {\n function EventStreamMarshaller(toUtf8, fromUtf8) {\n this.headerMarshaller = new _HeaderMarshaller__WEBPACK_IMPORTED_MODULE_1__[\"HeaderMarshaller\"](toUtf8, fromUtf8);\n }\n /**\n * Convert a structured JavaScript object with tagged headers into a binary\n * event stream message.\n */\n EventStreamMarshaller.prototype.marshall = function (_a) {\n var rawHeaders = _a.headers, body = _a.body;\n var headers = this.headerMarshaller.format(rawHeaders);\n var length = headers.byteLength + body.byteLength + 16;\n var out = new Uint8Array(length);\n var view = new DataView(out.buffer, out.byteOffset, out.byteLength);\n var checksum = new _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__[\"Crc32\"]();\n // Format message\n view.setUint32(0, length, false);\n view.setUint32(4, headers.byteLength, false);\n view.setUint32(8, checksum.update(out.subarray(0, 8)).digest(), false);\n out.set(headers, 12);\n out.set(body, headers.byteLength + 12);\n // Write trailing message checksum\n view.setUint32(length - 4, checksum.update(out.subarray(8, length - 4)).digest(), false);\n return out;\n };\n /**\n * Convert a binary event stream message into a JavaScript object with an\n * opaque, binary body and tagged, parsed headers.\n */\n EventStreamMarshaller.prototype.unmarshall = function (message) {\n var _a = Object(_splitMessage__WEBPACK_IMPORTED_MODULE_2__[\"splitMessage\"])(message), headers = _a.headers, body = _a.body;\n return { headers: this.headerMarshaller.parse(headers), body: body };\n };\n /**\n * Convert a structured JavaScript object with tagged headers into a binary\n * event stream message header.\n */\n EventStreamMarshaller.prototype.formatHeaders = function (rawHeaders) {\n return this.headerMarshaller.format(rawHeaders);\n };\n return EventStreamMarshaller;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXZlbnRTdHJlYW1NYXJzaGFsbGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL0V2ZW50U3RyZWFtTWFyc2hhbGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFJMUMsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDdEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRTlDOzs7R0FHRztBQUNIO0lBR0UsK0JBQVksTUFBZSxFQUFFLFFBQWlCO1FBQzVDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxJQUFJLGdCQUFnQixDQUFDLE1BQU0sRUFBRSxRQUFRLENBQUMsQ0FBQztJQUNqRSxDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsd0NBQVEsR0FBUixVQUFTLEVBQXNDO1lBQTNCLFVBQVUsYUFBQSxFQUFFLElBQUksVUFBQTtRQUNsQyxJQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQ3pELElBQU0sTUFBTSxHQUFHLE9BQU8sQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDLFVBQVUsR0FBRyxFQUFFLENBQUM7UUFFekQsSUFBTSxHQUFHLEdBQUcsSUFBSSxVQUFVLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDbkMsSUFBTSxJQUFJLEdBQUcsSUFBSSxRQUFRLENBQUMsR0FBRyxDQUFDLE1BQU0sRUFBRSxHQUFHLENBQUMsVUFBVSxFQUFFLEdBQUcsQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUN0RSxJQUFNLFFBQVEsR0FBRyxJQUFJLEtBQUssRUFBRSxDQUFDO1FBRTdCLGlCQUFpQjtRQUNqQixJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxNQUFNLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFDakMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUUsT0FBTyxDQUFDLFVBQVUsRUFBRSxLQUFLLENBQUMsQ0FBQztRQUM3QyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxRQUFRLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxRQUFRLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFDdkUsR0FBRyxDQUFDLEdBQUcsQ0FBQyxPQUFPLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDckIsR0FBRyxDQUFDLEdBQUcsQ0FBQyxJQUFJLEVBQUUsT0FBTyxDQUFDLFVBQVUsR0FBRyxFQUFFLENBQUMsQ0FBQztRQUV2QyxrQ0FBa0M7UUFDbEMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFLFFBQVEsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQUUsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxFQUFFLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFFekYsT0FBTyxHQUFHLENBQUM7SUFDYixDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsMENBQVUsR0FBVixVQUFXLE9BQXdCO1FBQzNCLElBQUEsS0FBb0IsWUFBWSxDQUFDLE9BQU8sQ0FBQyxFQUF2QyxPQUFPLGFBQUEsRUFBRSxJQUFJLFVBQTBCLENBQUM7UUFFaEQsT0FBTyxFQUFFLE9BQU8sRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxFQUFFLElBQUksTUFBQSxFQUFFLENBQUM7SUFDakUsQ0FBQztJQUVEOzs7T0FHRztJQUNILDZDQUFhLEdBQWIsVUFBYyxVQUEwQjtRQUN0QyxPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7SUFDbEQsQ0FBQztJQUNILDRCQUFDO0FBQUQsQ0FBQyxBQWpERCxJQWlEQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENyYzMyIH0gZnJvbSBcIkBhd3MtY3J5cHRvL2NyYzMyXCI7XG5pbXBvcnQgeyBNZXNzYWdlLCBNZXNzYWdlSGVhZGVycyB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuaW1wb3J0IHsgRGVjb2RlciwgRW5jb2RlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBIZWFkZXJNYXJzaGFsbGVyIH0gZnJvbSBcIi4vSGVhZGVyTWFyc2hhbGxlclwiO1xuaW1wb3J0IHsgc3BsaXRNZXNzYWdlIH0gZnJvbSBcIi4vc3BsaXRNZXNzYWdlXCI7XG5cbi8qKlxuICogQSBtYXJzaGFsbGVyIHRoYXQgY2FuIGNvbnZlcnQgYmluYXJ5LXBhY2tlZCBldmVudCBzdHJlYW0gbWVzc2FnZXMgaW50b1xuICogSmF2YVNjcmlwdCBvYmplY3RzIGFuZCBiYWNrIGFnYWluIGludG8gdGhlaXIgYmluYXJ5IGZvcm1hdC5cbiAqL1xuZXhwb3J0IGNsYXNzIEV2ZW50U3RyZWFtTWFyc2hhbGxlciB7XG4gIHByaXZhdGUgcmVhZG9ubHkgaGVhZGVyTWFyc2hhbGxlcjogSGVhZGVyTWFyc2hhbGxlcjtcblxuICBjb25zdHJ1Y3Rvcih0b1V0Zjg6IEVuY29kZXIsIGZyb21VdGY4OiBEZWNvZGVyKSB7XG4gICAgdGhpcy5oZWFkZXJNYXJzaGFsbGVyID0gbmV3IEhlYWRlck1hcnNoYWxsZXIodG9VdGY4LCBmcm9tVXRmOCk7XG4gIH1cblxuICAvKipcbiAgICogQ29udmVydCBhIHN0cnVjdHVyZWQgSmF2YVNjcmlwdCBvYmplY3Qgd2l0aCB0YWdnZWQgaGVhZGVycyBpbnRvIGEgYmluYXJ5XG4gICAqIGV2ZW50IHN0cmVhbSBtZXNzYWdlLlxuICAgKi9cbiAgbWFyc2hhbGwoeyBoZWFkZXJzOiByYXdIZWFkZXJzLCBib2R5IH06IE1lc3NhZ2UpOiBVaW50OEFycmF5IHtcbiAgICBjb25zdCBoZWFkZXJzID0gdGhpcy5oZWFkZXJNYXJzaGFsbGVyLmZvcm1hdChyYXdIZWFkZXJzKTtcbiAgICBjb25zdCBsZW5ndGggPSBoZWFkZXJzLmJ5dGVMZW5ndGggKyBib2R5LmJ5dGVMZW5ndGggKyAxNjtcblxuICAgIGNvbnN0IG91dCA9IG5ldyBVaW50OEFycmF5KGxlbmd0aCk7XG4gICAgY29uc3QgdmlldyA9IG5ldyBEYXRhVmlldyhvdXQuYnVmZmVyLCBvdXQuYnl0ZU9mZnNldCwgb3V0LmJ5dGVMZW5ndGgpO1xuICAgIGNvbnN0IGNoZWNrc3VtID0gbmV3IENyYzMyKCk7XG5cbiAgICAvLyBGb3JtYXQgbWVzc2FnZVxuICAgIHZpZXcuc2V0VWludDMyKDAsIGxlbmd0aCwgZmFsc2UpO1xuICAgIHZpZXcuc2V0VWludDMyKDQsIGhlYWRlcnMuYnl0ZUxlbmd0aCwgZmFsc2UpO1xuICAgIHZpZXcuc2V0VWludDMyKDgsIGNoZWNrc3VtLnVwZGF0ZShvdXQuc3ViYXJyYXkoMCwgOCkpLmRpZ2VzdCgpLCBmYWxzZSk7XG4gICAgb3V0LnNldChoZWFkZXJzLCAxMik7XG4gICAgb3V0LnNldChib2R5LCBoZWFkZXJzLmJ5dGVMZW5ndGggKyAxMik7XG5cbiAgICAvLyBXcml0ZSB0cmFpbGluZyBtZXNzYWdlIGNoZWNrc3VtXG4gICAgdmlldy5zZXRVaW50MzIobGVuZ3RoIC0gNCwgY2hlY2tzdW0udXBkYXRlKG91dC5zdWJhcnJheSg4LCBsZW5ndGggLSA0KSkuZGlnZXN0KCksIGZhbHNlKTtcblxuICAgIHJldHVybiBvdXQ7XG4gIH1cblxuICAvKipcbiAgICogQ29udmVydCBhIGJpbmFyeSBldmVudCBzdHJlYW0gbWVzc2FnZSBpbnRvIGEgSmF2YVNjcmlwdCBvYmplY3Qgd2l0aCBhblxuICAgKiBvcGFxdWUsIGJpbmFyeSBib2R5IGFuZCB0YWdnZWQsIHBhcnNlZCBoZWFkZXJzLlxuICAgKi9cbiAgdW5tYXJzaGFsbChtZXNzYWdlOiBBcnJheUJ1ZmZlclZpZXcpOiBNZXNzYWdlIHtcbiAgICBjb25zdCB7IGhlYWRlcnMsIGJvZHkgfSA9IHNwbGl0TWVzc2FnZShtZXNzYWdlKTtcblxuICAgIHJldHVybiB7IGhlYWRlcnM6IHRoaXMuaGVhZGVyTWFyc2hhbGxlci5wYXJzZShoZWFkZXJzKSwgYm9keSB9O1xuICB9XG5cbiAgLyoqXG4gICAqIENvbnZlcnQgYSBzdHJ1Y3R1cmVkIEphdmFTY3JpcHQgb2JqZWN0IHdpdGggdGFnZ2VkIGhlYWRlcnMgaW50byBhIGJpbmFyeVxuICAgKiBldmVudCBzdHJlYW0gbWVzc2FnZSBoZWFkZXIuXG4gICAqL1xuICBmb3JtYXRIZWFkZXJzKHJhd0hlYWRlcnM6IE1lc3NhZ2VIZWFkZXJzKTogVWludDhBcnJheSB7XG4gICAgcmV0dXJuIHRoaXMuaGVhZGVyTWFyc2hhbGxlci5mb3JtYXQocmF3SGVhZGVycyk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-marshaller/dist/es/EventStreamMarshaller.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-marshaller/dist/es/HeaderMarshaller.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-marshaller/dist/es/HeaderMarshaller.js ***! \**********************************************************************************/ /*! exports provided: HeaderMarshaller */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HeaderMarshaller\", function() { return HeaderMarshaller; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/util-hex-encoding/dist/es/index.js\");\n/* harmony import */ var _Int64__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Int64 */ \"./node_modules/@aws-sdk/eventstream-marshaller/dist/es/Int64.js\");\n\n\n\n/**\n * @internal\n */\nvar HeaderMarshaller = /** @class */ (function () {\n function HeaderMarshaller(toUtf8, fromUtf8) {\n this.toUtf8 = toUtf8;\n this.fromUtf8 = fromUtf8;\n }\n HeaderMarshaller.prototype.format = function (headers) {\n var e_1, _a, e_2, _b;\n var chunks = [];\n try {\n for (var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _d = _c.next(); !_d.done; _d = _c.next()) {\n var headerName = _d.value;\n var bytes = this.fromUtf8(headerName);\n chunks.push(Uint8Array.from([bytes.byteLength]), bytes, this.formatHeaderValue(headers[headerName]));\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_a = _c.return)) _a.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var out = new Uint8Array(chunks.reduce(function (carry, bytes) { return carry + bytes.byteLength; }, 0));\n var position = 0;\n try {\n for (var chunks_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(chunks), chunks_1_1 = chunks_1.next(); !chunks_1_1.done; chunks_1_1 = chunks_1.next()) {\n var chunk = chunks_1_1.value;\n out.set(chunk, position);\n position += chunk.byteLength;\n }\n }\n catch (e_2_1) { e_2 = { error: e_2_1 }; }\n finally {\n try {\n if (chunks_1_1 && !chunks_1_1.done && (_b = chunks_1.return)) _b.call(chunks_1);\n }\n finally { if (e_2) throw e_2.error; }\n }\n return out;\n };\n HeaderMarshaller.prototype.formatHeaderValue = function (header) {\n switch (header.type) {\n case \"boolean\":\n return Uint8Array.from([header.value ? 0 /* boolTrue */ : 1 /* boolFalse */]);\n case \"byte\":\n return Uint8Array.from([2 /* byte */, header.value]);\n case \"short\":\n var shortView = new DataView(new ArrayBuffer(3));\n shortView.setUint8(0, 3 /* short */);\n shortView.setInt16(1, header.value, false);\n return new Uint8Array(shortView.buffer);\n case \"integer\":\n var intView = new DataView(new ArrayBuffer(5));\n intView.setUint8(0, 4 /* integer */);\n intView.setInt32(1, header.value, false);\n return new Uint8Array(intView.buffer);\n case \"long\":\n var longBytes = new Uint8Array(9);\n longBytes[0] = 5 /* long */;\n longBytes.set(header.value.bytes, 1);\n return longBytes;\n case \"binary\":\n var binView = new DataView(new ArrayBuffer(3 + header.value.byteLength));\n binView.setUint8(0, 6 /* byteArray */);\n binView.setUint16(1, header.value.byteLength, false);\n var binBytes = new Uint8Array(binView.buffer);\n binBytes.set(header.value, 3);\n return binBytes;\n case \"string\":\n var utf8Bytes = this.fromUtf8(header.value);\n var strView = new DataView(new ArrayBuffer(3 + utf8Bytes.byteLength));\n strView.setUint8(0, 7 /* string */);\n strView.setUint16(1, utf8Bytes.byteLength, false);\n var strBytes = new Uint8Array(strView.buffer);\n strBytes.set(utf8Bytes, 3);\n return strBytes;\n case \"timestamp\":\n var tsBytes = new Uint8Array(9);\n tsBytes[0] = 8 /* timestamp */;\n tsBytes.set(_Int64__WEBPACK_IMPORTED_MODULE_2__[\"Int64\"].fromNumber(header.value.valueOf()).bytes, 1);\n return tsBytes;\n case \"uuid\":\n if (!UUID_PATTERN.test(header.value)) {\n throw new Error(\"Invalid UUID received: \" + header.value);\n }\n var uuidBytes = new Uint8Array(17);\n uuidBytes[0] = 9 /* uuid */;\n uuidBytes.set(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"fromHex\"])(header.value.replace(/\\-/g, \"\")), 1);\n return uuidBytes;\n }\n };\n HeaderMarshaller.prototype.parse = function (headers) {\n var out = {};\n var position = 0;\n while (position < headers.byteLength) {\n var nameLength = headers.getUint8(position++);\n var name = this.toUtf8(new Uint8Array(headers.buffer, headers.byteOffset + position, nameLength));\n position += nameLength;\n switch (headers.getUint8(position++)) {\n case 0 /* boolTrue */:\n out[name] = {\n type: BOOLEAN_TAG,\n value: true,\n };\n break;\n case 1 /* boolFalse */:\n out[name] = {\n type: BOOLEAN_TAG,\n value: false,\n };\n break;\n case 2 /* byte */:\n out[name] = {\n type: BYTE_TAG,\n value: headers.getInt8(position++),\n };\n break;\n case 3 /* short */:\n out[name] = {\n type: SHORT_TAG,\n value: headers.getInt16(position, false),\n };\n position += 2;\n break;\n case 4 /* integer */:\n out[name] = {\n type: INT_TAG,\n value: headers.getInt32(position, false),\n };\n position += 4;\n break;\n case 5 /* long */:\n out[name] = {\n type: LONG_TAG,\n value: new _Int64__WEBPACK_IMPORTED_MODULE_2__[\"Int64\"](new Uint8Array(headers.buffer, headers.byteOffset + position, 8)),\n };\n position += 8;\n break;\n case 6 /* byteArray */:\n var binaryLength = headers.getUint16(position, false);\n position += 2;\n out[name] = {\n type: BINARY_TAG,\n value: new Uint8Array(headers.buffer, headers.byteOffset + position, binaryLength),\n };\n position += binaryLength;\n break;\n case 7 /* string */:\n var stringLength = headers.getUint16(position, false);\n position += 2;\n out[name] = {\n type: STRING_TAG,\n value: this.toUtf8(new Uint8Array(headers.buffer, headers.byteOffset + position, stringLength)),\n };\n position += stringLength;\n break;\n case 8 /* timestamp */:\n out[name] = {\n type: TIMESTAMP_TAG,\n value: new Date(new _Int64__WEBPACK_IMPORTED_MODULE_2__[\"Int64\"](new Uint8Array(headers.buffer, headers.byteOffset + position, 8)).valueOf()),\n };\n position += 8;\n break;\n case 9 /* uuid */:\n var uuidBytes = new Uint8Array(headers.buffer, headers.byteOffset + position, 16);\n position += 16;\n out[name] = {\n type: UUID_TAG,\n value: Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(0, 4)) + \"-\" + Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(4, 6)) + \"-\" + Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(6, 8)) + \"-\" + Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(8, 10)) + \"-\" + Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(uuidBytes.subarray(10)),\n };\n break;\n default:\n throw new Error(\"Unrecognized header type tag\");\n }\n }\n return out;\n };\n return HeaderMarshaller;\n}());\n\nvar HEADER_VALUE_TYPE;\n(function (HEADER_VALUE_TYPE) {\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"boolTrue\"] = 0] = \"boolTrue\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"boolFalse\"] = 1] = \"boolFalse\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"byte\"] = 2] = \"byte\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"short\"] = 3] = \"short\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"integer\"] = 4] = \"integer\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"long\"] = 5] = \"long\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"byteArray\"] = 6] = \"byteArray\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"string\"] = 7] = \"string\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"timestamp\"] = 8] = \"timestamp\";\n HEADER_VALUE_TYPE[HEADER_VALUE_TYPE[\"uuid\"] = 9] = \"uuid\";\n})(HEADER_VALUE_TYPE || (HEADER_VALUE_TYPE = {}));\nvar BOOLEAN_TAG = \"boolean\";\nvar BYTE_TAG = \"byte\";\nvar SHORT_TAG = \"short\";\nvar INT_TAG = \"integer\";\nvar LONG_TAG = \"long\";\nvar BINARY_TAG = \"binary\";\nvar STRING_TAG = \"string\";\nvar TIMESTAMP_TAG = \"timestamp\";\nvar UUID_TAG = \"uuid\";\nvar UUID_PATTERN = /^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$/;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSGVhZGVyTWFyc2hhbGxlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9IZWFkZXJNYXJzaGFsbGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFDQSxPQUFPLEVBQUUsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBRTVELE9BQU8sRUFBRSxLQUFLLEVBQUUsTUFBTSxTQUFTLENBQUM7QUFFaEM7O0dBRUc7QUFDSDtJQUNFLDBCQUE2QixNQUFlLEVBQW1CLFFBQWlCO1FBQW5ELFdBQU0sR0FBTixNQUFNLENBQVM7UUFBbUIsYUFBUSxHQUFSLFFBQVEsQ0FBUztJQUFHLENBQUM7SUFFcEYsaUNBQU0sR0FBTixVQUFPLE9BQXVCOztRQUM1QixJQUFNLE1BQU0sR0FBc0IsRUFBRSxDQUFDOztZQUVyQyxLQUF5QixJQUFBLEtBQUEsU0FBQSxNQUFNLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFBLGdCQUFBLDRCQUFFO2dCQUExQyxJQUFNLFVBQVUsV0FBQTtnQkFDbkIsSUFBTSxLQUFLLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxVQUFVLENBQUMsQ0FBQztnQkFDeEMsTUFBTSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxDQUFDLEVBQUUsS0FBSyxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDO2FBQ3RHOzs7Ozs7Ozs7UUFFRCxJQUFNLEdBQUcsR0FBRyxJQUFJLFVBQVUsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLFVBQUMsS0FBSyxFQUFFLEtBQUssSUFBSyxPQUFBLEtBQUssR0FBRyxLQUFLLENBQUMsVUFBVSxFQUF4QixDQUF3QixFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDekYsSUFBSSxRQUFRLEdBQUcsQ0FBQyxDQUFDOztZQUNqQixLQUFvQixJQUFBLFdBQUEsU0FBQSxNQUFNLENBQUEsOEJBQUEsa0RBQUU7Z0JBQXZCLElBQU0sS0FBSyxtQkFBQTtnQkFDZCxHQUFHLENBQUMsR0FBRyxDQUFDLEtBQUssRUFBRSxRQUFRLENBQUMsQ0FBQztnQkFDekIsUUFBUSxJQUFJLEtBQUssQ0FBQyxVQUFVLENBQUM7YUFDOUI7Ozs7Ozs7OztRQUVELE9BQU8sR0FBRyxDQUFDO0lBQ2IsQ0FBQztJQUVPLDRDQUFpQixHQUF6QixVQUEwQixNQUEwQjtRQUNsRCxRQUFRLE1BQU0sQ0FBQyxJQUFJLEVBQUU7WUFDbkIsS0FBSyxTQUFTO2dCQUNaLE9BQU8sVUFBVSxDQUFDLElBQUksQ0FBQyxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxrQkFBNEIsQ0FBQyxrQkFBNEIsQ0FBQyxDQUFDLENBQUM7WUFDcEcsS0FBSyxNQUFNO2dCQUNULE9BQU8sVUFBVSxDQUFDLElBQUksQ0FBQyxlQUF5QixNQUFNLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztZQUNqRSxLQUFLLE9BQU87Z0JBQ1YsSUFBTSxTQUFTLEdBQUcsSUFBSSxRQUFRLENBQUMsSUFBSSxXQUFXLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFDbkQsU0FBUyxDQUFDLFFBQVEsQ0FBQyxDQUFDLGdCQUEwQixDQUFDO2dCQUMvQyxTQUFTLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxNQUFNLENBQUMsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDO2dCQUMzQyxPQUFPLElBQUksVUFBVSxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUMxQyxLQUFLLFNBQVM7Z0JBQ1osSUFBTSxPQUFPLEdBQUcsSUFBSSxRQUFRLENBQUMsSUFBSSxXQUFXLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFDakQsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDLGtCQUE0QixDQUFDO2dCQUMvQyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxNQUFNLENBQUMsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDO2dCQUN6QyxPQUFPLElBQUksVUFBVSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUN4QyxLQUFLLE1BQU07Z0JBQ1QsSUFBTSxTQUFTLEdBQUcsSUFBSSxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ3BDLFNBQVMsQ0FBQyxDQUFDLENBQUMsZUFBeUIsQ0FBQztnQkFDdEMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztnQkFDckMsT0FBTyxTQUFTLENBQUM7WUFDbkIsS0FBSyxRQUFRO2dCQUNYLElBQU0sT0FBTyxHQUFHLElBQUksUUFBUSxDQUFDLElBQUksV0FBVyxDQUFDLENBQUMsR0FBRyxNQUFNLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUM7Z0JBQzNFLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQyxvQkFBOEIsQ0FBQztnQkFDakQsT0FBTyxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUUsTUFBTSxDQUFDLEtBQUssQ0FBQyxVQUFVLEVBQUUsS0FBSyxDQUFDLENBQUM7Z0JBQ3JELElBQU0sUUFBUSxHQUFHLElBQUksVUFBVSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBQztnQkFDaEQsUUFBUSxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDO2dCQUM5QixPQUFPLFFBQVEsQ0FBQztZQUNsQixLQUFLLFFBQVE7Z0JBQ1gsSUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7Z0JBQzlDLElBQU0sT0FBTyxHQUFHLElBQUksUUFBUSxDQUFDLElBQUksV0FBVyxDQUFDLENBQUMsR0FBRyxTQUFTLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQztnQkFDeEUsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDLGlCQUEyQixDQUFDO2dCQUM5QyxPQUFPLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxTQUFTLENBQUMsVUFBVSxFQUFFLEtBQUssQ0FBQyxDQUFDO2dCQUNsRCxJQUFNLFFBQVEsR0FBRyxJQUFJLFVBQVUsQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLENBQUM7Z0JBQ2hELFFBQVEsQ0FBQyxHQUFHLENBQUMsU0FBUyxFQUFFLENBQUMsQ0FBQyxDQUFDO2dCQUMzQixPQUFPLFFBQVEsQ0FBQztZQUNsQixLQUFLLFdBQVc7Z0JBQ2QsSUFBTSxPQUFPLEdBQUcsSUFBSSxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ2xDLE9BQU8sQ0FBQyxDQUFDLENBQUMsb0JBQThCLENBQUM7Z0JBQ3pDLE9BQU8sQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLE9BQU8sRUFBRSxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDO2dCQUMvRCxPQUFPLE9BQU8sQ0FBQztZQUNqQixLQUFLLE1BQU07Z0JBQ1QsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxFQUFFO29CQUNwQyxNQUFNLElBQUksS0FBSyxDQUFDLDRCQUEwQixNQUFNLENBQUMsS0FBTyxDQUFDLENBQUM7aUJBQzNEO2dCQUVELElBQU0sU0FBUyxHQUFHLElBQUksVUFBVSxDQUFDLEVBQUUsQ0FBQyxDQUFDO2dCQUNyQyxTQUFTLENBQUMsQ0FBQyxDQUFDLGVBQXlCLENBQUM7Z0JBQ3RDLFNBQVMsQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO2dCQUMzRCxPQUFPLFNBQVMsQ0FBQztTQUNwQjtJQUNILENBQUM7SUFFRCxnQ0FBSyxHQUFMLFVBQU0sT0FBaUI7UUFDckIsSUFBTSxHQUFHLEdBQW1CLEVBQUUsQ0FBQztRQUMvQixJQUFJLFFBQVEsR0FBRyxDQUFDLENBQUM7UUFFakIsT0FBTyxRQUFRLEdBQUcsT0FBTyxDQUFDLFVBQVUsRUFBRTtZQUNwQyxJQUFNLFVBQVUsR0FBRyxPQUFPLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUM7WUFDaEQsSUFBTSxJQUFJLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLFVBQVUsQ0FBQyxPQUFPLENBQUMsTUFBTSxFQUFFLE9BQU8sQ0FBQyxVQUFVLEdBQUcsUUFBUSxFQUFFLFVBQVUsQ0FBQyxDQUFDLENBQUM7WUFDcEcsUUFBUSxJQUFJLFVBQVUsQ0FBQztZQUV2QixRQUFRLE9BQU8sQ0FBQyxRQUFRLENBQUMsUUFBUSxFQUFFLENBQUMsRUFBRTtnQkFDcEM7b0JBQ0UsR0FBRyxDQUFDLElBQUksQ0FBQyxHQUFHO3dCQUNWLElBQUksRUFBRSxXQUFXO3dCQUNqQixLQUFLLEVBQUUsSUFBSTtxQkFDWixDQUFDO29CQUNGLE1BQU07Z0JBQ1I7b0JBQ0UsR0FBRyxDQUFDLElBQUksQ0FBQyxHQUFHO3dCQUNWLElBQUksRUFBRSxXQUFXO3dCQUNqQixLQUFLLEVBQUUsS0FBSztxQkFDYixDQUFDO29CQUNGLE1BQU07Z0JBQ1I7b0JBQ0UsR0FBRyxDQUFDLElBQUksQ0FBQyxHQUFHO3dCQUNWLElBQUksRUFBRSxRQUFRO3dCQUNkLEtBQUssRUFBRSxPQUFPLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxDQUFDO3FCQUNuQyxDQUFDO29CQUNGLE1BQU07Z0JBQ1I7b0JBQ0UsR0FBRyxDQUFDLElBQUksQ0FBQyxHQUFHO3dCQUNWLElBQUksRUFBRSxTQUFTO3dCQUNmLEtBQUssRUFBRSxPQUFPLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRSxLQUFLLENBQUM7cUJBQ3pDLENBQUM7b0JBQ0YsUUFBUSxJQUFJLENBQUMsQ0FBQztvQkFDZCxNQUFNO2dCQUNSO29CQUNFLEdBQUcsQ0FBQyxJQUFJLENBQUMsR0FBRzt3QkFDVixJQUFJLEVBQUUsT0FBTzt3QkFDYixLQUFLLEVBQUUsT0FBTyxDQUFDLFFBQVEsQ0FBQyxRQUFRLEVBQUUsS0FBSyxDQUFDO3FCQUN6QyxDQUFDO29CQUNGLFFBQVEsSUFBSSxDQUFDLENBQUM7b0JBQ2QsTUFBTTtnQkFDUjtvQkFDRSxHQUFHLENBQUMsSUFBSSxDQUFDLEdBQUc7d0JBQ1YsSUFBSSxFQUFFLFFBQVE7d0JBQ2QsS0FBSyxFQUFFLElBQUksS0FBSyxDQUFDLElBQUksVUFBVSxDQUFDLE9BQU8sQ0FBQyxNQUFNLEVBQUUsT0FBTyxDQUFDLFVBQVUsR0FBRyxRQUFRLEVBQUUsQ0FBQyxDQUFDLENBQUM7cUJBQ25GLENBQUM7b0JBQ0YsUUFBUSxJQUFJLENBQUMsQ0FBQztvQkFDZCxNQUFNO2dCQUNSO29CQUNFLElBQU0sWUFBWSxHQUFHLE9BQU8sQ0FBQyxTQUFTLENBQUMsUUFBUSxFQUFFLEtBQUssQ0FBQyxDQUFDO29CQUN4RCxRQUFRLElBQUksQ0FBQyxDQUFDO29CQUNkLEdBQUcsQ0FBQyxJQUFJLENBQUMsR0FBRzt3QkFDVixJQUFJLEVBQUUsVUFBVTt3QkFDaEIsS0FBSyxFQUFFLElBQUksVUFBVSxDQUFDLE9BQU8sQ0FBQyxNQUFNLEVBQUUsT0FBTyxDQUFDLFVBQVUsR0FBRyxRQUFRLEVBQUUsWUFBWSxDQUFDO3FCQUNuRixDQUFDO29CQUNGLFFBQVEsSUFBSSxZQUFZLENBQUM7b0JBQ3pCLE1BQU07Z0JBQ1I7b0JBQ0UsSUFBTSxZQUFZLEdBQUcsT0FBTyxDQUFDLFNBQVMsQ0FBQyxRQUFRLEVBQUUsS0FBSyxDQUFDLENBQUM7b0JBQ3hELFFBQVEsSUFBSSxDQUFDLENBQUM7b0JBQ2QsR0FBRyxDQUFDLElBQUksQ0FBQyxHQUFHO3dCQUNWLElBQUksRUFBRSxVQUFVO3dCQUNoQixLQUFLLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLFVBQVUsQ0FBQyxPQUFPLENBQUMsTUFBTSxFQUFFLE9BQU8sQ0FBQyxVQUFVLEdBQUcsUUFBUSxFQUFFLFlBQVksQ0FBQyxDQUFDO3FCQUNoRyxDQUFDO29CQUNGLFFBQVEsSUFBSSxZQUFZLENBQUM7b0JBQ3pCLE1BQU07Z0JBQ1I7b0JBQ0UsR0FBRyxDQUFDLElBQUksQ0FBQyxHQUFHO3dCQUNWLElBQUksRUFBRSxhQUFhO3dCQUNuQixLQUFLLEVBQUUsSUFBSSxJQUFJLENBQUMsSUFBSSxLQUFLLENBQUMsSUFBSSxVQUFVLENBQUMsT0FBTyxDQUFDLE1BQU0sRUFBRSxPQUFPLENBQUMsVUFBVSxHQUFHLFFBQVEsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLE9BQU8sRUFBRSxDQUFDO3FCQUN2RyxDQUFDO29CQUNGLFFBQVEsSUFBSSxDQUFDLENBQUM7b0JBQ2QsTUFBTTtnQkFDUjtvQkFDRSxJQUFNLFNBQVMsR0FBRyxJQUFJLFVBQVUsQ0FBQyxPQUFPLENBQUMsTUFBTSxFQUFFLE9BQU8sQ0FBQyxVQUFVLEdBQUcsUUFBUSxFQUFFLEVBQUUsQ0FBQyxDQUFDO29CQUNwRixRQUFRLElBQUksRUFBRSxDQUFDO29CQUNmLEdBQUcsQ0FBQyxJQUFJLENBQUMsR0FBRzt3QkFDVixJQUFJLEVBQUUsUUFBUTt3QkFDZCxLQUFLLEVBQUssS0FBSyxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLFNBQUksS0FBSyxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLFNBQUksS0FBSyxDQUNuRixTQUFTLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FDekIsU0FBSSxLQUFLLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsU0FBSSxLQUFLLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxFQUFFLENBQUMsQ0FBRztxQkFDekUsQ0FBQztvQkFDRixNQUFNO2dCQUNSO29CQUNFLE1BQU0sSUFBSSxLQUFLLENBQUMsOEJBQThCLENBQUMsQ0FBQzthQUNuRDtTQUNGO1FBRUQsT0FBTyxHQUFHLENBQUM7SUFDYixDQUFDO0lBQ0gsdUJBQUM7QUFBRCxDQUFDLEFBcktELElBcUtDOztBQUVELElBQVcsaUJBV1Y7QUFYRCxXQUFXLGlCQUFpQjtJQUMxQixpRUFBWSxDQUFBO0lBQ1osbUVBQVMsQ0FBQTtJQUNULHlEQUFJLENBQUE7SUFDSiwyREFBSyxDQUFBO0lBQ0wsK0RBQU8sQ0FBQTtJQUNQLHlEQUFJLENBQUE7SUFDSixtRUFBUyxDQUFBO0lBQ1QsNkRBQU0sQ0FBQTtJQUNOLG1FQUFTLENBQUE7SUFDVCx5REFBSSxDQUFBO0FBQ04sQ0FBQyxFQVhVLGlCQUFpQixLQUFqQixpQkFBaUIsUUFXM0I7QUFFRCxJQUFNLFdBQVcsR0FBRyxTQUFTLENBQUM7QUFDOUIsSUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDO0FBQ3hCLElBQU0sU0FBUyxHQUFHLE9BQU8sQ0FBQztBQUMxQixJQUFNLE9BQU8sR0FBRyxTQUFTLENBQUM7QUFDMUIsSUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDO0FBQ3hCLElBQU0sVUFBVSxHQUFHLFFBQVEsQ0FBQztBQUM1QixJQUFNLFVBQVUsR0FBRyxRQUFRLENBQUM7QUFDNUIsSUFBTSxhQUFhLEdBQUcsV0FBVyxDQUFDO0FBQ2xDLElBQU0sUUFBUSxHQUFHLE1BQU0sQ0FBQztBQUV4QixJQUFNLFlBQVksR0FBRyxnRUFBZ0UsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERlY29kZXIsIEVuY29kZXIsIE1lc3NhZ2VIZWFkZXJzLCBNZXNzYWdlSGVhZGVyVmFsdWUgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IGZyb21IZXgsIHRvSGV4IH0gZnJvbSBcIkBhd3Mtc2RrL3V0aWwtaGV4LWVuY29kaW5nXCI7XG5cbmltcG9ydCB7IEludDY0IH0gZnJvbSBcIi4vSW50NjRcIjtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNsYXNzIEhlYWRlck1hcnNoYWxsZXIge1xuICBjb25zdHJ1Y3Rvcihwcml2YXRlIHJlYWRvbmx5IHRvVXRmODogRW5jb2RlciwgcHJpdmF0ZSByZWFkb25seSBmcm9tVXRmODogRGVjb2Rlcikge31cblxuICBmb3JtYXQoaGVhZGVyczogTWVzc2FnZUhlYWRlcnMpOiBVaW50OEFycmF5IHtcbiAgICBjb25zdCBjaHVua3M6IEFycmF5PFVpbnQ4QXJyYXk+ID0gW107XG5cbiAgICBmb3IgKGNvbnN0IGhlYWRlck5hbWUgb2YgT2JqZWN0LmtleXMoaGVhZGVycykpIHtcbiAgICAgIGNvbnN0IGJ5dGVzID0gdGhpcy5mcm9tVXRmOChoZWFkZXJOYW1lKTtcbiAgICAgIGNodW5rcy5wdXNoKFVpbnQ4QXJyYXkuZnJvbShbYnl0ZXMuYnl0ZUxlbmd0aF0pLCBieXRlcywgdGhpcy5mb3JtYXRIZWFkZXJWYWx1ZShoZWFkZXJzW2hlYWRlck5hbWVdKSk7XG4gICAgfVxuXG4gICAgY29uc3Qgb3V0ID0gbmV3IFVpbnQ4QXJyYXkoY2h1bmtzLnJlZHVjZSgoY2FycnksIGJ5dGVzKSA9PiBjYXJyeSArIGJ5dGVzLmJ5dGVMZW5ndGgsIDApKTtcbiAgICBsZXQgcG9zaXRpb24gPSAwO1xuICAgIGZvciAoY29uc3QgY2h1bmsgb2YgY2h1bmtzKSB7XG4gICAgICBvdXQuc2V0KGNodW5rLCBwb3NpdGlvbik7XG4gICAgICBwb3NpdGlvbiArPSBjaHVuay5ieXRlTGVuZ3RoO1xuICAgIH1cblxuICAgIHJldHVybiBvdXQ7XG4gIH1cblxuICBwcml2YXRlIGZvcm1hdEhlYWRlclZhbHVlKGhlYWRlcjogTWVzc2FnZUhlYWRlclZhbHVlKTogVWludDhBcnJheSB7XG4gICAgc3dpdGNoIChoZWFkZXIudHlwZSkge1xuICAgICAgY2FzZSBcImJvb2xlYW5cIjpcbiAgICAgICAgcmV0dXJuIFVpbnQ4QXJyYXkuZnJvbShbaGVhZGVyLnZhbHVlID8gSEVBREVSX1ZBTFVFX1RZUEUuYm9vbFRydWUgOiBIRUFERVJfVkFMVUVfVFlQRS5ib29sRmFsc2VdKTtcbiAgICAgIGNhc2UgXCJieXRlXCI6XG4gICAgICAgIHJldHVybiBVaW50OEFycmF5LmZyb20oW0hFQURFUl9WQUxVRV9UWVBFLmJ5dGUsIGhlYWRlci52YWx1ZV0pO1xuICAgICAgY2FzZSBcInNob3J0XCI6XG4gICAgICAgIGNvbnN0IHNob3J0VmlldyA9IG5ldyBEYXRhVmlldyhuZXcgQXJyYXlCdWZmZXIoMykpO1xuICAgICAgICBzaG9ydFZpZXcuc2V0VWludDgoMCwgSEVBREVSX1ZBTFVFX1RZUEUuc2hvcnQpO1xuICAgICAgICBzaG9ydFZpZXcuc2V0SW50MTYoMSwgaGVhZGVyLnZhbHVlLCBmYWxzZSk7XG4gICAgICAgIHJldHVybiBuZXcgVWludDhBcnJheShzaG9ydFZpZXcuYnVmZmVyKTtcbiAgICAgIGNhc2UgXCJpbnRlZ2VyXCI6XG4gICAgICAgIGNvbnN0IGludFZpZXcgPSBuZXcgRGF0YVZpZXcobmV3IEFycmF5QnVmZmVyKDUpKTtcbiAgICAgICAgaW50Vmlldy5zZXRVaW50OCgwLCBIRUFERVJfVkFMVUVfVFlQRS5pbnRlZ2VyKTtcbiAgICAgICAgaW50Vmlldy5zZXRJbnQzMigxLCBoZWFkZXIudmFsdWUsIGZhbHNlKTtcbiAgICAgICAgcmV0dXJuIG5ldyBVaW50OEFycmF5KGludFZpZXcuYnVmZmVyKTtcbiAgICAgIGNhc2UgXCJsb25nXCI6XG4gICAgICAgIGNvbnN0IGxvbmdCeXRlcyA9IG5ldyBVaW50OEFycmF5KDkpO1xuICAgICAgICBsb25nQnl0ZXNbMF0gPSBIRUFERVJfVkFMVUVfVFlQRS5sb25nO1xuICAgICAgICBsb25nQnl0ZXMuc2V0KGhlYWRlci52YWx1ZS5ieXRlcywgMSk7XG4gICAgICAgIHJldHVybiBsb25nQnl0ZXM7XG4gICAgICBjYXNlIFwiYmluYXJ5XCI6XG4gICAgICAgIGNvbnN0IGJpblZpZXcgPSBuZXcgRGF0YVZpZXcobmV3IEFycmF5QnVmZmVyKDMgKyBoZWFkZXIudmFsdWUuYnl0ZUxlbmd0aCkpO1xuICAgICAgICBiaW5WaWV3LnNldFVpbnQ4KDAsIEhFQURFUl9WQUxVRV9UWVBFLmJ5dGVBcnJheSk7XG4gICAgICAgIGJpblZpZXcuc2V0VWludDE2KDEsIGhlYWRlci52YWx1ZS5ieXRlTGVuZ3RoLCBmYWxzZSk7XG4gICAgICAgIGNvbnN0IGJpbkJ5dGVzID0gbmV3IFVpbnQ4QXJyYXkoYmluVmlldy5idWZmZXIpO1xuICAgICAgICBiaW5CeXRlcy5zZXQoaGVhZGVyLnZhbHVlLCAzKTtcbiAgICAgICAgcmV0dXJuIGJpbkJ5dGVzO1xuICAgICAgY2FzZSBcInN0cmluZ1wiOlxuICAgICAgICBjb25zdCB1dGY4Qnl0ZXMgPSB0aGlzLmZyb21VdGY4KGhlYWRlci52YWx1ZSk7XG4gICAgICAgIGNvbnN0IHN0clZpZXcgPSBuZXcgRGF0YVZpZXcobmV3IEFycmF5QnVmZmVyKDMgKyB1dGY4Qnl0ZXMuYnl0ZUxlbmd0aCkpO1xuICAgICAgICBzdHJWaWV3LnNldFVpbnQ4KDAsIEhFQURFUl9WQUxVRV9UWVBFLnN0cmluZyk7XG4gICAgICAgIHN0clZpZXcuc2V0VWludDE2KDEsIHV0ZjhCeXRlcy5ieXRlTGVuZ3RoLCBmYWxzZSk7XG4gICAgICAgIGNvbnN0IHN0ckJ5dGVzID0gbmV3IFVpbnQ4QXJyYXkoc3RyVmlldy5idWZmZXIpO1xuICAgICAgICBzdHJCeXRlcy5zZXQodXRmOEJ5dGVzLCAzKTtcbiAgICAgICAgcmV0dXJuIHN0ckJ5dGVzO1xuICAgICAgY2FzZSBcInRpbWVzdGFtcFwiOlxuICAgICAgICBjb25zdCB0c0J5dGVzID0gbmV3IFVpbnQ4QXJyYXkoOSk7XG4gICAgICAgIHRzQnl0ZXNbMF0gPSBIRUFERVJfVkFMVUVfVFlQRS50aW1lc3RhbXA7XG4gICAgICAgIHRzQnl0ZXMuc2V0KEludDY0LmZyb21OdW1iZXIoaGVhZGVyLnZhbHVlLnZhbHVlT2YoKSkuYnl0ZXMsIDEpO1xuICAgICAgICByZXR1cm4gdHNCeXRlcztcbiAgICAgIGNhc2UgXCJ1dWlkXCI6XG4gICAgICAgIGlmICghVVVJRF9QQVRURVJOLnRlc3QoaGVhZGVyLnZhbHVlKSkge1xuICAgICAgICAgIHRocm93IG5ldyBFcnJvcihgSW52YWxpZCBVVUlEIHJlY2VpdmVkOiAke2hlYWRlci52YWx1ZX1gKTtcbiAgICAgICAgfVxuXG4gICAgICAgIGNvbnN0IHV1aWRCeXRlcyA9IG5ldyBVaW50OEFycmF5KDE3KTtcbiAgICAgICAgdXVpZEJ5dGVzWzBdID0gSEVBREVSX1ZBTFVFX1RZUEUudXVpZDtcbiAgICAgICAgdXVpZEJ5dGVzLnNldChmcm9tSGV4KGhlYWRlci52YWx1ZS5yZXBsYWNlKC9cXC0vZywgXCJcIikpLCAxKTtcbiAgICAgICAgcmV0dXJuIHV1aWRCeXRlcztcbiAgICB9XG4gIH1cblxuICBwYXJzZShoZWFkZXJzOiBEYXRhVmlldyk6IE1lc3NhZ2VIZWFkZXJzIHtcbiAgICBjb25zdCBvdXQ6IE1lc3NhZ2VIZWFkZXJzID0ge307XG4gICAgbGV0IHBvc2l0aW9uID0gMDtcblxuICAgIHdoaWxlIChwb3NpdGlvbiA8IGhlYWRlcnMuYnl0ZUxlbmd0aCkge1xuICAgICAgY29uc3QgbmFtZUxlbmd0aCA9IGhlYWRlcnMuZ2V0VWludDgocG9zaXRpb24rKyk7XG4gICAgICBjb25zdCBuYW1lID0gdGhpcy50b1V0ZjgobmV3IFVpbnQ4QXJyYXkoaGVhZGVycy5idWZmZXIsIGhlYWRlcnMuYnl0ZU9mZnNldCArIHBvc2l0aW9uLCBuYW1lTGVuZ3RoKSk7XG4gICAgICBwb3NpdGlvbiArPSBuYW1lTGVuZ3RoO1xuXG4gICAgICBzd2l0Y2ggKGhlYWRlcnMuZ2V0VWludDgocG9zaXRpb24rKykpIHtcbiAgICAgICAgY2FzZSBIRUFERVJfVkFMVUVfVFlQRS5ib29sVHJ1ZTpcbiAgICAgICAgICBvdXRbbmFtZV0gPSB7XG4gICAgICAgICAgICB0eXBlOiBCT09MRUFOX1RBRyxcbiAgICAgICAgICAgIHZhbHVlOiB0cnVlLFxuICAgICAgICAgIH07XG4gICAgICAgICAgYnJlYWs7XG4gICAgICAgIGNhc2UgSEVBREVSX1ZBTFVFX1RZUEUuYm9vbEZhbHNlOlxuICAgICAgICAgIG91dFtuYW1lXSA9IHtcbiAgICAgICAgICAgIHR5cGU6IEJPT0xFQU5fVEFHLFxuICAgICAgICAgICAgdmFsdWU6IGZhbHNlLFxuICAgICAgICAgIH07XG4gICAgICAgICAgYnJlYWs7XG4gICAgICAgIGNhc2UgSEVBREVSX1ZBTFVFX1RZUEUuYnl0ZTpcbiAgICAgICAgICBvdXRbbmFtZV0gPSB7XG4gICAgICAgICAgICB0eXBlOiBCWVRFX1RBRyxcbiAgICAgICAgICAgIHZhbHVlOiBoZWFkZXJzLmdldEludDgocG9zaXRpb24rKyksXG4gICAgICAgICAgfTtcbiAgICAgICAgICBicmVhaztcbiAgICAgICAgY2FzZSBIRUFERVJfVkFMVUVfVFlQRS5zaG9ydDpcbiAgICAgICAgICBvdXRbbmFtZV0gPSB7XG4gICAgICAgICAgICB0eXBlOiBTSE9SVF9UQUcsXG4gICAgICAgICAgICB2YWx1ZTogaGVhZGVycy5nZXRJbnQxNihwb3NpdGlvbiwgZmFsc2UpLFxuICAgICAgICAgIH07XG4gICAgICAgICAgcG9zaXRpb24gKz0gMjtcbiAgICAgICAgICBicmVhaztcbiAgICAgICAgY2FzZSBIRUFERVJfVkFMVUVfVFlQRS5pbnRlZ2VyOlxuICAgICAgICAgIG91dFtuYW1lXSA9IHtcbiAgICAgICAgICAgIHR5cGU6IElOVF9UQUcsXG4gICAgICAgICAgICB2YWx1ZTogaGVhZGVycy5nZXRJbnQzMihwb3NpdGlvbiwgZmFsc2UpLFxuICAgICAgICAgIH07XG4gICAgICAgICAgcG9zaXRpb24gKz0gNDtcbiAgICAgICAgICBicmVhaztcbiAgICAgICAgY2FzZSBIRUFERVJfVkFMVUVfVFlQRS5sb25nOlxuICAgICAgICAgIG91dFtuYW1lXSA9IHtcbiAgICAgICAgICAgIHR5cGU6IExPTkdfVEFHLFxuICAgICAgICAgICAgdmFsdWU6IG5ldyBJbnQ2NChuZXcgVWludDhBcnJheShoZWFkZXJzLmJ1ZmZlciwgaGVhZGVycy5ieXRlT2Zmc2V0ICsgcG9zaXRpb24sIDgpKSxcbiAgICAgICAgICB9O1xuICAgICAgICAgIHBvc2l0aW9uICs9IDg7XG4gICAgICAgICAgYnJlYWs7XG4gICAgICAgIGNhc2UgSEVBREVSX1ZBTFVFX1RZUEUuYnl0ZUFycmF5OlxuICAgICAgICAgIGNvbnN0IGJpbmFyeUxlbmd0aCA9IGhlYWRlcnMuZ2V0VWludDE2KHBvc2l0aW9uLCBmYWxzZSk7XG4gICAgICAgICAgcG9zaXRpb24gKz0gMjtcbiAgICAgICAgICBvdXRbbmFtZV0gPSB7XG4gICAgICAgICAgICB0eXBlOiBCSU5BUllfVEFHLFxuICAgICAgICAgICAgdmFsdWU6IG5ldyBVaW50OEFycmF5KGhlYWRlcnMuYnVmZmVyLCBoZWFkZXJzLmJ5dGVPZmZzZXQgKyBwb3NpdGlvbiwgYmluYXJ5TGVuZ3RoKSxcbiAgICAgICAgICB9O1xuICAgICAgICAgIHBvc2l0aW9uICs9IGJpbmFyeUxlbmd0aDtcbiAgICAgICAgICBicmVhaztcbiAgICAgICAgY2FzZSBIRUFERVJfVkFMVUVfVFlQRS5zdHJpbmc6XG4gICAgICAgICAgY29uc3Qgc3RyaW5nTGVuZ3RoID0gaGVhZGVycy5nZXRVaW50MTYocG9zaXRpb24sIGZhbHNlKTtcbiAgICAgICAgICBwb3NpdGlvbiArPSAyO1xuICAgICAgICAgIG91dFtuYW1lXSA9IHtcbiAgICAgICAgICAgIHR5cGU6IFNUUklOR19UQUcsXG4gICAgICAgICAgICB2YWx1ZTogdGhpcy50b1V0ZjgobmV3IFVpbnQ4QXJyYXkoaGVhZGVycy5idWZmZXIsIGhlYWRlcnMuYnl0ZU9mZnNldCArIHBvc2l0aW9uLCBzdHJpbmdMZW5ndGgpKSxcbiAgICAgICAgICB9O1xuICAgICAgICAgIHBvc2l0aW9uICs9IHN0cmluZ0xlbmd0aDtcbiAgICAgICAgICBicmVhaztcbiAgICAgICAgY2FzZSBIRUFERVJfVkFMVUVfVFlQRS50aW1lc3RhbXA6XG4gICAgICAgICAgb3V0W25hbWVdID0ge1xuICAgICAgICAgICAgdHlwZTogVElNRVNUQU1QX1RBRyxcbiAgICAgICAgICAgIHZhbHVlOiBuZXcgRGF0ZShuZXcgSW50NjQobmV3IFVpbnQ4QXJyYXkoaGVhZGVycy5idWZmZXIsIGhlYWRlcnMuYnl0ZU9mZnNldCArIHBvc2l0aW9uLCA4KSkudmFsdWVPZigpKSxcbiAgICAgICAgICB9O1xuICAgICAgICAgIHBvc2l0aW9uICs9IDg7XG4gICAgICAgICAgYnJlYWs7XG4gICAgICAgIGNhc2UgSEVBREVSX1ZBTFVFX1RZUEUudXVpZDpcbiAgICAgICAgICBjb25zdCB1dWlkQnl0ZXMgPSBuZXcgVWludDhBcnJheShoZWFkZXJzLmJ1ZmZlciwgaGVhZGVycy5ieXRlT2Zmc2V0ICsgcG9zaXRpb24sIDE2KTtcbiAgICAgICAgICBwb3NpdGlvbiArPSAxNjtcbiAgICAgICAgICBvdXRbbmFtZV0gPSB7XG4gICAgICAgICAgICB0eXBlOiBVVUlEX1RBRyxcbiAgICAgICAgICAgIHZhbHVlOiBgJHt0b0hleCh1dWlkQnl0ZXMuc3ViYXJyYXkoMCwgNCkpfS0ke3RvSGV4KHV1aWRCeXRlcy5zdWJhcnJheSg0LCA2KSl9LSR7dG9IZXgoXG4gICAgICAgICAgICAgIHV1aWRCeXRlcy5zdWJhcnJheSg2LCA4KVxuICAgICAgICAgICAgKX0tJHt0b0hleCh1dWlkQnl0ZXMuc3ViYXJyYXkoOCwgMTApKX0tJHt0b0hleCh1dWlkQnl0ZXMuc3ViYXJyYXkoMTApKX1gLFxuICAgICAgICAgIH07XG4gICAgICAgICAgYnJlYWs7XG4gICAgICAgIGRlZmF1bHQ6XG4gICAgICAgICAgdGhyb3cgbmV3IEVycm9yKGBVbnJlY29nbml6ZWQgaGVhZGVyIHR5cGUgdGFnYCk7XG4gICAgICB9XG4gICAgfVxuXG4gICAgcmV0dXJuIG91dDtcbiAgfVxufVxuXG5jb25zdCBlbnVtIEhFQURFUl9WQUxVRV9UWVBFIHtcbiAgYm9vbFRydWUgPSAwLFxuICBib29sRmFsc2UsXG4gIGJ5dGUsXG4gIHNob3J0LFxuICBpbnRlZ2VyLFxuICBsb25nLFxuICBieXRlQXJyYXksXG4gIHN0cmluZyxcbiAgdGltZXN0YW1wLFxuICB1dWlkLFxufVxuXG5jb25zdCBCT09MRUFOX1RBRyA9IFwiYm9vbGVhblwiO1xuY29uc3QgQllURV9UQUcgPSBcImJ5dGVcIjtcbmNvbnN0IFNIT1JUX1RBRyA9IFwic2hvcnRcIjtcbmNvbnN0IElOVF9UQUcgPSBcImludGVnZXJcIjtcbmNvbnN0IExPTkdfVEFHID0gXCJsb25nXCI7XG5jb25zdCBCSU5BUllfVEFHID0gXCJiaW5hcnlcIjtcbmNvbnN0IFNUUklOR19UQUcgPSBcInN0cmluZ1wiO1xuY29uc3QgVElNRVNUQU1QX1RBRyA9IFwidGltZXN0YW1wXCI7XG5jb25zdCBVVUlEX1RBRyA9IFwidXVpZFwiO1xuXG5jb25zdCBVVUlEX1BBVFRFUk4gPSAvXlthLWYwLTldezh9LVthLWYwLTldezR9LVthLWYwLTldezR9LVthLWYwLTldezR9LVthLWYwLTldezEyfSQvO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-marshaller/dist/es/HeaderMarshaller.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-marshaller/dist/es/Int64.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-marshaller/dist/es/Int64.js ***! \***********************************************************************/ /*! exports provided: Int64 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Int64\", function() { return Int64; });\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/util-hex-encoding/dist/es/index.js\");\n\n/**\n * A lossless representation of a signed, 64-bit integer. Instances of this\n * class may be used in arithmetic expressions as if they were numeric\n * primitives, but the binary representation will be preserved unchanged as the\n * `bytes` property of the object. The bytes should be encoded as big-endian,\n * two's complement integers.\n */\nvar Int64 = /** @class */ (function () {\n function Int64(bytes) {\n this.bytes = bytes;\n if (bytes.byteLength !== 8) {\n throw new Error(\"Int64 buffers must be exactly 8 bytes\");\n }\n }\n Int64.fromNumber = function (number) {\n if (number > 9223372036854775807 || number < -9223372036854775808) {\n throw new Error(number + \" is too large (or, if negative, too small) to represent as an Int64\");\n }\n var bytes = new Uint8Array(8);\n for (var i = 7, remaining = Math.abs(Math.round(number)); i > -1 && remaining > 0; i--, remaining /= 256) {\n bytes[i] = remaining;\n }\n if (number < 0) {\n negate(bytes);\n }\n return new Int64(bytes);\n };\n /**\n * Called implicitly by infix arithmetic operators.\n */\n Int64.prototype.valueOf = function () {\n var bytes = this.bytes.slice(0);\n var negative = bytes[0] & 128;\n if (negative) {\n negate(bytes);\n }\n return parseInt(Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_0__[\"toHex\"])(bytes), 16) * (negative ? -1 : 1);\n };\n Int64.prototype.toString = function () {\n return String(this.valueOf());\n };\n return Int64;\n}());\n\nfunction negate(bytes) {\n for (var i = 0; i < 8; i++) {\n bytes[i] ^= 0xff;\n }\n for (var i = 7; i > -1; i--) {\n bytes[i]++;\n if (bytes[i] !== 0)\n break;\n }\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSW50NjQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvSW50NjQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBSW5EOzs7Ozs7R0FNRztBQUNIO0lBQ0UsZUFBcUIsS0FBaUI7UUFBakIsVUFBSyxHQUFMLEtBQUssQ0FBWTtRQUNwQyxJQUFJLEtBQUssQ0FBQyxVQUFVLEtBQUssQ0FBQyxFQUFFO1lBQzFCLE1BQU0sSUFBSSxLQUFLLENBQUMsdUNBQXVDLENBQUMsQ0FBQztTQUMxRDtJQUNILENBQUM7SUFFTSxnQkFBVSxHQUFqQixVQUFrQixNQUFjO1FBQzlCLElBQUksTUFBTSxHQUFHLG1CQUFtQixJQUFJLE1BQU0sR0FBRyxDQUFDLG1CQUFtQixFQUFFO1lBQ2pFLE1BQU0sSUFBSSxLQUFLLENBQUksTUFBTSx3RUFBcUUsQ0FBQyxDQUFDO1NBQ2pHO1FBRUQsSUFBTSxLQUFLLEdBQUcsSUFBSSxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDaEMsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsU0FBUyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxTQUFTLEdBQUcsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFLFNBQVMsSUFBSSxHQUFHLEVBQUU7WUFDeEcsS0FBSyxDQUFDLENBQUMsQ0FBQyxHQUFHLFNBQVMsQ0FBQztTQUN0QjtRQUVELElBQUksTUFBTSxHQUFHLENBQUMsRUFBRTtZQUNkLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUNmO1FBRUQsT0FBTyxJQUFJLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMxQixDQUFDO0lBRUQ7O09BRUc7SUFDSCx1QkFBTyxHQUFQO1FBQ0UsSUFBTSxLQUFLLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDbEMsSUFBTSxRQUFRLEdBQUcsS0FBSyxDQUFDLENBQUMsQ0FBQyxHQUFHLEdBQVUsQ0FBQztRQUN2QyxJQUFJLFFBQVEsRUFBRTtZQUNaLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztTQUNmO1FBRUQsT0FBTyxRQUFRLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxFQUFFLEVBQUUsQ0FBQyxHQUFHLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDMUQsQ0FBQztJQUVELHdCQUFRLEdBQVI7UUFDRSxPQUFPLE1BQU0sQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsQ0FBQztJQUNoQyxDQUFDO0lBQ0gsWUFBQztBQUFELENBQUMsQUF4Q0QsSUF3Q0M7O0FBRUQsU0FBUyxNQUFNLENBQUMsS0FBaUI7SUFDL0IsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRTtRQUMxQixLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDO0tBQ2xCO0lBRUQsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFO1FBQzNCLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1FBQ1gsSUFBSSxLQUFLLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQztZQUFFLE1BQU07S0FDM0I7QUFDSCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW50NjQgYXMgSUludDY0IH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyB0b0hleCB9IGZyb20gXCJAYXdzLXNkay91dGlsLWhleC1lbmNvZGluZ1wiO1xuXG5leHBvcnQgaW50ZXJmYWNlIEludDY0IGV4dGVuZHMgSUludDY0IHt9XG5cbi8qKlxuICogQSBsb3NzbGVzcyByZXByZXNlbnRhdGlvbiBvZiBhIHNpZ25lZCwgNjQtYml0IGludGVnZXIuIEluc3RhbmNlcyBvZiB0aGlzXG4gKiBjbGFzcyBtYXkgYmUgdXNlZCBpbiBhcml0aG1ldGljIGV4cHJlc3Npb25zIGFzIGlmIHRoZXkgd2VyZSBudW1lcmljXG4gKiBwcmltaXRpdmVzLCBidXQgdGhlIGJpbmFyeSByZXByZXNlbnRhdGlvbiB3aWxsIGJlIHByZXNlcnZlZCB1bmNoYW5nZWQgYXMgdGhlXG4gKiBgYnl0ZXNgIHByb3BlcnR5IG9mIHRoZSBvYmplY3QuIFRoZSBieXRlcyBzaG91bGQgYmUgZW5jb2RlZCBhcyBiaWctZW5kaWFuLFxuICogdHdvJ3MgY29tcGxlbWVudCBpbnRlZ2Vycy5cbiAqL1xuZXhwb3J0IGNsYXNzIEludDY0IHtcbiAgY29uc3RydWN0b3IocmVhZG9ubHkgYnl0ZXM6IFVpbnQ4QXJyYXkpIHtcbiAgICBpZiAoYnl0ZXMuYnl0ZUxlbmd0aCAhPT0gOCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFwiSW50NjQgYnVmZmVycyBtdXN0IGJlIGV4YWN0bHkgOCBieXRlc1wiKTtcbiAgICB9XG4gIH1cblxuICBzdGF0aWMgZnJvbU51bWJlcihudW1iZXI6IG51bWJlcik6IEludDY0IHtcbiAgICBpZiAobnVtYmVyID4gOTIyMzM3MjAzNjg1NDc3NTgwNyB8fCBudW1iZXIgPCAtOTIyMzM3MjAzNjg1NDc3NTgwOCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKGAke251bWJlcn0gaXMgdG9vIGxhcmdlIChvciwgaWYgbmVnYXRpdmUsIHRvbyBzbWFsbCkgdG8gcmVwcmVzZW50IGFzIGFuIEludDY0YCk7XG4gICAgfVxuXG4gICAgY29uc3QgYnl0ZXMgPSBuZXcgVWludDhBcnJheSg4KTtcbiAgICBmb3IgKGxldCBpID0gNywgcmVtYWluaW5nID0gTWF0aC5hYnMoTWF0aC5yb3VuZChudW1iZXIpKTsgaSA+IC0xICYmIHJlbWFpbmluZyA+IDA7IGktLSwgcmVtYWluaW5nIC89IDI1Nikge1xuICAgICAgYnl0ZXNbaV0gPSByZW1haW5pbmc7XG4gICAgfVxuXG4gICAgaWYgKG51bWJlciA8IDApIHtcbiAgICAgIG5lZ2F0ZShieXRlcyk7XG4gICAgfVxuXG4gICAgcmV0dXJuIG5ldyBJbnQ2NChieXRlcyk7XG4gIH1cblxuICAvKipcbiAgICogQ2FsbGVkIGltcGxpY2l0bHkgYnkgaW5maXggYXJpdGhtZXRpYyBvcGVyYXRvcnMuXG4gICAqL1xuICB2YWx1ZU9mKCk6IG51bWJlciB7XG4gICAgY29uc3QgYnl0ZXMgPSB0aGlzLmJ5dGVzLnNsaWNlKDApO1xuICAgIGNvbnN0IG5lZ2F0aXZlID0gYnl0ZXNbMF0gJiAwYjEwMDAwMDAwO1xuICAgIGlmIChuZWdhdGl2ZSkge1xuICAgICAgbmVnYXRlKGJ5dGVzKTtcbiAgICB9XG5cbiAgICByZXR1cm4gcGFyc2VJbnQodG9IZXgoYnl0ZXMpLCAxNikgKiAobmVnYXRpdmUgPyAtMSA6IDEpO1xuICB9XG5cbiAgdG9TdHJpbmcoKSB7XG4gICAgcmV0dXJuIFN0cmluZyh0aGlzLnZhbHVlT2YoKSk7XG4gIH1cbn1cblxuZnVuY3Rpb24gbmVnYXRlKGJ5dGVzOiBVaW50OEFycmF5KTogdm9pZCB7XG4gIGZvciAobGV0IGkgPSAwOyBpIDwgODsgaSsrKSB7XG4gICAgYnl0ZXNbaV0gXj0gMHhmZjtcbiAgfVxuXG4gIGZvciAobGV0IGkgPSA3OyBpID4gLTE7IGktLSkge1xuICAgIGJ5dGVzW2ldKys7XG4gICAgaWYgKGJ5dGVzW2ldICE9PSAwKSBicmVhaztcbiAgfVxufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-marshaller/dist/es/Int64.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-marshaller/dist/es/Message.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-marshaller/dist/es/Message.js ***! \*************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTWVzc2FnZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9NZXNzYWdlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbnQ2NCB9IGZyb20gXCIuL0ludDY0XCI7XG5cbi8qKlxuICogQW4gZXZlbnQgc3RyZWFtIG1lc3NhZ2UuIFRoZSBoZWFkZXJzIGFuZCBib2R5IHByb3BlcnRpZXMgd2lsbCBhbHdheXMgYmVcbiAqIGRlZmluZWQsIHdpdGggZW1wdHkgaGVhZGVycyByZXByZXNlbnRlZCBhcyBhbiBvYmplY3Qgd2l0aCBubyBrZXlzIGFuZCBhblxuICogZW1wdHkgYm9keSByZXByZXNlbnRlZCBhcyBhIHplcm8tbGVuZ3RoIFVpbnQ4QXJyYXkuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgTWVzc2FnZSB7XG4gIGhlYWRlcnM6IE1lc3NhZ2VIZWFkZXJzO1xuICBib2R5OiBVaW50OEFycmF5O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIE1lc3NhZ2VIZWFkZXJzIHtcbiAgW25hbWU6IHN0cmluZ106IE1lc3NhZ2VIZWFkZXJWYWx1ZTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBCb29sZWFuSGVhZGVyVmFsdWUge1xuICB0eXBlOiBcImJvb2xlYW5cIjtcbiAgdmFsdWU6IGJvb2xlYW47XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQnl0ZUhlYWRlclZhbHVlIHtcbiAgdHlwZTogXCJieXRlXCI7XG4gIHZhbHVlOiBudW1iZXI7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgU2hvcnRIZWFkZXJWYWx1ZSB7XG4gIHR5cGU6IFwic2hvcnRcIjtcbiAgdmFsdWU6IG51bWJlcjtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBJbnRlZ2VySGVhZGVyVmFsdWUge1xuICB0eXBlOiBcImludGVnZXJcIjtcbiAgdmFsdWU6IG51bWJlcjtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBMb25nSGVhZGVyVmFsdWUge1xuICB0eXBlOiBcImxvbmdcIjtcbiAgdmFsdWU6IEludDY0O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEJpbmFyeUhlYWRlclZhbHVlIHtcbiAgdHlwZTogXCJiaW5hcnlcIjtcbiAgdmFsdWU6IFVpbnQ4QXJyYXk7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgU3RyaW5nSGVhZGVyVmFsdWUge1xuICB0eXBlOiBcInN0cmluZ1wiO1xuICB2YWx1ZTogc3RyaW5nO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFRpbWVzdGFtcEhlYWRlclZhbHVlIHtcbiAgdHlwZTogXCJ0aW1lc3RhbXBcIjtcbiAgdmFsdWU6IERhdGU7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgVXVpZEhlYWRlclZhbHVlIHtcbiAgdHlwZTogXCJ1dWlkXCI7XG4gIHZhbHVlOiBzdHJpbmc7XG59XG5cbmV4cG9ydCB0eXBlIE1lc3NhZ2VIZWFkZXJWYWx1ZSA9XG4gIHwgQm9vbGVhbkhlYWRlclZhbHVlXG4gIHwgQnl0ZUhlYWRlclZhbHVlXG4gIHwgU2hvcnRIZWFkZXJWYWx1ZVxuICB8IEludGVnZXJIZWFkZXJWYWx1ZVxuICB8IExvbmdIZWFkZXJWYWx1ZVxuICB8IEJpbmFyeUhlYWRlclZhbHVlXG4gIHwgU3RyaW5nSGVhZGVyVmFsdWVcbiAgfCBUaW1lc3RhbXBIZWFkZXJWYWx1ZVxuICB8IFV1aWRIZWFkZXJWYWx1ZTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-marshaller/dist/es/Message.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-marshaller/dist/es/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-marshaller/dist/es/index.js ***! \***********************************************************************/ /*! exports provided: EventStreamMarshaller, Int64 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamMarshaller */ \"./node_modules/@aws-sdk/eventstream-marshaller/dist/es/EventStreamMarshaller.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamMarshaller\"]; });\n\n/* harmony import */ var _Int64__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Int64 */ \"./node_modules/@aws-sdk/eventstream-marshaller/dist/es/Int64.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Int64\", function() { return _Int64__WEBPACK_IMPORTED_MODULE_1__[\"Int64\"]; });\n\n/* harmony import */ var _Message__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Message */ \"./node_modules/@aws-sdk/eventstream-marshaller/dist/es/Message.js\");\n/* empty/unused harmony star reexport */\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLFNBQVMsQ0FBQztBQUN4QixjQUFjLFdBQVcsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL0V2ZW50U3RyZWFtTWFyc2hhbGxlclwiO1xuZXhwb3J0ICogZnJvbSBcIi4vSW50NjRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL01lc3NhZ2VcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-marshaller/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-marshaller/dist/es/splitMessage.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-marshaller/dist/es/splitMessage.js ***! \******************************************************************************/ /*! exports provided: splitMessage */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"splitMessage\", function() { return splitMessage; });\n/* harmony import */ var _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-crypto/crc32 */ \"./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/index.js\");\n/* harmony import */ var _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__);\n\n// All prelude components are unsigned, 32-bit integers\nvar PRELUDE_MEMBER_LENGTH = 4;\n// The prelude consists of two components\nvar PRELUDE_LENGTH = PRELUDE_MEMBER_LENGTH * 2;\n// Checksums are always CRC32 hashes.\nvar CHECKSUM_LENGTH = 4;\n// Messages must include a full prelude, a prelude checksum, and a message checksum\nvar MINIMUM_MESSAGE_LENGTH = PRELUDE_LENGTH + CHECKSUM_LENGTH * 2;\n/**\n * @internal\n */\nfunction splitMessage(_a) {\n var byteLength = _a.byteLength, byteOffset = _a.byteOffset, buffer = _a.buffer;\n if (byteLength < MINIMUM_MESSAGE_LENGTH) {\n throw new Error(\"Provided message too short to accommodate event stream message overhead\");\n }\n var view = new DataView(buffer, byteOffset, byteLength);\n var messageLength = view.getUint32(0, false);\n if (byteLength !== messageLength) {\n throw new Error(\"Reported message length does not match received message length\");\n }\n var headerLength = view.getUint32(PRELUDE_MEMBER_LENGTH, false);\n var expectedPreludeChecksum = view.getUint32(PRELUDE_LENGTH, false);\n var expectedMessageChecksum = view.getUint32(byteLength - CHECKSUM_LENGTH, false);\n var checksummer = new _aws_crypto_crc32__WEBPACK_IMPORTED_MODULE_0__[\"Crc32\"]().update(new Uint8Array(buffer, byteOffset, PRELUDE_LENGTH));\n if (expectedPreludeChecksum !== checksummer.digest()) {\n throw new Error(\"The prelude checksum specified in the message (\" + expectedPreludeChecksum + \") does not match the calculated CRC32 checksum (\" + checksummer.digest() + \")\");\n }\n checksummer.update(new Uint8Array(buffer, byteOffset + PRELUDE_LENGTH, byteLength - (PRELUDE_LENGTH + CHECKSUM_LENGTH)));\n if (expectedMessageChecksum !== checksummer.digest()) {\n throw new Error(\"The message checksum (\" + checksummer.digest() + \") did not match the expected value of \" + expectedMessageChecksum);\n }\n return {\n headers: new DataView(buffer, byteOffset + PRELUDE_LENGTH + CHECKSUM_LENGTH, headerLength),\n body: new Uint8Array(buffer, byteOffset + PRELUDE_LENGTH + CHECKSUM_LENGTH + headerLength, messageLength - headerLength - (PRELUDE_LENGTH + CHECKSUM_LENGTH + CHECKSUM_LENGTH)),\n };\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BsaXRNZXNzYWdlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3NwbGl0TWVzc2FnZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFFMUMsdURBQXVEO0FBQ3ZELElBQU0scUJBQXFCLEdBQUcsQ0FBQyxDQUFDO0FBQ2hDLHlDQUF5QztBQUN6QyxJQUFNLGNBQWMsR0FBRyxxQkFBcUIsR0FBRyxDQUFDLENBQUM7QUFDakQscUNBQXFDO0FBQ3JDLElBQU0sZUFBZSxHQUFHLENBQUMsQ0FBQztBQUMxQixtRkFBbUY7QUFDbkYsSUFBTSxzQkFBc0IsR0FBRyxjQUFjLEdBQUcsZUFBZSxHQUFHLENBQUMsQ0FBQztBQVVwRTs7R0FFRztBQUNILE1BQU0sVUFBVSxZQUFZLENBQUMsRUFBbUQ7UUFBakQsVUFBVSxnQkFBQSxFQUFFLFVBQVUsZ0JBQUEsRUFBRSxNQUFNLFlBQUE7SUFDM0QsSUFBSSxVQUFVLEdBQUcsc0JBQXNCLEVBQUU7UUFDdkMsTUFBTSxJQUFJLEtBQUssQ0FBQyx5RUFBeUUsQ0FBQyxDQUFDO0tBQzVGO0lBRUQsSUFBTSxJQUFJLEdBQUcsSUFBSSxRQUFRLENBQUMsTUFBTSxFQUFFLFVBQVUsRUFBRSxVQUFVLENBQUMsQ0FBQztJQUUxRCxJQUFNLGFBQWEsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxLQUFLLENBQUMsQ0FBQztJQUUvQyxJQUFJLFVBQVUsS0FBSyxhQUFhLEVBQUU7UUFDaEMsTUFBTSxJQUFJLEtBQUssQ0FBQyxnRUFBZ0UsQ0FBQyxDQUFDO0tBQ25GO0lBRUQsSUFBTSxZQUFZLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxxQkFBcUIsRUFBRSxLQUFLLENBQUMsQ0FBQztJQUNsRSxJQUFNLHVCQUF1QixHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsY0FBYyxFQUFFLEtBQUssQ0FBQyxDQUFDO0lBQ3RFLElBQU0sdUJBQXVCLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxVQUFVLEdBQUcsZUFBZSxFQUFFLEtBQUssQ0FBQyxDQUFDO0lBRXBGLElBQU0sV0FBVyxHQUFHLElBQUksS0FBSyxFQUFFLENBQUMsTUFBTSxDQUFDLElBQUksVUFBVSxDQUFDLE1BQU0sRUFBRSxVQUFVLEVBQUUsY0FBYyxDQUFDLENBQUMsQ0FBQztJQUMzRixJQUFJLHVCQUF1QixLQUFLLFdBQVcsQ0FBQyxNQUFNLEVBQUUsRUFBRTtRQUNwRCxNQUFNLElBQUksS0FBSyxDQUNiLG9EQUFrRCx1QkFBdUIsd0RBQW1ELFdBQVcsQ0FBQyxNQUFNLEVBQUUsTUFBRyxDQUNwSixDQUFDO0tBQ0g7SUFFRCxXQUFXLENBQUMsTUFBTSxDQUNoQixJQUFJLFVBQVUsQ0FBQyxNQUFNLEVBQUUsVUFBVSxHQUFHLGNBQWMsRUFBRSxVQUFVLEdBQUcsQ0FBQyxjQUFjLEdBQUcsZUFBZSxDQUFDLENBQUMsQ0FDckcsQ0FBQztJQUNGLElBQUksdUJBQXVCLEtBQUssV0FBVyxDQUFDLE1BQU0sRUFBRSxFQUFFO1FBQ3BELE1BQU0sSUFBSSxLQUFLLENBQ2IsMkJBQXlCLFdBQVcsQ0FBQyxNQUFNLEVBQUUsOENBQXlDLHVCQUF5QixDQUNoSCxDQUFDO0tBQ0g7SUFFRCxPQUFPO1FBQ0wsT0FBTyxFQUFFLElBQUksUUFBUSxDQUFDLE1BQU0sRUFBRSxVQUFVLEdBQUcsY0FBYyxHQUFHLGVBQWUsRUFBRSxZQUFZLENBQUM7UUFDMUYsSUFBSSxFQUFFLElBQUksVUFBVSxDQUNsQixNQUFNLEVBQ04sVUFBVSxHQUFHLGNBQWMsR0FBRyxlQUFlLEdBQUcsWUFBWSxFQUM1RCxhQUFhLEdBQUcsWUFBWSxHQUFHLENBQUMsY0FBYyxHQUFHLGVBQWUsR0FBRyxlQUFlLENBQUMsQ0FDcEY7S0FDRixDQUFDO0FBQ0osQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENyYzMyIH0gZnJvbSBcIkBhd3MtY3J5cHRvL2NyYzMyXCI7XG5cbi8vIEFsbCBwcmVsdWRlIGNvbXBvbmVudHMgYXJlIHVuc2lnbmVkLCAzMi1iaXQgaW50ZWdlcnNcbmNvbnN0IFBSRUxVREVfTUVNQkVSX0xFTkdUSCA9IDQ7XG4vLyBUaGUgcHJlbHVkZSBjb25zaXN0cyBvZiB0d28gY29tcG9uZW50c1xuY29uc3QgUFJFTFVERV9MRU5HVEggPSBQUkVMVURFX01FTUJFUl9MRU5HVEggKiAyO1xuLy8gQ2hlY2tzdW1zIGFyZSBhbHdheXMgQ1JDMzIgaGFzaGVzLlxuY29uc3QgQ0hFQ0tTVU1fTEVOR1RIID0gNDtcbi8vIE1lc3NhZ2VzIG11c3QgaW5jbHVkZSBhIGZ1bGwgcHJlbHVkZSwgYSBwcmVsdWRlIGNoZWNrc3VtLCBhbmQgYSBtZXNzYWdlIGNoZWNrc3VtXG5jb25zdCBNSU5JTVVNX01FU1NBR0VfTEVOR1RIID0gUFJFTFVERV9MRU5HVEggKyBDSEVDS1NVTV9MRU5HVEggKiAyO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgaW50ZXJmYWNlIE1lc3NhZ2VQYXJ0cyB7XG4gIGhlYWRlcnM6IERhdGFWaWV3O1xuICBib2R5OiBVaW50OEFycmF5O1xufVxuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgZnVuY3Rpb24gc3BsaXRNZXNzYWdlKHsgYnl0ZUxlbmd0aCwgYnl0ZU9mZnNldCwgYnVmZmVyIH06IEFycmF5QnVmZmVyVmlldyk6IE1lc3NhZ2VQYXJ0cyB7XG4gIGlmIChieXRlTGVuZ3RoIDwgTUlOSU1VTV9NRVNTQUdFX0xFTkdUSCkge1xuICAgIHRocm93IG5ldyBFcnJvcihcIlByb3ZpZGVkIG1lc3NhZ2UgdG9vIHNob3J0IHRvIGFjY29tbW9kYXRlIGV2ZW50IHN0cmVhbSBtZXNzYWdlIG92ZXJoZWFkXCIpO1xuICB9XG5cbiAgY29uc3QgdmlldyA9IG5ldyBEYXRhVmlldyhidWZmZXIsIGJ5dGVPZmZzZXQsIGJ5dGVMZW5ndGgpO1xuXG4gIGNvbnN0IG1lc3NhZ2VMZW5ndGggPSB2aWV3LmdldFVpbnQzMigwLCBmYWxzZSk7XG5cbiAgaWYgKGJ5dGVMZW5ndGggIT09IG1lc3NhZ2VMZW5ndGgpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJSZXBvcnRlZCBtZXNzYWdlIGxlbmd0aCBkb2VzIG5vdCBtYXRjaCByZWNlaXZlZCBtZXNzYWdlIGxlbmd0aFwiKTtcbiAgfVxuXG4gIGNvbnN0IGhlYWRlckxlbmd0aCA9IHZpZXcuZ2V0VWludDMyKFBSRUxVREVfTUVNQkVSX0xFTkdUSCwgZmFsc2UpO1xuICBjb25zdCBleHBlY3RlZFByZWx1ZGVDaGVja3N1bSA9IHZpZXcuZ2V0VWludDMyKFBSRUxVREVfTEVOR1RILCBmYWxzZSk7XG4gIGNvbnN0IGV4cGVjdGVkTWVzc2FnZUNoZWNrc3VtID0gdmlldy5nZXRVaW50MzIoYnl0ZUxlbmd0aCAtIENIRUNLU1VNX0xFTkdUSCwgZmFsc2UpO1xuXG4gIGNvbnN0IGNoZWNrc3VtbWVyID0gbmV3IENyYzMyKCkudXBkYXRlKG5ldyBVaW50OEFycmF5KGJ1ZmZlciwgYnl0ZU9mZnNldCwgUFJFTFVERV9MRU5HVEgpKTtcbiAgaWYgKGV4cGVjdGVkUHJlbHVkZUNoZWNrc3VtICE9PSBjaGVja3N1bW1lci5kaWdlc3QoKSkge1xuICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgIGBUaGUgcHJlbHVkZSBjaGVja3N1bSBzcGVjaWZpZWQgaW4gdGhlIG1lc3NhZ2UgKCR7ZXhwZWN0ZWRQcmVsdWRlQ2hlY2tzdW19KSBkb2VzIG5vdCBtYXRjaCB0aGUgY2FsY3VsYXRlZCBDUkMzMiBjaGVja3N1bSAoJHtjaGVja3N1bW1lci5kaWdlc3QoKX0pYFxuICAgICk7XG4gIH1cblxuICBjaGVja3N1bW1lci51cGRhdGUoXG4gICAgbmV3IFVpbnQ4QXJyYXkoYnVmZmVyLCBieXRlT2Zmc2V0ICsgUFJFTFVERV9MRU5HVEgsIGJ5dGVMZW5ndGggLSAoUFJFTFVERV9MRU5HVEggKyBDSEVDS1NVTV9MRU5HVEgpKVxuICApO1xuICBpZiAoZXhwZWN0ZWRNZXNzYWdlQ2hlY2tzdW0gIT09IGNoZWNrc3VtbWVyLmRpZ2VzdCgpKSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgYFRoZSBtZXNzYWdlIGNoZWNrc3VtICgke2NoZWNrc3VtbWVyLmRpZ2VzdCgpfSkgZGlkIG5vdCBtYXRjaCB0aGUgZXhwZWN0ZWQgdmFsdWUgb2YgJHtleHBlY3RlZE1lc3NhZ2VDaGVja3N1bX1gXG4gICAgKTtcbiAgfVxuXG4gIHJldHVybiB7XG4gICAgaGVhZGVyczogbmV3IERhdGFWaWV3KGJ1ZmZlciwgYnl0ZU9mZnNldCArIFBSRUxVREVfTEVOR1RIICsgQ0hFQ0tTVU1fTEVOR1RILCBoZWFkZXJMZW5ndGgpLFxuICAgIGJvZHk6IG5ldyBVaW50OEFycmF5KFxuICAgICAgYnVmZmVyLFxuICAgICAgYnl0ZU9mZnNldCArIFBSRUxVREVfTEVOR1RIICsgQ0hFQ0tTVU1fTEVOR1RIICsgaGVhZGVyTGVuZ3RoLFxuICAgICAgbWVzc2FnZUxlbmd0aCAtIGhlYWRlckxlbmd0aCAtIChQUkVMVURFX0xFTkdUSCArIENIRUNLU1VNX0xFTkdUSCArIENIRUNLU1VNX0xFTkdUSClcbiAgICApLFxuICB9O1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-marshaller/dist/es/splitMessage.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/aws_crc32.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/aws_crc32.js ***! \********************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.AwsCrc32 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-crypto/util/build/index.js\");\nvar index_1 = __webpack_require__(/*! ./index */ \"./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/index.js\");\nvar AwsCrc32 = /** @class */ (function () {\n function AwsCrc32() {\n this.crc32 = new index_1.Crc32();\n }\n AwsCrc32.prototype.update = function (toHash) {\n if ((0, util_1.isEmptyData)(toHash))\n return;\n this.crc32.update((0, util_1.convertToBuffer)(toHash));\n };\n AwsCrc32.prototype.digest = function () {\n return (0, tslib_1.__awaiter)(this, void 0, void 0, function () {\n return (0, tslib_1.__generator)(this, function (_a) {\n return [2 /*return*/, (0, util_1.numToUint8)(this.crc32.digest())];\n });\n });\n };\n return AwsCrc32;\n}());\nexports.AwsCrc32 = AwsCrc32;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXdzX2NyYzMyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2F3c19jcmMzMi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0VBQW9FO0FBQ3BFLHNDQUFzQzs7OztBQUd0Qyx5Q0FBNEU7QUFDNUUsaUNBQWdDO0FBRWhDO0lBQUE7UUFDbUIsVUFBSyxHQUFHLElBQUksYUFBSyxFQUFFLENBQUM7SUFXdkMsQ0FBQztJQVRDLHlCQUFNLEdBQU4sVUFBTyxNQUFrQjtRQUN2QixJQUFJLElBQUEsa0JBQVcsRUFBQyxNQUFNLENBQUM7WUFBRSxPQUFPO1FBRWhDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLElBQUEsc0JBQWUsRUFBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO0lBQzdDLENBQUM7SUFFSyx5QkFBTSxHQUFaOzs7Z0JBQ0Usc0JBQU8sSUFBQSxpQkFBVSxFQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLENBQUMsRUFBQzs7O0tBQ3hDO0lBQ0gsZUFBQztBQUFELENBQUMsQUFaRCxJQVlDO0FBWlksNEJBQVEiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBDb3B5cmlnaHQgQW1hem9uLmNvbSBJbmMuIG9yIGl0cyBhZmZpbGlhdGVzLiBBbGwgUmlnaHRzIFJlc2VydmVkLlxuLy8gU1BEWC1MaWNlbnNlLUlkZW50aWZpZXI6IEFwYWNoZS0yLjBcblxuaW1wb3J0IHsgSGFzaCwgU291cmNlRGF0YSB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuaW1wb3J0IHsgY29udmVydFRvQnVmZmVyLCBpc0VtcHR5RGF0YSwgbnVtVG9VaW50OCB9IGZyb20gXCJAYXdzLWNyeXB0by91dGlsXCI7XG5pbXBvcnQgeyBDcmMzMiB9IGZyb20gXCIuL2luZGV4XCI7XG5cbmV4cG9ydCBjbGFzcyBBd3NDcmMzMiBpbXBsZW1lbnRzIEhhc2gge1xuICBwcml2YXRlIHJlYWRvbmx5IGNyYzMyID0gbmV3IENyYzMyKCk7XG5cbiAgdXBkYXRlKHRvSGFzaDogU291cmNlRGF0YSkge1xuICAgIGlmIChpc0VtcHR5RGF0YSh0b0hhc2gpKSByZXR1cm47XG5cbiAgICB0aGlzLmNyYzMyLnVwZGF0ZShjb252ZXJ0VG9CdWZmZXIodG9IYXNoKSk7XG4gIH1cblxuICBhc3luYyBkaWdlc3QoKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gICAgcmV0dXJuIG51bVRvVWludDgodGhpcy5jcmMzMi5kaWdlc3QoKSk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/aws_crc32.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/index.js": /*!****************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/index.js ***! \****************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.AwsCrc32 = exports.Crc32 = exports.crc32 = void 0;\nvar tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\nvar util_1 = __webpack_require__(/*! @aws-crypto/util */ \"./node_modules/@aws-crypto/util/build/index.js\");\nfunction crc32(data) {\n return new Crc32().update(data).digest();\n}\nexports.crc32 = crc32;\nvar Crc32 = /** @class */ (function () {\n function Crc32() {\n this.checksum = 0xffffffff;\n }\n Crc32.prototype.update = function (data) {\n var e_1, _a;\n try {\n for (var data_1 = (0, tslib_1.__values)(data), data_1_1 = data_1.next(); !data_1_1.done; data_1_1 = data_1.next()) {\n var byte = data_1_1.value;\n this.checksum =\n (this.checksum >>> 8) ^ lookupTable[(this.checksum ^ byte) & 0xff];\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (data_1_1 && !data_1_1.done && (_a = data_1.return)) _a.call(data_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return this;\n };\n Crc32.prototype.digest = function () {\n return (this.checksum ^ 0xffffffff) >>> 0;\n };\n return Crc32;\n}());\nexports.Crc32 = Crc32;\n// prettier-ignore\nvar a_lookUpTable = [\n 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA,\n 0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3,\n 0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988,\n 0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91,\n 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE,\n 0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7,\n 0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC,\n 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5,\n 0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172,\n 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B,\n 0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940,\n 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59,\n 0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116,\n 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F,\n 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924,\n 0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D,\n 0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A,\n 0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433,\n 0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818,\n 0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01,\n 0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E,\n 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457,\n 0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C,\n 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65,\n 0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2,\n 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB,\n 0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0,\n 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9,\n 0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086,\n 0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F,\n 0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4,\n 0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD,\n 0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A,\n 0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683,\n 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8,\n 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1,\n 0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE,\n 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7,\n 0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC,\n 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5,\n 0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252,\n 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B,\n 0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60,\n 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79,\n 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236,\n 0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F,\n 0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04,\n 0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D,\n 0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A,\n 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713,\n 0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38,\n 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21,\n 0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E,\n 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777,\n 0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C,\n 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45,\n 0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2,\n 0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB,\n 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0,\n 0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9,\n 0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6,\n 0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF,\n 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94,\n 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D,\n];\nvar lookupTable = (0, util_1.uint32ArrayFrom)(a_lookUpTable);\nvar aws_crc32_1 = __webpack_require__(/*! ./aws_crc32 */ \"./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/aws_crc32.js\");\nObject.defineProperty(exports, \"AwsCrc32\", { enumerable: true, get: function () { return aws_crc32_1.AwsCrc32; } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLHlDQUFpRDtBQUVqRCxTQUFnQixLQUFLLENBQUMsSUFBZ0I7SUFDcEMsT0FBTyxJQUFJLEtBQUssRUFBRSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxNQUFNLEVBQUUsQ0FBQztBQUMzQyxDQUFDO0FBRkQsc0JBRUM7QUFFRDtJQUFBO1FBQ1UsYUFBUSxHQUFHLFVBQVUsQ0FBQztJQWNoQyxDQUFDO0lBWkMsc0JBQU0sR0FBTixVQUFPLElBQWdCOzs7WUFDckIsS0FBbUIsSUFBQSxTQUFBLHNCQUFBLElBQUksQ0FBQSwwQkFBQSw0Q0FBRTtnQkFBcEIsSUFBTSxJQUFJLGlCQUFBO2dCQUNiLElBQUksQ0FBQyxRQUFRO29CQUNYLENBQUMsSUFBSSxDQUFDLFFBQVEsS0FBSyxDQUFDLENBQUMsR0FBRyxXQUFXLENBQUMsQ0FBQyxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDO2FBQ3RFOzs7Ozs7Ozs7UUFFRCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFFRCxzQkFBTSxHQUFOO1FBQ0UsT0FBTyxDQUFDLElBQUksQ0FBQyxRQUFRLEdBQUcsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzVDLENBQUM7SUFDSCxZQUFDO0FBQUQsQ0FBQyxBQWZELElBZUM7QUFmWSxzQkFBSztBQWlCbEIsa0JBQWtCO0FBQ2xCLElBQU0sYUFBYSxHQUFHO0lBQ3BCLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7SUFDOUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVTtJQUM5QyxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVO0lBQzlDLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLFVBQVU7Q0FDL0MsQ0FBQztBQUNGLElBQU0sV0FBVyxHQUFnQixJQUFBLHNCQUFlLEVBQUMsYUFBYSxDQUFDLENBQUE7QUFDL0QseUNBQXVDO0FBQTlCLHFHQUFBLFFBQVEsT0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7dWludDMyQXJyYXlGcm9tfSBmcm9tIFwiQGF3cy1jcnlwdG8vdXRpbFwiO1xuXG5leHBvcnQgZnVuY3Rpb24gY3JjMzIoZGF0YTogVWludDhBcnJheSk6IG51bWJlciB7XG4gIHJldHVybiBuZXcgQ3JjMzIoKS51cGRhdGUoZGF0YSkuZGlnZXN0KCk7XG59XG5cbmV4cG9ydCBjbGFzcyBDcmMzMiB7XG4gIHByaXZhdGUgY2hlY2tzdW0gPSAweGZmZmZmZmZmO1xuXG4gIHVwZGF0ZShkYXRhOiBVaW50OEFycmF5KTogdGhpcyB7XG4gICAgZm9yIChjb25zdCBieXRlIG9mIGRhdGEpIHtcbiAgICAgIHRoaXMuY2hlY2tzdW0gPVxuICAgICAgICAodGhpcy5jaGVja3N1bSA+Pj4gOCkgXiBsb29rdXBUYWJsZVsodGhpcy5jaGVja3N1bSBeIGJ5dGUpICYgMHhmZl07XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXM7XG4gIH1cblxuICBkaWdlc3QoKTogbnVtYmVyIHtcbiAgICByZXR1cm4gKHRoaXMuY2hlY2tzdW0gXiAweGZmZmZmZmZmKSA+Pj4gMDtcbiAgfVxufVxuXG4vLyBwcmV0dGllci1pZ25vcmVcbmNvbnN0IGFfbG9va1VwVGFibGUgPSBbXG4gIDB4MDAwMDAwMDAsIDB4NzcwNzMwOTYsIDB4RUUwRTYxMkMsIDB4OTkwOTUxQkEsXG4gIDB4MDc2REM0MTksIDB4NzA2QUY0OEYsIDB4RTk2M0E1MzUsIDB4OUU2NDk1QTMsXG4gIDB4MEVEQjg4MzIsIDB4NzlEQ0I4QTQsIDB4RTBENUU5MUUsIDB4OTdEMkQ5ODgsXG4gIDB4MDlCNjRDMkIsIDB4N0VCMTdDQkQsIDB4RTdCODJEMDcsIDB4OTBCRjFEOTEsXG4gIDB4MURCNzEwNjQsIDB4NkFCMDIwRjIsIDB4RjNCOTcxNDgsIDB4ODRCRTQxREUsXG4gIDB4MUFEQUQ0N0QsIDB4NkREREU0RUIsIDB4RjRENEI1NTEsIDB4ODNEMzg1QzcsXG4gIDB4MTM2Qzk4NTYsIDB4NjQ2QkE4QzAsIDB4RkQ2MkY5N0EsIDB4OEE2NUM5RUMsXG4gIDB4MTQwMTVDNEYsIDB4NjMwNjZDRDksIDB4RkEwRjNENjMsIDB4OEQwODBERjUsXG4gIDB4M0I2RTIwQzgsIDB4NEM2OTEwNUUsIDB4RDU2MDQxRTQsIDB4QTI2NzcxNzIsXG4gIDB4M0MwM0U0RDEsIDB4NEIwNEQ0NDcsIDB4RDIwRDg1RkQsIDB4QTUwQUI1NkIsXG4gIDB4MzVCNUE4RkEsIDB4NDJCMjk4NkMsIDB4REJCQkM5RDYsIDB4QUNCQ0Y5NDAsXG4gIDB4MzJEODZDRTMsIDB4NDVERjVDNzUsIDB4RENENjBEQ0YsIDB4QUJEMTNENTksXG4gIDB4MjZEOTMwQUMsIDB4NTFERTAwM0EsIDB4QzhENzUxODAsIDB4QkZEMDYxMTYsXG4gIDB4MjFCNEY0QjUsIDB4NTZCM0M0MjMsIDB4Q0ZCQTk1OTksIDB4QjhCREE1MEYsXG4gIDB4MjgwMkI4OUUsIDB4NUYwNTg4MDgsIDB4QzYwQ0Q5QjIsIDB4QjEwQkU5MjQsXG4gIDB4MkY2RjdDODcsIDB4NTg2ODRDMTEsIDB4QzE2MTFEQUIsIDB4QjY2NjJEM0QsXG4gIDB4NzZEQzQxOTAsIDB4MDFEQjcxMDYsIDB4OThEMjIwQkMsIDB4RUZENTEwMkEsXG4gIDB4NzFCMTg1ODksIDB4MDZCNkI1MUYsIDB4OUZCRkU0QTUsIDB4RThCOEQ0MzMsXG4gIDB4NzgwN0M5QTIsIDB4MEYwMEY5MzQsIDB4OTYwOUE4OEUsIDB4RTEwRTk4MTgsXG4gIDB4N0Y2QTBEQkIsIDB4MDg2RDNEMkQsIDB4OTE2NDZDOTcsIDB4RTY2MzVDMDEsXG4gIDB4NkI2QjUxRjQsIDB4MUM2QzYxNjIsIDB4ODU2NTMwRDgsIDB4RjI2MjAwNEUsXG4gIDB4NkMwNjk1RUQsIDB4MUIwMUE1N0IsIDB4ODIwOEY0QzEsIDB4RjUwRkM0NTcsXG4gIDB4NjVCMEQ5QzYsIDB4MTJCN0U5NTAsIDB4OEJCRUI4RUEsIDB4RkNCOTg4N0MsXG4gIDB4NjJERDFEREYsIDB4MTVEQTJENDksIDB4OENEMzdDRjMsIDB4RkJENDRDNjUsXG4gIDB4NERCMjYxNTgsIDB4M0FCNTUxQ0UsIDB4QTNCQzAwNzQsIDB4RDRCQjMwRTIsXG4gIDB4NEFERkE1NDEsIDB4M0REODk1RDcsIDB4QTREMUM0NkQsIDB4RDNENkY0RkIsXG4gIDB4NDM2OUU5NkEsIDB4MzQ2RUQ5RkMsIDB4QUQ2Nzg4NDYsIDB4REE2MEI4RDAsXG4gIDB4NDQwNDJENzMsIDB4MzMwMzFERTUsIDB4QUEwQTRDNUYsIDB4REQwRDdDQzksXG4gIDB4NTAwNTcxM0MsIDB4MjcwMjQxQUEsIDB4QkUwQjEwMTAsIDB4QzkwQzIwODYsXG4gIDB4NTc2OEI1MjUsIDB4MjA2Rjg1QjMsIDB4Qjk2NkQ0MDksIDB4Q0U2MUU0OUYsXG4gIDB4NUVERUY5MEUsIDB4MjlEOUM5OTgsIDB4QjBEMDk4MjIsIDB4QzdEN0E4QjQsXG4gIDB4NTlCMzNEMTcsIDB4MkVCNDBEODEsIDB4QjdCRDVDM0IsIDB4QzBCQTZDQUQsXG4gIDB4RURCODgzMjAsIDB4OUFCRkIzQjYsIDB4MDNCNkUyMEMsIDB4NzRCMUQyOUEsXG4gIDB4RUFENTQ3MzksIDB4OUREMjc3QUYsIDB4MDREQjI2MTUsIDB4NzNEQzE2ODMsXG4gIDB4RTM2MzBCMTIsIDB4OTQ2NDNCODQsIDB4MEQ2RDZBM0UsIDB4N0E2QTVBQTgsXG4gIDB4RTQwRUNGMEIsIDB4OTMwOUZGOUQsIDB4MEEwMEFFMjcsIDB4N0QwNzlFQjEsXG4gIDB4RjAwRjkzNDQsIDB4ODcwOEEzRDIsIDB4MUUwMUYyNjgsIDB4NjkwNkMyRkUsXG4gIDB4Rjc2MjU3NUQsIDB4ODA2NTY3Q0IsIDB4MTk2QzM2NzEsIDB4NkU2QjA2RTcsXG4gIDB4RkVENDFCNzYsIDB4ODlEMzJCRTAsIDB4MTBEQTdBNUEsIDB4NjdERDRBQ0MsXG4gIDB4RjlCOURGNkYsIDB4OEVCRUVGRjksIDB4MTdCN0JFNDMsIDB4NjBCMDhFRDUsXG4gIDB4RDZENkEzRTgsIDB4QTFEMTkzN0UsIDB4MzhEOEMyQzQsIDB4NEZERkYyNTIsXG4gIDB4RDFCQjY3RjEsIDB4QTZCQzU3NjcsIDB4M0ZCNTA2REQsIDB4NDhCMjM2NEIsXG4gIDB4RDgwRDJCREEsIDB4QUYwQTFCNEMsIDB4MzYwMzRBRjYsIDB4NDEwNDdBNjAsXG4gIDB4REY2MEVGQzMsIDB4QTg2N0RGNTUsIDB4MzE2RThFRUYsIDB4NDY2OUJFNzksXG4gIDB4Q0I2MUIzOEMsIDB4QkM2NjgzMUEsIDB4MjU2RkQyQTAsIDB4NTI2OEUyMzYsXG4gIDB4Q0MwQzc3OTUsIDB4QkIwQjQ3MDMsIDB4MjIwMjE2QjksIDB4NTUwNTI2MkYsXG4gIDB4QzVCQTNCQkUsIDB4QjJCRDBCMjgsIDB4MkJCNDVBOTIsIDB4NUNCMzZBMDQsXG4gIDB4QzJEN0ZGQTcsIDB4QjVEMENGMzEsIDB4MkNEOTlFOEIsIDB4NUJERUFFMUQsXG4gIDB4OUI2NEMyQjAsIDB4RUM2M0YyMjYsIDB4NzU2QUEzOUMsIDB4MDI2RDkzMEEsXG4gIDB4OUMwOTA2QTksIDB4RUIwRTM2M0YsIDB4NzIwNzY3ODUsIDB4MDUwMDU3MTMsXG4gIDB4OTVCRjRBODIsIDB4RTJCODdBMTQsIDB4N0JCMTJCQUUsIDB4MENCNjFCMzgsXG4gIDB4OTJEMjhFOUIsIDB4RTVENUJFMEQsIDB4N0NEQ0VGQjcsIDB4MEJEQkRGMjEsXG4gIDB4ODZEM0QyRDQsIDB4RjFENEUyNDIsIDB4NjhEREIzRjgsIDB4MUZEQTgzNkUsXG4gIDB4ODFCRTE2Q0QsIDB4RjZCOTI2NUIsIDB4NkZCMDc3RTEsIDB4MThCNzQ3NzcsXG4gIDB4ODgwODVBRTYsIDB4RkYwRjZBNzAsIDB4NjYwNjNCQ0EsIDB4MTEwMTBCNUMsXG4gIDB4OEY2NTlFRkYsIDB4Rjg2MkFFNjksIDB4NjE2QkZGRDMsIDB4MTY2Q0NGNDUsXG4gIDB4QTAwQUUyNzgsIDB4RDcwREQyRUUsIDB4NEUwNDgzNTQsIDB4MzkwM0IzQzIsXG4gIDB4QTc2NzI2NjEsIDB4RDA2MDE2RjcsIDB4NDk2OTQ3NEQsIDB4M0U2RTc3REIsXG4gIDB4QUVEMTZBNEEsIDB4RDlENjVBREMsIDB4NDBERjBCNjYsIDB4MzdEODNCRjAsXG4gIDB4QTlCQ0FFNTMsIDB4REVCQjlFQzUsIDB4NDdCMkNGN0YsIDB4MzBCNUZGRTksXG4gIDB4QkRCREYyMUMsIDB4Q0FCQUMyOEEsIDB4NTNCMzkzMzAsIDB4MjRCNEEzQTYsXG4gIDB4QkFEMDM2MDUsIDB4Q0RENzA2OTMsIDB4NTRERTU3MjksIDB4MjNEOTY3QkYsXG4gIDB4QjM2NjdBMkUsIDB4QzQ2MTRBQjgsIDB4NUQ2ODFCMDIsIDB4MkE2RjJCOTQsXG4gIDB4QjQwQkJFMzcsIDB4QzMwQzhFQTEsIDB4NUEwNURGMUIsIDB4MkQwMkVGOEQsXG5dO1xuY29uc3QgbG9va3VwVGFibGU6IFVpbnQzMkFycmF5ID0gdWludDMyQXJyYXlGcm9tKGFfbG9va1VwVGFibGUpXG5leHBvcnQgeyBBd3NDcmMzMiB9IGZyb20gXCIuL2F3c19jcmMzMlwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-marshaller/node_modules/@aws-crypto/crc32/build/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/EventStreamMarshaller.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/EventStreamMarshaller.js ***! \******************************************************************************************/ /*! exports provided: EventStreamMarshaller */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return EventStreamMarshaller; });\n/* harmony import */ var _aws_sdk_eventstream_marshaller__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/eventstream-marshaller */ \"./node_modules/@aws-sdk/eventstream-marshaller/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_eventstream_serde_universal__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/eventstream-serde-universal */ \"./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/index.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/utils.js\");\n\n\n\n/**\n * Utility class used to serialize and deserialize event streams in\n * browsers and ReactNative.\n *\n * In browsers where ReadableStream API is available:\n * * deserialize from ReadableStream to an async iterable of output structure\n * * serialize from async iterable of input structure to ReadableStream\n * In ReactNative where only async iterable API is available:\n * * deserialize from async iterable of binaries to async iterable of output structure\n * * serialize from async iterable of input structure to async iterable of binaries\n *\n * We use ReadableStream API in browsers because of the consistency with other\n * streaming operations, where ReadableStream API is used to denote streaming data.\n * Whereas in ReactNative, ReadableStream API is not available, we use async iterable\n * for streaming data although it has lower throughput.\n */\nvar EventStreamMarshaller = /** @class */ (function () {\n function EventStreamMarshaller(_a) {\n var utf8Encoder = _a.utf8Encoder, utf8Decoder = _a.utf8Decoder;\n this.eventMarshaller = new _aws_sdk_eventstream_marshaller__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamMarshaller\"](utf8Encoder, utf8Decoder);\n this.universalMarshaller = new _aws_sdk_eventstream_serde_universal__WEBPACK_IMPORTED_MODULE_1__[\"EventStreamMarshaller\"]({\n utf8Decoder: utf8Decoder,\n utf8Encoder: utf8Encoder,\n });\n }\n EventStreamMarshaller.prototype.deserialize = function (body, deserializer) {\n var bodyIterable = isReadableStream(body) ? Object(_utils__WEBPACK_IMPORTED_MODULE_2__[\"readableStreamtoIterable\"])(body) : body;\n return this.universalMarshaller.deserialize(bodyIterable, deserializer);\n };\n /**\n * Generate a stream that serialize events into stream of binary chunks;\n *\n * Caveat is that streaming request payload doesn't work on browser with native\n * xhr or fetch handler currently because they don't support upload streaming.\n * reference:\n * * https://bugs.chromium.org/p/chromium/issues/detail?id=688906\n * * https://bugzilla.mozilla.org/show_bug.cgi?id=1387483\n *\n */\n EventStreamMarshaller.prototype.serialize = function (input, serializer) {\n var serialziedIterable = this.universalMarshaller.serialize(input, serializer);\n return typeof ReadableStream === \"function\" ? Object(_utils__WEBPACK_IMPORTED_MODULE_2__[\"iterableToReadableStream\"])(serialziedIterable) : serialziedIterable;\n };\n return EventStreamMarshaller;\n}());\n\nvar isReadableStream = function (body) {\n return typeof ReadableStream === \"function\" && body instanceof ReadableStream;\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXZlbnRTdHJlYW1NYXJzaGFsbGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL0V2ZW50U3RyZWFtTWFyc2hhbGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUscUJBQXFCLElBQUksZUFBZSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDM0YsT0FBTyxFQUFFLHFCQUFxQixJQUFJLDhCQUE4QixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFHL0csT0FBTyxFQUFFLHdCQUF3QixFQUFFLHdCQUF3QixFQUFFLE1BQU0sU0FBUyxDQUFDO0FBUzdFOzs7Ozs7Ozs7Ozs7Ozs7R0FlRztBQUNIO0lBR0UsK0JBQVksRUFBMEQ7WUFBeEQsV0FBVyxpQkFBQSxFQUFFLFdBQVcsaUJBQUE7UUFDcEMsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLGVBQWUsQ0FBQyxXQUFXLEVBQUUsV0FBVyxDQUFDLENBQUM7UUFDckUsSUFBSSxDQUFDLG1CQUFtQixHQUFHLElBQUksOEJBQThCLENBQUM7WUFDNUQsV0FBVyxhQUFBO1lBQ1gsV0FBVyxhQUFBO1NBQ1osQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELDJDQUFXLEdBQVgsVUFDRSxJQUE0RCxFQUM1RCxZQUFpRTtRQUVqRSxJQUFNLFlBQVksR0FBRyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsd0JBQXdCLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQztRQUNwRixPQUFPLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxXQUFXLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQyxDQUFDO0lBQzFFLENBQUM7SUFFRDs7Ozs7Ozs7O09BU0c7SUFDSCx5Q0FBUyxHQUFULFVBQWEsS0FBdUIsRUFBRSxVQUFpQztRQUNyRSxJQUFNLGtCQUFrQixHQUFHLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxTQUFTLENBQUMsS0FBSyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQ2pGLE9BQU8sT0FBTyxjQUFjLEtBQUssVUFBVSxDQUFDLENBQUMsQ0FBQyx3QkFBd0IsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxrQkFBa0IsQ0FBQztJQUNsSCxDQUFDO0lBQ0gsNEJBQUM7QUFBRCxDQUFDLEFBakNELElBaUNDOztBQUVELElBQU0sZ0JBQWdCLEdBQUcsVUFBQyxJQUFTO0lBQ2pDLE9BQUEsT0FBTyxjQUFjLEtBQUssVUFBVSxJQUFJLElBQUksWUFBWSxjQUFjO0FBQXRFLENBQXNFLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFdmVudFN0cmVhbU1hcnNoYWxsZXIgYXMgRXZlbnRNYXJzaGFsbGVyIH0gZnJvbSBcIkBhd3Mtc2RrL2V2ZW50c3RyZWFtLW1hcnNoYWxsZXJcIjtcbmltcG9ydCB7IEV2ZW50U3RyZWFtTWFyc2hhbGxlciBhcyBVbml2ZXJzYWxFdmVudFN0cmVhbU1hcnNoYWxsZXIgfSBmcm9tIFwiQGF3cy1zZGsvZXZlbnRzdHJlYW0tc2VyZGUtdW5pdmVyc2FsXCI7XG5pbXBvcnQgeyBEZWNvZGVyLCBFbmNvZGVyLCBFdmVudFN0cmVhbU1hcnNoYWxsZXIgYXMgSUV2ZW50U3RyZWFtTWFyc2hhbGxlciwgTWVzc2FnZSB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBpdGVyYWJsZVRvUmVhZGFibGVTdHJlYW0sIHJlYWRhYmxlU3RyZWFtdG9JdGVyYWJsZSB9IGZyb20gXCIuL3V0aWxzXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgRXZlbnRTdHJlYW1NYXJzaGFsbGVyIGV4dGVuZHMgSUV2ZW50U3RyZWFtTWFyc2hhbGxlciB7fVxuXG5leHBvcnQgaW50ZXJmYWNlIEV2ZW50U3RyZWFtTWFyc2hhbGxlck9wdGlvbnMge1xuICB1dGY4RW5jb2RlcjogRW5jb2RlcjtcbiAgdXRmOERlY29kZXI6IERlY29kZXI7XG59XG5cbi8qKlxuICogVXRpbGl0eSBjbGFzcyB1c2VkIHRvIHNlcmlhbGl6ZSBhbmQgZGVzZXJpYWxpemUgZXZlbnQgc3RyZWFtcyBpblxuICogYnJvd3NlcnMgYW5kIFJlYWN0TmF0aXZlLlxuICpcbiAqIEluIGJyb3dzZXJzIHdoZXJlIFJlYWRhYmxlU3RyZWFtIEFQSSBpcyBhdmFpbGFibGU6XG4gKiAqIGRlc2VyaWFsaXplIGZyb20gUmVhZGFibGVTdHJlYW0gdG8gYW4gYXN5bmMgaXRlcmFibGUgb2Ygb3V0cHV0IHN0cnVjdHVyZVxuICogKiBzZXJpYWxpemUgZnJvbSBhc3luYyBpdGVyYWJsZSBvZiBpbnB1dCBzdHJ1Y3R1cmUgdG8gUmVhZGFibGVTdHJlYW1cbiAqIEluIFJlYWN0TmF0aXZlIHdoZXJlIG9ubHkgYXN5bmMgaXRlcmFibGUgQVBJIGlzIGF2YWlsYWJsZTpcbiAqICogZGVzZXJpYWxpemUgZnJvbSBhc3luYyBpdGVyYWJsZSBvZiBiaW5hcmllcyB0byBhc3luYyBpdGVyYWJsZSBvZiBvdXRwdXQgc3RydWN0dXJlXG4gKiAqIHNlcmlhbGl6ZSBmcm9tIGFzeW5jIGl0ZXJhYmxlIG9mIGlucHV0IHN0cnVjdHVyZSB0byBhc3luYyBpdGVyYWJsZSBvZiBiaW5hcmllc1xuICpcbiAqIFdlIHVzZSBSZWFkYWJsZVN0cmVhbSBBUEkgaW4gYnJvd3NlcnMgYmVjYXVzZSBvZiB0aGUgY29uc2lzdGVuY3kgd2l0aCBvdGhlclxuICogc3RyZWFtaW5nIG9wZXJhdGlvbnMsIHdoZXJlIFJlYWRhYmxlU3RyZWFtIEFQSSBpcyB1c2VkIHRvIGRlbm90ZSBzdHJlYW1pbmcgZGF0YS5cbiAqIFdoZXJlYXMgaW4gUmVhY3ROYXRpdmUsIFJlYWRhYmxlU3RyZWFtIEFQSSBpcyBub3QgYXZhaWxhYmxlLCB3ZSB1c2UgYXN5bmMgaXRlcmFibGVcbiAqIGZvciBzdHJlYW1pbmcgZGF0YSBhbHRob3VnaCBpdCBoYXMgbG93ZXIgdGhyb3VnaHB1dC5cbiAqL1xuZXhwb3J0IGNsYXNzIEV2ZW50U3RyZWFtTWFyc2hhbGxlciB7XG4gIHByaXZhdGUgcmVhZG9ubHkgZXZlbnRNYXJzaGFsbGVyOiBFdmVudE1hcnNoYWxsZXI7XG4gIHByaXZhdGUgcmVhZG9ubHkgdW5pdmVyc2FsTWFyc2hhbGxlcjogVW5pdmVyc2FsRXZlbnRTdHJlYW1NYXJzaGFsbGVyO1xuICBjb25zdHJ1Y3Rvcih7IHV0ZjhFbmNvZGVyLCB1dGY4RGVjb2RlciB9OiBFdmVudFN0cmVhbU1hcnNoYWxsZXJPcHRpb25zKSB7XG4gICAgdGhpcy5ldmVudE1hcnNoYWxsZXIgPSBuZXcgRXZlbnRNYXJzaGFsbGVyKHV0ZjhFbmNvZGVyLCB1dGY4RGVjb2Rlcik7XG4gICAgdGhpcy51bml2ZXJzYWxNYXJzaGFsbGVyID0gbmV3IFVuaXZlcnNhbEV2ZW50U3RyZWFtTWFyc2hhbGxlcih7XG4gICAgICB1dGY4RGVjb2RlcixcbiAgICAgIHV0ZjhFbmNvZGVyLFxuICAgIH0pO1xuICB9XG5cbiAgZGVzZXJpYWxpemU8VD4oXG4gICAgYm9keTogUmVhZGFibGVTdHJlYW08VWludDhBcnJheT4gfCBBc3luY0l0ZXJhYmxlPFVpbnQ4QXJyYXk+LFxuICAgIGRlc2VyaWFsaXplcjogKGlucHV0OiB7IFtldmVudDogc3RyaW5nXTogTWVzc2FnZSB9KSA9PiBQcm9taXNlPFQ+XG4gICk6IEFzeW5jSXRlcmFibGU8VD4ge1xuICAgIGNvbnN0IGJvZHlJdGVyYWJsZSA9IGlzUmVhZGFibGVTdHJlYW0oYm9keSkgPyByZWFkYWJsZVN0cmVhbXRvSXRlcmFibGUoYm9keSkgOiBib2R5O1xuICAgIHJldHVybiB0aGlzLnVuaXZlcnNhbE1hcnNoYWxsZXIuZGVzZXJpYWxpemUoYm9keUl0ZXJhYmxlLCBkZXNlcmlhbGl6ZXIpO1xuICB9XG5cbiAgLyoqXG4gICAqIEdlbmVyYXRlIGEgc3RyZWFtIHRoYXQgc2VyaWFsaXplIGV2ZW50cyBpbnRvIHN0cmVhbSBvZiBiaW5hcnkgY2h1bmtzO1xuICAgKlxuICAgKiBDYXZlYXQgaXMgdGhhdCBzdHJlYW1pbmcgcmVxdWVzdCBwYXlsb2FkIGRvZXNuJ3Qgd29yayBvbiBicm93c2VyIHdpdGggbmF0aXZlXG4gICAqIHhociBvciBmZXRjaCBoYW5kbGVyIGN1cnJlbnRseSBiZWNhdXNlIHRoZXkgZG9uJ3Qgc3VwcG9ydCB1cGxvYWQgc3RyZWFtaW5nLlxuICAgKiByZWZlcmVuY2U6XG4gICAqICogaHR0cHM6Ly9idWdzLmNocm9taXVtLm9yZy9wL2Nocm9taXVtL2lzc3Vlcy9kZXRhaWw/aWQ9Njg4OTA2XG4gICAqICogaHR0cHM6Ly9idWd6aWxsYS5tb3ppbGxhLm9yZy9zaG93X2J1Zy5jZ2k/aWQ9MTM4NzQ4M1xuICAgKlxuICAgKi9cbiAgc2VyaWFsaXplPFQ+KGlucHV0OiBBc3luY0l0ZXJhYmxlPFQ+LCBzZXJpYWxpemVyOiAoZXZlbnQ6IFQpID0+IE1lc3NhZ2UpOiBSZWFkYWJsZVN0cmVhbSB8IEFzeW5jSXRlcmFibGU8VWludDhBcnJheT4ge1xuICAgIGNvbnN0IHNlcmlhbHppZWRJdGVyYWJsZSA9IHRoaXMudW5pdmVyc2FsTWFyc2hhbGxlci5zZXJpYWxpemUoaW5wdXQsIHNlcmlhbGl6ZXIpO1xuICAgIHJldHVybiB0eXBlb2YgUmVhZGFibGVTdHJlYW0gPT09IFwiZnVuY3Rpb25cIiA/IGl0ZXJhYmxlVG9SZWFkYWJsZVN0cmVhbShzZXJpYWx6aWVkSXRlcmFibGUpIDogc2VyaWFsemllZEl0ZXJhYmxlO1xuICB9XG59XG5cbmNvbnN0IGlzUmVhZGFibGVTdHJlYW0gPSAoYm9keTogYW55KTogYm9keSBpcyBSZWFkYWJsZVN0cmVhbSA9PlxuICB0eXBlb2YgUmVhZGFibGVTdHJlYW0gPT09IFwiZnVuY3Rpb25cIiAmJiBib2R5IGluc3RhbmNlb2YgUmVhZGFibGVTdHJlYW07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/EventStreamMarshaller.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/index.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/index.js ***! \**************************************************************************/ /*! exports provided: eventStreamSerdeProvider, EventStreamMarshaller, readableStreamtoIterable, iterableToReadableStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./provider */ \"./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/provider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eventStreamSerdeProvider\", function() { return _provider__WEBPACK_IMPORTED_MODULE_0__[\"eventStreamSerdeProvider\"]; });\n\n/* harmony import */ var _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./EventStreamMarshaller */ \"./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/EventStreamMarshaller.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_1__[\"EventStreamMarshaller\"]; });\n\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"readableStreamtoIterable\", function() { return _utils__WEBPACK_IMPORTED_MODULE_2__[\"readableStreamtoIterable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"iterableToReadableStream\", function() { return _utils__WEBPACK_IMPORTED_MODULE_2__[\"iterableToReadableStream\"]; });\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL3Byb3ZpZGVyXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9FdmVudFN0cmVhbU1hcnNoYWxsZXJcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3V0aWxzXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/provider.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/provider.js ***! \*****************************************************************************/ /*! exports provided: eventStreamSerdeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"eventStreamSerdeProvider\", function() { return eventStreamSerdeProvider; });\n/* harmony import */ var _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamMarshaller */ \"./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/EventStreamMarshaller.js\");\n\n/** browser event stream serde utils provider */\nvar eventStreamSerdeProvider = function (options) { return new _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamMarshaller\"](options); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvcHJvdmlkZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFFaEUsZ0RBQWdEO0FBQ2hELE1BQU0sQ0FBQyxJQUFNLHdCQUF3QixHQUE2QixVQUFDLE9BSWxFLElBQUssT0FBQSxJQUFJLHFCQUFxQixDQUFDLE9BQU8sQ0FBQyxFQUFsQyxDQUFrQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGVjb2RlciwgRW5jb2RlciwgRXZlbnRTaWduZXIsIEV2ZW50U3RyZWFtU2VyZGVQcm92aWRlciwgUHJvdmlkZXIgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgRXZlbnRTdHJlYW1NYXJzaGFsbGVyIH0gZnJvbSBcIi4vRXZlbnRTdHJlYW1NYXJzaGFsbGVyXCI7XG5cbi8qKiBicm93c2VyIGV2ZW50IHN0cmVhbSBzZXJkZSB1dGlscyBwcm92aWRlciAqL1xuZXhwb3J0IGNvbnN0IGV2ZW50U3RyZWFtU2VyZGVQcm92aWRlcjogRXZlbnRTdHJlYW1TZXJkZVByb3ZpZGVyID0gKG9wdGlvbnM6IHtcbiAgdXRmOEVuY29kZXI6IEVuY29kZXI7XG4gIHV0ZjhEZWNvZGVyOiBEZWNvZGVyO1xuICBldmVudFNpZ25lcjogRXZlbnRTaWduZXIgfCBQcm92aWRlcjxFdmVudFNpZ25lcj47XG59KSA9PiBuZXcgRXZlbnRTdHJlYW1NYXJzaGFsbGVyKG9wdGlvbnMpO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/provider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/utils.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/utils.js ***! \**************************************************************************/ /*! exports provided: readableStreamtoIterable, iterableToReadableStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"readableStreamtoIterable\", function() { return readableStreamtoIterable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"iterableToReadableStream\", function() { return iterableToReadableStream; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\n/**\n * A util function converting ReadableStream into an async iterable.\n * Reference: https://jakearchibald.com/2017/async-iterators-and-generators/#making-streams-iterate\n */\nvar readableStreamtoIterable = function (readableStream) {\n var _a;\n return (_a = {},\n _a[Symbol.asyncIterator] = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function () {\n var reader, _a, done, value;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n reader = readableStream.getReader();\n _b.label = 1;\n case 1:\n _b.trys.push([1, , 9, 10]);\n _b.label = 2;\n case 2:\n if (false) {}\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(reader.read())];\n case 3:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (!done) return [3 /*break*/, 5];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(void 0)];\n case 4: return [2 /*return*/, _b.sent()];\n case 5: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(value)];\n case 6: return [4 /*yield*/, _b.sent()];\n case 7:\n _b.sent();\n return [3 /*break*/, 2];\n case 8: return [3 /*break*/, 10];\n case 9:\n reader.releaseLock();\n return [7 /*endfinally*/];\n case 10: return [2 /*return*/];\n }\n });\n });\n },\n _a);\n};\n/**\n * A util function converting async iterable to a ReadableStream.\n */\nvar iterableToReadableStream = function (asyncIterable) {\n var iterator = asyncIterable[Symbol.asyncIterator]();\n return new ReadableStream({\n pull: function (controller) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _a, done, value;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0: return [4 /*yield*/, iterator.next()];\n case 1:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (done) {\n return [2 /*return*/, controller.close()];\n }\n controller.enqueue(value);\n return [2 /*return*/];\n }\n });\n });\n },\n });\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXRpbHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdXRpbHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxJQUFNLHdCQUF3QixHQUFHLFVBQUksY0FBaUM7O0lBQXVCLE9BQUE7UUFDbEcsR0FBQyxNQUFNLENBQUMsYUFBYSxJQUFHOzs7Ozs7NEJBQ2hCLE1BQU0sR0FBRyxjQUFjLENBQUMsU0FBUyxFQUFFLENBQUM7Ozs7OztpQ0FFakMsSUFBSTs0QkFDZSw2QkFBTSxNQUFNLENBQUMsSUFBSSxFQUFFLEdBQUE7OzRCQUFyQyxLQUFrQixTQUFtQixFQUFuQyxJQUFJLFVBQUEsRUFBRSxLQUFLLFdBQUE7aUNBQ2YsSUFBSSxFQUFKLHdCQUFJOztnQ0FBRSxpQ0FBTzs2REFDWCxLQUFVO2dDQUFoQixnQ0FBZ0I7OzRCQUFoQixTQUFnQixDQUFDOzs7OzRCQUduQixNQUFNLENBQUMsV0FBVyxFQUFFLENBQUM7Ozs7OztTQUV4QjtXQUNEO0FBYmtHLENBYWxHLENBQUM7QUFFSDs7R0FFRztBQUNILE1BQU0sQ0FBQyxJQUFNLHdCQUF3QixHQUFHLFVBQUksYUFBK0I7SUFDekUsSUFBTSxRQUFRLEdBQUcsYUFBYSxDQUFDLE1BQU0sQ0FBQyxhQUFhLENBQUMsRUFBRSxDQUFDO0lBQ3ZELE9BQU8sSUFBSSxjQUFjLENBQUM7UUFDbEIsSUFBSSxZQUFDLFVBQVU7Ozs7O2dDQUNLLHFCQUFNLFFBQVEsQ0FBQyxJQUFJLEVBQUUsRUFBQTs7NEJBQXZDLEtBQWtCLFNBQXFCLEVBQXJDLElBQUksVUFBQSxFQUFFLEtBQUssV0FBQTs0QkFDbkIsSUFBSSxJQUFJLEVBQUU7Z0NBQ1Isc0JBQU8sVUFBVSxDQUFDLEtBQUssRUFBRSxFQUFDOzZCQUMzQjs0QkFDRCxVQUFVLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDOzs7OztTQUMzQjtLQUNGLENBQUMsQ0FBQztBQUNMLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQSB1dGlsIGZ1bmN0aW9uIGNvbnZlcnRpbmcgUmVhZGFibGVTdHJlYW0gaW50byBhbiBhc3luYyBpdGVyYWJsZS5cbiAqIFJlZmVyZW5jZTogaHR0cHM6Ly9qYWtlYXJjaGliYWxkLmNvbS8yMDE3L2FzeW5jLWl0ZXJhdG9ycy1hbmQtZ2VuZXJhdG9ycy8jbWFraW5nLXN0cmVhbXMtaXRlcmF0ZVxuICovXG5leHBvcnQgY29uc3QgcmVhZGFibGVTdHJlYW10b0l0ZXJhYmxlID0gPFQ+KHJlYWRhYmxlU3RyZWFtOiBSZWFkYWJsZVN0cmVhbTxUPik6IEFzeW5jSXRlcmFibGU8VD4gPT4gKHtcbiAgW1N5bWJvbC5hc3luY0l0ZXJhdG9yXTogYXN5bmMgZnVuY3Rpb24qICgpIHtcbiAgICBjb25zdCByZWFkZXIgPSByZWFkYWJsZVN0cmVhbS5nZXRSZWFkZXIoKTtcbiAgICB0cnkge1xuICAgICAgd2hpbGUgKHRydWUpIHtcbiAgICAgICAgY29uc3QgeyBkb25lLCB2YWx1ZSB9ID0gYXdhaXQgcmVhZGVyLnJlYWQoKTtcbiAgICAgICAgaWYgKGRvbmUpIHJldHVybjtcbiAgICAgICAgeWllbGQgdmFsdWUgYXMgVDtcbiAgICAgIH1cbiAgICB9IGZpbmFsbHkge1xuICAgICAgcmVhZGVyLnJlbGVhc2VMb2NrKCk7XG4gICAgfVxuICB9LFxufSk7XG5cbi8qKlxuICogQSB1dGlsIGZ1bmN0aW9uIGNvbnZlcnRpbmcgYXN5bmMgaXRlcmFibGUgdG8gYSBSZWFkYWJsZVN0cmVhbS5cbiAqL1xuZXhwb3J0IGNvbnN0IGl0ZXJhYmxlVG9SZWFkYWJsZVN0cmVhbSA9IDxUPihhc3luY0l0ZXJhYmxlOiBBc3luY0l0ZXJhYmxlPFQ+KTogUmVhZGFibGVTdHJlYW08VD4gPT4ge1xuICBjb25zdCBpdGVyYXRvciA9IGFzeW5jSXRlcmFibGVbU3ltYm9sLmFzeW5jSXRlcmF0b3JdKCk7XG4gIHJldHVybiBuZXcgUmVhZGFibGVTdHJlYW0oe1xuICAgIGFzeW5jIHB1bGwoY29udHJvbGxlcikge1xuICAgICAgY29uc3QgeyBkb25lLCB2YWx1ZSB9ID0gYXdhaXQgaXRlcmF0b3IubmV4dCgpO1xuICAgICAgaWYgKGRvbmUpIHtcbiAgICAgICAgcmV0dXJuIGNvbnRyb2xsZXIuY2xvc2UoKTtcbiAgICAgIH1cbiAgICAgIGNvbnRyb2xsZXIuZW5xdWV1ZSh2YWx1ZSk7XG4gICAgfSxcbiAgfSk7XG59O1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-browser/dist/es/utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-config-resolver/dist/es/EventStreamSerdeConfig.js": /*!***************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-config-resolver/dist/es/EventStreamSerdeConfig.js ***! \***************************************************************************************************/ /*! exports provided: resolveEventStreamSerdeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveEventStreamSerdeConfig\", function() { return resolveEventStreamSerdeConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar resolveEventStreamSerdeConfig = function (input) { return (Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { eventStreamMarshaller: input.eventStreamSerdeProvider(input) })); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXZlbnRTdHJlYW1TZXJkZUNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9FdmVudFN0cmVhbVNlcmRlQ29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFZQSxNQUFNLENBQUMsSUFBTSw2QkFBNkIsR0FBRyxVQUMzQyxLQUEyRCxJQUNwQixPQUFBLHVCQUNwQyxLQUFLLEtBQ1IscUJBQXFCLEVBQUUsS0FBSyxDQUFDLHdCQUF3QixDQUFDLEtBQUssQ0FBQyxJQUM1RCxFQUh1QyxDQUd2QyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXZlbnRTdHJlYW1NYXJzaGFsbGVyLCBFdmVudFN0cmVhbVNlcmRlUHJvdmlkZXIgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGludGVyZmFjZSBFdmVudFN0cmVhbVNlcmRlSW5wdXRDb25maWcge31cblxuZXhwb3J0IGludGVyZmFjZSBFdmVudFN0cmVhbVNlcmRlUmVzb2x2ZWRDb25maWcge1xuICBldmVudFN0cmVhbU1hcnNoYWxsZXI6IEV2ZW50U3RyZWFtTWFyc2hhbGxlcjtcbn1cblxuaW50ZXJmYWNlIFByZXZpb3VzbHlSZXNvbHZlZCB7XG4gIGV2ZW50U3RyZWFtU2VyZGVQcm92aWRlcjogRXZlbnRTdHJlYW1TZXJkZVByb3ZpZGVyO1xufVxuXG5leHBvcnQgY29uc3QgcmVzb2x2ZUV2ZW50U3RyZWFtU2VyZGVDb25maWcgPSA8VD4oXG4gIGlucHV0OiBUICYgUHJldmlvdXNseVJlc29sdmVkICYgRXZlbnRTdHJlYW1TZXJkZUlucHV0Q29uZmlnXG4pOiBUICYgRXZlbnRTdHJlYW1TZXJkZVJlc29sdmVkQ29uZmlnID0+ICh7XG4gIC4uLmlucHV0LFxuICBldmVudFN0cmVhbU1hcnNoYWxsZXI6IGlucHV0LmV2ZW50U3RyZWFtU2VyZGVQcm92aWRlcihpbnB1dCksXG59KTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-config-resolver/dist/es/EventStreamSerdeConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-config-resolver/dist/es/index.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-config-resolver/dist/es/index.js ***! \**********************************************************************************/ /*! exports provided: resolveEventStreamSerdeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _EventStreamSerdeConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamSerdeConfig */ \"./node_modules/@aws-sdk/eventstream-serde-config-resolver/dist/es/EventStreamSerdeConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEventStreamSerdeConfig\", function() { return _EventStreamSerdeConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveEventStreamSerdeConfig\"]; });\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL0V2ZW50U3RyZWFtU2VyZGVDb25maWdcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-config-resolver/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/EventStreamMarshaller.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/EventStreamMarshaller.js ***! \********************************************************************************************/ /*! exports provided: EventStreamMarshaller */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return EventStreamMarshaller; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_eventstream_marshaller__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/eventstream-marshaller */ \"./node_modules/@aws-sdk/eventstream-marshaller/dist/es/index.js\");\n/* harmony import */ var _getChunkedStream__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getChunkedStream */ \"./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/getChunkedStream.js\");\n/* harmony import */ var _getUnmarshalledStream__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getUnmarshalledStream */ \"./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/getUnmarshalledStream.js\");\n\n\n\n\nvar EventStreamMarshaller = /** @class */ (function () {\n function EventStreamMarshaller(_a) {\n var utf8Encoder = _a.utf8Encoder, utf8Decoder = _a.utf8Decoder;\n this.eventMarshaller = new _aws_sdk_eventstream_marshaller__WEBPACK_IMPORTED_MODULE_1__[\"EventStreamMarshaller\"](utf8Encoder, utf8Decoder);\n this.utfEncoder = utf8Encoder;\n }\n EventStreamMarshaller.prototype.deserialize = function (body, deserializer) {\n var chunkedStream = Object(_getChunkedStream__WEBPACK_IMPORTED_MODULE_2__[\"getChunkedStream\"])(body);\n var unmarshalledStream = Object(_getUnmarshalledStream__WEBPACK_IMPORTED_MODULE_3__[\"getUnmarshalledStream\"])(chunkedStream, {\n eventMarshaller: this.eventMarshaller,\n deserializer: deserializer,\n toUtf8: this.utfEncoder,\n });\n return unmarshalledStream;\n };\n EventStreamMarshaller.prototype.serialize = function (input, serializer) {\n var _a;\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n var self = this;\n var serializedIterator = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function () {\n var input_1, input_1_1, chunk, payloadBuf, e_1_1;\n var e_1, _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n _b.trys.push([0, 7, 8, 13]);\n input_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncValues\"])(input);\n _b.label = 1;\n case 1: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(input_1.next())];\n case 2:\n if (!(input_1_1 = _b.sent(), !input_1_1.done)) return [3 /*break*/, 6];\n chunk = input_1_1.value;\n payloadBuf = self.eventMarshaller.marshall(serializer(chunk));\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(payloadBuf)];\n case 3: return [4 /*yield*/, _b.sent()];\n case 4:\n _b.sent();\n _b.label = 5;\n case 5: return [3 /*break*/, 1];\n case 6: return [3 /*break*/, 13];\n case 7:\n e_1_1 = _b.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 13];\n case 8:\n _b.trys.push([8, , 11, 12]);\n if (!(input_1_1 && !input_1_1.done && (_a = input_1.return))) return [3 /*break*/, 10];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(_a.call(input_1))];\n case 9:\n _b.sent();\n _b.label = 10;\n case 10: return [3 /*break*/, 12];\n case 11:\n if (e_1) throw e_1.error;\n return [7 /*endfinally*/];\n case 12: return [7 /*endfinally*/];\n case 13: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(new Uint8Array(0))];\n case 14: \n // Ending frame\n return [4 /*yield*/, _b.sent()];\n case 15:\n // Ending frame\n _b.sent();\n return [2 /*return*/];\n }\n });\n });\n };\n return _a = {},\n _a[Symbol.asyncIterator] = serializedIterator,\n _a;\n };\n return EventStreamMarshaller;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXZlbnRTdHJlYW1NYXJzaGFsbGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL0V2ZW50U3RyZWFtTWFyc2hhbGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLHFCQUFxQixJQUFJLGVBQWUsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBRzNGLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3RELE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBU2hFO0lBR0UsK0JBQVksRUFBMEQ7WUFBeEQsV0FBVyxpQkFBQSxFQUFFLFdBQVcsaUJBQUE7UUFDcEMsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLGVBQWUsQ0FBQyxXQUFXLEVBQUUsV0FBVyxDQUFDLENBQUM7UUFDckUsSUFBSSxDQUFDLFVBQVUsR0FBRyxXQUFXLENBQUM7SUFDaEMsQ0FBQztJQUVELDJDQUFXLEdBQVgsVUFDRSxJQUErQixFQUMvQixZQUFpRTtRQUVqRSxJQUFNLGFBQWEsR0FBRyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUM3QyxJQUFNLGtCQUFrQixHQUFHLHFCQUFxQixDQUFDLGFBQWEsRUFBRTtZQUM5RCxlQUFlLEVBQUUsSUFBSSxDQUFDLGVBQWU7WUFDckMsWUFBWSxjQUFBO1lBQ1osTUFBTSxFQUFFLElBQUksQ0FBQyxVQUFVO1NBQ3hCLENBQUMsQ0FBQztRQUNILE9BQU8sa0JBQWtCLENBQUM7SUFDNUIsQ0FBQztJQUVELHlDQUFTLEdBQVQsVUFBYSxLQUF1QixFQUFFLFVBQWlDOztRQUNyRSw0REFBNEQ7UUFDNUQsSUFBTSxJQUFJLEdBQUcsSUFBSSxDQUFDO1FBQ2xCLElBQU0sa0JBQWtCLEdBQUc7Ozs7Ozs7OzRCQUNDLFVBQUEsY0FBQSxLQUFLLENBQUE7Ozs7OzRCQUFkLEtBQUssa0JBQUEsQ0FBQTs0QkFDZCxVQUFVLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxRQUFRLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUM7eURBQzlELFVBQVU7Z0NBQWhCLGdDQUFnQjs7NEJBQWhCLFNBQWdCLENBQUM7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OzhEQUdiLElBQUksVUFBVSxDQUFDLENBQUMsQ0FBQzs7d0JBRHZCLGVBQWU7d0JBQ2YsZ0NBQXVCOzs0QkFEdkIsZUFBZTs0QkFDZixTQUF1QixDQUFDOzs7OztTQUN6QixDQUFDO1FBQ0Y7WUFDRSxHQUFDLE1BQU0sQ0FBQyxhQUFhLElBQUcsa0JBQWtCO2VBQzFDO0lBQ0osQ0FBQztJQUNILDRCQUFDO0FBQUQsQ0FBQyxBQXBDRCxJQW9DQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEV2ZW50U3RyZWFtTWFyc2hhbGxlciBhcyBFdmVudE1hcnNoYWxsZXIgfSBmcm9tIFwiQGF3cy1zZGsvZXZlbnRzdHJlYW0tbWFyc2hhbGxlclwiO1xuaW1wb3J0IHsgRGVjb2RlciwgRW5jb2RlciwgRXZlbnRTdHJlYW1NYXJzaGFsbGVyIGFzIElFdmVudFN0cmVhbU1hcnNoYWxsZXIsIE1lc3NhZ2UgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgZ2V0Q2h1bmtlZFN0cmVhbSB9IGZyb20gXCIuL2dldENodW5rZWRTdHJlYW1cIjtcbmltcG9ydCB7IGdldFVubWFyc2hhbGxlZFN0cmVhbSB9IGZyb20gXCIuL2dldFVubWFyc2hhbGxlZFN0cmVhbVwiO1xuXG5leHBvcnQgaW50ZXJmYWNlIEV2ZW50U3RyZWFtTWFyc2hhbGxlciBleHRlbmRzIElFdmVudFN0cmVhbU1hcnNoYWxsZXIge31cblxuZXhwb3J0IGludGVyZmFjZSBFdmVudFN0cmVhbU1hcnNoYWxsZXJPcHRpb25zIHtcbiAgdXRmOEVuY29kZXI6IEVuY29kZXI7XG4gIHV0ZjhEZWNvZGVyOiBEZWNvZGVyO1xufVxuXG5leHBvcnQgY2xhc3MgRXZlbnRTdHJlYW1NYXJzaGFsbGVyIHtcbiAgcHJpdmF0ZSByZWFkb25seSBldmVudE1hcnNoYWxsZXI6IEV2ZW50TWFyc2hhbGxlcjtcbiAgcHJpdmF0ZSByZWFkb25seSB1dGZFbmNvZGVyOiBFbmNvZGVyO1xuICBjb25zdHJ1Y3Rvcih7IHV0ZjhFbmNvZGVyLCB1dGY4RGVjb2RlciB9OiBFdmVudFN0cmVhbU1hcnNoYWxsZXJPcHRpb25zKSB7XG4gICAgdGhpcy5ldmVudE1hcnNoYWxsZXIgPSBuZXcgRXZlbnRNYXJzaGFsbGVyKHV0ZjhFbmNvZGVyLCB1dGY4RGVjb2Rlcik7XG4gICAgdGhpcy51dGZFbmNvZGVyID0gdXRmOEVuY29kZXI7XG4gIH1cblxuICBkZXNlcmlhbGl6ZTxUPihcbiAgICBib2R5OiBBc3luY0l0ZXJhYmxlPFVpbnQ4QXJyYXk+LFxuICAgIGRlc2VyaWFsaXplcjogKGlucHV0OiB7IFtldmVudDogc3RyaW5nXTogTWVzc2FnZSB9KSA9PiBQcm9taXNlPFQ+XG4gICk6IEFzeW5jSXRlcmFibGU8VD4ge1xuICAgIGNvbnN0IGNodW5rZWRTdHJlYW0gPSBnZXRDaHVua2VkU3RyZWFtKGJvZHkpO1xuICAgIGNvbnN0IHVubWFyc2hhbGxlZFN0cmVhbSA9IGdldFVubWFyc2hhbGxlZFN0cmVhbShjaHVua2VkU3RyZWFtLCB7XG4gICAgICBldmVudE1hcnNoYWxsZXI6IHRoaXMuZXZlbnRNYXJzaGFsbGVyLFxuICAgICAgZGVzZXJpYWxpemVyLFxuICAgICAgdG9VdGY4OiB0aGlzLnV0ZkVuY29kZXIsXG4gICAgfSk7XG4gICAgcmV0dXJuIHVubWFyc2hhbGxlZFN0cmVhbTtcbiAgfVxuXG4gIHNlcmlhbGl6ZTxUPihpbnB1dDogQXN5bmNJdGVyYWJsZTxUPiwgc2VyaWFsaXplcjogKGV2ZW50OiBUKSA9PiBNZXNzYWdlKTogQXN5bmNJdGVyYWJsZTxVaW50OEFycmF5PiB7XG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEB0eXBlc2NyaXB0LWVzbGludC9uby10aGlzLWFsaWFzXG4gICAgY29uc3Qgc2VsZiA9IHRoaXM7XG4gICAgY29uc3Qgc2VyaWFsaXplZEl0ZXJhdG9yID0gYXN5bmMgZnVuY3Rpb24qICgpIHtcbiAgICAgIGZvciBhd2FpdCAoY29uc3QgY2h1bmsgb2YgaW5wdXQpIHtcbiAgICAgICAgY29uc3QgcGF5bG9hZEJ1ZiA9IHNlbGYuZXZlbnRNYXJzaGFsbGVyLm1hcnNoYWxsKHNlcmlhbGl6ZXIoY2h1bmspKTtcbiAgICAgICAgeWllbGQgcGF5bG9hZEJ1ZjtcbiAgICAgIH1cbiAgICAgIC8vIEVuZGluZyBmcmFtZVxuICAgICAgeWllbGQgbmV3IFVpbnQ4QXJyYXkoMCk7XG4gICAgfTtcbiAgICByZXR1cm4ge1xuICAgICAgW1N5bWJvbC5hc3luY0l0ZXJhdG9yXTogc2VyaWFsaXplZEl0ZXJhdG9yLFxuICAgIH07XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/EventStreamMarshaller.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/getChunkedStream.js": /*!***************************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/getChunkedStream.js ***! \***************************************************************************************/ /*! exports provided: getChunkedStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getChunkedStream\", function() { return getChunkedStream; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nfunction getChunkedStream(source) {\n var _a;\n var currentMessageTotalLength = 0;\n var currentMessagePendingLength = 0;\n var currentMessage = null;\n var messageLengthBuffer = null;\n var allocateMessage = function (size) {\n if (typeof size !== \"number\") {\n throw new Error(\"Attempted to allocate an event message where size was not a number: \" + size);\n }\n currentMessageTotalLength = size;\n currentMessagePendingLength = 4;\n currentMessage = new Uint8Array(size);\n var currentMessageView = new DataView(currentMessage.buffer);\n currentMessageView.setUint32(0, size, false); //set big-endian Uint32 to 0~3 bytes\n };\n var iterator = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function () {\n var sourceIterator, _a, value, done, chunkLength, currentOffset, bytesRemaining, numBytesForTotal, numBytesToWrite;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n sourceIterator = source[Symbol.asyncIterator]();\n _b.label = 1;\n case 1:\n if (false) {}\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(sourceIterator.next())];\n case 2:\n _a = _b.sent(), value = _a.value, done = _a.done;\n if (!done) return [3 /*break*/, 10];\n if (!!currentMessageTotalLength) return [3 /*break*/, 4];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(void 0)];\n case 3: return [2 /*return*/, _b.sent()];\n case 4:\n if (!(currentMessageTotalLength === currentMessagePendingLength)) return [3 /*break*/, 7];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(currentMessage)];\n case 5: return [4 /*yield*/, _b.sent()];\n case 6:\n _b.sent();\n return [3 /*break*/, 8];\n case 7: throw new Error(\"Truncated event message received.\");\n case 8: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(void 0)];\n case 9: return [2 /*return*/, _b.sent()];\n case 10:\n chunkLength = value.length;\n currentOffset = 0;\n _b.label = 11;\n case 11:\n if (!(currentOffset < chunkLength)) return [3 /*break*/, 15];\n // create new message if necessary\n if (!currentMessage) {\n bytesRemaining = chunkLength - currentOffset;\n // prevent edge case where total length spans 2 chunks\n if (!messageLengthBuffer) {\n messageLengthBuffer = new Uint8Array(4);\n }\n numBytesForTotal = Math.min(4 - currentMessagePendingLength, // remaining bytes to fill the messageLengthBuffer\n bytesRemaining // bytes left in chunk\n );\n messageLengthBuffer.set(\n // @ts-ignore error TS2532: Object is possibly 'undefined' for value\n value.slice(currentOffset, currentOffset + numBytesForTotal), currentMessagePendingLength);\n currentMessagePendingLength += numBytesForTotal;\n currentOffset += numBytesForTotal;\n if (currentMessagePendingLength < 4) {\n // not enough information to create the current message\n return [3 /*break*/, 15];\n }\n allocateMessage(new DataView(messageLengthBuffer.buffer).getUint32(0, false));\n messageLengthBuffer = null;\n }\n numBytesToWrite = Math.min(currentMessageTotalLength - currentMessagePendingLength, // number of bytes left to complete message\n chunkLength - currentOffset // number of bytes left in the original chunk\n );\n currentMessage.set(\n // @ts-ignore error TS2532: Object is possibly 'undefined' for value\n value.slice(currentOffset, currentOffset + numBytesToWrite), currentMessagePendingLength);\n currentMessagePendingLength += numBytesToWrite;\n currentOffset += numBytesToWrite;\n if (!(currentMessageTotalLength && currentMessageTotalLength === currentMessagePendingLength)) return [3 /*break*/, 14];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(currentMessage)];\n case 12: \n // push out the message\n return [4 /*yield*/, _b.sent()];\n case 13:\n // push out the message\n _b.sent();\n // cleanup\n currentMessage = null;\n currentMessageTotalLength = 0;\n currentMessagePendingLength = 0;\n _b.label = 14;\n case 14: return [3 /*break*/, 11];\n case 15: return [3 /*break*/, 1];\n case 16: return [2 /*return*/];\n }\n });\n });\n };\n return _a = {},\n _a[Symbol.asyncIterator] = iterator,\n _a;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0Q2h1bmtlZFN0cmVhbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9nZXRDaHVua2VkU3RyZWFtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxNQUFNLFVBQVUsZ0JBQWdCLENBQUMsTUFBaUM7O0lBQ2hFLElBQUkseUJBQXlCLEdBQUcsQ0FBQyxDQUFDO0lBQ2xDLElBQUksMkJBQTJCLEdBQUcsQ0FBQyxDQUFDO0lBQ3BDLElBQUksY0FBYyxHQUFzQixJQUFJLENBQUM7SUFDN0MsSUFBSSxtQkFBbUIsR0FBc0IsSUFBSSxDQUFDO0lBQ2xELElBQU0sZUFBZSxHQUFHLFVBQUMsSUFBWTtRQUNuQyxJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVEsRUFBRTtZQUM1QixNQUFNLElBQUksS0FBSyxDQUFDLHNFQUFzRSxHQUFHLElBQUksQ0FBQyxDQUFDO1NBQ2hHO1FBQ0QseUJBQXlCLEdBQUcsSUFBSSxDQUFDO1FBQ2pDLDJCQUEyQixHQUFHLENBQUMsQ0FBQztRQUNoQyxjQUFjLEdBQUcsSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDdEMsSUFBTSxrQkFBa0IsR0FBRyxJQUFJLFFBQVEsQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDL0Qsa0JBQWtCLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxJQUFJLEVBQUUsS0FBSyxDQUFDLENBQUMsQ0FBQyxvQ0FBb0M7SUFDcEYsQ0FBQyxDQUFDO0lBRUYsSUFBTSxRQUFRLEdBQUc7Ozs7Ozt3QkFDVCxjQUFjLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxhQUFhLENBQUMsRUFBRSxDQUFDOzs7NkJBQy9DLElBQUk7d0JBQ2UsNkJBQU0sY0FBYyxDQUFDLElBQUksRUFBRSxHQUFBOzt3QkFBN0MsS0FBa0IsU0FBMkIsRUFBM0MsS0FBSyxXQUFBLEVBQUUsSUFBSSxVQUFBOzZCQUNmLElBQUksRUFBSix5QkFBSTs2QkFDRixDQUFDLHlCQUF5QixFQUExQix3QkFBMEI7OzRCQUM1QixpQ0FBTzs7NkJBQ0UsQ0FBQSx5QkFBeUIsS0FBSywyQkFBMkIsQ0FBQSxFQUF6RCx3QkFBeUQ7cURBQzVELGNBQTRCOzRCQUFsQyxnQ0FBa0M7O3dCQUFsQyxTQUFrQyxDQUFDOzs0QkFFbkMsTUFBTSxJQUFJLEtBQUssQ0FBQyxtQ0FBbUMsQ0FBQyxDQUFDOzs0QkFFdkQsaUNBQU87O3dCQUdILFdBQVcsR0FBRyxLQUFLLENBQUMsTUFBTSxDQUFDO3dCQUM3QixhQUFhLEdBQUcsQ0FBQyxDQUFDOzs7NkJBRWYsQ0FBQSxhQUFhLEdBQUcsV0FBVyxDQUFBO3dCQUNoQyxrQ0FBa0M7d0JBQ2xDLElBQUksQ0FBQyxjQUFjLEVBQUU7NEJBRWIsY0FBYyxHQUFHLFdBQVcsR0FBRyxhQUFhLENBQUM7NEJBQ25ELHNEQUFzRDs0QkFDdEQsSUFBSSxDQUFDLG1CQUFtQixFQUFFO2dDQUN4QixtQkFBbUIsR0FBRyxJQUFJLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQzs2QkFDekM7NEJBQ0ssZ0JBQWdCLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FDL0IsQ0FBQyxHQUFHLDJCQUEyQixFQUFFLGtEQUFrRDs0QkFDbkYsY0FBYyxDQUFDLHNCQUFzQjs2QkFDdEMsQ0FBQzs0QkFFRixtQkFBbUIsQ0FBQyxHQUFHOzRCQUNyQixvRUFBb0U7NEJBQ3BFLEtBQUssQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFLGFBQWEsR0FBRyxnQkFBZ0IsQ0FBQyxFQUM1RCwyQkFBMkIsQ0FDNUIsQ0FBQzs0QkFFRiwyQkFBMkIsSUFBSSxnQkFBZ0IsQ0FBQzs0QkFDaEQsYUFBYSxJQUFJLGdCQUFnQixDQUFDOzRCQUVsQyxJQUFJLDJCQUEyQixHQUFHLENBQUMsRUFBRTtnQ0FDbkMsdURBQXVEO2dDQUN2RCx5QkFBTTs2QkFDUDs0QkFDRCxlQUFlLENBQUMsSUFBSSxRQUFRLENBQUMsbUJBQW1CLENBQUMsTUFBTSxDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxLQUFLLENBQUMsQ0FBQyxDQUFDOzRCQUM5RSxtQkFBbUIsR0FBRyxJQUFJLENBQUM7eUJBQzVCO3dCQUdLLGVBQWUsR0FBRyxJQUFJLENBQUMsR0FBRyxDQUM5Qix5QkFBeUIsR0FBRywyQkFBMkIsRUFBRSwyQ0FBMkM7d0JBQ3BHLFdBQVcsR0FBRyxhQUFhLENBQUMsNkNBQTZDO3lCQUMxRSxDQUFDO3dCQUNGLGNBQWUsQ0FBQyxHQUFHO3dCQUNqQixvRUFBb0U7d0JBQ3BFLEtBQUssQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFLGFBQWEsR0FBRyxlQUFlLENBQUMsRUFDM0QsMkJBQTJCLENBQzVCLENBQUM7d0JBQ0YsMkJBQTJCLElBQUksZUFBZSxDQUFDO3dCQUMvQyxhQUFhLElBQUksZUFBZSxDQUFDOzZCQUc3QixDQUFBLHlCQUF5QixJQUFJLHlCQUF5QixLQUFLLDJCQUEyQixDQUFBLEVBQXRGLHlCQUFzRjtxREFFbEYsY0FBNEI7O29CQURsQyx1QkFBdUI7b0JBQ3ZCLGdDQUFrQzs7d0JBRGxDLHVCQUF1Qjt3QkFDdkIsU0FBa0MsQ0FBQzt3QkFDbkMsVUFBVTt3QkFDVixjQUFjLEdBQUcsSUFBSSxDQUFDO3dCQUN0Qix5QkFBeUIsR0FBRyxDQUFDLENBQUM7d0JBQzlCLDJCQUEyQixHQUFHLENBQUMsQ0FBQzs7Ozs7Ozs7S0FJdkMsQ0FBQztJQUVGO1FBQ0UsR0FBQyxNQUFNLENBQUMsYUFBYSxJQUFHLFFBQVE7V0FDaEM7QUFDSixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGZ1bmN0aW9uIGdldENodW5rZWRTdHJlYW0oc291cmNlOiBBc3luY0l0ZXJhYmxlPFVpbnQ4QXJyYXk+KTogQXN5bmNJdGVyYWJsZTxVaW50OEFycmF5PiB7XG4gIGxldCBjdXJyZW50TWVzc2FnZVRvdGFsTGVuZ3RoID0gMDtcbiAgbGV0IGN1cnJlbnRNZXNzYWdlUGVuZGluZ0xlbmd0aCA9IDA7XG4gIGxldCBjdXJyZW50TWVzc2FnZTogVWludDhBcnJheSB8IG51bGwgPSBudWxsO1xuICBsZXQgbWVzc2FnZUxlbmd0aEJ1ZmZlcjogVWludDhBcnJheSB8IG51bGwgPSBudWxsO1xuICBjb25zdCBhbGxvY2F0ZU1lc3NhZ2UgPSAoc2l6ZTogbnVtYmVyKSA9PiB7XG4gICAgaWYgKHR5cGVvZiBzaXplICE9PSBcIm51bWJlclwiKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXCJBdHRlbXB0ZWQgdG8gYWxsb2NhdGUgYW4gZXZlbnQgbWVzc2FnZSB3aGVyZSBzaXplIHdhcyBub3QgYSBudW1iZXI6IFwiICsgc2l6ZSk7XG4gICAgfVxuICAgIGN1cnJlbnRNZXNzYWdlVG90YWxMZW5ndGggPSBzaXplO1xuICAgIGN1cnJlbnRNZXNzYWdlUGVuZGluZ0xlbmd0aCA9IDQ7XG4gICAgY3VycmVudE1lc3NhZ2UgPSBuZXcgVWludDhBcnJheShzaXplKTtcbiAgICBjb25zdCBjdXJyZW50TWVzc2FnZVZpZXcgPSBuZXcgRGF0YVZpZXcoY3VycmVudE1lc3NhZ2UuYnVmZmVyKTtcbiAgICBjdXJyZW50TWVzc2FnZVZpZXcuc2V0VWludDMyKDAsIHNpemUsIGZhbHNlKTsgLy9zZXQgYmlnLWVuZGlhbiBVaW50MzIgdG8gMH4zIGJ5dGVzXG4gIH07XG5cbiAgY29uc3QgaXRlcmF0b3IgPSBhc3luYyBmdW5jdGlvbiogKCkge1xuICAgIGNvbnN0IHNvdXJjZUl0ZXJhdG9yID0gc291cmNlW1N5bWJvbC5hc3luY0l0ZXJhdG9yXSgpO1xuICAgIHdoaWxlICh0cnVlKSB7XG4gICAgICBjb25zdCB7IHZhbHVlLCBkb25lIH0gPSBhd2FpdCBzb3VyY2VJdGVyYXRvci5uZXh0KCk7XG4gICAgICBpZiAoZG9uZSkge1xuICAgICAgICBpZiAoIWN1cnJlbnRNZXNzYWdlVG90YWxMZW5ndGgpIHtcbiAgICAgICAgICByZXR1cm47XG4gICAgICAgIH0gZWxzZSBpZiAoY3VycmVudE1lc3NhZ2VUb3RhbExlbmd0aCA9PT0gY3VycmVudE1lc3NhZ2VQZW5kaW5nTGVuZ3RoKSB7XG4gICAgICAgICAgeWllbGQgY3VycmVudE1lc3NhZ2UgYXMgVWludDhBcnJheTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICB0aHJvdyBuZXcgRXJyb3IoXCJUcnVuY2F0ZWQgZXZlbnQgbWVzc2FnZSByZWNlaXZlZC5cIik7XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuO1xuICAgICAgfVxuXG4gICAgICBjb25zdCBjaHVua0xlbmd0aCA9IHZhbHVlLmxlbmd0aDtcbiAgICAgIGxldCBjdXJyZW50T2Zmc2V0ID0gMDtcblxuICAgICAgd2hpbGUgKGN1cnJlbnRPZmZzZXQgPCBjaHVua0xlbmd0aCkge1xuICAgICAgICAvLyBjcmVhdGUgbmV3IG1lc3NhZ2UgaWYgbmVjZXNzYXJ5XG4gICAgICAgIGlmICghY3VycmVudE1lc3NhZ2UpIHtcbiAgICAgICAgICAvLyB3b3JraW5nIG9uIGEgbmV3IG1lc3NhZ2UsIGRldGVybWluZSB0b3RhbCBsZW5ndGhcbiAgICAgICAgICBjb25zdCBieXRlc1JlbWFpbmluZyA9IGNodW5rTGVuZ3RoIC0gY3VycmVudE9mZnNldDtcbiAgICAgICAgICAvLyBwcmV2ZW50IGVkZ2UgY2FzZSB3aGVyZSB0b3RhbCBsZW5ndGggc3BhbnMgMiBjaHVua3NcbiAgICAgICAgICBpZiAoIW1lc3NhZ2VMZW5ndGhCdWZmZXIpIHtcbiAgICAgICAgICAgIG1lc3NhZ2VMZW5ndGhCdWZmZXIgPSBuZXcgVWludDhBcnJheSg0KTtcbiAgICAgICAgICB9XG4gICAgICAgICAgY29uc3QgbnVtQnl0ZXNGb3JUb3RhbCA9IE1hdGgubWluKFxuICAgICAgICAgICAgNCAtIGN1cnJlbnRNZXNzYWdlUGVuZGluZ0xlbmd0aCwgLy8gcmVtYWluaW5nIGJ5dGVzIHRvIGZpbGwgdGhlIG1lc3NhZ2VMZW5ndGhCdWZmZXJcbiAgICAgICAgICAgIGJ5dGVzUmVtYWluaW5nIC8vIGJ5dGVzIGxlZnQgaW4gY2h1bmtcbiAgICAgICAgICApO1xuXG4gICAgICAgICAgbWVzc2FnZUxlbmd0aEJ1ZmZlci5zZXQoXG4gICAgICAgICAgICAvLyBAdHMtaWdub3JlIGVycm9yIFRTMjUzMjogT2JqZWN0IGlzIHBvc3NpYmx5ICd1bmRlZmluZWQnIGZvciB2YWx1ZVxuICAgICAgICAgICAgdmFsdWUuc2xpY2UoY3VycmVudE9mZnNldCwgY3VycmVudE9mZnNldCArIG51bUJ5dGVzRm9yVG90YWwpLFxuICAgICAgICAgICAgY3VycmVudE1lc3NhZ2VQZW5kaW5nTGVuZ3RoXG4gICAgICAgICAgKTtcblxuICAgICAgICAgIGN1cnJlbnRNZXNzYWdlUGVuZGluZ0xlbmd0aCArPSBudW1CeXRlc0ZvclRvdGFsO1xuICAgICAgICAgIGN1cnJlbnRPZmZzZXQgKz0gbnVtQnl0ZXNGb3JUb3RhbDtcblxuICAgICAgICAgIGlmIChjdXJyZW50TWVzc2FnZVBlbmRpbmdMZW5ndGggPCA0KSB7XG4gICAgICAgICAgICAvLyBub3QgZW5vdWdoIGluZm9ybWF0aW9uIHRvIGNyZWF0ZSB0aGUgY3VycmVudCBtZXNzYWdlXG4gICAgICAgICAgICBicmVhaztcbiAgICAgICAgICB9XG4gICAgICAgICAgYWxsb2NhdGVNZXNzYWdlKG5ldyBEYXRhVmlldyhtZXNzYWdlTGVuZ3RoQnVmZmVyLmJ1ZmZlcikuZ2V0VWludDMyKDAsIGZhbHNlKSk7XG4gICAgICAgICAgbWVzc2FnZUxlbmd0aEJ1ZmZlciA9IG51bGw7XG4gICAgICAgIH1cblxuICAgICAgICAvLyB3cml0ZSBkYXRhIGludG8gY3VycmVudCBtZXNzYWdlXG4gICAgICAgIGNvbnN0IG51bUJ5dGVzVG9Xcml0ZSA9IE1hdGgubWluKFxuICAgICAgICAgIGN1cnJlbnRNZXNzYWdlVG90YWxMZW5ndGggLSBjdXJyZW50TWVzc2FnZVBlbmRpbmdMZW5ndGgsIC8vIG51bWJlciBvZiBieXRlcyBsZWZ0IHRvIGNvbXBsZXRlIG1lc3NhZ2VcbiAgICAgICAgICBjaHVua0xlbmd0aCAtIGN1cnJlbnRPZmZzZXQgLy8gbnVtYmVyIG9mIGJ5dGVzIGxlZnQgaW4gdGhlIG9yaWdpbmFsIGNodW5rXG4gICAgICAgICk7XG4gICAgICAgIGN1cnJlbnRNZXNzYWdlIS5zZXQoXG4gICAgICAgICAgLy8gQHRzLWlnbm9yZSBlcnJvciBUUzI1MzI6IE9iamVjdCBpcyBwb3NzaWJseSAndW5kZWZpbmVkJyBmb3IgdmFsdWVcbiAgICAgICAgICB2YWx1ZS5zbGljZShjdXJyZW50T2Zmc2V0LCBjdXJyZW50T2Zmc2V0ICsgbnVtQnl0ZXNUb1dyaXRlKSxcbiAgICAgICAgICBjdXJyZW50TWVzc2FnZVBlbmRpbmdMZW5ndGhcbiAgICAgICAgKTtcbiAgICAgICAgY3VycmVudE1lc3NhZ2VQZW5kaW5nTGVuZ3RoICs9IG51bUJ5dGVzVG9Xcml0ZTtcbiAgICAgICAgY3VycmVudE9mZnNldCArPSBudW1CeXRlc1RvV3JpdGU7XG5cbiAgICAgICAgLy8gY2hlY2sgaWYgYSBtZXNzYWdlIGlzIHJlYWR5IHRvIGJlIHB1c2hlZFxuICAgICAgICBpZiAoY3VycmVudE1lc3NhZ2VUb3RhbExlbmd0aCAmJiBjdXJyZW50TWVzc2FnZVRvdGFsTGVuZ3RoID09PSBjdXJyZW50TWVzc2FnZVBlbmRpbmdMZW5ndGgpIHtcbiAgICAgICAgICAvLyBwdXNoIG91dCB0aGUgbWVzc2FnZVxuICAgICAgICAgIHlpZWxkIGN1cnJlbnRNZXNzYWdlIGFzIFVpbnQ4QXJyYXk7XG4gICAgICAgICAgLy8gY2xlYW51cFxuICAgICAgICAgIGN1cnJlbnRNZXNzYWdlID0gbnVsbDtcbiAgICAgICAgICBjdXJyZW50TWVzc2FnZVRvdGFsTGVuZ3RoID0gMDtcbiAgICAgICAgICBjdXJyZW50TWVzc2FnZVBlbmRpbmdMZW5ndGggPSAwO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9O1xuXG4gIHJldHVybiB7XG4gICAgW1N5bWJvbC5hc3luY0l0ZXJhdG9yXTogaXRlcmF0b3IsXG4gIH07XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/getChunkedStream.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/getUnmarshalledStream.js": /*!********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/getUnmarshalledStream.js ***! \********************************************************************************************/ /*! exports provided: getUnmarshalledStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUnmarshalledStream\", function() { return getUnmarshalledStream; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nfunction getUnmarshalledStream(source, options) {\n var _a;\n return _a = {},\n _a[Symbol.asyncIterator] = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncGenerator\"])(this, arguments, function () {\n var source_1, source_1_1, chunk, message, messageType, unmodeledError, code, exception, deserializedException, error, event, deserialized, e_1_1;\n var _a, _b;\n var e_1, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0:\n _d.trys.push([0, 12, 13, 18]);\n source_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__asyncValues\"])(source);\n _d.label = 1;\n case 1: return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(source_1.next())];\n case 2:\n if (!(source_1_1 = _d.sent(), !source_1_1.done)) return [3 /*break*/, 11];\n chunk = source_1_1.value;\n message = options.eventMarshaller.unmarshall(chunk);\n messageType = message.headers[\":message-type\"].value;\n if (!(messageType === \"error\")) return [3 /*break*/, 3];\n unmodeledError = new Error(message.headers[\":error-message\"].value || \"UnknownError\");\n unmodeledError.name = message.headers[\":error-code\"].value;\n throw unmodeledError;\n case 3:\n if (!(messageType === \"exception\")) return [3 /*break*/, 5];\n code = message.headers[\":exception-type\"].value;\n exception = (_a = {}, _a[code] = message, _a);\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(options.deserializer(exception))];\n case 4:\n deserializedException = _d.sent();\n if (deserializedException.$unknown) {\n error = new Error(options.toUtf8(message.body));\n error.name = code;\n throw error;\n }\n throw deserializedException[code];\n case 5:\n if (!(messageType === \"event\")) return [3 /*break*/, 9];\n event = (_b = {},\n _b[message.headers[\":event-type\"].value] = message,\n _b);\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(options.deserializer(event))];\n case 6:\n deserialized = _d.sent();\n if (deserialized.$unknown)\n return [3 /*break*/, 10];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(deserialized)];\n case 7: return [4 /*yield*/, _d.sent()];\n case 8:\n _d.sent();\n return [3 /*break*/, 10];\n case 9: throw Error(\"Unrecognizable event type: \" + message.headers[\":event-type\"].value);\n case 10: return [3 /*break*/, 1];\n case 11: return [3 /*break*/, 18];\n case 12:\n e_1_1 = _d.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 18];\n case 13:\n _d.trys.push([13, , 16, 17]);\n if (!(source_1_1 && !source_1_1.done && (_c = source_1.return))) return [3 /*break*/, 15];\n return [4 /*yield*/, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__await\"])(_c.call(source_1))];\n case 14:\n _d.sent();\n _d.label = 15;\n case 15: return [3 /*break*/, 17];\n case 16:\n if (e_1) throw e_1.error;\n return [7 /*endfinally*/];\n case 17: return [7 /*endfinally*/];\n case 18: return [2 /*return*/];\n }\n });\n });\n },\n _a;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0VW5tYXJzaGFsbGVkU3RyZWFtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2dldFVubWFyc2hhbGxlZFN0cmVhbS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBU0EsTUFBTSxVQUFVLHFCQUFxQixDQUNuQyxNQUFpQyxFQUNqQyxPQUFxQzs7SUFFckM7UUFDRSxHQUFDLE1BQU0sQ0FBQyxhQUFhLElBQUc7Ozs7Ozs7Ozs0QkFDSSxXQUFBLGNBQUEsTUFBTSxDQUFBOzs7Ozs0QkFBZixLQUFLLG1CQUFBLENBQUE7NEJBQ2QsT0FBTyxHQUFHLE9BQU8sQ0FBQyxlQUFlLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDOzRCQUMzQyxXQUFXLEdBQUssT0FBTyxDQUFDLE9BQU8sQ0FBQyxlQUFlLENBQUMsTUFBckMsQ0FBc0M7aUNBQzVELENBQUEsV0FBVyxLQUFLLE9BQU8sQ0FBQSxFQUF2Qix3QkFBdUI7NEJBRW5CLGNBQWMsR0FBRyxJQUFJLEtBQUssQ0FBRSxPQUFPLENBQUMsT0FBTyxDQUFDLGdCQUFnQixDQUFDLENBQUMsS0FBZ0IsSUFBSSxjQUFjLENBQUMsQ0FBQzs0QkFDeEcsY0FBYyxDQUFDLElBQUksR0FBRyxPQUFPLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxDQUFDLEtBQWUsQ0FBQzs0QkFDckUsTUFBTSxjQUFjLENBQUM7O2lDQUNaLENBQUEsV0FBVyxLQUFLLFdBQVcsQ0FBQSxFQUEzQix3QkFBMkI7NEJBRTlCLElBQUksR0FBRyxPQUFPLENBQUMsT0FBTyxDQUFDLGlCQUFpQixDQUFDLENBQUMsS0FBZSxDQUFDOzRCQUMxRCxTQUFTLGFBQUssR0FBQyxJQUFJLElBQUcsT0FBTyxLQUFFLENBQUM7NEJBRVIsNkJBQU0sT0FBTyxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsR0FBQTs7NEJBQTdELHFCQUFxQixHQUFHLFNBQXFDOzRCQUNuRSxJQUFJLHFCQUFxQixDQUFDLFFBQVEsRUFBRTtnQ0FFNUIsS0FBSyxHQUFHLElBQUksS0FBSyxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUM7Z0NBQ3RELEtBQUssQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDO2dDQUNsQixNQUFNLEtBQUssQ0FBQzs2QkFDYjs0QkFDRCxNQUFNLHFCQUFxQixDQUFDLElBQUksQ0FBQyxDQUFDOztpQ0FDekIsQ0FBQSxXQUFXLEtBQUssT0FBTyxDQUFBLEVBQXZCLHdCQUF1Qjs0QkFDMUIsS0FBSztnQ0FDVCxHQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLENBQUMsS0FBZSxJQUFHLE9BQU87bUNBQzFELENBQUM7NEJBQ21CLDZCQUFNLE9BQU8sQ0FBQyxZQUFZLENBQUMsS0FBSyxDQUFDLEdBQUE7OzRCQUFoRCxZQUFZLEdBQUcsU0FBaUM7NEJBQ3RELElBQUksWUFBWSxDQUFDLFFBQVE7Z0NBQUUseUJBQVM7eURBQzlCLFlBQVk7Z0NBQWxCLGdDQUFrQjs7NEJBQWxCLFNBQWtCLENBQUM7O2dDQUVuQixNQUFNLEtBQUssQ0FBQyxnQ0FBOEIsT0FBTyxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsQ0FBQyxLQUFPLENBQUMsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7U0FHdkY7V0FDRDtBQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFdmVudFN0cmVhbU1hcnNoYWxsZXIgYXMgRXZlbnRNYXJzaGFsbGVyIH0gZnJvbSBcIkBhd3Mtc2RrL2V2ZW50c3RyZWFtLW1hcnNoYWxsZXJcIjtcbmltcG9ydCB7IEVuY29kZXIsIE1lc3NhZ2UgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IHR5cGUgVW5tYXJzaGFsbGVkU3RyZWFtT3B0aW9uczxUPiA9IHtcbiAgZXZlbnRNYXJzaGFsbGVyOiBFdmVudE1hcnNoYWxsZXI7XG4gIGRlc2VyaWFsaXplcjogKGlucHV0OiB7IFtuYW1lOiBzdHJpbmddOiBNZXNzYWdlIH0pID0+IFByb21pc2U8VD47XG4gIHRvVXRmODogRW5jb2Rlcjtcbn07XG5cbmV4cG9ydCBmdW5jdGlvbiBnZXRVbm1hcnNoYWxsZWRTdHJlYW08VCBleHRlbmRzIHsgW2tleTogc3RyaW5nXTogYW55IH0+KFxuICBzb3VyY2U6IEFzeW5jSXRlcmFibGU8VWludDhBcnJheT4sXG4gIG9wdGlvbnM6IFVubWFyc2hhbGxlZFN0cmVhbU9wdGlvbnM8VD5cbik6IEFzeW5jSXRlcmFibGU8VD4ge1xuICByZXR1cm4ge1xuICAgIFtTeW1ib2wuYXN5bmNJdGVyYXRvcl06IGFzeW5jIGZ1bmN0aW9uKiAoKSB7XG4gICAgICBmb3IgYXdhaXQgKGNvbnN0IGNodW5rIG9mIHNvdXJjZSkge1xuICAgICAgICBjb25zdCBtZXNzYWdlID0gb3B0aW9ucy5ldmVudE1hcnNoYWxsZXIudW5tYXJzaGFsbChjaHVuayk7XG4gICAgICAgIGNvbnN0IHsgdmFsdWU6IG1lc3NhZ2VUeXBlIH0gPSBtZXNzYWdlLmhlYWRlcnNbXCI6bWVzc2FnZS10eXBlXCJdO1xuICAgICAgICBpZiAobWVzc2FnZVR5cGUgPT09IFwiZXJyb3JcIikge1xuICAgICAgICAgIC8vIFVubW9kZWxlZCBleGNlcHRpb24gaW4gZXZlbnRcbiAgICAgICAgICBjb25zdCB1bm1vZGVsZWRFcnJvciA9IG5ldyBFcnJvcigobWVzc2FnZS5oZWFkZXJzW1wiOmVycm9yLW1lc3NhZ2VcIl0udmFsdWUgYXMgc3RyaW5nKSB8fCBcIlVua25vd25FcnJvclwiKTtcbiAgICAgICAgICB1bm1vZGVsZWRFcnJvci5uYW1lID0gbWVzc2FnZS5oZWFkZXJzW1wiOmVycm9yLWNvZGVcIl0udmFsdWUgYXMgc3RyaW5nO1xuICAgICAgICAgIHRocm93IHVubW9kZWxlZEVycm9yO1xuICAgICAgICB9IGVsc2UgaWYgKG1lc3NhZ2VUeXBlID09PSBcImV4Y2VwdGlvblwiKSB7XG4gICAgICAgICAgLy8gRm9yIG1vZGVsZWQgZXhjZXB0aW9uLCBwdXNoIGl0IHRvIGRlc2VyaWFsaXplciBhbmQgdGhyb3cgYWZ0ZXIgZGVzZXJpYWxpemluZ1xuICAgICAgICAgIGNvbnN0IGNvZGUgPSBtZXNzYWdlLmhlYWRlcnNbXCI6ZXhjZXB0aW9uLXR5cGVcIl0udmFsdWUgYXMgc3RyaW5nO1xuICAgICAgICAgIGNvbnN0IGV4Y2VwdGlvbiA9IHsgW2NvZGVdOiBtZXNzYWdlIH07XG4gICAgICAgICAgLy8gR2V0IHBhcnNlZCBleGNlcHRpb24gZXZlbnQgaW4ga2V5KGVycm9yIGNvZGUpIHZhbHVlKHN0cnVjdHVyZWQgZXJyb3IpIHBhaXIuXG4gICAgICAgICAgY29uc3QgZGVzZXJpYWxpemVkRXhjZXB0aW9uID0gYXdhaXQgb3B0aW9ucy5kZXNlcmlhbGl6ZXIoZXhjZXB0aW9uKTtcbiAgICAgICAgICBpZiAoZGVzZXJpYWxpemVkRXhjZXB0aW9uLiR1bmtub3duKSB7XG4gICAgICAgICAgICAvL3RoaXMgaXMgYW4gdW5tb2RlbGVkIGV4Y2VwdGlvbiB0aGVuIHRyeSBwYXJzaW5nIGl0IHdpdGggYmVzdCBlZmZvcnRcbiAgICAgICAgICAgIGNvbnN0IGVycm9yID0gbmV3IEVycm9yKG9wdGlvbnMudG9VdGY4KG1lc3NhZ2UuYm9keSkpO1xuICAgICAgICAgICAgZXJyb3IubmFtZSA9IGNvZGU7XG4gICAgICAgICAgICB0aHJvdyBlcnJvcjtcbiAgICAgICAgICB9XG4gICAgICAgICAgdGhyb3cgZGVzZXJpYWxpemVkRXhjZXB0aW9uW2NvZGVdO1xuICAgICAgICB9IGVsc2UgaWYgKG1lc3NhZ2VUeXBlID09PSBcImV2ZW50XCIpIHtcbiAgICAgICAgICBjb25zdCBldmVudCA9IHtcbiAgICAgICAgICAgIFttZXNzYWdlLmhlYWRlcnNbXCI6ZXZlbnQtdHlwZVwiXS52YWx1ZSBhcyBzdHJpbmddOiBtZXNzYWdlLFxuICAgICAgICAgIH07XG4gICAgICAgICAgY29uc3QgZGVzZXJpYWxpemVkID0gYXdhaXQgb3B0aW9ucy5kZXNlcmlhbGl6ZXIoZXZlbnQpO1xuICAgICAgICAgIGlmIChkZXNlcmlhbGl6ZWQuJHVua25vd24pIGNvbnRpbnVlO1xuICAgICAgICAgIHlpZWxkIGRlc2VyaWFsaXplZDtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICB0aHJvdyBFcnJvcihgVW5yZWNvZ25pemFibGUgZXZlbnQgdHlwZTogJHttZXNzYWdlLmhlYWRlcnNbXCI6ZXZlbnQtdHlwZVwiXS52YWx1ZX1gKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH0sXG4gIH07XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/getUnmarshalledStream.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/index.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/index.js ***! \****************************************************************************/ /*! exports provided: eventStreamSerdeProvider, EventStreamMarshaller */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./provider */ \"./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/provider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eventStreamSerdeProvider\", function() { return _provider__WEBPACK_IMPORTED_MODULE_0__[\"eventStreamSerdeProvider\"]; });\n\n/* harmony import */ var _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./EventStreamMarshaller */ \"./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/EventStreamMarshaller.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventStreamMarshaller\", function() { return _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_1__[\"EventStreamMarshaller\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL3Byb3ZpZGVyXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9FdmVudFN0cmVhbU1hcnNoYWxsZXJcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/provider.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/provider.js ***! \*******************************************************************************/ /*! exports provided: eventStreamSerdeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"eventStreamSerdeProvider\", function() { return eventStreamSerdeProvider; });\n/* harmony import */ var _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventStreamMarshaller */ \"./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/EventStreamMarshaller.js\");\n\n/** NodeJS event stream utils provider */\nvar eventStreamSerdeProvider = function (options) { return new _EventStreamMarshaller__WEBPACK_IMPORTED_MODULE_0__[\"EventStreamMarshaller\"](options); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvcHJvdmlkZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFFaEUseUNBQXlDO0FBQ3pDLE1BQU0sQ0FBQyxJQUFNLHdCQUF3QixHQUE2QixVQUFDLE9BSWxFLElBQUssT0FBQSxJQUFJLHFCQUFxQixDQUFDLE9BQU8sQ0FBQyxFQUFsQyxDQUFrQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGVjb2RlciwgRW5jb2RlciwgRXZlbnRTaWduZXIsIEV2ZW50U3RyZWFtU2VyZGVQcm92aWRlciwgUHJvdmlkZXIgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgRXZlbnRTdHJlYW1NYXJzaGFsbGVyIH0gZnJvbSBcIi4vRXZlbnRTdHJlYW1NYXJzaGFsbGVyXCI7XG5cbi8qKiBOb2RlSlMgZXZlbnQgc3RyZWFtIHV0aWxzIHByb3ZpZGVyICovXG5leHBvcnQgY29uc3QgZXZlbnRTdHJlYW1TZXJkZVByb3ZpZGVyOiBFdmVudFN0cmVhbVNlcmRlUHJvdmlkZXIgPSAob3B0aW9uczoge1xuICB1dGY4RW5jb2RlcjogRW5jb2RlcjtcbiAgdXRmOERlY29kZXI6IERlY29kZXI7XG4gIGV2ZW50U2lnbmVyOiBFdmVudFNpZ25lciB8IFByb3ZpZGVyPEV2ZW50U2lnbmVyPjtcbn0pID0+IG5ldyBFdmVudFN0cmVhbU1hcnNoYWxsZXIob3B0aW9ucyk7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/eventstream-serde-universal/dist/es/provider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/fetch-http-handler/dist/es/fetch-http-handler.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/fetch-http-handler/dist/es/fetch-http-handler.js ***! \********************************************************************************/ /*! exports provided: FetchHttpHandler */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FetchHttpHandler\", function() { return FetchHttpHandler; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/querystring-builder */ \"./node_modules/@aws-sdk/querystring-builder/dist/es/index.js\");\n/* harmony import */ var _request_timeout__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./request-timeout */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/request-timeout.js\");\n\n\n\n\nvar FetchHttpHandler = /** @class */ (function () {\n function FetchHttpHandler(_a) {\n var _b = _a === void 0 ? {} : _a, requestTimeout = _b.requestTimeout;\n this.requestTimeout = requestTimeout;\n }\n FetchHttpHandler.prototype.destroy = function () {\n // Do nothing. TLS and HTTP/2 connection pooling is handled by the browser.\n };\n FetchHttpHandler.prototype.handle = function (request, _a) {\n var _b = _a === void 0 ? {} : _a, abortSignal = _b.abortSignal;\n var requestTimeoutInMs = this.requestTimeout;\n // if the request was already aborted, prevent doing extra work\n if (abortSignal === null || abortSignal === void 0 ? void 0 : abortSignal.aborted) {\n var abortError = new Error(\"Request aborted\");\n abortError.name = \"AbortError\";\n return Promise.reject(abortError);\n }\n var path = request.path;\n if (request.query) {\n var queryString = Object(_aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_2__[\"buildQueryString\"])(request.query);\n if (queryString) {\n path += \"?\" + queryString;\n }\n }\n var port = request.port, method = request.method;\n var url = request.protocol + \"//\" + request.hostname + (port ? \":\" + port : \"\") + path;\n // Request constructor doesn't allow GET/HEAD request with body\n // ref: https://github.com/whatwg/fetch/issues/551\n var body = method === \"GET\" || method === \"HEAD\" ? undefined : request.body;\n var requestOptions = {\n body: body,\n headers: new Headers(request.headers),\n method: method,\n };\n // some browsers support abort signal\n if (typeof AbortController !== \"undefined\") {\n requestOptions[\"signal\"] = abortSignal;\n }\n var fetchRequest = new Request(url, requestOptions);\n var raceOfPromises = [\n fetch(fetchRequest).then(function (response) {\n var e_1, _a;\n var fetchHeaders = response.headers;\n var transformedHeaders = {};\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(fetchHeaders.entries()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var pair = _c.value;\n transformedHeaders[pair[0]] = pair[1];\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n var hasReadableStream = response.body !== undefined;\n // Return the response with buffered body\n if (!hasReadableStream) {\n return response.blob().then(function (body) { return ({\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"]({\n headers: transformedHeaders,\n statusCode: response.status,\n body: body,\n }),\n }); });\n }\n // Return the response with streaming body\n return {\n response: new _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"]({\n headers: transformedHeaders,\n statusCode: response.status,\n body: response.body,\n }),\n };\n }),\n Object(_request_timeout__WEBPACK_IMPORTED_MODULE_3__[\"requestTimeout\"])(requestTimeoutInMs),\n ];\n if (abortSignal) {\n raceOfPromises.push(new Promise(function (resolve, reject) {\n abortSignal.onabort = function () {\n var abortError = new Error(\"Request aborted\");\n abortError.name = \"AbortError\";\n reject(abortError);\n };\n }));\n }\n return Promise.race(raceOfPromises);\n };\n return FetchHttpHandler;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmV0Y2gtaHR0cC1oYW5kbGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2ZldGNoLWh0dHAtaGFuZGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUE0QixZQUFZLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNoRixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUdoRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFlbkQ7SUFHRSwwQkFBWSxFQUFnRDtZQUFoRCxxQkFBOEMsRUFBRSxLQUFBLEVBQTlDLGNBQWMsb0JBQUE7UUFDMUIsSUFBSSxDQUFDLGNBQWMsR0FBRyxjQUFjLENBQUM7SUFDdkMsQ0FBQztJQUVELGtDQUFPLEdBQVA7UUFDRSwyRUFBMkU7SUFDN0UsQ0FBQztJQUVELGlDQUFNLEdBQU4sVUFBTyxPQUFvQixFQUFFLEVBQXdDO1lBQXhDLHFCQUFzQyxFQUFFLEtBQUEsRUFBdEMsV0FBVyxpQkFBQTtRQUN4QyxJQUFNLGtCQUFrQixHQUFHLElBQUksQ0FBQyxjQUFjLENBQUM7UUFFL0MsK0RBQStEO1FBQy9ELElBQUksV0FBVyxhQUFYLFdBQVcsdUJBQVgsV0FBVyxDQUFFLE9BQU8sRUFBRTtZQUN4QixJQUFNLFVBQVUsR0FBRyxJQUFJLEtBQUssQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO1lBQ2hELFVBQVUsQ0FBQyxJQUFJLEdBQUcsWUFBWSxDQUFDO1lBQy9CLE9BQU8sT0FBTyxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQztTQUNuQztRQUVELElBQUksSUFBSSxHQUFHLE9BQU8sQ0FBQyxJQUFJLENBQUM7UUFDeEIsSUFBSSxPQUFPLENBQUMsS0FBSyxFQUFFO1lBQ2pCLElBQU0sV0FBVyxHQUFHLGdCQUFnQixDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUNwRCxJQUFJLFdBQVcsRUFBRTtnQkFDZixJQUFJLElBQUksTUFBSSxXQUFhLENBQUM7YUFDM0I7U0FDRjtRQUVPLElBQUEsSUFBSSxHQUFhLE9BQU8sS0FBcEIsRUFBRSxNQUFNLEdBQUssT0FBTyxPQUFaLENBQWE7UUFDakMsSUFBTSxHQUFHLEdBQU0sT0FBTyxDQUFDLFFBQVEsVUFBSyxPQUFPLENBQUMsUUFBUSxJQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsTUFBSSxJQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsSUFBRyxJQUFNLENBQUM7UUFDdkYsK0RBQStEO1FBQy9ELGtEQUFrRDtRQUNsRCxJQUFNLElBQUksR0FBRyxNQUFNLEtBQUssS0FBSyxJQUFJLE1BQU0sS0FBSyxNQUFNLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQztRQUM5RSxJQUFNLGNBQWMsR0FBZ0I7WUFDbEMsSUFBSSxNQUFBO1lBQ0osT0FBTyxFQUFFLElBQUksT0FBTyxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUM7WUFDckMsTUFBTSxFQUFFLE1BQU07U0FDZixDQUFDO1FBRUYscUNBQXFDO1FBQ3JDLElBQUksT0FBTyxlQUFlLEtBQUssV0FBVyxFQUFFO1lBQ3pDLGNBQXNCLENBQUMsUUFBUSxDQUFDLEdBQUcsV0FBVyxDQUFDO1NBQ2pEO1FBRUQsSUFBTSxZQUFZLEdBQUcsSUFBSSxPQUFPLENBQUMsR0FBRyxFQUFFLGNBQWMsQ0FBQyxDQUFDO1FBQ3RELElBQU0sY0FBYyxHQUFHO1lBQ3JCLEtBQUssQ0FBQyxZQUFZLENBQUMsQ0FBQyxJQUFJLENBQUMsVUFBQyxRQUFROztnQkFDaEMsSUFBTSxZQUFZLEdBQVEsUUFBUSxDQUFDLE9BQU8sQ0FBQztnQkFDM0MsSUFBTSxrQkFBa0IsR0FBYyxFQUFFLENBQUM7O29CQUV6QyxLQUFtQixJQUFBLEtBQUEsU0FBaUIsWUFBWSxDQUFDLE9BQU8sRUFBRSxDQUFBLGdCQUFBLDRCQUFFO3dCQUF2RCxJQUFNLElBQUksV0FBQTt3QkFDYixrQkFBa0IsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7cUJBQ3ZDOzs7Ozs7Ozs7Z0JBRUQsSUFBTSxpQkFBaUIsR0FBRyxRQUFRLENBQUMsSUFBSSxLQUFLLFNBQVMsQ0FBQztnQkFFdEQseUNBQXlDO2dCQUN6QyxJQUFJLENBQUMsaUJBQWlCLEVBQUU7b0JBQ3RCLE9BQU8sUUFBUSxDQUFDLElBQUksRUFBRSxDQUFDLElBQUksQ0FBQyxVQUFDLElBQUksSUFBSyxPQUFBLENBQUM7d0JBQ3JDLFFBQVEsRUFBRSxJQUFJLFlBQVksQ0FBQzs0QkFDekIsT0FBTyxFQUFFLGtCQUFrQjs0QkFDM0IsVUFBVSxFQUFFLFFBQVEsQ0FBQyxNQUFNOzRCQUMzQixJQUFJLE1BQUE7eUJBQ0wsQ0FBQztxQkFDSCxDQUFDLEVBTm9DLENBTXBDLENBQUMsQ0FBQztpQkFDTDtnQkFDRCwwQ0FBMEM7Z0JBQzFDLE9BQU87b0JBQ0wsUUFBUSxFQUFFLElBQUksWUFBWSxDQUFDO3dCQUN6QixPQUFPLEVBQUUsa0JBQWtCO3dCQUMzQixVQUFVLEVBQUUsUUFBUSxDQUFDLE1BQU07d0JBQzNCLElBQUksRUFBRSxRQUFRLENBQUMsSUFBSTtxQkFDcEIsQ0FBQztpQkFDSCxDQUFDO1lBQ0osQ0FBQyxDQUFDO1lBQ0YsY0FBYyxDQUFDLGtCQUFrQixDQUFDO1NBQ25DLENBQUM7UUFDRixJQUFJLFdBQVcsRUFBRTtZQUNmLGNBQWMsQ0FBQyxJQUFJLENBQ2pCLElBQUksT0FBTyxDQUFRLFVBQUMsT0FBTyxFQUFFLE1BQU07Z0JBQ2pDLFdBQVcsQ0FBQyxPQUFPLEdBQUc7b0JBQ3BCLElBQU0sVUFBVSxHQUFHLElBQUksS0FBSyxDQUFDLGlCQUFpQixDQUFDLENBQUM7b0JBQ2hELFVBQVUsQ0FBQyxJQUFJLEdBQUcsWUFBWSxDQUFDO29CQUMvQixNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7Z0JBQ3JCLENBQUMsQ0FBQztZQUNKLENBQUMsQ0FBQyxDQUNILENBQUM7U0FDSDtRQUNELE9BQU8sT0FBTyxDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQztJQUN0QyxDQUFDO0lBQ0gsdUJBQUM7QUFBRCxDQUFDLEFBM0ZELElBMkZDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSHR0cEhhbmRsZXIsIEh0dHBSZXF1ZXN0LCBIdHRwUmVzcG9uc2UgfSBmcm9tIFwiQGF3cy1zZGsvcHJvdG9jb2wtaHR0cFwiO1xuaW1wb3J0IHsgYnVpbGRRdWVyeVN0cmluZyB9IGZyb20gXCJAYXdzLXNkay9xdWVyeXN0cmluZy1idWlsZGVyXCI7XG5pbXBvcnQgeyBIZWFkZXJCYWcsIEh0dHBIYW5kbGVyT3B0aW9ucyB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyByZXF1ZXN0VGltZW91dCB9IGZyb20gXCIuL3JlcXVlc3QtdGltZW91dFwiO1xuXG5kZWNsYXJlIGxldCBBYm9ydENvbnRyb2xsZXI6IGFueTtcblxuLyoqXG4gKiBSZXByZXNlbnRzIHRoZSBodHRwIG9wdGlvbnMgdGhhdCBjYW4gYmUgcGFzc2VkIHRvIGEgYnJvd3NlciBodHRwIGNsaWVudC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBGZXRjaEh0dHBIYW5kbGVyT3B0aW9ucyB7XG4gIC8qKlxuICAgKiBUaGUgbnVtYmVyIG9mIG1pbGxpc2Vjb25kcyBhIHJlcXVlc3QgY2FuIHRha2UgYmVmb3JlIGJlaW5nIGF1dG9tYXRpY2FsbHlcbiAgICogdGVybWluYXRlZC5cbiAgICovXG4gIHJlcXVlc3RUaW1lb3V0PzogbnVtYmVyO1xufVxuXG5leHBvcnQgY2xhc3MgRmV0Y2hIdHRwSGFuZGxlciBpbXBsZW1lbnRzIEh0dHBIYW5kbGVyIHtcbiAgcHJpdmF0ZSByZWFkb25seSByZXF1ZXN0VGltZW91dD86IG51bWJlcjtcblxuICBjb25zdHJ1Y3Rvcih7IHJlcXVlc3RUaW1lb3V0IH06IEZldGNoSHR0cEhhbmRsZXJPcHRpb25zID0ge30pIHtcbiAgICB0aGlzLnJlcXVlc3RUaW1lb3V0ID0gcmVxdWVzdFRpbWVvdXQ7XG4gIH1cblxuICBkZXN0cm95KCk6IHZvaWQge1xuICAgIC8vIERvIG5vdGhpbmcuIFRMUyBhbmQgSFRUUC8yIGNvbm5lY3Rpb24gcG9vbGluZyBpcyBoYW5kbGVkIGJ5IHRoZSBicm93c2VyLlxuICB9XG5cbiAgaGFuZGxlKHJlcXVlc3Q6IEh0dHBSZXF1ZXN0LCB7IGFib3J0U2lnbmFsIH06IEh0dHBIYW5kbGVyT3B0aW9ucyA9IHt9KTogUHJvbWlzZTx7IHJlc3BvbnNlOiBIdHRwUmVzcG9uc2UgfT4ge1xuICAgIGNvbnN0IHJlcXVlc3RUaW1lb3V0SW5NcyA9IHRoaXMucmVxdWVzdFRpbWVvdXQ7XG5cbiAgICAvLyBpZiB0aGUgcmVxdWVzdCB3YXMgYWxyZWFkeSBhYm9ydGVkLCBwcmV2ZW50IGRvaW5nIGV4dHJhIHdvcmtcbiAgICBpZiAoYWJvcnRTaWduYWw/LmFib3J0ZWQpIHtcbiAgICAgIGNvbnN0IGFib3J0RXJyb3IgPSBuZXcgRXJyb3IoXCJSZXF1ZXN0IGFib3J0ZWRcIik7XG4gICAgICBhYm9ydEVycm9yLm5hbWUgPSBcIkFib3J0RXJyb3JcIjtcbiAgICAgIHJldHVybiBQcm9taXNlLnJlamVjdChhYm9ydEVycm9yKTtcbiAgICB9XG5cbiAgICBsZXQgcGF0aCA9IHJlcXVlc3QucGF0aDtcbiAgICBpZiAocmVxdWVzdC5xdWVyeSkge1xuICAgICAgY29uc3QgcXVlcnlTdHJpbmcgPSBidWlsZFF1ZXJ5U3RyaW5nKHJlcXVlc3QucXVlcnkpO1xuICAgICAgaWYgKHF1ZXJ5U3RyaW5nKSB7XG4gICAgICAgIHBhdGggKz0gYD8ke3F1ZXJ5U3RyaW5nfWA7XG4gICAgICB9XG4gICAgfVxuXG4gICAgY29uc3QgeyBwb3J0LCBtZXRob2QgfSA9IHJlcXVlc3Q7XG4gICAgY29uc3QgdXJsID0gYCR7cmVxdWVzdC5wcm90b2NvbH0vLyR7cmVxdWVzdC5ob3N0bmFtZX0ke3BvcnQgPyBgOiR7cG9ydH1gIDogXCJcIn0ke3BhdGh9YDtcbiAgICAvLyBSZXF1ZXN0IGNvbnN0cnVjdG9yIGRvZXNuJ3QgYWxsb3cgR0VUL0hFQUQgcmVxdWVzdCB3aXRoIGJvZHlcbiAgICAvLyByZWY6IGh0dHBzOi8vZ2l0aHViLmNvbS93aGF0d2cvZmV0Y2gvaXNzdWVzLzU1MVxuICAgIGNvbnN0IGJvZHkgPSBtZXRob2QgPT09IFwiR0VUXCIgfHwgbWV0aG9kID09PSBcIkhFQURcIiA/IHVuZGVmaW5lZCA6IHJlcXVlc3QuYm9keTtcbiAgICBjb25zdCByZXF1ZXN0T3B0aW9uczogUmVxdWVzdEluaXQgPSB7XG4gICAgICBib2R5LFxuICAgICAgaGVhZGVyczogbmV3IEhlYWRlcnMocmVxdWVzdC5oZWFkZXJzKSxcbiAgICAgIG1ldGhvZDogbWV0aG9kLFxuICAgIH07XG5cbiAgICAvLyBzb21lIGJyb3dzZXJzIHN1cHBvcnQgYWJvcnQgc2lnbmFsXG4gICAgaWYgKHR5cGVvZiBBYm9ydENvbnRyb2xsZXIgIT09IFwidW5kZWZpbmVkXCIpIHtcbiAgICAgIChyZXF1ZXN0T3B0aW9ucyBhcyBhbnkpW1wic2lnbmFsXCJdID0gYWJvcnRTaWduYWw7XG4gICAgfVxuXG4gICAgY29uc3QgZmV0Y2hSZXF1ZXN0ID0gbmV3IFJlcXVlc3QodXJsLCByZXF1ZXN0T3B0aW9ucyk7XG4gICAgY29uc3QgcmFjZU9mUHJvbWlzZXMgPSBbXG4gICAgICBmZXRjaChmZXRjaFJlcXVlc3QpLnRoZW4oKHJlc3BvbnNlKSA9PiB7XG4gICAgICAgIGNvbnN0IGZldGNoSGVhZGVyczogYW55ID0gcmVzcG9uc2UuaGVhZGVycztcbiAgICAgICAgY29uc3QgdHJhbnNmb3JtZWRIZWFkZXJzOiBIZWFkZXJCYWcgPSB7fTtcblxuICAgICAgICBmb3IgKGNvbnN0IHBhaXIgb2YgPEFycmF5PHN0cmluZ1tdPj5mZXRjaEhlYWRlcnMuZW50cmllcygpKSB7XG4gICAgICAgICAgdHJhbnNmb3JtZWRIZWFkZXJzW3BhaXJbMF1dID0gcGFpclsxXTtcbiAgICAgICAgfVxuXG4gICAgICAgIGNvbnN0IGhhc1JlYWRhYmxlU3RyZWFtID0gcmVzcG9uc2UuYm9keSAhPT0gdW5kZWZpbmVkO1xuXG4gICAgICAgIC8vIFJldHVybiB0aGUgcmVzcG9uc2Ugd2l0aCBidWZmZXJlZCBib2R5XG4gICAgICAgIGlmICghaGFzUmVhZGFibGVTdHJlYW0pIHtcbiAgICAgICAgICByZXR1cm4gcmVzcG9uc2UuYmxvYigpLnRoZW4oKGJvZHkpID0+ICh7XG4gICAgICAgICAgICByZXNwb25zZTogbmV3IEh0dHBSZXNwb25zZSh7XG4gICAgICAgICAgICAgIGhlYWRlcnM6IHRyYW5zZm9ybWVkSGVhZGVycyxcbiAgICAgICAgICAgICAgc3RhdHVzQ29kZTogcmVzcG9uc2Uuc3RhdHVzLFxuICAgICAgICAgICAgICBib2R5LFxuICAgICAgICAgICAgfSksXG4gICAgICAgICAgfSkpO1xuICAgICAgICB9XG4gICAgICAgIC8vIFJldHVybiB0aGUgcmVzcG9uc2Ugd2l0aCBzdHJlYW1pbmcgYm9keVxuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgIHJlc3BvbnNlOiBuZXcgSHR0cFJlc3BvbnNlKHtcbiAgICAgICAgICAgIGhlYWRlcnM6IHRyYW5zZm9ybWVkSGVhZGVycyxcbiAgICAgICAgICAgIHN0YXR1c0NvZGU6IHJlc3BvbnNlLnN0YXR1cyxcbiAgICAgICAgICAgIGJvZHk6IHJlc3BvbnNlLmJvZHksXG4gICAgICAgICAgfSksXG4gICAgICAgIH07XG4gICAgICB9KSxcbiAgICAgIHJlcXVlc3RUaW1lb3V0KHJlcXVlc3RUaW1lb3V0SW5NcyksXG4gICAgXTtcbiAgICBpZiAoYWJvcnRTaWduYWwpIHtcbiAgICAgIHJhY2VPZlByb21pc2VzLnB1c2goXG4gICAgICAgIG5ldyBQcm9taXNlPG5ldmVyPigocmVzb2x2ZSwgcmVqZWN0KSA9PiB7XG4gICAgICAgICAgYWJvcnRTaWduYWwub25hYm9ydCA9ICgpID0+IHtcbiAgICAgICAgICAgIGNvbnN0IGFib3J0RXJyb3IgPSBuZXcgRXJyb3IoXCJSZXF1ZXN0IGFib3J0ZWRcIik7XG4gICAgICAgICAgICBhYm9ydEVycm9yLm5hbWUgPSBcIkFib3J0RXJyb3JcIjtcbiAgICAgICAgICAgIHJlamVjdChhYm9ydEVycm9yKTtcbiAgICAgICAgICB9O1xuICAgICAgICB9KVxuICAgICAgKTtcbiAgICB9XG4gICAgcmV0dXJuIFByb21pc2UucmFjZShyYWNlT2ZQcm9taXNlcyk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/fetch-http-handler/dist/es/fetch-http-handler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js ***! \*******************************************************************/ /*! exports provided: FetchHttpHandler, streamCollector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _fetch_http_handler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./fetch-http-handler */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/fetch-http-handler.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FetchHttpHandler\", function() { return _fetch_http_handler__WEBPACK_IMPORTED_MODULE_0__[\"FetchHttpHandler\"]; });\n\n/* harmony import */ var _stream_collector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stream-collector */ \"./node_modules/@aws-sdk/fetch-http-handler/dist/es/stream-collector.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"streamCollector\", function() { return _stream_collector__WEBPACK_IMPORTED_MODULE_1__[\"streamCollector\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLG9CQUFvQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vZmV0Y2gtaHR0cC1oYW5kbGVyXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9zdHJlYW0tY29sbGVjdG9yXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/fetch-http-handler/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/fetch-http-handler/dist/es/request-timeout.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/fetch-http-handler/dist/es/request-timeout.js ***! \*****************************************************************************/ /*! exports provided: requestTimeout */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"requestTimeout\", function() { return requestTimeout; });\nfunction requestTimeout(timeoutInMs) {\n if (timeoutInMs === void 0) { timeoutInMs = 0; }\n return new Promise(function (resolve, reject) {\n if (timeoutInMs) {\n setTimeout(function () {\n var timeoutError = new Error(\"Request did not complete within \" + timeoutInMs + \" ms\");\n timeoutError.name = \"TimeoutError\";\n reject(timeoutError);\n }, timeoutInMs);\n }\n });\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVxdWVzdC10aW1lb3V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3JlcXVlc3QtdGltZW91dC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFVBQVUsY0FBYyxDQUFDLFdBQWU7SUFBZiw0QkFBQSxFQUFBLGVBQWU7SUFDNUMsT0FBTyxJQUFJLE9BQU8sQ0FBQyxVQUFDLE9BQU8sRUFBRSxNQUFNO1FBQ2pDLElBQUksV0FBVyxFQUFFO1lBQ2YsVUFBVSxDQUFDO2dCQUNULElBQU0sWUFBWSxHQUFHLElBQUksS0FBSyxDQUFDLHFDQUFtQyxXQUFXLFFBQUssQ0FBQyxDQUFDO2dCQUNwRixZQUFZLENBQUMsSUFBSSxHQUFHLGNBQWMsQ0FBQztnQkFDbkMsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDO1lBQ3ZCLENBQUMsRUFBRSxXQUFXLENBQUMsQ0FBQztTQUNqQjtJQUNILENBQUMsQ0FBQyxDQUFDO0FBQ0wsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBmdW5jdGlvbiByZXF1ZXN0VGltZW91dCh0aW1lb3V0SW5NcyA9IDApOiBQcm9taXNlPG5ldmVyPiB7XG4gIHJldHVybiBuZXcgUHJvbWlzZSgocmVzb2x2ZSwgcmVqZWN0KSA9PiB7XG4gICAgaWYgKHRpbWVvdXRJbk1zKSB7XG4gICAgICBzZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgICAgY29uc3QgdGltZW91dEVycm9yID0gbmV3IEVycm9yKGBSZXF1ZXN0IGRpZCBub3QgY29tcGxldGUgd2l0aGluICR7dGltZW91dEluTXN9IG1zYCk7XG4gICAgICAgIHRpbWVvdXRFcnJvci5uYW1lID0gXCJUaW1lb3V0RXJyb3JcIjtcbiAgICAgICAgcmVqZWN0KHRpbWVvdXRFcnJvcik7XG4gICAgICB9LCB0aW1lb3V0SW5Ncyk7XG4gICAgfVxuICB9KTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/fetch-http-handler/dist/es/request-timeout.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/fetch-http-handler/dist/es/stream-collector.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/fetch-http-handler/dist/es/stream-collector.js ***! \******************************************************************************/ /*! exports provided: streamCollector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"streamCollector\", function() { return streamCollector; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ \"./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js\");\n\n\n//reference: https://snack.expo.io/r1JCSWRGU\nvar streamCollector = function (stream) {\n if (typeof Blob === \"function\" && stream instanceof Blob) {\n return collectBlob(stream);\n }\n return collectStream(stream);\n};\nfunction collectBlob(blob) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var base64, arrayBuffer;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, readToBase64(blob)];\n case 1:\n base64 = _a.sent();\n arrayBuffer = Object(_aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_1__[\"fromBase64\"])(base64);\n return [2 /*return*/, new Uint8Array(arrayBuffer)];\n }\n });\n });\n}\nfunction collectStream(stream) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var res, reader, isDone, _a, done, value, prior;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n res = new Uint8Array(0);\n reader = stream.getReader();\n isDone = false;\n _b.label = 1;\n case 1:\n if (!!isDone) return [3 /*break*/, 3];\n return [4 /*yield*/, reader.read()];\n case 2:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (value) {\n prior = res;\n res = new Uint8Array(prior.length + value.length);\n res.set(prior);\n res.set(value, prior.length);\n }\n isDone = done;\n return [3 /*break*/, 1];\n case 3: return [2 /*return*/, res];\n }\n });\n });\n}\nfunction readToBase64(blob) {\n return new Promise(function (resolve, reject) {\n var reader = new FileReader();\n reader.onloadend = function () {\n var _a;\n // reference: https://developer.mozilla.org/en-US/docs/Web/API/FileReader/readAsDataURL\n // response from readAsDataURL is always prepended with \"data:*/*;base64,\"\n if (reader.readyState !== 2) {\n return reject(new Error(\"Reader aborted too early\"));\n }\n var result = ((_a = reader.result) !== null && _a !== void 0 ? _a : \"\");\n // Response can include only 'data:' for empty blob, return empty string in this case.\n // Otherwise, return the string after ','\n var commaIndex = result.indexOf(\",\");\n var dataOffset = commaIndex > -1 ? commaIndex + 1 : result.length;\n resolve(result.substring(dataOffset));\n };\n reader.onabort = function () { return reject(new Error(\"Read aborted\")); };\n reader.onerror = function () { return reject(reader.error); };\n // reader.readAsArrayBuffer is not always available\n reader.readAsDataURL(blob);\n });\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RyZWFtLWNvbGxlY3Rvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9zdHJlYW0tY29sbGVjdG9yLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFDQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFFMUQsNENBQTRDO0FBQzVDLE1BQU0sQ0FBQyxJQUFNLGVBQWUsR0FBb0IsVUFBQyxNQUE2QjtJQUM1RSxJQUFJLE9BQU8sSUFBSSxLQUFLLFVBQVUsSUFBSSxNQUFNLFlBQVksSUFBSSxFQUFFO1FBQ3hELE9BQU8sV0FBVyxDQUFDLE1BQU0sQ0FBQyxDQUFDO0tBQzVCO0lBRUQsT0FBTyxhQUFhLENBQUMsTUFBd0IsQ0FBQyxDQUFDO0FBQ2pELENBQUMsQ0FBQztBQUVGLFNBQWUsV0FBVyxDQUFDLElBQVU7Ozs7O3dCQUNwQixxQkFBTSxZQUFZLENBQUMsSUFBSSxDQUFDLEVBQUE7O29CQUFqQyxNQUFNLEdBQUcsU0FBd0I7b0JBQ2pDLFdBQVcsR0FBRyxVQUFVLENBQUMsTUFBTSxDQUFDLENBQUM7b0JBQ3ZDLHNCQUFPLElBQUksVUFBVSxDQUFDLFdBQVcsQ0FBQyxFQUFDOzs7O0NBQ3BDO0FBRUQsU0FBZSxhQUFhLENBQUMsTUFBc0I7Ozs7OztvQkFDN0MsR0FBRyxHQUFHLElBQUksVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDO29CQUN0QixNQUFNLEdBQUcsTUFBTSxDQUFDLFNBQVMsRUFBRSxDQUFDO29CQUM5QixNQUFNLEdBQUcsS0FBSyxDQUFDOzs7eUJBQ1osQ0FBQyxNQUFNO29CQUNZLHFCQUFNLE1BQU0sQ0FBQyxJQUFJLEVBQUUsRUFBQTs7b0JBQXJDLEtBQWtCLFNBQW1CLEVBQW5DLElBQUksVUFBQSxFQUFFLEtBQUssV0FBQTtvQkFDbkIsSUFBSSxLQUFLLEVBQUU7d0JBQ0gsS0FBSyxHQUFHLEdBQUcsQ0FBQzt3QkFDbEIsR0FBRyxHQUFHLElBQUksVUFBVSxDQUFDLEtBQUssQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDO3dCQUNsRCxHQUFHLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO3dCQUNmLEdBQUcsQ0FBQyxHQUFHLENBQUMsS0FBSyxFQUFFLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQztxQkFDOUI7b0JBQ0QsTUFBTSxHQUFHLElBQUksQ0FBQzs7d0JBRWhCLHNCQUFPLEdBQUcsRUFBQzs7OztDQUNaO0FBRUQsU0FBUyxZQUFZLENBQUMsSUFBVTtJQUM5QixPQUFPLElBQUksT0FBTyxDQUFDLFVBQUMsT0FBTyxFQUFFLE1BQU07UUFDakMsSUFBTSxNQUFNLEdBQUcsSUFBSSxVQUFVLEVBQUUsQ0FBQztRQUNoQyxNQUFNLENBQUMsU0FBUyxHQUFHOztZQUNqQix1RkFBdUY7WUFDdkYsMEVBQTBFO1lBQzFFLElBQUksTUFBTSxDQUFDLFVBQVUsS0FBSyxDQUFDLEVBQUU7Z0JBQzNCLE9BQU8sTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLDBCQUEwQixDQUFDLENBQUMsQ0FBQzthQUN0RDtZQUNELElBQU0sTUFBTSxHQUFHLE9BQUMsTUFBTSxDQUFDLE1BQU0sbUNBQUksRUFBRSxDQUFXLENBQUM7WUFDL0Msc0ZBQXNGO1lBQ3RGLHlDQUF5QztZQUN6QyxJQUFNLFVBQVUsR0FBRyxNQUFNLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDO1lBQ3ZDLElBQU0sVUFBVSxHQUFHLFVBQVUsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsVUFBVSxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQztZQUNwRSxPQUFPLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDO1FBQ3hDLENBQUMsQ0FBQztRQUNGLE1BQU0sQ0FBQyxPQUFPLEdBQUcsY0FBTSxPQUFBLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxjQUFjLENBQUMsQ0FBQyxFQUFqQyxDQUFpQyxDQUFDO1FBQ3pELE1BQU0sQ0FBQyxPQUFPLEdBQUcsY0FBTSxPQUFBLE1BQU0sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLEVBQXBCLENBQW9CLENBQUM7UUFDNUMsbURBQW1EO1FBQ25ELE1BQU0sQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDN0IsQ0FBQyxDQUFDLENBQUM7QUFDTCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU3RyZWFtQ29sbGVjdG9yIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBmcm9tQmFzZTY0IH0gZnJvbSBcIkBhd3Mtc2RrL3V0aWwtYmFzZTY0LWJyb3dzZXJcIjtcblxuLy9yZWZlcmVuY2U6IGh0dHBzOi8vc25hY2suZXhwby5pby9yMUpDU1dSR1VcbmV4cG9ydCBjb25zdCBzdHJlYW1Db2xsZWN0b3I6IFN0cmVhbUNvbGxlY3RvciA9IChzdHJlYW06IEJsb2IgfCBSZWFkYWJsZVN0cmVhbSk6IFByb21pc2U8VWludDhBcnJheT4gPT4ge1xuICBpZiAodHlwZW9mIEJsb2IgPT09IFwiZnVuY3Rpb25cIiAmJiBzdHJlYW0gaW5zdGFuY2VvZiBCbG9iKSB7XG4gICAgcmV0dXJuIGNvbGxlY3RCbG9iKHN0cmVhbSk7XG4gIH1cblxuICByZXR1cm4gY29sbGVjdFN0cmVhbShzdHJlYW0gYXMgUmVhZGFibGVTdHJlYW0pO1xufTtcblxuYXN5bmMgZnVuY3Rpb24gY29sbGVjdEJsb2IoYmxvYjogQmxvYik6IFByb21pc2U8VWludDhBcnJheT4ge1xuICBjb25zdCBiYXNlNjQgPSBhd2FpdCByZWFkVG9CYXNlNjQoYmxvYik7XG4gIGNvbnN0IGFycmF5QnVmZmVyID0gZnJvbUJhc2U2NChiYXNlNjQpO1xuICByZXR1cm4gbmV3IFVpbnQ4QXJyYXkoYXJyYXlCdWZmZXIpO1xufVxuXG5hc3luYyBmdW5jdGlvbiBjb2xsZWN0U3RyZWFtKHN0cmVhbTogUmVhZGFibGVTdHJlYW0pOiBQcm9taXNlPFVpbnQ4QXJyYXk+IHtcbiAgbGV0IHJlcyA9IG5ldyBVaW50OEFycmF5KDApO1xuICBjb25zdCByZWFkZXIgPSBzdHJlYW0uZ2V0UmVhZGVyKCk7XG4gIGxldCBpc0RvbmUgPSBmYWxzZTtcbiAgd2hpbGUgKCFpc0RvbmUpIHtcbiAgICBjb25zdCB7IGRvbmUsIHZhbHVlIH0gPSBhd2FpdCByZWFkZXIucmVhZCgpO1xuICAgIGlmICh2YWx1ZSkge1xuICAgICAgY29uc3QgcHJpb3IgPSByZXM7XG4gICAgICByZXMgPSBuZXcgVWludDhBcnJheShwcmlvci5sZW5ndGggKyB2YWx1ZS5sZW5ndGgpO1xuICAgICAgcmVzLnNldChwcmlvcik7XG4gICAgICByZXMuc2V0KHZhbHVlLCBwcmlvci5sZW5ndGgpO1xuICAgIH1cbiAgICBpc0RvbmUgPSBkb25lO1xuICB9XG4gIHJldHVybiByZXM7XG59XG5cbmZ1bmN0aW9uIHJlYWRUb0Jhc2U2NChibG9iOiBCbG9iKTogUHJvbWlzZTxzdHJpbmc+IHtcbiAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlLCByZWplY3QpID0+IHtcbiAgICBjb25zdCByZWFkZXIgPSBuZXcgRmlsZVJlYWRlcigpO1xuICAgIHJlYWRlci5vbmxvYWRlbmQgPSAoKSA9PiB7XG4gICAgICAvLyByZWZlcmVuY2U6IGh0dHBzOi8vZGV2ZWxvcGVyLm1vemlsbGEub3JnL2VuLVVTL2RvY3MvV2ViL0FQSS9GaWxlUmVhZGVyL3JlYWRBc0RhdGFVUkxcbiAgICAgIC8vIHJlc3BvbnNlIGZyb20gcmVhZEFzRGF0YVVSTCBpcyBhbHdheXMgcHJlcGVuZGVkIHdpdGggXCJkYXRhOiovKjtiYXNlNjQsXCJcbiAgICAgIGlmIChyZWFkZXIucmVhZHlTdGF0ZSAhPT0gMikge1xuICAgICAgICByZXR1cm4gcmVqZWN0KG5ldyBFcnJvcihcIlJlYWRlciBhYm9ydGVkIHRvbyBlYXJseVwiKSk7XG4gICAgICB9XG4gICAgICBjb25zdCByZXN1bHQgPSAocmVhZGVyLnJlc3VsdCA/PyBcIlwiKSBhcyBzdHJpbmc7XG4gICAgICAvLyBSZXNwb25zZSBjYW4gaW5jbHVkZSBvbmx5ICdkYXRhOicgZm9yIGVtcHR5IGJsb2IsIHJldHVybiBlbXB0eSBzdHJpbmcgaW4gdGhpcyBjYXNlLlxuICAgICAgLy8gT3RoZXJ3aXNlLCByZXR1cm4gdGhlIHN0cmluZyBhZnRlciAnLCdcbiAgICAgIGNvbnN0IGNvbW1hSW5kZXggPSByZXN1bHQuaW5kZXhPZihcIixcIik7XG4gICAgICBjb25zdCBkYXRhT2Zmc2V0ID0gY29tbWFJbmRleCA+IC0xID8gY29tbWFJbmRleCArIDEgOiByZXN1bHQubGVuZ3RoO1xuICAgICAgcmVzb2x2ZShyZXN1bHQuc3Vic3RyaW5nKGRhdGFPZmZzZXQpKTtcbiAgICB9O1xuICAgIHJlYWRlci5vbmFib3J0ID0gKCkgPT4gcmVqZWN0KG5ldyBFcnJvcihcIlJlYWQgYWJvcnRlZFwiKSk7XG4gICAgcmVhZGVyLm9uZXJyb3IgPSAoKSA9PiByZWplY3QocmVhZGVyLmVycm9yKTtcbiAgICAvLyByZWFkZXIucmVhZEFzQXJyYXlCdWZmZXIgaXMgbm90IGFsd2F5cyBhdmFpbGFibGVcbiAgICByZWFkZXIucmVhZEFzRGF0YVVSTChibG9iKTtcbiAgfSk7XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/fetch-http-handler/dist/es/stream-collector.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/hash-blob-browser/dist/es/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/hash-blob-browser/dist/es/index.js ***! \******************************************************************/ /*! exports provided: blobHasher */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"blobHasher\", function() { return blobHasher; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_chunked_blob_reader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/chunked-blob-reader */ \"./node_modules/@aws-sdk/chunked-blob-reader/dist/es/index.js\");\n\n\nvar blobHasher = function blobHasher(hashCtor, blob) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var hash;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n hash = new hashCtor();\n return [4 /*yield*/, Object(_aws_sdk_chunked_blob_reader__WEBPACK_IMPORTED_MODULE_1__[\"blobReader\"])(blob, function (chunk) {\n hash.update(chunk);\n })];\n case 1:\n _a.sent();\n return [2 /*return*/, hash.digest()];\n }\n });\n });\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUcxRCxNQUFNLENBQUMsSUFBTSxVQUFVLEdBQXVCLFNBQWUsVUFBVSxDQUNyRSxRQUF5QixFQUN6QixJQUFVOzs7Ozs7b0JBRUosSUFBSSxHQUFHLElBQUksUUFBUSxFQUFFLENBQUM7b0JBRTVCLHFCQUFNLFVBQVUsQ0FBQyxJQUFJLEVBQUUsVUFBQyxLQUFLOzRCQUMzQixJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO3dCQUNyQixDQUFDLENBQUMsRUFBQTs7b0JBRkYsU0FFRSxDQUFDO29CQUVILHNCQUFPLElBQUksQ0FBQyxNQUFNLEVBQUUsRUFBQzs7OztDQUN0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYmxvYlJlYWRlciB9IGZyb20gXCJAYXdzLXNkay9jaHVua2VkLWJsb2ItcmVhZGVyXCI7XG5pbXBvcnQgeyBIYXNoQ29uc3RydWN0b3IsIFN0cmVhbUhhc2hlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgY29uc3QgYmxvYkhhc2hlcjogU3RyZWFtSGFzaGVyPEJsb2I+ID0gYXN5bmMgZnVuY3Rpb24gYmxvYkhhc2hlcihcbiAgaGFzaEN0b3I6IEhhc2hDb25zdHJ1Y3RvcixcbiAgYmxvYjogQmxvYlxuKTogUHJvbWlzZTxVaW50OEFycmF5PiB7XG4gIGNvbnN0IGhhc2ggPSBuZXcgaGFzaEN0b3IoKTtcblxuICBhd2FpdCBibG9iUmVhZGVyKGJsb2IsIChjaHVuaykgPT4ge1xuICAgIGhhc2gudXBkYXRlKGNodW5rKTtcbiAgfSk7XG5cbiAgcmV0dXJuIGhhc2guZGlnZXN0KCk7XG59O1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/hash-blob-browser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js ***! \*******************************************************************/ /*! exports provided: invalidFunction, invalidProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _invalidFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./invalidFunction */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/invalidFunction.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"invalidFunction\", function() { return _invalidFunction__WEBPACK_IMPORTED_MODULE_0__[\"invalidFunction\"]; });\n\n/* harmony import */ var _invalidProvider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./invalidProvider */ \"./node_modules/@aws-sdk/invalid-dependency/dist/es/invalidProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"invalidProvider\", function() { return _invalidProvider__WEBPACK_IMPORTED_MODULE_1__[\"invalidProvider\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vaW52YWxpZEZ1bmN0aW9uXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9pbnZhbGlkUHJvdmlkZXJcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/invalid-dependency/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/invalid-dependency/dist/es/invalidFunction.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/invalid-dependency/dist/es/invalidFunction.js ***! \*****************************************************************************/ /*! exports provided: invalidFunction */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invalidFunction\", function() { return invalidFunction; });\nvar invalidFunction = function (message) { return function () {\n throw new Error(message);\n}; };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW52YWxpZEZ1bmN0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2ludmFsaWRGdW5jdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsSUFBTSxlQUFlLEdBQUcsVUFBQyxPQUFlLElBQUssT0FBQTtJQUNsRCxNQUFNLElBQUksS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDO0FBQzNCLENBQUMsRUFGbUQsQ0FFbkQsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBpbnZhbGlkRnVuY3Rpb24gPSAobWVzc2FnZTogc3RyaW5nKSA9PiAoKSA9PiB7XG4gIHRocm93IG5ldyBFcnJvcihtZXNzYWdlKTtcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/invalid-dependency/dist/es/invalidFunction.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/invalid-dependency/dist/es/invalidProvider.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/invalid-dependency/dist/es/invalidProvider.js ***! \*****************************************************************************/ /*! exports provided: invalidProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invalidProvider\", function() { return invalidProvider; });\nvar invalidProvider = function (message) { return function () { return Promise.reject(message); }; };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW52YWxpZFByb3ZpZGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2ludmFsaWRQcm92aWRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxNQUFNLENBQUMsSUFBTSxlQUFlLEdBQXVDLFVBQUMsT0FBZSxJQUFLLE9BQUEsY0FBTSxPQUFBLE9BQU8sQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLEVBQXZCLENBQXVCLEVBQTdCLENBQTZCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQcm92aWRlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuZXhwb3J0IGNvbnN0IGludmFsaWRQcm92aWRlcjogKG1lc3NhZ2U6IHN0cmluZykgPT4gUHJvdmlkZXI8YW55PiA9IChtZXNzYWdlOiBzdHJpbmcpID0+ICgpID0+IFByb21pc2UucmVqZWN0KG1lc3NhZ2UpO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/invalid-dependency/dist/es/invalidProvider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/is-array-buffer/dist/es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/is-array-buffer/dist/es/index.js ***! \****************************************************************/ /*! exports provided: isArrayBuffer */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isArrayBuffer\", function() { return isArrayBuffer; });\nvar isArrayBuffer = function (arg) {\n return (typeof ArrayBuffer === \"function\" && arg instanceof ArrayBuffer) ||\n Object.prototype.toString.call(arg) === \"[object ArrayBuffer]\";\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFDLElBQU0sYUFBYSxHQUFHLFVBQUMsR0FBUTtJQUNwQyxPQUFBLENBQUMsT0FBTyxXQUFXLEtBQUssVUFBVSxJQUFJLEdBQUcsWUFBWSxXQUFXLENBQUM7UUFDakUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxLQUFLLHNCQUFzQjtBQUQ5RCxDQUM4RCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IGlzQXJyYXlCdWZmZXIgPSAoYXJnOiBhbnkpOiBhcmcgaXMgQXJyYXlCdWZmZXIgPT5cbiAgKHR5cGVvZiBBcnJheUJ1ZmZlciA9PT0gXCJmdW5jdGlvblwiICYmIGFyZyBpbnN0YW5jZW9mIEFycmF5QnVmZmVyKSB8fFxuICBPYmplY3QucHJvdG90eXBlLnRvU3RyaW5nLmNhbGwoYXJnKSA9PT0gXCJbb2JqZWN0IEFycmF5QnVmZmVyXVwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/is-array-buffer/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/md5-js/dist/es/constants.js": /*!***********************************************************!*\ !*** ./node_modules/@aws-sdk/md5-js/dist/es/constants.js ***! \***********************************************************/ /*! exports provided: BLOCK_SIZE, DIGEST_LENGTH, INIT */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BLOCK_SIZE\", function() { return BLOCK_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DIGEST_LENGTH\", function() { return DIGEST_LENGTH; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INIT\", function() { return INIT; });\n/**\n * @internal\n */\nvar BLOCK_SIZE = 64;\n/**\n * @internal\n */\nvar DIGEST_LENGTH = 16;\n/**\n * @internal\n */\nvar INIT = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476];\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILE1BQU0sQ0FBQyxJQUFNLFVBQVUsR0FBRyxFQUFFLENBQUM7QUFFN0I7O0dBRUc7QUFDSCxNQUFNLENBQUMsSUFBTSxhQUFhLEdBQUcsRUFBRSxDQUFDO0FBRWhDOztHQUVHO0FBQ0gsTUFBTSxDQUFDLElBQU0sSUFBSSxHQUFHLENBQUMsVUFBVSxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsVUFBVSxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgQkxPQ0tfU0laRSA9IDY0O1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgRElHRVNUX0xFTkdUSCA9IDE2O1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgSU5JVCA9IFsweDY3NDUyMzAxLCAweGVmY2RhYjg5LCAweDk4YmFkY2ZlLCAweDEwMzI1NDc2XTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/md5-js/dist/es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/md5-js/dist/es/index.js": /*!*******************************************************!*\ !*** ./node_modules/@aws-sdk/md5-js/dist/es/index.js ***! \*******************************************************/ /*! exports provided: Md5 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Md5\", function() { return Md5; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-utf8-browser */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/md5-js/dist/es/constants.js\");\n\n\n\nvar Md5 = /** @class */ (function () {\n function Md5() {\n this.state = Uint32Array.from(_constants__WEBPACK_IMPORTED_MODULE_2__[\"INIT\"]);\n this.buffer = new DataView(new ArrayBuffer(_constants__WEBPACK_IMPORTED_MODULE_2__[\"BLOCK_SIZE\"]));\n this.bufferLength = 0;\n this.bytesHashed = 0;\n this.finished = false;\n }\n Md5.prototype.update = function (sourceData) {\n if (isEmptyData(sourceData)) {\n return;\n }\n else if (this.finished) {\n throw new Error(\"Attempted to update an already finished hash.\");\n }\n var data = convertToBuffer(sourceData);\n var position = 0;\n var byteLength = data.byteLength;\n this.bytesHashed += byteLength;\n while (byteLength > 0) {\n this.buffer.setUint8(this.bufferLength++, data[position++]);\n byteLength--;\n if (this.bufferLength === _constants__WEBPACK_IMPORTED_MODULE_2__[\"BLOCK_SIZE\"]) {\n this.hashBuffer();\n this.bufferLength = 0;\n }\n }\n };\n Md5.prototype.digest = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _a, buffer, undecoratedLength, bytesHashed, bitsHashed, i, i, out, i;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n if (!this.finished) {\n _a = this, buffer = _a.buffer, undecoratedLength = _a.bufferLength, bytesHashed = _a.bytesHashed;\n bitsHashed = bytesHashed * 8;\n buffer.setUint8(this.bufferLength++, 128);\n // Ensure the final block has enough room for the hashed length\n if (undecoratedLength % _constants__WEBPACK_IMPORTED_MODULE_2__[\"BLOCK_SIZE\"] >= _constants__WEBPACK_IMPORTED_MODULE_2__[\"BLOCK_SIZE\"] - 8) {\n for (i = this.bufferLength; i < _constants__WEBPACK_IMPORTED_MODULE_2__[\"BLOCK_SIZE\"]; i++) {\n buffer.setUint8(i, 0);\n }\n this.hashBuffer();\n this.bufferLength = 0;\n }\n for (i = this.bufferLength; i < _constants__WEBPACK_IMPORTED_MODULE_2__[\"BLOCK_SIZE\"] - 8; i++) {\n buffer.setUint8(i, 0);\n }\n buffer.setUint32(_constants__WEBPACK_IMPORTED_MODULE_2__[\"BLOCK_SIZE\"] - 8, bitsHashed >>> 0, true);\n buffer.setUint32(_constants__WEBPACK_IMPORTED_MODULE_2__[\"BLOCK_SIZE\"] - 4, Math.floor(bitsHashed / 0x100000000), true);\n this.hashBuffer();\n this.finished = true;\n }\n out = new DataView(new ArrayBuffer(_constants__WEBPACK_IMPORTED_MODULE_2__[\"DIGEST_LENGTH\"]));\n for (i = 0; i < 4; i++) {\n out.setUint32(i * 4, this.state[i], true);\n }\n return [2 /*return*/, new Uint8Array(out.buffer, out.byteOffset, out.byteLength)];\n });\n });\n };\n Md5.prototype.hashBuffer = function () {\n var _a = this, buffer = _a.buffer, state = _a.state;\n var a = state[0], b = state[1], c = state[2], d = state[3];\n a = ff(a, b, c, d, buffer.getUint32(0, true), 7, 0xd76aa478);\n d = ff(d, a, b, c, buffer.getUint32(4, true), 12, 0xe8c7b756);\n c = ff(c, d, a, b, buffer.getUint32(8, true), 17, 0x242070db);\n b = ff(b, c, d, a, buffer.getUint32(12, true), 22, 0xc1bdceee);\n a = ff(a, b, c, d, buffer.getUint32(16, true), 7, 0xf57c0faf);\n d = ff(d, a, b, c, buffer.getUint32(20, true), 12, 0x4787c62a);\n c = ff(c, d, a, b, buffer.getUint32(24, true), 17, 0xa8304613);\n b = ff(b, c, d, a, buffer.getUint32(28, true), 22, 0xfd469501);\n a = ff(a, b, c, d, buffer.getUint32(32, true), 7, 0x698098d8);\n d = ff(d, a, b, c, buffer.getUint32(36, true), 12, 0x8b44f7af);\n c = ff(c, d, a, b, buffer.getUint32(40, true), 17, 0xffff5bb1);\n b = ff(b, c, d, a, buffer.getUint32(44, true), 22, 0x895cd7be);\n a = ff(a, b, c, d, buffer.getUint32(48, true), 7, 0x6b901122);\n d = ff(d, a, b, c, buffer.getUint32(52, true), 12, 0xfd987193);\n c = ff(c, d, a, b, buffer.getUint32(56, true), 17, 0xa679438e);\n b = ff(b, c, d, a, buffer.getUint32(60, true), 22, 0x49b40821);\n a = gg(a, b, c, d, buffer.getUint32(4, true), 5, 0xf61e2562);\n d = gg(d, a, b, c, buffer.getUint32(24, true), 9, 0xc040b340);\n c = gg(c, d, a, b, buffer.getUint32(44, true), 14, 0x265e5a51);\n b = gg(b, c, d, a, buffer.getUint32(0, true), 20, 0xe9b6c7aa);\n a = gg(a, b, c, d, buffer.getUint32(20, true), 5, 0xd62f105d);\n d = gg(d, a, b, c, buffer.getUint32(40, true), 9, 0x02441453);\n c = gg(c, d, a, b, buffer.getUint32(60, true), 14, 0xd8a1e681);\n b = gg(b, c, d, a, buffer.getUint32(16, true), 20, 0xe7d3fbc8);\n a = gg(a, b, c, d, buffer.getUint32(36, true), 5, 0x21e1cde6);\n d = gg(d, a, b, c, buffer.getUint32(56, true), 9, 0xc33707d6);\n c = gg(c, d, a, b, buffer.getUint32(12, true), 14, 0xf4d50d87);\n b = gg(b, c, d, a, buffer.getUint32(32, true), 20, 0x455a14ed);\n a = gg(a, b, c, d, buffer.getUint32(52, true), 5, 0xa9e3e905);\n d = gg(d, a, b, c, buffer.getUint32(8, true), 9, 0xfcefa3f8);\n c = gg(c, d, a, b, buffer.getUint32(28, true), 14, 0x676f02d9);\n b = gg(b, c, d, a, buffer.getUint32(48, true), 20, 0x8d2a4c8a);\n a = hh(a, b, c, d, buffer.getUint32(20, true), 4, 0xfffa3942);\n d = hh(d, a, b, c, buffer.getUint32(32, true), 11, 0x8771f681);\n c = hh(c, d, a, b, buffer.getUint32(44, true), 16, 0x6d9d6122);\n b = hh(b, c, d, a, buffer.getUint32(56, true), 23, 0xfde5380c);\n a = hh(a, b, c, d, buffer.getUint32(4, true), 4, 0xa4beea44);\n d = hh(d, a, b, c, buffer.getUint32(16, true), 11, 0x4bdecfa9);\n c = hh(c, d, a, b, buffer.getUint32(28, true), 16, 0xf6bb4b60);\n b = hh(b, c, d, a, buffer.getUint32(40, true), 23, 0xbebfbc70);\n a = hh(a, b, c, d, buffer.getUint32(52, true), 4, 0x289b7ec6);\n d = hh(d, a, b, c, buffer.getUint32(0, true), 11, 0xeaa127fa);\n c = hh(c, d, a, b, buffer.getUint32(12, true), 16, 0xd4ef3085);\n b = hh(b, c, d, a, buffer.getUint32(24, true), 23, 0x04881d05);\n a = hh(a, b, c, d, buffer.getUint32(36, true), 4, 0xd9d4d039);\n d = hh(d, a, b, c, buffer.getUint32(48, true), 11, 0xe6db99e5);\n c = hh(c, d, a, b, buffer.getUint32(60, true), 16, 0x1fa27cf8);\n b = hh(b, c, d, a, buffer.getUint32(8, true), 23, 0xc4ac5665);\n a = ii(a, b, c, d, buffer.getUint32(0, true), 6, 0xf4292244);\n d = ii(d, a, b, c, buffer.getUint32(28, true), 10, 0x432aff97);\n c = ii(c, d, a, b, buffer.getUint32(56, true), 15, 0xab9423a7);\n b = ii(b, c, d, a, buffer.getUint32(20, true), 21, 0xfc93a039);\n a = ii(a, b, c, d, buffer.getUint32(48, true), 6, 0x655b59c3);\n d = ii(d, a, b, c, buffer.getUint32(12, true), 10, 0x8f0ccc92);\n c = ii(c, d, a, b, buffer.getUint32(40, true), 15, 0xffeff47d);\n b = ii(b, c, d, a, buffer.getUint32(4, true), 21, 0x85845dd1);\n a = ii(a, b, c, d, buffer.getUint32(32, true), 6, 0x6fa87e4f);\n d = ii(d, a, b, c, buffer.getUint32(60, true), 10, 0xfe2ce6e0);\n c = ii(c, d, a, b, buffer.getUint32(24, true), 15, 0xa3014314);\n b = ii(b, c, d, a, buffer.getUint32(52, true), 21, 0x4e0811a1);\n a = ii(a, b, c, d, buffer.getUint32(16, true), 6, 0xf7537e82);\n d = ii(d, a, b, c, buffer.getUint32(44, true), 10, 0xbd3af235);\n c = ii(c, d, a, b, buffer.getUint32(8, true), 15, 0x2ad7d2bb);\n b = ii(b, c, d, a, buffer.getUint32(36, true), 21, 0xeb86d391);\n state[0] = (a + state[0]) & 0xffffffff;\n state[1] = (b + state[1]) & 0xffffffff;\n state[2] = (c + state[2]) & 0xffffffff;\n state[3] = (d + state[3]) & 0xffffffff;\n };\n return Md5;\n}());\n\nfunction cmn(q, a, b, x, s, t) {\n a = (((a + q) & 0xffffffff) + ((x + t) & 0xffffffff)) & 0xffffffff;\n return (((a << s) | (a >>> (32 - s))) + b) & 0xffffffff;\n}\nfunction ff(a, b, c, d, x, s, t) {\n return cmn((b & c) | (~b & d), a, b, x, s, t);\n}\nfunction gg(a, b, c, d, x, s, t) {\n return cmn((b & d) | (c & ~d), a, b, x, s, t);\n}\nfunction hh(a, b, c, d, x, s, t) {\n return cmn(b ^ c ^ d, a, b, x, s, t);\n}\nfunction ii(a, b, c, d, x, s, t) {\n return cmn(c ^ (b | ~d), a, b, x, s, t);\n}\nfunction isEmptyData(data) {\n if (typeof data === \"string\") {\n return data.length === 0;\n }\n return data.byteLength === 0;\n}\nfunction convertToBuffer(data) {\n if (typeof data === \"string\") {\n return Object(_aws_sdk_util_utf8_browser__WEBPACK_IMPORTED_MODULE_1__[\"fromUtf8\"])(data);\n }\n if (ArrayBuffer.isView(data)) {\n return new Uint8Array(data.buffer, data.byteOffset, data.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n }\n return new Uint8Array(data);\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUNBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUV0RCxPQUFPLEVBQUUsVUFBVSxFQUFFLGFBQWEsRUFBRSxJQUFJLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFOUQ7SUFBQTtRQUNVLFVBQUssR0FBRyxXQUFXLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQy9CLFdBQU0sR0FBYSxJQUFJLFFBQVEsQ0FBQyxJQUFJLFdBQVcsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDO1FBQzdELGlCQUFZLEdBQUcsQ0FBQyxDQUFDO1FBQ2pCLGdCQUFXLEdBQUcsQ0FBQyxDQUFDO1FBQ2hCLGFBQVEsR0FBRyxLQUFLLENBQUM7SUE2STNCLENBQUM7SUEzSUMsb0JBQU0sR0FBTixVQUFPLFVBQXNCO1FBQzNCLElBQUksV0FBVyxDQUFDLFVBQVUsQ0FBQyxFQUFFO1lBQzNCLE9BQU87U0FDUjthQUFNLElBQUksSUFBSSxDQUFDLFFBQVEsRUFBRTtZQUN4QixNQUFNLElBQUksS0FBSyxDQUFDLCtDQUErQyxDQUFDLENBQUM7U0FDbEU7UUFFRCxJQUFNLElBQUksR0FBRyxlQUFlLENBQUMsVUFBVSxDQUFDLENBQUM7UUFFekMsSUFBSSxRQUFRLEdBQUcsQ0FBQyxDQUFDO1FBQ1gsSUFBQSxVQUFVLEdBQUssSUFBSSxXQUFULENBQVU7UUFDMUIsSUFBSSxDQUFDLFdBQVcsSUFBSSxVQUFVLENBQUM7UUFFL0IsT0FBTyxVQUFVLEdBQUcsQ0FBQyxFQUFFO1lBQ3JCLElBQUksQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxZQUFZLEVBQUUsRUFBRSxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxDQUFDO1lBQzVELFVBQVUsRUFBRSxDQUFDO1lBRWIsSUFBSSxJQUFJLENBQUMsWUFBWSxLQUFLLFVBQVUsRUFBRTtnQkFDcEMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO2dCQUNsQixJQUFJLENBQUMsWUFBWSxHQUFHLENBQUMsQ0FBQzthQUN2QjtTQUNGO0lBQ0gsQ0FBQztJQUVLLG9CQUFNLEdBQVo7Ozs7Z0JBQ0UsSUFBSSxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUU7b0JBQ1osS0FBMkQsSUFBSSxFQUE3RCxNQUFNLFlBQUEsRUFBZ0IsaUJBQWlCLGtCQUFBLEVBQUUsV0FBVyxpQkFBQSxDQUFVO29CQUNoRSxVQUFVLEdBQUcsV0FBVyxHQUFHLENBQUMsQ0FBQztvQkFDbkMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFFLEVBQUUsR0FBVSxDQUFDLENBQUM7b0JBRWpELCtEQUErRDtvQkFDL0QsSUFBSSxpQkFBaUIsR0FBRyxVQUFVLElBQUksVUFBVSxHQUFHLENBQUMsRUFBRTt3QkFDcEQsS0FBUyxDQUFDLEdBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDLEdBQUcsVUFBVSxFQUFFLENBQUMsRUFBRSxFQUFFOzRCQUNuRCxNQUFNLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQzt5QkFDdkI7d0JBQ0QsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO3dCQUNsQixJQUFJLENBQUMsWUFBWSxHQUFHLENBQUMsQ0FBQztxQkFDdkI7b0JBRUQsS0FBUyxDQUFDLEdBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDLEdBQUcsVUFBVSxHQUFHLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRTt3QkFDdkQsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7cUJBQ3ZCO29CQUNELE1BQU0sQ0FBQyxTQUFTLENBQUMsVUFBVSxHQUFHLENBQUMsRUFBRSxVQUFVLEtBQUssQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO29CQUN6RCxNQUFNLENBQUMsU0FBUyxDQUFDLFVBQVUsR0FBRyxDQUFDLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxVQUFVLEdBQUcsV0FBVyxDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUM7b0JBRTdFLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztvQkFFbEIsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUM7aUJBQ3RCO2dCQUVLLEdBQUcsR0FBRyxJQUFJLFFBQVEsQ0FBQyxJQUFJLFdBQVcsQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDO2dCQUN6RCxLQUFTLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRTtvQkFDMUIsR0FBRyxDQUFDLFNBQVMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUM7aUJBQzNDO2dCQUVELHNCQUFPLElBQUksVUFBVSxDQUFDLEdBQUcsQ0FBQyxNQUFNLEVBQUUsR0FBRyxDQUFDLFVBQVUsRUFBRSxHQUFHLENBQUMsVUFBVSxDQUFDLEVBQUM7OztLQUNuRTtJQUVPLHdCQUFVLEdBQWxCO1FBQ1EsSUFBQSxLQUFvQixJQUFJLEVBQXRCLE1BQU0sWUFBQSxFQUFFLEtBQUssV0FBUyxDQUFDO1FBRS9CLElBQUksQ0FBQyxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFDZCxDQUFDLEdBQUcsS0FBSyxDQUFDLENBQUMsQ0FBQyxFQUNaLENBQUMsR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQ1osQ0FBQyxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUVmLENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxFQUFFLENBQUMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUM3RCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDOUQsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDOUQsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLENBQUMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUM5RCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUUvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsRUFBRSxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDN0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDOUQsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLENBQUMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUM5RCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLENBQUMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUM5RCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDOUQsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDOUQsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzdELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxFQUFFLENBQUMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUM3RCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDOUQsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRTlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxFQUFFLENBQUMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUM3RCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxDQUFDLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDOUQsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDOUQsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUMvRCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQy9ELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLENBQUMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUM5RCxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxNQUFNLENBQUMsU0FBUyxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDL0QsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQzlELENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUUvRCxLQUFLLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsVUFBVSxDQUFDO1FBQ3ZDLEtBQUssQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxVQUFVLENBQUM7UUFDdkMsS0FBSyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxHQUFHLFVBQVUsQ0FBQztRQUN2QyxLQUFLLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsVUFBVSxDQUFDO0lBQ3pDLENBQUM7SUFDSCxVQUFDO0FBQUQsQ0FBQyxBQWxKRCxJQWtKQzs7QUFFRCxTQUFTLEdBQUcsQ0FBQyxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVMsRUFBRSxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVM7SUFDM0UsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLFVBQVUsQ0FBQyxDQUFDLEdBQUcsVUFBVSxDQUFDO0lBQ25FLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLENBQUMsRUFBRSxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxVQUFVLENBQUM7QUFDMUQsQ0FBQztBQUVELFNBQVMsRUFBRSxDQUFDLENBQVMsRUFBRSxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVMsRUFBRSxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVM7SUFDckYsT0FBTyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUFDaEQsQ0FBQztBQUVELFNBQVMsRUFBRSxDQUFDLENBQVMsRUFBRSxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVMsRUFBRSxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVM7SUFDckYsT0FBTyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUFDaEQsQ0FBQztBQUVELFNBQVMsRUFBRSxDQUFDLENBQVMsRUFBRSxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVMsRUFBRSxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVM7SUFDckYsT0FBTyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO0FBQ3ZDLENBQUM7QUFFRCxTQUFTLEVBQUUsQ0FBQyxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVMsRUFBRSxDQUFTLEVBQUUsQ0FBUyxFQUFFLENBQVMsRUFBRSxDQUFTO0lBQ3JGLE9BQU8sR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQztBQUMxQyxDQUFDO0FBRUQsU0FBUyxXQUFXLENBQUMsSUFBZ0I7SUFDbkMsSUFBSSxPQUFPLElBQUksS0FBSyxRQUFRLEVBQUU7UUFDNUIsT0FBTyxJQUFJLENBQUMsTUFBTSxLQUFLLENBQUMsQ0FBQztLQUMxQjtJQUVELE9BQU8sSUFBSSxDQUFDLFVBQVUsS0FBSyxDQUFDLENBQUM7QUFDL0IsQ0FBQztBQUVELFNBQVMsZUFBZSxDQUFDLElBQWdCO0lBQ3ZDLElBQUksT0FBTyxJQUFJLEtBQUssUUFBUSxFQUFFO1FBQzVCLE9BQU8sUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDO0tBQ3ZCO0lBRUQsSUFBSSxXQUFXLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxFQUFFO1FBQzVCLE9BQU8sSUFBSSxVQUFVLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsVUFBVSxFQUFFLElBQUksQ0FBQyxVQUFVLEdBQUcsVUFBVSxDQUFDLGlCQUFpQixDQUFDLENBQUM7S0FDckc7SUFFRCxPQUFPLElBQUksVUFBVSxDQUFDLElBQUksQ0FBQyxDQUFDO0FBQzlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIYXNoLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBmcm9tVXRmOCB9IGZyb20gXCJAYXdzLXNkay91dGlsLXV0ZjgtYnJvd3NlclwiO1xuXG5pbXBvcnQgeyBCTE9DS19TSVpFLCBESUdFU1RfTEVOR1RILCBJTklUIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5cbmV4cG9ydCBjbGFzcyBNZDUgaW1wbGVtZW50cyBIYXNoIHtcbiAgcHJpdmF0ZSBzdGF0ZSA9IFVpbnQzMkFycmF5LmZyb20oSU5JVCk7XG4gIHByaXZhdGUgYnVmZmVyOiBEYXRhVmlldyA9IG5ldyBEYXRhVmlldyhuZXcgQXJyYXlCdWZmZXIoQkxPQ0tfU0laRSkpO1xuICBwcml2YXRlIGJ1ZmZlckxlbmd0aCA9IDA7XG4gIHByaXZhdGUgYnl0ZXNIYXNoZWQgPSAwO1xuICBwcml2YXRlIGZpbmlzaGVkID0gZmFsc2U7XG5cbiAgdXBkYXRlKHNvdXJjZURhdGE6IFNvdXJjZURhdGEpOiB2b2lkIHtcbiAgICBpZiAoaXNFbXB0eURhdGEoc291cmNlRGF0YSkpIHtcbiAgICAgIHJldHVybjtcbiAgICB9IGVsc2UgaWYgKHRoaXMuZmluaXNoZWQpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIkF0dGVtcHRlZCB0byB1cGRhdGUgYW4gYWxyZWFkeSBmaW5pc2hlZCBoYXNoLlwiKTtcbiAgICB9XG5cbiAgICBjb25zdCBkYXRhID0gY29udmVydFRvQnVmZmVyKHNvdXJjZURhdGEpO1xuXG4gICAgbGV0IHBvc2l0aW9uID0gMDtcbiAgICBsZXQgeyBieXRlTGVuZ3RoIH0gPSBkYXRhO1xuICAgIHRoaXMuYnl0ZXNIYXNoZWQgKz0gYnl0ZUxlbmd0aDtcblxuICAgIHdoaWxlIChieXRlTGVuZ3RoID4gMCkge1xuICAgICAgdGhpcy5idWZmZXIuc2V0VWludDgodGhpcy5idWZmZXJMZW5ndGgrKywgZGF0YVtwb3NpdGlvbisrXSk7XG4gICAgICBieXRlTGVuZ3RoLS07XG5cbiAgICAgIGlmICh0aGlzLmJ1ZmZlckxlbmd0aCA9PT0gQkxPQ0tfU0laRSkge1xuICAgICAgICB0aGlzLmhhc2hCdWZmZXIoKTtcbiAgICAgICAgdGhpcy5idWZmZXJMZW5ndGggPSAwO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIGFzeW5jIGRpZ2VzdCgpOiBQcm9taXNlPFVpbnQ4QXJyYXk+IHtcbiAgICBpZiAoIXRoaXMuZmluaXNoZWQpIHtcbiAgICAgIGNvbnN0IHsgYnVmZmVyLCBidWZmZXJMZW5ndGg6IHVuZGVjb3JhdGVkTGVuZ3RoLCBieXRlc0hhc2hlZCB9ID0gdGhpcztcbiAgICAgIGNvbnN0IGJpdHNIYXNoZWQgPSBieXRlc0hhc2hlZCAqIDg7XG4gICAgICBidWZmZXIuc2V0VWludDgodGhpcy5idWZmZXJMZW5ndGgrKywgMGIxMDAwMDAwMCk7XG5cbiAgICAgIC8vIEVuc3VyZSB0aGUgZmluYWwgYmxvY2sgaGFzIGVub3VnaCByb29tIGZvciB0aGUgaGFzaGVkIGxlbmd0aFxuICAgICAgaWYgKHVuZGVjb3JhdGVkTGVuZ3RoICUgQkxPQ0tfU0laRSA+PSBCTE9DS19TSVpFIC0gOCkge1xuICAgICAgICBmb3IgKGxldCBpID0gdGhpcy5idWZmZXJMZW5ndGg7IGkgPCBCTE9DS19TSVpFOyBpKyspIHtcbiAgICAgICAgICBidWZmZXIuc2V0VWludDgoaSwgMCk7XG4gICAgICAgIH1cbiAgICAgICAgdGhpcy5oYXNoQnVmZmVyKCk7XG4gICAgICAgIHRoaXMuYnVmZmVyTGVuZ3RoID0gMDtcbiAgICAgIH1cblxuICAgICAgZm9yIChsZXQgaSA9IHRoaXMuYnVmZmVyTGVuZ3RoOyBpIDwgQkxPQ0tfU0laRSAtIDg7IGkrKykge1xuICAgICAgICBidWZmZXIuc2V0VWludDgoaSwgMCk7XG4gICAgICB9XG4gICAgICBidWZmZXIuc2V0VWludDMyKEJMT0NLX1NJWkUgLSA4LCBiaXRzSGFzaGVkID4+PiAwLCB0cnVlKTtcbiAgICAgIGJ1ZmZlci5zZXRVaW50MzIoQkxPQ0tfU0laRSAtIDQsIE1hdGguZmxvb3IoYml0c0hhc2hlZCAvIDB4MTAwMDAwMDAwKSwgdHJ1ZSk7XG5cbiAgICAgIHRoaXMuaGFzaEJ1ZmZlcigpO1xuXG4gICAgICB0aGlzLmZpbmlzaGVkID0gdHJ1ZTtcbiAgICB9XG5cbiAgICBjb25zdCBvdXQgPSBuZXcgRGF0YVZpZXcobmV3IEFycmF5QnVmZmVyKERJR0VTVF9MRU5HVEgpKTtcbiAgICBmb3IgKGxldCBpID0gMDsgaSA8IDQ7IGkrKykge1xuICAgICAgb3V0LnNldFVpbnQzMihpICogNCwgdGhpcy5zdGF0ZVtpXSwgdHJ1ZSk7XG4gICAgfVxuXG4gICAgcmV0dXJuIG5ldyBVaW50OEFycmF5KG91dC5idWZmZXIsIG91dC5ieXRlT2Zmc2V0LCBvdXQuYnl0ZUxlbmd0aCk7XG4gIH1cblxuICBwcml2YXRlIGhhc2hCdWZmZXIoKTogdm9pZCB7XG4gICAgY29uc3QgeyBidWZmZXIsIHN0YXRlIH0gPSB0aGlzO1xuXG4gICAgbGV0IGEgPSBzdGF0ZVswXSxcbiAgICAgIGIgPSBzdGF0ZVsxXSxcbiAgICAgIGMgPSBzdGF0ZVsyXSxcbiAgICAgIGQgPSBzdGF0ZVszXTtcblxuICAgIGEgPSBmZihhLCBiLCBjLCBkLCBidWZmZXIuZ2V0VWludDMyKDAsIHRydWUpLCA3LCAweGQ3NmFhNDc4KTtcbiAgICBkID0gZmYoZCwgYSwgYiwgYywgYnVmZmVyLmdldFVpbnQzMig0LCB0cnVlKSwgMTIsIDB4ZThjN2I3NTYpO1xuICAgIGMgPSBmZihjLCBkLCBhLCBiLCBidWZmZXIuZ2V0VWludDMyKDgsIHRydWUpLCAxNywgMHgyNDIwNzBkYik7XG4gICAgYiA9IGZmKGIsIGMsIGQsIGEsIGJ1ZmZlci5nZXRVaW50MzIoMTIsIHRydWUpLCAyMiwgMHhjMWJkY2VlZSk7XG4gICAgYSA9IGZmKGEsIGIsIGMsIGQsIGJ1ZmZlci5nZXRVaW50MzIoMTYsIHRydWUpLCA3LCAweGY1N2MwZmFmKTtcbiAgICBkID0gZmYoZCwgYSwgYiwgYywgYnVmZmVyLmdldFVpbnQzMigyMCwgdHJ1ZSksIDEyLCAweDQ3ODdjNjJhKTtcbiAgICBjID0gZmYoYywgZCwgYSwgYiwgYnVmZmVyLmdldFVpbnQzMigyNCwgdHJ1ZSksIDE3LCAweGE4MzA0NjEzKTtcbiAgICBiID0gZmYoYiwgYywgZCwgYSwgYnVmZmVyLmdldFVpbnQzMigyOCwgdHJ1ZSksIDIyLCAweGZkNDY5NTAxKTtcbiAgICBhID0gZmYoYSwgYiwgYywgZCwgYnVmZmVyLmdldFVpbnQzMigzMiwgdHJ1ZSksIDcsIDB4Njk4MDk4ZDgpO1xuICAgIGQgPSBmZihkLCBhLCBiLCBjLCBidWZmZXIuZ2V0VWludDMyKDM2LCB0cnVlKSwgMTIsIDB4OGI0NGY3YWYpO1xuICAgIGMgPSBmZihjLCBkLCBhLCBiLCBidWZmZXIuZ2V0VWludDMyKDQwLCB0cnVlKSwgMTcsIDB4ZmZmZjViYjEpO1xuICAgIGIgPSBmZihiLCBjLCBkLCBhLCBidWZmZXIuZ2V0VWludDMyKDQ0LCB0cnVlKSwgMjIsIDB4ODk1Y2Q3YmUpO1xuICAgIGEgPSBmZihhLCBiLCBjLCBkLCBidWZmZXIuZ2V0VWludDMyKDQ4LCB0cnVlKSwgNywgMHg2YjkwMTEyMik7XG4gICAgZCA9IGZmKGQsIGEsIGIsIGMsIGJ1ZmZlci5nZXRVaW50MzIoNTIsIHRydWUpLCAxMiwgMHhmZDk4NzE5Myk7XG4gICAgYyA9IGZmKGMsIGQsIGEsIGIsIGJ1ZmZlci5nZXRVaW50MzIoNTYsIHRydWUpLCAxNywgMHhhNjc5NDM4ZSk7XG4gICAgYiA9IGZmKGIsIGMsIGQsIGEsIGJ1ZmZlci5nZXRVaW50MzIoNjAsIHRydWUpLCAyMiwgMHg0OWI0MDgyMSk7XG5cbiAgICBhID0gZ2coYSwgYiwgYywgZCwgYnVmZmVyLmdldFVpbnQzMig0LCB0cnVlKSwgNSwgMHhmNjFlMjU2Mik7XG4gICAgZCA9IGdnKGQsIGEsIGIsIGMsIGJ1ZmZlci5nZXRVaW50MzIoMjQsIHRydWUpLCA5LCAweGMwNDBiMzQwKTtcbiAgICBjID0gZ2coYywgZCwgYSwgYiwgYnVmZmVyLmdldFVpbnQzMig0NCwgdHJ1ZSksIDE0LCAweDI2NWU1YTUxKTtcbiAgICBiID0gZ2coYiwgYywgZCwgYSwgYnVmZmVyLmdldFVpbnQzMigwLCB0cnVlKSwgMjAsIDB4ZTliNmM3YWEpO1xuICAgIGEgPSBnZyhhLCBiLCBjLCBkLCBidWZmZXIuZ2V0VWludDMyKDIwLCB0cnVlKSwgNSwgMHhkNjJmMTA1ZCk7XG4gICAgZCA9IGdnKGQsIGEsIGIsIGMsIGJ1ZmZlci5nZXRVaW50MzIoNDAsIHRydWUpLCA5LCAweDAyNDQxNDUzKTtcbiAgICBjID0gZ2coYywgZCwgYSwgYiwgYnVmZmVyLmdldFVpbnQzMig2MCwgdHJ1ZSksIDE0LCAweGQ4YTFlNjgxKTtcbiAgICBiID0gZ2coYiwgYywgZCwgYSwgYnVmZmVyLmdldFVpbnQzMigxNiwgdHJ1ZSksIDIwLCAweGU3ZDNmYmM4KTtcbiAgICBhID0gZ2coYSwgYiwgYywgZCwgYnVmZmVyLmdldFVpbnQzMigzNiwgdHJ1ZSksIDUsIDB4MjFlMWNkZTYpO1xuICAgIGQgPSBnZyhkLCBhLCBiLCBjLCBidWZmZXIuZ2V0VWludDMyKDU2LCB0cnVlKSwgOSwgMHhjMzM3MDdkNik7XG4gICAgYyA9IGdnKGMsIGQsIGEsIGIsIGJ1ZmZlci5nZXRVaW50MzIoMTIsIHRydWUpLCAxNCwgMHhmNGQ1MGQ4Nyk7XG4gICAgYiA9IGdnKGIsIGMsIGQsIGEsIGJ1ZmZlci5nZXRVaW50MzIoMzIsIHRydWUpLCAyMCwgMHg0NTVhMTRlZCk7XG4gICAgYSA9IGdnKGEsIGIsIGMsIGQsIGJ1ZmZlci5nZXRVaW50MzIoNTIsIHRydWUpLCA1LCAweGE5ZTNlOTA1KTtcbiAgICBkID0gZ2coZCwgYSwgYiwgYywgYnVmZmVyLmdldFVpbnQzMig4LCB0cnVlKSwgOSwgMHhmY2VmYTNmOCk7XG4gICAgYyA9IGdnKGMsIGQsIGEsIGIsIGJ1ZmZlci5nZXRVaW50MzIoMjgsIHRydWUpLCAxNCwgMHg2NzZmMDJkOSk7XG4gICAgYiA9IGdnKGIsIGMsIGQsIGEsIGJ1ZmZlci5nZXRVaW50MzIoNDgsIHRydWUpLCAyMCwgMHg4ZDJhNGM4YSk7XG5cbiAgICBhID0gaGgoYSwgYiwgYywgZCwgYnVmZmVyLmdldFVpbnQzMigyMCwgdHJ1ZSksIDQsIDB4ZmZmYTM5NDIpO1xuICAgIGQgPSBoaChkLCBhLCBiLCBjLCBidWZmZXIuZ2V0VWludDMyKDMyLCB0cnVlKSwgMTEsIDB4ODc3MWY2ODEpO1xuICAgIGMgPSBoaChjLCBkLCBhLCBiLCBidWZmZXIuZ2V0VWludDMyKDQ0LCB0cnVlKSwgMTYsIDB4NmQ5ZDYxMjIpO1xuICAgIGIgPSBoaChiLCBjLCBkLCBhLCBidWZmZXIuZ2V0VWludDMyKDU2LCB0cnVlKSwgMjMsIDB4ZmRlNTM4MGMpO1xuICAgIGEgPSBoaChhLCBiLCBjLCBkLCBidWZmZXIuZ2V0VWludDMyKDQsIHRydWUpLCA0LCAweGE0YmVlYTQ0KTtcbiAgICBkID0gaGgoZCwgYSwgYiwgYywgYnVmZmVyLmdldFVpbnQzMigxNiwgdHJ1ZSksIDExLCAweDRiZGVjZmE5KTtcbiAgICBjID0gaGgoYywgZCwgYSwgYiwgYnVmZmVyLmdldFVpbnQzMigyOCwgdHJ1ZSksIDE2LCAweGY2YmI0YjYwKTtcbiAgICBiID0gaGgoYiwgYywgZCwgYSwgYnVmZmVyLmdldFVpbnQzMig0MCwgdHJ1ZSksIDIzLCAweGJlYmZiYzcwKTtcbiAgICBhID0gaGgoYSwgYiwgYywgZCwgYnVmZmVyLmdldFVpbnQzMig1MiwgdHJ1ZSksIDQsIDB4Mjg5YjdlYzYpO1xuICAgIGQgPSBoaChkLCBhLCBiLCBjLCBidWZmZXIuZ2V0VWludDMyKDAsIHRydWUpLCAxMSwgMHhlYWExMjdmYSk7XG4gICAgYyA9IGhoKGMsIGQsIGEsIGIsIGJ1ZmZlci5nZXRVaW50MzIoMTIsIHRydWUpLCAxNiwgMHhkNGVmMzA4NSk7XG4gICAgYiA9IGhoKGIsIGMsIGQsIGEsIGJ1ZmZlci5nZXRVaW50MzIoMjQsIHRydWUpLCAyMywgMHgwNDg4MWQwNSk7XG4gICAgYSA9IGhoKGEsIGIsIGMsIGQsIGJ1ZmZlci5nZXRVaW50MzIoMzYsIHRydWUpLCA0LCAweGQ5ZDRkMDM5KTtcbiAgICBkID0gaGgoZCwgYSwgYiwgYywgYnVmZmVyLmdldFVpbnQzMig0OCwgdHJ1ZSksIDExLCAweGU2ZGI5OWU1KTtcbiAgICBjID0gaGgoYywgZCwgYSwgYiwgYnVmZmVyLmdldFVpbnQzMig2MCwgdHJ1ZSksIDE2LCAweDFmYTI3Y2Y4KTtcbiAgICBiID0gaGgoYiwgYywgZCwgYSwgYnVmZmVyLmdldFVpbnQzMig4LCB0cnVlKSwgMjMsIDB4YzRhYzU2NjUpO1xuXG4gICAgYSA9IGlpKGEsIGIsIGMsIGQsIGJ1ZmZlci5nZXRVaW50MzIoMCwgdHJ1ZSksIDYsIDB4ZjQyOTIyNDQpO1xuICAgIGQgPSBpaShkLCBhLCBiLCBjLCBidWZmZXIuZ2V0VWludDMyKDI4LCB0cnVlKSwgMTAsIDB4NDMyYWZmOTcpO1xuICAgIGMgPSBpaShjLCBkLCBhLCBiLCBidWZmZXIuZ2V0VWludDMyKDU2LCB0cnVlKSwgMTUsIDB4YWI5NDIzYTcpO1xuICAgIGIgPSBpaShiLCBjLCBkLCBhLCBidWZmZXIuZ2V0VWludDMyKDIwLCB0cnVlKSwgMjEsIDB4ZmM5M2EwMzkpO1xuICAgIGEgPSBpaShhLCBiLCBjLCBkLCBidWZmZXIuZ2V0VWludDMyKDQ4LCB0cnVlKSwgNiwgMHg2NTViNTljMyk7XG4gICAgZCA9IGlpKGQsIGEsIGIsIGMsIGJ1ZmZlci5nZXRVaW50MzIoMTIsIHRydWUpLCAxMCwgMHg4ZjBjY2M5Mik7XG4gICAgYyA9IGlpKGMsIGQsIGEsIGIsIGJ1ZmZlci5nZXRVaW50MzIoNDAsIHRydWUpLCAxNSwgMHhmZmVmZjQ3ZCk7XG4gICAgYiA9IGlpKGIsIGMsIGQsIGEsIGJ1ZmZlci5nZXRVaW50MzIoNCwgdHJ1ZSksIDIxLCAweDg1ODQ1ZGQxKTtcbiAgICBhID0gaWkoYSwgYiwgYywgZCwgYnVmZmVyLmdldFVpbnQzMigzMiwgdHJ1ZSksIDYsIDB4NmZhODdlNGYpO1xuICAgIGQgPSBpaShkLCBhLCBiLCBjLCBidWZmZXIuZ2V0VWludDMyKDYwLCB0cnVlKSwgMTAsIDB4ZmUyY2U2ZTApO1xuICAgIGMgPSBpaShjLCBkLCBhLCBiLCBidWZmZXIuZ2V0VWludDMyKDI0LCB0cnVlKSwgMTUsIDB4YTMwMTQzMTQpO1xuICAgIGIgPSBpaShiLCBjLCBkLCBhLCBidWZmZXIuZ2V0VWludDMyKDUyLCB0cnVlKSwgMjEsIDB4NGUwODExYTEpO1xuICAgIGEgPSBpaShhLCBiLCBjLCBkLCBidWZmZXIuZ2V0VWludDMyKDE2LCB0cnVlKSwgNiwgMHhmNzUzN2U4Mik7XG4gICAgZCA9IGlpKGQsIGEsIGIsIGMsIGJ1ZmZlci5nZXRVaW50MzIoNDQsIHRydWUpLCAxMCwgMHhiZDNhZjIzNSk7XG4gICAgYyA9IGlpKGMsIGQsIGEsIGIsIGJ1ZmZlci5nZXRVaW50MzIoOCwgdHJ1ZSksIDE1LCAweDJhZDdkMmJiKTtcbiAgICBiID0gaWkoYiwgYywgZCwgYSwgYnVmZmVyLmdldFVpbnQzMigzNiwgdHJ1ZSksIDIxLCAweGViODZkMzkxKTtcblxuICAgIHN0YXRlWzBdID0gKGEgKyBzdGF0ZVswXSkgJiAweGZmZmZmZmZmO1xuICAgIHN0YXRlWzFdID0gKGIgKyBzdGF0ZVsxXSkgJiAweGZmZmZmZmZmO1xuICAgIHN0YXRlWzJdID0gKGMgKyBzdGF0ZVsyXSkgJiAweGZmZmZmZmZmO1xuICAgIHN0YXRlWzNdID0gKGQgKyBzdGF0ZVszXSkgJiAweGZmZmZmZmZmO1xuICB9XG59XG5cbmZ1bmN0aW9uIGNtbihxOiBudW1iZXIsIGE6IG51bWJlciwgYjogbnVtYmVyLCB4OiBudW1iZXIsIHM6IG51bWJlciwgdDogbnVtYmVyKSB7XG4gIGEgPSAoKChhICsgcSkgJiAweGZmZmZmZmZmKSArICgoeCArIHQpICYgMHhmZmZmZmZmZikpICYgMHhmZmZmZmZmZjtcbiAgcmV0dXJuICgoKGEgPDwgcykgfCAoYSA+Pj4gKDMyIC0gcykpKSArIGIpICYgMHhmZmZmZmZmZjtcbn1cblxuZnVuY3Rpb24gZmYoYTogbnVtYmVyLCBiOiBudW1iZXIsIGM6IG51bWJlciwgZDogbnVtYmVyLCB4OiBudW1iZXIsIHM6IG51bWJlciwgdDogbnVtYmVyKSB7XG4gIHJldHVybiBjbW4oKGIgJiBjKSB8ICh+YiAmIGQpLCBhLCBiLCB4LCBzLCB0KTtcbn1cblxuZnVuY3Rpb24gZ2coYTogbnVtYmVyLCBiOiBudW1iZXIsIGM6IG51bWJlciwgZDogbnVtYmVyLCB4OiBudW1iZXIsIHM6IG51bWJlciwgdDogbnVtYmVyKSB7XG4gIHJldHVybiBjbW4oKGIgJiBkKSB8IChjICYgfmQpLCBhLCBiLCB4LCBzLCB0KTtcbn1cblxuZnVuY3Rpb24gaGgoYTogbnVtYmVyLCBiOiBudW1iZXIsIGM6IG51bWJlciwgZDogbnVtYmVyLCB4OiBudW1iZXIsIHM6IG51bWJlciwgdDogbnVtYmVyKSB7XG4gIHJldHVybiBjbW4oYiBeIGMgXiBkLCBhLCBiLCB4LCBzLCB0KTtcbn1cblxuZnVuY3Rpb24gaWkoYTogbnVtYmVyLCBiOiBudW1iZXIsIGM6IG51bWJlciwgZDogbnVtYmVyLCB4OiBudW1iZXIsIHM6IG51bWJlciwgdDogbnVtYmVyKSB7XG4gIHJldHVybiBjbW4oYyBeIChiIHwgfmQpLCBhLCBiLCB4LCBzLCB0KTtcbn1cblxuZnVuY3Rpb24gaXNFbXB0eURhdGEoZGF0YTogU291cmNlRGF0YSk6IGJvb2xlYW4ge1xuICBpZiAodHlwZW9mIGRhdGEgPT09IFwic3RyaW5nXCIpIHtcbiAgICByZXR1cm4gZGF0YS5sZW5ndGggPT09IDA7XG4gIH1cblxuICByZXR1cm4gZGF0YS5ieXRlTGVuZ3RoID09PSAwO1xufVxuXG5mdW5jdGlvbiBjb252ZXJ0VG9CdWZmZXIoZGF0YTogU291cmNlRGF0YSk6IFVpbnQ4QXJyYXkge1xuICBpZiAodHlwZW9mIGRhdGEgPT09IFwic3RyaW5nXCIpIHtcbiAgICByZXR1cm4gZnJvbVV0ZjgoZGF0YSk7XG4gIH1cblxuICBpZiAoQXJyYXlCdWZmZXIuaXNWaWV3KGRhdGEpKSB7XG4gICAgcmV0dXJuIG5ldyBVaW50OEFycmF5KGRhdGEuYnVmZmVyLCBkYXRhLmJ5dGVPZmZzZXQsIGRhdGEuYnl0ZUxlbmd0aCAvIFVpbnQ4QXJyYXkuQllURVNfUEVSX0VMRU1FTlQpO1xuICB9XG5cbiAgcmV0dXJuIG5ldyBVaW50OEFycmF5KGRhdGEpO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/md5-js/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/applyMd5BodyChecksumMiddleware.js": /*!********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/applyMd5BodyChecksumMiddleware.js ***! \********************************************************************************************************/ /*! exports provided: applyMd5BodyChecksumMiddleware, applyMd5BodyChecksumMiddlewareOptions, getApplyMd5BodyChecksumPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"applyMd5BodyChecksumMiddleware\", function() { return applyMd5BodyChecksumMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"applyMd5BodyChecksumMiddlewareOptions\", function() { return applyMd5BodyChecksumMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getApplyMd5BodyChecksumPlugin\", function() { return getApplyMd5BodyChecksumPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/is-array-buffer */ \"./node_modules/@aws-sdk/is-array-buffer/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\n\nfunction applyMd5BodyChecksumMiddleware(options) {\n var _this = this;\n return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var request, body, headers, digest, hash, _a, _b, _c, _d, _e;\n var _f, _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0:\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_2__[\"HttpRequest\"].isInstance(request)) return [3 /*break*/, 2];\n body = request.body, headers = request.headers;\n if (!!hasHeader(\"Content-MD5\", headers)) return [3 /*break*/, 2];\n digest = void 0;\n if (body === undefined || typeof body === \"string\" || ArrayBuffer.isView(body) || Object(_aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__[\"isArrayBuffer\"])(body)) {\n hash = new options.md5();\n hash.update(body || \"\");\n digest = hash.digest();\n }\n else {\n digest = options.streamHasher(options.md5, body);\n }\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request)];\n _f = {};\n _b = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, headers)];\n _g = {};\n _c = \"Content-MD5\";\n _e = (_d = options).base64Encoder;\n return [4 /*yield*/, digest];\n case 1:\n request = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f.headers = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _b.concat([(_g[_c] = _e.apply(_d, [_h.sent()]), _g)])), _f)]));\n _h.label = 2;\n case 2: return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n }); }; };\n}\nvar applyMd5BodyChecksumMiddlewareOptions = {\n name: \"applyMd5BodyChecksumMiddleware\",\n step: \"build\",\n tags: [\"SET_CONTENT_MD5\", \"BODY_CHECKSUM\"],\n override: true,\n};\nvar getApplyMd5BodyChecksumPlugin = function (config) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(applyMd5BodyChecksumMiddleware(config), applyMd5BodyChecksumMiddlewareOptions);\n },\n}); };\nfunction hasHeader(soughtHeader, headers) {\n var e_1, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n return true;\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return false;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwbHlNZDVCb2R5Q2hlY2tzdW1NaWRkbGV3YXJlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2FwcGx5TWQ1Qm9keUNoZWNrc3VtTWlkZGxld2FyZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQWNyRCxNQUFNLFVBQVUsOEJBQThCLENBQUMsT0FBc0M7SUFBckYsaUJBK0JDO0lBOUJDLE9BQU8sVUFBZ0MsSUFBK0IsSUFBZ0MsT0FBQSxVQUNwRyxJQUFnQzs7Ozs7O29CQUUxQixPQUFPLEdBQUssSUFBSSxRQUFULENBQVU7eUJBQ25CLFdBQVcsQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDLEVBQS9CLHdCQUErQjtvQkFDekIsSUFBSSxHQUFjLE9BQU8sS0FBckIsRUFBRSxPQUFPLEdBQUssT0FBTyxRQUFaLENBQWE7eUJBQzlCLENBQUMsU0FBUyxDQUFDLGFBQWEsRUFBRSxPQUFPLENBQUMsRUFBbEMsd0JBQWtDO29CQUNoQyxNQUFNLFNBQXFCLENBQUM7b0JBQ2hDLElBQUksSUFBSSxLQUFLLFNBQVMsSUFBSSxPQUFPLElBQUksS0FBSyxRQUFRLElBQUksV0FBVyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxhQUFhLENBQUMsSUFBSSxDQUFDLEVBQUU7d0JBQy9GLElBQUksR0FBRyxJQUFJLE9BQU8sQ0FBQyxHQUFHLEVBQUUsQ0FBQzt3QkFDL0IsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLElBQUksRUFBRSxDQUFDLENBQUM7d0JBQ3hCLE1BQU0sR0FBRyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUM7cUJBQ3hCO3lCQUFNO3dCQUNMLE1BQU0sR0FBRyxPQUFPLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxHQUFHLEVBQUUsSUFBSSxDQUFDLENBQUM7cUJBQ2xEO3VDQUdJLE9BQU87O3VDQUVMLE9BQU87O29CQUNWLEtBQUEsYUFBYSxDQUFBO29CQUFFLEtBQUEsQ0FBQSxLQUFBLE9BQU8sQ0FBQSxDQUFDLGFBQWEsQ0FBQTtvQkFBQyxxQkFBTSxNQUFNLEVBQUE7O29CQUpyRCxPQUFPLHNDQUVMLFVBQU8sc0NBRUwsTUFBYSxHQUFFLGNBQXNCLFNBQVksRUFBQyxnQkFFckQsQ0FBQzs7d0JBR04sc0JBQU8sSUFBSSx1QkFDTixJQUFJLEtBQ1AsT0FBTyxTQUFBLElBQ1AsRUFBQzs7O1NBQ0osRUE3QnFHLENBNkJyRyxDQUFDO0FBQ0osQ0FBQztBQUVELE1BQU0sQ0FBQyxJQUFNLHFDQUFxQyxHQUF3QjtJQUN4RSxJQUFJLEVBQUUsZ0NBQWdDO0lBQ3RDLElBQUksRUFBRSxPQUFPO0lBQ2IsSUFBSSxFQUFFLENBQUMsaUJBQWlCLEVBQUUsZUFBZSxDQUFDO0lBQzFDLFFBQVEsRUFBRSxJQUFJO0NBQ2YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLDZCQUE2QixHQUFHLFVBQUMsTUFBcUMsSUFBMEIsT0FBQSxDQUFDO0lBQzVHLFlBQVksRUFBRSxVQUFDLFdBQVc7UUFDeEIsV0FBVyxDQUFDLEdBQUcsQ0FBQyw4QkFBOEIsQ0FBQyxNQUFNLENBQUMsRUFBRSxxQ0FBcUMsQ0FBQyxDQUFDO0lBQ2pHLENBQUM7Q0FDRixDQUFDLEVBSjJHLENBSTNHLENBQUM7QUFFSCxTQUFTLFNBQVMsQ0FBQyxZQUFvQixFQUFFLE9BQWtCOztJQUN6RCxZQUFZLEdBQUcsWUFBWSxDQUFDLFdBQVcsRUFBRSxDQUFDOztRQUMxQyxLQUF5QixJQUFBLEtBQUEsU0FBQSxNQUFNLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFBLGdCQUFBLDRCQUFFO1lBQTFDLElBQU0sVUFBVSxXQUFBO1lBQ25CLElBQUksWUFBWSxLQUFLLFVBQVUsQ0FBQyxXQUFXLEVBQUUsRUFBRTtnQkFDN0MsT0FBTyxJQUFJLENBQUM7YUFDYjtTQUNGOzs7Ozs7Ozs7SUFFRCxPQUFPLEtBQUssQ0FBQztBQUNmLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBpc0FycmF5QnVmZmVyIH0gZnJvbSBcIkBhd3Mtc2RrL2lzLWFycmF5LWJ1ZmZlclwiO1xuaW1wb3J0IHsgSHR0cFJlcXVlc3QgfSBmcm9tIFwiQGF3cy1zZGsvcHJvdG9jb2wtaHR0cFwiO1xuaW1wb3J0IHtcbiAgQnVpbGRIYW5kbGVyLFxuICBCdWlsZEhhbmRsZXJBcmd1bWVudHMsXG4gIEJ1aWxkSGFuZGxlck9wdGlvbnMsXG4gIEJ1aWxkSGFuZGxlck91dHB1dCxcbiAgQnVpbGRNaWRkbGV3YXJlLFxuICBIZWFkZXJCYWcsXG4gIE1ldGFkYXRhQmVhcmVyLFxuICBQbHVnZ2FibGUsXG59IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBNZDVCb2R5Q2hlY2tzdW1SZXNvbHZlZENvbmZpZyB9IGZyb20gXCIuL21kNUNvbmZpZ3VyYXRpb25cIjtcblxuZXhwb3J0IGZ1bmN0aW9uIGFwcGx5TWQ1Qm9keUNoZWNrc3VtTWlkZGxld2FyZShvcHRpb25zOiBNZDVCb2R5Q2hlY2tzdW1SZXNvbHZlZENvbmZpZyk6IEJ1aWxkTWlkZGxld2FyZTxhbnksIGFueT4ge1xuICByZXR1cm4gPE91dHB1dCBleHRlbmRzIE1ldGFkYXRhQmVhcmVyPihuZXh0OiBCdWlsZEhhbmRsZXI8YW55LCBPdXRwdXQ+KTogQnVpbGRIYW5kbGVyPGFueSwgT3V0cHV0PiA9PiBhc3luYyAoXG4gICAgYXJnczogQnVpbGRIYW5kbGVyQXJndW1lbnRzPGFueT5cbiAgKTogUHJvbWlzZTxCdWlsZEhhbmRsZXJPdXRwdXQ8T3V0cHV0Pj4gPT4ge1xuICAgIGxldCB7IHJlcXVlc3QgfSA9IGFyZ3M7XG4gICAgaWYgKEh0dHBSZXF1ZXN0LmlzSW5zdGFuY2UocmVxdWVzdCkpIHtcbiAgICAgIGNvbnN0IHsgYm9keSwgaGVhZGVycyB9ID0gcmVxdWVzdDtcbiAgICAgIGlmICghaGFzSGVhZGVyKFwiQ29udGVudC1NRDVcIiwgaGVhZGVycykpIHtcbiAgICAgICAgbGV0IGRpZ2VzdDogUHJvbWlzZTxVaW50OEFycmF5PjtcbiAgICAgICAgaWYgKGJvZHkgPT09IHVuZGVmaW5lZCB8fCB0eXBlb2YgYm9keSA9PT0gXCJzdHJpbmdcIiB8fCBBcnJheUJ1ZmZlci5pc1ZpZXcoYm9keSkgfHwgaXNBcnJheUJ1ZmZlcihib2R5KSkge1xuICAgICAgICAgIGNvbnN0IGhhc2ggPSBuZXcgb3B0aW9ucy5tZDUoKTtcbiAgICAgICAgICBoYXNoLnVwZGF0ZShib2R5IHx8IFwiXCIpO1xuICAgICAgICAgIGRpZ2VzdCA9IGhhc2guZGlnZXN0KCk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgZGlnZXN0ID0gb3B0aW9ucy5zdHJlYW1IYXNoZXIob3B0aW9ucy5tZDUsIGJvZHkpO1xuICAgICAgICB9XG5cbiAgICAgICAgcmVxdWVzdCA9IHtcbiAgICAgICAgICAuLi5yZXF1ZXN0LFxuICAgICAgICAgIGhlYWRlcnM6IHtcbiAgICAgICAgICAgIC4uLmhlYWRlcnMsXG4gICAgICAgICAgICBcIkNvbnRlbnQtTUQ1XCI6IG9wdGlvbnMuYmFzZTY0RW5jb2Rlcihhd2FpdCBkaWdlc3QpLFxuICAgICAgICAgIH0sXG4gICAgICAgIH07XG4gICAgICB9XG4gICAgfVxuICAgIHJldHVybiBuZXh0KHtcbiAgICAgIC4uLmFyZ3MsXG4gICAgICByZXF1ZXN0LFxuICAgIH0pO1xuICB9O1xufVxuXG5leHBvcnQgY29uc3QgYXBwbHlNZDVCb2R5Q2hlY2tzdW1NaWRkbGV3YXJlT3B0aW9uczogQnVpbGRIYW5kbGVyT3B0aW9ucyA9IHtcbiAgbmFtZTogXCJhcHBseU1kNUJvZHlDaGVja3N1bU1pZGRsZXdhcmVcIixcbiAgc3RlcDogXCJidWlsZFwiLFxuICB0YWdzOiBbXCJTRVRfQ09OVEVOVF9NRDVcIiwgXCJCT0RZX0NIRUNLU1VNXCJdLFxuICBvdmVycmlkZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBnZXRBcHBseU1kNUJvZHlDaGVja3N1bVBsdWdpbiA9IChjb25maWc6IE1kNUJvZHlDaGVja3N1bVJlc29sdmVkQ29uZmlnKTogUGx1Z2dhYmxlPGFueSwgYW55PiA9PiAoe1xuICBhcHBseVRvU3RhY2s6IChjbGllbnRTdGFjaykgPT4ge1xuICAgIGNsaWVudFN0YWNrLmFkZChhcHBseU1kNUJvZHlDaGVja3N1bU1pZGRsZXdhcmUoY29uZmlnKSwgYXBwbHlNZDVCb2R5Q2hlY2tzdW1NaWRkbGV3YXJlT3B0aW9ucyk7XG4gIH0sXG59KTtcblxuZnVuY3Rpb24gaGFzSGVhZGVyKHNvdWdodEhlYWRlcjogc3RyaW5nLCBoZWFkZXJzOiBIZWFkZXJCYWcpOiBib29sZWFuIHtcbiAgc291Z2h0SGVhZGVyID0gc291Z2h0SGVhZGVyLnRvTG93ZXJDYXNlKCk7XG4gIGZvciAoY29uc3QgaGVhZGVyTmFtZSBvZiBPYmplY3Qua2V5cyhoZWFkZXJzKSkge1xuICAgIGlmIChzb3VnaHRIZWFkZXIgPT09IGhlYWRlck5hbWUudG9Mb3dlckNhc2UoKSkge1xuICAgICAgcmV0dXJuIHRydWU7XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIGZhbHNlO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/applyMd5BodyChecksumMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/index.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/index.js ***! \*******************************************************************************/ /*! exports provided: resolveMd5BodyChecksumConfig, applyMd5BodyChecksumMiddleware, applyMd5BodyChecksumMiddlewareOptions, getApplyMd5BodyChecksumPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _md5Configuration__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./md5Configuration */ \"./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/md5Configuration.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveMd5BodyChecksumConfig\", function() { return _md5Configuration__WEBPACK_IMPORTED_MODULE_0__[\"resolveMd5BodyChecksumConfig\"]; });\n\n/* harmony import */ var _applyMd5BodyChecksumMiddleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./applyMd5BodyChecksumMiddleware */ \"./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/applyMd5BodyChecksumMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"applyMd5BodyChecksumMiddleware\", function() { return _applyMd5BodyChecksumMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"applyMd5BodyChecksumMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"applyMd5BodyChecksumMiddlewareOptions\", function() { return _applyMd5BodyChecksumMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"applyMd5BodyChecksumMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getApplyMd5BodyChecksumPlugin\", function() { return _applyMd5BodyChecksumMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"getApplyMd5BodyChecksumPlugin\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGtDQUFrQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vbWQ1Q29uZmlndXJhdGlvblwiO1xuZXhwb3J0ICogZnJvbSBcIi4vYXBwbHlNZDVCb2R5Q2hlY2tzdW1NaWRkbGV3YXJlXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/md5Configuration.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/md5Configuration.js ***! \******************************************************************************************/ /*! exports provided: resolveMd5BodyChecksumConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveMd5BodyChecksumConfig\", function() { return resolveMd5BodyChecksumConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nfunction resolveMd5BodyChecksumConfig(input) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input);\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWQ1Q29uZmlndXJhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9tZDVDb25maWd1cmF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFhQSxNQUFNLFVBQVUsNEJBQTRCLENBQzFDLEtBQTBEO0lBRTFELG9CQUNLLEtBQUssRUFDUjtBQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFbmNvZGVyLCBIYXNoLCBTdHJlYW1IYXNoZXIgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGludGVyZmFjZSBNZDVCb2R5Q2hlY2tzdW1JbnB1dENvbmZpZyB7fVxuaW50ZXJmYWNlIFByZXZpb3VzbHlSZXNvbHZlZCB7XG4gIG1kNTogeyBuZXcgKCk6IEhhc2ggfTtcbiAgYmFzZTY0RW5jb2RlcjogRW5jb2RlcjtcbiAgc3RyZWFtSGFzaGVyOiBTdHJlYW1IYXNoZXI8YW55Pjtcbn1cbmV4cG9ydCBpbnRlcmZhY2UgTWQ1Qm9keUNoZWNrc3VtUmVzb2x2ZWRDb25maWcge1xuICBtZDU6IHsgbmV3ICgpOiBIYXNoIH07XG4gIGJhc2U2NEVuY29kZXI6IEVuY29kZXI7XG4gIHN0cmVhbUhhc2hlcjogU3RyZWFtSGFzaGVyPGFueT47XG59XG5leHBvcnQgZnVuY3Rpb24gcmVzb2x2ZU1kNUJvZHlDaGVja3N1bUNvbmZpZzxUPihcbiAgaW5wdXQ6IFQgJiBQcmV2aW91c2x5UmVzb2x2ZWQgJiBNZDVCb2R5Q2hlY2tzdW1JbnB1dENvbmZpZ1xuKTogVCAmIE1kNUJvZHlDaGVja3N1bVJlc29sdmVkQ29uZmlnIHtcbiAgcmV0dXJuIHtcbiAgICAuLi5pbnB1dCxcbiAgfTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-apply-body-checksum/dist/es/md5Configuration.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketEndpointMiddleware.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketEndpointMiddleware.js ***! \**********************************************************************************************/ /*! exports provided: bucketEndpointMiddleware, bucketEndpointMiddlewareOptions, getBucketEndpointPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"bucketEndpointMiddleware\", function() { return bucketEndpointMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"bucketEndpointMiddlewareOptions\", function() { return bucketEndpointMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getBucketEndpointPlugin\", function() { return getBucketEndpointPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_arn_parser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-arn-parser */ \"./node_modules/@aws-sdk/util-arn-parser/dist/es/index.js\");\n/* harmony import */ var _bucketHostname__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./bucketHostname */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostname.js\");\n/* harmony import */ var _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./bucketHostnameUtils */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostnameUtils.js\");\n\n\n\n\n\nvar bucketEndpointMiddleware = function (options) { return function (next, context) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var bucketName, replaceBucketInPath, request, bucketArn, clientRegion, _a, _b, partition, _c, signingRegion, useArnRegion, _d, hostname, bucketEndpoint, modifiedSigningRegion, signingService, clientRegion, _e, _f, hostname, bucketEndpoint;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n bucketName = args.input.Bucket;\n replaceBucketInPath = options.bucketEndpoint;\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) return [3 /*break*/, 8];\n if (!options.bucketEndpoint) return [3 /*break*/, 1];\n request.hostname = bucketName;\n return [3 /*break*/, 7];\n case 1:\n if (!Object(_aws_sdk_util_arn_parser__WEBPACK_IMPORTED_MODULE_2__[\"validate\"])(bucketName)) return [3 /*break*/, 5];\n bucketArn = Object(_aws_sdk_util_arn_parser__WEBPACK_IMPORTED_MODULE_2__[\"parse\"])(bucketName);\n _a = _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_4__[\"getPseudoRegion\"];\n return [4 /*yield*/, options.region()];\n case 2:\n clientRegion = _a.apply(void 0, [_g.sent()]);\n return [4 /*yield*/, options.regionInfoProvider(clientRegion)];\n case 3:\n _b = (_g.sent()) || {}, partition = _b.partition, _c = _b.signingRegion, signingRegion = _c === void 0 ? clientRegion : _c;\n return [4 /*yield*/, options.useArnRegion()];\n case 4:\n useArnRegion = _g.sent();\n _d = Object(_bucketHostname__WEBPACK_IMPORTED_MODULE_3__[\"bucketHostname\"])({\n bucketName: bucketArn,\n baseHostname: request.hostname,\n accelerateEndpoint: options.useAccelerateEndpoint,\n dualstackEndpoint: options.useDualstackEndpoint,\n pathStyleEndpoint: options.forcePathStyle,\n tlsCompatible: request.protocol === \"https:\",\n useArnRegion: useArnRegion,\n clientPartition: partition,\n clientSigningRegion: signingRegion,\n clientRegion: clientRegion,\n isCustomEndpoint: options.isCustomEndpoint,\n }), hostname = _d.hostname, bucketEndpoint = _d.bucketEndpoint, modifiedSigningRegion = _d.signingRegion, signingService = _d.signingService;\n // If the request needs to use a region or service name inferred from ARN that different from client region, we\n // need to set them in the handler context so the signer will use them\n if (modifiedSigningRegion && modifiedSigningRegion !== signingRegion) {\n context[\"signing_region\"] = modifiedSigningRegion;\n }\n if (signingService && signingService !== \"s3\") {\n context[\"signing_service\"] = signingService;\n }\n request.hostname = hostname;\n replaceBucketInPath = bucketEndpoint;\n return [3 /*break*/, 7];\n case 5:\n _e = _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_4__[\"getPseudoRegion\"];\n return [4 /*yield*/, options.region()];\n case 6:\n clientRegion = _e.apply(void 0, [_g.sent()]);\n _f = Object(_bucketHostname__WEBPACK_IMPORTED_MODULE_3__[\"bucketHostname\"])({\n bucketName: bucketName,\n clientRegion: clientRegion,\n baseHostname: request.hostname,\n accelerateEndpoint: options.useAccelerateEndpoint,\n dualstackEndpoint: options.useDualstackEndpoint,\n pathStyleEndpoint: options.forcePathStyle,\n tlsCompatible: request.protocol === \"https:\",\n isCustomEndpoint: options.isCustomEndpoint,\n }), hostname = _f.hostname, bucketEndpoint = _f.bucketEndpoint;\n request.hostname = hostname;\n replaceBucketInPath = bucketEndpoint;\n _g.label = 7;\n case 7:\n if (replaceBucketInPath) {\n request.path = request.path.replace(/^(\\/)?[^\\/]+/, \"\");\n if (request.path === \"\") {\n request.path = \"/\";\n }\n }\n _g.label = 8;\n case 8: return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n}); }; }; };\nvar bucketEndpointMiddlewareOptions = {\n tags: [\"BUCKET_ENDPOINT\"],\n name: \"bucketEndpointMiddleware\",\n relation: \"before\",\n toMiddleware: \"hostHeaderMiddleware\",\n override: true,\n};\nvar getBucketEndpointPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(bucketEndpointMiddleware(options), bucketEndpointMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVja2V0RW5kcG9pbnRNaWRkbGV3YXJlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2J1Y2tldEVuZHBvaW50TWlkZGxld2FyZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBV3JELE9BQU8sRUFBRSxLQUFLLElBQUksUUFBUSxFQUFFLFFBQVEsSUFBSSxXQUFXLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUV0RixPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDbEQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBR3hELE1BQU0sQ0FBQyxJQUFNLHdCQUF3QixHQUFHLFVBQUMsT0FBcUMsSUFBZ0MsT0FBQSxVQUc1RyxJQUErQixFQUMvQixPQUFnQyxJQUNGLE9BQUEsVUFBTyxJQUFnQzs7Ozs7Z0JBQ3JELFVBQVUsR0FBSyxJQUFJLENBQUMsS0FBMkIsT0FBckMsQ0FBc0M7Z0JBQzVELG1CQUFtQixHQUFHLE9BQU8sQ0FBQyxjQUFjLENBQUM7Z0JBQzNDLE9BQU8sR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDO3FCQUN6QixXQUFXLENBQUMsVUFBVSxDQUFDLE9BQU8sQ0FBQyxFQUEvQix3QkFBK0I7cUJBQzdCLE9BQU8sQ0FBQyxjQUFjLEVBQXRCLHdCQUFzQjtnQkFDeEIsT0FBTyxDQUFDLFFBQVEsR0FBRyxVQUFVLENBQUM7OztxQkFDckIsV0FBVyxDQUFDLFVBQVUsQ0FBQyxFQUF2Qix3QkFBdUI7Z0JBQzFCLFNBQVMsR0FBRyxRQUFRLENBQUMsVUFBVSxDQUFDLENBQUM7Z0JBQ2xCLEtBQUEsZUFBZSxDQUFBO2dCQUFDLHFCQUFNLE9BQU8sQ0FBQyxNQUFNLEVBQUUsRUFBQTs7Z0JBQXJELFlBQVksR0FBRyxrQkFBZ0IsU0FBc0IsRUFBQztnQkFDUCxxQkFBTSxPQUFPLENBQUMsa0JBQWtCLENBQUMsWUFBWSxDQUFDLEVBQUE7O2dCQUE3RixLQUE4QyxDQUFDLFNBQThDLENBQUMsSUFBSSxFQUFFLEVBQWxHLFNBQVMsZUFBQSxFQUFFLHFCQUE0QixFQUE1QixhQUFhLG1CQUFHLFlBQVksS0FBQTtnQkFDMUIscUJBQU0sT0FBTyxDQUFDLFlBQVksRUFBRSxFQUFBOztnQkFBM0MsWUFBWSxHQUFHLFNBQTRCO2dCQUMzQyxLQUFxRixjQUFjLENBQUM7b0JBQ3hHLFVBQVUsRUFBRSxTQUFTO29CQUNyQixZQUFZLEVBQUUsT0FBTyxDQUFDLFFBQVE7b0JBQzlCLGtCQUFrQixFQUFFLE9BQU8sQ0FBQyxxQkFBcUI7b0JBQ2pELGlCQUFpQixFQUFFLE9BQU8sQ0FBQyxvQkFBb0I7b0JBQy9DLGlCQUFpQixFQUFFLE9BQU8sQ0FBQyxjQUFjO29CQUN6QyxhQUFhLEVBQUUsT0FBTyxDQUFDLFFBQVEsS0FBSyxRQUFRO29CQUM1QyxZQUFZLGNBQUE7b0JBQ1osZUFBZSxFQUFFLFNBQVM7b0JBQzFCLG1CQUFtQixFQUFFLGFBQWE7b0JBQ2xDLFlBQVksRUFBRSxZQUFZO29CQUMxQixnQkFBZ0IsRUFBRSxPQUFPLENBQUMsZ0JBQWdCO2lCQUMzQyxDQUFDLEVBWk0sUUFBUSxjQUFBLEVBQUUsY0FBYyxvQkFBQSxFQUFpQixxQkFBcUIsbUJBQUEsRUFBRSxjQUFjLG9CQUFBLENBWW5GO2dCQUVILCtHQUErRztnQkFDL0csc0VBQXNFO2dCQUN0RSxJQUFJLHFCQUFxQixJQUFJLHFCQUFxQixLQUFLLGFBQWEsRUFBRTtvQkFDcEUsT0FBTyxDQUFDLGdCQUFnQixDQUFDLEdBQUcscUJBQXFCLENBQUM7aUJBQ25EO2dCQUNELElBQUksY0FBYyxJQUFJLGNBQWMsS0FBSyxJQUFJLEVBQUU7b0JBQzdDLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQyxHQUFHLGNBQWMsQ0FBQztpQkFDN0M7Z0JBRUQsT0FBTyxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7Z0JBQzVCLG1CQUFtQixHQUFHLGNBQWMsQ0FBQzs7O2dCQUVoQixLQUFBLGVBQWUsQ0FBQTtnQkFBQyxxQkFBTSxPQUFPLENBQUMsTUFBTSxFQUFFLEVBQUE7O2dCQUFyRCxZQUFZLEdBQUcsa0JBQWdCLFNBQXNCLEVBQUM7Z0JBQ3RELEtBQStCLGNBQWMsQ0FBQztvQkFDbEQsVUFBVSxZQUFBO29CQUNWLFlBQVksY0FBQTtvQkFDWixZQUFZLEVBQUUsT0FBTyxDQUFDLFFBQVE7b0JBQzlCLGtCQUFrQixFQUFFLE9BQU8sQ0FBQyxxQkFBcUI7b0JBQ2pELGlCQUFpQixFQUFFLE9BQU8sQ0FBQyxvQkFBb0I7b0JBQy9DLGlCQUFpQixFQUFFLE9BQU8sQ0FBQyxjQUFjO29CQUN6QyxhQUFhLEVBQUUsT0FBTyxDQUFDLFFBQVEsS0FBSyxRQUFRO29CQUM1QyxnQkFBZ0IsRUFBRSxPQUFPLENBQUMsZ0JBQWdCO2lCQUMzQyxDQUFDLEVBVE0sUUFBUSxjQUFBLEVBQUUsY0FBYyxvQkFBQSxDQVM3QjtnQkFFSCxPQUFPLENBQUMsUUFBUSxHQUFHLFFBQVEsQ0FBQztnQkFDNUIsbUJBQW1CLEdBQUcsY0FBYyxDQUFDOzs7Z0JBR3ZDLElBQUksbUJBQW1CLEVBQUU7b0JBQ3ZCLE9BQU8sQ0FBQyxJQUFJLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsY0FBYyxFQUFFLEVBQUUsQ0FBQyxDQUFDO29CQUN4RCxJQUFJLE9BQU8sQ0FBQyxJQUFJLEtBQUssRUFBRSxFQUFFO3dCQUN2QixPQUFPLENBQUMsSUFBSSxHQUFHLEdBQUcsQ0FBQztxQkFDcEI7aUJBQ0Y7O29CQUdILHNCQUFPLElBQUksdUJBQU0sSUFBSSxLQUFFLE9BQU8sU0FBQSxJQUFHLEVBQUM7OztLQUNuQyxFQS9EK0IsQ0ErRC9CLEVBcEU2RyxDQW9FN0csQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLCtCQUErQixHQUE4QjtJQUN4RSxJQUFJLEVBQUUsQ0FBQyxpQkFBaUIsQ0FBQztJQUN6QixJQUFJLEVBQUUsMEJBQTBCO0lBQ2hDLFFBQVEsRUFBRSxRQUFRO0lBQ2xCLFlBQVksRUFBRSxzQkFBc0I7SUFDcEMsUUFBUSxFQUFFLElBQUk7Q0FDZixDQUFDO0FBRUYsTUFBTSxDQUFDLElBQU0sdUJBQXVCLEdBQUcsVUFBQyxPQUFxQyxJQUEwQixPQUFBLENBQUM7SUFDdEcsWUFBWSxFQUFFLFVBQUMsV0FBVztRQUN4QixXQUFXLENBQUMsYUFBYSxDQUFDLHdCQUF3QixDQUFDLE9BQU8sQ0FBQyxFQUFFLCtCQUErQixDQUFDLENBQUM7SUFDaEcsQ0FBQztDQUNGLENBQUMsRUFKcUcsQ0FJckcsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBSZXF1ZXN0IH0gZnJvbSBcIkBhd3Mtc2RrL3Byb3RvY29sLWh0dHBcIjtcbmltcG9ydCB7XG4gIEJ1aWxkSGFuZGxlcixcbiAgQnVpbGRIYW5kbGVyQXJndW1lbnRzLFxuICBCdWlsZEhhbmRsZXJPdXRwdXQsXG4gIEJ1aWxkTWlkZGxld2FyZSxcbiAgSGFuZGxlckV4ZWN1dGlvbkNvbnRleHQsXG4gIE1ldGFkYXRhQmVhcmVyLFxuICBQbHVnZ2FibGUsXG4gIFJlbGF0aXZlTWlkZGxld2FyZU9wdGlvbnMsXG59IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuaW1wb3J0IHsgcGFyc2UgYXMgcGFyc2VBcm4sIHZhbGlkYXRlIGFzIHZhbGlkYXRlQXJuIH0gZnJvbSBcIkBhd3Mtc2RrL3V0aWwtYXJuLXBhcnNlclwiO1xuXG5pbXBvcnQgeyBidWNrZXRIb3N0bmFtZSB9IGZyb20gXCIuL2J1Y2tldEhvc3RuYW1lXCI7XG5pbXBvcnQgeyBnZXRQc2V1ZG9SZWdpb24gfSBmcm9tIFwiLi9idWNrZXRIb3N0bmFtZVV0aWxzXCI7XG5pbXBvcnQgeyBCdWNrZXRFbmRwb2ludFJlc29sdmVkQ29uZmlnIH0gZnJvbSBcIi4vY29uZmlndXJhdGlvbnNcIjtcblxuZXhwb3J0IGNvbnN0IGJ1Y2tldEVuZHBvaW50TWlkZGxld2FyZSA9IChvcHRpb25zOiBCdWNrZXRFbmRwb2ludFJlc29sdmVkQ29uZmlnKTogQnVpbGRNaWRkbGV3YXJlPGFueSwgYW55PiA9PiA8XG4gIE91dHB1dCBleHRlbmRzIE1ldGFkYXRhQmVhcmVyXG4+KFxuICBuZXh0OiBCdWlsZEhhbmRsZXI8YW55LCBPdXRwdXQ+LFxuICBjb250ZXh0OiBIYW5kbGVyRXhlY3V0aW9uQ29udGV4dFxuKTogQnVpbGRIYW5kbGVyPGFueSwgT3V0cHV0PiA9PiBhc3luYyAoYXJnczogQnVpbGRIYW5kbGVyQXJndW1lbnRzPGFueT4pOiBQcm9taXNlPEJ1aWxkSGFuZGxlck91dHB1dDxPdXRwdXQ+PiA9PiB7XG4gIGNvbnN0IHsgQnVja2V0OiBidWNrZXROYW1lIH0gPSBhcmdzLmlucHV0IGFzIHsgQnVja2V0OiBzdHJpbmcgfTtcbiAgbGV0IHJlcGxhY2VCdWNrZXRJblBhdGggPSBvcHRpb25zLmJ1Y2tldEVuZHBvaW50O1xuICBjb25zdCByZXF1ZXN0ID0gYXJncy5yZXF1ZXN0O1xuICBpZiAoSHR0cFJlcXVlc3QuaXNJbnN0YW5jZShyZXF1ZXN0KSkge1xuICAgIGlmIChvcHRpb25zLmJ1Y2tldEVuZHBvaW50KSB7XG4gICAgICByZXF1ZXN0Lmhvc3RuYW1lID0gYnVja2V0TmFtZTtcbiAgICB9IGVsc2UgaWYgKHZhbGlkYXRlQXJuKGJ1Y2tldE5hbWUpKSB7XG4gICAgICBjb25zdCBidWNrZXRBcm4gPSBwYXJzZUFybihidWNrZXROYW1lKTtcbiAgICAgIGNvbnN0IGNsaWVudFJlZ2lvbiA9IGdldFBzZXVkb1JlZ2lvbihhd2FpdCBvcHRpb25zLnJlZ2lvbigpKTtcbiAgICAgIGNvbnN0IHsgcGFydGl0aW9uLCBzaWduaW5nUmVnaW9uID0gY2xpZW50UmVnaW9uIH0gPSAoYXdhaXQgb3B0aW9ucy5yZWdpb25JbmZvUHJvdmlkZXIoY2xpZW50UmVnaW9uKSkgfHwge307XG4gICAgICBjb25zdCB1c2VBcm5SZWdpb24gPSBhd2FpdCBvcHRpb25zLnVzZUFyblJlZ2lvbigpO1xuICAgICAgY29uc3QgeyBob3N0bmFtZSwgYnVja2V0RW5kcG9pbnQsIHNpZ25pbmdSZWdpb246IG1vZGlmaWVkU2lnbmluZ1JlZ2lvbiwgc2lnbmluZ1NlcnZpY2UgfSA9IGJ1Y2tldEhvc3RuYW1lKHtcbiAgICAgICAgYnVja2V0TmFtZTogYnVja2V0QXJuLFxuICAgICAgICBiYXNlSG9zdG5hbWU6IHJlcXVlc3QuaG9zdG5hbWUsXG4gICAgICAgIGFjY2VsZXJhdGVFbmRwb2ludDogb3B0aW9ucy51c2VBY2NlbGVyYXRlRW5kcG9pbnQsXG4gICAgICAgIGR1YWxzdGFja0VuZHBvaW50OiBvcHRpb25zLnVzZUR1YWxzdGFja0VuZHBvaW50LFxuICAgICAgICBwYXRoU3R5bGVFbmRwb2ludDogb3B0aW9ucy5mb3JjZVBhdGhTdHlsZSxcbiAgICAgICAgdGxzQ29tcGF0aWJsZTogcmVxdWVzdC5wcm90b2NvbCA9PT0gXCJodHRwczpcIixcbiAgICAgICAgdXNlQXJuUmVnaW9uLFxuICAgICAgICBjbGllbnRQYXJ0aXRpb246IHBhcnRpdGlvbixcbiAgICAgICAgY2xpZW50U2lnbmluZ1JlZ2lvbjogc2lnbmluZ1JlZ2lvbixcbiAgICAgICAgY2xpZW50UmVnaW9uOiBjbGllbnRSZWdpb24sXG4gICAgICAgIGlzQ3VzdG9tRW5kcG9pbnQ6IG9wdGlvbnMuaXNDdXN0b21FbmRwb2ludCxcbiAgICAgIH0pO1xuXG4gICAgICAvLyBJZiB0aGUgcmVxdWVzdCBuZWVkcyB0byB1c2UgYSByZWdpb24gb3Igc2VydmljZSBuYW1lIGluZmVycmVkIGZyb20gQVJOIHRoYXQgZGlmZmVyZW50IGZyb20gY2xpZW50IHJlZ2lvbiwgd2VcbiAgICAgIC8vIG5lZWQgdG8gc2V0IHRoZW0gaW4gdGhlIGhhbmRsZXIgY29udGV4dCBzbyB0aGUgc2lnbmVyIHdpbGwgdXNlIHRoZW1cbiAgICAgIGlmIChtb2RpZmllZFNpZ25pbmdSZWdpb24gJiYgbW9kaWZpZWRTaWduaW5nUmVnaW9uICE9PSBzaWduaW5nUmVnaW9uKSB7XG4gICAgICAgIGNvbnRleHRbXCJzaWduaW5nX3JlZ2lvblwiXSA9IG1vZGlmaWVkU2lnbmluZ1JlZ2lvbjtcbiAgICAgIH1cbiAgICAgIGlmIChzaWduaW5nU2VydmljZSAmJiBzaWduaW5nU2VydmljZSAhPT0gXCJzM1wiKSB7XG4gICAgICAgIGNvbnRleHRbXCJzaWduaW5nX3NlcnZpY2VcIl0gPSBzaWduaW5nU2VydmljZTtcbiAgICAgIH1cblxuICAgICAgcmVxdWVzdC5ob3N0bmFtZSA9IGhvc3RuYW1lO1xuICAgICAgcmVwbGFjZUJ1Y2tldEluUGF0aCA9IGJ1Y2tldEVuZHBvaW50O1xuICAgIH0gZWxzZSB7XG4gICAgICBjb25zdCBjbGllbnRSZWdpb24gPSBnZXRQc2V1ZG9SZWdpb24oYXdhaXQgb3B0aW9ucy5yZWdpb24oKSk7XG4gICAgICBjb25zdCB7IGhvc3RuYW1lLCBidWNrZXRFbmRwb2ludCB9ID0gYnVja2V0SG9zdG5hbWUoe1xuICAgICAgICBidWNrZXROYW1lLFxuICAgICAgICBjbGllbnRSZWdpb24sXG4gICAgICAgIGJhc2VIb3N0bmFtZTogcmVxdWVzdC5ob3N0bmFtZSxcbiAgICAgICAgYWNjZWxlcmF0ZUVuZHBvaW50OiBvcHRpb25zLnVzZUFjY2VsZXJhdGVFbmRwb2ludCxcbiAgICAgICAgZHVhbHN0YWNrRW5kcG9pbnQ6IG9wdGlvbnMudXNlRHVhbHN0YWNrRW5kcG9pbnQsXG4gICAgICAgIHBhdGhTdHlsZUVuZHBvaW50OiBvcHRpb25zLmZvcmNlUGF0aFN0eWxlLFxuICAgICAgICB0bHNDb21wYXRpYmxlOiByZXF1ZXN0LnByb3RvY29sID09PSBcImh0dHBzOlwiLFxuICAgICAgICBpc0N1c3RvbUVuZHBvaW50OiBvcHRpb25zLmlzQ3VzdG9tRW5kcG9pbnQsXG4gICAgICB9KTtcblxuICAgICAgcmVxdWVzdC5ob3N0bmFtZSA9IGhvc3RuYW1lO1xuICAgICAgcmVwbGFjZUJ1Y2tldEluUGF0aCA9IGJ1Y2tldEVuZHBvaW50O1xuICAgIH1cblxuICAgIGlmIChyZXBsYWNlQnVja2V0SW5QYXRoKSB7XG4gICAgICByZXF1ZXN0LnBhdGggPSByZXF1ZXN0LnBhdGgucmVwbGFjZSgvXihcXC8pP1teXFwvXSsvLCBcIlwiKTtcbiAgICAgIGlmIChyZXF1ZXN0LnBhdGggPT09IFwiXCIpIHtcbiAgICAgICAgcmVxdWVzdC5wYXRoID0gXCIvXCI7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIG5leHQoeyAuLi5hcmdzLCByZXF1ZXN0IH0pO1xufTtcblxuZXhwb3J0IGNvbnN0IGJ1Y2tldEVuZHBvaW50TWlkZGxld2FyZU9wdGlvbnM6IFJlbGF0aXZlTWlkZGxld2FyZU9wdGlvbnMgPSB7XG4gIHRhZ3M6IFtcIkJVQ0tFVF9FTkRQT0lOVFwiXSxcbiAgbmFtZTogXCJidWNrZXRFbmRwb2ludE1pZGRsZXdhcmVcIixcbiAgcmVsYXRpb246IFwiYmVmb3JlXCIsXG4gIHRvTWlkZGxld2FyZTogXCJob3N0SGVhZGVyTWlkZGxld2FyZVwiLFxuICBvdmVycmlkZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBnZXRCdWNrZXRFbmRwb2ludFBsdWdpbiA9IChvcHRpb25zOiBCdWNrZXRFbmRwb2ludFJlc29sdmVkQ29uZmlnKTogUGx1Z2dhYmxlPGFueSwgYW55PiA9PiAoe1xuICBhcHBseVRvU3RhY2s6IChjbGllbnRTdGFjaykgPT4ge1xuICAgIGNsaWVudFN0YWNrLmFkZFJlbGF0aXZlVG8oYnVja2V0RW5kcG9pbnRNaWRkbGV3YXJlKG9wdGlvbnMpLCBidWNrZXRFbmRwb2ludE1pZGRsZXdhcmVPcHRpb25zKTtcbiAgfSxcbn0pO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketEndpointMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostname.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostname.js ***! \************************************************************************************/ /*! exports provided: bucketHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"bucketHostname\", function() { return bucketHostname; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./bucketHostnameUtils */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostnameUtils.js\");\n\n\nvar bucketHostname = function (options) {\n var isCustomEndpoint = options.isCustomEndpoint, baseHostname = options.baseHostname, dualstackEndpoint = options.dualstackEndpoint, accelerateEndpoint = options.accelerateEndpoint;\n if (isCustomEndpoint) {\n if (dualstackEndpoint)\n throw new Error(\"Dualstack endpoint is not supported with custom endpoint\");\n if (accelerateEndpoint)\n throw new Error(\"Accelerate endpoint is not supported with custom endpoint\");\n }\n return Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"isBucketNameOptions\"])(options)\n ? // Construct endpoint when bucketName is a string referring to a bucket name\n getEndpointFromBucketName(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, options), { isCustomEndpoint: isCustomEndpoint }))\n : // Construct endpoint when bucketName is an ARN referring to an S3 resource like Access Point\n getEndpointFromArn(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, options), { isCustomEndpoint: isCustomEndpoint }));\n};\nvar getEndpointFromArn = function (options) {\n var isCustomEndpoint = options.isCustomEndpoint, baseHostname = options.baseHostname;\n var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(isCustomEndpoint\n ? [options.clientRegion, baseHostname]\n : // Infer client region and hostname suffix from hostname from endpoints.json, like `s3.us-west-2.amazonaws.com`\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"getSuffixForArnEndpoint\"])(baseHostname), 2), clientRegion = _a[0], hostnameSuffix = _a[1];\n var pathStyleEndpoint = options.pathStyleEndpoint, _b = options.dualstackEndpoint, dualstackEndpoint = _b === void 0 ? false : _b, _c = options.accelerateEndpoint, accelerateEndpoint = _c === void 0 ? false : _c, _d = options.tlsCompatible, tlsCompatible = _d === void 0 ? true : _d, useArnRegion = options.useArnRegion, bucketName = options.bucketName, _e = options.clientPartition, clientPartition = _e === void 0 ? \"aws\" : _e, _f = options.clientSigningRegion, clientSigningRegion = _f === void 0 ? clientRegion : _f;\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateArnEndpointOptions\"])({ pathStyleEndpoint: pathStyleEndpoint, accelerateEndpoint: accelerateEndpoint, tlsCompatible: tlsCompatible });\n // Validate and parse the ARN supplied as a bucket name\n var service = bucketName.service, partition = bucketName.partition, accountId = bucketName.accountId, region = bucketName.region, resource = bucketName.resource;\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateService\"])(service);\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validatePartition\"])(partition, { clientPartition: clientPartition });\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateAccountId\"])(accountId);\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateRegion\"])(region, { useArnRegion: useArnRegion, clientRegion: clientRegion, clientSigningRegion: clientSigningRegion });\n var _g = Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"getArnResources\"])(resource), accesspointName = _g.accesspointName, outpostId = _g.outpostId;\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateDNSHostLabel\"])(accesspointName + \"-\" + accountId, { tlsCompatible: tlsCompatible });\n var endpointRegion = useArnRegion ? region : clientRegion;\n var signingRegion = useArnRegion ? region : clientSigningRegion;\n if (outpostId) {\n // if this is an Outpost ARN\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateOutpostService\"])(service);\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateDNSHostLabel\"])(outpostId, { tlsCompatible: tlsCompatible });\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateNoDualstack\"])(dualstackEndpoint);\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateNoFIPS\"])(endpointRegion);\n var hostnamePrefix_1 = accesspointName + \"-\" + accountId + \".\" + outpostId;\n return {\n bucketEndpoint: true,\n hostname: \"\" + hostnamePrefix_1 + (isCustomEndpoint ? \"\" : \".s3-outposts.\" + endpointRegion) + \".\" + hostnameSuffix,\n signingRegion: signingRegion,\n signingService: \"s3-outposts\",\n };\n }\n // construct endpoint from Accesspoint ARN\n Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"validateS3Service\"])(service);\n var hostnamePrefix = accesspointName + \"-\" + accountId;\n return {\n bucketEndpoint: true,\n hostname: \"\" + hostnamePrefix + (isCustomEndpoint ? \"\" : \".s3-accesspoint\" + (dualstackEndpoint ? \".dualstack\" : \"\") + \".\" + endpointRegion) + \".\" + hostnameSuffix,\n signingRegion: signingRegion,\n };\n};\nvar getEndpointFromBucketName = function (_a) {\n var _b = _a.accelerateEndpoint, accelerateEndpoint = _b === void 0 ? false : _b, region = _a.clientRegion, baseHostname = _a.baseHostname, bucketName = _a.bucketName, _c = _a.dualstackEndpoint, dualstackEndpoint = _c === void 0 ? false : _c, _d = _a.pathStyleEndpoint, pathStyleEndpoint = _d === void 0 ? false : _d, _e = _a.tlsCompatible, tlsCompatible = _e === void 0 ? true : _e, _f = _a.isCustomEndpoint, isCustomEndpoint = _f === void 0 ? false : _f;\n var _g = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(isCustomEndpoint ? [region, baseHostname] : Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"getSuffix\"])(baseHostname), 2), clientRegion = _g[0], hostnameSuffix = _g[1];\n if (pathStyleEndpoint || !Object(_bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"isDnsCompatibleBucketName\"])(bucketName) || (tlsCompatible && _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_1__[\"DOT_PATTERN\"].test(bucketName))) {\n return {\n bucketEndpoint: false,\n hostname: dualstackEndpoint ? \"s3.dualstack.\" + clientRegion + \".\" + hostnameSuffix : baseHostname,\n };\n }\n if (accelerateEndpoint) {\n baseHostname = \"s3-accelerate\" + (dualstackEndpoint ? \".dualstack\" : \"\") + \".\" + hostnameSuffix;\n }\n else if (dualstackEndpoint) {\n baseHostname = \"s3.dualstack.\" + clientRegion + \".\" + hostnameSuffix;\n }\n return {\n bucketEndpoint: true,\n hostname: bucketName + \".\" + baseHostname,\n };\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVja2V0SG9zdG5hbWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYnVja2V0SG9zdG5hbWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFHTCxXQUFXLEVBQ1gsZUFBZSxFQUNmLFNBQVMsRUFDVCx1QkFBdUIsRUFDdkIsbUJBQW1CLEVBQ25CLHlCQUF5QixFQUN6QixpQkFBaUIsRUFDakIsMEJBQTBCLEVBQzFCLG9CQUFvQixFQUNwQixtQkFBbUIsRUFDbkIsY0FBYyxFQUNkLHNCQUFzQixFQUN0QixpQkFBaUIsRUFDakIsY0FBYyxFQUNkLGlCQUFpQixFQUNqQixlQUFlLEdBQ2hCLE1BQU0sdUJBQXVCLENBQUM7QUFTL0IsTUFBTSxDQUFDLElBQU0sY0FBYyxHQUFHLFVBQUMsT0FBaUQ7SUFDdEUsSUFBQSxnQkFBZ0IsR0FBMEQsT0FBTyxpQkFBakUsRUFBRSxZQUFZLEdBQTRDLE9BQU8sYUFBbkQsRUFBRSxpQkFBaUIsR0FBeUIsT0FBTyxrQkFBaEMsRUFBRSxrQkFBa0IsR0FBSyxPQUFPLG1CQUFaLENBQWE7SUFFMUYsSUFBSSxnQkFBZ0IsRUFBRTtRQUNwQixJQUFJLGlCQUFpQjtZQUFFLE1BQU0sSUFBSSxLQUFLLENBQUMsMERBQTBELENBQUMsQ0FBQztRQUNuRyxJQUFJLGtCQUFrQjtZQUFFLE1BQU0sSUFBSSxLQUFLLENBQUMsMkRBQTJELENBQUMsQ0FBQztLQUN0RztJQUVELE9BQU8sbUJBQW1CLENBQUMsT0FBTyxDQUFDO1FBQ2pDLENBQUMsQ0FBQyw0RUFBNEU7WUFDNUUseUJBQXlCLHVCQUFNLE9BQU8sS0FBRSxnQkFBZ0Isa0JBQUEsSUFBRztRQUM3RCxDQUFDLENBQUMsNkZBQTZGO1lBQzdGLGtCQUFrQix1QkFBTSxPQUFPLEtBQUUsZ0JBQWdCLGtCQUFBLElBQUcsQ0FBQztBQUMzRCxDQUFDLENBQUM7QUFFRixJQUFNLGtCQUFrQixHQUFHLFVBQUMsT0FBMEQ7SUFDNUUsSUFBQSxnQkFBZ0IsR0FBbUIsT0FBTyxpQkFBMUIsRUFBRSxZQUFZLEdBQUssT0FBTyxhQUFaLENBQWE7SUFDN0MsSUFBQSxLQUFBLE9BQWlDLGdCQUFnQjtRQUNyRCxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQztRQUN0QyxDQUFDLENBQUMsK0dBQStHO1lBQy9HLHVCQUF1QixDQUFDLFlBQVksQ0FBQyxJQUFBLEVBSGxDLFlBQVksUUFBQSxFQUFFLGNBQWMsUUFHTSxDQUFDO0lBR3hDLElBQUEsaUJBQWlCLEdBUWYsT0FBTyxrQkFSUSxFQUNqQixLQU9FLE9BQU8sa0JBUGdCLEVBQXpCLGlCQUFpQixtQkFBRyxLQUFLLEtBQUEsRUFDekIsS0FNRSxPQUFPLG1CQU5pQixFQUExQixrQkFBa0IsbUJBQUcsS0FBSyxLQUFBLEVBQzFCLEtBS0UsT0FBTyxjQUxXLEVBQXBCLGFBQWEsbUJBQUcsSUFBSSxLQUFBLEVBQ3BCLFlBQVksR0FJVixPQUFPLGFBSkcsRUFDWixVQUFVLEdBR1IsT0FBTyxXQUhDLEVBQ1YsS0FFRSxPQUFPLGdCQUZjLEVBQXZCLGVBQWUsbUJBQUcsS0FBSyxLQUFBLEVBQ3ZCLEtBQ0UsT0FBTyxvQkFEeUIsRUFBbEMsbUJBQW1CLG1CQUFHLFlBQVksS0FBQSxDQUN4QjtJQUVaLDBCQUEwQixDQUFDLEVBQUUsaUJBQWlCLG1CQUFBLEVBQUUsa0JBQWtCLG9CQUFBLEVBQUUsYUFBYSxlQUFBLEVBQUUsQ0FBQyxDQUFDO0lBRXJGLHVEQUF1RDtJQUMvQyxJQUFBLE9BQU8sR0FBNkMsVUFBVSxRQUF2RCxFQUFFLFNBQVMsR0FBa0MsVUFBVSxVQUE1QyxFQUFFLFNBQVMsR0FBdUIsVUFBVSxVQUFqQyxFQUFFLE1BQU0sR0FBZSxVQUFVLE9BQXpCLEVBQUUsUUFBUSxHQUFLLFVBQVUsU0FBZixDQUFnQjtJQUN2RSxlQUFlLENBQUMsT0FBTyxDQUFDLENBQUM7SUFDekIsaUJBQWlCLENBQUMsU0FBUyxFQUFFLEVBQUUsZUFBZSxpQkFBQSxFQUFFLENBQUMsQ0FBQztJQUNsRCxpQkFBaUIsQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUM3QixjQUFjLENBQUMsTUFBTSxFQUFFLEVBQUUsWUFBWSxjQUFBLEVBQUUsWUFBWSxjQUFBLEVBQUUsbUJBQW1CLHFCQUFBLEVBQUUsQ0FBQyxDQUFDO0lBQ3RFLElBQUEsS0FBaUMsZUFBZSxDQUFDLFFBQVEsQ0FBQyxFQUF4RCxlQUFlLHFCQUFBLEVBQUUsU0FBUyxlQUE4QixDQUFDO0lBQ2pFLG9CQUFvQixDQUFJLGVBQWUsU0FBSSxTQUFXLEVBQUUsRUFBRSxhQUFhLGVBQUEsRUFBRSxDQUFDLENBQUM7SUFFM0UsSUFBTSxjQUFjLEdBQUcsWUFBWSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLFlBQVksQ0FBQztJQUM1RCxJQUFNLGFBQWEsR0FBRyxZQUFZLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsbUJBQW1CLENBQUM7SUFDbEUsSUFBSSxTQUFTLEVBQUU7UUFDYiw0QkFBNEI7UUFDNUIsc0JBQXNCLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDaEMsb0JBQW9CLENBQUMsU0FBUyxFQUFFLEVBQUUsYUFBYSxlQUFBLEVBQUUsQ0FBQyxDQUFDO1FBQ25ELG1CQUFtQixDQUFDLGlCQUFpQixDQUFDLENBQUM7UUFDdkMsY0FBYyxDQUFDLGNBQWMsQ0FBQyxDQUFDO1FBQy9CLElBQU0sZ0JBQWMsR0FBTSxlQUFlLFNBQUksU0FBUyxTQUFJLFNBQVcsQ0FBQztRQUN0RSxPQUFPO1lBQ0wsY0FBYyxFQUFFLElBQUk7WUFDcEIsUUFBUSxFQUFFLEtBQUcsZ0JBQWMsSUFBRyxnQkFBZ0IsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxrQkFBZ0IsY0FBZ0IsVUFBSSxjQUFnQjtZQUMxRyxhQUFhLGVBQUE7WUFDYixjQUFjLEVBQUUsYUFBYTtTQUM5QixDQUFDO0tBQ0g7SUFDRCwwQ0FBMEM7SUFDMUMsaUJBQWlCLENBQUMsT0FBTyxDQUFDLENBQUM7SUFDM0IsSUFBTSxjQUFjLEdBQU0sZUFBZSxTQUFJLFNBQVcsQ0FBQztJQUN6RCxPQUFPO1FBQ0wsY0FBYyxFQUFFLElBQUk7UUFDcEIsUUFBUSxFQUFFLEtBQUcsY0FBYyxJQUN6QixnQkFBZ0IsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxxQkFBa0IsaUJBQWlCLENBQUMsQ0FBQyxDQUFDLFlBQVksQ0FBQyxDQUFDLENBQUMsRUFBRSxVQUFJLGNBQWdCLFVBQ2pHLGNBQWdCO1FBQ3BCLGFBQWEsZUFBQTtLQUNkLENBQUM7QUFDSixDQUFDLENBQUM7QUFFRixJQUFNLHlCQUF5QixHQUFHLFVBQUMsRUFTb0I7UUFSckQsMEJBQTBCLEVBQTFCLGtCQUFrQixtQkFBRyxLQUFLLEtBQUEsRUFDWixNQUFNLGtCQUFBLEVBQ3BCLFlBQVksa0JBQUEsRUFDWixVQUFVLGdCQUFBLEVBQ1YseUJBQXlCLEVBQXpCLGlCQUFpQixtQkFBRyxLQUFLLEtBQUEsRUFDekIseUJBQXlCLEVBQXpCLGlCQUFpQixtQkFBRyxLQUFLLEtBQUEsRUFDekIscUJBQW9CLEVBQXBCLGFBQWEsbUJBQUcsSUFBSSxLQUFBLEVBQ3BCLHdCQUF3QixFQUF4QixnQkFBZ0IsbUJBQUcsS0FBSyxLQUFBO0lBRWxCLElBQUEsS0FBQSxPQUFpQyxnQkFBZ0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxNQUFNLEVBQUUsWUFBWSxDQUFDLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxZQUFZLENBQUMsSUFBQSxFQUFuRyxZQUFZLFFBQUEsRUFBRSxjQUFjLFFBQXVFLENBQUM7SUFDM0csSUFBSSxpQkFBaUIsSUFBSSxDQUFDLHlCQUF5QixDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsYUFBYSxJQUFJLFdBQVcsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUMsRUFBRTtRQUNsSCxPQUFPO1lBQ0wsY0FBYyxFQUFFLEtBQUs7WUFDckIsUUFBUSxFQUFFLGlCQUFpQixDQUFDLENBQUMsQ0FBQyxrQkFBZ0IsWUFBWSxTQUFJLGNBQWdCLENBQUMsQ0FBQyxDQUFDLFlBQVk7U0FDOUYsQ0FBQztLQUNIO0lBRUQsSUFBSSxrQkFBa0IsRUFBRTtRQUN0QixZQUFZLEdBQUcsbUJBQWdCLGlCQUFpQixDQUFDLENBQUMsQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDLEVBQUUsVUFBSSxjQUFnQixDQUFDO0tBQzFGO1NBQU0sSUFBSSxpQkFBaUIsRUFBRTtRQUM1QixZQUFZLEdBQUcsa0JBQWdCLFlBQVksU0FBSSxjQUFnQixDQUFDO0tBQ2pFO0lBRUQsT0FBTztRQUNMLGNBQWMsRUFBRSxJQUFJO1FBQ3BCLFFBQVEsRUFBSyxVQUFVLFNBQUksWUFBYztLQUMxQyxDQUFDO0FBQ0osQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQXJuSG9zdG5hbWVQYXJhbXMsXG4gIEJ1Y2tldEhvc3RuYW1lUGFyYW1zLFxuICBET1RfUEFUVEVSTixcbiAgZ2V0QXJuUmVzb3VyY2VzLFxuICBnZXRTdWZmaXgsXG4gIGdldFN1ZmZpeEZvckFybkVuZHBvaW50LFxuICBpc0J1Y2tldE5hbWVPcHRpb25zLFxuICBpc0Ruc0NvbXBhdGlibGVCdWNrZXROYW1lLFxuICB2YWxpZGF0ZUFjY291bnRJZCxcbiAgdmFsaWRhdGVBcm5FbmRwb2ludE9wdGlvbnMsXG4gIHZhbGlkYXRlRE5TSG9zdExhYmVsLFxuICB2YWxpZGF0ZU5vRHVhbHN0YWNrLFxuICB2YWxpZGF0ZU5vRklQUyxcbiAgdmFsaWRhdGVPdXRwb3N0U2VydmljZSxcbiAgdmFsaWRhdGVQYXJ0aXRpb24sXG4gIHZhbGlkYXRlUmVnaW9uLFxuICB2YWxpZGF0ZVMzU2VydmljZSxcbiAgdmFsaWRhdGVTZXJ2aWNlLFxufSBmcm9tIFwiLi9idWNrZXRIb3N0bmFtZVV0aWxzXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgQnVja2V0SG9zdG5hbWUge1xuICBob3N0bmFtZTogc3RyaW5nO1xuICBidWNrZXRFbmRwb2ludDogYm9vbGVhbjtcbiAgc2lnbmluZ1JlZ2lvbj86IHN0cmluZztcbiAgc2lnbmluZ1NlcnZpY2U/OiBzdHJpbmc7XG59XG5cbmV4cG9ydCBjb25zdCBidWNrZXRIb3N0bmFtZSA9IChvcHRpb25zOiBCdWNrZXRIb3N0bmFtZVBhcmFtcyB8IEFybkhvc3RuYW1lUGFyYW1zKTogQnVja2V0SG9zdG5hbWUgPT4ge1xuICBjb25zdCB7IGlzQ3VzdG9tRW5kcG9pbnQsIGJhc2VIb3N0bmFtZSwgZHVhbHN0YWNrRW5kcG9pbnQsIGFjY2VsZXJhdGVFbmRwb2ludCB9ID0gb3B0aW9ucztcblxuICBpZiAoaXNDdXN0b21FbmRwb2ludCkge1xuICAgIGlmIChkdWFsc3RhY2tFbmRwb2ludCkgdGhyb3cgbmV3IEVycm9yKFwiRHVhbHN0YWNrIGVuZHBvaW50IGlzIG5vdCBzdXBwb3J0ZWQgd2l0aCBjdXN0b20gZW5kcG9pbnRcIik7XG4gICAgaWYgKGFjY2VsZXJhdGVFbmRwb2ludCkgdGhyb3cgbmV3IEVycm9yKFwiQWNjZWxlcmF0ZSBlbmRwb2ludCBpcyBub3Qgc3VwcG9ydGVkIHdpdGggY3VzdG9tIGVuZHBvaW50XCIpO1xuICB9XG5cbiAgcmV0dXJuIGlzQnVja2V0TmFtZU9wdGlvbnMob3B0aW9ucylcbiAgICA/IC8vIENvbnN0cnVjdCBlbmRwb2ludCB3aGVuIGJ1Y2tldE5hbWUgaXMgYSBzdHJpbmcgcmVmZXJyaW5nIHRvIGEgYnVja2V0IG5hbWVcbiAgICAgIGdldEVuZHBvaW50RnJvbUJ1Y2tldE5hbWUoeyAuLi5vcHRpb25zLCBpc0N1c3RvbUVuZHBvaW50IH0pXG4gICAgOiAvLyBDb25zdHJ1Y3QgZW5kcG9pbnQgd2hlbiBidWNrZXROYW1lIGlzIGFuIEFSTiByZWZlcnJpbmcgdG8gYW4gUzMgcmVzb3VyY2UgbGlrZSBBY2Nlc3MgUG9pbnRcbiAgICAgIGdldEVuZHBvaW50RnJvbUFybih7IC4uLm9wdGlvbnMsIGlzQ3VzdG9tRW5kcG9pbnQgfSk7XG59O1xuXG5jb25zdCBnZXRFbmRwb2ludEZyb21Bcm4gPSAob3B0aW9uczogQXJuSG9zdG5hbWVQYXJhbXMgJiB7IGlzQ3VzdG9tRW5kcG9pbnQ6IGJvb2xlYW4gfSk6IEJ1Y2tldEhvc3RuYW1lID0+IHtcbiAgY29uc3QgeyBpc0N1c3RvbUVuZHBvaW50LCBiYXNlSG9zdG5hbWUgfSA9IG9wdGlvbnM7XG4gIGNvbnN0IFtjbGllbnRSZWdpb24sIGhvc3RuYW1lU3VmZml4XSA9IGlzQ3VzdG9tRW5kcG9pbnRcbiAgICA/IFtvcHRpb25zLmNsaWVudFJlZ2lvbiwgYmFzZUhvc3RuYW1lXVxuICAgIDogLy8gSW5mZXIgY2xpZW50IHJlZ2lvbiBhbmQgaG9zdG5hbWUgc3VmZml4IGZyb20gaG9zdG5hbWUgZnJvbSBlbmRwb2ludHMuanNvbiwgbGlrZSBgczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb21gXG4gICAgICBnZXRTdWZmaXhGb3JBcm5FbmRwb2ludChiYXNlSG9zdG5hbWUpO1xuXG4gIGNvbnN0IHtcbiAgICBwYXRoU3R5bGVFbmRwb2ludCxcbiAgICBkdWFsc3RhY2tFbmRwb2ludCA9IGZhbHNlLFxuICAgIGFjY2VsZXJhdGVFbmRwb2ludCA9IGZhbHNlLFxuICAgIHRsc0NvbXBhdGlibGUgPSB0cnVlLFxuICAgIHVzZUFyblJlZ2lvbixcbiAgICBidWNrZXROYW1lLFxuICAgIGNsaWVudFBhcnRpdGlvbiA9IFwiYXdzXCIsXG4gICAgY2xpZW50U2lnbmluZ1JlZ2lvbiA9IGNsaWVudFJlZ2lvbixcbiAgfSA9IG9wdGlvbnM7XG5cbiAgdmFsaWRhdGVBcm5FbmRwb2ludE9wdGlvbnMoeyBwYXRoU3R5bGVFbmRwb2ludCwgYWNjZWxlcmF0ZUVuZHBvaW50LCB0bHNDb21wYXRpYmxlIH0pO1xuXG4gIC8vIFZhbGlkYXRlIGFuZCBwYXJzZSB0aGUgQVJOIHN1cHBsaWVkIGFzIGEgYnVja2V0IG5hbWVcbiAgY29uc3QgeyBzZXJ2aWNlLCBwYXJ0aXRpb24sIGFjY291bnRJZCwgcmVnaW9uLCByZXNvdXJjZSB9ID0gYnVja2V0TmFtZTtcbiAgdmFsaWRhdGVTZXJ2aWNlKHNlcnZpY2UpO1xuICB2YWxpZGF0ZVBhcnRpdGlvbihwYXJ0aXRpb24sIHsgY2xpZW50UGFydGl0aW9uIH0pO1xuICB2YWxpZGF0ZUFjY291bnRJZChhY2NvdW50SWQpO1xuICB2YWxpZGF0ZVJlZ2lvbihyZWdpb24sIHsgdXNlQXJuUmVnaW9uLCBjbGllbnRSZWdpb24sIGNsaWVudFNpZ25pbmdSZWdpb24gfSk7XG4gIGNvbnN0IHsgYWNjZXNzcG9pbnROYW1lLCBvdXRwb3N0SWQgfSA9IGdldEFyblJlc291cmNlcyhyZXNvdXJjZSk7XG4gIHZhbGlkYXRlRE5TSG9zdExhYmVsKGAke2FjY2Vzc3BvaW50TmFtZX0tJHthY2NvdW50SWR9YCwgeyB0bHNDb21wYXRpYmxlIH0pO1xuXG4gIGNvbnN0IGVuZHBvaW50UmVnaW9uID0gdXNlQXJuUmVnaW9uID8gcmVnaW9uIDogY2xpZW50UmVnaW9uO1xuICBjb25zdCBzaWduaW5nUmVnaW9uID0gdXNlQXJuUmVnaW9uID8gcmVnaW9uIDogY2xpZW50U2lnbmluZ1JlZ2lvbjtcbiAgaWYgKG91dHBvc3RJZCkge1xuICAgIC8vIGlmIHRoaXMgaXMgYW4gT3V0cG9zdCBBUk5cbiAgICB2YWxpZGF0ZU91dHBvc3RTZXJ2aWNlKHNlcnZpY2UpO1xuICAgIHZhbGlkYXRlRE5TSG9zdExhYmVsKG91dHBvc3RJZCwgeyB0bHNDb21wYXRpYmxlIH0pO1xuICAgIHZhbGlkYXRlTm9EdWFsc3RhY2soZHVhbHN0YWNrRW5kcG9pbnQpO1xuICAgIHZhbGlkYXRlTm9GSVBTKGVuZHBvaW50UmVnaW9uKTtcbiAgICBjb25zdCBob3N0bmFtZVByZWZpeCA9IGAke2FjY2Vzc3BvaW50TmFtZX0tJHthY2NvdW50SWR9LiR7b3V0cG9zdElkfWA7XG4gICAgcmV0dXJuIHtcbiAgICAgIGJ1Y2tldEVuZHBvaW50OiB0cnVlLFxuICAgICAgaG9zdG5hbWU6IGAke2hvc3RuYW1lUHJlZml4fSR7aXNDdXN0b21FbmRwb2ludCA/IFwiXCIgOiBgLnMzLW91dHBvc3RzLiR7ZW5kcG9pbnRSZWdpb259YH0uJHtob3N0bmFtZVN1ZmZpeH1gLFxuICAgICAgc2lnbmluZ1JlZ2lvbixcbiAgICAgIHNpZ25pbmdTZXJ2aWNlOiBcInMzLW91dHBvc3RzXCIsXG4gICAgfTtcbiAgfVxuICAvLyBjb25zdHJ1Y3QgZW5kcG9pbnQgZnJvbSBBY2Nlc3Nwb2ludCBBUk5cbiAgdmFsaWRhdGVTM1NlcnZpY2Uoc2VydmljZSk7XG4gIGNvbnN0IGhvc3RuYW1lUHJlZml4ID0gYCR7YWNjZXNzcG9pbnROYW1lfS0ke2FjY291bnRJZH1gO1xuICByZXR1cm4ge1xuICAgIGJ1Y2tldEVuZHBvaW50OiB0cnVlLFxuICAgIGhvc3RuYW1lOiBgJHtob3N0bmFtZVByZWZpeH0ke1xuICAgICAgaXNDdXN0b21FbmRwb2ludCA/IFwiXCIgOiBgLnMzLWFjY2Vzc3BvaW50JHtkdWFsc3RhY2tFbmRwb2ludCA/IFwiLmR1YWxzdGFja1wiIDogXCJcIn0uJHtlbmRwb2ludFJlZ2lvbn1gXG4gICAgfS4ke2hvc3RuYW1lU3VmZml4fWAsXG4gICAgc2lnbmluZ1JlZ2lvbixcbiAgfTtcbn07XG5cbmNvbnN0IGdldEVuZHBvaW50RnJvbUJ1Y2tldE5hbWUgPSAoe1xuICBhY2NlbGVyYXRlRW5kcG9pbnQgPSBmYWxzZSxcbiAgY2xpZW50UmVnaW9uOiByZWdpb24sXG4gIGJhc2VIb3N0bmFtZSxcbiAgYnVja2V0TmFtZSxcbiAgZHVhbHN0YWNrRW5kcG9pbnQgPSBmYWxzZSxcbiAgcGF0aFN0eWxlRW5kcG9pbnQgPSBmYWxzZSxcbiAgdGxzQ29tcGF0aWJsZSA9IHRydWUsXG4gIGlzQ3VzdG9tRW5kcG9pbnQgPSBmYWxzZSxcbn06IEJ1Y2tldEhvc3RuYW1lUGFyYW1zICYgeyBpc0N1c3RvbUVuZHBvaW50OiBib29sZWFuIH0pOiBCdWNrZXRIb3N0bmFtZSA9PiB7XG4gIGNvbnN0IFtjbGllbnRSZWdpb24sIGhvc3RuYW1lU3VmZml4XSA9IGlzQ3VzdG9tRW5kcG9pbnQgPyBbcmVnaW9uLCBiYXNlSG9zdG5hbWVdIDogZ2V0U3VmZml4KGJhc2VIb3N0bmFtZSk7XG4gIGlmIChwYXRoU3R5bGVFbmRwb2ludCB8fCAhaXNEbnNDb21wYXRpYmxlQnVja2V0TmFtZShidWNrZXROYW1lKSB8fCAodGxzQ29tcGF0aWJsZSAmJiBET1RfUEFUVEVSTi50ZXN0KGJ1Y2tldE5hbWUpKSkge1xuICAgIHJldHVybiB7XG4gICAgICBidWNrZXRFbmRwb2ludDogZmFsc2UsXG4gICAgICBob3N0bmFtZTogZHVhbHN0YWNrRW5kcG9pbnQgPyBgczMuZHVhbHN0YWNrLiR7Y2xpZW50UmVnaW9ufS4ke2hvc3RuYW1lU3VmZml4fWAgOiBiYXNlSG9zdG5hbWUsXG4gICAgfTtcbiAgfVxuXG4gIGlmIChhY2NlbGVyYXRlRW5kcG9pbnQpIHtcbiAgICBiYXNlSG9zdG5hbWUgPSBgczMtYWNjZWxlcmF0ZSR7ZHVhbHN0YWNrRW5kcG9pbnQgPyBcIi5kdWFsc3RhY2tcIiA6IFwiXCJ9LiR7aG9zdG5hbWVTdWZmaXh9YDtcbiAgfSBlbHNlIGlmIChkdWFsc3RhY2tFbmRwb2ludCkge1xuICAgIGJhc2VIb3N0bmFtZSA9IGBzMy5kdWFsc3RhY2suJHtjbGllbnRSZWdpb259LiR7aG9zdG5hbWVTdWZmaXh9YDtcbiAgfVxuXG4gIHJldHVybiB7XG4gICAgYnVja2V0RW5kcG9pbnQ6IHRydWUsXG4gICAgaG9zdG5hbWU6IGAke2J1Y2tldE5hbWV9LiR7YmFzZUhvc3RuYW1lfWAsXG4gIH07XG59O1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostnameUtils.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostnameUtils.js ***! \*****************************************************************************************/ /*! exports provided: DOT_PATTERN, S3_HOSTNAME_PATTERN, isBucketNameOptions, getPseudoRegion, isDnsCompatibleBucketName, getSuffix, getSuffixForArnEndpoint, validateArnEndpointOptions, validateService, validateS3Service, validateOutpostService, validatePartition, validateRegion, validateAccountId, validateDNSHostLabel, getArnResources, validateNoDualstack, validateNoFIPS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DOT_PATTERN\", function() { return DOT_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3_HOSTNAME_PATTERN\", function() { return S3_HOSTNAME_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isBucketNameOptions\", function() { return isBucketNameOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPseudoRegion\", function() { return getPseudoRegion; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isDnsCompatibleBucketName\", function() { return isDnsCompatibleBucketName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSuffix\", function() { return getSuffix; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSuffixForArnEndpoint\", function() { return getSuffixForArnEndpoint; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateArnEndpointOptions\", function() { return validateArnEndpointOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateService\", function() { return validateService; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateS3Service\", function() { return validateS3Service; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateOutpostService\", function() { return validateOutpostService; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validatePartition\", function() { return validatePartition; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateRegion\", function() { return validateRegion; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateAccountId\", function() { return validateAccountId; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateDNSHostLabel\", function() { return validateDNSHostLabel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getArnResources\", function() { return getArnResources; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateNoDualstack\", function() { return validateNoDualstack; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateNoFIPS\", function() { return validateNoFIPS; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar DOMAIN_PATTERN = /^[a-z0-9][a-z0-9\\.\\-]{1,61}[a-z0-9]$/;\nvar IP_ADDRESS_PATTERN = /(\\d+\\.){3}\\d+/;\nvar DOTS_PATTERN = /\\.\\./;\nvar DOT_PATTERN = /\\./;\nvar S3_HOSTNAME_PATTERN = /^(.+\\.)?s3[.-]([a-z0-9-]+)\\./;\nvar S3_US_EAST_1_ALTNAME_PATTERN = /^s3(-external-1)?\\.amazonaws\\.com$/;\nvar AWS_PARTITION_SUFFIX = \"amazonaws.com\";\nvar isBucketNameOptions = function (options) { return typeof options.bucketName === \"string\"; };\n/**\n * Get pseudo region from supplied region. For example, if supplied with `fips-us-west-2`, it returns `us-west-2`.\n * @internal\n */\nvar getPseudoRegion = function (region) { return (isFipsRegion(region) ? region.replace(/fips-|-fips/, \"\") : region); };\n/**\n * Determines whether a given string is DNS compliant per the rules outlined by\n * S3. Length, capitaization, and leading dot restrictions are enforced by the\n * DOMAIN_PATTERN regular expression.\n * @internal\n *\n * @see https://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html\n */\nvar isDnsCompatibleBucketName = function (bucketName) {\n return DOMAIN_PATTERN.test(bucketName) && !IP_ADDRESS_PATTERN.test(bucketName) && !DOTS_PATTERN.test(bucketName);\n};\nvar getRegionalSuffix = function (hostname) {\n var parts = hostname.match(S3_HOSTNAME_PATTERN);\n return [parts[2], hostname.replace(new RegExp(\"^\" + parts[0]), \"\")];\n};\nvar getSuffix = function (hostname) {\n return S3_US_EAST_1_ALTNAME_PATTERN.test(hostname) ? [\"us-east-1\", AWS_PARTITION_SUFFIX] : getRegionalSuffix(hostname);\n};\n/**\n * Infer region and hostname suffix from a complete hostname\n * @internal\n * @param hostname - Hostname\n * @returns [Region, Hostname suffix]\n */\nvar getSuffixForArnEndpoint = function (hostname) {\n return S3_US_EAST_1_ALTNAME_PATTERN.test(hostname)\n ? [hostname.replace(\".\" + AWS_PARTITION_SUFFIX, \"\"), AWS_PARTITION_SUFFIX]\n : getRegionalSuffix(hostname);\n};\nvar validateArnEndpointOptions = function (options) {\n if (options.pathStyleEndpoint) {\n throw new Error(\"Path-style S3 endpoint is not supported when bucket is an ARN\");\n }\n if (options.accelerateEndpoint) {\n throw new Error(\"Accelerate endpoint is not supported when bucket is an ARN\");\n }\n if (!options.tlsCompatible) {\n throw new Error(\"HTTPS is required when bucket is an ARN\");\n }\n};\nvar validateService = function (service) {\n if (service !== \"s3\" && service !== \"s3-outposts\") {\n throw new Error(\"Expect 's3' or 's3-outposts' in ARN service component\");\n }\n};\nvar validateS3Service = function (service) {\n if (service !== \"s3\") {\n throw new Error(\"Expect 's3' in Accesspoint ARN service component\");\n }\n};\nvar validateOutpostService = function (service) {\n if (service !== \"s3-outposts\") {\n throw new Error(\"Expect 's3-posts' in Outpost ARN service component\");\n }\n};\n/**\n * Validate partition inferred from ARN is the same to `options.clientPartition`.\n * @internal\n */\nvar validatePartition = function (partition, options) {\n if (partition !== options.clientPartition) {\n throw new Error(\"Partition in ARN is incompatible, got \\\"\" + partition + \"\\\" but expected \\\"\" + options.clientPartition + \"\\\"\");\n }\n};\n/**\n * validate region value inferred from ARN. If `options.useArnRegion` is set, it validates the region is not a FIPS\n * region. If `options.useArnRegion` is unset, it validates the region is equal to `options.clientRegion` or\n * `options.clientSigningRegion`.\n * @internal\n */\nvar validateRegion = function (region, options) {\n if (region === \"\") {\n throw new Error(\"ARN region is empty\");\n }\n if (!options.useArnRegion &&\n !isEqualRegions(region, options.clientRegion) &&\n !isEqualRegions(region, options.clientSigningRegion)) {\n throw new Error(\"Region in ARN is incompatible, got \" + region + \" but expected \" + options.clientRegion);\n }\n if (options.useArnRegion && isFipsRegion(region)) {\n throw new Error(\"Endpoint does not support FIPS region\");\n }\n};\nvar isFipsRegion = function (region) { return region.startsWith(\"fips-\") || region.endsWith(\"-fips\"); };\nvar isEqualRegions = function (regionA, regionB) {\n return regionA === regionB || getPseudoRegion(regionA) === regionB || regionA === getPseudoRegion(regionB);\n};\n/**\n * Validate an account ID\n * @internal\n */\nvar validateAccountId = function (accountId) {\n if (!/[0-9]{12}/.exec(accountId)) {\n throw new Error(\"Access point ARN accountID does not match regex '[0-9]{12}'\");\n }\n};\n/**\n * Validate a host label according to https://tools.ietf.org/html/rfc3986#section-3.2.2\n * @internal\n */\nvar validateDNSHostLabel = function (label, options) {\n if (options === void 0) { options = { tlsCompatible: true }; }\n // reference: https://tools.ietf.org/html/rfc3986#section-3.2.2\n if (label.length >= 64 ||\n !/^[a-z0-9][a-z0-9.-]+[a-z0-9]$/.test(label) ||\n /(\\d+\\.){3}\\d+/.test(label) ||\n /[.-]{2}/.test(label) ||\n ((options === null || options === void 0 ? void 0 : options.tlsCompatible) && DOT_PATTERN.test(label))) {\n throw new Error(\"Invalid DNS label \" + label);\n }\n};\n/**\n * Validate and parse an Access Point ARN or Outposts ARN\n * @internal\n *\n * @param resource - The resource section of an ARN\n * @returns Access Point Name and optional Outpost ID.\n */\nvar getArnResources = function (resource) {\n var delimiter = resource.includes(\":\") ? \":\" : \"/\";\n var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(resource.split(delimiter)), resourceType = _a[0], rest = _a.slice(1);\n if (resourceType === \"accesspoint\") {\n // Parse accesspoint ARN\n if (rest.length !== 1 || rest[0] === \"\") {\n throw new Error(\"Access Point ARN should have one resource accesspoint\" + delimiter + \"{accesspointname}\");\n }\n return { accesspointName: rest[0] };\n }\n else if (resourceType === \"outpost\") {\n // Parse outpost ARN\n if (!rest[0] || rest[1] !== \"accesspoint\" || !rest[2] || rest.length !== 3) {\n throw new Error(\"Outpost ARN should have resource outpost\" + delimiter + \"{outpostId}\" + delimiter + \"accesspoint\" + delimiter + \"{accesspointName}\");\n }\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(rest, 3), outpostId = _b[0], _ = _b[1], accesspointName = _b[2];\n return { outpostId: outpostId, accesspointName: accesspointName };\n }\n else {\n throw new Error(\"ARN resource should begin with 'accesspoint\" + delimiter + \"' or 'outpost\" + delimiter + \"'\");\n }\n};\n/**\n * Throw if dual stack configuration is set to true.\n * @internal\n */\nvar validateNoDualstack = function (dualstackEndpoint) {\n if (dualstackEndpoint)\n throw new Error(\"Dualstack endpoint is not supported with Outpost\");\n};\n/**\n * Validate region is not appended or prepended with a `fips-`\n * @internal\n */\nvar validateNoFIPS = function (region) {\n if (isFipsRegion(region !== null && region !== void 0 ? region : \"\"))\n throw new Error(\"FIPS region is not supported with Outpost, got \" + region);\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVja2V0SG9zdG5hbWVVdGlscy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9idWNrZXRIb3N0bmFtZVV0aWxzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFFQSxJQUFNLGNBQWMsR0FBRyxzQ0FBc0MsQ0FBQztBQUM5RCxJQUFNLGtCQUFrQixHQUFHLGVBQWUsQ0FBQztBQUMzQyxJQUFNLFlBQVksR0FBRyxNQUFNLENBQUM7QUFDNUIsTUFBTSxDQUFDLElBQU0sV0FBVyxHQUFHLElBQUksQ0FBQztBQUNoQyxNQUFNLENBQUMsSUFBTSxtQkFBbUIsR0FBRyw4QkFBOEIsQ0FBQztBQUNsRSxJQUFNLDRCQUE0QixHQUFHLG9DQUFvQyxDQUFDO0FBQzFFLElBQU0sb0JBQW9CLEdBQUcsZUFBZSxDQUFDO0FBd0I3QyxNQUFNLENBQUMsSUFBTSxtQkFBbUIsR0FBRyxVQUNqQyxPQUFpRCxJQUNiLE9BQUEsT0FBTyxPQUFPLENBQUMsVUFBVSxLQUFLLFFBQVEsRUFBdEMsQ0FBc0MsQ0FBQztBQUU3RTs7O0dBR0c7QUFDSCxNQUFNLENBQUMsSUFBTSxlQUFlLEdBQUcsVUFBQyxNQUFjLElBQUssT0FBQSxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxFQUFuRSxDQUFtRSxDQUFDO0FBRXZIOzs7Ozs7O0dBT0c7QUFDSCxNQUFNLENBQUMsSUFBTSx5QkFBeUIsR0FBRyxVQUFDLFVBQWtCO0lBQzFELE9BQUEsY0FBYyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDO0FBQXpHLENBQXlHLENBQUM7QUFFNUcsSUFBTSxpQkFBaUIsR0FBRyxVQUFDLFFBQWdCO0lBQ3pDLElBQU0sS0FBSyxHQUFHLFFBQVEsQ0FBQyxLQUFLLENBQUMsbUJBQW1CLENBQUUsQ0FBQztJQUNuRCxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxFQUFFLFFBQVEsQ0FBQyxPQUFPLENBQUMsSUFBSSxNQUFNLENBQUMsTUFBSSxLQUFLLENBQUMsQ0FBQyxDQUFHLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDO0FBQ3RFLENBQUMsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLFNBQVMsR0FBRyxVQUFDLFFBQWdCO0lBQ3hDLE9BQUEsNEJBQTRCLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLFdBQVcsRUFBRSxvQkFBb0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxpQkFBaUIsQ0FBQyxRQUFRLENBQUM7QUFBL0csQ0FBK0csQ0FBQztBQUVsSDs7Ozs7R0FLRztBQUNILE1BQU0sQ0FBQyxJQUFNLHVCQUF1QixHQUFHLFVBQUMsUUFBZ0I7SUFDdEQsT0FBQSw0QkFBNEIsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDO1FBQ3pDLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxPQUFPLENBQUMsTUFBSSxvQkFBc0IsRUFBRSxFQUFFLENBQUMsRUFBRSxvQkFBb0IsQ0FBQztRQUMxRSxDQUFDLENBQUMsaUJBQWlCLENBQUMsUUFBUSxDQUFDO0FBRi9CLENBRStCLENBQUM7QUFFbEMsTUFBTSxDQUFDLElBQU0sMEJBQTBCLEdBQUcsVUFBQyxPQUkxQztJQUNDLElBQUksT0FBTyxDQUFDLGlCQUFpQixFQUFFO1FBQzdCLE1BQU0sSUFBSSxLQUFLLENBQUMsK0RBQStELENBQUMsQ0FBQztLQUNsRjtJQUNELElBQUksT0FBTyxDQUFDLGtCQUFrQixFQUFFO1FBQzlCLE1BQU0sSUFBSSxLQUFLLENBQUMsNERBQTRELENBQUMsQ0FBQztLQUMvRTtJQUNELElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxFQUFFO1FBQzFCLE1BQU0sSUFBSSxLQUFLLENBQUMseUNBQXlDLENBQUMsQ0FBQztLQUM1RDtBQUNILENBQUMsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLGVBQWUsR0FBRyxVQUFDLE9BQWU7SUFDN0MsSUFBSSxPQUFPLEtBQUssSUFBSSxJQUFJLE9BQU8sS0FBSyxhQUFhLEVBQUU7UUFDakQsTUFBTSxJQUFJLEtBQUssQ0FBQyx1REFBdUQsQ0FBQyxDQUFDO0tBQzFFO0FBQ0gsQ0FBQyxDQUFDO0FBRUYsTUFBTSxDQUFDLElBQU0saUJBQWlCLEdBQUcsVUFBQyxPQUFlO0lBQy9DLElBQUksT0FBTyxLQUFLLElBQUksRUFBRTtRQUNwQixNQUFNLElBQUksS0FBSyxDQUFDLGtEQUFrRCxDQUFDLENBQUM7S0FDckU7QUFDSCxDQUFDLENBQUM7QUFFRixNQUFNLENBQUMsSUFBTSxzQkFBc0IsR0FBRyxVQUFDLE9BQWU7SUFDcEQsSUFBSSxPQUFPLEtBQUssYUFBYSxFQUFFO1FBQzdCLE1BQU0sSUFBSSxLQUFLLENBQUMsb0RBQW9ELENBQUMsQ0FBQztLQUN2RTtBQUNILENBQUMsQ0FBQztBQUVGOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxJQUFNLGlCQUFpQixHQUFHLFVBQUMsU0FBaUIsRUFBRSxPQUFvQztJQUN2RixJQUFJLFNBQVMsS0FBSyxPQUFPLENBQUMsZUFBZSxFQUFFO1FBQ3pDLE1BQU0sSUFBSSxLQUFLLENBQUMsNkNBQTBDLFNBQVMsMEJBQW1CLE9BQU8sQ0FBQyxlQUFlLE9BQUcsQ0FBQyxDQUFDO0tBQ25IO0FBQ0gsQ0FBQyxDQUFDO0FBRUY7Ozs7O0dBS0c7QUFDSCxNQUFNLENBQUMsSUFBTSxjQUFjLEdBQUcsVUFDNUIsTUFBYyxFQUNkLE9BSUM7SUFFRCxJQUFJLE1BQU0sS0FBSyxFQUFFLEVBQUU7UUFDakIsTUFBTSxJQUFJLEtBQUssQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO0tBQ3hDO0lBQ0QsSUFDRSxDQUFDLE9BQU8sQ0FBQyxZQUFZO1FBQ3JCLENBQUMsY0FBYyxDQUFDLE1BQU0sRUFBRSxPQUFPLENBQUMsWUFBWSxDQUFDO1FBQzdDLENBQUMsY0FBYyxDQUFDLE1BQU0sRUFBRSxPQUFPLENBQUMsbUJBQW1CLENBQUMsRUFDcEQ7UUFDQSxNQUFNLElBQUksS0FBSyxDQUFDLHdDQUFzQyxNQUFNLHNCQUFpQixPQUFPLENBQUMsWUFBYyxDQUFDLENBQUM7S0FDdEc7SUFDRCxJQUFJLE9BQU8sQ0FBQyxZQUFZLElBQUksWUFBWSxDQUFDLE1BQU0sQ0FBQyxFQUFFO1FBQ2hELE1BQU0sSUFBSSxLQUFLLENBQUMsdUNBQXVDLENBQUMsQ0FBQztLQUMxRDtBQUNILENBQUMsQ0FBQztBQUVGLElBQU0sWUFBWSxHQUFHLFVBQUMsTUFBYyxJQUFLLE9BQUEsTUFBTSxDQUFDLFVBQVUsQ0FBQyxPQUFPLENBQUMsSUFBSSxNQUFNLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxFQUF0RCxDQUFzRCxDQUFDO0FBRWhHLElBQU0sY0FBYyxHQUFHLFVBQUMsT0FBZSxFQUFFLE9BQWU7SUFDdEQsT0FBQSxPQUFPLEtBQUssT0FBTyxJQUFJLGVBQWUsQ0FBQyxPQUFPLENBQUMsS0FBSyxPQUFPLElBQUksT0FBTyxLQUFLLGVBQWUsQ0FBQyxPQUFPLENBQUM7QUFBbkcsQ0FBbUcsQ0FBQztBQUV0Rzs7O0dBR0c7QUFDSCxNQUFNLENBQUMsSUFBTSxpQkFBaUIsR0FBRyxVQUFDLFNBQWlCO0lBQ2pELElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxFQUFFO1FBQ2hDLE1BQU0sSUFBSSxLQUFLLENBQUMsNkRBQTZELENBQUMsQ0FBQztLQUNoRjtBQUNILENBQUMsQ0FBQztBQUVGOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxJQUFNLG9CQUFvQixHQUFHLFVBQUMsS0FBYSxFQUFFLE9BQThEO0lBQTlELHdCQUFBLEVBQUEsWUFBeUMsYUFBYSxFQUFFLElBQUksRUFBRTtJQUNoSCwrREFBK0Q7SUFDL0QsSUFDRSxLQUFLLENBQUMsTUFBTSxJQUFJLEVBQUU7UUFDbEIsQ0FBQywrQkFBK0IsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDO1FBQzVDLGVBQWUsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDO1FBQzNCLFNBQVMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDO1FBQ3JCLENBQUMsQ0FBQSxPQUFPLGFBQVAsT0FBTyx1QkFBUCxPQUFPLENBQUUsYUFBYSxLQUFJLFdBQVcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsRUFDbkQ7UUFDQSxNQUFNLElBQUksS0FBSyxDQUFDLHVCQUFxQixLQUFPLENBQUMsQ0FBQztLQUMvQztBQUNILENBQUMsQ0FBQztBQUVGOzs7Ozs7R0FNRztBQUNILE1BQU0sQ0FBQyxJQUFNLGVBQWUsR0FBRyxVQUM3QixRQUFnQjtJQUtoQixJQUFNLFNBQVMsR0FBRyxRQUFRLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQztJQUMvQyxJQUFBLEtBQUEsT0FBMEIsUUFBUSxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMsQ0FBQSxFQUFsRCxZQUFZLFFBQUEsRUFBSyxJQUFJLGNBQTZCLENBQUM7SUFDMUQsSUFBSSxZQUFZLEtBQUssYUFBYSxFQUFFO1FBQ2xDLHdCQUF3QjtRQUN4QixJQUFJLElBQUksQ0FBQyxNQUFNLEtBQUssQ0FBQyxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUU7WUFDdkMsTUFBTSxJQUFJLEtBQUssQ0FBQywwREFBd0QsU0FBUyxzQkFBbUIsQ0FBQyxDQUFDO1NBQ3ZHO1FBQ0QsT0FBTyxFQUFFLGVBQWUsRUFBRSxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztLQUNyQztTQUFNLElBQUksWUFBWSxLQUFLLFNBQVMsRUFBRTtRQUNyQyxvQkFBb0I7UUFDcEIsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDLEtBQUssYUFBYSxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFO1lBQzFFLE1BQU0sSUFBSSxLQUFLLENBQ2IsNkNBQTJDLFNBQVMsbUJBQWMsU0FBUyxtQkFBYyxTQUFTLHNCQUFtQixDQUN0SCxDQUFDO1NBQ0g7UUFDSyxJQUFBLEtBQUEsT0FBa0MsSUFBSSxJQUFBLEVBQXJDLFNBQVMsUUFBQSxFQUFFLENBQUMsUUFBQSxFQUFFLGVBQWUsUUFBUSxDQUFDO1FBQzdDLE9BQU8sRUFBRSxTQUFTLFdBQUEsRUFBRSxlQUFlLGlCQUFBLEVBQUUsQ0FBQztLQUN2QztTQUFNO1FBQ0wsTUFBTSxJQUFJLEtBQUssQ0FBQyxnREFBOEMsU0FBUyxxQkFBZ0IsU0FBUyxNQUFHLENBQUMsQ0FBQztLQUN0RztBQUNILENBQUMsQ0FBQztBQUVGOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxJQUFNLG1CQUFtQixHQUFHLFVBQUMsaUJBQTBCO0lBQzVELElBQUksaUJBQWlCO1FBQUUsTUFBTSxJQUFJLEtBQUssQ0FBQyxrREFBa0QsQ0FBQyxDQUFDO0FBQzdGLENBQUMsQ0FBQztBQUVGOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxJQUFNLGNBQWMsR0FBRyxVQUFDLE1BQWM7SUFDM0MsSUFBSSxZQUFZLENBQUMsTUFBTSxhQUFOLE1BQU0sY0FBTixNQUFNLEdBQUksRUFBRSxDQUFDO1FBQUUsTUFBTSxJQUFJLEtBQUssQ0FBQyxvREFBa0QsTUFBUSxDQUFDLENBQUM7QUFDOUcsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVJOIH0gZnJvbSBcIkBhd3Mtc2RrL3V0aWwtYXJuLXBhcnNlclwiO1xuXG5jb25zdCBET01BSU5fUEFUVEVSTiA9IC9eW2EtejAtOV1bYS16MC05XFwuXFwtXXsxLDYxfVthLXowLTldJC87XG5jb25zdCBJUF9BRERSRVNTX1BBVFRFUk4gPSAvKFxcZCtcXC4pezN9XFxkKy87XG5jb25zdCBET1RTX1BBVFRFUk4gPSAvXFwuXFwuLztcbmV4cG9ydCBjb25zdCBET1RfUEFUVEVSTiA9IC9cXC4vO1xuZXhwb3J0IGNvbnN0IFMzX0hPU1ROQU1FX1BBVFRFUk4gPSAvXiguK1xcLik/czNbLi1dKFthLXowLTktXSspXFwuLztcbmNvbnN0IFMzX1VTX0VBU1RfMV9BTFROQU1FX1BBVFRFUk4gPSAvXnMzKC1leHRlcm5hbC0xKT9cXC5hbWF6b25hd3NcXC5jb20kLztcbmNvbnN0IEFXU19QQVJUSVRJT05fU1VGRklYID0gXCJhbWF6b25hd3MuY29tXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgQWNjZXNzUG9pbnRBcm4gZXh0ZW5kcyBBUk4ge1xuICBhY2Nlc3NQb2ludE5hbWU6IHN0cmluZztcbn1cblxuZXhwb3J0IGludGVyZmFjZSBCdWNrZXRIb3N0bmFtZVBhcmFtcyB7XG4gIGlzQ3VzdG9tRW5kcG9pbnQ6IGJvb2xlYW47XG4gIGJhc2VIb3N0bmFtZTogc3RyaW5nO1xuICBidWNrZXROYW1lOiBzdHJpbmc7XG4gIGNsaWVudFJlZ2lvbjogc3RyaW5nO1xuICBhY2NlbGVyYXRlRW5kcG9pbnQ/OiBib29sZWFuO1xuICBkdWFsc3RhY2tFbmRwb2ludD86IGJvb2xlYW47XG4gIHBhdGhTdHlsZUVuZHBvaW50PzogYm9vbGVhbjtcbiAgdGxzQ29tcGF0aWJsZT86IGJvb2xlYW47XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgQXJuSG9zdG5hbWVQYXJhbXMgZXh0ZW5kcyBPbWl0PEJ1Y2tldEhvc3RuYW1lUGFyYW1zLCBcImJ1Y2tldE5hbWVcIj4ge1xuICBidWNrZXROYW1lOiBBUk47XG4gIGNsaWVudFNpZ25pbmdSZWdpb24/OiBzdHJpbmc7XG4gIGNsaWVudFBhcnRpdGlvbj86IHN0cmluZztcbiAgdXNlQXJuUmVnaW9uPzogYm9vbGVhbjtcbn1cblxuZXhwb3J0IGNvbnN0IGlzQnVja2V0TmFtZU9wdGlvbnMgPSAoXG4gIG9wdGlvbnM6IEJ1Y2tldEhvc3RuYW1lUGFyYW1zIHwgQXJuSG9zdG5hbWVQYXJhbXNcbik6IG9wdGlvbnMgaXMgQnVja2V0SG9zdG5hbWVQYXJhbXMgPT4gdHlwZW9mIG9wdGlvbnMuYnVja2V0TmFtZSA9PT0gXCJzdHJpbmdcIjtcblxuLyoqXG4gKiBHZXQgcHNldWRvIHJlZ2lvbiBmcm9tIHN1cHBsaWVkIHJlZ2lvbi4gRm9yIGV4YW1wbGUsIGlmIHN1cHBsaWVkIHdpdGggYGZpcHMtdXMtd2VzdC0yYCwgaXQgcmV0dXJucyBgdXMtd2VzdC0yYC5cbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgZ2V0UHNldWRvUmVnaW9uID0gKHJlZ2lvbjogc3RyaW5nKSA9PiAoaXNGaXBzUmVnaW9uKHJlZ2lvbikgPyByZWdpb24ucmVwbGFjZSgvZmlwcy18LWZpcHMvLCBcIlwiKSA6IHJlZ2lvbik7XG5cbi8qKlxuICogRGV0ZXJtaW5lcyB3aGV0aGVyIGEgZ2l2ZW4gc3RyaW5nIGlzIEROUyBjb21wbGlhbnQgcGVyIHRoZSBydWxlcyBvdXRsaW5lZCBieVxuICogUzMuIExlbmd0aCwgY2FwaXRhaXphdGlvbiwgYW5kIGxlYWRpbmcgZG90IHJlc3RyaWN0aW9ucyBhcmUgZW5mb3JjZWQgYnkgdGhlXG4gKiBET01BSU5fUEFUVEVSTiByZWd1bGFyIGV4cHJlc3Npb24uXG4gKiBAaW50ZXJuYWxcbiAqXG4gKiBAc2VlIGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L0J1Y2tldFJlc3RyaWN0aW9ucy5odG1sXG4gKi9cbmV4cG9ydCBjb25zdCBpc0Ruc0NvbXBhdGlibGVCdWNrZXROYW1lID0gKGJ1Y2tldE5hbWU6IHN0cmluZyk6IGJvb2xlYW4gPT5cbiAgRE9NQUlOX1BBVFRFUk4udGVzdChidWNrZXROYW1lKSAmJiAhSVBfQUREUkVTU19QQVRURVJOLnRlc3QoYnVja2V0TmFtZSkgJiYgIURPVFNfUEFUVEVSTi50ZXN0KGJ1Y2tldE5hbWUpO1xuXG5jb25zdCBnZXRSZWdpb25hbFN1ZmZpeCA9IChob3N0bmFtZTogc3RyaW5nKTogW3N0cmluZywgc3RyaW5nXSA9PiB7XG4gIGNvbnN0IHBhcnRzID0gaG9zdG5hbWUubWF0Y2goUzNfSE9TVE5BTUVfUEFUVEVSTikhO1xuICByZXR1cm4gW3BhcnRzWzJdLCBob3N0bmFtZS5yZXBsYWNlKG5ldyBSZWdFeHAoYF4ke3BhcnRzWzBdfWApLCBcIlwiKV07XG59O1xuXG5leHBvcnQgY29uc3QgZ2V0U3VmZml4ID0gKGhvc3RuYW1lOiBzdHJpbmcpOiBbc3RyaW5nLCBzdHJpbmddID0+XG4gIFMzX1VTX0VBU1RfMV9BTFROQU1FX1BBVFRFUk4udGVzdChob3N0bmFtZSkgPyBbXCJ1cy1lYXN0LTFcIiwgQVdTX1BBUlRJVElPTl9TVUZGSVhdIDogZ2V0UmVnaW9uYWxTdWZmaXgoaG9zdG5hbWUpO1xuXG4vKipcbiAqIEluZmVyIHJlZ2lvbiBhbmQgaG9zdG5hbWUgc3VmZml4IGZyb20gYSBjb21wbGV0ZSBob3N0bmFtZVxuICogQGludGVybmFsXG4gKiBAcGFyYW0gaG9zdG5hbWUgLSBIb3N0bmFtZVxuICogQHJldHVybnMgW1JlZ2lvbiwgSG9zdG5hbWUgc3VmZml4XVxuICovXG5leHBvcnQgY29uc3QgZ2V0U3VmZml4Rm9yQXJuRW5kcG9pbnQgPSAoaG9zdG5hbWU6IHN0cmluZyk6IFtzdHJpbmcsIHN0cmluZ10gPT5cbiAgUzNfVVNfRUFTVF8xX0FMVE5BTUVfUEFUVEVSTi50ZXN0KGhvc3RuYW1lKVxuICAgID8gW2hvc3RuYW1lLnJlcGxhY2UoYC4ke0FXU19QQVJUSVRJT05fU1VGRklYfWAsIFwiXCIpLCBBV1NfUEFSVElUSU9OX1NVRkZJWF1cbiAgICA6IGdldFJlZ2lvbmFsU3VmZml4KGhvc3RuYW1lKTtcblxuZXhwb3J0IGNvbnN0IHZhbGlkYXRlQXJuRW5kcG9pbnRPcHRpb25zID0gKG9wdGlvbnM6IHtcbiAgYWNjZWxlcmF0ZUVuZHBvaW50PzogYm9vbGVhbjtcbiAgdGxzQ29tcGF0aWJsZT86IGJvb2xlYW47XG4gIHBhdGhTdHlsZUVuZHBvaW50PzogYm9vbGVhbjtcbn0pID0+IHtcbiAgaWYgKG9wdGlvbnMucGF0aFN0eWxlRW5kcG9pbnQpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJQYXRoLXN0eWxlIFMzIGVuZHBvaW50IGlzIG5vdCBzdXBwb3J0ZWQgd2hlbiBidWNrZXQgaXMgYW4gQVJOXCIpO1xuICB9XG4gIGlmIChvcHRpb25zLmFjY2VsZXJhdGVFbmRwb2ludCkge1xuICAgIHRocm93IG5ldyBFcnJvcihcIkFjY2VsZXJhdGUgZW5kcG9pbnQgaXMgbm90IHN1cHBvcnRlZCB3aGVuIGJ1Y2tldCBpcyBhbiBBUk5cIik7XG4gIH1cbiAgaWYgKCFvcHRpb25zLnRsc0NvbXBhdGlibGUpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJIVFRQUyBpcyByZXF1aXJlZCB3aGVuIGJ1Y2tldCBpcyBhbiBBUk5cIik7XG4gIH1cbn07XG5cbmV4cG9ydCBjb25zdCB2YWxpZGF0ZVNlcnZpY2UgPSAoc2VydmljZTogc3RyaW5nKSA9PiB7XG4gIGlmIChzZXJ2aWNlICE9PSBcInMzXCIgJiYgc2VydmljZSAhPT0gXCJzMy1vdXRwb3N0c1wiKSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKFwiRXhwZWN0ICdzMycgb3IgJ3MzLW91dHBvc3RzJyBpbiBBUk4gc2VydmljZSBjb21wb25lbnRcIik7XG4gIH1cbn07XG5cbmV4cG9ydCBjb25zdCB2YWxpZGF0ZVMzU2VydmljZSA9IChzZXJ2aWNlOiBzdHJpbmcpID0+IHtcbiAgaWYgKHNlcnZpY2UgIT09IFwiczNcIikge1xuICAgIHRocm93IG5ldyBFcnJvcihcIkV4cGVjdCAnczMnIGluIEFjY2Vzc3BvaW50IEFSTiBzZXJ2aWNlIGNvbXBvbmVudFwiKTtcbiAgfVxufTtcblxuZXhwb3J0IGNvbnN0IHZhbGlkYXRlT3V0cG9zdFNlcnZpY2UgPSAoc2VydmljZTogc3RyaW5nKSA9PiB7XG4gIGlmIChzZXJ2aWNlICE9PSBcInMzLW91dHBvc3RzXCIpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJFeHBlY3QgJ3MzLXBvc3RzJyBpbiBPdXRwb3N0IEFSTiBzZXJ2aWNlIGNvbXBvbmVudFwiKTtcbiAgfVxufTtcblxuLyoqXG4gKiBWYWxpZGF0ZSBwYXJ0aXRpb24gaW5mZXJyZWQgZnJvbSBBUk4gaXMgdGhlIHNhbWUgdG8gYG9wdGlvbnMuY2xpZW50UGFydGl0aW9uYC5cbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgdmFsaWRhdGVQYXJ0aXRpb24gPSAocGFydGl0aW9uOiBzdHJpbmcsIG9wdGlvbnM6IHsgY2xpZW50UGFydGl0aW9uOiBzdHJpbmcgfSkgPT4ge1xuICBpZiAocGFydGl0aW9uICE9PSBvcHRpb25zLmNsaWVudFBhcnRpdGlvbikge1xuICAgIHRocm93IG5ldyBFcnJvcihgUGFydGl0aW9uIGluIEFSTiBpcyBpbmNvbXBhdGlibGUsIGdvdCBcIiR7cGFydGl0aW9ufVwiIGJ1dCBleHBlY3RlZCBcIiR7b3B0aW9ucy5jbGllbnRQYXJ0aXRpb259XCJgKTtcbiAgfVxufTtcblxuLyoqXG4gKiB2YWxpZGF0ZSByZWdpb24gdmFsdWUgaW5mZXJyZWQgZnJvbSBBUk4uIElmIGBvcHRpb25zLnVzZUFyblJlZ2lvbmAgaXMgc2V0LCBpdCB2YWxpZGF0ZXMgdGhlIHJlZ2lvbiBpcyBub3QgYSBGSVBTXG4gKiByZWdpb24uIElmIGBvcHRpb25zLnVzZUFyblJlZ2lvbmAgaXMgdW5zZXQsIGl0IHZhbGlkYXRlcyB0aGUgcmVnaW9uIGlzIGVxdWFsIHRvIGBvcHRpb25zLmNsaWVudFJlZ2lvbmAgb3JcbiAqIGBvcHRpb25zLmNsaWVudFNpZ25pbmdSZWdpb25gLlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCB2YWxpZGF0ZVJlZ2lvbiA9IChcbiAgcmVnaW9uOiBzdHJpbmcsXG4gIG9wdGlvbnM6IHtcbiAgICB1c2VBcm5SZWdpb24/OiBib29sZWFuO1xuICAgIGNsaWVudFJlZ2lvbjogc3RyaW5nO1xuICAgIGNsaWVudFNpZ25pbmdSZWdpb246IHN0cmluZztcbiAgfVxuKSA9PiB7XG4gIGlmIChyZWdpb24gPT09IFwiXCIpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJBUk4gcmVnaW9uIGlzIGVtcHR5XCIpO1xuICB9XG4gIGlmIChcbiAgICAhb3B0aW9ucy51c2VBcm5SZWdpb24gJiZcbiAgICAhaXNFcXVhbFJlZ2lvbnMocmVnaW9uLCBvcHRpb25zLmNsaWVudFJlZ2lvbikgJiZcbiAgICAhaXNFcXVhbFJlZ2lvbnMocmVnaW9uLCBvcHRpb25zLmNsaWVudFNpZ25pbmdSZWdpb24pXG4gICkge1xuICAgIHRocm93IG5ldyBFcnJvcihgUmVnaW9uIGluIEFSTiBpcyBpbmNvbXBhdGlibGUsIGdvdCAke3JlZ2lvbn0gYnV0IGV4cGVjdGVkICR7b3B0aW9ucy5jbGllbnRSZWdpb259YCk7XG4gIH1cbiAgaWYgKG9wdGlvbnMudXNlQXJuUmVnaW9uICYmIGlzRmlwc1JlZ2lvbihyZWdpb24pKSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKFwiRW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBGSVBTIHJlZ2lvblwiKTtcbiAgfVxufTtcblxuY29uc3QgaXNGaXBzUmVnaW9uID0gKHJlZ2lvbjogc3RyaW5nKSA9PiByZWdpb24uc3RhcnRzV2l0aChcImZpcHMtXCIpIHx8IHJlZ2lvbi5lbmRzV2l0aChcIi1maXBzXCIpO1xuXG5jb25zdCBpc0VxdWFsUmVnaW9ucyA9IChyZWdpb25BOiBzdHJpbmcsIHJlZ2lvbkI6IHN0cmluZykgPT5cbiAgcmVnaW9uQSA9PT0gcmVnaW9uQiB8fCBnZXRQc2V1ZG9SZWdpb24ocmVnaW9uQSkgPT09IHJlZ2lvbkIgfHwgcmVnaW9uQSA9PT0gZ2V0UHNldWRvUmVnaW9uKHJlZ2lvbkIpO1xuXG4vKipcbiAqIFZhbGlkYXRlIGFuIGFjY291bnQgSURcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgdmFsaWRhdGVBY2NvdW50SWQgPSAoYWNjb3VudElkOiBzdHJpbmcpID0+IHtcbiAgaWYgKCEvWzAtOV17MTJ9Ly5leGVjKGFjY291bnRJZCkpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJBY2Nlc3MgcG9pbnQgQVJOIGFjY291bnRJRCBkb2VzIG5vdCBtYXRjaCByZWdleCAnWzAtOV17MTJ9J1wiKTtcbiAgfVxufTtcblxuLyoqXG4gKiBWYWxpZGF0ZSBhIGhvc3QgbGFiZWwgYWNjb3JkaW5nIHRvIGh0dHBzOi8vdG9vbHMuaWV0Zi5vcmcvaHRtbC9yZmMzOTg2I3NlY3Rpb24tMy4yLjJcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgY29uc3QgdmFsaWRhdGVETlNIb3N0TGFiZWwgPSAobGFiZWw6IHN0cmluZywgb3B0aW9uczogeyB0bHNDb21wYXRpYmxlPzogYm9vbGVhbiB9ID0geyB0bHNDb21wYXRpYmxlOiB0cnVlIH0pID0+IHtcbiAgLy8gcmVmZXJlbmNlOiBodHRwczovL3Rvb2xzLmlldGYub3JnL2h0bWwvcmZjMzk4NiNzZWN0aW9uLTMuMi4yXG4gIGlmIChcbiAgICBsYWJlbC5sZW5ndGggPj0gNjQgfHxcbiAgICAhL15bYS16MC05XVthLXowLTkuLV0rW2EtejAtOV0kLy50ZXN0KGxhYmVsKSB8fFxuICAgIC8oXFxkK1xcLil7M31cXGQrLy50ZXN0KGxhYmVsKSB8fFxuICAgIC9bLi1dezJ9Ly50ZXN0KGxhYmVsKSB8fFxuICAgIChvcHRpb25zPy50bHNDb21wYXRpYmxlICYmIERPVF9QQVRURVJOLnRlc3QobGFiZWwpKVxuICApIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoYEludmFsaWQgRE5TIGxhYmVsICR7bGFiZWx9YCk7XG4gIH1cbn07XG5cbi8qKlxuICogVmFsaWRhdGUgYW5kIHBhcnNlIGFuIEFjY2VzcyBQb2ludCBBUk4gb3IgT3V0cG9zdHMgQVJOXG4gKiBAaW50ZXJuYWxcbiAqXG4gKiBAcGFyYW0gcmVzb3VyY2UgLSBUaGUgcmVzb3VyY2Ugc2VjdGlvbiBvZiBhbiBBUk5cbiAqIEByZXR1cm5zIEFjY2VzcyBQb2ludCBOYW1lIGFuZCBvcHRpb25hbCBPdXRwb3N0IElELlxuICovXG5leHBvcnQgY29uc3QgZ2V0QXJuUmVzb3VyY2VzID0gKFxuICByZXNvdXJjZTogc3RyaW5nXG4pOiB7XG4gIGFjY2Vzc3BvaW50TmFtZTogc3RyaW5nO1xuICBvdXRwb3N0SWQ/OiBzdHJpbmc7XG59ID0+IHtcbiAgY29uc3QgZGVsaW1pdGVyID0gcmVzb3VyY2UuaW5jbHVkZXMoXCI6XCIpID8gXCI6XCIgOiBcIi9cIjtcbiAgY29uc3QgW3Jlc291cmNlVHlwZSwgLi4ucmVzdF0gPSByZXNvdXJjZS5zcGxpdChkZWxpbWl0ZXIpO1xuICBpZiAocmVzb3VyY2VUeXBlID09PSBcImFjY2Vzc3BvaW50XCIpIHtcbiAgICAvLyBQYXJzZSBhY2Nlc3Nwb2ludCBBUk5cbiAgICBpZiAocmVzdC5sZW5ndGggIT09IDEgfHwgcmVzdFswXSA9PT0gXCJcIikge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKGBBY2Nlc3MgUG9pbnQgQVJOIHNob3VsZCBoYXZlIG9uZSByZXNvdXJjZSBhY2Nlc3Nwb2ludCR7ZGVsaW1pdGVyfXthY2Nlc3Nwb2ludG5hbWV9YCk7XG4gICAgfVxuICAgIHJldHVybiB7IGFjY2Vzc3BvaW50TmFtZTogcmVzdFswXSB9O1xuICB9IGVsc2UgaWYgKHJlc291cmNlVHlwZSA9PT0gXCJvdXRwb3N0XCIpIHtcbiAgICAvLyBQYXJzZSBvdXRwb3N0IEFSTlxuICAgIGlmICghcmVzdFswXSB8fCByZXN0WzFdICE9PSBcImFjY2Vzc3BvaW50XCIgfHwgIXJlc3RbMl0gfHwgcmVzdC5sZW5ndGggIT09IDMpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgICAgYE91dHBvc3QgQVJOIHNob3VsZCBoYXZlIHJlc291cmNlIG91dHBvc3Qke2RlbGltaXRlcn17b3V0cG9zdElkfSR7ZGVsaW1pdGVyfWFjY2Vzc3BvaW50JHtkZWxpbWl0ZXJ9e2FjY2Vzc3BvaW50TmFtZX1gXG4gICAgICApO1xuICAgIH1cbiAgICBjb25zdCBbb3V0cG9zdElkLCBfLCBhY2Nlc3Nwb2ludE5hbWVdID0gcmVzdDtcbiAgICByZXR1cm4geyBvdXRwb3N0SWQsIGFjY2Vzc3BvaW50TmFtZSB9O1xuICB9IGVsc2Uge1xuICAgIHRocm93IG5ldyBFcnJvcihgQVJOIHJlc291cmNlIHNob3VsZCBiZWdpbiB3aXRoICdhY2Nlc3Nwb2ludCR7ZGVsaW1pdGVyfScgb3IgJ291dHBvc3Qke2RlbGltaXRlcn0nYCk7XG4gIH1cbn07XG5cbi8qKlxuICogVGhyb3cgaWYgZHVhbCBzdGFjayBjb25maWd1cmF0aW9uIGlzIHNldCB0byB0cnVlLlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCB2YWxpZGF0ZU5vRHVhbHN0YWNrID0gKGR1YWxzdGFja0VuZHBvaW50OiBib29sZWFuKSA9PiB7XG4gIGlmIChkdWFsc3RhY2tFbmRwb2ludCkgdGhyb3cgbmV3IEVycm9yKFwiRHVhbHN0YWNrIGVuZHBvaW50IGlzIG5vdCBzdXBwb3J0ZWQgd2l0aCBPdXRwb3N0XCIpO1xufTtcblxuLyoqXG4gKiBWYWxpZGF0ZSByZWdpb24gaXMgbm90IGFwcGVuZGVkIG9yIHByZXBlbmRlZCB3aXRoIGEgYGZpcHMtYFxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCB2YWxpZGF0ZU5vRklQUyA9IChyZWdpb246IHN0cmluZykgPT4ge1xuICBpZiAoaXNGaXBzUmVnaW9uKHJlZ2lvbiA/PyBcIlwiKSkgdGhyb3cgbmV3IEVycm9yKGBGSVBTIHJlZ2lvbiBpcyBub3Qgc3VwcG9ydGVkIHdpdGggT3V0cG9zdCwgZ290ICR7cmVnaW9ufWApO1xufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostnameUtils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/configurations.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/configurations.js ***! \************************************************************************************/ /*! exports provided: resolveBucketEndpointConfig, NODE_USE_ARN_REGION_ENV_NAME, NODE_USE_ARN_REGION_INI_NAME, NODE_USE_ARN_REGION_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveBucketEndpointConfig\", function() { return resolveBucketEndpointConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_ARN_REGION_ENV_NAME\", function() { return NODE_USE_ARN_REGION_ENV_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_ARN_REGION_INI_NAME\", function() { return NODE_USE_ARN_REGION_INI_NAME; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_ARN_REGION_CONFIG_OPTIONS\", function() { return NODE_USE_ARN_REGION_CONFIG_OPTIONS; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nfunction resolveBucketEndpointConfig(input) {\n var _a = input.bucketEndpoint, bucketEndpoint = _a === void 0 ? false : _a, _b = input.forcePathStyle, forcePathStyle = _b === void 0 ? false : _b, _c = input.useAccelerateEndpoint, useAccelerateEndpoint = _c === void 0 ? false : _c, _d = input.useDualstackEndpoint, useDualstackEndpoint = _d === void 0 ? false : _d, _e = input.useArnRegion, useArnRegion = _e === void 0 ? false : _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { bucketEndpoint: bucketEndpoint,\n forcePathStyle: forcePathStyle,\n useAccelerateEndpoint: useAccelerateEndpoint,\n useDualstackEndpoint: useDualstackEndpoint, useArnRegion: typeof useArnRegion === \"function\" ? useArnRegion : function () { return Promise.resolve(useArnRegion); } });\n}\nvar NODE_USE_ARN_REGION_ENV_NAME = \"AWS_S3_USE_ARN_REGION\";\nvar NODE_USE_ARN_REGION_INI_NAME = \"s3_use_arn_region\";\n/**\n * Config to load useArnRegion from environment variables and shared INI files\n *\n * @api private\n */\nvar NODE_USE_ARN_REGION_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n if (!Object.prototype.hasOwnProperty.call(env, NODE_USE_ARN_REGION_ENV_NAME))\n return undefined;\n if (env[NODE_USE_ARN_REGION_ENV_NAME] === \"true\")\n return true;\n if (env[NODE_USE_ARN_REGION_ENV_NAME] === \"false\")\n return false;\n throw new Error(\"Cannot load env \" + NODE_USE_ARN_REGION_ENV_NAME + \". Expected \\\"true\\\" or \\\"false\\\", got \" + env[NODE_USE_ARN_REGION_ENV_NAME] + \".\");\n },\n configFileSelector: function (profile) {\n if (!Object.prototype.hasOwnProperty.call(profile, NODE_USE_ARN_REGION_INI_NAME))\n return undefined;\n if (profile[NODE_USE_ARN_REGION_INI_NAME] === \"true\")\n return true;\n if (profile[NODE_USE_ARN_REGION_INI_NAME] === \"false\")\n return false;\n throw new Error(\"Cannot load shared config entry \" + NODE_USE_ARN_REGION_INI_NAME + \". Expected \\\"true\\\" or \\\"false\\\", got \" + profile[NODE_USE_ARN_REGION_INI_NAME] + \".\");\n },\n default: false,\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlndXJhdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvY29uZmlndXJhdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQTJDQSxNQUFNLFVBQVUsMkJBQTJCLENBQ3pDLEtBQXlEO0lBR3ZELElBQUEsS0FLRSxLQUFLLGVBTGUsRUFBdEIsY0FBYyxtQkFBRyxLQUFLLEtBQUEsRUFDdEIsS0FJRSxLQUFLLGVBSmUsRUFBdEIsY0FBYyxtQkFBRyxLQUFLLEtBQUEsRUFDdEIsS0FHRSxLQUFLLHNCQUhzQixFQUE3QixxQkFBcUIsbUJBQUcsS0FBSyxLQUFBLEVBQzdCLEtBRUUsS0FBSyxxQkFGcUIsRUFBNUIsb0JBQW9CLG1CQUFHLEtBQUssS0FBQSxFQUM1QixLQUNFLEtBQUssYUFEYSxFQUFwQixZQUFZLG1CQUFHLEtBQUssS0FBQSxDQUNaO0lBQ1YsNkJBQ0ssS0FBSyxLQUNSLGNBQWMsZ0JBQUE7UUFDZCxjQUFjLGdCQUFBO1FBQ2QscUJBQXFCLHVCQUFBO1FBQ3JCLG9CQUFvQixzQkFBQSxFQUNwQixZQUFZLEVBQUUsT0FBTyxZQUFZLEtBQUssVUFBVSxDQUFDLENBQUMsQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDLGNBQU0sT0FBQSxPQUFPLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxFQUE3QixDQUE2QixJQUNyRztBQUNKLENBQUM7QUFFRCxNQUFNLENBQUMsSUFBTSw0QkFBNEIsR0FBRyx1QkFBdUIsQ0FBQztBQUNwRSxNQUFNLENBQUMsSUFBTSw0QkFBNEIsR0FBRyxtQkFBbUIsQ0FBQztBQUVoRTs7OztHQUlHO0FBQ0gsTUFBTSxDQUFDLElBQU0sa0NBQWtDLEdBQW1DO0lBQ2hGLDJCQUEyQixFQUFFLFVBQUMsR0FBc0I7UUFDbEQsSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUUsNEJBQTRCLENBQUM7WUFBRSxPQUFPLFNBQVMsQ0FBQztRQUMvRixJQUFJLEdBQUcsQ0FBQyw0QkFBNEIsQ0FBQyxLQUFLLE1BQU07WUFBRSxPQUFPLElBQUksQ0FBQztRQUM5RCxJQUFJLEdBQUcsQ0FBQyw0QkFBNEIsQ0FBQyxLQUFLLE9BQU87WUFBRSxPQUFPLEtBQUssQ0FBQztRQUNoRSxNQUFNLElBQUksS0FBSyxDQUNiLHFCQUFtQiw0QkFBNEIsOENBQXFDLEdBQUcsQ0FBQyw0QkFBNEIsQ0FBQyxNQUFHLENBQ3pILENBQUM7SUFDSixDQUFDO0lBQ0Qsa0JBQWtCLEVBQUUsVUFBQyxPQUFPO1FBQzFCLElBQUksQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLDRCQUE0QixDQUFDO1lBQUUsT0FBTyxTQUFTLENBQUM7UUFDbkcsSUFBSSxPQUFPLENBQUMsNEJBQTRCLENBQUMsS0FBSyxNQUFNO1lBQUUsT0FBTyxJQUFJLENBQUM7UUFDbEUsSUFBSSxPQUFPLENBQUMsNEJBQTRCLENBQUMsS0FBSyxPQUFPO1lBQUUsT0FBTyxLQUFLLENBQUM7UUFDcEUsTUFBTSxJQUFJLEtBQUssQ0FDYixxQ0FBbUMsNEJBQTRCLDhDQUFxQyxPQUFPLENBQUMsNEJBQTRCLENBQUMsTUFBRyxDQUM3SSxDQUFDO0lBQ0osQ0FBQztJQUNELE9BQU8sRUFBRSxLQUFLO0NBQ2YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IExvYWRlZENvbmZpZ1NlbGVjdG9ycyB9IGZyb20gXCJAYXdzLXNkay9ub2RlLWNvbmZpZy1wcm92aWRlclwiO1xuaW1wb3J0IHsgUHJvdmlkZXIsIFJlZ2lvbkluZm9Qcm92aWRlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgaW50ZXJmYWNlIEJ1Y2tldEVuZHBvaW50SW5wdXRDb25maWcge1xuICAvKipcbiAgICogV2hldGhlciB0aGUgcHJvdmlkZWQgZW5kcG9pbnQgYWRkcmVzc2VzIGFuIGluZGl2aWR1YWwgYnVja2V0LlxuICAgKi9cbiAgYnVja2V0RW5kcG9pbnQ/OiBib29sZWFuO1xuICAvKipcbiAgICogV2hldGhlciB0byBmb3JjZSBwYXRoIHN0eWxlIFVSTHMgZm9yIFMzIG9iamVjdHMgKGUuZy4sIGh0dHBzOi8vczMuYW1hem9uYXdzLmNvbS88YnVja2V0TmFtZT4vPGtleT4gaW5zdGVhZCBvZiBodHRwczovLzxidWNrZXROYW1lPi5zMy5hbWF6b25hd3MuY29tLzxrZXk+XG4gICAqL1xuICBmb3JjZVBhdGhTdHlsZT86IGJvb2xlYW47XG4gIC8qKlxuICAgKiBXaGV0aGVyIHRvIHVzZSB0aGUgUzMgVHJhbnNmZXIgQWNjZWxlcmF0aW9uIGVuZHBvaW50IGJ5IGRlZmF1bHRcbiAgICovXG4gIHVzZUFjY2VsZXJhdGVFbmRwb2ludD86IGJvb2xlYW47XG4gIC8qKlxuICAgKiBFbmFibGVzIElQdjYvSVB2NCBkdWFsc3RhY2sgZW5kcG9pbnQuIFdoZW4gYSBETlMgbG9va3VwIGlzIHBlcmZvcm1lZCBvbiBhbiBlbmRwb2ludCBvZiB0aGlzIHR5cGUsIGl0IHJldHVybnMgYW4g4oCcQeKAnSByZWNvcmQgd2l0aCBhbiBJUHY0IGFkZHJlc3MgYW5kIGFuIOKAnEFBQUHigJ0gcmVjb3JkIHdpdGggYW4gSVB2NiBhZGRyZXNzLiBJbiBtb3N0IGNhc2VzIHRoZSBuZXR3b3JrIHN0YWNrIGluIHRoZSBjbGllbnQgZW52aXJvbm1lbnQgd2lsbCBhdXRvbWF0aWNhbGx5IHByZWZlciB0aGUgQUFBQSByZWNvcmQgYW5kIG1ha2UgYSBjb25uZWN0aW9uIHVzaW5nIHRoZSBJUHY2IGFkZHJlc3MuIE5vdGUsIGhvd2V2ZXIsIHRoYXQgY3VycmVudGx5IG9uIFdpbmRvd3MsIHRoZSBJUHY0IGFkZHJlc3Mgd2lsbCBiZSBwcmVmZXJyZWQuXG4gICAqL1xuICB1c2VEdWFsc3RhY2tFbmRwb2ludD86IGJvb2xlYW47XG4gIC8qKlxuICAgKiBXaGV0aGVyIHRvIG92ZXJyaWRlIHRoZSByZXF1ZXN0IHJlZ2lvbiB3aXRoIHRoZSByZWdpb24gaW5mZXJyZWQgZnJvbSByZXF1ZXN0ZWQgcmVzb3VyY2UncyBBUk4uIERlZmF1bHRzIHRvIGZhbHNlXG4gICAqL1xuICB1c2VBcm5SZWdpb24/OiBib29sZWFuIHwgUHJvdmlkZXI8Ym9vbGVhbj47XG59XG5cbmludGVyZmFjZSBQcmV2aW91c2x5UmVzb2x2ZWQge1xuICBpc0N1c3RvbUVuZHBvaW50OiBib29sZWFuO1xuICByZWdpb246IFByb3ZpZGVyPHN0cmluZz47XG4gIHJlZ2lvbkluZm9Qcm92aWRlcjogUmVnaW9uSW5mb1Byb3ZpZGVyO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEJ1Y2tldEVuZHBvaW50UmVzb2x2ZWRDb25maWcge1xuICBpc0N1c3RvbUVuZHBvaW50OiBib29sZWFuO1xuICBidWNrZXRFbmRwb2ludDogYm9vbGVhbjtcbiAgZm9yY2VQYXRoU3R5bGU6IGJvb2xlYW47XG4gIHVzZUFjY2VsZXJhdGVFbmRwb2ludDogYm9vbGVhbjtcbiAgdXNlRHVhbHN0YWNrRW5kcG9pbnQ6IGJvb2xlYW47XG4gIHVzZUFyblJlZ2lvbjogUHJvdmlkZXI8Ym9vbGVhbj47XG4gIHJlZ2lvbjogUHJvdmlkZXI8c3RyaW5nPjtcbiAgcmVnaW9uSW5mb1Byb3ZpZGVyOiBSZWdpb25JbmZvUHJvdmlkZXI7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiByZXNvbHZlQnVja2V0RW5kcG9pbnRDb25maWc8VD4oXG4gIGlucHV0OiBUICYgUHJldmlvdXNseVJlc29sdmVkICYgQnVja2V0RW5kcG9pbnRJbnB1dENvbmZpZ1xuKTogVCAmIEJ1Y2tldEVuZHBvaW50UmVzb2x2ZWRDb25maWcge1xuICBjb25zdCB7XG4gICAgYnVja2V0RW5kcG9pbnQgPSBmYWxzZSxcbiAgICBmb3JjZVBhdGhTdHlsZSA9IGZhbHNlLFxuICAgIHVzZUFjY2VsZXJhdGVFbmRwb2ludCA9IGZhbHNlLFxuICAgIHVzZUR1YWxzdGFja0VuZHBvaW50ID0gZmFsc2UsXG4gICAgdXNlQXJuUmVnaW9uID0gZmFsc2UsXG4gIH0gPSBpbnB1dDtcbiAgcmV0dXJuIHtcbiAgICAuLi5pbnB1dCxcbiAgICBidWNrZXRFbmRwb2ludCxcbiAgICBmb3JjZVBhdGhTdHlsZSxcbiAgICB1c2VBY2NlbGVyYXRlRW5kcG9pbnQsXG4gICAgdXNlRHVhbHN0YWNrRW5kcG9pbnQsXG4gICAgdXNlQXJuUmVnaW9uOiB0eXBlb2YgdXNlQXJuUmVnaW9uID09PSBcImZ1bmN0aW9uXCIgPyB1c2VBcm5SZWdpb24gOiAoKSA9PiBQcm9taXNlLnJlc29sdmUodXNlQXJuUmVnaW9uKSxcbiAgfTtcbn1cblxuZXhwb3J0IGNvbnN0IE5PREVfVVNFX0FSTl9SRUdJT05fRU5WX05BTUUgPSBcIkFXU19TM19VU0VfQVJOX1JFR0lPTlwiO1xuZXhwb3J0IGNvbnN0IE5PREVfVVNFX0FSTl9SRUdJT05fSU5JX05BTUUgPSBcInMzX3VzZV9hcm5fcmVnaW9uXCI7XG5cbi8qKlxuICogQ29uZmlnIHRvIGxvYWQgdXNlQXJuUmVnaW9uIGZyb20gZW52aXJvbm1lbnQgdmFyaWFibGVzIGFuZCBzaGFyZWQgSU5JIGZpbGVzXG4gKlxuICogQGFwaSBwcml2YXRlXG4gKi9cbmV4cG9ydCBjb25zdCBOT0RFX1VTRV9BUk5fUkVHSU9OX0NPTkZJR19PUFRJT05TOiBMb2FkZWRDb25maWdTZWxlY3RvcnM8Ym9vbGVhbj4gPSB7XG4gIGVudmlyb25tZW50VmFyaWFibGVTZWxlY3RvcjogKGVudjogTm9kZUpTLlByb2Nlc3NFbnYpID0+IHtcbiAgICBpZiAoIU9iamVjdC5wcm90b3R5cGUuaGFzT3duUHJvcGVydHkuY2FsbChlbnYsIE5PREVfVVNFX0FSTl9SRUdJT05fRU5WX05BTUUpKSByZXR1cm4gdW5kZWZpbmVkO1xuICAgIGlmIChlbnZbTk9ERV9VU0VfQVJOX1JFR0lPTl9FTlZfTkFNRV0gPT09IFwidHJ1ZVwiKSByZXR1cm4gdHJ1ZTtcbiAgICBpZiAoZW52W05PREVfVVNFX0FSTl9SRUdJT05fRU5WX05BTUVdID09PSBcImZhbHNlXCIpIHJldHVybiBmYWxzZTtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICBgQ2Fubm90IGxvYWQgZW52ICR7Tk9ERV9VU0VfQVJOX1JFR0lPTl9FTlZfTkFNRX0uIEV4cGVjdGVkIFwidHJ1ZVwiIG9yIFwiZmFsc2VcIiwgZ290ICR7ZW52W05PREVfVVNFX0FSTl9SRUdJT05fRU5WX05BTUVdfS5gXG4gICAgKTtcbiAgfSxcbiAgY29uZmlnRmlsZVNlbGVjdG9yOiAocHJvZmlsZSkgPT4ge1xuICAgIGlmICghT2JqZWN0LnByb3RvdHlwZS5oYXNPd25Qcm9wZXJ0eS5jYWxsKHByb2ZpbGUsIE5PREVfVVNFX0FSTl9SRUdJT05fSU5JX05BTUUpKSByZXR1cm4gdW5kZWZpbmVkO1xuICAgIGlmIChwcm9maWxlW05PREVfVVNFX0FSTl9SRUdJT05fSU5JX05BTUVdID09PSBcInRydWVcIikgcmV0dXJuIHRydWU7XG4gICAgaWYgKHByb2ZpbGVbTk9ERV9VU0VfQVJOX1JFR0lPTl9JTklfTkFNRV0gPT09IFwiZmFsc2VcIikgcmV0dXJuIGZhbHNlO1xuICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgIGBDYW5ub3QgbG9hZCBzaGFyZWQgY29uZmlnIGVudHJ5ICR7Tk9ERV9VU0VfQVJOX1JFR0lPTl9JTklfTkFNRX0uIEV4cGVjdGVkIFwidHJ1ZVwiIG9yIFwiZmFsc2VcIiwgZ290ICR7cHJvZmlsZVtOT0RFX1VTRV9BUk5fUkVHSU9OX0lOSV9OQU1FXX0uYFxuICAgICk7XG4gIH0sXG4gIGRlZmF1bHQ6IGZhbHNlLFxufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js ***! \***************************************************************************/ /*! exports provided: bucketEndpointMiddleware, bucketEndpointMiddlewareOptions, getBucketEndpointPlugin, bucketHostname, resolveBucketEndpointConfig, NODE_USE_ARN_REGION_ENV_NAME, NODE_USE_ARN_REGION_INI_NAME, NODE_USE_ARN_REGION_CONFIG_OPTIONS, getArnResources, getPseudoRegion, getSuffixForArnEndpoint, validateOutpostService, validatePartition, validateAccountId, validateRegion, validateDNSHostLabel, validateNoDualstack, validateNoFIPS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _bucketEndpointMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./bucketEndpointMiddleware */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketEndpointMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"bucketEndpointMiddleware\", function() { return _bucketEndpointMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"bucketEndpointMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"bucketEndpointMiddlewareOptions\", function() { return _bucketEndpointMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"bucketEndpointMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getBucketEndpointPlugin\", function() { return _bucketEndpointMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"getBucketEndpointPlugin\"]; });\n\n/* harmony import */ var _bucketHostname__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./bucketHostname */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostname.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"bucketHostname\", function() { return _bucketHostname__WEBPACK_IMPORTED_MODULE_1__[\"bucketHostname\"]; });\n\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveBucketEndpointConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_2__[\"resolveBucketEndpointConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_ARN_REGION_ENV_NAME\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_2__[\"NODE_USE_ARN_REGION_ENV_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_ARN_REGION_INI_NAME\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_2__[\"NODE_USE_ARN_REGION_INI_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_USE_ARN_REGION_CONFIG_OPTIONS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_2__[\"NODE_USE_ARN_REGION_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./bucketHostnameUtils */ \"./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/bucketHostnameUtils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getArnResources\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"getArnResources\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getPseudoRegion\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"getPseudoRegion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSuffixForArnEndpoint\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"getSuffixForArnEndpoint\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateOutpostService\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"validateOutpostService\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validatePartition\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"validatePartition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateAccountId\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"validateAccountId\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateRegion\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"validateRegion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateDNSHostLabel\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"validateDNSHostLabel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateNoDualstack\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"validateNoDualstack\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateNoFIPS\", function() { return _bucketHostnameUtils__WEBPACK_IMPORTED_MODULE_3__[\"validateNoFIPS\"]; });\n\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsT0FBTyxFQUNMLGVBQWUsRUFDZixlQUFlLEVBQ2YsdUJBQXVCLEVBQ3ZCLHNCQUFzQixFQUN0QixpQkFBaUIsRUFDakIsaUJBQWlCLEVBQ2pCLGNBQWMsRUFDZCxvQkFBb0IsRUFDcEIsbUJBQW1CLEVBQ25CLGNBQWMsR0FDZixNQUFNLHVCQUF1QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vYnVja2V0RW5kcG9pbnRNaWRkbGV3YXJlXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9idWNrZXRIb3N0bmFtZVwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29uZmlndXJhdGlvbnNcIjtcbmV4cG9ydCB7XG4gIGdldEFyblJlc291cmNlcyxcbiAgZ2V0UHNldWRvUmVnaW9uLFxuICBnZXRTdWZmaXhGb3JBcm5FbmRwb2ludCxcbiAgdmFsaWRhdGVPdXRwb3N0U2VydmljZSxcbiAgdmFsaWRhdGVQYXJ0aXRpb24sXG4gIHZhbGlkYXRlQWNjb3VudElkLFxuICB2YWxpZGF0ZVJlZ2lvbixcbiAgdmFsaWRhdGVETlNIb3N0TGFiZWwsXG4gIHZhbGlkYXRlTm9EdWFsc3RhY2ssXG4gIHZhbGlkYXRlTm9GSVBTLFxufSBmcm9tIFwiLi9idWNrZXRIb3N0bmFtZVV0aWxzXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-bucket-endpoint/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js ***! \**************************************************************************/ /*! exports provided: contentLengthMiddleware, contentLengthMiddlewareOptions, getContentLengthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"contentLengthMiddleware\", function() { return contentLengthMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"contentLengthMiddlewareOptions\", function() { return contentLengthMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getContentLengthPlugin\", function() { return getContentLengthPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\nvar CONTENT_LENGTH_HEADER = \"content-length\";\nfunction contentLengthMiddleware(bodyLengthChecker) {\n var _this = this;\n return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var request, body, headers, length;\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n body = request.body, headers = request.headers;\n if (body &&\n Object.keys(headers)\n .map(function (str) { return str.toLowerCase(); })\n .indexOf(CONTENT_LENGTH_HEADER) === -1) {\n length = bodyLengthChecker(body);\n if (length !== undefined) {\n request.headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request.headers), (_a = {}, _a[CONTENT_LENGTH_HEADER] = String(length), _a));\n }\n }\n }\n return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n });\n }); }; };\n}\nvar contentLengthMiddlewareOptions = {\n step: \"build\",\n tags: [\"SET_CONTENT_LENGTH\", \"CONTENT_LENGTH\"],\n name: \"contentLengthMiddleware\",\n override: true,\n};\nvar getContentLengthPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(contentLengthMiddleware(options.bodyLengthChecker), contentLengthMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQVlyRCxJQUFNLHFCQUFxQixHQUFHLGdCQUFnQixDQUFDO0FBRS9DLE1BQU0sVUFBVSx1QkFBdUIsQ0FBQyxpQkFBdUM7SUFBL0UsaUJBNEJDO0lBM0JDLE9BQU8sVUFBZ0MsSUFBK0IsSUFBZ0MsT0FBQSxVQUNwRyxJQUFnQzs7OztZQUUxQixPQUFPLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQztZQUM3QixJQUFJLFdBQVcsQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDLEVBQUU7Z0JBQzNCLElBQUksR0FBYyxPQUFPLEtBQXJCLEVBQUUsT0FBTyxHQUFLLE9BQU8sUUFBWixDQUFhO2dCQUNsQyxJQUNFLElBQUk7b0JBQ0osTUFBTSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUM7eUJBQ2pCLEdBQUcsQ0FBQyxVQUFDLEdBQUcsSUFBSyxPQUFBLEdBQUcsQ0FBQyxXQUFXLEVBQUUsRUFBakIsQ0FBaUIsQ0FBQzt5QkFDL0IsT0FBTyxDQUFDLHFCQUFxQixDQUFDLEtBQUssQ0FBQyxDQUFDLEVBQ3hDO29CQUNNLE1BQU0sR0FBRyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztvQkFDdkMsSUFBSSxNQUFNLEtBQUssU0FBUyxFQUFFO3dCQUN4QixPQUFPLENBQUMsT0FBTyx5QkFDVixPQUFPLENBQUMsT0FBTyxnQkFDakIscUJBQXFCLElBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxNQUN4QyxDQUFDO3FCQUNIO2lCQUNGO2FBQ0Y7WUFFRCxzQkFBTyxJQUFJLHVCQUNOLElBQUksS0FDUCxPQUFPLFNBQUEsSUFDUCxFQUFDOztTQUNKLEVBMUJxRyxDQTBCckcsQ0FBQztBQUNKLENBQUM7QUFFRCxNQUFNLENBQUMsSUFBTSw4QkFBOEIsR0FBd0I7SUFDakUsSUFBSSxFQUFFLE9BQU87SUFDYixJQUFJLEVBQUUsQ0FBQyxvQkFBb0IsRUFBRSxnQkFBZ0IsQ0FBQztJQUM5QyxJQUFJLEVBQUUseUJBQXlCO0lBQy9CLFFBQVEsRUFBRSxJQUFJO0NBQ2YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLHNCQUFzQixHQUFHLFVBQUMsT0FBb0QsSUFBMEIsT0FBQSxDQUFDO0lBQ3BILFlBQVksRUFBRSxVQUFDLFdBQVc7UUFDeEIsV0FBVyxDQUFDLEdBQUcsQ0FBQyx1QkFBdUIsQ0FBQyxPQUFPLENBQUMsaUJBQWlCLENBQUMsRUFBRSw4QkFBOEIsQ0FBQyxDQUFDO0lBQ3RHLENBQUM7Q0FDRixDQUFDLEVBSm1ILENBSW5ILENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwUmVxdWVzdCB9IGZyb20gXCJAYXdzLXNkay9wcm90b2NvbC1odHRwXCI7XG5pbXBvcnQge1xuICBCb2R5TGVuZ3RoQ2FsY3VsYXRvcixcbiAgQnVpbGRIYW5kbGVyLFxuICBCdWlsZEhhbmRsZXJBcmd1bWVudHMsXG4gIEJ1aWxkSGFuZGxlck9wdGlvbnMsXG4gIEJ1aWxkSGFuZGxlck91dHB1dCxcbiAgQnVpbGRNaWRkbGV3YXJlLFxuICBNZXRhZGF0YUJlYXJlcixcbiAgUGx1Z2dhYmxlLFxufSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuY29uc3QgQ09OVEVOVF9MRU5HVEhfSEVBREVSID0gXCJjb250ZW50LWxlbmd0aFwiO1xuXG5leHBvcnQgZnVuY3Rpb24gY29udGVudExlbmd0aE1pZGRsZXdhcmUoYm9keUxlbmd0aENoZWNrZXI6IEJvZHlMZW5ndGhDYWxjdWxhdG9yKTogQnVpbGRNaWRkbGV3YXJlPGFueSwgYW55PiB7XG4gIHJldHVybiA8T3V0cHV0IGV4dGVuZHMgTWV0YWRhdGFCZWFyZXI+KG5leHQ6IEJ1aWxkSGFuZGxlcjxhbnksIE91dHB1dD4pOiBCdWlsZEhhbmRsZXI8YW55LCBPdXRwdXQ+ID0+IGFzeW5jIChcbiAgICBhcmdzOiBCdWlsZEhhbmRsZXJBcmd1bWVudHM8YW55PlxuICApOiBQcm9taXNlPEJ1aWxkSGFuZGxlck91dHB1dDxPdXRwdXQ+PiA9PiB7XG4gICAgY29uc3QgcmVxdWVzdCA9IGFyZ3MucmVxdWVzdDtcbiAgICBpZiAoSHR0cFJlcXVlc3QuaXNJbnN0YW5jZShyZXF1ZXN0KSkge1xuICAgICAgY29uc3QgeyBib2R5LCBoZWFkZXJzIH0gPSByZXF1ZXN0O1xuICAgICAgaWYgKFxuICAgICAgICBib2R5ICYmXG4gICAgICAgIE9iamVjdC5rZXlzKGhlYWRlcnMpXG4gICAgICAgICAgLm1hcCgoc3RyKSA9PiBzdHIudG9Mb3dlckNhc2UoKSlcbiAgICAgICAgICAuaW5kZXhPZihDT05URU5UX0xFTkdUSF9IRUFERVIpID09PSAtMVxuICAgICAgKSB7XG4gICAgICAgIGNvbnN0IGxlbmd0aCA9IGJvZHlMZW5ndGhDaGVja2VyKGJvZHkpO1xuICAgICAgICBpZiAobGVuZ3RoICE9PSB1bmRlZmluZWQpIHtcbiAgICAgICAgICByZXF1ZXN0LmhlYWRlcnMgPSB7XG4gICAgICAgICAgICAuLi5yZXF1ZXN0LmhlYWRlcnMsXG4gICAgICAgICAgICBbQ09OVEVOVF9MRU5HVEhfSEVBREVSXTogU3RyaW5nKGxlbmd0aCksXG4gICAgICAgICAgfTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cblxuICAgIHJldHVybiBuZXh0KHtcbiAgICAgIC4uLmFyZ3MsXG4gICAgICByZXF1ZXN0LFxuICAgIH0pO1xuICB9O1xufVxuXG5leHBvcnQgY29uc3QgY29udGVudExlbmd0aE1pZGRsZXdhcmVPcHRpb25zOiBCdWlsZEhhbmRsZXJPcHRpb25zID0ge1xuICBzdGVwOiBcImJ1aWxkXCIsXG4gIHRhZ3M6IFtcIlNFVF9DT05URU5UX0xFTkdUSFwiLCBcIkNPTlRFTlRfTEVOR1RIXCJdLFxuICBuYW1lOiBcImNvbnRlbnRMZW5ndGhNaWRkbGV3YXJlXCIsXG4gIG92ZXJyaWRlOiB0cnVlLFxufTtcblxuZXhwb3J0IGNvbnN0IGdldENvbnRlbnRMZW5ndGhQbHVnaW4gPSAob3B0aW9uczogeyBib2R5TGVuZ3RoQ2hlY2tlcjogQm9keUxlbmd0aENhbGN1bGF0b3IgfSk6IFBsdWdnYWJsZTxhbnksIGFueT4gPT4gKHtcbiAgYXBwbHlUb1N0YWNrOiAoY2xpZW50U3RhY2spID0+IHtcbiAgICBjbGllbnRTdGFjay5hZGQoY29udGVudExlbmd0aE1pZGRsZXdhcmUob3B0aW9ucy5ib2R5TGVuZ3RoQ2hlY2tlciksIGNvbnRlbnRMZW5ndGhNaWRkbGV3YXJlT3B0aW9ucyk7XG4gIH0sXG59KTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-content-length/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/dist-es/configuration.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/dist-es/configuration.js ***! \*******************************************************************************/ /*! exports provided: resolveEventStreamConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveEventStreamConfig\", function() { return resolveEventStreamConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/tslib/tslib.es6.js\");\n\nfunction resolveEventStreamConfig(input) {\n var eventSigner = input.signer;\n var eventStreamPayloadHandler = input.eventStreamPayloadHandlerProvider(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { eventSigner: eventSigner }));\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { eventSigner: eventSigner, eventStreamPayloadHandler: eventStreamPayloadHandler });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/dist-es/configuration.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/dist-es/handling-middleware.js": /*!*************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/dist-es/handling-middleware.js ***! \*************************************************************************************/ /*! exports provided: eventStreamHandlingMiddleware, eventStreamHandlingMiddlewareOptions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"eventStreamHandlingMiddleware\", function() { return eventStreamHandlingMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"eventStreamHandlingMiddlewareOptions\", function() { return eventStreamHandlingMiddlewareOptions; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n\n\nvar eventStreamHandlingMiddleware = function (options) {\n return function (next, context) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request))\n return [2, next(args)];\n return [2, options.eventStreamPayloadHandler.handle(next, args, context)];\n });\n }); };\n };\n};\nvar eventStreamHandlingMiddlewareOptions = {\n tags: [\"EVENT_STREAM\", \"SIGNATURE\", \"HANDLE\"],\n name: \"eventStreamHandlingMiddleware\",\n relation: \"after\",\n toMiddleware: \"awsAuthMiddleware\",\n override: true,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/dist-es/handling-middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/dist-es/headers-middleware.js": /*!************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/dist-es/headers-middleware.js ***! \************************************************************************************/ /*! exports provided: eventStreamHeaderMiddleware, eventStreamHeaderMiddlewareOptions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"eventStreamHeaderMiddleware\", function() { return eventStreamHeaderMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"eventStreamHeaderMiddlewareOptions\", function() { return eventStreamHeaderMiddlewareOptions; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n\n\nvar eventStreamHeaderMiddleware = function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request))\n return [2, next(args)];\n request.headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request.headers), { \"Content-Type\": \"application/vnd.amazon.eventstream\", \"x-amz-content-sha256\": \"STREAMING-AWS4-HMAC-SHA256-EVENTS\" });\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n });\n}); }; };\nvar eventStreamHeaderMiddlewareOptions = {\n step: \"build\",\n tags: [\"EVENT_STREAM\", \"HEADER\", \"CONTENT_TYPE\", \"CONTENT_SHA256\"],\n name: \"eventStreamHeaderMiddleware\",\n override: true,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/dist-es/headers-middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/dist-es/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/dist-es/index.js ***! \***********************************************************************/ /*! exports provided: resolveEventStreamConfig, eventStreamHandlingMiddleware, eventStreamHandlingMiddlewareOptions, eventStreamHeaderMiddleware, eventStreamHeaderMiddlewareOptions, getEventStreamPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _configuration__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./configuration */ \"./node_modules/@aws-sdk/middleware-eventstream/dist-es/configuration.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveEventStreamConfig\", function() { return _configuration__WEBPACK_IMPORTED_MODULE_0__[\"resolveEventStreamConfig\"]; });\n\n/* harmony import */ var _handling_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./handling-middleware */ \"./node_modules/@aws-sdk/middleware-eventstream/dist-es/handling-middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eventStreamHandlingMiddleware\", function() { return _handling_middleware__WEBPACK_IMPORTED_MODULE_1__[\"eventStreamHandlingMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eventStreamHandlingMiddlewareOptions\", function() { return _handling_middleware__WEBPACK_IMPORTED_MODULE_1__[\"eventStreamHandlingMiddlewareOptions\"]; });\n\n/* harmony import */ var _headers_middleware__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./headers-middleware */ \"./node_modules/@aws-sdk/middleware-eventstream/dist-es/headers-middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eventStreamHeaderMiddleware\", function() { return _headers_middleware__WEBPACK_IMPORTED_MODULE_2__[\"eventStreamHeaderMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"eventStreamHeaderMiddlewareOptions\", function() { return _headers_middleware__WEBPACK_IMPORTED_MODULE_2__[\"eventStreamHeaderMiddlewareOptions\"]; });\n\n/* harmony import */ var _plugin__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./plugin */ \"./node_modules/@aws-sdk/middleware-eventstream/dist-es/plugin.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getEventStreamPlugin\", function() { return _plugin__WEBPACK_IMPORTED_MODULE_3__[\"getEventStreamPlugin\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/dist-es/plugin.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/dist-es/plugin.js ***! \************************************************************************/ /*! exports provided: getEventStreamPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getEventStreamPlugin\", function() { return getEventStreamPlugin; });\n/* harmony import */ var _handling_middleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./handling-middleware */ \"./node_modules/@aws-sdk/middleware-eventstream/dist-es/handling-middleware.js\");\n/* harmony import */ var _headers_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./headers-middleware */ \"./node_modules/@aws-sdk/middleware-eventstream/dist-es/headers-middleware.js\");\n\n\nvar getEventStreamPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(Object(_handling_middleware__WEBPACK_IMPORTED_MODULE_0__[\"eventStreamHandlingMiddleware\"])(options), _handling_middleware__WEBPACK_IMPORTED_MODULE_0__[\"eventStreamHandlingMiddlewareOptions\"]);\n clientStack.add(_headers_middleware__WEBPACK_IMPORTED_MODULE_1__[\"eventStreamHeaderMiddleware\"], _headers_middleware__WEBPACK_IMPORTED_MODULE_1__[\"eventStreamHeaderMiddlewareOptions\"]);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/dist-es/plugin.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js ***! \*****************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js": /*!*****************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js ***! \*****************************************************************************************************************/ /*! exports provided: HttpRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return HttpRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/tslib/tslib.es6.js\");\n\nvar HttpRequest = (function () {\n function HttpRequest(options) {\n this.method = options.method || \"GET\";\n this.hostname = options.hostname || \"localhost\";\n this.port = options.port;\n this.query = options.query || {};\n this.headers = options.headers || {};\n this.body = options.body;\n this.protocol = options.protocol\n ? options.protocol.slice(-1) !== \":\"\n ? \"\".concat(options.protocol, \":\")\n : options.protocol\n : \"https:\";\n this.path = options.path ? (options.path.charAt(0) !== \"/\" ? \"/\".concat(options.path) : options.path) : \"/\";\n }\n HttpRequest.isInstance = function (request) {\n if (!request)\n return false;\n var req = request;\n return (\"method\" in req &&\n \"protocol\" in req &&\n \"hostname\" in req &&\n \"path\" in req &&\n typeof req[\"query\"] === \"object\" &&\n typeof req[\"headers\"] === \"object\");\n };\n HttpRequest.prototype.clone = function () {\n var cloned = new HttpRequest(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this.headers) }));\n if (cloned.query)\n cloned.query = cloneQuery(cloned.query);\n return cloned;\n };\n return HttpRequest;\n}());\n\nfunction cloneQuery(query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(param), false) : param, _a));\n }, {});\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js": /*!******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js ***! \******************************************************************************************************************/ /*! exports provided: HttpResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return HttpResponse; });\nvar HttpResponse = (function () {\n function HttpResponse(options) {\n this.statusCode = options.statusCode;\n this.headers = options.headers || {};\n this.body = options.body;\n }\n HttpResponse.isInstance = function (response) {\n if (!response)\n return false;\n var resp = response;\n return typeof resp.statusCode === \"number\" && typeof resp.headers === \"object\";\n };\n return HttpResponse;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/index.js": /*!***********************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/index.js ***! \***********************************************************************************************************/ /*! exports provided: HttpRequest, HttpResponse, isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _httpHandler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./httpHandler */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _httpRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./httpRequest */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return _httpRequest__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]; });\n\n/* harmony import */ var _httpResponse__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./httpResponse */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return _httpResponse__WEBPACK_IMPORTED_MODULE_2__[\"HttpResponse\"]; });\n\n/* harmony import */ var _isValidHostname__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isValidHostname */ \"./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return _isValidHostname__WEBPACK_IMPORTED_MODULE_3__[\"isValidHostname\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js ***! \*********************************************************************************************************************/ /*! exports provided: isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return isValidHostname; });\nfunction isValidHostname(hostname) {\n var hostPattern = /^[a-z0-9][a-z0-9\\.\\-]*[a-z0-9]$/;\n return hostPattern.test(hostname);\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-eventstream/node_modules/tslib/tslib.es6.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-eventstream/node_modules/tslib/tslib.es6.js ***! \**************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-eventstream/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-expect-continue/dist/es/index.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-expect-continue/dist/es/index.js ***! \***************************************************************************/ /*! exports provided: addExpectContinueMiddleware, addExpectContinueMiddlewareOptions, getAddExpectContinuePlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addExpectContinueMiddleware\", function() { return addExpectContinueMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addExpectContinueMiddlewareOptions\", function() { return addExpectContinueMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getAddExpectContinuePlugin\", function() { return getAddExpectContinuePlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\nfunction addExpectContinueMiddleware(options) {\n var _this = this;\n return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var request;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request) && request.body && options.runtime === \"node\") {\n request.headers = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request.headers), { Expect: \"100-continue\" });\n }\n return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n });\n }); }; };\n}\nvar addExpectContinueMiddlewareOptions = {\n step: \"build\",\n tags: [\"SET_EXPECT_HEADER\", \"EXPECT_HEADER\"],\n name: \"addExpectContinueMiddleware\",\n override: true,\n};\nvar getAddExpectContinuePlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(addExpectContinueMiddleware(options), addExpectContinueMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQWVyRCxNQUFNLFVBQVUsMkJBQTJCLENBQUMsT0FBMkI7SUFBdkUsaUJBZ0JDO0lBZkMsT0FBTyxVQUFnQyxJQUErQixJQUFnQyxPQUFBLFVBQ3BHLElBQWdDOzs7WUFFeEIsT0FBTyxHQUFLLElBQUksUUFBVCxDQUFVO1lBQ3pCLElBQUksV0FBVyxDQUFDLFVBQVUsQ0FBQyxPQUFPLENBQUMsSUFBSSxPQUFPLENBQUMsSUFBSSxJQUFJLE9BQU8sQ0FBQyxPQUFPLEtBQUssTUFBTSxFQUFFO2dCQUNqRixPQUFPLENBQUMsT0FBTyx5QkFDVixPQUFPLENBQUMsT0FBTyxLQUNsQixNQUFNLEVBQUUsY0FBYyxHQUN2QixDQUFDO2FBQ0g7WUFDRCxzQkFBTyxJQUFJLHVCQUNOLElBQUksS0FDUCxPQUFPLFNBQUEsSUFDUCxFQUFDOztTQUNKLEVBZHFHLENBY3JHLENBQUM7QUFDSixDQUFDO0FBRUQsTUFBTSxDQUFDLElBQU0sa0NBQWtDLEdBQXdCO0lBQ3JFLElBQUksRUFBRSxPQUFPO0lBQ2IsSUFBSSxFQUFFLENBQUMsbUJBQW1CLEVBQUUsZUFBZSxDQUFDO0lBQzVDLElBQUksRUFBRSw2QkFBNkI7SUFDbkMsUUFBUSxFQUFFLElBQUk7Q0FDZixDQUFDO0FBRUYsTUFBTSxDQUFDLElBQU0sMEJBQTBCLEdBQUcsVUFBQyxPQUEyQixJQUEwQixPQUFBLENBQUM7SUFDL0YsWUFBWSxFQUFFLFVBQUMsV0FBVztRQUN4QixXQUFXLENBQUMsR0FBRyxDQUFDLDJCQUEyQixDQUFDLE9BQU8sQ0FBQyxFQUFFLGtDQUFrQyxDQUFDLENBQUM7SUFDNUYsQ0FBQztDQUNGLENBQUMsRUFKOEYsQ0FJOUYsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBSZXF1ZXN0IH0gZnJvbSBcIkBhd3Mtc2RrL3Byb3RvY29sLWh0dHBcIjtcbmltcG9ydCB7XG4gIEJ1aWxkSGFuZGxlcixcbiAgQnVpbGRIYW5kbGVyQXJndW1lbnRzLFxuICBCdWlsZEhhbmRsZXJPcHRpb25zLFxuICBCdWlsZEhhbmRsZXJPdXRwdXQsXG4gIEJ1aWxkTWlkZGxld2FyZSxcbiAgTWV0YWRhdGFCZWFyZXIsXG4gIFBsdWdnYWJsZSxcbn0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5cbmludGVyZmFjZSBQcmV2aW91c2x5UmVzb2x2ZWQge1xuICBydW50aW1lOiBzdHJpbmc7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiBhZGRFeHBlY3RDb250aW51ZU1pZGRsZXdhcmUob3B0aW9uczogUHJldmlvdXNseVJlc29sdmVkKTogQnVpbGRNaWRkbGV3YXJlPGFueSwgYW55PiB7XG4gIHJldHVybiA8T3V0cHV0IGV4dGVuZHMgTWV0YWRhdGFCZWFyZXI+KG5leHQ6IEJ1aWxkSGFuZGxlcjxhbnksIE91dHB1dD4pOiBCdWlsZEhhbmRsZXI8YW55LCBPdXRwdXQ+ID0+IGFzeW5jIChcbiAgICBhcmdzOiBCdWlsZEhhbmRsZXJBcmd1bWVudHM8YW55PlxuICApOiBQcm9taXNlPEJ1aWxkSGFuZGxlck91dHB1dDxPdXRwdXQ+PiA9PiB7XG4gICAgY29uc3QgeyByZXF1ZXN0IH0gPSBhcmdzO1xuICAgIGlmIChIdHRwUmVxdWVzdC5pc0luc3RhbmNlKHJlcXVlc3QpICYmIHJlcXVlc3QuYm9keSAmJiBvcHRpb25zLnJ1bnRpbWUgPT09IFwibm9kZVwiKSB7XG4gICAgICByZXF1ZXN0LmhlYWRlcnMgPSB7XG4gICAgICAgIC4uLnJlcXVlc3QuaGVhZGVycyxcbiAgICAgICAgRXhwZWN0OiBcIjEwMC1jb250aW51ZVwiLFxuICAgICAgfTtcbiAgICB9XG4gICAgcmV0dXJuIG5leHQoe1xuICAgICAgLi4uYXJncyxcbiAgICAgIHJlcXVlc3QsXG4gICAgfSk7XG4gIH07XG59XG5cbmV4cG9ydCBjb25zdCBhZGRFeHBlY3RDb250aW51ZU1pZGRsZXdhcmVPcHRpb25zOiBCdWlsZEhhbmRsZXJPcHRpb25zID0ge1xuICBzdGVwOiBcImJ1aWxkXCIsXG4gIHRhZ3M6IFtcIlNFVF9FWFBFQ1RfSEVBREVSXCIsIFwiRVhQRUNUX0hFQURFUlwiXSxcbiAgbmFtZTogXCJhZGRFeHBlY3RDb250aW51ZU1pZGRsZXdhcmVcIixcbiAgb3ZlcnJpZGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgZ2V0QWRkRXhwZWN0Q29udGludWVQbHVnaW4gPSAob3B0aW9uczogUHJldmlvdXNseVJlc29sdmVkKTogUGx1Z2dhYmxlPGFueSwgYW55PiA9PiAoe1xuICBhcHBseVRvU3RhY2s6IChjbGllbnRTdGFjaykgPT4ge1xuICAgIGNsaWVudFN0YWNrLmFkZChhZGRFeHBlY3RDb250aW51ZU1pZGRsZXdhcmUob3B0aW9ucyksIGFkZEV4cGVjdENvbnRpbnVlTWlkZGxld2FyZU9wdGlvbnMpO1xuICB9LFxufSk7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-expect-continue/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js ***! \***********************************************************************/ /*! exports provided: resolveHostHeaderConfig, hostHeaderMiddleware, hostHeaderMiddlewareOptions, getHostHeaderPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveHostHeaderConfig\", function() { return resolveHostHeaderConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hostHeaderMiddleware\", function() { return hostHeaderMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hostHeaderMiddlewareOptions\", function() { return hostHeaderMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getHostHeaderPlugin\", function() { return getHostHeaderPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\nfunction resolveHostHeaderConfig(input) {\n return input;\n}\nvar hostHeaderMiddleware = function (options) { return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, _a, handlerProtocol;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(args.request))\n return [2 /*return*/, next(args)];\n request = args.request;\n _a = (options.requestHandler.metadata || {}).handlerProtocol, handlerProtocol = _a === void 0 ? \"\" : _a;\n //For H2 request, remove 'host' header and use ':authority' header instead\n //reference: https://nodejs.org/dist/latest-v13.x/docs/api/errors.html#ERR_HTTP2_INVALID_CONNECTION_HEADERS\n if (handlerProtocol.indexOf(\"h2\") >= 0 && !request.headers[\":authority\"]) {\n delete request.headers[\"host\"];\n request.headers[\":authority\"] = \"\";\n //non-H2 request and 'host' header is not set, set the 'host' header to request's hostname.\n }\n else if (!request.headers[\"host\"]) {\n request.headers[\"host\"] = request.hostname;\n }\n return [2 /*return*/, next(args)];\n });\n}); }; }; };\nvar hostHeaderMiddlewareOptions = {\n name: \"hostHeaderMiddleware\",\n step: \"build\",\n priority: \"low\",\n tags: [\"HOST\"],\n override: true,\n};\nvar getHostHeaderPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(hostHeaderMiddleware(options), hostHeaderMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQVVyRCxNQUFNLFVBQVUsdUJBQXVCLENBQ3JDLEtBQXFEO0lBRXJELE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQztBQUVELE1BQU0sQ0FBQyxJQUFNLG9CQUFvQixHQUFHLFVBQ2xDLE9BQWlDLElBQ0UsT0FBQSxVQUFDLElBQUksSUFBSyxPQUFBLFVBQU8sSUFBSTs7O1FBQ3hELElBQUksQ0FBQyxXQUFXLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUM7WUFBRSxzQkFBTyxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUM7UUFDckQsT0FBTyxHQUFLLElBQUksUUFBVCxDQUFVO1FBQ2pCLEtBQXlCLENBQUEsT0FBTyxDQUFDLGNBQWMsQ0FBQyxRQUFRLElBQUksRUFBRSxDQUFBLGdCQUExQyxFQUFwQixlQUFlLG1CQUFHLEVBQUUsS0FBQSxDQUEyQztRQUN2RSwwRUFBMEU7UUFDMUUsMkdBQTJHO1FBQzNHLElBQUksZUFBZSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxFQUFFO1lBQ3hFLE9BQU8sT0FBTyxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUMvQixPQUFPLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxHQUFHLEVBQUUsQ0FBQztZQUNuQywyRkFBMkY7U0FDNUY7YUFBTSxJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsRUFBRTtZQUNuQyxPQUFPLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxHQUFHLE9BQU8sQ0FBQyxRQUFRLENBQUM7U0FDNUM7UUFDRCxzQkFBTyxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUM7O0tBQ25CLEVBZDhDLENBYzlDLEVBZG9DLENBY3BDLENBQUM7QUFFRixNQUFNLENBQUMsSUFBTSwyQkFBMkIsR0FBMkM7SUFDakYsSUFBSSxFQUFFLHNCQUFzQjtJQUM1QixJQUFJLEVBQUUsT0FBTztJQUNiLFFBQVEsRUFBRSxLQUFLO0lBQ2YsSUFBSSxFQUFFLENBQUMsTUFBTSxDQUFDO0lBQ2QsUUFBUSxFQUFFLElBQUk7Q0FDZixDQUFDO0FBRUYsTUFBTSxDQUFDLElBQU0sbUJBQW1CLEdBQUcsVUFBQyxPQUFpQyxJQUEwQixPQUFBLENBQUM7SUFDOUYsWUFBWSxFQUFFLFVBQUMsV0FBVztRQUN4QixXQUFXLENBQUMsR0FBRyxDQUFDLG9CQUFvQixDQUFDLE9BQU8sQ0FBQyxFQUFFLDJCQUEyQixDQUFDLENBQUM7SUFDOUUsQ0FBQztDQUNGLENBQUMsRUFKNkYsQ0FJN0YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBSZXF1ZXN0IH0gZnJvbSBcIkBhd3Mtc2RrL3Byb3RvY29sLWh0dHBcIjtcbmltcG9ydCB7IEFic29sdXRlTG9jYXRpb24sIEJ1aWxkSGFuZGxlck9wdGlvbnMsIEJ1aWxkTWlkZGxld2FyZSwgUGx1Z2dhYmxlLCBSZXF1ZXN0SGFuZGxlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgaW50ZXJmYWNlIEhvc3RIZWFkZXJJbnB1dENvbmZpZyB7fVxuaW50ZXJmYWNlIFByZXZpb3VzbHlSZXNvbHZlZCB7XG4gIHJlcXVlc3RIYW5kbGVyOiBSZXF1ZXN0SGFuZGxlcjxhbnksIGFueT47XG59XG5leHBvcnQgaW50ZXJmYWNlIEhvc3RIZWFkZXJSZXNvbHZlZENvbmZpZyB7XG4gIHJlcXVlc3RIYW5kbGVyOiBSZXF1ZXN0SGFuZGxlcjxhbnksIGFueT47XG59XG5leHBvcnQgZnVuY3Rpb24gcmVzb2x2ZUhvc3RIZWFkZXJDb25maWc8VD4oXG4gIGlucHV0OiBUICYgUHJldmlvdXNseVJlc29sdmVkICYgSG9zdEhlYWRlcklucHV0Q29uZmlnXG4pOiBUICYgSG9zdEhlYWRlclJlc29sdmVkQ29uZmlnIHtcbiAgcmV0dXJuIGlucHV0O1xufVxuXG5leHBvcnQgY29uc3QgaG9zdEhlYWRlck1pZGRsZXdhcmUgPSA8SW5wdXQgZXh0ZW5kcyBvYmplY3QsIE91dHB1dCBleHRlbmRzIG9iamVjdD4oXG4gIG9wdGlvbnM6IEhvc3RIZWFkZXJSZXNvbHZlZENvbmZpZ1xuKTogQnVpbGRNaWRkbGV3YXJlPElucHV0LCBPdXRwdXQ+ID0+IChuZXh0KSA9PiBhc3luYyAoYXJncykgPT4ge1xuICBpZiAoIUh0dHBSZXF1ZXN0LmlzSW5zdGFuY2UoYXJncy5yZXF1ZXN0KSkgcmV0dXJuIG5leHQoYXJncyk7XG4gIGNvbnN0IHsgcmVxdWVzdCB9ID0gYXJncztcbiAgY29uc3QgeyBoYW5kbGVyUHJvdG9jb2wgPSBcIlwiIH0gPSBvcHRpb25zLnJlcXVlc3RIYW5kbGVyLm1ldGFkYXRhIHx8IHt9O1xuICAvL0ZvciBIMiByZXF1ZXN0LCByZW1vdmUgJ2hvc3QnIGhlYWRlciBhbmQgdXNlICc6YXV0aG9yaXR5JyBoZWFkZXIgaW5zdGVhZFxuICAvL3JlZmVyZW5jZTogaHR0cHM6Ly9ub2RlanMub3JnL2Rpc3QvbGF0ZXN0LXYxMy54L2RvY3MvYXBpL2Vycm9ycy5odG1sI0VSUl9IVFRQMl9JTlZBTElEX0NPTk5FQ1RJT05fSEVBREVSU1xuICBpZiAoaGFuZGxlclByb3RvY29sLmluZGV4T2YoXCJoMlwiKSA+PSAwICYmICFyZXF1ZXN0LmhlYWRlcnNbXCI6YXV0aG9yaXR5XCJdKSB7XG4gICAgZGVsZXRlIHJlcXVlc3QuaGVhZGVyc1tcImhvc3RcIl07XG4gICAgcmVxdWVzdC5oZWFkZXJzW1wiOmF1dGhvcml0eVwiXSA9IFwiXCI7XG4gICAgLy9ub24tSDIgcmVxdWVzdCBhbmQgJ2hvc3QnIGhlYWRlciBpcyBub3Qgc2V0LCBzZXQgdGhlICdob3N0JyBoZWFkZXIgdG8gcmVxdWVzdCdzIGhvc3RuYW1lLlxuICB9IGVsc2UgaWYgKCFyZXF1ZXN0LmhlYWRlcnNbXCJob3N0XCJdKSB7XG4gICAgcmVxdWVzdC5oZWFkZXJzW1wiaG9zdFwiXSA9IHJlcXVlc3QuaG9zdG5hbWU7XG4gIH1cbiAgcmV0dXJuIG5leHQoYXJncyk7XG59O1xuXG5leHBvcnQgY29uc3QgaG9zdEhlYWRlck1pZGRsZXdhcmVPcHRpb25zOiBCdWlsZEhhbmRsZXJPcHRpb25zICYgQWJzb2x1dGVMb2NhdGlvbiA9IHtcbiAgbmFtZTogXCJob3N0SGVhZGVyTWlkZGxld2FyZVwiLFxuICBzdGVwOiBcImJ1aWxkXCIsXG4gIHByaW9yaXR5OiBcImxvd1wiLFxuICB0YWdzOiBbXCJIT1NUXCJdLFxuICBvdmVycmlkZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBnZXRIb3N0SGVhZGVyUGx1Z2luID0gKG9wdGlvbnM6IEhvc3RIZWFkZXJSZXNvbHZlZENvbmZpZyk6IFBsdWdnYWJsZTxhbnksIGFueT4gPT4gKHtcbiAgYXBwbHlUb1N0YWNrOiAoY2xpZW50U3RhY2spID0+IHtcbiAgICBjbGllbnRTdGFjay5hZGQoaG9zdEhlYWRlck1pZGRsZXdhcmUob3B0aW9ucyksIGhvc3RIZWFkZXJNaWRkbGV3YXJlT3B0aW9ucyk7XG4gIH0sXG59KTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-host-header/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-location-constraint/dist/es/index.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-location-constraint/dist/es/index.js ***! \*******************************************************************************/ /*! exports provided: locationConstraintMiddleware, locationConstraintMiddlewareOptions, getLocationConstraintPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"locationConstraintMiddleware\", function() { return locationConstraintMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"locationConstraintMiddlewareOptions\", function() { return locationConstraintMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getLocationConstraintPlugin\", function() { return getLocationConstraintPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\n/**\n * This middleware modifies the input on S3 CreateBucket requests. If the LocationConstraint has not been set, this\n * middleware will set a LocationConstraint to match the configured region. The CreateBucketConfiguration will be\n * removed entirely on requests to the us-east-1 region.\n */\nfunction locationConstraintMiddleware(options) {\n var _this = this;\n return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var CreateBucketConfiguration, region;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n CreateBucketConfiguration = args.input.CreateBucketConfiguration;\n return [4 /*yield*/, options.region()];\n case 1:\n region = _a.sent();\n if (!CreateBucketConfiguration || !CreateBucketConfiguration.LocationConstraint) {\n args = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { input: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args.input), { CreateBucketConfiguration: region === \"us-east-1\" ? undefined : { LocationConstraint: region } }) });\n }\n return [2 /*return*/, next(args)];\n }\n });\n }); }; };\n}\nvar locationConstraintMiddlewareOptions = {\n step: \"initialize\",\n tags: [\"LOCATION_CONSTRAINT\", \"CREATE_BUCKET_CONFIGURATION\"],\n name: \"locationConstraintMiddleware\",\n override: true,\n};\nvar getLocationConstraintPlugin = function (config) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(locationConstraintMiddleware(config), locationConstraintMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQVlBOzs7O0dBSUc7QUFFSCxNQUFNLFVBQVUsNEJBQTRCLENBQzFDLE9BQXlDO0lBRDNDLGlCQXVCQztJQXBCQyxPQUFPLFVBQ0wsSUFBb0MsSUFDRCxPQUFBLFVBQ25DLElBQXFDOzs7OztvQkFFN0IseUJBQXlCLEdBQUssSUFBSSxDQUFDLEtBQUssMEJBQWYsQ0FBZ0I7b0JBRWxDLHFCQUFNLE9BQU8sQ0FBQyxNQUFNLEVBQUUsRUFBQTs7b0JBQS9CLE1BQU0sR0FBRyxTQUFzQjtvQkFDckMsSUFBSSxDQUFDLHlCQUF5QixJQUFJLENBQUMseUJBQXlCLENBQUMsa0JBQWtCLEVBQUU7d0JBQy9FLElBQUkseUJBQ0MsSUFBSSxLQUNQLEtBQUssd0JBQ0EsSUFBSSxDQUFDLEtBQUssS0FDYix5QkFBeUIsRUFBRSxNQUFNLEtBQUssV0FBVyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxFQUFFLE1BRWpHLENBQUM7cUJBQ0g7b0JBRUQsc0JBQU8sSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFDOzs7U0FDbkIsRUFqQm9DLENBaUJwQyxDQUFDO0FBQ0osQ0FBQztBQUVELE1BQU0sQ0FBQyxJQUFNLG1DQUFtQyxHQUE2QjtJQUMzRSxJQUFJLEVBQUUsWUFBWTtJQUNsQixJQUFJLEVBQUUsQ0FBQyxxQkFBcUIsRUFBRSw2QkFBNkIsQ0FBQztJQUM1RCxJQUFJLEVBQUUsOEJBQThCO0lBQ3BDLFFBQVEsRUFBRSxJQUFJO0NBQ2YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLDJCQUEyQixHQUFHLFVBQUMsTUFBd0MsSUFBMEIsT0FBQSxDQUFDO0lBQzdHLFlBQVksRUFBRSxVQUFDLFdBQVc7UUFDeEIsV0FBVyxDQUFDLEdBQUcsQ0FBQyw0QkFBNEIsQ0FBQyxNQUFNLENBQUMsRUFBRSxtQ0FBbUMsQ0FBQyxDQUFDO0lBQzdGLENBQUM7Q0FDRixDQUFDLEVBSjRHLENBSTVHLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBJbml0aWFsaXplSGFuZGxlcixcbiAgSW5pdGlhbGl6ZUhhbmRsZXJBcmd1bWVudHMsXG4gIEluaXRpYWxpemVIYW5kbGVyT3B0aW9ucyxcbiAgSW5pdGlhbGl6ZUhhbmRsZXJPdXRwdXQsXG4gIEluaXRpYWxpemVNaWRkbGV3YXJlLFxuICBNZXRhZGF0YUJlYXJlcixcbiAgUGx1Z2dhYmxlLFxufSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgTG9jYXRpb25Db25zdHJhaW50UmVzb2x2ZWRDb25maWcgfSBmcm9tIFwiLi9jb25maWd1cmF0aW9uXCI7XG5cbi8qKlxuICogVGhpcyBtaWRkbGV3YXJlIG1vZGlmaWVzIHRoZSBpbnB1dCBvbiBTMyBDcmVhdGVCdWNrZXQgcmVxdWVzdHMuICBJZiB0aGUgTG9jYXRpb25Db25zdHJhaW50IGhhcyBub3QgYmVlbiBzZXQsIHRoaXNcbiAqIG1pZGRsZXdhcmUgd2lsbCBzZXQgYSBMb2NhdGlvbkNvbnN0cmFpbnQgdG8gbWF0Y2ggdGhlIGNvbmZpZ3VyZWQgcmVnaW9uLiAgVGhlIENyZWF0ZUJ1Y2tldENvbmZpZ3VyYXRpb24gd2lsbCBiZVxuICogcmVtb3ZlZCBlbnRpcmVseSBvbiByZXF1ZXN0cyB0byB0aGUgdXMtZWFzdC0xIHJlZ2lvbi5cbiAqL1xuXG5leHBvcnQgZnVuY3Rpb24gbG9jYXRpb25Db25zdHJhaW50TWlkZGxld2FyZShcbiAgb3B0aW9uczogTG9jYXRpb25Db25zdHJhaW50UmVzb2x2ZWRDb25maWdcbik6IEluaXRpYWxpemVNaWRkbGV3YXJlPGFueSwgYW55PiB7XG4gIHJldHVybiA8T3V0cHV0IGV4dGVuZHMgTWV0YWRhdGFCZWFyZXI+KFxuICAgIG5leHQ6IEluaXRpYWxpemVIYW5kbGVyPGFueSwgT3V0cHV0PlxuICApOiBJbml0aWFsaXplSGFuZGxlcjxhbnksIE91dHB1dD4gPT4gYXN5bmMgKFxuICAgIGFyZ3M6IEluaXRpYWxpemVIYW5kbGVyQXJndW1lbnRzPGFueT5cbiAgKTogUHJvbWlzZTxJbml0aWFsaXplSGFuZGxlck91dHB1dDxPdXRwdXQ+PiA9PiB7XG4gICAgY29uc3QgeyBDcmVhdGVCdWNrZXRDb25maWd1cmF0aW9uIH0gPSBhcmdzLmlucHV0O1xuICAgIC8vQWZ0ZXIgcmVnaW9uIGNvbmZpZyByZXNvbHV0aW9uLCByZWdpb24gaXMgYSBQcm92aWRlcjxzdHJpbmc+XG4gICAgY29uc3QgcmVnaW9uID0gYXdhaXQgb3B0aW9ucy5yZWdpb24oKTtcbiAgICBpZiAoIUNyZWF0ZUJ1Y2tldENvbmZpZ3VyYXRpb24gfHwgIUNyZWF0ZUJ1Y2tldENvbmZpZ3VyYXRpb24uTG9jYXRpb25Db25zdHJhaW50KSB7XG4gICAgICBhcmdzID0ge1xuICAgICAgICAuLi5hcmdzLFxuICAgICAgICBpbnB1dDoge1xuICAgICAgICAgIC4uLmFyZ3MuaW5wdXQsXG4gICAgICAgICAgQ3JlYXRlQnVja2V0Q29uZmlndXJhdGlvbjogcmVnaW9uID09PSBcInVzLWVhc3QtMVwiID8gdW5kZWZpbmVkIDogeyBMb2NhdGlvbkNvbnN0cmFpbnQ6IHJlZ2lvbiB9LFxuICAgICAgICB9LFxuICAgICAgfTtcbiAgICB9XG5cbiAgICByZXR1cm4gbmV4dChhcmdzKTtcbiAgfTtcbn1cblxuZXhwb3J0IGNvbnN0IGxvY2F0aW9uQ29uc3RyYWludE1pZGRsZXdhcmVPcHRpb25zOiBJbml0aWFsaXplSGFuZGxlck9wdGlvbnMgPSB7XG4gIHN0ZXA6IFwiaW5pdGlhbGl6ZVwiLFxuICB0YWdzOiBbXCJMT0NBVElPTl9DT05TVFJBSU5UXCIsIFwiQ1JFQVRFX0JVQ0tFVF9DT05GSUdVUkFUSU9OXCJdLFxuICBuYW1lOiBcImxvY2F0aW9uQ29uc3RyYWludE1pZGRsZXdhcmVcIixcbiAgb3ZlcnJpZGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgZ2V0TG9jYXRpb25Db25zdHJhaW50UGx1Z2luID0gKGNvbmZpZzogTG9jYXRpb25Db25zdHJhaW50UmVzb2x2ZWRDb25maWcpOiBQbHVnZ2FibGU8YW55LCBhbnk+ID0+ICh7XG4gIGFwcGx5VG9TdGFjazogKGNsaWVudFN0YWNrKSA9PiB7XG4gICAgY2xpZW50U3RhY2suYWRkKGxvY2F0aW9uQ29uc3RyYWludE1pZGRsZXdhcmUoY29uZmlnKSwgbG9jYXRpb25Db25zdHJhaW50TWlkZGxld2FyZU9wdGlvbnMpO1xuICB9LFxufSk7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-location-constraint/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-logger/dist/es/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-logger/dist/es/index.js ***! \******************************************************************/ /*! exports provided: loggerMiddleware, loggerMiddlewareOptions, getLoggerPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./loggerMiddleware */ \"./node_modules/@aws-sdk/middleware-logger/dist/es/loggerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddleware\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"loggerMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddlewareOptions\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"loggerMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLoggerPlugin\", function() { return _loggerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"getLoggerPlugin\"]; });\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL2xvZ2dlck1pZGRsZXdhcmVcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-logger/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-logger/dist/es/loggerMiddleware.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-logger/dist/es/loggerMiddleware.js ***! \*****************************************************************************/ /*! exports provided: loggerMiddleware, loggerMiddlewareOptions, getLoggerPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddleware\", function() { return loggerMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loggerMiddlewareOptions\", function() { return loggerMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getLoggerPlugin\", function() { return getLoggerPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar loggerMiddleware = function () { return function (next, context) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var clientName, commandName, inputFilterSensitiveLog, logger, outputFilterSensitiveLog, response, _a, $metadata, outputWithoutMetadata;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n clientName = context.clientName, commandName = context.commandName, inputFilterSensitiveLog = context.inputFilterSensitiveLog, logger = context.logger, outputFilterSensitiveLog = context.outputFilterSensitiveLog;\n return [4 /*yield*/, next(args)];\n case 1:\n response = _b.sent();\n if (!logger) {\n return [2 /*return*/, response];\n }\n if (typeof logger.info === \"function\") {\n _a = response.output, $metadata = _a.$metadata, outputWithoutMetadata = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"$metadata\"]);\n logger.info({\n clientName: clientName,\n commandName: commandName,\n input: inputFilterSensitiveLog(args.input),\n output: outputFilterSensitiveLog(outputWithoutMetadata),\n metadata: $metadata,\n });\n }\n return [2 /*return*/, response];\n }\n });\n}); }; }; };\nvar loggerMiddlewareOptions = {\n name: \"loggerMiddleware\",\n tags: [\"LOGGER\"],\n step: \"initialize\",\n override: true,\n};\n// eslint-disable-next-line @typescript-eslint/no-unused-vars\nvar getLoggerPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(loggerMiddleware(), loggerMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nZ2VyTWlkZGxld2FyZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9sb2dnZXJNaWRkbGV3YXJlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFZQSxNQUFNLENBQUMsSUFBTSxnQkFBZ0IsR0FBRyxjQUFNLE9BQUEsVUFDcEMsSUFBb0MsRUFDcEMsT0FBZ0MsSUFDRyxPQUFBLFVBQ25DLElBQXFDOzs7OztnQkFFN0IsVUFBVSxHQUE2RSxPQUFPLFdBQXBGLEVBQUUsV0FBVyxHQUFnRSxPQUFPLFlBQXZFLEVBQUUsdUJBQXVCLEdBQXVDLE9BQU8sd0JBQTlDLEVBQUUsTUFBTSxHQUErQixPQUFPLE9BQXRDLEVBQUUsd0JBQXdCLEdBQUssT0FBTyx5QkFBWixDQUFhO2dCQUV0RixxQkFBTSxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUE7O2dCQUEzQixRQUFRLEdBQUcsU0FBZ0I7Z0JBRWpDLElBQUksQ0FBQyxNQUFNLEVBQUU7b0JBQ1gsc0JBQU8sUUFBUSxFQUFDO2lCQUNqQjtnQkFFRCxJQUFJLE9BQU8sTUFBTSxDQUFDLElBQUksS0FBSyxVQUFVLEVBQUU7b0JBQy9CLEtBQTBDLFFBQVEsQ0FBQyxNQUFNLEVBQXZELFNBQVMsZUFBQSxFQUFLLHFCQUFxQixjQUFyQyxhQUF1QyxDQUFGLENBQXFCO29CQUNoRSxNQUFNLENBQUMsSUFBSSxDQUFDO3dCQUNWLFVBQVUsWUFBQTt3QkFDVixXQUFXLGFBQUE7d0JBQ1gsS0FBSyxFQUFFLHVCQUF1QixDQUFDLElBQUksQ0FBQyxLQUFLLENBQUM7d0JBQzFDLE1BQU0sRUFBRSx3QkFBd0IsQ0FBQyxxQkFBcUIsQ0FBQzt3QkFDdkQsUUFBUSxFQUFFLFNBQVM7cUJBQ3BCLENBQUMsQ0FBQztpQkFDSjtnQkFFRCxzQkFBTyxRQUFRLEVBQUM7OztLQUNqQixFQXZCb0MsQ0F1QnBDLEVBMUJxQyxDQTBCckMsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLHVCQUF1QixHQUFnRDtJQUNsRixJQUFJLEVBQUUsa0JBQWtCO0lBQ3hCLElBQUksRUFBRSxDQUFDLFFBQVEsQ0FBQztJQUNoQixJQUFJLEVBQUUsWUFBWTtJQUNsQixRQUFRLEVBQUUsSUFBSTtDQUNmLENBQUM7QUFFRiw2REFBNkQ7QUFDN0QsTUFBTSxDQUFDLElBQU0sZUFBZSxHQUFHLFVBQUMsT0FBWSxJQUEwQixPQUFBLENBQUM7SUFDckUsWUFBWSxFQUFFLFVBQUMsV0FBVztRQUN4QixXQUFXLENBQUMsR0FBRyxDQUFDLGdCQUFnQixFQUFFLEVBQUUsdUJBQXVCLENBQUMsQ0FBQztJQUMvRCxDQUFDO0NBQ0YsQ0FBQyxFQUpvRSxDQUlwRSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSHR0cFJlc3BvbnNlIH0gZnJvbSBcIkBhd3Mtc2RrL3Byb3RvY29sLWh0dHBcIjtcbmltcG9ydCB7XG4gIEFic29sdXRlTG9jYXRpb24sXG4gIEhhbmRsZXJFeGVjdXRpb25Db250ZXh0LFxuICBJbml0aWFsaXplSGFuZGxlcixcbiAgSW5pdGlhbGl6ZUhhbmRsZXJBcmd1bWVudHMsXG4gIEluaXRpYWxpemVIYW5kbGVyT3B0aW9ucyxcbiAgSW5pdGlhbGl6ZUhhbmRsZXJPdXRwdXQsXG4gIE1ldGFkYXRhQmVhcmVyLFxuICBQbHVnZ2FibGUsXG59IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgY29uc3QgbG9nZ2VyTWlkZGxld2FyZSA9ICgpID0+IDxPdXRwdXQgZXh0ZW5kcyBNZXRhZGF0YUJlYXJlciA9IE1ldGFkYXRhQmVhcmVyPihcbiAgbmV4dDogSW5pdGlhbGl6ZUhhbmRsZXI8YW55LCBPdXRwdXQ+LFxuICBjb250ZXh0OiBIYW5kbGVyRXhlY3V0aW9uQ29udGV4dFxuKTogSW5pdGlhbGl6ZUhhbmRsZXI8YW55LCBPdXRwdXQ+ID0+IGFzeW5jIChcbiAgYXJnczogSW5pdGlhbGl6ZUhhbmRsZXJBcmd1bWVudHM8YW55PlxuKTogUHJvbWlzZTxJbml0aWFsaXplSGFuZGxlck91dHB1dDxPdXRwdXQ+PiA9PiB7XG4gIGNvbnN0IHsgY2xpZW50TmFtZSwgY29tbWFuZE5hbWUsIGlucHV0RmlsdGVyU2Vuc2l0aXZlTG9nLCBsb2dnZXIsIG91dHB1dEZpbHRlclNlbnNpdGl2ZUxvZyB9ID0gY29udGV4dDtcblxuICBjb25zdCByZXNwb25zZSA9IGF3YWl0IG5leHQoYXJncyk7XG5cbiAgaWYgKCFsb2dnZXIpIHtcbiAgICByZXR1cm4gcmVzcG9uc2U7XG4gIH1cblxuICBpZiAodHlwZW9mIGxvZ2dlci5pbmZvID09PSBcImZ1bmN0aW9uXCIpIHtcbiAgICBjb25zdCB7ICRtZXRhZGF0YSwgLi4ub3V0cHV0V2l0aG91dE1ldGFkYXRhIH0gPSByZXNwb25zZS5vdXRwdXQ7XG4gICAgbG9nZ2VyLmluZm8oe1xuICAgICAgY2xpZW50TmFtZSxcbiAgICAgIGNvbW1hbmROYW1lLFxuICAgICAgaW5wdXQ6IGlucHV0RmlsdGVyU2Vuc2l0aXZlTG9nKGFyZ3MuaW5wdXQpLFxuICAgICAgb3V0cHV0OiBvdXRwdXRGaWx0ZXJTZW5zaXRpdmVMb2cob3V0cHV0V2l0aG91dE1ldGFkYXRhKSxcbiAgICAgIG1ldGFkYXRhOiAkbWV0YWRhdGEsXG4gICAgfSk7XG4gIH1cblxuICByZXR1cm4gcmVzcG9uc2U7XG59O1xuXG5leHBvcnQgY29uc3QgbG9nZ2VyTWlkZGxld2FyZU9wdGlvbnM6IEluaXRpYWxpemVIYW5kbGVyT3B0aW9ucyAmIEFic29sdXRlTG9jYXRpb24gPSB7XG4gIG5hbWU6IFwibG9nZ2VyTWlkZGxld2FyZVwiLFxuICB0YWdzOiBbXCJMT0dHRVJcIl0sXG4gIHN0ZXA6IFwiaW5pdGlhbGl6ZVwiLFxuICBvdmVycmlkZTogdHJ1ZSxcbn07XG5cbi8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbm8tdW51c2VkLXZhcnNcbmV4cG9ydCBjb25zdCBnZXRMb2dnZXJQbHVnaW4gPSAob3B0aW9uczogYW55KTogUGx1Z2dhYmxlPGFueSwgYW55PiA9PiAoe1xuICBhcHBseVRvU3RhY2s6IChjbGllbnRTdGFjaykgPT4ge1xuICAgIGNsaWVudFN0YWNrLmFkZChsb2dnZXJNaWRkbGV3YXJlKCksIGxvZ2dlck1pZGRsZXdhcmVPcHRpb25zKTtcbiAgfSxcbn0pO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-logger/dist/es/loggerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js ***! \*******************************************************************************/ /*! exports provided: recursionDetectionMiddleware, addRecursionDetectionMiddlewareOptions, getRecursionDetectionPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"recursionDetectionMiddleware\", function() { return recursionDetectionMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addRecursionDetectionMiddlewareOptions\", function() { return addRecursionDetectionMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRecursionDetectionPlugin\", function() { return getRecursionDetectionPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/index.js\");\n\n\nvar TRACE_ID_HEADER_NAME = \"X-Amzn-Trace-Id\";\nvar ENV_LAMBDA_FUNCTION_NAME = \"AWS_LAMBDA_FUNCTION_NAME\";\nvar ENV_TRACE_ID = \"_X_AMZN_TRACE_ID\";\nvar recursionDetectionMiddleware = function (options) {\n return function (next) {\n return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, functionName, traceId, nonEmptyString;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request) ||\n options.runtime !== \"node\" ||\n request.headers.hasOwnProperty(TRACE_ID_HEADER_NAME)) {\n return [2, next(args)];\n }\n functionName = Object({\"VUE_APP_SYSTEM_MESSAGE_UNUSED\":\" The HMML Authority File website is currently under development. Data should not be cited.\",\"VUE_APP_BASE_API_URL\":\"https://api.haf.vhmml.org/\",\"VUE_APP_BASE_API_DOCUMENTATION_URL\":\"https://api.haf.vhmml.org/swagger-ui/index.html?configUrl=/v3/api-docs/swagger-config\",\"VUE_APP_COGNITO_REGION\":\"us-east-2\",\"VUE_APP_COGNITO_USERPOOL_ID\":\"us-east-2_0oWB97lSR\",\"VUE_APP_COGNITO_USERPOOL_WEB_CLIENT_ID\":\"3eon73kc9tti0hlcthm7gumpf5\",\"VUE_APP_GOOGLE_TAG_MANAGER_ID\":\"GTM-MC29HF7\",\"VUE_APP_AUTHORITY_PURL_BASE_URL\":\"https://w3id.org/haf/\",\"NODE_ENV\":\"development\",\"BASE_URL\":\"/\"})[ENV_LAMBDA_FUNCTION_NAME];\n traceId = Object({\"VUE_APP_SYSTEM_MESSAGE_UNUSED\":\" The HMML Authority File website is currently under development. Data should not be cited.\",\"VUE_APP_BASE_API_URL\":\"https://api.haf.vhmml.org/\",\"VUE_APP_BASE_API_DOCUMENTATION_URL\":\"https://api.haf.vhmml.org/swagger-ui/index.html?configUrl=/v3/api-docs/swagger-config\",\"VUE_APP_COGNITO_REGION\":\"us-east-2\",\"VUE_APP_COGNITO_USERPOOL_ID\":\"us-east-2_0oWB97lSR\",\"VUE_APP_COGNITO_USERPOOL_WEB_CLIENT_ID\":\"3eon73kc9tti0hlcthm7gumpf5\",\"VUE_APP_GOOGLE_TAG_MANAGER_ID\":\"GTM-MC29HF7\",\"VUE_APP_AUTHORITY_PURL_BASE_URL\":\"https://w3id.org/haf/\",\"NODE_ENV\":\"development\",\"BASE_URL\":\"/\"})[ENV_TRACE_ID];\n nonEmptyString = function (str) { return typeof str === \"string\" && str.length > 0; };\n if (nonEmptyString(functionName) && nonEmptyString(traceId)) {\n request.headers[TRACE_ID_HEADER_NAME] = traceId;\n }\n return [2, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n });\n }); };\n };\n};\nvar addRecursionDetectionMiddlewareOptions = {\n step: \"build\",\n tags: [\"RECURSION_DETECTION\"],\n name: \"recursionDetectionMiddleware\",\n override: true,\n priority: \"low\",\n};\nvar getRecursionDetectionPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(recursionDetectionMiddleware(options), addRecursionDetectionMiddlewareOptions);\n },\n}); };\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js ***! \*************************************************************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js": /*!*************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js ***! \*************************************************************************************************************************/ /*! exports provided: HttpRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return HttpRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/tslib/tslib.es6.js\");\n\nvar HttpRequest = (function () {\n function HttpRequest(options) {\n this.method = options.method || \"GET\";\n this.hostname = options.hostname || \"localhost\";\n this.port = options.port;\n this.query = options.query || {};\n this.headers = options.headers || {};\n this.body = options.body;\n this.protocol = options.protocol\n ? options.protocol.slice(-1) !== \":\"\n ? \"\".concat(options.protocol, \":\")\n : options.protocol\n : \"https:\";\n this.path = options.path ? (options.path.charAt(0) !== \"/\" ? \"/\".concat(options.path) : options.path) : \"/\";\n }\n HttpRequest.isInstance = function (request) {\n if (!request)\n return false;\n var req = request;\n return (\"method\" in req &&\n \"protocol\" in req &&\n \"hostname\" in req &&\n \"path\" in req &&\n typeof req[\"query\"] === \"object\" &&\n typeof req[\"headers\"] === \"object\");\n };\n HttpRequest.prototype.clone = function () {\n var cloned = new HttpRequest(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this.headers) }));\n if (cloned.query)\n cloned.query = cloneQuery(cloned.query);\n return cloned;\n };\n return HttpRequest;\n}());\n\nfunction cloneQuery(query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spreadArray\"])([], Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(param), false) : param, _a));\n }, {});\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js": /*!**************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js ***! \**************************************************************************************************************************/ /*! exports provided: HttpResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return HttpResponse; });\nvar HttpResponse = (function () {\n function HttpResponse(options) {\n this.statusCode = options.statusCode;\n this.headers = options.headers || {};\n this.body = options.body;\n }\n HttpResponse.isInstance = function (response) {\n if (!response)\n return false;\n var resp = response;\n return typeof resp.statusCode === \"number\" && typeof resp.headers === \"object\";\n };\n return HttpResponse;\n}());\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/index.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/index.js ***! \*******************************************************************************************************************/ /*! exports provided: HttpRequest, HttpResponse, isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _httpHandler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./httpHandler */ \"./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _httpRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./httpRequest */ \"./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return _httpRequest__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]; });\n\n/* harmony import */ var _httpResponse__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./httpResponse */ \"./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return _httpResponse__WEBPACK_IMPORTED_MODULE_2__[\"HttpResponse\"]; });\n\n/* harmony import */ var _isValidHostname__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isValidHostname */ \"./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return _isValidHostname__WEBPACK_IMPORTED_MODULE_3__[\"isValidHostname\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js": /*!*****************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js ***! \*****************************************************************************************************************************/ /*! exports provided: isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return isValidHostname; });\nfunction isValidHostname(hostname) {\n var hostPattern = /^[a-z0-9][a-z0-9\\.\\-]*[a-z0-9]$/;\n return hostPattern.test(hostname);\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/tslib/tslib.es6.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/tslib/tslib.es6.js ***! \**********************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-recursion-detection/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-retry/dist/es/configurations.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-retry/dist/es/configurations.js ***! \**************************************************************************/ /*! exports provided: ENV_MAX_ATTEMPTS, CONFIG_MAX_ATTEMPTS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, ENV_RETRY_MODE, CONFIG_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_MAX_ATTEMPTS\", function() { return ENV_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_MAX_ATTEMPTS\", function() { return CONFIG_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\", function() { return NODE_MAX_ATTEMPT_CONFIG_OPTIONS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveRetryConfig\", function() { return resolveRetryConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ENV_RETRY_MODE\", function() { return ENV_RETRY_MODE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_RETRY_MODE\", function() { return CONFIG_RETRY_MODE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NODE_RETRY_MODE_CONFIG_OPTIONS\", function() { return NODE_RETRY_MODE_CONFIG_OPTIONS; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _defaultStrategy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./defaultStrategy */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/defaultStrategy.js\");\n\n\nvar ENV_MAX_ATTEMPTS = \"AWS_MAX_ATTEMPTS\";\nvar CONFIG_MAX_ATTEMPTS = \"max_attempts\";\nvar NODE_MAX_ATTEMPT_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) {\n var value = env[ENV_MAX_ATTEMPTS];\n if (!value)\n return undefined;\n var maxAttempt = parseInt(value);\n if (Number.isNaN(maxAttempt)) {\n throw new Error(\"Environment variable \" + ENV_MAX_ATTEMPTS + \" mast be a number, got \\\"\" + value + \"\\\"\");\n }\n return maxAttempt;\n },\n configFileSelector: function (profile) {\n var value = profile[CONFIG_MAX_ATTEMPTS];\n if (!value)\n return undefined;\n var maxAttempt = parseInt(value);\n if (Number.isNaN(maxAttempt)) {\n throw new Error(\"Shared config file entry \" + CONFIG_MAX_ATTEMPTS + \" mast be a number, got \\\"\" + value + \"\\\"\");\n }\n return maxAttempt;\n },\n default: _defaultStrategy__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_MAX_ATTEMPTS\"],\n};\nvar resolveRetryConfig = function (input) {\n var maxAttempts = normalizeMaxAttempts(input.maxAttempts);\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { maxAttempts: maxAttempts, retryStrategy: input.retryStrategy || new _defaultStrategy__WEBPACK_IMPORTED_MODULE_1__[\"StandardRetryStrategy\"](maxAttempts) });\n};\nvar normalizeMaxAttempts = function (maxAttempts) {\n if (maxAttempts === void 0) { maxAttempts = _defaultStrategy__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_MAX_ATTEMPTS\"]; }\n if (typeof maxAttempts === \"number\") {\n var promisified_1 = Promise.resolve(maxAttempts);\n return function () { return promisified_1; };\n }\n return maxAttempts;\n};\nvar ENV_RETRY_MODE = \"AWS_RETRY_MODE\";\nvar CONFIG_RETRY_MODE = \"retry_mode\";\nvar NODE_RETRY_MODE_CONFIG_OPTIONS = {\n environmentVariableSelector: function (env) { return env[ENV_RETRY_MODE]; },\n configFileSelector: function (profile) { return profile[CONFIG_RETRY_MODE]; },\n default: _defaultStrategy__WEBPACK_IMPORTED_MODULE_1__[\"DEFAULT_RETRY_MODE\"],\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlndXJhdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvY29uZmlndXJhdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUdBLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxrQkFBa0IsRUFBRSxxQkFBcUIsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBRXBHLE1BQU0sQ0FBQyxJQUFNLGdCQUFnQixHQUFHLGtCQUFrQixDQUFDO0FBQ25ELE1BQU0sQ0FBQyxJQUFNLG1CQUFtQixHQUFHLGNBQWMsQ0FBQztBQUVsRCxNQUFNLENBQUMsSUFBTSwrQkFBK0IsR0FBa0M7SUFDNUUsMkJBQTJCLEVBQUUsVUFBQyxHQUFHO1FBQy9CLElBQU0sS0FBSyxHQUFHLEdBQUcsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FBQ3BDLElBQUksQ0FBQyxLQUFLO1lBQUUsT0FBTyxTQUFTLENBQUM7UUFDN0IsSUFBTSxVQUFVLEdBQUcsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ25DLElBQUksTUFBTSxDQUFDLEtBQUssQ0FBQyxVQUFVLENBQUMsRUFBRTtZQUM1QixNQUFNLElBQUksS0FBSyxDQUFDLDBCQUF3QixnQkFBZ0IsaUNBQTJCLEtBQUssT0FBRyxDQUFDLENBQUM7U0FDOUY7UUFDRCxPQUFPLFVBQVUsQ0FBQztJQUNwQixDQUFDO0lBQ0Qsa0JBQWtCLEVBQUUsVUFBQyxPQUFPO1FBQzFCLElBQU0sS0FBSyxHQUFHLE9BQU8sQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDO1FBQzNDLElBQUksQ0FBQyxLQUFLO1lBQUUsT0FBTyxTQUFTLENBQUM7UUFDN0IsSUFBTSxVQUFVLEdBQUcsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ25DLElBQUksTUFBTSxDQUFDLEtBQUssQ0FBQyxVQUFVLENBQUMsRUFBRTtZQUM1QixNQUFNLElBQUksS0FBSyxDQUFDLDhCQUE0QixtQkFBbUIsaUNBQTJCLEtBQUssT0FBRyxDQUFDLENBQUM7U0FDckc7UUFDRCxPQUFPLFVBQVUsQ0FBQztJQUNwQixDQUFDO0lBQ0QsT0FBTyxFQUFFLG9CQUFvQjtDQUM5QixDQUFDO0FBbUJGLE1BQU0sQ0FBQyxJQUFNLGtCQUFrQixHQUFHLFVBQUksS0FBZ0Q7SUFDcEYsSUFBTSxXQUFXLEdBQUcsb0JBQW9CLENBQUMsS0FBSyxDQUFDLFdBQVcsQ0FBQyxDQUFDO0lBQzVELDZCQUNLLEtBQUssS0FDUixXQUFXLGFBQUEsRUFDWCxhQUFhLEVBQUUsS0FBSyxDQUFDLGFBQWEsSUFBSSxJQUFJLHFCQUFxQixDQUFDLFdBQVcsQ0FBQyxJQUM1RTtBQUNKLENBQUMsQ0FBQztBQUVGLElBQU0sb0JBQW9CLEdBQUcsVUFBQyxXQUE2RDtJQUE3RCw0QkFBQSxFQUFBLGtDQUE2RDtJQUN6RixJQUFJLE9BQU8sV0FBVyxLQUFLLFFBQVEsRUFBRTtRQUNuQyxJQUFNLGFBQVcsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBQyxDQUFDO1FBQ2pELE9BQU8sY0FBTSxPQUFBLGFBQVcsRUFBWCxDQUFXLENBQUM7S0FDMUI7SUFDRCxPQUFPLFdBQVcsQ0FBQztBQUNyQixDQUFDLENBQUM7QUFFRixNQUFNLENBQUMsSUFBTSxjQUFjLEdBQUcsZ0JBQWdCLENBQUM7QUFDL0MsTUFBTSxDQUFDLElBQU0saUJBQWlCLEdBQUcsWUFBWSxDQUFDO0FBRTlDLE1BQU0sQ0FBQyxJQUFNLDhCQUE4QixHQUFrQztJQUMzRSwyQkFBMkIsRUFBRSxVQUFDLEdBQUcsSUFBSyxPQUFBLEdBQUcsQ0FBQyxjQUFjLENBQUMsRUFBbkIsQ0FBbUI7SUFDekQsa0JBQWtCLEVBQUUsVUFBQyxPQUFPLElBQUssT0FBQSxPQUFPLENBQUMsaUJBQWlCLENBQUMsRUFBMUIsQ0FBMEI7SUFDM0QsT0FBTyxFQUFFLGtCQUFrQjtDQUM1QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTG9hZGVkQ29uZmlnU2VsZWN0b3JzIH0gZnJvbSBcIkBhd3Mtc2RrL25vZGUtY29uZmlnLXByb3ZpZGVyXCI7XG5pbXBvcnQgeyBQcm92aWRlciwgUmV0cnlTdHJhdGVneSB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBERUZBVUxUX01BWF9BVFRFTVBUUywgREVGQVVMVF9SRVRSWV9NT0RFLCBTdGFuZGFyZFJldHJ5U3RyYXRlZ3kgfSBmcm9tIFwiLi9kZWZhdWx0U3RyYXRlZ3lcIjtcblxuZXhwb3J0IGNvbnN0IEVOVl9NQVhfQVRURU1QVFMgPSBcIkFXU19NQVhfQVRURU1QVFNcIjtcbmV4cG9ydCBjb25zdCBDT05GSUdfTUFYX0FUVEVNUFRTID0gXCJtYXhfYXR0ZW1wdHNcIjtcblxuZXhwb3J0IGNvbnN0IE5PREVfTUFYX0FUVEVNUFRfQ09ORklHX09QVElPTlM6IExvYWRlZENvbmZpZ1NlbGVjdG9yczxudW1iZXI+ID0ge1xuICBlbnZpcm9ubWVudFZhcmlhYmxlU2VsZWN0b3I6IChlbnYpID0+IHtcbiAgICBjb25zdCB2YWx1ZSA9IGVudltFTlZfTUFYX0FUVEVNUFRTXTtcbiAgICBpZiAoIXZhbHVlKSByZXR1cm4gdW5kZWZpbmVkO1xuICAgIGNvbnN0IG1heEF0dGVtcHQgPSBwYXJzZUludCh2YWx1ZSk7XG4gICAgaWYgKE51bWJlci5pc05hTihtYXhBdHRlbXB0KSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKGBFbnZpcm9ubWVudCB2YXJpYWJsZSAke0VOVl9NQVhfQVRURU1QVFN9IG1hc3QgYmUgYSBudW1iZXIsIGdvdCBcIiR7dmFsdWV9XCJgKTtcbiAgICB9XG4gICAgcmV0dXJuIG1heEF0dGVtcHQ7XG4gIH0sXG4gIGNvbmZpZ0ZpbGVTZWxlY3RvcjogKHByb2ZpbGUpID0+IHtcbiAgICBjb25zdCB2YWx1ZSA9IHByb2ZpbGVbQ09ORklHX01BWF9BVFRFTVBUU107XG4gICAgaWYgKCF2YWx1ZSkgcmV0dXJuIHVuZGVmaW5lZDtcbiAgICBjb25zdCBtYXhBdHRlbXB0ID0gcGFyc2VJbnQodmFsdWUpO1xuICAgIGlmIChOdW1iZXIuaXNOYU4obWF4QXR0ZW1wdCkpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihgU2hhcmVkIGNvbmZpZyBmaWxlIGVudHJ5ICR7Q09ORklHX01BWF9BVFRFTVBUU30gbWFzdCBiZSBhIG51bWJlciwgZ290IFwiJHt2YWx1ZX1cImApO1xuICAgIH1cbiAgICByZXR1cm4gbWF4QXR0ZW1wdDtcbiAgfSxcbiAgZGVmYXVsdDogREVGQVVMVF9NQVhfQVRURU1QVFMsXG59O1xuXG5leHBvcnQgaW50ZXJmYWNlIFJldHJ5SW5wdXRDb25maWcge1xuICAvKipcbiAgICogVGhlIG1heGltdW0gbnVtYmVyIG9mIHRpbWVzIHJlcXVlc3RzIHRoYXQgZW5jb3VudGVyIHJldHJ5YWJsZSBmYWlsdXJlcyBzaG91bGQgYmUgYXR0ZW1wdGVkLlxuICAgKi9cbiAgbWF4QXR0ZW1wdHM/OiBudW1iZXIgfCBQcm92aWRlcjxudW1iZXI+O1xuICAvKipcbiAgICogVGhlIHN0cmF0ZWd5IHRvIHJldHJ5IHRoZSByZXF1ZXN0LiBVc2luZyBidWlsdC1pbiBleHBvbmVudGlhbCBiYWNrb2ZmIHN0cmF0ZWd5IGJ5IGRlZmF1bHQuXG4gICAqL1xuICByZXRyeVN0cmF0ZWd5PzogUmV0cnlTdHJhdGVneTtcbn1cblxuaW50ZXJmYWNlIFByZXZpb3VzbHlSZXNvbHZlZCB7fVxuZXhwb3J0IGludGVyZmFjZSBSZXRyeVJlc29sdmVkQ29uZmlnIHtcbiAgbWF4QXR0ZW1wdHM6IFByb3ZpZGVyPG51bWJlcj47XG4gIHJldHJ5U3RyYXRlZ3k6IFJldHJ5U3RyYXRlZ3k7XG59XG5cbmV4cG9ydCBjb25zdCByZXNvbHZlUmV0cnlDb25maWcgPSA8VD4oaW5wdXQ6IFQgJiBQcmV2aW91c2x5UmVzb2x2ZWQgJiBSZXRyeUlucHV0Q29uZmlnKTogVCAmIFJldHJ5UmVzb2x2ZWRDb25maWcgPT4ge1xuICBjb25zdCBtYXhBdHRlbXB0cyA9IG5vcm1hbGl6ZU1heEF0dGVtcHRzKGlucHV0Lm1heEF0dGVtcHRzKTtcbiAgcmV0dXJuIHtcbiAgICAuLi5pbnB1dCxcbiAgICBtYXhBdHRlbXB0cyxcbiAgICByZXRyeVN0cmF0ZWd5OiBpbnB1dC5yZXRyeVN0cmF0ZWd5IHx8IG5ldyBTdGFuZGFyZFJldHJ5U3RyYXRlZ3kobWF4QXR0ZW1wdHMpLFxuICB9O1xufTtcblxuY29uc3Qgbm9ybWFsaXplTWF4QXR0ZW1wdHMgPSAobWF4QXR0ZW1wdHM6IG51bWJlciB8IFByb3ZpZGVyPG51bWJlcj4gPSBERUZBVUxUX01BWF9BVFRFTVBUUyk6IFByb3ZpZGVyPG51bWJlcj4gPT4ge1xuICBpZiAodHlwZW9mIG1heEF0dGVtcHRzID09PSBcIm51bWJlclwiKSB7XG4gICAgY29uc3QgcHJvbWlzaWZpZWQgPSBQcm9taXNlLnJlc29sdmUobWF4QXR0ZW1wdHMpO1xuICAgIHJldHVybiAoKSA9PiBwcm9taXNpZmllZDtcbiAgfVxuICByZXR1cm4gbWF4QXR0ZW1wdHM7XG59O1xuXG5leHBvcnQgY29uc3QgRU5WX1JFVFJZX01PREUgPSBcIkFXU19SRVRSWV9NT0RFXCI7XG5leHBvcnQgY29uc3QgQ09ORklHX1JFVFJZX01PREUgPSBcInJldHJ5X21vZGVcIjtcblxuZXhwb3J0IGNvbnN0IE5PREVfUkVUUllfTU9ERV9DT05GSUdfT1BUSU9OUzogTG9hZGVkQ29uZmlnU2VsZWN0b3JzPHN0cmluZz4gPSB7XG4gIGVudmlyb25tZW50VmFyaWFibGVTZWxlY3RvcjogKGVudikgPT4gZW52W0VOVl9SRVRSWV9NT0RFXSxcbiAgY29uZmlnRmlsZVNlbGVjdG9yOiAocHJvZmlsZSkgPT4gcHJvZmlsZVtDT05GSUdfUkVUUllfTU9ERV0sXG4gIGRlZmF1bHQ6IERFRkFVTFRfUkVUUllfTU9ERSxcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-retry/dist/es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-retry/dist/es/constants.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-retry/dist/es/constants.js ***! \*********************************************************************/ /*! exports provided: DEFAULT_RETRY_DELAY_BASE, MAXIMUM_RETRY_DELAY, THROTTLING_RETRY_DELAY_BASE, INITIAL_RETRY_TOKENS, RETRY_COST, TIMEOUT_RETRY_COST, NO_RETRY_INCREMENT, INVOCATION_ID_HEADER, REQUEST_HEADER */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_DELAY_BASE\", function() { return DEFAULT_RETRY_DELAY_BASE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAXIMUM_RETRY_DELAY\", function() { return MAXIMUM_RETRY_DELAY; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"THROTTLING_RETRY_DELAY_BASE\", function() { return THROTTLING_RETRY_DELAY_BASE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INITIAL_RETRY_TOKENS\", function() { return INITIAL_RETRY_TOKENS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RETRY_COST\", function() { return RETRY_COST; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TIMEOUT_RETRY_COST\", function() { return TIMEOUT_RETRY_COST; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NO_RETRY_INCREMENT\", function() { return NO_RETRY_INCREMENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"INVOCATION_ID_HEADER\", function() { return INVOCATION_ID_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"REQUEST_HEADER\", function() { return REQUEST_HEADER; });\n/**\n * The base number of milliseconds to use in calculating a suitable cool-down\n * time when a retryable error is encountered.\n */\nvar DEFAULT_RETRY_DELAY_BASE = 100;\n/**\n * The maximum amount of time (in milliseconds) that will be used as a delay\n * between retry attempts.\n */\nvar MAXIMUM_RETRY_DELAY = 20 * 1000;\n/**\n * The retry delay base (in milliseconds) to use when a throttling error is\n * encountered.\n */\nvar THROTTLING_RETRY_DELAY_BASE = 500;\n/**\n * Initial number of retry tokens in Retry Quota\n */\nvar INITIAL_RETRY_TOKENS = 500;\n/**\n * The total amount of retry tokens to be decremented from retry token balance.\n */\nvar RETRY_COST = 5;\n/**\n * The total amount of retry tokens to be decremented from retry token balance\n * when a throttling error is encountered.\n */\nvar TIMEOUT_RETRY_COST = 10;\n/**\n * The total amount of retry token to be incremented from retry token balance\n * if an SDK operation invocation succeeds without requiring a retry request.\n */\nvar NO_RETRY_INCREMENT = 1;\n/**\n * Header name for SDK invocation ID\n */\nvar INVOCATION_ID_HEADER = \"amz-sdk-invocation-id\";\n/**\n * Header name for request retry information.\n */\nvar REQUEST_HEADER = \"amz-sdk-request\";\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7O0dBR0c7QUFDSCxNQUFNLENBQUMsSUFBTSx3QkFBd0IsR0FBRyxHQUFHLENBQUM7QUFFNUM7OztHQUdHO0FBQ0gsTUFBTSxDQUFDLElBQU0sbUJBQW1CLEdBQUcsRUFBRSxHQUFHLElBQUksQ0FBQztBQUU3Qzs7O0dBR0c7QUFDSCxNQUFNLENBQUMsSUFBTSwyQkFBMkIsR0FBRyxHQUFHLENBQUM7QUFFL0M7O0dBRUc7QUFDSCxNQUFNLENBQUMsSUFBTSxvQkFBb0IsR0FBRyxHQUFHLENBQUM7QUFFeEM7O0dBRUc7QUFDSCxNQUFNLENBQUMsSUFBTSxVQUFVLEdBQUcsQ0FBQyxDQUFDO0FBRTVCOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxJQUFNLGtCQUFrQixHQUFHLEVBQUUsQ0FBQztBQUVyQzs7O0dBR0c7QUFDSCxNQUFNLENBQUMsSUFBTSxrQkFBa0IsR0FBRyxDQUFDLENBQUM7QUFFcEM7O0dBRUc7QUFDSCxNQUFNLENBQUMsSUFBTSxvQkFBb0IsR0FBRyx1QkFBdUIsQ0FBQztBQUU1RDs7R0FFRztBQUNILE1BQU0sQ0FBQyxJQUFNLGNBQWMsR0FBRyxpQkFBaUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogVGhlIGJhc2UgbnVtYmVyIG9mIG1pbGxpc2Vjb25kcyB0byB1c2UgaW4gY2FsY3VsYXRpbmcgYSBzdWl0YWJsZSBjb29sLWRvd25cbiAqIHRpbWUgd2hlbiBhIHJldHJ5YWJsZSBlcnJvciBpcyBlbmNvdW50ZXJlZC5cbiAqL1xuZXhwb3J0IGNvbnN0IERFRkFVTFRfUkVUUllfREVMQVlfQkFTRSA9IDEwMDtcblxuLyoqXG4gKiBUaGUgbWF4aW11bSBhbW91bnQgb2YgdGltZSAoaW4gbWlsbGlzZWNvbmRzKSB0aGF0IHdpbGwgYmUgdXNlZCBhcyBhIGRlbGF5XG4gKiBiZXR3ZWVuIHJldHJ5IGF0dGVtcHRzLlxuICovXG5leHBvcnQgY29uc3QgTUFYSU1VTV9SRVRSWV9ERUxBWSA9IDIwICogMTAwMDtcblxuLyoqXG4gKiBUaGUgcmV0cnkgZGVsYXkgYmFzZSAoaW4gbWlsbGlzZWNvbmRzKSB0byB1c2Ugd2hlbiBhIHRocm90dGxpbmcgZXJyb3IgaXNcbiAqIGVuY291bnRlcmVkLlxuICovXG5leHBvcnQgY29uc3QgVEhST1RUTElOR19SRVRSWV9ERUxBWV9CQVNFID0gNTAwO1xuXG4vKipcbiAqIEluaXRpYWwgbnVtYmVyIG9mIHJldHJ5IHRva2VucyBpbiBSZXRyeSBRdW90YVxuICovXG5leHBvcnQgY29uc3QgSU5JVElBTF9SRVRSWV9UT0tFTlMgPSA1MDA7XG5cbi8qKlxuICogVGhlIHRvdGFsIGFtb3VudCBvZiByZXRyeSB0b2tlbnMgdG8gYmUgZGVjcmVtZW50ZWQgZnJvbSByZXRyeSB0b2tlbiBiYWxhbmNlLlxuICovXG5leHBvcnQgY29uc3QgUkVUUllfQ09TVCA9IDU7XG5cbi8qKlxuICogVGhlIHRvdGFsIGFtb3VudCBvZiByZXRyeSB0b2tlbnMgdG8gYmUgZGVjcmVtZW50ZWQgZnJvbSByZXRyeSB0b2tlbiBiYWxhbmNlXG4gKiB3aGVuIGEgdGhyb3R0bGluZyBlcnJvciBpcyBlbmNvdW50ZXJlZC5cbiAqL1xuZXhwb3J0IGNvbnN0IFRJTUVPVVRfUkVUUllfQ09TVCA9IDEwO1xuXG4vKipcbiAqIFRoZSB0b3RhbCBhbW91bnQgb2YgcmV0cnkgdG9rZW4gdG8gYmUgaW5jcmVtZW50ZWQgZnJvbSByZXRyeSB0b2tlbiBiYWxhbmNlXG4gKiBpZiBhbiBTREsgb3BlcmF0aW9uIGludm9jYXRpb24gc3VjY2VlZHMgd2l0aG91dCByZXF1aXJpbmcgYSByZXRyeSByZXF1ZXN0LlxuICovXG5leHBvcnQgY29uc3QgTk9fUkVUUllfSU5DUkVNRU5UID0gMTtcblxuLyoqXG4gKiBIZWFkZXIgbmFtZSBmb3IgU0RLIGludm9jYXRpb24gSURcbiAqL1xuZXhwb3J0IGNvbnN0IElOVk9DQVRJT05fSURfSEVBREVSID0gXCJhbXotc2RrLWludm9jYXRpb24taWRcIjtcblxuLyoqXG4gKiBIZWFkZXIgbmFtZSBmb3IgcmVxdWVzdCByZXRyeSBpbmZvcm1hdGlvbi5cbiAqL1xuZXhwb3J0IGNvbnN0IFJFUVVFU1RfSEVBREVSID0gXCJhbXotc2RrLXJlcXVlc3RcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-retry/dist/es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-retry/dist/es/defaultRetryQuota.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-retry/dist/es/defaultRetryQuota.js ***! \*****************************************************************************/ /*! exports provided: getDefaultRetryQuota */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getDefaultRetryQuota\", function() { return getDefaultRetryQuota; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/constants.js\");\n\nvar getDefaultRetryQuota = function (initialRetryTokens) {\n var MAX_CAPACITY = initialRetryTokens;\n var availableCapacity = initialRetryTokens;\n var getCapacityAmount = function (error) { return (error.name === \"TimeoutError\" ? _constants__WEBPACK_IMPORTED_MODULE_0__[\"TIMEOUT_RETRY_COST\"] : _constants__WEBPACK_IMPORTED_MODULE_0__[\"RETRY_COST\"]); };\n var hasRetryTokens = function (error) { return getCapacityAmount(error) <= availableCapacity; };\n var retrieveRetryTokens = function (error) {\n if (!hasRetryTokens(error)) {\n // retryStrategy should stop retrying, and return last error\n throw new Error(\"No retry token available\");\n }\n var capacityAmount = getCapacityAmount(error);\n availableCapacity -= capacityAmount;\n return capacityAmount;\n };\n var releaseRetryTokens = function (capacityReleaseAmount) {\n availableCapacity += capacityReleaseAmount !== null && capacityReleaseAmount !== void 0 ? capacityReleaseAmount : _constants__WEBPACK_IMPORTED_MODULE_0__[\"NO_RETRY_INCREMENT\"];\n availableCapacity = Math.min(availableCapacity, MAX_CAPACITY);\n };\n return Object.freeze({\n hasRetryTokens: hasRetryTokens,\n retrieveRetryTokens: retrieveRetryTokens,\n releaseRetryTokens: releaseRetryTokens,\n });\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmYXVsdFJldHJ5UXVvdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZGVmYXVsdFJldHJ5UXVvdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxFQUFFLGtCQUFrQixFQUFFLFVBQVUsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUdqRixNQUFNLENBQUMsSUFBTSxvQkFBb0IsR0FBRyxVQUFDLGtCQUEwQjtJQUM3RCxJQUFNLFlBQVksR0FBRyxrQkFBa0IsQ0FBQztJQUN4QyxJQUFJLGlCQUFpQixHQUFHLGtCQUFrQixDQUFDO0lBRTNDLElBQU0saUJBQWlCLEdBQUcsVUFBQyxLQUFlLElBQUssT0FBQSxDQUFDLEtBQUssQ0FBQyxJQUFJLEtBQUssY0FBYyxDQUFDLENBQUMsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsVUFBVSxDQUFDLEVBQWpFLENBQWlFLENBQUM7SUFFakgsSUFBTSxjQUFjLEdBQUcsVUFBQyxLQUFlLElBQUssT0FBQSxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsSUFBSSxpQkFBaUIsRUFBN0MsQ0FBNkMsQ0FBQztJQUUxRixJQUFNLG1CQUFtQixHQUFHLFVBQUMsS0FBZTtRQUMxQyxJQUFJLENBQUMsY0FBYyxDQUFDLEtBQUssQ0FBQyxFQUFFO1lBQzFCLDREQUE0RDtZQUM1RCxNQUFNLElBQUksS0FBSyxDQUFDLDBCQUEwQixDQUFDLENBQUM7U0FDN0M7UUFDRCxJQUFNLGNBQWMsR0FBRyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNoRCxpQkFBaUIsSUFBSSxjQUFjLENBQUM7UUFDcEMsT0FBTyxjQUFjLENBQUM7SUFDeEIsQ0FBQyxDQUFDO0lBRUYsSUFBTSxrQkFBa0IsR0FBRyxVQUFDLHFCQUE4QjtRQUN4RCxpQkFBaUIsSUFBSSxxQkFBcUIsYUFBckIscUJBQXFCLGNBQXJCLHFCQUFxQixHQUFJLGtCQUFrQixDQUFDO1FBQ2pFLGlCQUFpQixHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsaUJBQWlCLEVBQUUsWUFBWSxDQUFDLENBQUM7SUFDaEUsQ0FBQyxDQUFDO0lBRUYsT0FBTyxNQUFNLENBQUMsTUFBTSxDQUFDO1FBQ25CLGNBQWMsZ0JBQUE7UUFDZCxtQkFBbUIscUJBQUE7UUFDbkIsa0JBQWtCLG9CQUFBO0tBQ25CLENBQUMsQ0FBQztBQUNMLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNka0Vycm9yIH0gZnJvbSBcIkBhd3Mtc2RrL3NtaXRoeS1jbGllbnRcIjtcblxuaW1wb3J0IHsgTk9fUkVUUllfSU5DUkVNRU5ULCBSRVRSWV9DT1NULCBUSU1FT1VUX1JFVFJZX0NPU1QgfSBmcm9tIFwiLi9jb25zdGFudHNcIjtcbmltcG9ydCB7IFJldHJ5UXVvdGEgfSBmcm9tIFwiLi9kZWZhdWx0U3RyYXRlZ3lcIjtcblxuZXhwb3J0IGNvbnN0IGdldERlZmF1bHRSZXRyeVF1b3RhID0gKGluaXRpYWxSZXRyeVRva2VuczogbnVtYmVyKTogUmV0cnlRdW90YSA9PiB7XG4gIGNvbnN0IE1BWF9DQVBBQ0lUWSA9IGluaXRpYWxSZXRyeVRva2VucztcbiAgbGV0IGF2YWlsYWJsZUNhcGFjaXR5ID0gaW5pdGlhbFJldHJ5VG9rZW5zO1xuXG4gIGNvbnN0IGdldENhcGFjaXR5QW1vdW50ID0gKGVycm9yOiBTZGtFcnJvcikgPT4gKGVycm9yLm5hbWUgPT09IFwiVGltZW91dEVycm9yXCIgPyBUSU1FT1VUX1JFVFJZX0NPU1QgOiBSRVRSWV9DT1NUKTtcblxuICBjb25zdCBoYXNSZXRyeVRva2VucyA9IChlcnJvcjogU2RrRXJyb3IpID0+IGdldENhcGFjaXR5QW1vdW50KGVycm9yKSA8PSBhdmFpbGFibGVDYXBhY2l0eTtcblxuICBjb25zdCByZXRyaWV2ZVJldHJ5VG9rZW5zID0gKGVycm9yOiBTZGtFcnJvcikgPT4ge1xuICAgIGlmICghaGFzUmV0cnlUb2tlbnMoZXJyb3IpKSB7XG4gICAgICAvLyByZXRyeVN0cmF0ZWd5IHNob3VsZCBzdG9wIHJldHJ5aW5nLCBhbmQgcmV0dXJuIGxhc3QgZXJyb3JcbiAgICAgIHRocm93IG5ldyBFcnJvcihcIk5vIHJldHJ5IHRva2VuIGF2YWlsYWJsZVwiKTtcbiAgICB9XG4gICAgY29uc3QgY2FwYWNpdHlBbW91bnQgPSBnZXRDYXBhY2l0eUFtb3VudChlcnJvcik7XG4gICAgYXZhaWxhYmxlQ2FwYWNpdHkgLT0gY2FwYWNpdHlBbW91bnQ7XG4gICAgcmV0dXJuIGNhcGFjaXR5QW1vdW50O1xuICB9O1xuXG4gIGNvbnN0IHJlbGVhc2VSZXRyeVRva2VucyA9IChjYXBhY2l0eVJlbGVhc2VBbW91bnQ/OiBudW1iZXIpID0+IHtcbiAgICBhdmFpbGFibGVDYXBhY2l0eSArPSBjYXBhY2l0eVJlbGVhc2VBbW91bnQgPz8gTk9fUkVUUllfSU5DUkVNRU5UO1xuICAgIGF2YWlsYWJsZUNhcGFjaXR5ID0gTWF0aC5taW4oYXZhaWxhYmxlQ2FwYWNpdHksIE1BWF9DQVBBQ0lUWSk7XG4gIH07XG5cbiAgcmV0dXJuIE9iamVjdC5mcmVlemUoe1xuICAgIGhhc1JldHJ5VG9rZW5zLFxuICAgIHJldHJpZXZlUmV0cnlUb2tlbnMsXG4gICAgcmVsZWFzZVJldHJ5VG9rZW5zLFxuICB9KTtcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-retry/dist/es/defaultRetryQuota.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-retry/dist/es/defaultStrategy.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-retry/dist/es/defaultStrategy.js ***! \***************************************************************************/ /*! exports provided: DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, StandardRetryStrategy */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_ATTEMPTS\", function() { return DEFAULT_MAX_ATTEMPTS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_MODE\", function() { return DEFAULT_RETRY_MODE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StandardRetryStrategy\", function() { return StandardRetryStrategy; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ \"./node_modules/@aws-sdk/service-error-classification/dist/es/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! uuid */ \"./node_modules/uuid/index.js\");\n/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/constants.js\");\n/* harmony import */ var _defaultRetryQuota__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./defaultRetryQuota */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/defaultRetryQuota.js\");\n/* harmony import */ var _delayDecider__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./delayDecider */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/delayDecider.js\");\n/* harmony import */ var _retryDecider__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./retryDecider */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/retryDecider.js\");\n\n\n\n\n\n\n\n\n/**\n * The default value for how many HTTP requests an SDK should make for a\n * single SDK operation invocation before giving up\n */\nvar DEFAULT_MAX_ATTEMPTS = 3;\n/**\n * The default retry algorithm to use.\n */\nvar DEFAULT_RETRY_MODE = \"standard\";\nvar StandardRetryStrategy = /** @class */ (function () {\n function StandardRetryStrategy(maxAttemptsProvider, options) {\n var _a, _b, _c;\n this.maxAttemptsProvider = maxAttemptsProvider;\n this.mode = DEFAULT_RETRY_MODE;\n this.retryDecider = (_a = options === null || options === void 0 ? void 0 : options.retryDecider) !== null && _a !== void 0 ? _a : _retryDecider__WEBPACK_IMPORTED_MODULE_7__[\"defaultRetryDecider\"];\n this.delayDecider = (_b = options === null || options === void 0 ? void 0 : options.delayDecider) !== null && _b !== void 0 ? _b : _delayDecider__WEBPACK_IMPORTED_MODULE_6__[\"defaultDelayDecider\"];\n this.retryQuota = (_c = options === null || options === void 0 ? void 0 : options.retryQuota) !== null && _c !== void 0 ? _c : Object(_defaultRetryQuota__WEBPACK_IMPORTED_MODULE_5__[\"getDefaultRetryQuota\"])(_constants__WEBPACK_IMPORTED_MODULE_4__[\"INITIAL_RETRY_TOKENS\"]);\n }\n StandardRetryStrategy.prototype.shouldRetry = function (error, attempts, maxAttempts) {\n return attempts < maxAttempts && this.retryDecider(error) && this.retryQuota.hasRetryTokens(error);\n };\n StandardRetryStrategy.prototype.getMaxAttempts = function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var maxAttempts, error_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 2, , 3]);\n return [4 /*yield*/, this.maxAttemptsProvider()];\n case 1:\n maxAttempts = _a.sent();\n return [3 /*break*/, 3];\n case 2:\n error_1 = _a.sent();\n maxAttempts = DEFAULT_MAX_ATTEMPTS;\n return [3 /*break*/, 3];\n case 3: return [2 /*return*/, maxAttempts];\n }\n });\n });\n };\n StandardRetryStrategy.prototype.retry = function (next, args) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var retryTokenAmount, attempts, totalDelay, maxAttempts, request, _loop_1, this_1, state_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n attempts = 0;\n totalDelay = 0;\n return [4 /*yield*/, this.getMaxAttempts()];\n case 1:\n maxAttempts = _a.sent();\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_4__[\"INVOCATION_ID_HEADER\"]] = Object(uuid__WEBPACK_IMPORTED_MODULE_3__[\"v4\"])();\n }\n _loop_1 = function () {\n var _a, response, output, err_1, delay_1;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n _b.trys.push([0, 2, , 5]);\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_4__[\"REQUEST_HEADER\"]] = \"attempt=\" + (attempts + 1) + \"; max=\" + maxAttempts;\n }\n return [4 /*yield*/, next(args)];\n case 1:\n _a = _b.sent(), response = _a.response, output = _a.output;\n this_1.retryQuota.releaseRetryTokens(retryTokenAmount);\n output.$metadata.attempts = attempts + 1;\n output.$metadata.totalRetryDelay = totalDelay;\n return [2 /*return*/, { value: { response: response, output: output } }];\n case 2:\n err_1 = _b.sent();\n attempts++;\n if (!this_1.shouldRetry(err_1, attempts, maxAttempts)) return [3 /*break*/, 4];\n retryTokenAmount = this_1.retryQuota.retrieveRetryTokens(err_1);\n delay_1 = this_1.delayDecider(Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_2__[\"isThrottlingError\"])(err_1) ? _constants__WEBPACK_IMPORTED_MODULE_4__[\"THROTTLING_RETRY_DELAY_BASE\"] : _constants__WEBPACK_IMPORTED_MODULE_4__[\"DEFAULT_RETRY_DELAY_BASE\"], attempts);\n totalDelay += delay_1;\n return [4 /*yield*/, new Promise(function (resolve) { return setTimeout(resolve, delay_1); })];\n case 3:\n _b.sent();\n return [2 /*return*/, \"continue\"];\n case 4:\n if (!err_1.$metadata) {\n err_1.$metadata = {};\n }\n err_1.$metadata.attempts = attempts;\n err_1.$metadata.totalRetryDelay = totalDelay;\n throw err_1;\n case 5: return [2 /*return*/];\n }\n });\n };\n this_1 = this;\n _a.label = 2;\n case 2:\n if (false) {}\n return [5 /*yield**/, _loop_1()];\n case 3:\n state_1 = _a.sent();\n if (typeof state_1 === \"object\")\n return [2 /*return*/, state_1.value];\n return [3 /*break*/, 2];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n return StandardRetryStrategy;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmYXVsdFN0cmF0ZWd5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2RlZmF1bHRTdHJhdGVneS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3JELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBRzFFLE9BQU8sRUFBRSxFQUFFLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFFMUIsT0FBTyxFQUNMLHdCQUF3QixFQUN4QixvQkFBb0IsRUFDcEIsb0JBQW9CLEVBQ3BCLGNBQWMsRUFDZCwyQkFBMkIsR0FDNUIsTUFBTSxhQUFhLENBQUM7QUFDckIsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDM0QsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDckQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFckQ7OztHQUdHO0FBQ0gsTUFBTSxDQUFDLElBQU0sb0JBQW9CLEdBQUcsQ0FBQyxDQUFDO0FBRXRDOztHQUVHO0FBQ0gsTUFBTSxDQUFDLElBQU0sa0JBQWtCLEdBQUcsVUFBVSxDQUFDO0FBb0Q3QztJQU1FLCtCQUE2QixtQkFBcUMsRUFBRSxPQUFzQzs7UUFBN0Usd0JBQW1CLEdBQW5CLG1CQUFtQixDQUFrQjtRQUZsRCxTQUFJLEdBQUcsa0JBQWtCLENBQUM7UUFHeEMsSUFBSSxDQUFDLFlBQVksU0FBRyxPQUFPLGFBQVAsT0FBTyx1QkFBUCxPQUFPLENBQUUsWUFBWSxtQ0FBSSxtQkFBbUIsQ0FBQztRQUNqRSxJQUFJLENBQUMsWUFBWSxTQUFHLE9BQU8sYUFBUCxPQUFPLHVCQUFQLE9BQU8sQ0FBRSxZQUFZLG1DQUFJLG1CQUFtQixDQUFDO1FBQ2pFLElBQUksQ0FBQyxVQUFVLFNBQUcsT0FBTyxhQUFQLE9BQU8sdUJBQVAsT0FBTyxDQUFFLFVBQVUsbUNBQUksb0JBQW9CLENBQUMsb0JBQW9CLENBQUMsQ0FBQztJQUN0RixDQUFDO0lBRU8sMkNBQVcsR0FBbkIsVUFBb0IsS0FBZSxFQUFFLFFBQWdCLEVBQUUsV0FBbUI7UUFDeEUsT0FBTyxRQUFRLEdBQUcsV0FBVyxJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsS0FBSyxDQUFDLElBQUksSUFBSSxDQUFDLFVBQVUsQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDckcsQ0FBQztJQUVhLDhDQUFjLEdBQTVCOzs7Ozs7O3dCQUdrQixxQkFBTSxJQUFJLENBQUMsbUJBQW1CLEVBQUUsRUFBQTs7d0JBQTlDLFdBQVcsR0FBRyxTQUFnQyxDQUFDOzs7O3dCQUUvQyxXQUFXLEdBQUcsb0JBQW9CLENBQUM7OzRCQUVyQyxzQkFBTyxXQUFXLEVBQUM7Ozs7S0FDcEI7SUFFSyxxQ0FBSyxHQUFYLFVBQ0UsSUFBbUMsRUFDbkMsSUFBcUM7Ozs7Ozt3QkFHakMsUUFBUSxHQUFHLENBQUMsQ0FBQzt3QkFDYixVQUFVLEdBQUcsQ0FBQyxDQUFDO3dCQUVDLHFCQUFNLElBQUksQ0FBQyxjQUFjLEVBQUUsRUFBQTs7d0JBQXpDLFdBQVcsR0FBRyxTQUEyQjt3QkFFdkMsT0FBTyxHQUFLLElBQUksUUFBVCxDQUFVO3dCQUN6QixJQUFJLFdBQVcsQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDLEVBQUU7NEJBQ25DLE9BQU8sQ0FBQyxPQUFPLENBQUMsb0JBQW9CLENBQUMsR0FBRyxFQUFFLEVBQUUsQ0FBQzt5QkFDOUM7Ozs7Ozs7d0NBSUcsSUFBSSxXQUFXLENBQUMsVUFBVSxDQUFDLE9BQU8sQ0FBQyxFQUFFOzRDQUNuQyxPQUFPLENBQUMsT0FBTyxDQUFDLGNBQWMsQ0FBQyxHQUFHLGNBQVcsUUFBUSxHQUFHLENBQUMsZUFBUyxXQUFhLENBQUM7eUNBQ2pGO3dDQUM0QixxQkFBTSxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUE7O3dDQUF2QyxLQUF1QixTQUFnQixFQUFyQyxRQUFRLGNBQUEsRUFBRSxNQUFNLFlBQUE7d0NBRXhCLE9BQUssVUFBVSxDQUFDLGtCQUFrQixDQUFDLGdCQUFnQixDQUFDLENBQUM7d0NBQ3JELE1BQU0sQ0FBQyxTQUFTLENBQUMsUUFBUSxHQUFHLFFBQVEsR0FBRyxDQUFDLENBQUM7d0NBQ3pDLE1BQU0sQ0FBQyxTQUFTLENBQUMsZUFBZSxHQUFHLFVBQVUsQ0FBQzt1RUFFdkMsRUFBRSxRQUFRLFVBQUEsRUFBRSxNQUFNLFFBQUEsRUFBRTs7O3dDQUUzQixRQUFRLEVBQUUsQ0FBQzs2Q0FDUCxPQUFLLFdBQVcsQ0FBQyxLQUFlLEVBQUUsUUFBUSxFQUFFLFdBQVcsQ0FBQyxFQUF4RCx3QkFBd0Q7d0NBQzFELGdCQUFnQixHQUFHLE9BQUssVUFBVSxDQUFDLG1CQUFtQixDQUFDLEtBQUcsQ0FBQyxDQUFDO3dDQUN0RCxVQUFRLE9BQUssWUFBWSxDQUM3QixpQkFBaUIsQ0FBQyxLQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsMkJBQTJCLENBQUMsQ0FBQyxDQUFDLHdCQUF3QixFQUMvRSxRQUFRLENBQ1QsQ0FBQzt3Q0FDRixVQUFVLElBQUksT0FBSyxDQUFDO3dDQUVwQixxQkFBTSxJQUFJLE9BQU8sQ0FBQyxVQUFDLE9BQU8sSUFBSyxPQUFBLFVBQVUsQ0FBQyxPQUFPLEVBQUUsT0FBSyxDQUFDLEVBQTFCLENBQTBCLENBQUMsRUFBQTs7d0NBQTFELFNBQTBELENBQUM7Ozt3Q0FJN0QsSUFBSSxDQUFDLEtBQUcsQ0FBQyxTQUFTLEVBQUU7NENBQ2xCLEtBQUcsQ0FBQyxTQUFTLEdBQUcsRUFBRSxDQUFDO3lDQUNwQjt3Q0FFRCxLQUFHLENBQUMsU0FBUyxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7d0NBQ2xDLEtBQUcsQ0FBQyxTQUFTLENBQUMsZUFBZSxHQUFHLFVBQVUsQ0FBQzt3Q0FDM0MsTUFBTSxLQUFHLENBQUM7Ozs7Ozs7OzZCQWhDUCxJQUFJOzs7Ozs7Ozs7OztLQW1DWjtJQUNILDRCQUFDO0FBQUQsQ0FBQyxBQTdFRCxJQTZFQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBSZXF1ZXN0IH0gZnJvbSBcIkBhd3Mtc2RrL3Byb3RvY29sLWh0dHBcIjtcbmltcG9ydCB7IGlzVGhyb3R0bGluZ0Vycm9yIH0gZnJvbSBcIkBhd3Mtc2RrL3NlcnZpY2UtZXJyb3ItY2xhc3NpZmljYXRpb25cIjtcbmltcG9ydCB7IFNka0Vycm9yIH0gZnJvbSBcIkBhd3Mtc2RrL3NtaXRoeS1jbGllbnRcIjtcbmltcG9ydCB7IEZpbmFsaXplSGFuZGxlciwgRmluYWxpemVIYW5kbGVyQXJndW1lbnRzLCBNZXRhZGF0YUJlYXJlciwgUHJvdmlkZXIsIFJldHJ5U3RyYXRlZ3kgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IHY0IH0gZnJvbSBcInV1aWRcIjtcblxuaW1wb3J0IHtcbiAgREVGQVVMVF9SRVRSWV9ERUxBWV9CQVNFLFxuICBJTklUSUFMX1JFVFJZX1RPS0VOUyxcbiAgSU5WT0NBVElPTl9JRF9IRUFERVIsXG4gIFJFUVVFU1RfSEVBREVSLFxuICBUSFJPVFRMSU5HX1JFVFJZX0RFTEFZX0JBU0UsXG59IGZyb20gXCIuL2NvbnN0YW50c1wiO1xuaW1wb3J0IHsgZ2V0RGVmYXVsdFJldHJ5UXVvdGEgfSBmcm9tIFwiLi9kZWZhdWx0UmV0cnlRdW90YVwiO1xuaW1wb3J0IHsgZGVmYXVsdERlbGF5RGVjaWRlciB9IGZyb20gXCIuL2RlbGF5RGVjaWRlclwiO1xuaW1wb3J0IHsgZGVmYXVsdFJldHJ5RGVjaWRlciB9IGZyb20gXCIuL3JldHJ5RGVjaWRlclwiO1xuXG4vKipcbiAqIFRoZSBkZWZhdWx0IHZhbHVlIGZvciBob3cgbWFueSBIVFRQIHJlcXVlc3RzIGFuIFNESyBzaG91bGQgbWFrZSBmb3IgYVxuICogc2luZ2xlIFNESyBvcGVyYXRpb24gaW52b2NhdGlvbiBiZWZvcmUgZ2l2aW5nIHVwXG4gKi9cbmV4cG9ydCBjb25zdCBERUZBVUxUX01BWF9BVFRFTVBUUyA9IDM7XG5cbi8qKlxuICogVGhlIGRlZmF1bHQgcmV0cnkgYWxnb3JpdGhtIHRvIHVzZS5cbiAqL1xuZXhwb3J0IGNvbnN0IERFRkFVTFRfUkVUUllfTU9ERSA9IFwic3RhbmRhcmRcIjtcblxuLyoqXG4gKiBEZXRlcm1pbmVzIHdoZXRoZXIgYW4gZXJyb3IgaXMgcmV0cnlhYmxlIGJhc2VkIG9uIHRoZSBudW1iZXIgb2YgcmV0cmllc1xuICogYWxyZWFkeSBhdHRlbXB0ZWQsIHRoZSBIVFRQIHN0YXR1cyBjb2RlLCBhbmQgdGhlIGVycm9yIHJlY2VpdmVkIChpZiBhbnkpLlxuICpcbiAqIEBwYXJhbSBlcnJvciAgICAgICAgIFRoZSBlcnJvciBlbmNvdW50ZXJlZC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBSZXRyeURlY2lkZXIge1xuICAoZXJyb3I6IFNka0Vycm9yKTogYm9vbGVhbjtcbn1cblxuLyoqXG4gKiBEZXRlcm1pbmVzIHRoZSBudW1iZXIgb2YgbWlsbGlzZWNvbmRzIHRvIHdhaXQgYmVmb3JlIHJldHJ5aW5nIGFuIGFjdGlvbi5cbiAqXG4gKiBAcGFyYW0gZGVsYXlCYXNlIFRoZSBiYXNlIGRlbGF5IChpbiBtaWxsaXNlY29uZHMpLlxuICogQHBhcmFtIGF0dGVtcHRzICBUaGUgbnVtYmVyIG9mIHRpbWVzIHRoZSBhY3Rpb24gaGFzIGFscmVhZHkgYmVlbiB0cmllZC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBEZWxheURlY2lkZXIge1xuICAoZGVsYXlCYXNlOiBudW1iZXIsIGF0dGVtcHRzOiBudW1iZXIpOiBudW1iZXI7XG59XG5cbi8qKlxuICogSW50ZXJmYWNlIHRoYXQgc3BlY2lmaWVzIHRoZSByZXRyeSBxdW90YSBiZWhhdmlvci5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBSZXRyeVF1b3RhIHtcbiAgLyoqXG4gICAqIHJldHVybnMgdHJ1ZSBpZiByZXRyeSB0b2tlbnMgYXJlIGF2YWlsYWJsZSBmcm9tIHRoZSByZXRyeSBxdW90YSBidWNrZXQuXG4gICAqL1xuICBoYXNSZXRyeVRva2VuczogKGVycm9yOiBTZGtFcnJvcikgPT4gYm9vbGVhbjtcblxuICAvKipcbiAgICogcmV0dXJucyB0b2tlbiBhbW91bnQgZnJvbSB0aGUgcmV0cnkgcXVvdGEgYnVja2V0LlxuICAgKiB0aHJvd3MgZXJyb3IgaXMgcmV0cnkgdG9rZW5zIGFyZSBub3QgYXZhaWxhYmxlLlxuICAgKi9cbiAgcmV0cmlldmVSZXRyeVRva2VuczogKGVycm9yOiBTZGtFcnJvcikgPT4gbnVtYmVyO1xuXG4gIC8qKlxuICAgKiByZWxlYXNlcyB0b2tlbnMgYmFjayB0byB0aGUgcmV0cnkgcXVvdGEuXG4gICAqL1xuICByZWxlYXNlUmV0cnlUb2tlbnM6IChyZWxlYXNlQ2FwYWNpdHlBbW91bnQ/OiBudW1iZXIpID0+IHZvaWQ7XG59XG5cbi8qKlxuICogU3RyYXRlZ3kgb3B0aW9ucyB0byBiZSBwYXNzZWQgdG8gU3RhbmRhcmRSZXRyeVN0cmF0ZWd5XG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgU3RhbmRhcmRSZXRyeVN0cmF0ZWd5T3B0aW9ucyB7XG4gIHJldHJ5RGVjaWRlcj86IFJldHJ5RGVjaWRlcjtcbiAgZGVsYXlEZWNpZGVyPzogRGVsYXlEZWNpZGVyO1xuICByZXRyeVF1b3RhPzogUmV0cnlRdW90YTtcbn1cblxuZXhwb3J0IGNsYXNzIFN0YW5kYXJkUmV0cnlTdHJhdGVneSBpbXBsZW1lbnRzIFJldHJ5U3RyYXRlZ3kge1xuICBwcml2YXRlIHJldHJ5RGVjaWRlcjogUmV0cnlEZWNpZGVyO1xuICBwcml2YXRlIGRlbGF5RGVjaWRlcjogRGVsYXlEZWNpZGVyO1xuICBwcml2YXRlIHJldHJ5UXVvdGE6IFJldHJ5UXVvdGE7XG4gIHB1YmxpYyByZWFkb25seSBtb2RlID0gREVGQVVMVF9SRVRSWV9NT0RFO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgbWF4QXR0ZW1wdHNQcm92aWRlcjogUHJvdmlkZXI8bnVtYmVyPiwgb3B0aW9ucz86IFN0YW5kYXJkUmV0cnlTdHJhdGVneU9wdGlvbnMpIHtcbiAgICB0aGlzLnJldHJ5RGVjaWRlciA9IG9wdGlvbnM/LnJldHJ5RGVjaWRlciA/PyBkZWZhdWx0UmV0cnlEZWNpZGVyO1xuICAgIHRoaXMuZGVsYXlEZWNpZGVyID0gb3B0aW9ucz8uZGVsYXlEZWNpZGVyID8/IGRlZmF1bHREZWxheURlY2lkZXI7XG4gICAgdGhpcy5yZXRyeVF1b3RhID0gb3B0aW9ucz8ucmV0cnlRdW90YSA/PyBnZXREZWZhdWx0UmV0cnlRdW90YShJTklUSUFMX1JFVFJZX1RPS0VOUyk7XG4gIH1cblxuICBwcml2YXRlIHNob3VsZFJldHJ5KGVycm9yOiBTZGtFcnJvciwgYXR0ZW1wdHM6IG51bWJlciwgbWF4QXR0ZW1wdHM6IG51bWJlcikge1xuICAgIHJldHVybiBhdHRlbXB0cyA8IG1heEF0dGVtcHRzICYmIHRoaXMucmV0cnlEZWNpZGVyKGVycm9yKSAmJiB0aGlzLnJldHJ5UXVvdGEuaGFzUmV0cnlUb2tlbnMoZXJyb3IpO1xuICB9XG5cbiAgcHJpdmF0ZSBhc3luYyBnZXRNYXhBdHRlbXB0cygpIHtcbiAgICBsZXQgbWF4QXR0ZW1wdHM6IG51bWJlcjtcbiAgICB0cnkge1xuICAgICAgbWF4QXR0ZW1wdHMgPSBhd2FpdCB0aGlzLm1heEF0dGVtcHRzUHJvdmlkZXIoKTtcbiAgICB9IGNhdGNoIChlcnJvcikge1xuICAgICAgbWF4QXR0ZW1wdHMgPSBERUZBVUxUX01BWF9BVFRFTVBUUztcbiAgICB9XG4gICAgcmV0dXJuIG1heEF0dGVtcHRzO1xuICB9XG5cbiAgYXN5bmMgcmV0cnk8SW5wdXQgZXh0ZW5kcyBvYmplY3QsIE91cHV0IGV4dGVuZHMgTWV0YWRhdGFCZWFyZXI+KFxuICAgIG5leHQ6IEZpbmFsaXplSGFuZGxlcjxJbnB1dCwgT3VwdXQ+LFxuICAgIGFyZ3M6IEZpbmFsaXplSGFuZGxlckFyZ3VtZW50czxJbnB1dD5cbiAgKSB7XG4gICAgbGV0IHJldHJ5VG9rZW5BbW91bnQ7XG4gICAgbGV0IGF0dGVtcHRzID0gMDtcbiAgICBsZXQgdG90YWxEZWxheSA9IDA7XG5cbiAgICBjb25zdCBtYXhBdHRlbXB0cyA9IGF3YWl0IHRoaXMuZ2V0TWF4QXR0ZW1wdHMoKTtcblxuICAgIGNvbnN0IHsgcmVxdWVzdCB9ID0gYXJncztcbiAgICBpZiAoSHR0cFJlcXVlc3QuaXNJbnN0YW5jZShyZXF1ZXN0KSkge1xuICAgICAgcmVxdWVzdC5oZWFkZXJzW0lOVk9DQVRJT05fSURfSEVBREVSXSA9IHY0KCk7XG4gICAgfVxuXG4gICAgd2hpbGUgKHRydWUpIHtcbiAgICAgIHRyeSB7XG4gICAgICAgIGlmIChIdHRwUmVxdWVzdC5pc0luc3RhbmNlKHJlcXVlc3QpKSB7XG4gICAgICAgICAgcmVxdWVzdC5oZWFkZXJzW1JFUVVFU1RfSEVBREVSXSA9IGBhdHRlbXB0PSR7YXR0ZW1wdHMgKyAxfTsgbWF4PSR7bWF4QXR0ZW1wdHN9YDtcbiAgICAgICAgfVxuICAgICAgICBjb25zdCB7IHJlc3BvbnNlLCBvdXRwdXQgfSA9IGF3YWl0IG5leHQoYXJncyk7XG5cbiAgICAgICAgdGhpcy5yZXRyeVF1b3RhLnJlbGVhc2VSZXRyeVRva2VucyhyZXRyeVRva2VuQW1vdW50KTtcbiAgICAgICAgb3V0cHV0LiRtZXRhZGF0YS5hdHRlbXB0cyA9IGF0dGVtcHRzICsgMTtcbiAgICAgICAgb3V0cHV0LiRtZXRhZGF0YS50b3RhbFJldHJ5RGVsYXkgPSB0b3RhbERlbGF5O1xuXG4gICAgICAgIHJldHVybiB7IHJlc3BvbnNlLCBvdXRwdXQgfTtcbiAgICAgIH0gY2F0Y2ggKGVycikge1xuICAgICAgICBhdHRlbXB0cysrO1xuICAgICAgICBpZiAodGhpcy5zaG91bGRSZXRyeShlcnIgYXMgU2RrRXJyb3IsIGF0dGVtcHRzLCBtYXhBdHRlbXB0cykpIHtcbiAgICAgICAgICByZXRyeVRva2VuQW1vdW50ID0gdGhpcy5yZXRyeVF1b3RhLnJldHJpZXZlUmV0cnlUb2tlbnMoZXJyKTtcbiAgICAgICAgICBjb25zdCBkZWxheSA9IHRoaXMuZGVsYXlEZWNpZGVyKFxuICAgICAgICAgICAgaXNUaHJvdHRsaW5nRXJyb3IoZXJyKSA/IFRIUk9UVExJTkdfUkVUUllfREVMQVlfQkFTRSA6IERFRkFVTFRfUkVUUllfREVMQVlfQkFTRSxcbiAgICAgICAgICAgIGF0dGVtcHRzXG4gICAgICAgICAgKTtcbiAgICAgICAgICB0b3RhbERlbGF5ICs9IGRlbGF5O1xuXG4gICAgICAgICAgYXdhaXQgbmV3IFByb21pc2UoKHJlc29sdmUpID0+IHNldFRpbWVvdXQocmVzb2x2ZSwgZGVsYXkpKTtcbiAgICAgICAgICBjb250aW51ZTtcbiAgICAgICAgfVxuXG4gICAgICAgIGlmICghZXJyLiRtZXRhZGF0YSkge1xuICAgICAgICAgIGVyci4kbWV0YWRhdGEgPSB7fTtcbiAgICAgICAgfVxuXG4gICAgICAgIGVyci4kbWV0YWRhdGEuYXR0ZW1wdHMgPSBhdHRlbXB0cztcbiAgICAgICAgZXJyLiRtZXRhZGF0YS50b3RhbFJldHJ5RGVsYXkgPSB0b3RhbERlbGF5O1xuICAgICAgICB0aHJvdyBlcnI7XG4gICAgICB9XG4gICAgfVxuICB9XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-retry/dist/es/defaultStrategy.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-retry/dist/es/delayDecider.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-retry/dist/es/delayDecider.js ***! \************************************************************************/ /*! exports provided: defaultDelayDecider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultDelayDecider\", function() { return defaultDelayDecider; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/constants.js\");\n\n/**\n * Calculate a capped, fully-jittered exponential backoff time.\n */\nvar defaultDelayDecider = function (delayBase, attempts) {\n return Math.floor(Math.min(_constants__WEBPACK_IMPORTED_MODULE_0__[\"MAXIMUM_RETRY_DELAY\"], Math.random() * Math.pow(2, attempts) * delayBase));\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVsYXlEZWNpZGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2RlbGF5RGVjaWRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFbEQ7O0dBRUc7QUFDSCxNQUFNLENBQUMsSUFBTSxtQkFBbUIsR0FBRyxVQUFDLFNBQWlCLEVBQUUsUUFBZ0I7SUFDckUsT0FBQSxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLE1BQU0sRUFBRSxHQUFHLFNBQUEsQ0FBQyxFQUFJLFFBQVEsQ0FBQSxHQUFHLFNBQVMsQ0FBQyxDQUFDO0FBQXBGLENBQW9GLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBNQVhJTVVNX1JFVFJZX0RFTEFZIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5cbi8qKlxuICogQ2FsY3VsYXRlIGEgY2FwcGVkLCBmdWxseS1qaXR0ZXJlZCBleHBvbmVudGlhbCBiYWNrb2ZmIHRpbWUuXG4gKi9cbmV4cG9ydCBjb25zdCBkZWZhdWx0RGVsYXlEZWNpZGVyID0gKGRlbGF5QmFzZTogbnVtYmVyLCBhdHRlbXB0czogbnVtYmVyKSA9PlxuICBNYXRoLmZsb29yKE1hdGgubWluKE1BWElNVU1fUkVUUllfREVMQVksIE1hdGgucmFuZG9tKCkgKiAyICoqIGF0dGVtcHRzICogZGVsYXlCYXNlKSk7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-retry/dist/es/delayDecider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-retry/dist/es/index.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-retry/dist/es/index.js ***! \*****************************************************************/ /*! exports provided: retryMiddleware, retryMiddlewareOptions, getRetryPlugin, omitRetryHeadersMiddleware, omitRetryHeadersMiddlewareOptions, getOmitRetryHeadersPlugin, DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, StandardRetryStrategy, ENV_MAX_ATTEMPTS, CONFIG_MAX_ATTEMPTS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, ENV_RETRY_MODE, CONFIG_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, defaultDelayDecider, defaultRetryDecider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _retryMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./retryMiddleware */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/retryMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retryMiddleware\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"retryMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"retryMiddlewareOptions\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"retryMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRetryPlugin\", function() { return _retryMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"getRetryPlugin\"]; });\n\n/* harmony import */ var _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./omitRetryHeadersMiddleware */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/omitRetryHeadersMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddleware\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"omitRetryHeadersMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddlewareOptions\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"omitRetryHeadersMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getOmitRetryHeadersPlugin\", function() { return _omitRetryHeadersMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"getOmitRetryHeadersPlugin\"]; });\n\n/* harmony import */ var _defaultStrategy__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./defaultStrategy */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/defaultStrategy.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_ATTEMPTS\", function() { return _defaultStrategy__WEBPACK_IMPORTED_MODULE_2__[\"DEFAULT_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_RETRY_MODE\", function() { return _defaultStrategy__WEBPACK_IMPORTED_MODULE_2__[\"DEFAULT_RETRY_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StandardRetryStrategy\", function() { return _defaultStrategy__WEBPACK_IMPORTED_MODULE_2__[\"StandardRetryStrategy\"]; });\n\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_MAX_ATTEMPTS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_3__[\"ENV_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_MAX_ATTEMPTS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_3__[\"CONFIG_MAX_ATTEMPTS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_3__[\"NODE_MAX_ATTEMPT_CONFIG_OPTIONS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveRetryConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_3__[\"resolveRetryConfig\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ENV_RETRY_MODE\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_3__[\"ENV_RETRY_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CONFIG_RETRY_MODE\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_3__[\"CONFIG_RETRY_MODE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NODE_RETRY_MODE_CONFIG_OPTIONS\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_3__[\"NODE_RETRY_MODE_CONFIG_OPTIONS\"]; });\n\n/* harmony import */ var _delayDecider__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./delayDecider */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/delayDecider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultDelayDecider\", function() { return _delayDecider__WEBPACK_IMPORTED_MODULE_4__[\"defaultDelayDecider\"]; });\n\n/* harmony import */ var _retryDecider__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./retryDecider */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/retryDecider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultRetryDecider\", function() { return _retryDecider__WEBPACK_IMPORTED_MODULE_5__[\"defaultRetryDecider\"]; });\n\n\n\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsZ0JBQWdCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLi9yZXRyeU1pZGRsZXdhcmVcIjtcbmV4cG9ydCAqIGZyb20gXCIuL29taXRSZXRyeUhlYWRlcnNNaWRkbGV3YXJlXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9kZWZhdWx0U3RyYXRlZ3lcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbmZpZ3VyYXRpb25zXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9kZWxheURlY2lkZXJcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3JldHJ5RGVjaWRlclwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-retry/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-retry/dist/es/omitRetryHeadersMiddleware.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-retry/dist/es/omitRetryHeadersMiddleware.js ***! \**************************************************************************************/ /*! exports provided: omitRetryHeadersMiddleware, omitRetryHeadersMiddlewareOptions, getOmitRetryHeadersPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddleware\", function() { return omitRetryHeadersMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"omitRetryHeadersMiddlewareOptions\", function() { return omitRetryHeadersMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getOmitRetryHeadersPlugin\", function() { return getOmitRetryHeadersPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/middleware-retry/dist/es/constants.js\");\n\n\n\nvar omitRetryHeadersMiddleware = function () { return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n request = args.request;\n if (_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n delete request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"INVOCATION_ID_HEADER\"]];\n delete request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"REQUEST_HEADER\"]];\n }\n return [2 /*return*/, next(args)];\n });\n}); }; }; };\nvar omitRetryHeadersMiddlewareOptions = {\n name: \"omitRetryHeadersMiddleware\",\n tags: [\"RETRY\", \"HEADERS\", \"OMIT_RETRY_HEADERS\"],\n relation: \"before\",\n toMiddleware: \"awsAuthMiddleware\",\n override: true,\n};\nvar getOmitRetryHeadersPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(omitRetryHeadersMiddleware(), omitRetryHeadersMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib21pdFJldHJ5SGVhZGVyc01pZGRsZXdhcmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvb21pdFJldHJ5SGVhZGVyc01pZGRsZXdhcmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQVVyRCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsY0FBYyxFQUFFLE1BQU0sYUFBYSxDQUFDO0FBRW5FLE1BQU0sQ0FBQyxJQUFNLDBCQUEwQixHQUFHLGNBQU0sT0FBQSxVQUM5QyxJQUFrQyxJQUNELE9BQUEsVUFDakMsSUFBbUM7OztRQUUzQixPQUFPLEdBQUssSUFBSSxRQUFULENBQVU7UUFDekIsSUFBSSxXQUFXLENBQUMsVUFBVSxDQUFDLE9BQU8sQ0FBQyxFQUFFO1lBQ25DLE9BQU8sT0FBTyxDQUFDLE9BQU8sQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO1lBQzdDLE9BQU8sT0FBTyxDQUFDLE9BQU8sQ0FBQyxjQUFjLENBQUMsQ0FBQztTQUN4QztRQUNELHNCQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsRUFBQzs7S0FDbkIsRUFUa0MsQ0FTbEMsRUFYK0MsQ0FXL0MsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLGlDQUFpQyxHQUE4QjtJQUMxRSxJQUFJLEVBQUUsNEJBQTRCO0lBQ2xDLElBQUksRUFBRSxDQUFDLE9BQU8sRUFBRSxTQUFTLEVBQUUsb0JBQW9CLENBQUM7SUFDaEQsUUFBUSxFQUFFLFFBQVE7SUFDbEIsWUFBWSxFQUFFLG1CQUFtQjtJQUNqQyxRQUFRLEVBQUUsSUFBSTtDQUNmLENBQUM7QUFFRixNQUFNLENBQUMsSUFBTSx5QkFBeUIsR0FBRyxVQUFDLE9BQWdCLElBQTBCLE9BQUEsQ0FBQztJQUNuRixZQUFZLEVBQUUsVUFBQyxXQUFXO1FBQ3hCLFdBQVcsQ0FBQyxhQUFhLENBQUMsMEJBQTBCLEVBQUUsRUFBRSxpQ0FBaUMsQ0FBQyxDQUFDO0lBQzdGLENBQUM7Q0FDRixDQUFDLEVBSmtGLENBSWxGLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwUmVxdWVzdCB9IGZyb20gXCJAYXdzLXNkay9wcm90b2NvbC1odHRwXCI7XG5pbXBvcnQge1xuICBGaW5hbGl6ZUhhbmRsZXIsXG4gIEZpbmFsaXplSGFuZGxlckFyZ3VtZW50cyxcbiAgRmluYWxpemVIYW5kbGVyT3V0cHV0LFxuICBNZXRhZGF0YUJlYXJlcixcbiAgUGx1Z2dhYmxlLFxuICBSZWxhdGl2ZU1pZGRsZXdhcmVPcHRpb25zLFxufSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgSU5WT0NBVElPTl9JRF9IRUFERVIsIFJFUVVFU1RfSEVBREVSIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5cbmV4cG9ydCBjb25zdCBvbWl0UmV0cnlIZWFkZXJzTWlkZGxld2FyZSA9ICgpID0+IDxPdXRwdXQgZXh0ZW5kcyBNZXRhZGF0YUJlYXJlciA9IE1ldGFkYXRhQmVhcmVyPihcbiAgbmV4dDogRmluYWxpemVIYW5kbGVyPGFueSwgT3V0cHV0PlxuKTogRmluYWxpemVIYW5kbGVyPGFueSwgT3V0cHV0PiA9PiBhc3luYyAoXG4gIGFyZ3M6IEZpbmFsaXplSGFuZGxlckFyZ3VtZW50czxhbnk+XG4pOiBQcm9taXNlPEZpbmFsaXplSGFuZGxlck91dHB1dDxPdXRwdXQ+PiA9PiB7XG4gIGNvbnN0IHsgcmVxdWVzdCB9ID0gYXJncztcbiAgaWYgKEh0dHBSZXF1ZXN0LmlzSW5zdGFuY2UocmVxdWVzdCkpIHtcbiAgICBkZWxldGUgcmVxdWVzdC5oZWFkZXJzW0lOVk9DQVRJT05fSURfSEVBREVSXTtcbiAgICBkZWxldGUgcmVxdWVzdC5oZWFkZXJzW1JFUVVFU1RfSEVBREVSXTtcbiAgfVxuICByZXR1cm4gbmV4dChhcmdzKTtcbn07XG5cbmV4cG9ydCBjb25zdCBvbWl0UmV0cnlIZWFkZXJzTWlkZGxld2FyZU9wdGlvbnM6IFJlbGF0aXZlTWlkZGxld2FyZU9wdGlvbnMgPSB7XG4gIG5hbWU6IFwib21pdFJldHJ5SGVhZGVyc01pZGRsZXdhcmVcIixcbiAgdGFnczogW1wiUkVUUllcIiwgXCJIRUFERVJTXCIsIFwiT01JVF9SRVRSWV9IRUFERVJTXCJdLFxuICByZWxhdGlvbjogXCJiZWZvcmVcIixcbiAgdG9NaWRkbGV3YXJlOiBcImF3c0F1dGhNaWRkbGV3YXJlXCIsXG4gIG92ZXJyaWRlOiB0cnVlLFxufTtcblxuZXhwb3J0IGNvbnN0IGdldE9taXRSZXRyeUhlYWRlcnNQbHVnaW4gPSAob3B0aW9uczogdW5rbm93bik6IFBsdWdnYWJsZTxhbnksIGFueT4gPT4gKHtcbiAgYXBwbHlUb1N0YWNrOiAoY2xpZW50U3RhY2spID0+IHtcbiAgICBjbGllbnRTdGFjay5hZGRSZWxhdGl2ZVRvKG9taXRSZXRyeUhlYWRlcnNNaWRkbGV3YXJlKCksIG9taXRSZXRyeUhlYWRlcnNNaWRkbGV3YXJlT3B0aW9ucyk7XG4gIH0sXG59KTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-retry/dist/es/omitRetryHeadersMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-retry/dist/es/retryDecider.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-retry/dist/es/retryDecider.js ***! \************************************************************************/ /*! exports provided: defaultRetryDecider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultRetryDecider\", function() { return defaultRetryDecider; });\n/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ \"./node_modules/@aws-sdk/service-error-classification/dist/es/index.js\");\n\nvar defaultRetryDecider = function (error) {\n if (!error) {\n return false;\n }\n return Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isRetryableByTrait\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isClockSkewError\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isThrottlingError\"])(error) || Object(_aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_0__[\"isTransientError\"])(error);\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmV0cnlEZWNpZGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3JldHJ5RGVjaWRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsZ0JBQWdCLEVBQ2hCLGtCQUFrQixFQUNsQixpQkFBaUIsRUFDakIsZ0JBQWdCLEdBQ2pCLE1BQU0sdUNBQXVDLENBQUM7QUFHL0MsTUFBTSxDQUFDLElBQU0sbUJBQW1CLEdBQUcsVUFBQyxLQUFlO0lBQ2pELElBQUksQ0FBQyxLQUFLLEVBQUU7UUFDVixPQUFPLEtBQUssQ0FBQztLQUNkO0lBRUQsT0FBTyxrQkFBa0IsQ0FBQyxLQUFLLENBQUMsSUFBSSxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsSUFBSSxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsSUFBSSxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztBQUNySCxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBpc0Nsb2NrU2tld0Vycm9yLFxuICBpc1JldHJ5YWJsZUJ5VHJhaXQsXG4gIGlzVGhyb3R0bGluZ0Vycm9yLFxuICBpc1RyYW5zaWVudEVycm9yLFxufSBmcm9tIFwiQGF3cy1zZGsvc2VydmljZS1lcnJvci1jbGFzc2lmaWNhdGlvblwiO1xuaW1wb3J0IHsgU2RrRXJyb3IgfSBmcm9tIFwiQGF3cy1zZGsvc21pdGh5LWNsaWVudFwiO1xuXG5leHBvcnQgY29uc3QgZGVmYXVsdFJldHJ5RGVjaWRlciA9IChlcnJvcjogU2RrRXJyb3IpID0+IHtcbiAgaWYgKCFlcnJvcikge1xuICAgIHJldHVybiBmYWxzZTtcbiAgfVxuXG4gIHJldHVybiBpc1JldHJ5YWJsZUJ5VHJhaXQoZXJyb3IpIHx8IGlzQ2xvY2tTa2V3RXJyb3IoZXJyb3IpIHx8IGlzVGhyb3R0bGluZ0Vycm9yKGVycm9yKSB8fCBpc1RyYW5zaWVudEVycm9yKGVycm9yKTtcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-retry/dist/es/retryDecider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-retry/dist/es/retryMiddleware.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-retry/dist/es/retryMiddleware.js ***! \***************************************************************************/ /*! exports provided: retryMiddleware, retryMiddlewareOptions, getRetryPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"retryMiddleware\", function() { return retryMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"retryMiddlewareOptions\", function() { return retryMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRetryPlugin\", function() { return getRetryPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar retryMiddleware = function (options) { return function (next, context) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n if ((_a = options === null || options === void 0 ? void 0 : options.retryStrategy) === null || _a === void 0 ? void 0 : _a.mode)\n context.userAgent = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])((context.userAgent || []), [[\"cfg/retry-mode\", options.retryStrategy.mode]]);\n return [2 /*return*/, options.retryStrategy.retry(next, args)];\n });\n}); }; }; };\nvar retryMiddlewareOptions = {\n name: \"retryMiddleware\",\n tags: [\"RETRY\"],\n step: \"finalizeRequest\",\n priority: \"high\",\n override: true,\n};\nvar getRetryPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(retryMiddleware(options), retryMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmV0cnlNaWRkbGV3YXJlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3JldHJ5TWlkZGxld2FyZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBYUEsTUFBTSxDQUFDLElBQU0sZUFBZSxHQUFHLFVBQUMsT0FBNEIsSUFBSyxPQUFBLFVBQy9ELElBQWtDLEVBQ2xDLE9BQWdDLElBQ0MsT0FBQSxVQUNqQyxJQUFtQzs7O1FBRW5DLFVBQUksT0FBTyxhQUFQLE9BQU8sdUJBQVAsT0FBTyxDQUFFLGFBQWEsMENBQUUsSUFBSTtZQUM5QixPQUFPLENBQUMsU0FBUyxZQUFPLENBQUMsT0FBTyxDQUFDLFNBQVMsSUFBSSxFQUFFLENBQUMsR0FBRSxDQUFDLGdCQUFnQixFQUFFLE9BQU8sQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEVBQUMsQ0FBQztRQUNyRyxzQkFBTyxPQUFPLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxJQUFJLEVBQUUsSUFBSSxDQUFDLEVBQUM7O0tBQ2hELEVBTmtDLENBTWxDLEVBVGdFLENBU2hFLENBQUM7QUFFRixNQUFNLENBQUMsSUFBTSxzQkFBc0IsR0FBcUQ7SUFDdEYsSUFBSSxFQUFFLGlCQUFpQjtJQUN2QixJQUFJLEVBQUUsQ0FBQyxPQUFPLENBQUM7SUFDZixJQUFJLEVBQUUsaUJBQWlCO0lBQ3ZCLFFBQVEsRUFBRSxNQUFNO0lBQ2hCLFFBQVEsRUFBRSxJQUFJO0NBQ2YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLGNBQWMsR0FBRyxVQUFDLE9BQTRCLElBQTBCLE9BQUEsQ0FBQztJQUNwRixZQUFZLEVBQUUsVUFBQyxXQUFXO1FBQ3hCLFdBQVcsQ0FBQyxHQUFHLENBQUMsZUFBZSxDQUFDLE9BQU8sQ0FBQyxFQUFFLHNCQUFzQixDQUFDLENBQUM7SUFDcEUsQ0FBQztDQUNGLENBQUMsRUFKbUYsQ0FJbkYsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEFic29sdXRlTG9jYXRpb24sXG4gIEZpbmFsaXplSGFuZGxlcixcbiAgRmluYWxpemVIYW5kbGVyQXJndW1lbnRzLFxuICBGaW5hbGl6ZUhhbmRsZXJPdXRwdXQsXG4gIEZpbmFsaXplUmVxdWVzdEhhbmRsZXJPcHRpb25zLFxuICBIYW5kbGVyRXhlY3V0aW9uQ29udGV4dCxcbiAgTWV0YWRhdGFCZWFyZXIsXG4gIFBsdWdnYWJsZSxcbn0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5cbmltcG9ydCB7IFJldHJ5UmVzb2x2ZWRDb25maWcgfSBmcm9tIFwiLi9jb25maWd1cmF0aW9uc1wiO1xuXG5leHBvcnQgY29uc3QgcmV0cnlNaWRkbGV3YXJlID0gKG9wdGlvbnM6IFJldHJ5UmVzb2x2ZWRDb25maWcpID0+IDxPdXRwdXQgZXh0ZW5kcyBNZXRhZGF0YUJlYXJlciA9IE1ldGFkYXRhQmVhcmVyPihcbiAgbmV4dDogRmluYWxpemVIYW5kbGVyPGFueSwgT3V0cHV0PixcbiAgY29udGV4dDogSGFuZGxlckV4ZWN1dGlvbkNvbnRleHRcbik6IEZpbmFsaXplSGFuZGxlcjxhbnksIE91dHB1dD4gPT4gYXN5bmMgKFxuICBhcmdzOiBGaW5hbGl6ZUhhbmRsZXJBcmd1bWVudHM8YW55PlxuKTogUHJvbWlzZTxGaW5hbGl6ZUhhbmRsZXJPdXRwdXQ8T3V0cHV0Pj4gPT4ge1xuICBpZiAob3B0aW9ucz8ucmV0cnlTdHJhdGVneT8ubW9kZSlcbiAgICBjb250ZXh0LnVzZXJBZ2VudCA9IFsuLi4oY29udGV4dC51c2VyQWdlbnQgfHwgW10pLCBbXCJjZmcvcmV0cnktbW9kZVwiLCBvcHRpb25zLnJldHJ5U3RyYXRlZ3kubW9kZV1dO1xuICByZXR1cm4gb3B0aW9ucy5yZXRyeVN0cmF0ZWd5LnJldHJ5KG5leHQsIGFyZ3MpO1xufTtcblxuZXhwb3J0IGNvbnN0IHJldHJ5TWlkZGxld2FyZU9wdGlvbnM6IEZpbmFsaXplUmVxdWVzdEhhbmRsZXJPcHRpb25zICYgQWJzb2x1dGVMb2NhdGlvbiA9IHtcbiAgbmFtZTogXCJyZXRyeU1pZGRsZXdhcmVcIixcbiAgdGFnczogW1wiUkVUUllcIl0sXG4gIHN0ZXA6IFwiZmluYWxpemVSZXF1ZXN0XCIsXG4gIHByaW9yaXR5OiBcImhpZ2hcIixcbiAgb3ZlcnJpZGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgZ2V0UmV0cnlQbHVnaW4gPSAob3B0aW9uczogUmV0cnlSZXNvbHZlZENvbmZpZyk6IFBsdWdnYWJsZTxhbnksIGFueT4gPT4gKHtcbiAgYXBwbHlUb1N0YWNrOiAoY2xpZW50U3RhY2spID0+IHtcbiAgICBjbGllbnRTdGFjay5hZGQocmV0cnlNaWRkbGV3YXJlKG9wdGlvbnMpLCByZXRyeU1pZGRsZXdhcmVPcHRpb25zKTtcbiAgfSxcbn0pO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-retry/dist/es/retryMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/index.js ***! \******************************************************************/ /*! exports provided: validateBucketNameMiddleware, validateBucketNameMiddlewareOptions, getValidateBucketNamePlugin, useRegionalEndpointMiddleware, useRegionalEndpointMiddlewareOptions, getUseRegionalEndpointPlugin, throw200ExceptionsMiddleware, throw200ExceptionsMiddlewareOptions, getThrow200ExceptionsPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_bucket_name__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate-bucket-name */ \"./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/validate-bucket-name.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateBucketNameMiddleware\", function() { return _validate_bucket_name__WEBPACK_IMPORTED_MODULE_0__[\"validateBucketNameMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateBucketNameMiddlewareOptions\", function() { return _validate_bucket_name__WEBPACK_IMPORTED_MODULE_0__[\"validateBucketNameMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getValidateBucketNamePlugin\", function() { return _validate_bucket_name__WEBPACK_IMPORTED_MODULE_0__[\"getValidateBucketNamePlugin\"]; });\n\n/* harmony import */ var _use_regional_endpoint__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./use-regional-endpoint */ \"./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/use-regional-endpoint.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"useRegionalEndpointMiddleware\", function() { return _use_regional_endpoint__WEBPACK_IMPORTED_MODULE_1__[\"useRegionalEndpointMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"useRegionalEndpointMiddlewareOptions\", function() { return _use_regional_endpoint__WEBPACK_IMPORTED_MODULE_1__[\"useRegionalEndpointMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getUseRegionalEndpointPlugin\", function() { return _use_regional_endpoint__WEBPACK_IMPORTED_MODULE_1__[\"getUseRegionalEndpointPlugin\"]; });\n\n/* harmony import */ var _throw_200_exceptions__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./throw-200-exceptions */ \"./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/throw-200-exceptions.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"throw200ExceptionsMiddleware\", function() { return _throw_200_exceptions__WEBPACK_IMPORTED_MODULE_2__[\"throw200ExceptionsMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"throw200ExceptionsMiddlewareOptions\", function() { return _throw_200_exceptions__WEBPACK_IMPORTED_MODULE_2__[\"throw200ExceptionsMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getThrow200ExceptionsPlugin\", function() { return _throw_200_exceptions__WEBPACK_IMPORTED_MODULE_2__[\"getThrow200ExceptionsPlugin\"]; });\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsd0JBQXdCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLi92YWxpZGF0ZS1idWNrZXQtbmFtZVwiO1xuZXhwb3J0ICogZnJvbSBcIi4vdXNlLXJlZ2lvbmFsLWVuZHBvaW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi90aHJvdy0yMDAtZXhjZXB0aW9uc1wiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/throw-200-exceptions.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/throw-200-exceptions.js ***! \*********************************************************************************/ /*! exports provided: throw200ExceptionsMiddleware, throw200ExceptionsMiddlewareOptions, getThrow200ExceptionsPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"throw200ExceptionsMiddleware\", function() { return throw200ExceptionsMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"throw200ExceptionsMiddlewareOptions\", function() { return throw200ExceptionsMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getThrow200ExceptionsPlugin\", function() { return getThrow200ExceptionsPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\n/**\n * In case of an internal error/terminated connection, S3 operations may return 200 errors. CopyObject, UploadPartCopy,\n * CompleteMultipartUpload may return empty payload or payload with only xml Preamble.\n * @internal\n */\nvar throw200ExceptionsMiddleware = function (config) { return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var result, response, statusCode, body, bodyBytes, bodyString, err;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, next(args)];\n case 1:\n result = _a.sent();\n response = result.response;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpResponse\"].isInstance(response))\n return [2 /*return*/, result];\n statusCode = response.statusCode, body = response.body;\n if (statusCode < 200 && statusCode >= 300)\n return [2 /*return*/, result];\n return [4 /*yield*/, collectBody(body, config)];\n case 2:\n bodyBytes = _a.sent();\n return [4 /*yield*/, collectBodyString(bodyBytes, config)];\n case 3:\n bodyString = _a.sent();\n if (bodyBytes.length === 0) {\n err = new Error(\"S3 aborted request\");\n err.name = \"InternalError\";\n throw err;\n }\n if (bodyString && bodyString.match(\"\")) {\n // Set the error code to 4XX so that error deserializer can parse them\n response.statusCode = 400;\n }\n // Body stream is consumed and paused at this point. So replace the response.body to the collected bytes.\n // So that the deserializer can consume the body as normal.\n response.body = bodyBytes;\n return [2 /*return*/, result];\n }\n });\n}); }; }; };\n// Collect low-level response body stream to Uint8Array.\nvar collectBody = function (streamBody, context) {\n if (streamBody === void 0) { streamBody = new Uint8Array(); }\n if (streamBody instanceof Uint8Array) {\n return Promise.resolve(streamBody);\n }\n return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());\n};\n// Encode Uint8Array data into string with utf-8.\nvar collectBodyString = function (streamBody, context) {\n return collectBody(streamBody, context).then(function (body) { return context.utf8Encoder(body); });\n};\n/**\n * @internal\n */\nvar throw200ExceptionsMiddlewareOptions = {\n relation: \"after\",\n toMiddleware: \"deserializerMiddleware\",\n tags: [\"THROW_200_EXCEPTIONS\", \"S3\"],\n name: \"throw200ExceptionsMiddleware\",\n override: true,\n};\n/**\n *\n * @internal\n */\nvar getThrow200ExceptionsPlugin = function (config) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(throw200ExceptionsMiddleware(config), throw200ExceptionsMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGhyb3ctMjAwLWV4Y2VwdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdGhyb3ctMjAwLWV4Y2VwdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQVF0RDs7OztHQUlHO0FBQ0gsTUFBTSxDQUFDLElBQU0sNEJBQTRCLEdBQUcsVUFBQyxNQUEwQixJQUFzQyxPQUFBLFVBQzNHLElBQUksSUFDRCxPQUFBLFVBQU8sSUFBSTs7OztvQkFDQyxxQkFBTSxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUE7O2dCQUF6QixNQUFNLEdBQUcsU0FBZ0I7Z0JBQ3ZCLFFBQVEsR0FBSyxNQUFNLFNBQVgsQ0FBWTtnQkFDNUIsSUFBSSxDQUFDLFlBQVksQ0FBQyxVQUFVLENBQUMsUUFBUSxDQUFDO29CQUFFLHNCQUFPLE1BQU0sRUFBQztnQkFDOUMsVUFBVSxHQUFXLFFBQVEsV0FBbkIsRUFBRSxJQUFJLEdBQUssUUFBUSxLQUFiLENBQWM7Z0JBQ3RDLElBQUksVUFBVSxHQUFHLEdBQUcsSUFBSSxVQUFVLElBQUksR0FBRztvQkFBRSxzQkFBTyxNQUFNLEVBQUM7Z0JBR3ZDLHFCQUFNLFdBQVcsQ0FBQyxJQUFJLEVBQUUsTUFBTSxDQUFDLEVBQUE7O2dCQUEzQyxTQUFTLEdBQUcsU0FBK0I7Z0JBQzlCLHFCQUFNLGlCQUFpQixDQUFDLFNBQVMsRUFBRSxNQUFNLENBQUMsRUFBQTs7Z0JBQXZELFVBQVUsR0FBRyxTQUEwQztnQkFDN0QsSUFBSSxTQUFTLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRTtvQkFDcEIsR0FBRyxHQUFHLElBQUksS0FBSyxDQUFDLG9CQUFvQixDQUFDLENBQUM7b0JBQzVDLEdBQUcsQ0FBQyxJQUFJLEdBQUcsZUFBZSxDQUFDO29CQUMzQixNQUFNLEdBQUcsQ0FBQztpQkFDWDtnQkFDRCxJQUFJLFVBQVUsSUFBSSxVQUFVLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxFQUFFO29CQUM3QyxzRUFBc0U7b0JBQ3RFLFFBQVEsQ0FBQyxVQUFVLEdBQUcsR0FBRyxDQUFDO2lCQUMzQjtnQkFFRCx5R0FBeUc7Z0JBQ3pHLDJEQUEyRDtnQkFDM0QsUUFBUSxDQUFDLElBQUksR0FBRyxTQUFTLENBQUM7Z0JBQzFCLHNCQUFPLE1BQU0sRUFBQzs7O0tBQ2YsRUF4QkksQ0F3QkosRUExQjRHLENBMEI1RyxDQUFDO0FBRUYsd0RBQXdEO0FBQ3hELElBQU0sV0FBVyxHQUFHLFVBQUMsVUFBa0MsRUFBRSxPQUEyQjtJQUEvRCwyQkFBQSxFQUFBLGlCQUFzQixVQUFVLEVBQUU7SUFDckQsSUFBSSxVQUFVLFlBQVksVUFBVSxFQUFFO1FBQ3BDLE9BQU8sT0FBTyxDQUFDLE9BQU8sQ0FBQyxVQUFVLENBQUMsQ0FBQztLQUNwQztJQUNELE9BQU8sT0FBTyxDQUFDLGVBQWUsQ0FBQyxVQUFVLENBQUMsSUFBSSxPQUFPLENBQUMsT0FBTyxDQUFDLElBQUksVUFBVSxFQUFFLENBQUMsQ0FBQztBQUNsRixDQUFDLENBQUM7QUFFRixpREFBaUQ7QUFDakQsSUFBTSxpQkFBaUIsR0FBRyxVQUFDLFVBQWUsRUFBRSxPQUEyQjtJQUNyRSxPQUFBLFdBQVcsQ0FBQyxVQUFVLEVBQUUsT0FBTyxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQUMsSUFBSSxJQUFLLE9BQUEsT0FBTyxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsRUFBekIsQ0FBeUIsQ0FBQztBQUExRSxDQUEwRSxDQUFDO0FBRTdFOztHQUVHO0FBQ0gsTUFBTSxDQUFDLElBQU0sbUNBQW1DLEdBQThCO0lBQzVFLFFBQVEsRUFBRSxPQUFPO0lBQ2pCLFlBQVksRUFBRSx3QkFBd0I7SUFDdEMsSUFBSSxFQUFFLENBQUMsc0JBQXNCLEVBQUUsSUFBSSxDQUFDO0lBQ3BDLElBQUksRUFBRSw4QkFBOEI7SUFDcEMsUUFBUSxFQUFFLElBQUk7Q0FDZixDQUFDO0FBRUY7OztHQUdHO0FBQ0gsTUFBTSxDQUFDLElBQU0sMkJBQTJCLEdBQUcsVUFBQyxNQUEwQixJQUEwQixPQUFBLENBQUM7SUFDL0YsWUFBWSxFQUFFLFVBQUMsV0FBVztRQUN4QixXQUFXLENBQUMsYUFBYSxDQUFDLDRCQUE0QixDQUFDLE1BQU0sQ0FBQyxFQUFFLG1DQUFtQyxDQUFDLENBQUM7SUFDdkcsQ0FBQztDQUNGLENBQUMsRUFKOEYsQ0FJOUYsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBSZXNwb25zZSB9IGZyb20gXCJAYXdzLXNkay9wcm90b2NvbC1odHRwXCI7XG5pbXBvcnQgeyBEZXNlcmlhbGl6ZU1pZGRsZXdhcmUsIEVuY29kZXIsIFBsdWdnYWJsZSwgUmVsYXRpdmVNaWRkbGV3YXJlT3B0aW9ucywgU3RyZWFtQ29sbGVjdG9yIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5cbnR5cGUgUHJldmlvdXNseVJlc29sdmVkID0ge1xuICBzdHJlYW1Db2xsZWN0b3I6IFN0cmVhbUNvbGxlY3RvcjtcbiAgdXRmOEVuY29kZXI6IEVuY29kZXI7XG59O1xuXG4vKipcbiAqIEluIGNhc2Ugb2YgYW4gaW50ZXJuYWwgZXJyb3IvdGVybWluYXRlZCBjb25uZWN0aW9uLCBTMyBvcGVyYXRpb25zIG1heSByZXR1cm4gMjAwIGVycm9ycy4gQ29weU9iamVjdCwgVXBsb2FkUGFydENvcHksXG4gKiBDb21wbGV0ZU11bHRpcGFydFVwbG9hZCBtYXkgcmV0dXJuIGVtcHR5IHBheWxvYWQgb3IgcGF5bG9hZCB3aXRoIG9ubHkgeG1sIFByZWFtYmxlLlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCB0aHJvdzIwMEV4Y2VwdGlvbnNNaWRkbGV3YXJlID0gKGNvbmZpZzogUHJldmlvdXNseVJlc29sdmVkKTogRGVzZXJpYWxpemVNaWRkbGV3YXJlPGFueSwgYW55PiA9PiAoXG4gIG5leHRcbikgPT4gYXN5bmMgKGFyZ3MpID0+IHtcbiAgY29uc3QgcmVzdWx0ID0gYXdhaXQgbmV4dChhcmdzKTtcbiAgY29uc3QgeyByZXNwb25zZSB9ID0gcmVzdWx0O1xuICBpZiAoIUh0dHBSZXNwb25zZS5pc0luc3RhbmNlKHJlc3BvbnNlKSkgcmV0dXJuIHJlc3VsdDtcbiAgY29uc3QgeyBzdGF0dXNDb2RlLCBib2R5IH0gPSByZXNwb25zZTtcbiAgaWYgKHN0YXR1c0NvZGUgPCAyMDAgJiYgc3RhdHVzQ29kZSA+PSAzMDApIHJldHVybiByZXN1bHQ7XG5cbiAgLy8gVGhyb3cgMlhYIHJlc3BvbnNlIHRoYXQncyBlaXRoZXIgYW4gZXJyb3Igb3IgaGFzIGVtcHR5IGJvZHkuXG4gIGNvbnN0IGJvZHlCeXRlcyA9IGF3YWl0IGNvbGxlY3RCb2R5KGJvZHksIGNvbmZpZyk7XG4gIGNvbnN0IGJvZHlTdHJpbmcgPSBhd2FpdCBjb2xsZWN0Qm9keVN0cmluZyhib2R5Qnl0ZXMsIGNvbmZpZyk7XG4gIGlmIChib2R5Qnl0ZXMubGVuZ3RoID09PSAwKSB7XG4gICAgY29uc3QgZXJyID0gbmV3IEVycm9yKFwiUzMgYWJvcnRlZCByZXF1ZXN0XCIpO1xuICAgIGVyci5uYW1lID0gXCJJbnRlcm5hbEVycm9yXCI7XG4gICAgdGhyb3cgZXJyO1xuICB9XG4gIGlmIChib2R5U3RyaW5nICYmIGJvZHlTdHJpbmcubWF0Y2goXCI8RXJyb3I+XCIpKSB7XG4gICAgLy8gU2V0IHRoZSBlcnJvciBjb2RlIHRvIDRYWCBzbyB0aGF0IGVycm9yIGRlc2VyaWFsaXplciBjYW4gcGFyc2UgdGhlbVxuICAgIHJlc3BvbnNlLnN0YXR1c0NvZGUgPSA0MDA7XG4gIH1cblxuICAvLyBCb2R5IHN0cmVhbSBpcyBjb25zdW1lZCBhbmQgcGF1c2VkIGF0IHRoaXMgcG9pbnQuIFNvIHJlcGxhY2UgdGhlIHJlc3BvbnNlLmJvZHkgdG8gdGhlIGNvbGxlY3RlZCBieXRlcy5cbiAgLy8gU28gdGhhdCB0aGUgZGVzZXJpYWxpemVyIGNhbiBjb25zdW1lIHRoZSBib2R5IGFzIG5vcm1hbC5cbiAgcmVzcG9uc2UuYm9keSA9IGJvZHlCeXRlcztcbiAgcmV0dXJuIHJlc3VsdDtcbn07XG5cbi8vIENvbGxlY3QgbG93LWxldmVsIHJlc3BvbnNlIGJvZHkgc3RyZWFtIHRvIFVpbnQ4QXJyYXkuXG5jb25zdCBjb2xsZWN0Qm9keSA9IChzdHJlYW1Cb2R5OiBhbnkgPSBuZXcgVWludDhBcnJheSgpLCBjb250ZXh0OiBQcmV2aW91c2x5UmVzb2x2ZWQpOiBQcm9taXNlPFVpbnQ4QXJyYXk+ID0+IHtcbiAgaWYgKHN0cmVhbUJvZHkgaW5zdGFuY2VvZiBVaW50OEFycmF5KSB7XG4gICAgcmV0dXJuIFByb21pc2UucmVzb2x2ZShzdHJlYW1Cb2R5KTtcbiAgfVxuICByZXR1cm4gY29udGV4dC5zdHJlYW1Db2xsZWN0b3Ioc3RyZWFtQm9keSkgfHwgUHJvbWlzZS5yZXNvbHZlKG5ldyBVaW50OEFycmF5KCkpO1xufTtcblxuLy8gRW5jb2RlIFVpbnQ4QXJyYXkgZGF0YSBpbnRvIHN0cmluZyB3aXRoIHV0Zi04LlxuY29uc3QgY29sbGVjdEJvZHlTdHJpbmcgPSAoc3RyZWFtQm9keTogYW55LCBjb250ZXh0OiBQcmV2aW91c2x5UmVzb2x2ZWQpOiBQcm9taXNlPHN0cmluZz4gPT5cbiAgY29sbGVjdEJvZHkoc3RyZWFtQm9keSwgY29udGV4dCkudGhlbigoYm9keSkgPT4gY29udGV4dC51dGY4RW5jb2Rlcihib2R5KSk7XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCB0aHJvdzIwMEV4Y2VwdGlvbnNNaWRkbGV3YXJlT3B0aW9uczogUmVsYXRpdmVNaWRkbGV3YXJlT3B0aW9ucyA9IHtcbiAgcmVsYXRpb246IFwiYWZ0ZXJcIixcbiAgdG9NaWRkbGV3YXJlOiBcImRlc2VyaWFsaXplck1pZGRsZXdhcmVcIixcbiAgdGFnczogW1wiVEhST1dfMjAwX0VYQ0VQVElPTlNcIiwgXCJTM1wiXSxcbiAgbmFtZTogXCJ0aHJvdzIwMEV4Y2VwdGlvbnNNaWRkbGV3YXJlXCIsXG4gIG92ZXJyaWRlOiB0cnVlLFxufTtcblxuLyoqXG4gKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCBnZXRUaHJvdzIwMEV4Y2VwdGlvbnNQbHVnaW4gPSAoY29uZmlnOiBQcmV2aW91c2x5UmVzb2x2ZWQpOiBQbHVnZ2FibGU8YW55LCBhbnk+ID0+ICh7XG4gIGFwcGx5VG9TdGFjazogKGNsaWVudFN0YWNrKSA9PiB7XG4gICAgY2xpZW50U3RhY2suYWRkUmVsYXRpdmVUbyh0aHJvdzIwMEV4Y2VwdGlvbnNNaWRkbGV3YXJlKGNvbmZpZyksIHRocm93MjAwRXhjZXB0aW9uc01pZGRsZXdhcmVPcHRpb25zKTtcbiAgfSxcbn0pO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/throw-200-exceptions.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/use-regional-endpoint.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/use-regional-endpoint.js ***! \**********************************************************************************/ /*! exports provided: useRegionalEndpointMiddleware, useRegionalEndpointMiddlewareOptions, getUseRegionalEndpointPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"useRegionalEndpointMiddleware\", function() { return useRegionalEndpointMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"useRegionalEndpointMiddlewareOptions\", function() { return useRegionalEndpointMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUseRegionalEndpointPlugin\", function() { return getUseRegionalEndpointPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nvar useRegionalEndpointMiddleware = function (config) { return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request) || config.isCustomEndpoint)\n return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args))];\n if (!(request.hostname === \"s3.amazonaws.com\")) return [3 /*break*/, 1];\n request.hostname = \"s3.us-east-1.amazonaws.com\";\n return [3 /*break*/, 3];\n case 1:\n _a = \"aws-global\";\n return [4 /*yield*/, config.region()];\n case 2:\n if (_a === (_b.sent())) {\n request.hostname = \"s3.amazonaws.com\";\n }\n _b.label = 3;\n case 3: return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args))];\n }\n });\n}); }; }; };\n/**\n * @internal\n */\nvar useRegionalEndpointMiddlewareOptions = {\n step: \"build\",\n tags: [\"USE_REGIONAL_ENDPOINT\", \"S3\"],\n name: \"useRegionalEndpointMiddleware\",\n override: true,\n};\n/**\n * @internal\n */\nvar getUseRegionalEndpointPlugin = function (config) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(useRegionalEndpointMiddleware(config), useRegionalEndpointMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlLXJlZ2lvbmFsLWVuZHBvaW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3VzZS1yZWdpb25hbC1lbmRwb2ludC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBaUJyRDs7R0FFRztBQUNILE1BQU0sQ0FBQyxJQUFNLDZCQUE2QixHQUFHLFVBQUMsTUFBMEIsSUFBZ0MsT0FBQSxVQUd0RyxJQUErQixJQUNELE9BQUEsVUFBTyxJQUFnQzs7Ozs7Z0JBQzdELE9BQU8sR0FBSyxJQUFJLFFBQVQsQ0FBVTtnQkFDekIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDLElBQUksTUFBTSxDQUFDLGdCQUFnQjtvQkFBRSxzQkFBTyxJQUFJLGNBQU0sSUFBSSxFQUFHLEVBQUM7cUJBQ3RGLENBQUEsT0FBTyxDQUFDLFFBQVEsS0FBSyxrQkFBa0IsQ0FBQSxFQUF2Qyx3QkFBdUM7Z0JBQ3pDLE9BQU8sQ0FBQyxRQUFRLEdBQUcsNEJBQTRCLENBQUM7OztnQkFDdkMsS0FBQSxZQUFZLENBQUE7Z0JBQU0scUJBQU0sTUFBTSxDQUFDLE1BQU0sRUFBRSxFQUFBOztnQkFBM0MsSUFBSSxPQUFpQixDQUFDLFNBQXFCLENBQUMsRUFBRTtvQkFDbkQsT0FBTyxDQUFDLFFBQVEsR0FBRyxrQkFBa0IsQ0FBQztpQkFDdkM7O29CQUNELHNCQUFPLElBQUksY0FBTSxJQUFJLEVBQUcsRUFBQzs7O0tBQzFCLEVBVCtCLENBUy9CLEVBYnVHLENBYXZHLENBQUM7QUFFRjs7R0FFRztBQUNILE1BQU0sQ0FBQyxJQUFNLG9DQUFvQyxHQUF3QjtJQUN2RSxJQUFJLEVBQUUsT0FBTztJQUNiLElBQUksRUFBRSxDQUFDLHVCQUF1QixFQUFFLElBQUksQ0FBQztJQUNyQyxJQUFJLEVBQUUsK0JBQStCO0lBQ3JDLFFBQVEsRUFBRSxJQUFJO0NBQ2YsQ0FBQztBQUVGOztHQUVHO0FBQ0gsTUFBTSxDQUFDLElBQU0sNEJBQTRCLEdBQUcsVUFBQyxNQUEwQixJQUEwQixPQUFBLENBQUM7SUFDaEcsWUFBWSxFQUFFLFVBQUMsV0FBVztRQUN4QixXQUFXLENBQUMsR0FBRyxDQUFDLDZCQUE2QixDQUFDLE1BQU0sQ0FBQyxFQUFFLG9DQUFvQyxDQUFDLENBQUM7SUFDL0YsQ0FBQztDQUNGLENBQUMsRUFKK0YsQ0FJL0YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBSZXF1ZXN0IH0gZnJvbSBcIkBhd3Mtc2RrL3Byb3RvY29sLWh0dHBcIjtcbmltcG9ydCB7XG4gIEJ1aWxkSGFuZGxlcixcbiAgQnVpbGRIYW5kbGVyQXJndW1lbnRzLFxuICBCdWlsZEhhbmRsZXJPcHRpb25zLFxuICBCdWlsZEhhbmRsZXJPdXRwdXQsXG4gIEJ1aWxkTWlkZGxld2FyZSxcbiAgTWV0YWRhdGFCZWFyZXIsXG4gIFBsdWdnYWJsZSxcbiAgUHJvdmlkZXIsXG59IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG50eXBlIFByZXZpb3VzbHlSZXNvbHZlZCA9IHtcbiAgcmVnaW9uOiBQcm92aWRlcjxzdHJpbmc+O1xuICBpc0N1c3RvbUVuZHBvaW50OiBib29sZWFuO1xufTtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IHVzZVJlZ2lvbmFsRW5kcG9pbnRNaWRkbGV3YXJlID0gKGNvbmZpZzogUHJldmlvdXNseVJlc29sdmVkKTogQnVpbGRNaWRkbGV3YXJlPGFueSwgYW55PiA9PiA8XG4gIE91dHB1dCBleHRlbmRzIE1ldGFkYXRhQmVhcmVyXG4+KFxuICBuZXh0OiBCdWlsZEhhbmRsZXI8YW55LCBPdXRwdXQ+XG4pOiBCdWlsZEhhbmRsZXI8YW55LCBPdXRwdXQ+ID0+IGFzeW5jIChhcmdzOiBCdWlsZEhhbmRsZXJBcmd1bWVudHM8YW55Pik6IFByb21pc2U8QnVpbGRIYW5kbGVyT3V0cHV0PE91dHB1dD4+ID0+IHtcbiAgY29uc3QgeyByZXF1ZXN0IH0gPSBhcmdzO1xuICBpZiAoIUh0dHBSZXF1ZXN0LmlzSW5zdGFuY2UocmVxdWVzdCkgfHwgY29uZmlnLmlzQ3VzdG9tRW5kcG9pbnQpIHJldHVybiBuZXh0KHsgLi4uYXJncyB9KTtcbiAgaWYgKHJlcXVlc3QuaG9zdG5hbWUgPT09IFwiczMuYW1hem9uYXdzLmNvbVwiKSB7XG4gICAgcmVxdWVzdC5ob3N0bmFtZSA9IFwiczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb21cIjtcbiAgfSBlbHNlIGlmIChcImF3cy1nbG9iYWxcIiA9PT0gKGF3YWl0IGNvbmZpZy5yZWdpb24oKSkpIHtcbiAgICByZXF1ZXN0Lmhvc3RuYW1lID0gXCJzMy5hbWF6b25hd3MuY29tXCI7XG4gIH1cbiAgcmV0dXJuIG5leHQoeyAuLi5hcmdzIH0pO1xufTtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGNvbnN0IHVzZVJlZ2lvbmFsRW5kcG9pbnRNaWRkbGV3YXJlT3B0aW9uczogQnVpbGRIYW5kbGVyT3B0aW9ucyA9IHtcbiAgc3RlcDogXCJidWlsZFwiLFxuICB0YWdzOiBbXCJVU0VfUkVHSU9OQUxfRU5EUE9JTlRcIiwgXCJTM1wiXSxcbiAgbmFtZTogXCJ1c2VSZWdpb25hbEVuZHBvaW50TWlkZGxld2FyZVwiLFxuICBvdmVycmlkZTogdHJ1ZSxcbn07XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCBnZXRVc2VSZWdpb25hbEVuZHBvaW50UGx1Z2luID0gKGNvbmZpZzogUHJldmlvdXNseVJlc29sdmVkKTogUGx1Z2dhYmxlPGFueSwgYW55PiA9PiAoe1xuICBhcHBseVRvU3RhY2s6IChjbGllbnRTdGFjaykgPT4ge1xuICAgIGNsaWVudFN0YWNrLmFkZCh1c2VSZWdpb25hbEVuZHBvaW50TWlkZGxld2FyZShjb25maWcpLCB1c2VSZWdpb25hbEVuZHBvaW50TWlkZGxld2FyZU9wdGlvbnMpO1xuICB9LFxufSk7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/use-regional-endpoint.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/validate-bucket-name.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/validate-bucket-name.js ***! \*********************************************************************************/ /*! exports provided: validateBucketNameMiddleware, validateBucketNameMiddlewareOptions, getValidateBucketNamePlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateBucketNameMiddleware\", function() { return validateBucketNameMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateBucketNameMiddlewareOptions\", function() { return validateBucketNameMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getValidateBucketNamePlugin\", function() { return getValidateBucketNamePlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_arn_parser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-arn-parser */ \"./node_modules/@aws-sdk/util-arn-parser/dist/es/index.js\");\n\n\n/**\n * @internal\n */\nfunction validateBucketNameMiddleware() {\n var _this = this;\n return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var Bucket, err;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n Bucket = args.input.Bucket;\n if (typeof Bucket === \"string\" && !Object(_aws_sdk_util_arn_parser__WEBPACK_IMPORTED_MODULE_1__[\"validate\"])(Bucket) && Bucket.indexOf(\"/\") >= 0) {\n err = new Error(\"Bucket name shouldn't contain '/', received '\" + Bucket + \"'\");\n err.name = \"InvalidBucketName\";\n throw err;\n }\n return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args))];\n });\n }); }; };\n}\n/**\n * @internal\n */\nvar validateBucketNameMiddlewareOptions = {\n step: \"initialize\",\n tags: [\"VALIDATE_BUCKET_NAME\"],\n name: \"validateBucketNameMiddleware\",\n override: true,\n};\n/**\n * @internal\n */\n// eslint-disable-next-line @typescript-eslint/no-unused-vars\nvar getValidateBucketNamePlugin = function (unused) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(validateBucketNameMiddleware(), validateBucketNameMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsaWRhdGUtYnVja2V0LW5hbWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdmFsaWRhdGUtYnVja2V0LW5hbWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQVNBLE9BQU8sRUFBRSxRQUFRLElBQUksV0FBVyxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFFbkU7O0dBRUc7QUFDSCxNQUFNLFVBQVUsNEJBQTRCO0lBQTVDLGlCQWdCQztJQWZDLE9BQU8sVUFDTCxJQUFvQyxJQUNELE9BQUEsVUFDbkMsSUFBcUM7OztZQUcxQixNQUFNLEdBQ2IsSUFBSSxhQURTLENBQ1I7WUFDVCxJQUFJLE9BQU8sTUFBTSxLQUFLLFFBQVEsSUFBSSxDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQUMsSUFBSSxNQUFNLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsRUFBRTtnQkFDNUUsR0FBRyxHQUFHLElBQUksS0FBSyxDQUFDLGtEQUFnRCxNQUFNLE1BQUcsQ0FBQyxDQUFDO2dCQUNqRixHQUFHLENBQUMsSUFBSSxHQUFHLG1CQUFtQixDQUFDO2dCQUMvQixNQUFNLEdBQUcsQ0FBQzthQUNYO1lBQ0Qsc0JBQU8sSUFBSSxjQUFNLElBQUksRUFBRyxFQUFDOztTQUMxQixFQVpvQyxDQVlwQyxDQUFDO0FBQ0osQ0FBQztBQUVEOztHQUVHO0FBQ0gsTUFBTSxDQUFDLElBQU0sbUNBQW1DLEdBQTZCO0lBQzNFLElBQUksRUFBRSxZQUFZO0lBQ2xCLElBQUksRUFBRSxDQUFDLHNCQUFzQixDQUFDO0lBQzlCLElBQUksRUFBRSw4QkFBOEI7SUFDcEMsUUFBUSxFQUFFLElBQUk7Q0FDZixDQUFDO0FBRUY7O0dBRUc7QUFDSCw2REFBNkQ7QUFDN0QsTUFBTSxDQUFDLElBQU0sMkJBQTJCLEdBQUcsVUFBQyxNQUFXLElBQTBCLE9BQUEsQ0FBQztJQUNoRixZQUFZLEVBQUUsVUFBQyxXQUFXO1FBQ3hCLFdBQVcsQ0FBQyxHQUFHLENBQUMsNEJBQTRCLEVBQUUsRUFBRSxtQ0FBbUMsQ0FBQyxDQUFDO0lBQ3ZGLENBQUM7Q0FDRixDQUFDLEVBSitFLENBSS9FLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBJbml0aWFsaXplSGFuZGxlcixcbiAgSW5pdGlhbGl6ZUhhbmRsZXJBcmd1bWVudHMsXG4gIEluaXRpYWxpemVIYW5kbGVyT3B0aW9ucyxcbiAgSW5pdGlhbGl6ZUhhbmRsZXJPdXRwdXQsXG4gIEluaXRpYWxpemVNaWRkbGV3YXJlLFxuICBNZXRhZGF0YUJlYXJlcixcbiAgUGx1Z2dhYmxlLFxufSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IHZhbGlkYXRlIGFzIHZhbGlkYXRlQXJuIH0gZnJvbSBcIkBhd3Mtc2RrL3V0aWwtYXJuLXBhcnNlclwiO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgZnVuY3Rpb24gdmFsaWRhdGVCdWNrZXROYW1lTWlkZGxld2FyZSgpOiBJbml0aWFsaXplTWlkZGxld2FyZTxhbnksIGFueT4ge1xuICByZXR1cm4gPE91dHB1dCBleHRlbmRzIE1ldGFkYXRhQmVhcmVyPihcbiAgICBuZXh0OiBJbml0aWFsaXplSGFuZGxlcjxhbnksIE91dHB1dD5cbiAgKTogSW5pdGlhbGl6ZUhhbmRsZXI8YW55LCBPdXRwdXQ+ID0+IGFzeW5jIChcbiAgICBhcmdzOiBJbml0aWFsaXplSGFuZGxlckFyZ3VtZW50czxhbnk+XG4gICk6IFByb21pc2U8SW5pdGlhbGl6ZUhhbmRsZXJPdXRwdXQ8T3V0cHV0Pj4gPT4ge1xuICAgIGNvbnN0IHtcbiAgICAgIGlucHV0OiB7IEJ1Y2tldCB9LFxuICAgIH0gPSBhcmdzO1xuICAgIGlmICh0eXBlb2YgQnVja2V0ID09PSBcInN0cmluZ1wiICYmICF2YWxpZGF0ZUFybihCdWNrZXQpICYmIEJ1Y2tldC5pbmRleE9mKFwiL1wiKSA+PSAwKSB7XG4gICAgICBjb25zdCBlcnIgPSBuZXcgRXJyb3IoYEJ1Y2tldCBuYW1lIHNob3VsZG4ndCBjb250YWluICcvJywgcmVjZWl2ZWQgJyR7QnVja2V0fSdgKTtcbiAgICAgIGVyci5uYW1lID0gXCJJbnZhbGlkQnVja2V0TmFtZVwiO1xuICAgICAgdGhyb3cgZXJyO1xuICAgIH1cbiAgICByZXR1cm4gbmV4dCh7IC4uLmFyZ3MgfSk7XG4gIH07XG59XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCB2YWxpZGF0ZUJ1Y2tldE5hbWVNaWRkbGV3YXJlT3B0aW9uczogSW5pdGlhbGl6ZUhhbmRsZXJPcHRpb25zID0ge1xuICBzdGVwOiBcImluaXRpYWxpemVcIixcbiAgdGFnczogW1wiVkFMSURBVEVfQlVDS0VUX05BTUVcIl0sXG4gIG5hbWU6IFwidmFsaWRhdGVCdWNrZXROYW1lTWlkZGxld2FyZVwiLFxuICBvdmVycmlkZTogdHJ1ZSxcbn07XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbi8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbm8tdW51c2VkLXZhcnNcbmV4cG9ydCBjb25zdCBnZXRWYWxpZGF0ZUJ1Y2tldE5hbWVQbHVnaW4gPSAodW51c2VkOiBhbnkpOiBQbHVnZ2FibGU8YW55LCBhbnk+ID0+ICh7XG4gIGFwcGx5VG9TdGFjazogKGNsaWVudFN0YWNrKSA9PiB7XG4gICAgY2xpZW50U3RhY2suYWRkKHZhbGlkYXRlQnVja2V0TmFtZU1pZGRsZXdhcmUoKSwgdmFsaWRhdGVCdWNrZXROYW1lTWlkZGxld2FyZU9wdGlvbnMpO1xuICB9LFxufSk7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-sdk-s3/dist/es/validate-bucket-name.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-serde/dist/es/deserializerMiddleware.js": /*!**********************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-serde/dist/es/deserializerMiddleware.js ***! \**********************************************************************************/ /*! exports provided: deserializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddleware\", function() { return deserializerMiddleware; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar deserializerMiddleware = function (options, deserializer) { return function (next, context) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var response, parsed;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, next(args)];\n case 1:\n response = (_a.sent()).response;\n return [4 /*yield*/, deserializer(response, options)];\n case 2:\n parsed = _a.sent();\n return [2 /*return*/, {\n response: response,\n output: parsed,\n }];\n }\n });\n}); }; }; };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemVyTWlkZGxld2FyZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kZXNlcmlhbGl6ZXJNaWRkbGV3YXJlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFTQSxNQUFNLENBQUMsSUFBTSxzQkFBc0IsR0FBRyxVQUNwQyxPQUFxQixFQUNyQixZQUEwRCxJQUNqQixPQUFBLFVBQ3pDLElBQXVDLEVBQ3ZDLE9BQWdDLElBQ00sT0FBQSxVQUN0QyxJQUF3Qzs7OztvQkFFbkIscUJBQU0sSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFBOztnQkFBN0IsUUFBUSxHQUFLLENBQUEsU0FBZ0IsQ0FBQSxTQUFyQjtnQkFDRCxxQkFBTSxZQUFZLENBQUMsUUFBUSxFQUFFLE9BQU8sQ0FBQyxFQUFBOztnQkFBOUMsTUFBTSxHQUFHLFNBQXFDO2dCQUNwRCxzQkFBTzt3QkFDTCxRQUFRLFVBQUE7d0JBQ1IsTUFBTSxFQUFFLE1BQWdCO3FCQUN6QixFQUFDOzs7S0FDSCxFQVR1QyxDQVN2QyxFQVowQyxDQVkxQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgRGVzZXJpYWxpemVIYW5kbGVyLFxuICBEZXNlcmlhbGl6ZUhhbmRsZXJBcmd1bWVudHMsXG4gIERlc2VyaWFsaXplSGFuZGxlck91dHB1dCxcbiAgRGVzZXJpYWxpemVNaWRkbGV3YXJlLFxuICBIYW5kbGVyRXhlY3V0aW9uQ29udGV4dCxcbiAgUmVzcG9uc2VEZXNlcmlhbGl6ZXIsXG59IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgY29uc3QgZGVzZXJpYWxpemVyTWlkZGxld2FyZSA9IDxJbnB1dCBleHRlbmRzIG9iamVjdCwgT3V0cHV0IGV4dGVuZHMgb2JqZWN0LCBSdW50aW1lVXRpbHMgPSBhbnk+KFxuICBvcHRpb25zOiBSdW50aW1lVXRpbHMsXG4gIGRlc2VyaWFsaXplcjogUmVzcG9uc2VEZXNlcmlhbGl6ZXI8YW55LCBhbnksIFJ1bnRpbWVVdGlscz5cbik6IERlc2VyaWFsaXplTWlkZGxld2FyZTxJbnB1dCwgT3V0cHV0PiA9PiAoXG4gIG5leHQ6IERlc2VyaWFsaXplSGFuZGxlcjxJbnB1dCwgT3V0cHV0PixcbiAgY29udGV4dDogSGFuZGxlckV4ZWN1dGlvbkNvbnRleHRcbik6IERlc2VyaWFsaXplSGFuZGxlcjxJbnB1dCwgT3V0cHV0PiA9PiBhc3luYyAoXG4gIGFyZ3M6IERlc2VyaWFsaXplSGFuZGxlckFyZ3VtZW50czxJbnB1dD5cbik6IFByb21pc2U8RGVzZXJpYWxpemVIYW5kbGVyT3V0cHV0PE91dHB1dD4+ID0+IHtcbiAgY29uc3QgeyByZXNwb25zZSB9ID0gYXdhaXQgbmV4dChhcmdzKTtcbiAgY29uc3QgcGFyc2VkID0gYXdhaXQgZGVzZXJpYWxpemVyKHJlc3BvbnNlLCBvcHRpb25zKTtcbiAgcmV0dXJuIHtcbiAgICByZXNwb25zZSxcbiAgICBvdXRwdXQ6IHBhcnNlZCBhcyBPdXRwdXQsXG4gIH07XG59O1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-serde/dist/es/deserializerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-serde/dist/es/index.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-serde/dist/es/index.js ***! \*****************************************************************/ /*! exports provided: deserializerMiddleware, serializerMiddleware, deserializerMiddlewareOption, serializerMiddlewareOption, getSerdePlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./deserializerMiddleware */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/deserializerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddleware\", function() { return _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"deserializerMiddleware\"]; });\n\n/* harmony import */ var _serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./serializerMiddleware */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/serializerMiddleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddleware\", function() { return _serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"serializerMiddleware\"]; });\n\n/* harmony import */ var _serdePlugin__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./serdePlugin */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/serdePlugin.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddlewareOption\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_2__[\"deserializerMiddlewareOption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddlewareOption\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_2__[\"serializerMiddlewareOption\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSerdePlugin\", function() { return _serdePlugin__WEBPACK_IMPORTED_MODULE_2__[\"getSerdePlugin\"]; });\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsZUFBZSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vZGVzZXJpYWxpemVyTWlkZGxld2FyZVwiO1xuZXhwb3J0ICogZnJvbSBcIi4vc2VyaWFsaXplck1pZGRsZXdhcmVcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3NlcmRlUGx1Z2luXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-serde/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-serde/dist/es/serdePlugin.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-serde/dist/es/serdePlugin.js ***! \***********************************************************************/ /*! exports provided: deserializerMiddlewareOption, serializerMiddlewareOption, getSerdePlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deserializerMiddlewareOption\", function() { return deserializerMiddlewareOption; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddlewareOption\", function() { return serializerMiddlewareOption; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSerdePlugin\", function() { return getSerdePlugin; });\n/* harmony import */ var _deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./deserializerMiddleware */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/deserializerMiddleware.js\");\n/* harmony import */ var _serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./serializerMiddleware */ \"./node_modules/@aws-sdk/middleware-serde/dist/es/serializerMiddleware.js\");\n\n\nvar deserializerMiddlewareOption = {\n name: \"deserializerMiddleware\",\n step: \"deserialize\",\n tags: [\"DESERIALIZER\"],\n override: true,\n};\nvar serializerMiddlewareOption = {\n name: \"serializerMiddleware\",\n step: \"serialize\",\n tags: [\"SERIALIZER\"],\n override: true,\n};\nfunction getSerdePlugin(config, serializer, deserializer) {\n return {\n applyToStack: function (commandStack) {\n commandStack.add(Object(_deserializerMiddleware__WEBPACK_IMPORTED_MODULE_0__[\"deserializerMiddleware\"])(config, deserializer), deserializerMiddlewareOption);\n commandStack.add(Object(_serializerMiddleware__WEBPACK_IMPORTED_MODULE_1__[\"serializerMiddleware\"])(config, serializer), serializerMiddlewareOption);\n },\n };\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyZGVQbHVnaW4uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvc2VyZGVQbHVnaW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBV0EsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDbEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFOUQsTUFBTSxDQUFDLElBQU0sNEJBQTRCLEdBQThCO0lBQ3JFLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsSUFBSSxFQUFFLGFBQWE7SUFDbkIsSUFBSSxFQUFFLENBQUMsY0FBYyxDQUFDO0lBQ3RCLFFBQVEsRUFBRSxJQUFJO0NBQ2YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLDBCQUEwQixHQUE0QjtJQUNqRSxJQUFJLEVBQUUsc0JBQXNCO0lBQzVCLElBQUksRUFBRSxXQUFXO0lBQ2pCLElBQUksRUFBRSxDQUFDLFlBQVksQ0FBQztJQUNwQixRQUFRLEVBQUUsSUFBSTtDQUNmLENBQUM7QUFFRixNQUFNLFVBQVUsY0FBYyxDQUs1QixNQUFvQixFQUNwQixVQUFnRCxFQUNoRCxZQUFpRTtJQUVqRSxPQUFPO1FBQ0wsWUFBWSxFQUFFLFVBQUMsWUFBb0Q7WUFDakUsWUFBWSxDQUFDLEdBQUcsQ0FBQyxzQkFBc0IsQ0FBQyxNQUFNLEVBQUUsWUFBWSxDQUFDLEVBQUUsNEJBQTRCLENBQUMsQ0FBQztZQUM3RixZQUFZLENBQUMsR0FBRyxDQUFDLG9CQUFvQixDQUFDLE1BQU0sRUFBRSxVQUFVLENBQUMsRUFBRSwwQkFBMEIsQ0FBQyxDQUFDO1FBQ3pGLENBQUM7S0FDRixDQUFDO0FBQ0osQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIERlc2VyaWFsaXplSGFuZGxlck9wdGlvbnMsXG4gIEVuZHBvaW50QmVhcmVyLFxuICBNZXRhZGF0YUJlYXJlcixcbiAgTWlkZGxld2FyZVN0YWNrLFxuICBQbHVnZ2FibGUsXG4gIFJlcXVlc3RTZXJpYWxpemVyLFxuICBSZXNwb25zZURlc2VyaWFsaXplcixcbiAgU2VyaWFsaXplSGFuZGxlck9wdGlvbnMsXG59IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBkZXNlcmlhbGl6ZXJNaWRkbGV3YXJlIH0gZnJvbSBcIi4vZGVzZXJpYWxpemVyTWlkZGxld2FyZVwiO1xuaW1wb3J0IHsgc2VyaWFsaXplck1pZGRsZXdhcmUgfSBmcm9tIFwiLi9zZXJpYWxpemVyTWlkZGxld2FyZVwiO1xuXG5leHBvcnQgY29uc3QgZGVzZXJpYWxpemVyTWlkZGxld2FyZU9wdGlvbjogRGVzZXJpYWxpemVIYW5kbGVyT3B0aW9ucyA9IHtcbiAgbmFtZTogXCJkZXNlcmlhbGl6ZXJNaWRkbGV3YXJlXCIsXG4gIHN0ZXA6IFwiZGVzZXJpYWxpemVcIixcbiAgdGFnczogW1wiREVTRVJJQUxJWkVSXCJdLFxuICBvdmVycmlkZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBzZXJpYWxpemVyTWlkZGxld2FyZU9wdGlvbjogU2VyaWFsaXplSGFuZGxlck9wdGlvbnMgPSB7XG4gIG5hbWU6IFwic2VyaWFsaXplck1pZGRsZXdhcmVcIixcbiAgc3RlcDogXCJzZXJpYWxpemVcIixcbiAgdGFnczogW1wiU0VSSUFMSVpFUlwiXSxcbiAgb3ZlcnJpZGU6IHRydWUsXG59O1xuXG5leHBvcnQgZnVuY3Rpb24gZ2V0U2VyZGVQbHVnaW48XG4gIElucHV0VHlwZSBleHRlbmRzIG9iamVjdCxcbiAgU2VyRGVDb250ZXh0IGV4dGVuZHMgRW5kcG9pbnRCZWFyZXIsXG4gIE91dHB1dFR5cGUgZXh0ZW5kcyBNZXRhZGF0YUJlYXJlclxuPihcbiAgY29uZmlnOiBTZXJEZUNvbnRleHQsXG4gIHNlcmlhbGl6ZXI6IFJlcXVlc3RTZXJpYWxpemVyPGFueSwgU2VyRGVDb250ZXh0PixcbiAgZGVzZXJpYWxpemVyOiBSZXNwb25zZURlc2VyaWFsaXplcjxPdXRwdXRUeXBlLCBhbnksIFNlckRlQ29udGV4dD5cbik6IFBsdWdnYWJsZTxJbnB1dFR5cGUsIE91dHB1dFR5cGU+IHtcbiAgcmV0dXJuIHtcbiAgICBhcHBseVRvU3RhY2s6IChjb21tYW5kU3RhY2s6IE1pZGRsZXdhcmVTdGFjazxJbnB1dFR5cGUsIE91dHB1dFR5cGU+KSA9PiB7XG4gICAgICBjb21tYW5kU3RhY2suYWRkKGRlc2VyaWFsaXplck1pZGRsZXdhcmUoY29uZmlnLCBkZXNlcmlhbGl6ZXIpLCBkZXNlcmlhbGl6ZXJNaWRkbGV3YXJlT3B0aW9uKTtcbiAgICAgIGNvbW1hbmRTdGFjay5hZGQoc2VyaWFsaXplck1pZGRsZXdhcmUoY29uZmlnLCBzZXJpYWxpemVyKSwgc2VyaWFsaXplck1pZGRsZXdhcmVPcHRpb24pO1xuICAgIH0sXG4gIH07XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-serde/dist/es/serdePlugin.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-serde/dist/es/serializerMiddleware.js": /*!********************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-serde/dist/es/serializerMiddleware.js ***! \********************************************************************************/ /*! exports provided: serializerMiddleware */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializerMiddleware\", function() { return serializerMiddleware; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar serializerMiddleware = function (options, serializer) { return function (next, context) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, serializer(args.input, options)];\n case 1:\n request = _a.sent();\n return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n}); }; }; };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplck1pZGRsZXdhcmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvc2VyaWFsaXplck1pZGRsZXdhcmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQVVBLE1BQU0sQ0FBQyxJQUFNLG9CQUFvQixHQUFHLFVBQ2xDLE9BQXFCLEVBQ3JCLFVBQWdELElBQ1QsT0FBQSxVQUN2QyxJQUFxQyxFQUNyQyxPQUFnQyxJQUNJLE9BQUEsVUFDcEMsSUFBc0M7Ozs7b0JBRXRCLHFCQUFNLFVBQVUsQ0FBQyxJQUFJLENBQUMsS0FBSyxFQUFFLE9BQU8sQ0FBQyxFQUFBOztnQkFBL0MsT0FBTyxHQUFHLFNBQXFDO2dCQUNyRCxzQkFBTyxJQUFJLHVCQUNOLElBQUksS0FDUCxPQUFPLFNBQUEsSUFDUCxFQUFDOzs7S0FDSixFQVJxQyxDQVFyQyxFQVh3QyxDQVd4QyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgRW5kcG9pbnRCZWFyZXIsXG4gIEhhbmRsZXJFeGVjdXRpb25Db250ZXh0LFxuICBSZXF1ZXN0U2VyaWFsaXplcixcbiAgU2VyaWFsaXplSGFuZGxlcixcbiAgU2VyaWFsaXplSGFuZGxlckFyZ3VtZW50cyxcbiAgU2VyaWFsaXplSGFuZGxlck91dHB1dCxcbiAgU2VyaWFsaXplTWlkZGxld2FyZSxcbn0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5cbmV4cG9ydCBjb25zdCBzZXJpYWxpemVyTWlkZGxld2FyZSA9IDxJbnB1dCBleHRlbmRzIG9iamVjdCwgT3V0cHV0IGV4dGVuZHMgb2JqZWN0LCBSdW50aW1lVXRpbHMgZXh0ZW5kcyBFbmRwb2ludEJlYXJlcj4oXG4gIG9wdGlvbnM6IFJ1bnRpbWVVdGlscyxcbiAgc2VyaWFsaXplcjogUmVxdWVzdFNlcmlhbGl6ZXI8YW55LCBSdW50aW1lVXRpbHM+XG4pOiBTZXJpYWxpemVNaWRkbGV3YXJlPElucHV0LCBPdXRwdXQ+ID0+IChcbiAgbmV4dDogU2VyaWFsaXplSGFuZGxlcjxJbnB1dCwgT3V0cHV0PixcbiAgY29udGV4dDogSGFuZGxlckV4ZWN1dGlvbkNvbnRleHRcbik6IFNlcmlhbGl6ZUhhbmRsZXI8SW5wdXQsIE91dHB1dD4gPT4gYXN5bmMgKFxuICBhcmdzOiBTZXJpYWxpemVIYW5kbGVyQXJndW1lbnRzPElucHV0PlxuKTogUHJvbWlzZTxTZXJpYWxpemVIYW5kbGVyT3V0cHV0PE91dHB1dD4+ID0+IHtcbiAgY29uc3QgcmVxdWVzdCA9IGF3YWl0IHNlcmlhbGl6ZXIoYXJncy5pbnB1dCwgb3B0aW9ucyk7XG4gIHJldHVybiBuZXh0KHtcbiAgICAuLi5hcmdzLFxuICAgIHJlcXVlc3QsXG4gIH0pO1xufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-serde/dist/es/serializerMiddleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-signing/dist/es/configurations.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-signing/dist/es/configurations.js ***! \****************************************************************************/ /*! exports provided: resolveAwsAuthConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveAwsAuthConfig\", function() { return resolveAwsAuthConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/signature-v4 */ \"./node_modules/@aws-sdk/signature-v4/dist/es/index.js\");\n\n\nfunction resolveAwsAuthConfig(input) {\n var _this = this;\n var credentials = input.credentials || input.credentialDefaultProvider(input);\n var normalizedCreds = normalizeProvider(credentials);\n var _a = input.signingEscapePath, signingEscapePath = _a === void 0 ? true : _a, _b = input.systemClockOffset, systemClockOffset = _b === void 0 ? input.systemClockOffset || 0 : _b, sha256 = input.sha256;\n var signer;\n if (input.signer) {\n //if signer is supplied by user, normalize it to a function returning a promise for signer.\n signer = normalizeProvider(input.signer);\n }\n else {\n //construct a provider inferring signing from region.\n signer = function () {\n return normalizeProvider(input.region)()\n .then(function (region) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, input.regionInfoProvider(region)];\n case 1: return [2 /*return*/, [(_a.sent()) || {}, region]];\n }\n }); }); })\n .then(function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), regionInfo = _b[0], region = _b[1];\n var signingRegion = regionInfo.signingRegion, signingService = regionInfo.signingService;\n //update client's singing region and signing service config if they are resolved.\n //signing region resolving order: user supplied signingRegion -> endpoints.json inferred region -> client region\n input.signingRegion = input.signingRegion || signingRegion || region;\n //signing name resolving order:\n //user supplied signingName -> endpoints.json inferred (credential scope -> model arnNamespace) -> model service id\n input.signingName = input.signingName || signingService || input.serviceId;\n return new _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_1__[\"SignatureV4\"]({\n credentials: normalizedCreds,\n region: input.signingRegion,\n service: input.signingName,\n sha256: sha256,\n uriEscapePath: signingEscapePath,\n });\n });\n };\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input), { systemClockOffset: systemClockOffset,\n signingEscapePath: signingEscapePath, credentials: normalizedCreds, signer: signer });\n}\nfunction normalizeProvider(input) {\n if (typeof input === \"object\") {\n var promisified_1 = Promise.resolve(input);\n return function () { return promisified_1; };\n }\n return input;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlndXJhdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvY29uZmlndXJhdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQTRDcEQsTUFBTSxVQUFVLG9CQUFvQixDQUFJLEtBQWtEO0lBQTFGLGlCQXVDQztJQXRDQyxJQUFNLFdBQVcsR0FBRyxLQUFLLENBQUMsV0FBVyxJQUFJLEtBQUssQ0FBQyx5QkFBeUIsQ0FBQyxLQUFZLENBQUMsQ0FBQztJQUN2RixJQUFNLGVBQWUsR0FBRyxpQkFBaUIsQ0FBQyxXQUFXLENBQUMsQ0FBQztJQUMvQyxJQUFBLEtBQXVGLEtBQUssa0JBQXBFLEVBQXhCLGlCQUFpQixtQkFBRyxJQUFJLEtBQUEsRUFBRSxLQUE2RCxLQUFLLGtCQUFsQixFQUFoRCxpQkFBaUIsbUJBQUcsS0FBSyxDQUFDLGlCQUFpQixJQUFJLENBQUMsS0FBQSxFQUFFLE1BQU0sR0FBSyxLQUFLLE9BQVYsQ0FBVztJQUNyRyxJQUFJLE1BQStCLENBQUM7SUFDcEMsSUFBSSxLQUFLLENBQUMsTUFBTSxFQUFFO1FBQ2hCLDJGQUEyRjtRQUMzRixNQUFNLEdBQUcsaUJBQWlCLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDO0tBQzFDO1NBQU07UUFDTCxxREFBcUQ7UUFDckQsTUFBTSxHQUFHO1lBQ1AsT0FBQSxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLEVBQUU7aUJBQzlCLElBQUksQ0FBQyxVQUFPLE1BQU07OzRCQUFPLHFCQUFNLEtBQUssQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLENBQUMsRUFBQTs0QkFBeEMsc0JBQUEsQ0FBQyxDQUFDLFNBQXNDLENBQUMsSUFBSSxFQUFFLEVBQUUsTUFBTSxDQUF5QixFQUFBOztxQkFBQSxDQUFDO2lCQUN4RyxJQUFJLENBQUMsVUFBQyxFQUFvQjtvQkFBcEIsS0FBQSxhQUFvQixFQUFuQixVQUFVLFFBQUEsRUFBRSxNQUFNLFFBQUE7Z0JBQ2hCLElBQUEsYUFBYSxHQUFxQixVQUFVLGNBQS9CLEVBQUUsY0FBYyxHQUFLLFVBQVUsZUFBZixDQUFnQjtnQkFDckQsaUZBQWlGO2dCQUNqRixnSEFBZ0g7Z0JBQ2hILEtBQUssQ0FBQyxhQUFhLEdBQUcsS0FBSyxDQUFDLGFBQWEsSUFBSSxhQUFhLElBQUksTUFBTSxDQUFDO2dCQUNyRSwrQkFBK0I7Z0JBQy9CLG1IQUFtSDtnQkFDbkgsS0FBSyxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUMsV0FBVyxJQUFJLGNBQWMsSUFBSSxLQUFLLENBQUMsU0FBUyxDQUFDO2dCQUUzRSxPQUFPLElBQUksV0FBVyxDQUFDO29CQUNyQixXQUFXLEVBQUUsZUFBZTtvQkFDNUIsTUFBTSxFQUFFLEtBQUssQ0FBQyxhQUFhO29CQUMzQixPQUFPLEVBQUUsS0FBSyxDQUFDLFdBQVc7b0JBQzFCLE1BQU0sUUFBQTtvQkFDTixhQUFhLEVBQUUsaUJBQWlCO2lCQUNqQyxDQUFDLENBQUM7WUFDTCxDQUFDLENBQUM7UUFsQkosQ0FrQkksQ0FBQztLQUNSO0lBRUQsNkJBQ0ssS0FBSyxLQUNSLGlCQUFpQixtQkFBQTtRQUNqQixpQkFBaUIsbUJBQUEsRUFDakIsV0FBVyxFQUFFLGVBQWUsRUFDNUIsTUFBTSxRQUFBLElBQ047QUFDSixDQUFDO0FBRUQsU0FBUyxpQkFBaUIsQ0FBSSxLQUFzQjtJQUNsRCxJQUFJLE9BQU8sS0FBSyxLQUFLLFFBQVEsRUFBRTtRQUM3QixJQUFNLGFBQVcsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzNDLE9BQU8sY0FBTSxPQUFBLGFBQVcsRUFBWCxDQUFXLENBQUM7S0FDMUI7SUFDRCxPQUFPLEtBQW9CLENBQUM7QUFDOUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNpZ25hdHVyZVY0IH0gZnJvbSBcIkBhd3Mtc2RrL3NpZ25hdHVyZS12NFwiO1xuaW1wb3J0IHsgQ3JlZGVudGlhbHMsIEhhc2hDb25zdHJ1Y3RvciwgUHJvdmlkZXIsIFJlZ2lvbkluZm8sIFJlZ2lvbkluZm9Qcm92aWRlciwgUmVxdWVzdFNpZ25lciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgaW50ZXJmYWNlIEF3c0F1dGhJbnB1dENvbmZpZyB7XG4gIC8qKlxuICAgKiBUaGUgY3JlZGVudGlhbHMgdXNlZCB0byBzaWduIHJlcXVlc3RzLlxuICAgKi9cbiAgY3JlZGVudGlhbHM/OiBDcmVkZW50aWFscyB8IFByb3ZpZGVyPENyZWRlbnRpYWxzPjtcblxuICAvKipcbiAgICogVGhlIHNpZ25lciB0byB1c2Ugd2hlbiBzaWduaW5nIHJlcXVlc3RzLlxuICAgKi9cbiAgc2lnbmVyPzogUmVxdWVzdFNpZ25lciB8IFByb3ZpZGVyPFJlcXVlc3RTaWduZXI+O1xuXG4gIC8qKlxuICAgKiBXaGV0aGVyIHRvIGVzY2FwZSByZXF1ZXN0IHBhdGggd2hlbiBzaWduaW5nIHRoZSByZXF1ZXN0LlxuICAgKi9cbiAgc2lnbmluZ0VzY2FwZVBhdGg/OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKiBBbiBvZmZzZXQgdmFsdWUgaW4gbWlsbGlzZWNvbmRzIHRvIGFwcGx5IHRvIGFsbCBzaWduaW5nIHRpbWVzLlxuICAgKi9cbiAgc3lzdGVtQ2xvY2tPZmZzZXQ/OiBudW1iZXI7XG5cbiAgLyoqXG4gICAqIFRoZSByZWdpb24gd2hlcmUgeW91IHdhbnQgdG8gc2lnbiB5b3VyIHJlcXVlc3QgYWdhaW5zdC4gVGhpc1xuICAgKiBjYW4gYmUgZGlmZmVyZW50IHRvIHRoZSByZWdpb24gaW4gdGhlIGVuZHBvaW50LlxuICAgKi9cbiAgc2lnbmluZ1JlZ2lvbj86IHN0cmluZztcbn1cbmludGVyZmFjZSBQcmV2aW91c2x5UmVzb2x2ZWQge1xuICBjcmVkZW50aWFsRGVmYXVsdFByb3ZpZGVyOiAoaW5wdXQ6IGFueSkgPT4gUHJvdmlkZXI8Q3JlZGVudGlhbHM+O1xuICByZWdpb246IHN0cmluZyB8IFByb3ZpZGVyPHN0cmluZz47XG4gIHJlZ2lvbkluZm9Qcm92aWRlcjogUmVnaW9uSW5mb1Byb3ZpZGVyO1xuICBzaWduaW5nTmFtZT86IHN0cmluZztcbiAgc2VydmljZUlkOiBzdHJpbmc7XG4gIHNoYTI1NjogSGFzaENvbnN0cnVjdG9yO1xufVxuZXhwb3J0IGludGVyZmFjZSBBd3NBdXRoUmVzb2x2ZWRDb25maWcge1xuICBjcmVkZW50aWFsczogUHJvdmlkZXI8Q3JlZGVudGlhbHM+O1xuICBzaWduZXI6IFByb3ZpZGVyPFJlcXVlc3RTaWduZXI+O1xuICBzaWduaW5nRXNjYXBlUGF0aDogYm9vbGVhbjtcbiAgc3lzdGVtQ2xvY2tPZmZzZXQ6IG51bWJlcjtcbn1cbmV4cG9ydCBmdW5jdGlvbiByZXNvbHZlQXdzQXV0aENvbmZpZzxUPihpbnB1dDogVCAmIEF3c0F1dGhJbnB1dENvbmZpZyAmIFByZXZpb3VzbHlSZXNvbHZlZCk6IFQgJiBBd3NBdXRoUmVzb2x2ZWRDb25maWcge1xuICBjb25zdCBjcmVkZW50aWFscyA9IGlucHV0LmNyZWRlbnRpYWxzIHx8IGlucHV0LmNyZWRlbnRpYWxEZWZhdWx0UHJvdmlkZXIoaW5wdXQgYXMgYW55KTtcbiAgY29uc3Qgbm9ybWFsaXplZENyZWRzID0gbm9ybWFsaXplUHJvdmlkZXIoY3JlZGVudGlhbHMpO1xuICBjb25zdCB7IHNpZ25pbmdFc2NhcGVQYXRoID0gdHJ1ZSwgc3lzdGVtQ2xvY2tPZmZzZXQgPSBpbnB1dC5zeXN0ZW1DbG9ja09mZnNldCB8fCAwLCBzaGEyNTYgfSA9IGlucHV0O1xuICBsZXQgc2lnbmVyOiBQcm92aWRlcjxSZXF1ZXN0U2lnbmVyPjtcbiAgaWYgKGlucHV0LnNpZ25lcikge1xuICAgIC8vaWYgc2lnbmVyIGlzIHN1cHBsaWVkIGJ5IHVzZXIsIG5vcm1hbGl6ZSBpdCB0byBhIGZ1bmN0aW9uIHJldHVybmluZyBhIHByb21pc2UgZm9yIHNpZ25lci5cbiAgICBzaWduZXIgPSBub3JtYWxpemVQcm92aWRlcihpbnB1dC5zaWduZXIpO1xuICB9IGVsc2Uge1xuICAgIC8vY29uc3RydWN0IGEgcHJvdmlkZXIgaW5mZXJyaW5nIHNpZ25pbmcgZnJvbSByZWdpb24uXG4gICAgc2lnbmVyID0gKCkgPT5cbiAgICAgIG5vcm1hbGl6ZVByb3ZpZGVyKGlucHV0LnJlZ2lvbikoKVxuICAgICAgICAudGhlbihhc3luYyAocmVnaW9uKSA9PiBbKGF3YWl0IGlucHV0LnJlZ2lvbkluZm9Qcm92aWRlcihyZWdpb24pKSB8fCB7fSwgcmVnaW9uXSBhcyBbUmVnaW9uSW5mbywgc3RyaW5nXSlcbiAgICAgICAgLnRoZW4oKFtyZWdpb25JbmZvLCByZWdpb25dKSA9PiB7XG4gICAgICAgICAgY29uc3QgeyBzaWduaW5nUmVnaW9uLCBzaWduaW5nU2VydmljZSB9ID0gcmVnaW9uSW5mbztcbiAgICAgICAgICAvL3VwZGF0ZSBjbGllbnQncyBzaW5naW5nIHJlZ2lvbiBhbmQgc2lnbmluZyBzZXJ2aWNlIGNvbmZpZyBpZiB0aGV5IGFyZSByZXNvbHZlZC5cbiAgICAgICAgICAvL3NpZ25pbmcgcmVnaW9uIHJlc29sdmluZyBvcmRlcjogdXNlciBzdXBwbGllZCBzaWduaW5nUmVnaW9uIC0+IGVuZHBvaW50cy5qc29uIGluZmVycmVkIHJlZ2lvbiAtPiBjbGllbnQgcmVnaW9uXG4gICAgICAgICAgaW5wdXQuc2lnbmluZ1JlZ2lvbiA9IGlucHV0LnNpZ25pbmdSZWdpb24gfHwgc2lnbmluZ1JlZ2lvbiB8fCByZWdpb247XG4gICAgICAgICAgLy9zaWduaW5nIG5hbWUgcmVzb2x2aW5nIG9yZGVyOlxuICAgICAgICAgIC8vdXNlciBzdXBwbGllZCBzaWduaW5nTmFtZSAtPiBlbmRwb2ludHMuanNvbiBpbmZlcnJlZCAoY3JlZGVudGlhbCBzY29wZSAtPiBtb2RlbCBhcm5OYW1lc3BhY2UpIC0+IG1vZGVsIHNlcnZpY2UgaWRcbiAgICAgICAgICBpbnB1dC5zaWduaW5nTmFtZSA9IGlucHV0LnNpZ25pbmdOYW1lIHx8IHNpZ25pbmdTZXJ2aWNlIHx8IGlucHV0LnNlcnZpY2VJZDtcblxuICAgICAgICAgIHJldHVybiBuZXcgU2lnbmF0dXJlVjQoe1xuICAgICAgICAgICAgY3JlZGVudGlhbHM6IG5vcm1hbGl6ZWRDcmVkcyxcbiAgICAgICAgICAgIHJlZ2lvbjogaW5wdXQuc2lnbmluZ1JlZ2lvbixcbiAgICAgICAgICAgIHNlcnZpY2U6IGlucHV0LnNpZ25pbmdOYW1lLFxuICAgICAgICAgICAgc2hhMjU2LFxuICAgICAgICAgICAgdXJpRXNjYXBlUGF0aDogc2lnbmluZ0VzY2FwZVBhdGgsXG4gICAgICAgICAgfSk7XG4gICAgICAgIH0pO1xuICB9XG5cbiAgcmV0dXJuIHtcbiAgICAuLi5pbnB1dCxcbiAgICBzeXN0ZW1DbG9ja09mZnNldCxcbiAgICBzaWduaW5nRXNjYXBlUGF0aCxcbiAgICBjcmVkZW50aWFsczogbm9ybWFsaXplZENyZWRzLFxuICAgIHNpZ25lcixcbiAgfTtcbn1cblxuZnVuY3Rpb24gbm9ybWFsaXplUHJvdmlkZXI8VD4oaW5wdXQ6IFQgfCBQcm92aWRlcjxUPik6IFByb3ZpZGVyPFQ+IHtcbiAgaWYgKHR5cGVvZiBpbnB1dCA9PT0gXCJvYmplY3RcIikge1xuICAgIGNvbnN0IHByb21pc2lmaWVkID0gUHJvbWlzZS5yZXNvbHZlKGlucHV0KTtcbiAgICByZXR1cm4gKCkgPT4gcHJvbWlzaWZpZWQ7XG4gIH1cbiAgcmV0dXJuIGlucHV0IGFzIFByb3ZpZGVyPFQ+O1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-signing/dist/es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-signing/dist/es/index.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-signing/dist/es/index.js ***! \*******************************************************************/ /*! exports provided: resolveAwsAuthConfig, awsAuthMiddleware, awsAuthMiddlewareOptions, getAwsAuthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveAwsAuthConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveAwsAuthConfig\"]; });\n\n/* harmony import */ var _middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./middleware */ \"./node_modules/@aws-sdk/middleware-signing/dist/es/middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddleware\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"awsAuthMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddlewareOptions\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"awsAuthMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getAwsAuthPlugin\", function() { return _middleware__WEBPACK_IMPORTED_MODULE_1__[\"getAwsAuthPlugin\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL2NvbmZpZ3VyYXRpb25zXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9taWRkbGV3YXJlXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-signing/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-signing/dist/es/middleware.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-signing/dist/es/middleware.js ***! \************************************************************************/ /*! exports provided: awsAuthMiddleware, awsAuthMiddlewareOptions, getAwsAuthPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddleware\", function() { return awsAuthMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"awsAuthMiddlewareOptions\", function() { return awsAuthMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getAwsAuthPlugin\", function() { return getAwsAuthPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n\n\nvar isClockSkewed = function (newServerTime, systemClockOffset) {\n return Math.abs(getSkewCorrectedDate(systemClockOffset).getTime() - newServerTime) >= 300000;\n};\nvar getSkewCorrectedDate = function (systemClockOffset) { return new Date(Date.now() + systemClockOffset); };\nfunction awsAuthMiddleware(options) {\n return function (next, context) {\n return function (args) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var signer, _a, output, _b, _c, headers, dateHeader, serverTime;\n var _d;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_e) {\n switch (_e.label) {\n case 0:\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(args.request))\n return [2 /*return*/, next(args)];\n if (!(typeof options.signer === \"function\")) return [3 /*break*/, 2];\n return [4 /*yield*/, options.signer()];\n case 1:\n _a = _e.sent();\n return [3 /*break*/, 3];\n case 2:\n _a = options.signer;\n _e.label = 3;\n case 3:\n signer = _a;\n _b = next;\n _c = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args)];\n _d = {};\n return [4 /*yield*/, signer.sign(args.request, {\n signingDate: new Date(Date.now() + options.systemClockOffset),\n signingRegion: context[\"signing_region\"],\n signingService: context[\"signing_service\"],\n })];\n case 4: return [4 /*yield*/, _b.apply(void 0, [tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _c.concat([(_d.request = _e.sent(), _d)]))])];\n case 5:\n output = _e.sent();\n headers = output.response.headers;\n dateHeader = headers && (headers.date || headers.Date);\n if (dateHeader) {\n serverTime = Date.parse(dateHeader);\n if (isClockSkewed(serverTime, options.systemClockOffset)) {\n options.systemClockOffset = serverTime - Date.now();\n }\n }\n return [2 /*return*/, output];\n }\n });\n });\n };\n };\n}\nvar awsAuthMiddlewareOptions = {\n name: \"awsAuthMiddleware\",\n tags: [\"SIGNATURE\", \"AWSAUTH\"],\n relation: \"after\",\n toMiddleware: \"retryMiddleware\",\n override: true,\n};\nvar getAwsAuthPlugin = function (options) { return ({\n applyToStack: function (clientStack) {\n clientStack.addRelativeTo(awsAuthMiddleware(options), awsAuthMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlkZGxld2FyZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9taWRkbGV3YXJlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFhckQsSUFBTSxhQUFhLEdBQUcsVUFBQyxhQUFxQixFQUFFLGlCQUF5QjtJQUNyRSxPQUFBLElBQUksQ0FBQyxHQUFHLENBQUMsb0JBQW9CLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxPQUFPLEVBQUUsR0FBRyxhQUFhLENBQUMsSUFBSSxNQUFNO0FBQXJGLENBQXFGLENBQUM7QUFFeEYsSUFBTSxvQkFBb0IsR0FBRyxVQUFDLGlCQUF5QixJQUFLLE9BQUEsSUFBSSxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRSxHQUFHLGlCQUFpQixDQUFDLEVBQXhDLENBQXdDLENBQUM7QUFFckcsTUFBTSxVQUFVLGlCQUFpQixDQUMvQixPQUE4QjtJQUU5QixPQUFPLFVBQUMsSUFBb0MsRUFBRSxPQUFnQztRQUM1RSxPQUFBLFVBQWdCLElBQXFDOzs7Ozs7OzRCQUNuRCxJQUFJLENBQUMsV0FBVyxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDO2dDQUFFLHNCQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsRUFBQztpQ0FDOUMsQ0FBQSxPQUFPLE9BQU8sQ0FBQyxNQUFNLEtBQUssVUFBVSxDQUFBLEVBQXBDLHdCQUFvQzs0QkFBRyxxQkFBTSxPQUFPLENBQUMsTUFBTSxFQUFFLEVBQUE7OzRCQUF0QixLQUFBLFNBQXNCLENBQUE7Ozs0QkFBRyxLQUFBLE9BQU8sQ0FBQyxNQUFNLENBQUE7Ozs0QkFBdkYsTUFBTSxLQUFpRjs0QkFDeEUsS0FBQSxJQUFJLENBQUE7K0NBQ3BCLElBQUk7OzRCQUNFLHFCQUFNLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRTtvQ0FDdkMsV0FBVyxFQUFFLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUUsR0FBRyxPQUFPLENBQUMsaUJBQWlCLENBQUM7b0NBQzdELGFBQWEsRUFBRSxPQUFPLENBQUMsZ0JBQWdCLENBQUM7b0NBQ3hDLGNBQWMsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUM7aUNBQzNDLENBQUMsRUFBQTtnQ0FOVyxxQkFBTSxxREFFbkIsVUFBTyxHQUFFLFNBSVAsVUFDRixFQUFBOzs0QkFQSSxNQUFNLEdBQUcsU0FPYjs0QkFFTSxPQUFPLEdBQUssTUFBTSxDQUFDLFFBQWUsUUFBM0IsQ0FBNEI7NEJBQ3JDLFVBQVUsR0FBRyxPQUFPLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxJQUFJLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQzs0QkFDN0QsSUFBSSxVQUFVLEVBQUU7Z0NBQ1IsVUFBVSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxDQUFDLENBQUM7Z0NBQzFDLElBQUksYUFBYSxDQUFDLFVBQVUsRUFBRSxPQUFPLENBQUMsaUJBQWlCLENBQUMsRUFBRTtvQ0FDeEQsT0FBTyxDQUFDLGlCQUFpQixHQUFHLFVBQVUsR0FBRyxJQUFJLENBQUMsR0FBRyxFQUFFLENBQUM7aUNBQ3JEOzZCQUNGOzRCQUVELHNCQUFPLE1BQU0sRUFBQzs7OztTQUNmO0lBdEJELENBc0JDLENBQUM7QUFDTixDQUFDO0FBRUQsTUFBTSxDQUFDLElBQU0sd0JBQXdCLEdBQThCO0lBQ2pFLElBQUksRUFBRSxtQkFBbUI7SUFDekIsSUFBSSxFQUFFLENBQUMsV0FBVyxFQUFFLFNBQVMsQ0FBQztJQUM5QixRQUFRLEVBQUUsT0FBTztJQUNqQixZQUFZLEVBQUUsaUJBQWlCO0lBQy9CLFFBQVEsRUFBRSxJQUFJO0NBQ2YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLGdCQUFnQixHQUFHLFVBQUMsT0FBOEIsSUFBMEIsT0FBQSxDQUFDO0lBQ3hGLFlBQVksRUFBRSxVQUFDLFdBQVc7UUFDeEIsV0FBVyxDQUFDLGFBQWEsQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsRUFBRSx3QkFBd0IsQ0FBQyxDQUFDO0lBQ2xGLENBQUM7Q0FDRixDQUFDLEVBSnVGLENBSXZGLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwUmVxdWVzdCB9IGZyb20gXCJAYXdzLXNkay9wcm90b2NvbC1odHRwXCI7XG5pbXBvcnQge1xuICBGaW5hbGl6ZUhhbmRsZXIsXG4gIEZpbmFsaXplSGFuZGxlckFyZ3VtZW50cyxcbiAgRmluYWxpemVIYW5kbGVyT3V0cHV0LFxuICBGaW5hbGl6ZVJlcXVlc3RNaWRkbGV3YXJlLFxuICBIYW5kbGVyRXhlY3V0aW9uQ29udGV4dCxcbiAgUGx1Z2dhYmxlLFxuICBSZWxhdGl2ZU1pZGRsZXdhcmVPcHRpb25zLFxufSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgQXdzQXV0aFJlc29sdmVkQ29uZmlnIH0gZnJvbSBcIi4vY29uZmlndXJhdGlvbnNcIjtcblxuY29uc3QgaXNDbG9ja1NrZXdlZCA9IChuZXdTZXJ2ZXJUaW1lOiBudW1iZXIsIHN5c3RlbUNsb2NrT2Zmc2V0OiBudW1iZXIpID0+XG4gIE1hdGguYWJzKGdldFNrZXdDb3JyZWN0ZWREYXRlKHN5c3RlbUNsb2NrT2Zmc2V0KS5nZXRUaW1lKCkgLSBuZXdTZXJ2ZXJUaW1lKSA+PSAzMDAwMDA7XG5cbmNvbnN0IGdldFNrZXdDb3JyZWN0ZWREYXRlID0gKHN5c3RlbUNsb2NrT2Zmc2V0OiBudW1iZXIpID0+IG5ldyBEYXRlKERhdGUubm93KCkgKyBzeXN0ZW1DbG9ja09mZnNldCk7XG5cbmV4cG9ydCBmdW5jdGlvbiBhd3NBdXRoTWlkZGxld2FyZTxJbnB1dCBleHRlbmRzIG9iamVjdCwgT3V0cHV0IGV4dGVuZHMgb2JqZWN0PihcbiAgb3B0aW9uczogQXdzQXV0aFJlc29sdmVkQ29uZmlnXG4pOiBGaW5hbGl6ZVJlcXVlc3RNaWRkbGV3YXJlPElucHV0LCBPdXRwdXQ+IHtcbiAgcmV0dXJuIChuZXh0OiBGaW5hbGl6ZUhhbmRsZXI8SW5wdXQsIE91dHB1dD4sIGNvbnRleHQ6IEhhbmRsZXJFeGVjdXRpb25Db250ZXh0KTogRmluYWxpemVIYW5kbGVyPElucHV0LCBPdXRwdXQ+ID0+XG4gICAgYXN5bmMgZnVuY3Rpb24gKGFyZ3M6IEZpbmFsaXplSGFuZGxlckFyZ3VtZW50czxJbnB1dD4pOiBQcm9taXNlPEZpbmFsaXplSGFuZGxlck91dHB1dDxPdXRwdXQ+PiB7XG4gICAgICBpZiAoIUh0dHBSZXF1ZXN0LmlzSW5zdGFuY2UoYXJncy5yZXF1ZXN0KSkgcmV0dXJuIG5leHQoYXJncyk7XG4gICAgICBjb25zdCBzaWduZXIgPSB0eXBlb2Ygb3B0aW9ucy5zaWduZXIgPT09IFwiZnVuY3Rpb25cIiA/IGF3YWl0IG9wdGlvbnMuc2lnbmVyKCkgOiBvcHRpb25zLnNpZ25lcjtcbiAgICAgIGNvbnN0IG91dHB1dCA9IGF3YWl0IG5leHQoe1xuICAgICAgICAuLi5hcmdzLFxuICAgICAgICByZXF1ZXN0OiBhd2FpdCBzaWduZXIuc2lnbihhcmdzLnJlcXVlc3QsIHtcbiAgICAgICAgICBzaWduaW5nRGF0ZTogbmV3IERhdGUoRGF0ZS5ub3coKSArIG9wdGlvbnMuc3lzdGVtQ2xvY2tPZmZzZXQpLFxuICAgICAgICAgIHNpZ25pbmdSZWdpb246IGNvbnRleHRbXCJzaWduaW5nX3JlZ2lvblwiXSxcbiAgICAgICAgICBzaWduaW5nU2VydmljZTogY29udGV4dFtcInNpZ25pbmdfc2VydmljZVwiXSxcbiAgICAgICAgfSksXG4gICAgICB9KTtcblxuICAgICAgY29uc3QgeyBoZWFkZXJzIH0gPSBvdXRwdXQucmVzcG9uc2UgYXMgYW55O1xuICAgICAgY29uc3QgZGF0ZUhlYWRlciA9IGhlYWRlcnMgJiYgKGhlYWRlcnMuZGF0ZSB8fCBoZWFkZXJzLkRhdGUpO1xuICAgICAgaWYgKGRhdGVIZWFkZXIpIHtcbiAgICAgICAgY29uc3Qgc2VydmVyVGltZSA9IERhdGUucGFyc2UoZGF0ZUhlYWRlcik7XG4gICAgICAgIGlmIChpc0Nsb2NrU2tld2VkKHNlcnZlclRpbWUsIG9wdGlvbnMuc3lzdGVtQ2xvY2tPZmZzZXQpKSB7XG4gICAgICAgICAgb3B0aW9ucy5zeXN0ZW1DbG9ja09mZnNldCA9IHNlcnZlclRpbWUgLSBEYXRlLm5vdygpO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgIHJldHVybiBvdXRwdXQ7XG4gICAgfTtcbn1cblxuZXhwb3J0IGNvbnN0IGF3c0F1dGhNaWRkbGV3YXJlT3B0aW9uczogUmVsYXRpdmVNaWRkbGV3YXJlT3B0aW9ucyA9IHtcbiAgbmFtZTogXCJhd3NBdXRoTWlkZGxld2FyZVwiLFxuICB0YWdzOiBbXCJTSUdOQVRVUkVcIiwgXCJBV1NBVVRIXCJdLFxuICByZWxhdGlvbjogXCJhZnRlclwiLFxuICB0b01pZGRsZXdhcmU6IFwicmV0cnlNaWRkbGV3YXJlXCIsXG4gIG92ZXJyaWRlOiB0cnVlLFxufTtcblxuZXhwb3J0IGNvbnN0IGdldEF3c0F1dGhQbHVnaW4gPSAob3B0aW9uczogQXdzQXV0aFJlc29sdmVkQ29uZmlnKTogUGx1Z2dhYmxlPGFueSwgYW55PiA9PiAoe1xuICBhcHBseVRvU3RhY2s6IChjbGllbnRTdGFjaykgPT4ge1xuICAgIGNsaWVudFN0YWNrLmFkZFJlbGF0aXZlVG8oYXdzQXV0aE1pZGRsZXdhcmUob3B0aW9ucyksIGF3c0F1dGhNaWRkbGV3YXJlT3B0aW9ucyk7XG4gIH0sXG59KTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-signing/dist/es/middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js ***! \****************************************************************/ /*! exports provided: ssecMiddleware, ssecMiddlewareOptions, getSsecPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ssecMiddleware\", function() { return ssecMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ssecMiddlewareOptions\", function() { return ssecMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSsecPlugin\", function() { return getSsecPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nfunction ssecMiddleware(options) {\n var _this = this;\n return function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n var input, properties, properties_1, properties_1_1, prop, value, valueView, encoded, hash, _a, _b, _c, _d, e_1_1;\n var e_1, _e, _f;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n input = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args.input);\n properties = [\n {\n target: \"SSECustomerKey\",\n hash: \"SSECustomerKeyMD5\",\n },\n {\n target: \"CopySourceSSECustomerKey\",\n hash: \"CopySourceSSECustomerKeyMD5\",\n },\n ];\n _g.label = 1;\n case 1:\n _g.trys.push([1, 6, 7, 8]);\n properties_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(properties), properties_1_1 = properties_1.next();\n _g.label = 2;\n case 2:\n if (!!properties_1_1.done) return [3 /*break*/, 5];\n prop = properties_1_1.value;\n value = input[prop.target];\n if (!value) return [3 /*break*/, 4];\n valueView = ArrayBuffer.isView(value)\n ? new Uint8Array(value.buffer, value.byteOffset, value.byteLength)\n : typeof value === \"string\"\n ? options.utf8Decoder(value)\n : new Uint8Array(value);\n encoded = options.base64Encoder(valueView);\n hash = new options.md5();\n hash.update(valueView);\n _a = [Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, input)];\n _f = {}, _f[prop.target] = encoded;\n _b = prop.hash;\n _d = (_c = options).base64Encoder;\n return [4 /*yield*/, hash.digest()];\n case 3:\n input = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"].apply(void 0, _a.concat([(_f[_b] = _d.apply(_c, [_g.sent()]), _f)]));\n _g.label = 4;\n case 4:\n properties_1_1 = properties_1.next();\n return [3 /*break*/, 2];\n case 5: return [3 /*break*/, 8];\n case 6:\n e_1_1 = _g.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 8];\n case 7:\n try {\n if (properties_1_1 && !properties_1_1.done && (_e = properties_1.return)) _e.call(properties_1);\n }\n finally { if (e_1) throw e_1.error; }\n return [7 /*endfinally*/];\n case 8: return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { input: input }))];\n }\n });\n }); }; };\n}\nvar ssecMiddlewareOptions = {\n name: \"ssecMiddleware\",\n step: \"initialize\",\n tags: [\"SSE\"],\n override: true,\n};\nvar getSsecPlugin = function (config) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(ssecMiddleware(config), ssecMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQWFBLE1BQU0sVUFBVSxjQUFjLENBQUMsT0FBcUM7SUFBcEUsaUJBMENDO0lBekNDLE9BQU8sVUFDTCxJQUFvQyxJQUNELE9BQUEsVUFDbkMsSUFBcUM7Ozs7OztvQkFFakMsS0FBSyxnQkFBUSxJQUFJLENBQUMsS0FBSyxDQUFFLENBQUM7b0JBQ3hCLFVBQVUsR0FBRzt3QkFDakI7NEJBQ0UsTUFBTSxFQUFFLGdCQUFnQjs0QkFDeEIsSUFBSSxFQUFFLG1CQUFtQjt5QkFDMUI7d0JBQ0Q7NEJBQ0UsTUFBTSxFQUFFLDBCQUEwQjs0QkFDbEMsSUFBSSxFQUFFLDZCQUE2Qjt5QkFDcEM7cUJBQ0YsQ0FBQzs7OztvQkFFaUIsZUFBQSxTQUFBLFVBQVUsQ0FBQTs7OztvQkFBbEIsSUFBSTtvQkFDUCxLQUFLLEdBQTRCLEtBQWEsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7eUJBQzlELEtBQUssRUFBTCx3QkFBSztvQkFDRCxTQUFTLEdBQUcsV0FBVyxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUM7d0JBQ3pDLENBQUMsQ0FBQyxJQUFJLFVBQVUsQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLEtBQUssQ0FBQyxVQUFVLEVBQUUsS0FBSyxDQUFDLFVBQVUsQ0FBQzt3QkFDbEUsQ0FBQyxDQUFDLE9BQU8sS0FBSyxLQUFLLFFBQVE7NEJBQzNCLENBQUMsQ0FBQyxPQUFPLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQzs0QkFDNUIsQ0FBQyxDQUFDLElBQUksVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDO29CQUNwQixPQUFPLEdBQUcsT0FBTyxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsQ0FBQztvQkFDM0MsSUFBSSxHQUFHLElBQUksT0FBTyxDQUFDLEdBQUcsRUFBRSxDQUFDO29CQUMvQixJQUFJLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDO3VDQUVqQixLQUFhO2dDQUNoQixJQUFJLENBQUMsTUFBTSxJQUFHLE9BQU87b0JBQ3JCLEtBQUEsSUFBSSxDQUFDLElBQUksQ0FBQTtvQkFBRyxLQUFBLENBQUEsS0FBQSxPQUFPLENBQUEsQ0FBQyxhQUFhLENBQUE7b0JBQUMscUJBQU0sSUFBSSxDQUFDLE1BQU0sRUFBRSxFQUFBOztvQkFIeEQsS0FBSywrQ0FHVSxjQUFzQixTQUFtQixFQUFDLFFBQ3hELENBQUM7Ozs7Ozs7Ozs7Ozs7Ozs7d0JBSU4sc0JBQU8sSUFBSSx1QkFDTixJQUFJLEtBQ1AsS0FBSyxPQUFBLElBQ0wsRUFBQzs7O1NBQ0osRUF0Q29DLENBc0NwQyxDQUFDO0FBQ0osQ0FBQztBQUVELE1BQU0sQ0FBQyxJQUFNLHFCQUFxQixHQUE2QjtJQUM3RCxJQUFJLEVBQUUsZ0JBQWdCO0lBQ3RCLElBQUksRUFBRSxZQUFZO0lBQ2xCLElBQUksRUFBRSxDQUFDLEtBQUssQ0FBQztJQUNiLFFBQVEsRUFBRSxJQUFJO0NBQ2YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLGFBQWEsR0FBRyxVQUFDLE1BQW9DLElBQTBCLE9BQUEsQ0FBQztJQUMzRixZQUFZLEVBQUUsVUFBQyxXQUFXO1FBQ3hCLFdBQVcsQ0FBQyxHQUFHLENBQUMsY0FBYyxDQUFDLE1BQU0sQ0FBQyxFQUFFLHFCQUFxQixDQUFDLENBQUM7SUFDakUsQ0FBQztDQUNGLENBQUMsRUFKMEYsQ0FJMUYsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEluaXRpYWxpemVIYW5kbGVyLFxuICBJbml0aWFsaXplSGFuZGxlckFyZ3VtZW50cyxcbiAgSW5pdGlhbGl6ZUhhbmRsZXJPcHRpb25zLFxuICBJbml0aWFsaXplSGFuZGxlck91dHB1dCxcbiAgSW5pdGlhbGl6ZU1pZGRsZXdhcmUsXG4gIE1ldGFkYXRhQmVhcmVyLFxuICBQbHVnZ2FibGUsXG4gIFNvdXJjZURhdGEsXG59IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBSZXNvbHZlZFNzZWNNaWRkbGV3YXJlQ29uZmlnIH0gZnJvbSBcIi4vY29uZmlndXJhdGlvblwiO1xuXG5leHBvcnQgZnVuY3Rpb24gc3NlY01pZGRsZXdhcmUob3B0aW9uczogUmVzb2x2ZWRTc2VjTWlkZGxld2FyZUNvbmZpZyk6IEluaXRpYWxpemVNaWRkbGV3YXJlPGFueSwgYW55PiB7XG4gIHJldHVybiA8T3V0cHV0IGV4dGVuZHMgTWV0YWRhdGFCZWFyZXI+KFxuICAgIG5leHQ6IEluaXRpYWxpemVIYW5kbGVyPGFueSwgT3V0cHV0PlxuICApOiBJbml0aWFsaXplSGFuZGxlcjxhbnksIE91dHB1dD4gPT4gYXN5bmMgKFxuICAgIGFyZ3M6IEluaXRpYWxpemVIYW5kbGVyQXJndW1lbnRzPGFueT5cbiAgKTogUHJvbWlzZTxJbml0aWFsaXplSGFuZGxlck91dHB1dDxPdXRwdXQ+PiA9PiB7XG4gICAgbGV0IGlucHV0ID0geyAuLi5hcmdzLmlucHV0IH07XG4gICAgY29uc3QgcHJvcGVydGllcyA9IFtcbiAgICAgIHtcbiAgICAgICAgdGFyZ2V0OiBcIlNTRUN1c3RvbWVyS2V5XCIsXG4gICAgICAgIGhhc2g6IFwiU1NFQ3VzdG9tZXJLZXlNRDVcIixcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgIHRhcmdldDogXCJDb3B5U291cmNlU1NFQ3VzdG9tZXJLZXlcIixcbiAgICAgICAgaGFzaDogXCJDb3B5U291cmNlU1NFQ3VzdG9tZXJLZXlNRDVcIixcbiAgICAgIH0sXG4gICAgXTtcblxuICAgIGZvciAoY29uc3QgcHJvcCBvZiBwcm9wZXJ0aWVzKSB7XG4gICAgICBjb25zdCB2YWx1ZTogU291cmNlRGF0YSB8IHVuZGVmaW5lZCA9IChpbnB1dCBhcyBhbnkpW3Byb3AudGFyZ2V0XTtcbiAgICAgIGlmICh2YWx1ZSkge1xuICAgICAgICBjb25zdCB2YWx1ZVZpZXcgPSBBcnJheUJ1ZmZlci5pc1ZpZXcodmFsdWUpXG4gICAgICAgICAgPyBuZXcgVWludDhBcnJheSh2YWx1ZS5idWZmZXIsIHZhbHVlLmJ5dGVPZmZzZXQsIHZhbHVlLmJ5dGVMZW5ndGgpXG4gICAgICAgICAgOiB0eXBlb2YgdmFsdWUgPT09IFwic3RyaW5nXCJcbiAgICAgICAgICA/IG9wdGlvbnMudXRmOERlY29kZXIodmFsdWUpXG4gICAgICAgICAgOiBuZXcgVWludDhBcnJheSh2YWx1ZSk7XG4gICAgICAgIGNvbnN0IGVuY29kZWQgPSBvcHRpb25zLmJhc2U2NEVuY29kZXIodmFsdWVWaWV3KTtcbiAgICAgICAgY29uc3QgaGFzaCA9IG5ldyBvcHRpb25zLm1kNSgpO1xuICAgICAgICBoYXNoLnVwZGF0ZSh2YWx1ZVZpZXcpO1xuICAgICAgICBpbnB1dCA9IHtcbiAgICAgICAgICAuLi4oaW5wdXQgYXMgYW55KSxcbiAgICAgICAgICBbcHJvcC50YXJnZXRdOiBlbmNvZGVkLFxuICAgICAgICAgIFtwcm9wLmhhc2hdOiBvcHRpb25zLmJhc2U2NEVuY29kZXIoYXdhaXQgaGFzaC5kaWdlc3QoKSksXG4gICAgICAgIH07XG4gICAgICB9XG4gICAgfVxuXG4gICAgcmV0dXJuIG5leHQoe1xuICAgICAgLi4uYXJncyxcbiAgICAgIGlucHV0LFxuICAgIH0pO1xuICB9O1xufVxuXG5leHBvcnQgY29uc3Qgc3NlY01pZGRsZXdhcmVPcHRpb25zOiBJbml0aWFsaXplSGFuZGxlck9wdGlvbnMgPSB7XG4gIG5hbWU6IFwic3NlY01pZGRsZXdhcmVcIixcbiAgc3RlcDogXCJpbml0aWFsaXplXCIsXG4gIHRhZ3M6IFtcIlNTRVwiXSxcbiAgb3ZlcnJpZGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgZ2V0U3NlY1BsdWdpbiA9IChjb25maWc6IFJlc29sdmVkU3NlY01pZGRsZXdhcmVDb25maWcpOiBQbHVnZ2FibGU8YW55LCBhbnk+ID0+ICh7XG4gIGFwcGx5VG9TdGFjazogKGNsaWVudFN0YWNrKSA9PiB7XG4gICAgY2xpZW50U3RhY2suYWRkKHNzZWNNaWRkbGV3YXJlKGNvbmZpZyksIHNzZWNNaWRkbGV3YXJlT3B0aW9ucyk7XG4gIH0sXG59KTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-ssec/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-stack/dist/es/MiddlewareStack.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-stack/dist/es/MiddlewareStack.js ***! \***************************************************************************/ /*! exports provided: constructStack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"constructStack\", function() { return constructStack; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar constructStack = function () {\n var absoluteEntries = [];\n var relativeEntries = [];\n var entriesNameSet = new Set();\n var sort = function (entries) {\n return entries.sort(function (a, b) {\n return stepWeights[b.step] - stepWeights[a.step] ||\n priorityWeights[b.priority || \"normal\"] - priorityWeights[a.priority || \"normal\"];\n });\n };\n var removeByName = function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n if (entry.name && entry.name === toRemove) {\n isRemoved = true;\n entriesNameSet.delete(toRemove);\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n };\n var removeByReference = function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n if (entry.middleware === toRemove) {\n isRemoved = true;\n if (entry.name)\n entriesNameSet.delete(entry.name);\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n };\n var cloneTo = function (toStack) {\n absoluteEntries.forEach(function (entry) {\n //@ts-ignore\n toStack.add(entry.middleware, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry));\n });\n relativeEntries.forEach(function (entry) {\n //@ts-ignore\n toStack.addRelativeTo(entry.middleware, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry));\n });\n return toStack;\n };\n var expandRelativeMiddlewareList = function (from) {\n var expandedMiddlewareList = [];\n from.before.forEach(function (entry) {\n if (entry.before.length === 0 && entry.after.length === 0) {\n expandedMiddlewareList.push(entry);\n }\n else {\n expandedMiddlewareList.push.apply(expandedMiddlewareList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(expandRelativeMiddlewareList(entry)));\n }\n });\n expandedMiddlewareList.push(from);\n from.after.reverse().forEach(function (entry) {\n if (entry.before.length === 0 && entry.after.length === 0) {\n expandedMiddlewareList.push(entry);\n }\n else {\n expandedMiddlewareList.push.apply(expandedMiddlewareList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(expandRelativeMiddlewareList(entry)));\n }\n });\n return expandedMiddlewareList;\n };\n /**\n * Get a final list of middleware in the order of being executed in the resolved handler.\n */\n var getMiddlewareList = function () {\n var normalizedAbsoluteEntries = [];\n var normalizedRelativeEntries = [];\n var normalizedEntriesNameMap = {};\n absoluteEntries.forEach(function (entry) {\n var normalizedEntry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry), { before: [], after: [] });\n if (normalizedEntry.name)\n normalizedEntriesNameMap[normalizedEntry.name] = normalizedEntry;\n normalizedAbsoluteEntries.push(normalizedEntry);\n });\n relativeEntries.forEach(function (entry) {\n var normalizedEntry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, entry), { before: [], after: [] });\n if (normalizedEntry.name)\n normalizedEntriesNameMap[normalizedEntry.name] = normalizedEntry;\n normalizedRelativeEntries.push(normalizedEntry);\n });\n normalizedRelativeEntries.forEach(function (entry) {\n if (entry.toMiddleware) {\n var toMiddleware = normalizedEntriesNameMap[entry.toMiddleware];\n if (toMiddleware === undefined) {\n throw new Error(entry.toMiddleware + \" is not found when adding \" + (entry.name || \"anonymous\") + \" middleware \" + entry.relation + \" \" + entry.toMiddleware);\n }\n if (entry.relation === \"after\") {\n toMiddleware.after.push(entry);\n }\n if (entry.relation === \"before\") {\n toMiddleware.before.push(entry);\n }\n }\n });\n var mainChain = sort(normalizedAbsoluteEntries)\n .map(expandRelativeMiddlewareList)\n .reduce(function (wholeList, expendedMiddlewareList) {\n // TODO: Replace it with Array.flat();\n wholeList.push.apply(wholeList, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(expendedMiddlewareList));\n return wholeList;\n }, []);\n return mainChain.map(function (entry) { return entry.middleware; });\n };\n var stack = {\n add: function (middleware, options) {\n if (options === void 0) { options = {}; }\n var name = options.name, override = options.override;\n var entry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ step: \"initialize\", priority: \"normal\", middleware: middleware }, options);\n if (name) {\n if (entriesNameSet.has(name)) {\n if (!override)\n throw new Error(\"Duplicate middleware name '\" + name + \"'\");\n var toOverrideIndex = absoluteEntries.findIndex(function (entry) { return entry.name === name; });\n var toOverride = absoluteEntries[toOverrideIndex];\n if (toOverride.step !== entry.step || toOverride.priority !== entry.priority) {\n throw new Error(\"\\\"\" + name + \"\\\" middleware with \" + toOverride.priority + \" priority in \" + toOverride.step + \" step cannot be \" +\n (\"overridden by same-name middleware with \" + entry.priority + \" priority in \" + entry.step + \" step.\"));\n }\n absoluteEntries.splice(toOverrideIndex, 1);\n }\n entriesNameSet.add(name);\n }\n absoluteEntries.push(entry);\n },\n addRelativeTo: function (middleware, options) {\n var name = options.name, override = options.override;\n var entry = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ middleware: middleware }, options);\n if (name) {\n if (entriesNameSet.has(name)) {\n if (!override)\n throw new Error(\"Duplicate middleware name '\" + name + \"'\");\n var toOverrideIndex = relativeEntries.findIndex(function (entry) { return entry.name === name; });\n var toOverride = relativeEntries[toOverrideIndex];\n if (toOverride.toMiddleware !== entry.toMiddleware || toOverride.relation !== entry.relation) {\n throw new Error(\"\\\"\" + name + \"\\\" middleware \" + toOverride.relation + \" \\\"\" + toOverride.toMiddleware + \"\\\" middleware cannot be overridden \" +\n (\"by same-name middleware \" + entry.relation + \" \\\"\" + entry.toMiddleware + \"\\\" middleware.\"));\n }\n relativeEntries.splice(toOverrideIndex, 1);\n }\n entriesNameSet.add(name);\n }\n relativeEntries.push(entry);\n },\n clone: function () { return cloneTo(constructStack()); },\n use: function (plugin) {\n plugin.applyToStack(stack);\n },\n remove: function (toRemove) {\n if (typeof toRemove === \"string\")\n return removeByName(toRemove);\n else\n return removeByReference(toRemove);\n },\n removeByTag: function (toRemove) {\n var isRemoved = false;\n var filterCb = function (entry) {\n var tags = entry.tags, name = entry.name;\n if (tags && tags.includes(toRemove)) {\n if (name)\n entriesNameSet.delete(name);\n isRemoved = true;\n return false;\n }\n return true;\n };\n absoluteEntries = absoluteEntries.filter(filterCb);\n relativeEntries = relativeEntries.filter(filterCb);\n return isRemoved;\n },\n concat: function (from) {\n var cloned = cloneTo(constructStack());\n cloned.use(from);\n return cloned;\n },\n applyToStack: cloneTo,\n resolve: function (handler, context) {\n var e_1, _a;\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(getMiddlewareList().reverse()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var middleware = _c.value;\n handler = middleware(handler, context);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return handler;\n },\n };\n return stack;\n};\nvar stepWeights = {\n initialize: 5,\n serialize: 4,\n build: 3,\n finalizeRequest: 2,\n deserialize: 1,\n};\nvar priorityWeights = {\n high: 3,\n normal: 2,\n low: 1,\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTWlkZGxld2FyZVN0YWNrLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL01pZGRsZXdhcmVTdGFjay50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBZ0JBLE1BQU0sQ0FBQyxJQUFNLGNBQWMsR0FBRztJQUM1QixJQUFJLGVBQWUsR0FBNkMsRUFBRSxDQUFDO0lBQ25FLElBQUksZUFBZSxHQUE2QyxFQUFFLENBQUM7SUFDbkUsSUFBTSxjQUFjLEdBQWdCLElBQUksR0FBRyxFQUFFLENBQUM7SUFFOUMsSUFBTSxJQUFJLEdBQUcsVUFBbUQsT0FBWTtRQUMxRSxPQUFBLE9BQU8sQ0FBQyxJQUFJLENBQ1YsVUFBQyxDQUFDLEVBQUUsQ0FBQztZQUNILE9BQUEsV0FBVyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxXQUFXLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQztnQkFDekMsZUFBZSxDQUFDLENBQUMsQ0FBQyxRQUFRLElBQUksUUFBUSxDQUFDLEdBQUcsZUFBZSxDQUFDLENBQUMsQ0FBQyxRQUFRLElBQUksUUFBUSxDQUFDO1FBRGpGLENBQ2lGLENBQ3BGO0lBSkQsQ0FJQyxDQUFDO0lBRUosSUFBTSxZQUFZLEdBQUcsVUFBQyxRQUFnQjtRQUNwQyxJQUFJLFNBQVMsR0FBRyxLQUFLLENBQUM7UUFDdEIsSUFBTSxRQUFRLEdBQUcsVUFBQyxLQUFxQztZQUNyRCxJQUFJLEtBQUssQ0FBQyxJQUFJLElBQUksS0FBSyxDQUFDLElBQUksS0FBSyxRQUFRLEVBQUU7Z0JBQ3pDLFNBQVMsR0FBRyxJQUFJLENBQUM7Z0JBQ2pCLGNBQWMsQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLENBQUM7Z0JBQ2hDLE9BQU8sS0FBSyxDQUFDO2FBQ2Q7WUFDRCxPQUFPLElBQUksQ0FBQztRQUNkLENBQUMsQ0FBQztRQUNGLGVBQWUsR0FBRyxlQUFlLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQ25ELGVBQWUsR0FBRyxlQUFlLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQ25ELE9BQU8sU0FBUyxDQUFDO0lBQ25CLENBQUMsQ0FBQztJQUVGLElBQU0saUJBQWlCLEdBQUcsVUFBQyxRQUF1QztRQUNoRSxJQUFJLFNBQVMsR0FBRyxLQUFLLENBQUM7UUFDdEIsSUFBTSxRQUFRLEdBQUcsVUFBQyxLQUFxQztZQUNyRCxJQUFJLEtBQUssQ0FBQyxVQUFVLEtBQUssUUFBUSxFQUFFO2dCQUNqQyxTQUFTLEdBQUcsSUFBSSxDQUFDO2dCQUNqQixJQUFJLEtBQUssQ0FBQyxJQUFJO29CQUFFLGNBQWMsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxDQUFDO2dCQUNsRCxPQUFPLEtBQUssQ0FBQzthQUNkO1lBQ0QsT0FBTyxJQUFJLENBQUM7UUFDZCxDQUFDLENBQUM7UUFDRixlQUFlLEdBQUcsZUFBZSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUNuRCxlQUFlLEdBQUcsZUFBZSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUNuRCxPQUFPLFNBQVMsQ0FBQztJQUNuQixDQUFDLENBQUM7SUFFRixJQUFNLE9BQU8sR0FBRyxVQUNkLE9BQStDO1FBRS9DLGVBQWUsQ0FBQyxPQUFPLENBQUMsVUFBQyxLQUFLO1lBQzVCLFlBQVk7WUFDWixPQUFPLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxVQUFVLGVBQU8sS0FBSyxFQUFHLENBQUM7UUFDOUMsQ0FBQyxDQUFDLENBQUM7UUFDSCxlQUFlLENBQUMsT0FBTyxDQUFDLFVBQUMsS0FBSztZQUM1QixZQUFZO1lBQ1osT0FBTyxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsVUFBVSxlQUFPLEtBQUssRUFBRyxDQUFDO1FBQ3hELENBQUMsQ0FBQyxDQUFDO1FBQ0gsT0FBTyxPQUFPLENBQUM7SUFDakIsQ0FBQyxDQUFDO0lBRUYsSUFBTSw0QkFBNEIsR0FBRyxVQUNuQyxJQUErRDtRQUUvRCxJQUFNLHNCQUFzQixHQUFxQyxFQUFFLENBQUM7UUFDcEUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsVUFBQyxLQUFLO1lBQ3hCLElBQUksS0FBSyxDQUFDLE1BQU0sQ0FBQyxNQUFNLEtBQUssQ0FBQyxJQUFJLEtBQUssQ0FBQyxLQUFLLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRTtnQkFDekQsc0JBQXNCLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO2FBQ3BDO2lCQUFNO2dCQUNMLHNCQUFzQixDQUFDLElBQUksT0FBM0Isc0JBQXNCLFdBQVMsNEJBQTRCLENBQUMsS0FBSyxDQUFDLEdBQUU7YUFDckU7UUFDSCxDQUFDLENBQUMsQ0FBQztRQUNILHNCQUFzQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUNsQyxJQUFJLENBQUMsS0FBSyxDQUFDLE9BQU8sRUFBRSxDQUFDLE9BQU8sQ0FBQyxVQUFDLEtBQUs7WUFDakMsSUFBSSxLQUFLLENBQUMsTUFBTSxDQUFDLE1BQU0sS0FBSyxDQUFDLElBQUksS0FBSyxDQUFDLEtBQUssQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFO2dCQUN6RCxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7YUFDcEM7aUJBQU07Z0JBQ0wsc0JBQXNCLENBQUMsSUFBSSxPQUEzQixzQkFBc0IsV0FBUyw0QkFBNEIsQ0FBQyxLQUFLLENBQUMsR0FBRTthQUNyRTtRQUNILENBQUMsQ0FBQyxDQUFDO1FBQ0gsT0FBTyxzQkFBc0IsQ0FBQztJQUNoQyxDQUFDLENBQUM7SUFFRjs7T0FFRztJQUNILElBQU0saUJBQWlCLEdBQUc7UUFDeEIsSUFBTSx5QkFBeUIsR0FBd0UsRUFBRSxDQUFDO1FBQzFHLElBQU0seUJBQXlCLEdBQXdFLEVBQUUsQ0FBQztRQUMxRyxJQUFNLHdCQUF3QixHQUUxQixFQUFFLENBQUM7UUFFUCxlQUFlLENBQUMsT0FBTyxDQUFDLFVBQUMsS0FBSztZQUM1QixJQUFNLGVBQWUseUJBQ2hCLEtBQUssS0FDUixNQUFNLEVBQUUsRUFBRSxFQUNWLEtBQUssRUFBRSxFQUFFLEdBQ1YsQ0FBQztZQUNGLElBQUksZUFBZSxDQUFDLElBQUk7Z0JBQUUsd0JBQXdCLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxHQUFHLGVBQWUsQ0FBQztZQUMzRix5QkFBeUIsQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDbEQsQ0FBQyxDQUFDLENBQUM7UUFFSCxlQUFlLENBQUMsT0FBTyxDQUFDLFVBQUMsS0FBSztZQUM1QixJQUFNLGVBQWUseUJBQ2hCLEtBQUssS0FDUixNQUFNLEVBQUUsRUFBRSxFQUNWLEtBQUssRUFBRSxFQUFFLEdBQ1YsQ0FBQztZQUNGLElBQUksZUFBZSxDQUFDLElBQUk7Z0JBQUUsd0JBQXdCLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxHQUFHLGVBQWUsQ0FBQztZQUMzRix5QkFBeUIsQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDbEQsQ0FBQyxDQUFDLENBQUM7UUFFSCx5QkFBeUIsQ0FBQyxPQUFPLENBQUMsVUFBQyxLQUFLO1lBQ3RDLElBQUksS0FBSyxDQUFDLFlBQVksRUFBRTtnQkFDdEIsSUFBTSxZQUFZLEdBQUcsd0JBQXdCLENBQUMsS0FBSyxDQUFDLFlBQVksQ0FBQyxDQUFDO2dCQUNsRSxJQUFJLFlBQVksS0FBSyxTQUFTLEVBQUU7b0JBQzlCLE1BQU0sSUFBSSxLQUFLLENBQ1YsS0FBSyxDQUFDLFlBQVksbUNBQTZCLEtBQUssQ0FBQyxJQUFJLElBQUksV0FBVyxxQkFBZSxLQUFLLENBQUMsUUFBUSxTQUN0RyxLQUFLLENBQUMsWUFDTixDQUNILENBQUM7aUJBQ0g7Z0JBQ0QsSUFBSSxLQUFLLENBQUMsUUFBUSxLQUFLLE9BQU8sRUFBRTtvQkFDOUIsWUFBWSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7aUJBQ2hDO2dCQUNELElBQUksS0FBSyxDQUFDLFFBQVEsS0FBSyxRQUFRLEVBQUU7b0JBQy9CLFlBQVksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO2lCQUNqQzthQUNGO1FBQ0gsQ0FBQyxDQUFDLENBQUM7UUFFSCxJQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMseUJBQXlCLENBQUM7YUFDOUMsR0FBRyxDQUFDLDRCQUE0QixDQUFDO2FBQ2pDLE1BQU0sQ0FBQyxVQUFDLFNBQVMsRUFBRSxzQkFBc0I7WUFDeEMsc0NBQXNDO1lBQ3RDLFNBQVMsQ0FBQyxJQUFJLE9BQWQsU0FBUyxXQUFTLHNCQUFzQixHQUFFO1lBQzFDLE9BQU8sU0FBUyxDQUFDO1FBQ25CLENBQUMsRUFBRSxFQUFzQyxDQUFDLENBQUM7UUFDN0MsT0FBTyxTQUFTLENBQUMsR0FBRyxDQUFDLFVBQUMsS0FBSyxJQUFLLE9BQUEsS0FBSyxDQUFDLFVBQVUsRUFBaEIsQ0FBZ0IsQ0FBQyxDQUFDO0lBQ3BELENBQUMsQ0FBQztJQUVGLElBQU0sS0FBSyxHQUFHO1FBQ1osR0FBRyxFQUFFLFVBQUMsVUFBeUMsRUFBRSxPQUErQztZQUEvQyx3QkFBQSxFQUFBLFlBQStDO1lBQ3RGLElBQUEsSUFBSSxHQUFlLE9BQU8sS0FBdEIsRUFBRSxRQUFRLEdBQUssT0FBTyxTQUFaLENBQWE7WUFDbkMsSUFBTSxLQUFLLGNBQ1QsSUFBSSxFQUFFLFlBQVksRUFDbEIsUUFBUSxFQUFFLFFBQVEsRUFDbEIsVUFBVSxZQUFBLElBQ1AsT0FBTyxDQUNYLENBQUM7WUFDRixJQUFJLElBQUksRUFBRTtnQkFDUixJQUFJLGNBQWMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEVBQUU7b0JBQzVCLElBQUksQ0FBQyxRQUFRO3dCQUFFLE1BQU0sSUFBSSxLQUFLLENBQUMsZ0NBQThCLElBQUksTUFBRyxDQUFDLENBQUM7b0JBQ3RFLElBQU0sZUFBZSxHQUFHLGVBQWUsQ0FBQyxTQUFTLENBQUMsVUFBQyxLQUFLLElBQUssT0FBQSxLQUFLLENBQUMsSUFBSSxLQUFLLElBQUksRUFBbkIsQ0FBbUIsQ0FBQyxDQUFDO29CQUNsRixJQUFNLFVBQVUsR0FBRyxlQUFlLENBQUMsZUFBZSxDQUFDLENBQUM7b0JBQ3BELElBQUksVUFBVSxDQUFDLElBQUksS0FBSyxLQUFLLENBQUMsSUFBSSxJQUFJLFVBQVUsQ0FBQyxRQUFRLEtBQUssS0FBSyxDQUFDLFFBQVEsRUFBRTt3QkFDNUUsTUFBTSxJQUFJLEtBQUssQ0FDYixPQUFJLElBQUksMkJBQXFCLFVBQVUsQ0FBQyxRQUFRLHFCQUFnQixVQUFVLENBQUMsSUFBSSxxQkFBa0I7NkJBQy9GLDZDQUEyQyxLQUFLLENBQUMsUUFBUSxxQkFBZ0IsS0FBSyxDQUFDLElBQUksV0FBUSxDQUFBLENBQzlGLENBQUM7cUJBQ0g7b0JBQ0QsZUFBZSxDQUFDLE1BQU0sQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDLENBQUM7aUJBQzVDO2dCQUNELGNBQWMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLENBQUM7YUFDMUI7WUFDRCxlQUFlLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzlCLENBQUM7UUFFRCxhQUFhLEVBQUUsVUFBQyxVQUF5QyxFQUFFLE9BQTBDO1lBQzNGLElBQUEsSUFBSSxHQUFlLE9BQU8sS0FBdEIsRUFBRSxRQUFRLEdBQUssT0FBTyxTQUFaLENBQWE7WUFDbkMsSUFBTSxLQUFLLGNBQ1QsVUFBVSxZQUFBLElBQ1AsT0FBTyxDQUNYLENBQUM7WUFDRixJQUFJLElBQUksRUFBRTtnQkFDUixJQUFJLGNBQWMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEVBQUU7b0JBQzVCLElBQUksQ0FBQyxRQUFRO3dCQUFFLE1BQU0sSUFBSSxLQUFLLENBQUMsZ0NBQThCLElBQUksTUFBRyxDQUFDLENBQUM7b0JBQ3RFLElBQU0sZUFBZSxHQUFHLGVBQWUsQ0FBQyxTQUFTLENBQUMsVUFBQyxLQUFLLElBQUssT0FBQSxLQUFLLENBQUMsSUFBSSxLQUFLLElBQUksRUFBbkIsQ0FBbUIsQ0FBQyxDQUFDO29CQUNsRixJQUFNLFVBQVUsR0FBRyxlQUFlLENBQUMsZUFBZSxDQUFDLENBQUM7b0JBQ3BELElBQUksVUFBVSxDQUFDLFlBQVksS0FBSyxLQUFLLENBQUMsWUFBWSxJQUFJLFVBQVUsQ0FBQyxRQUFRLEtBQUssS0FBSyxDQUFDLFFBQVEsRUFBRTt3QkFDNUYsTUFBTSxJQUFJLEtBQUssQ0FDYixPQUFJLElBQUksc0JBQWdCLFVBQVUsQ0FBQyxRQUFRLFdBQUssVUFBVSxDQUFDLFlBQVksd0NBQW9DOzZCQUN6Ryw2QkFBMkIsS0FBSyxDQUFDLFFBQVEsV0FBSyxLQUFLLENBQUMsWUFBWSxtQkFBZSxDQUFBLENBQ2xGLENBQUM7cUJBQ0g7b0JBQ0QsZUFBZSxDQUFDLE1BQU0sQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDLENBQUM7aUJBQzVDO2dCQUNELGNBQWMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLENBQUM7YUFDMUI7WUFDRCxlQUFlLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzlCLENBQUM7UUFFRCxLQUFLLEVBQUUsY0FBTSxPQUFBLE9BQU8sQ0FBQyxjQUFjLEVBQWlCLENBQUMsRUFBeEMsQ0FBd0M7UUFFckQsR0FBRyxFQUFFLFVBQUMsTUFBZ0M7WUFDcEMsTUFBTSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUM3QixDQUFDO1FBRUQsTUFBTSxFQUFFLFVBQUMsUUFBZ0Q7WUFDdkQsSUFBSSxPQUFPLFFBQVEsS0FBSyxRQUFRO2dCQUFFLE9BQU8sWUFBWSxDQUFDLFFBQVEsQ0FBQyxDQUFDOztnQkFDM0QsT0FBTyxpQkFBaUIsQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUMxQyxDQUFDO1FBRUQsV0FBVyxFQUFFLFVBQUMsUUFBZ0I7WUFDNUIsSUFBSSxTQUFTLEdBQUcsS0FBSyxDQUFDO1lBQ3RCLElBQU0sUUFBUSxHQUFHLFVBQUMsS0FBcUM7Z0JBQzdDLElBQUEsSUFBSSxHQUFXLEtBQUssS0FBaEIsRUFBRSxJQUFJLEdBQUssS0FBSyxLQUFWLENBQVc7Z0JBQzdCLElBQUksSUFBSSxJQUFJLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLEVBQUU7b0JBQ25DLElBQUksSUFBSTt3QkFBRSxjQUFjLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDO29CQUN0QyxTQUFTLEdBQUcsSUFBSSxDQUFDO29CQUNqQixPQUFPLEtBQUssQ0FBQztpQkFDZDtnQkFDRCxPQUFPLElBQUksQ0FBQztZQUNkLENBQUMsQ0FBQztZQUNGLGVBQWUsR0FBRyxlQUFlLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQ25ELGVBQWUsR0FBRyxlQUFlLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQ25ELE9BQU8sU0FBUyxDQUFDO1FBQ25CLENBQUM7UUFFRCxNQUFNLEVBQUUsVUFDTixJQUE0QztZQUU1QyxJQUFNLE1BQU0sR0FBRyxPQUFPLENBQUMsY0FBYyxFQUF5QixDQUFDLENBQUM7WUFDaEUsTUFBTSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUNqQixPQUFPLE1BQU0sQ0FBQztRQUNoQixDQUFDO1FBRUQsWUFBWSxFQUFFLE9BQU87UUFFckIsT0FBTyxFQUFFLFVBQ1AsT0FBa0QsRUFDbEQsT0FBZ0M7OztnQkFFaEMsS0FBeUIsSUFBQSxLQUFBLFNBQUEsaUJBQWlCLEVBQUUsQ0FBQyxPQUFPLEVBQUUsQ0FBQSxnQkFBQSw0QkFBRTtvQkFBbkQsSUFBTSxVQUFVLFdBQUE7b0JBQ25CLE9BQU8sR0FBRyxVQUFVLENBQUMsT0FBcUMsRUFBRSxPQUFPLENBQVEsQ0FBQztpQkFDN0U7Ozs7Ozs7OztZQUNELE9BQU8sT0FBeUMsQ0FBQztRQUNuRCxDQUFDO0tBQ0YsQ0FBQztJQUNGLE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQyxDQUFDO0FBRUYsSUFBTSxXQUFXLEdBQThCO0lBQzdDLFVBQVUsRUFBRSxDQUFDO0lBQ2IsU0FBUyxFQUFFLENBQUM7SUFDWixLQUFLLEVBQUUsQ0FBQztJQUNSLGVBQWUsRUFBRSxDQUFDO0lBQ2xCLFdBQVcsRUFBRSxDQUFDO0NBQ2YsQ0FBQztBQUVGLElBQU0sZUFBZSxHQUFrQztJQUNyRCxJQUFJLEVBQUUsQ0FBQztJQUNQLE1BQU0sRUFBRSxDQUFDO0lBQ1QsR0FBRyxFQUFFLENBQUM7Q0FDUCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQWJzb2x1dGVMb2NhdGlvbixcbiAgRGVzZXJpYWxpemVIYW5kbGVyLFxuICBIYW5kbGVyLFxuICBIYW5kbGVyRXhlY3V0aW9uQ29udGV4dCxcbiAgSGFuZGxlck9wdGlvbnMsXG4gIE1pZGRsZXdhcmVTdGFjayxcbiAgTWlkZGxld2FyZVR5cGUsXG4gIFBsdWdnYWJsZSxcbiAgUHJpb3JpdHksXG4gIFJlbGF0aXZlTG9jYXRpb24sXG4gIFN0ZXAsXG59IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBBYnNvbHV0ZU1pZGRsZXdhcmVFbnRyeSwgTWlkZGxld2FyZUVudHJ5LCBOb3JtYWxpemVkLCBSZWxhdGl2ZU1pZGRsZXdhcmVFbnRyeSB9IGZyb20gXCIuL3R5cGVzXCI7XG5cbmV4cG9ydCBjb25zdCBjb25zdHJ1Y3RTdGFjayA9IDxJbnB1dCBleHRlbmRzIG9iamVjdCwgT3V0cHV0IGV4dGVuZHMgb2JqZWN0PigpOiBNaWRkbGV3YXJlU3RhY2s8SW5wdXQsIE91dHB1dD4gPT4ge1xuICBsZXQgYWJzb2x1dGVFbnRyaWVzOiBBYnNvbHV0ZU1pZGRsZXdhcmVFbnRyeTxJbnB1dCwgT3V0cHV0PltdID0gW107XG4gIGxldCByZWxhdGl2ZUVudHJpZXM6IFJlbGF0aXZlTWlkZGxld2FyZUVudHJ5PElucHV0LCBPdXRwdXQ+W10gPSBbXTtcbiAgY29uc3QgZW50cmllc05hbWVTZXQ6IFNldDxzdHJpbmc+ID0gbmV3IFNldCgpO1xuXG4gIGNvbnN0IHNvcnQgPSA8VCBleHRlbmRzIEFic29sdXRlTWlkZGxld2FyZUVudHJ5PElucHV0LCBPdXRwdXQ+PihlbnRyaWVzOiBUW10pOiBUW10gPT5cbiAgICBlbnRyaWVzLnNvcnQoXG4gICAgICAoYSwgYikgPT5cbiAgICAgICAgc3RlcFdlaWdodHNbYi5zdGVwXSAtIHN0ZXBXZWlnaHRzW2Euc3RlcF0gfHxcbiAgICAgICAgcHJpb3JpdHlXZWlnaHRzW2IucHJpb3JpdHkgfHwgXCJub3JtYWxcIl0gLSBwcmlvcml0eVdlaWdodHNbYS5wcmlvcml0eSB8fCBcIm5vcm1hbFwiXVxuICAgICk7XG5cbiAgY29uc3QgcmVtb3ZlQnlOYW1lID0gKHRvUmVtb3ZlOiBzdHJpbmcpOiBib29sZWFuID0+IHtcbiAgICBsZXQgaXNSZW1vdmVkID0gZmFsc2U7XG4gICAgY29uc3QgZmlsdGVyQ2IgPSAoZW50cnk6IE1pZGRsZXdhcmVFbnRyeTxJbnB1dCwgT3V0cHV0Pik6IGJvb2xlYW4gPT4ge1xuICAgICAgaWYgKGVudHJ5Lm5hbWUgJiYgZW50cnkubmFtZSA9PT0gdG9SZW1vdmUpIHtcbiAgICAgICAgaXNSZW1vdmVkID0gdHJ1ZTtcbiAgICAgICAgZW50cmllc05hbWVTZXQuZGVsZXRlKHRvUmVtb3ZlKTtcbiAgICAgICAgcmV0dXJuIGZhbHNlO1xuICAgICAgfVxuICAgICAgcmV0dXJuIHRydWU7XG4gICAgfTtcbiAgICBhYnNvbHV0ZUVudHJpZXMgPSBhYnNvbHV0ZUVudHJpZXMuZmlsdGVyKGZpbHRlckNiKTtcbiAgICByZWxhdGl2ZUVudHJpZXMgPSByZWxhdGl2ZUVudHJpZXMuZmlsdGVyKGZpbHRlckNiKTtcbiAgICByZXR1cm4gaXNSZW1vdmVkO1xuICB9O1xuXG4gIGNvbnN0IHJlbW92ZUJ5UmVmZXJlbmNlID0gKHRvUmVtb3ZlOiBNaWRkbGV3YXJlVHlwZTxJbnB1dCwgT3V0cHV0Pik6IGJvb2xlYW4gPT4ge1xuICAgIGxldCBpc1JlbW92ZWQgPSBmYWxzZTtcbiAgICBjb25zdCBmaWx0ZXJDYiA9IChlbnRyeTogTWlkZGxld2FyZUVudHJ5PElucHV0LCBPdXRwdXQ+KTogYm9vbGVhbiA9PiB7XG4gICAgICBpZiAoZW50cnkubWlkZGxld2FyZSA9PT0gdG9SZW1vdmUpIHtcbiAgICAgICAgaXNSZW1vdmVkID0gdHJ1ZTtcbiAgICAgICAgaWYgKGVudHJ5Lm5hbWUpIGVudHJpZXNOYW1lU2V0LmRlbGV0ZShlbnRyeS5uYW1lKTtcbiAgICAgICAgcmV0dXJuIGZhbHNlO1xuICAgICAgfVxuICAgICAgcmV0dXJuIHRydWU7XG4gICAgfTtcbiAgICBhYnNvbHV0ZUVudHJpZXMgPSBhYnNvbHV0ZUVudHJpZXMuZmlsdGVyKGZpbHRlckNiKTtcbiAgICByZWxhdGl2ZUVudHJpZXMgPSByZWxhdGl2ZUVudHJpZXMuZmlsdGVyKGZpbHRlckNiKTtcbiAgICByZXR1cm4gaXNSZW1vdmVkO1xuICB9O1xuXG4gIGNvbnN0IGNsb25lVG8gPSA8SW5wdXRUeXBlIGV4dGVuZHMgSW5wdXQsIE91dHB1dFR5cGUgZXh0ZW5kcyBPdXRwdXQ+KFxuICAgIHRvU3RhY2s6IE1pZGRsZXdhcmVTdGFjazxJbnB1dFR5cGUsIE91dHB1dFR5cGU+XG4gICk6IE1pZGRsZXdhcmVTdGFjazxJbnB1dFR5cGUsIE91dHB1dFR5cGU+ID0+IHtcbiAgICBhYnNvbHV0ZUVudHJpZXMuZm9yRWFjaCgoZW50cnkpID0+IHtcbiAgICAgIC8vQHRzLWlnbm9yZVxuICAgICAgdG9TdGFjay5hZGQoZW50cnkubWlkZGxld2FyZSwgeyAuLi5lbnRyeSB9KTtcbiAgICB9KTtcbiAgICByZWxhdGl2ZUVudHJpZXMuZm9yRWFjaCgoZW50cnkpID0+IHtcbiAgICAgIC8vQHRzLWlnbm9yZVxuICAgICAgdG9TdGFjay5hZGRSZWxhdGl2ZVRvKGVudHJ5Lm1pZGRsZXdhcmUsIHsgLi4uZW50cnkgfSk7XG4gICAgfSk7XG4gICAgcmV0dXJuIHRvU3RhY2s7XG4gIH07XG5cbiAgY29uc3QgZXhwYW5kUmVsYXRpdmVNaWRkbGV3YXJlTGlzdCA9IChcbiAgICBmcm9tOiBOb3JtYWxpemVkPE1pZGRsZXdhcmVFbnRyeTxJbnB1dCwgT3V0cHV0PiwgSW5wdXQsIE91dHB1dD5cbiAgKTogTWlkZGxld2FyZUVudHJ5PElucHV0LCBPdXRwdXQ+W10gPT4ge1xuICAgIGNvbnN0IGV4cGFuZGVkTWlkZGxld2FyZUxpc3Q6IE1pZGRsZXdhcmVFbnRyeTxJbnB1dCwgT3V0cHV0PltdID0gW107XG4gICAgZnJvbS5iZWZvcmUuZm9yRWFjaCgoZW50cnkpID0+IHtcbiAgICAgIGlmIChlbnRyeS5iZWZvcmUubGVuZ3RoID09PSAwICYmIGVudHJ5LmFmdGVyLmxlbmd0aCA9PT0gMCkge1xuICAgICAgICBleHBhbmRlZE1pZGRsZXdhcmVMaXN0LnB1c2goZW50cnkpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgZXhwYW5kZWRNaWRkbGV3YXJlTGlzdC5wdXNoKC4uLmV4cGFuZFJlbGF0aXZlTWlkZGxld2FyZUxpc3QoZW50cnkpKTtcbiAgICAgIH1cbiAgICB9KTtcbiAgICBleHBhbmRlZE1pZGRsZXdhcmVMaXN0LnB1c2goZnJvbSk7XG4gICAgZnJvbS5hZnRlci5yZXZlcnNlKCkuZm9yRWFjaCgoZW50cnkpID0+IHtcbiAgICAgIGlmIChlbnRyeS5iZWZvcmUubGVuZ3RoID09PSAwICYmIGVudHJ5LmFmdGVyLmxlbmd0aCA9PT0gMCkge1xuICAgICAgICBleHBhbmRlZE1pZGRsZXdhcmVMaXN0LnB1c2goZW50cnkpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgZXhwYW5kZWRNaWRkbGV3YXJlTGlzdC5wdXNoKC4uLmV4cGFuZFJlbGF0aXZlTWlkZGxld2FyZUxpc3QoZW50cnkpKTtcbiAgICAgIH1cbiAgICB9KTtcbiAgICByZXR1cm4gZXhwYW5kZWRNaWRkbGV3YXJlTGlzdDtcbiAgfTtcblxuICAvKipcbiAgICogR2V0IGEgZmluYWwgbGlzdCBvZiBtaWRkbGV3YXJlIGluIHRoZSBvcmRlciBvZiBiZWluZyBleGVjdXRlZCBpbiB0aGUgcmVzb2x2ZWQgaGFuZGxlci5cbiAgICovXG4gIGNvbnN0IGdldE1pZGRsZXdhcmVMaXN0ID0gKCk6IEFycmF5PE1pZGRsZXdhcmVUeXBlPElucHV0LCBPdXRwdXQ+PiA9PiB7XG4gICAgY29uc3Qgbm9ybWFsaXplZEFic29sdXRlRW50cmllczogTm9ybWFsaXplZDxBYnNvbHV0ZU1pZGRsZXdhcmVFbnRyeTxJbnB1dCwgT3V0cHV0PiwgSW5wdXQsIE91dHB1dD5bXSA9IFtdO1xuICAgIGNvbnN0IG5vcm1hbGl6ZWRSZWxhdGl2ZUVudHJpZXM6IE5vcm1hbGl6ZWQ8UmVsYXRpdmVNaWRkbGV3YXJlRW50cnk8SW5wdXQsIE91dHB1dD4sIElucHV0LCBPdXRwdXQ+W10gPSBbXTtcbiAgICBjb25zdCBub3JtYWxpemVkRW50cmllc05hbWVNYXA6IHtcbiAgICAgIFttaWRkbGV3YXJlTmFtZTogc3RyaW5nXTogTm9ybWFsaXplZDxNaWRkbGV3YXJlRW50cnk8SW5wdXQsIE91dHB1dD4sIElucHV0LCBPdXRwdXQ+O1xuICAgIH0gPSB7fTtcblxuICAgIGFic29sdXRlRW50cmllcy5mb3JFYWNoKChlbnRyeSkgPT4ge1xuICAgICAgY29uc3Qgbm9ybWFsaXplZEVudHJ5ID0ge1xuICAgICAgICAuLi5lbnRyeSxcbiAgICAgICAgYmVmb3JlOiBbXSxcbiAgICAgICAgYWZ0ZXI6IFtdLFxuICAgICAgfTtcbiAgICAgIGlmIChub3JtYWxpemVkRW50cnkubmFtZSkgbm9ybWFsaXplZEVudHJpZXNOYW1lTWFwW25vcm1hbGl6ZWRFbnRyeS5uYW1lXSA9IG5vcm1hbGl6ZWRFbnRyeTtcbiAgICAgIG5vcm1hbGl6ZWRBYnNvbHV0ZUVudHJpZXMucHVzaChub3JtYWxpemVkRW50cnkpO1xuICAgIH0pO1xuXG4gICAgcmVsYXRpdmVFbnRyaWVzLmZvckVhY2goKGVudHJ5KSA9PiB7XG4gICAgICBjb25zdCBub3JtYWxpemVkRW50cnkgPSB7XG4gICAgICAgIC4uLmVudHJ5LFxuICAgICAgICBiZWZvcmU6IFtdLFxuICAgICAgICBhZnRlcjogW10sXG4gICAgICB9O1xuICAgICAgaWYgKG5vcm1hbGl6ZWRFbnRyeS5uYW1lKSBub3JtYWxpemVkRW50cmllc05hbWVNYXBbbm9ybWFsaXplZEVudHJ5Lm5hbWVdID0gbm9ybWFsaXplZEVudHJ5O1xuICAgICAgbm9ybWFsaXplZFJlbGF0aXZlRW50cmllcy5wdXNoKG5vcm1hbGl6ZWRFbnRyeSk7XG4gICAgfSk7XG5cbiAgICBub3JtYWxpemVkUmVsYXRpdmVFbnRyaWVzLmZvckVhY2goKGVudHJ5KSA9PiB7XG4gICAgICBpZiAoZW50cnkudG9NaWRkbGV3YXJlKSB7XG4gICAgICAgIGNvbnN0IHRvTWlkZGxld2FyZSA9IG5vcm1hbGl6ZWRFbnRyaWVzTmFtZU1hcFtlbnRyeS50b01pZGRsZXdhcmVdO1xuICAgICAgICBpZiAodG9NaWRkbGV3YXJlID09PSB1bmRlZmluZWQpIHtcbiAgICAgICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgICAgICBgJHtlbnRyeS50b01pZGRsZXdhcmV9IGlzIG5vdCBmb3VuZCB3aGVuIGFkZGluZyAke2VudHJ5Lm5hbWUgfHwgXCJhbm9ueW1vdXNcIn0gbWlkZGxld2FyZSAke2VudHJ5LnJlbGF0aW9ufSAke1xuICAgICAgICAgICAgICBlbnRyeS50b01pZGRsZXdhcmVcbiAgICAgICAgICAgIH1gXG4gICAgICAgICAgKTtcbiAgICAgICAgfVxuICAgICAgICBpZiAoZW50cnkucmVsYXRpb24gPT09IFwiYWZ0ZXJcIikge1xuICAgICAgICAgIHRvTWlkZGxld2FyZS5hZnRlci5wdXNoKGVudHJ5KTtcbiAgICAgICAgfVxuICAgICAgICBpZiAoZW50cnkucmVsYXRpb24gPT09IFwiYmVmb3JlXCIpIHtcbiAgICAgICAgICB0b01pZGRsZXdhcmUuYmVmb3JlLnB1c2goZW50cnkpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfSk7XG5cbiAgICBjb25zdCBtYWluQ2hhaW4gPSBzb3J0KG5vcm1hbGl6ZWRBYnNvbHV0ZUVudHJpZXMpXG4gICAgICAubWFwKGV4cGFuZFJlbGF0aXZlTWlkZGxld2FyZUxpc3QpXG4gICAgICAucmVkdWNlKCh3aG9sZUxpc3QsIGV4cGVuZGVkTWlkZGxld2FyZUxpc3QpID0+IHtcbiAgICAgICAgLy8gVE9ETzogUmVwbGFjZSBpdCB3aXRoIEFycmF5LmZsYXQoKTtcbiAgICAgICAgd2hvbGVMaXN0LnB1c2goLi4uZXhwZW5kZWRNaWRkbGV3YXJlTGlzdCk7XG4gICAgICAgIHJldHVybiB3aG9sZUxpc3Q7XG4gICAgICB9LCBbXSBhcyBNaWRkbGV3YXJlRW50cnk8SW5wdXQsIE91dHB1dD5bXSk7XG4gICAgcmV0dXJuIG1haW5DaGFpbi5tYXAoKGVudHJ5KSA9PiBlbnRyeS5taWRkbGV3YXJlKTtcbiAgfTtcblxuICBjb25zdCBzdGFjayA9IHtcbiAgICBhZGQ6IChtaWRkbGV3YXJlOiBNaWRkbGV3YXJlVHlwZTxJbnB1dCwgT3V0cHV0Piwgb3B0aW9uczogSGFuZGxlck9wdGlvbnMgJiBBYnNvbHV0ZUxvY2F0aW9uID0ge30pID0+IHtcbiAgICAgIGNvbnN0IHsgbmFtZSwgb3ZlcnJpZGUgfSA9IG9wdGlvbnM7XG4gICAgICBjb25zdCBlbnRyeTogQWJzb2x1dGVNaWRkbGV3YXJlRW50cnk8SW5wdXQsIE91dHB1dD4gPSB7XG4gICAgICAgIHN0ZXA6IFwiaW5pdGlhbGl6ZVwiLFxuICAgICAgICBwcmlvcml0eTogXCJub3JtYWxcIixcbiAgICAgICAgbWlkZGxld2FyZSxcbiAgICAgICAgLi4ub3B0aW9ucyxcbiAgICAgIH07XG4gICAgICBpZiAobmFtZSkge1xuICAgICAgICBpZiAoZW50cmllc05hbWVTZXQuaGFzKG5hbWUpKSB7XG4gICAgICAgICAgaWYgKCFvdmVycmlkZSkgdGhyb3cgbmV3IEVycm9yKGBEdXBsaWNhdGUgbWlkZGxld2FyZSBuYW1lICcke25hbWV9J2ApO1xuICAgICAgICAgIGNvbnN0IHRvT3ZlcnJpZGVJbmRleCA9IGFic29sdXRlRW50cmllcy5maW5kSW5kZXgoKGVudHJ5KSA9PiBlbnRyeS5uYW1lID09PSBuYW1lKTtcbiAgICAgICAgICBjb25zdCB0b092ZXJyaWRlID0gYWJzb2x1dGVFbnRyaWVzW3RvT3ZlcnJpZGVJbmRleF07XG4gICAgICAgICAgaWYgKHRvT3ZlcnJpZGUuc3RlcCAhPT0gZW50cnkuc3RlcCB8fCB0b092ZXJyaWRlLnByaW9yaXR5ICE9PSBlbnRyeS5wcmlvcml0eSkge1xuICAgICAgICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICAgICAgICBgXCIke25hbWV9XCIgbWlkZGxld2FyZSB3aXRoICR7dG9PdmVycmlkZS5wcmlvcml0eX0gcHJpb3JpdHkgaW4gJHt0b092ZXJyaWRlLnN0ZXB9IHN0ZXAgY2Fubm90IGJlIGAgK1xuICAgICAgICAgICAgICAgIGBvdmVycmlkZGVuIGJ5IHNhbWUtbmFtZSBtaWRkbGV3YXJlIHdpdGggJHtlbnRyeS5wcmlvcml0eX0gcHJpb3JpdHkgaW4gJHtlbnRyeS5zdGVwfSBzdGVwLmBcbiAgICAgICAgICAgICk7XG4gICAgICAgICAgfVxuICAgICAgICAgIGFic29sdXRlRW50cmllcy5zcGxpY2UodG9PdmVycmlkZUluZGV4LCAxKTtcbiAgICAgICAgfVxuICAgICAgICBlbnRyaWVzTmFtZVNldC5hZGQobmFtZSk7XG4gICAgICB9XG4gICAgICBhYnNvbHV0ZUVudHJpZXMucHVzaChlbnRyeSk7XG4gICAgfSxcblxuICAgIGFkZFJlbGF0aXZlVG86IChtaWRkbGV3YXJlOiBNaWRkbGV3YXJlVHlwZTxJbnB1dCwgT3V0cHV0Piwgb3B0aW9uczogSGFuZGxlck9wdGlvbnMgJiBSZWxhdGl2ZUxvY2F0aW9uKSA9PiB7XG4gICAgICBjb25zdCB7IG5hbWUsIG92ZXJyaWRlIH0gPSBvcHRpb25zO1xuICAgICAgY29uc3QgZW50cnk6IFJlbGF0aXZlTWlkZGxld2FyZUVudHJ5PElucHV0LCBPdXRwdXQ+ID0ge1xuICAgICAgICBtaWRkbGV3YXJlLFxuICAgICAgICAuLi5vcHRpb25zLFxuICAgICAgfTtcbiAgICAgIGlmIChuYW1lKSB7XG4gICAgICAgIGlmIChlbnRyaWVzTmFtZVNldC5oYXMobmFtZSkpIHtcbiAgICAgICAgICBpZiAoIW92ZXJyaWRlKSB0aHJvdyBuZXcgRXJyb3IoYER1cGxpY2F0ZSBtaWRkbGV3YXJlIG5hbWUgJyR7bmFtZX0nYCk7XG4gICAgICAgICAgY29uc3QgdG9PdmVycmlkZUluZGV4ID0gcmVsYXRpdmVFbnRyaWVzLmZpbmRJbmRleCgoZW50cnkpID0+IGVudHJ5Lm5hbWUgPT09IG5hbWUpO1xuICAgICAgICAgIGNvbnN0IHRvT3ZlcnJpZGUgPSByZWxhdGl2ZUVudHJpZXNbdG9PdmVycmlkZUluZGV4XTtcbiAgICAgICAgICBpZiAodG9PdmVycmlkZS50b01pZGRsZXdhcmUgIT09IGVudHJ5LnRvTWlkZGxld2FyZSB8fCB0b092ZXJyaWRlLnJlbGF0aW9uICE9PSBlbnRyeS5yZWxhdGlvbikge1xuICAgICAgICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICAgICAgICBgXCIke25hbWV9XCIgbWlkZGxld2FyZSAke3RvT3ZlcnJpZGUucmVsYXRpb259IFwiJHt0b092ZXJyaWRlLnRvTWlkZGxld2FyZX1cIiBtaWRkbGV3YXJlIGNhbm5vdCBiZSBvdmVycmlkZGVuIGAgK1xuICAgICAgICAgICAgICAgIGBieSBzYW1lLW5hbWUgbWlkZGxld2FyZSAke2VudHJ5LnJlbGF0aW9ufSBcIiR7ZW50cnkudG9NaWRkbGV3YXJlfVwiIG1pZGRsZXdhcmUuYFxuICAgICAgICAgICAgKTtcbiAgICAgICAgICB9XG4gICAgICAgICAgcmVsYXRpdmVFbnRyaWVzLnNwbGljZSh0b092ZXJyaWRlSW5kZXgsIDEpO1xuICAgICAgICB9XG4gICAgICAgIGVudHJpZXNOYW1lU2V0LmFkZChuYW1lKTtcbiAgICAgIH1cbiAgICAgIHJlbGF0aXZlRW50cmllcy5wdXNoKGVudHJ5KTtcbiAgICB9LFxuXG4gICAgY2xvbmU6ICgpID0+IGNsb25lVG8oY29uc3RydWN0U3RhY2s8SW5wdXQsIE91dHB1dD4oKSksXG5cbiAgICB1c2U6IChwbHVnaW46IFBsdWdnYWJsZTxJbnB1dCwgT3V0cHV0PikgPT4ge1xuICAgICAgcGx1Z2luLmFwcGx5VG9TdGFjayhzdGFjayk7XG4gICAgfSxcblxuICAgIHJlbW92ZTogKHRvUmVtb3ZlOiBNaWRkbGV3YXJlVHlwZTxJbnB1dCwgT3V0cHV0PiB8IHN0cmluZyk6IGJvb2xlYW4gPT4ge1xuICAgICAgaWYgKHR5cGVvZiB0b1JlbW92ZSA9PT0gXCJzdHJpbmdcIikgcmV0dXJuIHJlbW92ZUJ5TmFtZSh0b1JlbW92ZSk7XG4gICAgICBlbHNlIHJldHVybiByZW1vdmVCeVJlZmVyZW5jZSh0b1JlbW92ZSk7XG4gICAgfSxcblxuICAgIHJlbW92ZUJ5VGFnOiAodG9SZW1vdmU6IHN0cmluZyk6IGJvb2xlYW4gPT4ge1xuICAgICAgbGV0IGlzUmVtb3ZlZCA9IGZhbHNlO1xuICAgICAgY29uc3QgZmlsdGVyQ2IgPSAoZW50cnk6IE1pZGRsZXdhcmVFbnRyeTxJbnB1dCwgT3V0cHV0Pik6IGJvb2xlYW4gPT4ge1xuICAgICAgICBjb25zdCB7IHRhZ3MsIG5hbWUgfSA9IGVudHJ5O1xuICAgICAgICBpZiAodGFncyAmJiB0YWdzLmluY2x1ZGVzKHRvUmVtb3ZlKSkge1xuICAgICAgICAgIGlmIChuYW1lKSBlbnRyaWVzTmFtZVNldC5kZWxldGUobmFtZSk7XG4gICAgICAgICAgaXNSZW1vdmVkID0gdHJ1ZTtcbiAgICAgICAgICByZXR1cm4gZmFsc2U7XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIHRydWU7XG4gICAgICB9O1xuICAgICAgYWJzb2x1dGVFbnRyaWVzID0gYWJzb2x1dGVFbnRyaWVzLmZpbHRlcihmaWx0ZXJDYik7XG4gICAgICByZWxhdGl2ZUVudHJpZXMgPSByZWxhdGl2ZUVudHJpZXMuZmlsdGVyKGZpbHRlckNiKTtcbiAgICAgIHJldHVybiBpc1JlbW92ZWQ7XG4gICAgfSxcblxuICAgIGNvbmNhdDogPElucHV0VHlwZSBleHRlbmRzIElucHV0LCBPdXRwdXRUeXBlIGV4dGVuZHMgT3V0cHV0PihcbiAgICAgIGZyb206IE1pZGRsZXdhcmVTdGFjazxJbnB1dFR5cGUsIE91dHB1dFR5cGU+XG4gICAgKTogTWlkZGxld2FyZVN0YWNrPElucHV0VHlwZSwgT3V0cHV0VHlwZT4gPT4ge1xuICAgICAgY29uc3QgY2xvbmVkID0gY2xvbmVUbyhjb25zdHJ1Y3RTdGFjazxJbnB1dFR5cGUsIE91dHB1dFR5cGU+KCkpO1xuICAgICAgY2xvbmVkLnVzZShmcm9tKTtcbiAgICAgIHJldHVybiBjbG9uZWQ7XG4gICAgfSxcblxuICAgIGFwcGx5VG9TdGFjazogY2xvbmVUbyxcblxuICAgIHJlc29sdmU6IDxJbnB1dFR5cGUgZXh0ZW5kcyBJbnB1dCwgT3V0cHV0VHlwZSBleHRlbmRzIE91dHB1dD4oXG4gICAgICBoYW5kbGVyOiBEZXNlcmlhbGl6ZUhhbmRsZXI8SW5wdXRUeXBlLCBPdXRwdXRUeXBlPixcbiAgICAgIGNvbnRleHQ6IEhhbmRsZXJFeGVjdXRpb25Db250ZXh0XG4gICAgKTogSGFuZGxlcjxJbnB1dFR5cGUsIE91dHB1dFR5cGU+ID0+IHtcbiAgICAgIGZvciAoY29uc3QgbWlkZGxld2FyZSBvZiBnZXRNaWRkbGV3YXJlTGlzdCgpLnJldmVyc2UoKSkge1xuICAgICAgICBoYW5kbGVyID0gbWlkZGxld2FyZShoYW5kbGVyIGFzIEhhbmRsZXI8SW5wdXQsIE91dHB1dFR5cGU+LCBjb250ZXh0KSBhcyBhbnk7XG4gICAgICB9XG4gICAgICByZXR1cm4gaGFuZGxlciBhcyBIYW5kbGVyPElucHV0VHlwZSwgT3V0cHV0VHlwZT47XG4gICAgfSxcbiAgfTtcbiAgcmV0dXJuIHN0YWNrO1xufTtcblxuY29uc3Qgc3RlcFdlaWdodHM6IHsgW2tleSBpbiBTdGVwXTogbnVtYmVyIH0gPSB7XG4gIGluaXRpYWxpemU6IDUsXG4gIHNlcmlhbGl6ZTogNCxcbiAgYnVpbGQ6IDMsXG4gIGZpbmFsaXplUmVxdWVzdDogMixcbiAgZGVzZXJpYWxpemU6IDEsXG59O1xuXG5jb25zdCBwcmlvcml0eVdlaWdodHM6IHsgW2tleSBpbiBQcmlvcml0eV06IG51bWJlciB9ID0ge1xuICBoaWdoOiAzLFxuICBub3JtYWw6IDIsXG4gIGxvdzogMSxcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-stack/dist/es/MiddlewareStack.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-stack/dist/es/index.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-stack/dist/es/index.js ***! \*****************************************************************/ /*! exports provided: constructStack */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _MiddlewareStack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./MiddlewareStack */ \"./node_modules/@aws-sdk/middleware-stack/dist/es/MiddlewareStack.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"constructStack\", function() { return _MiddlewareStack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"]; });\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL01pZGRsZXdhcmVTdGFja1wiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-stack/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-user-agent/dist/es/configurations.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-user-agent/dist/es/configurations.js ***! \*******************************************************************************/ /*! exports provided: resolveUserAgentConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveUserAgentConfig\", function() { return resolveUserAgentConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nfunction resolveUserAgentConfig(input) {\n 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 });\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlndXJhdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvY29uZmlndXJhdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQWdCQSxNQUFNLFVBQVUsc0JBQXNCLENBQ3BDLEtBQW9EO0lBRXBELDZCQUNLLEtBQUssS0FDUixlQUFlLEVBQUUsT0FBTyxLQUFLLENBQUMsZUFBZSxLQUFLLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxlQUFlLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsZUFBZSxJQUM5RztBQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQcm92aWRlciwgVXNlckFnZW50IH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5leHBvcnQgaW50ZXJmYWNlIFVzZXJBZ2VudElucHV0Q29uZmlnIHtcbiAgLyoqXG4gICAqIFRoZSBjdXN0b20gdXNlciBhZ2VudCBoZWFkZXIgdGhhdCB3b3VsZCBiZSBhcHBlbmRlZCB0byBkZWZhdWx0IG9uZVxuICAgKi9cbiAgY3VzdG9tVXNlckFnZW50Pzogc3RyaW5nIHwgVXNlckFnZW50O1xufVxuaW50ZXJmYWNlIFByZXZpb3VzbHlSZXNvbHZlZCB7XG4gIGRlZmF1bHRVc2VyQWdlbnRQcm92aWRlcjogUHJvdmlkZXI8VXNlckFnZW50PjtcbiAgcnVudGltZTogc3RyaW5nO1xufVxuZXhwb3J0IGludGVyZmFjZSBVc2VyQWdlbnRSZXNvbHZlZENvbmZpZyB7XG4gIGRlZmF1bHRVc2VyQWdlbnRQcm92aWRlcjogUHJvdmlkZXI8VXNlckFnZW50PjtcbiAgY3VzdG9tVXNlckFnZW50PzogVXNlckFnZW50O1xuICBydW50aW1lOiBzdHJpbmc7XG59XG5leHBvcnQgZnVuY3Rpb24gcmVzb2x2ZVVzZXJBZ2VudENvbmZpZzxUPihcbiAgaW5wdXQ6IFQgJiBQcmV2aW91c2x5UmVzb2x2ZWQgJiBVc2VyQWdlbnRJbnB1dENvbmZpZ1xuKTogVCAmIFVzZXJBZ2VudFJlc29sdmVkQ29uZmlnIHtcbiAgcmV0dXJuIHtcbiAgICAuLi5pbnB1dCxcbiAgICBjdXN0b21Vc2VyQWdlbnQ6IHR5cGVvZiBpbnB1dC5jdXN0b21Vc2VyQWdlbnQgPT09IFwic3RyaW5nXCIgPyBbW2lucHV0LmN1c3RvbVVzZXJBZ2VudF1dIDogaW5wdXQuY3VzdG9tVXNlckFnZW50LFxuICB9O1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-user-agent/dist/es/configurations.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-user-agent/dist/es/constants.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-user-agent/dist/es/constants.js ***! \**************************************************************************/ /*! exports provided: USER_AGENT, X_AMZ_USER_AGENT, SPACE, UA_ESCAPE_REGEX */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"USER_AGENT\", function() { return USER_AGENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"X_AMZ_USER_AGENT\", function() { return X_AMZ_USER_AGENT; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SPACE\", function() { return SPACE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UA_ESCAPE_REGEX\", function() { return UA_ESCAPE_REGEX; });\nvar USER_AGENT = \"user-agent\";\nvar X_AMZ_USER_AGENT = \"x-amz-user-agent\";\nvar SPACE = \" \";\nvar UA_ESCAPE_REGEX = /[^\\!\\#\\$\\%\\&\\'\\*\\+\\-\\.\\^\\_\\`\\|\\~\\d\\w]/g;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsSUFBTSxVQUFVLEdBQUcsWUFBWSxDQUFDO0FBRXZDLE1BQU0sQ0FBQyxJQUFNLGdCQUFnQixHQUFHLGtCQUFrQixDQUFDO0FBRW5ELE1BQU0sQ0FBQyxJQUFNLEtBQUssR0FBRyxHQUFHLENBQUM7QUFFekIsTUFBTSxDQUFDLElBQU0sZUFBZSxHQUFHLHdDQUF3QyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IFVTRVJfQUdFTlQgPSBcInVzZXItYWdlbnRcIjtcblxuZXhwb3J0IGNvbnN0IFhfQU1aX1VTRVJfQUdFTlQgPSBcIngtYW16LXVzZXItYWdlbnRcIjtcblxuZXhwb3J0IGNvbnN0IFNQQUNFID0gXCIgXCI7XG5cbmV4cG9ydCBjb25zdCBVQV9FU0NBUEVfUkVHRVggPSAvW15cXCFcXCNcXCRcXCVcXCZcXCdcXCpcXCtcXC1cXC5cXF5cXF9cXGBcXHxcXH5cXGRcXHddL2c7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-user-agent/dist/es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js ***! \**********************************************************************/ /*! exports provided: resolveUserAgentConfig, userAgentMiddleware, getUserAgentMiddlewareOptions, getUserAgentPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _configurations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./configurations */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/configurations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveUserAgentConfig\", function() { return _configurations__WEBPACK_IMPORTED_MODULE_0__[\"resolveUserAgentConfig\"]; });\n\n/* harmony import */ var _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./user-agent-middleware */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/user-agent-middleware.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"userAgentMiddleware\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"userAgentMiddleware\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentMiddlewareOptions\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"getUserAgentMiddlewareOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentPlugin\", function() { return _user_agent_middleware__WEBPACK_IMPORTED_MODULE_1__[\"getUserAgentPlugin\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vY29uZmlndXJhdGlvbnNcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3VzZXItYWdlbnQtbWlkZGxld2FyZVwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-user-agent/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/middleware-user-agent/dist/es/user-agent-middleware.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/middleware-user-agent/dist/es/user-agent-middleware.js ***! \**************************************************************************************/ /*! exports provided: userAgentMiddleware, getUserAgentMiddlewareOptions, getUserAgentPlugin */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"userAgentMiddleware\", function() { return userAgentMiddleware; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentMiddlewareOptions\", function() { return getUserAgentMiddlewareOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserAgentPlugin\", function() { return getUserAgentPlugin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/middleware-user-agent/dist/es/constants.js\");\n\n\n\n/**\n * Build user agent header sections from:\n * 1. runtime-specific default user agent provider;\n * 2. custom user agent from `customUserAgent` client config;\n * 3. handler execution context set by internal SDK components;\n * The built user agent will be set to `x-amz-user-agent` header for ALL the\n * runtimes.\n * Please note that any override to the `user-agent` or `x-amz-user-agent` header\n * in the HTTP request is discouraged. Please use `customUserAgent` client\n * config or middleware setting the `userAgent` context to generate desired user\n * agent.\n */\nvar userAgentMiddleware = function (options) { return function (next, context) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, headers, userAgent, defaultUserAgent, customUserAgent, normalUAValue;\n var _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request))\n return [2 /*return*/, next(args)];\n headers = request.headers;\n userAgent = ((_a = context === null || context === void 0 ? void 0 : context.userAgent) === null || _a === void 0 ? void 0 : _a.map(escapeUserAgent)) || [];\n return [4 /*yield*/, options.defaultUserAgentProvider()];\n case 1:\n defaultUserAgent = (_c.sent()).map(escapeUserAgent);\n customUserAgent = ((_b = options === null || options === void 0 ? void 0 : options.customUserAgent) === null || _b === void 0 ? void 0 : _b.map(escapeUserAgent)) || [];\n // Set value to AWS-specific user agent header\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"X_AMZ_USER_AGENT\"]] = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(defaultUserAgent, userAgent, customUserAgent).join(_constants__WEBPACK_IMPORTED_MODULE_2__[\"SPACE\"]);\n normalUAValue = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(defaultUserAgent.filter(function (section) { return section.startsWith(\"aws-sdk-\"); }), customUserAgent).join(_constants__WEBPACK_IMPORTED_MODULE_2__[\"SPACE\"]);\n if (options.runtime !== \"browser\" && normalUAValue) {\n headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"USER_AGENT\"]] = headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"USER_AGENT\"]] ? headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"USER_AGENT\"]] + \" \" + normalUAValue : normalUAValue;\n }\n return [2 /*return*/, next(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, args), { request: request }))];\n }\n });\n}); }; }; };\n/**\n * Escape the each pair according to https://tools.ietf.org/html/rfc5234 and join the pair with pattern `name/version`.\n * User agent name may include prefix like `md/`, `api/`, `os/` etc., we should not escape the `/` after the prefix.\n * @private\n */\nvar escapeUserAgent = function (_a) {\n var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(_a, 2), name = _b[0], version = _b[1];\n var prefixSeparatorIndex = name.indexOf(\"/\");\n var prefix = name.substring(0, prefixSeparatorIndex); // If no prefix, prefix is just \"\"\n var uaName = name.substring(prefixSeparatorIndex + 1);\n if (prefix === \"api\") {\n uaName = uaName.toLowerCase();\n }\n return [prefix, uaName, version]\n .filter(function (item) { return item && item.length > 0; })\n .map(function (item) { return item === null || item === void 0 ? void 0 : item.replace(_constants__WEBPACK_IMPORTED_MODULE_2__[\"UA_ESCAPE_REGEX\"], \"_\"); })\n .join(\"/\");\n};\nvar getUserAgentMiddlewareOptions = {\n name: \"getUserAgentMiddleware\",\n step: \"build\",\n priority: \"low\",\n tags: [\"SET_USER_AGENT\", \"USER_AGENT\"],\n override: true,\n};\nvar getUserAgentPlugin = function (config) { return ({\n applyToStack: function (clientStack) {\n clientStack.add(userAgentMiddleware(config), getUserAgentMiddlewareOptions);\n },\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1hZ2VudC1taWRkbGV3YXJlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3VzZXItYWdlbnQtbWlkZGxld2FyZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBY3JELE9BQU8sRUFBRSxLQUFLLEVBQUUsZUFBZSxFQUFFLFVBQVUsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUVuRjs7Ozs7Ozs7Ozs7R0FXRztBQUNILE1BQU0sQ0FBQyxJQUFNLG1CQUFtQixHQUFHLFVBQUMsT0FBZ0MsSUFBSyxPQUFBLFVBQ3ZFLElBQTRCLEVBQzVCLE9BQWdDLElBQ0wsT0FBQSxVQUFPLElBQWdDOzs7Ozs7Z0JBQzFELE9BQU8sR0FBSyxJQUFJLFFBQVQsQ0FBVTtnQkFDekIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDO29CQUFFLHNCQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsRUFBQztnQkFDaEQsT0FBTyxHQUFLLE9BQU8sUUFBWixDQUFhO2dCQUN0QixTQUFTLEdBQUcsT0FBQSxPQUFPLGFBQVAsT0FBTyx1QkFBUCxPQUFPLENBQUUsU0FBUywwQ0FBRSxHQUFHLENBQUMsZUFBZSxNQUFLLEVBQUUsQ0FBQztnQkFDdkMscUJBQU0sT0FBTyxDQUFDLHdCQUF3QixFQUFFLEVBQUE7O2dCQUE1RCxnQkFBZ0IsR0FBRyxDQUFDLFNBQXdDLENBQUMsQ0FBQyxHQUFHLENBQUMsZUFBZSxDQUFDO2dCQUNsRixlQUFlLEdBQUcsT0FBQSxPQUFPLGFBQVAsT0FBTyx1QkFBUCxPQUFPLENBQUUsZUFBZSwwQ0FBRSxHQUFHLENBQUMsZUFBZSxNQUFLLEVBQUUsQ0FBQztnQkFDN0UsOENBQThDO2dCQUM5QyxPQUFPLENBQUMsZ0JBQWdCLENBQUMsR0FBRyxTQUFJLGdCQUFnQixFQUFLLFNBQVMsRUFBSyxlQUFlLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO2dCQUUxRixhQUFhLEdBQUcsU0FDakIsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLFVBQUMsT0FBTyxJQUFLLE9BQUEsT0FBTyxDQUFDLFVBQVUsQ0FBQyxVQUFVLENBQUMsRUFBOUIsQ0FBOEIsQ0FBQyxFQUNwRSxlQUFlLEVBQ2xCLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztnQkFDZCxJQUFJLE9BQU8sQ0FBQyxPQUFPLEtBQUssU0FBUyxJQUFJLGFBQWEsRUFBRTtvQkFDbEQsT0FBTyxDQUFDLFVBQVUsQ0FBQyxHQUFHLE9BQU8sQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUksT0FBTyxDQUFDLFVBQVUsQ0FBQyxTQUFJLGFBQWUsQ0FBQyxDQUFDLENBQUMsYUFBYSxDQUFDO2lCQUN2RztnQkFFRCxzQkFBTyxJQUFJLHVCQUNOLElBQUksS0FDUCxPQUFPLFNBQUEsSUFDUCxFQUFDOzs7S0FDSixFQXRCNEIsQ0FzQjVCLEVBekJ3RSxDQXlCeEUsQ0FBQztBQUVGOzs7O0dBSUc7QUFDSCxJQUFNLGVBQWUsR0FBRyxVQUFDLEVBQThCO1FBQTlCLEtBQUEsYUFBOEIsRUFBN0IsSUFBSSxRQUFBLEVBQUUsT0FBTyxRQUFBO0lBQ3JDLElBQU0sb0JBQW9CLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUMvQyxJQUFNLE1BQU0sR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxvQkFBb0IsQ0FBQyxDQUFDLENBQUMsa0NBQWtDO0lBQzFGLElBQUksTUFBTSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsb0JBQW9CLEdBQUcsQ0FBQyxDQUFDLENBQUM7SUFDdEQsSUFBSSxNQUFNLEtBQUssS0FBSyxFQUFFO1FBQ3BCLE1BQU0sR0FBRyxNQUFNLENBQUMsV0FBVyxFQUFFLENBQUM7S0FDL0I7SUFDRCxPQUFPLENBQUMsTUFBTSxFQUFFLE1BQU0sRUFBRSxPQUFPLENBQUM7U0FDN0IsTUFBTSxDQUFDLFVBQUMsSUFBSSxJQUFLLE9BQUEsSUFBSSxJQUFJLElBQUksQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUF2QixDQUF1QixDQUFDO1NBQ3pDLEdBQUcsQ0FBQyxVQUFDLElBQUksV0FBSyxJQUFJLGFBQUosSUFBSSx1QkFBSixJQUFJLENBQUUsT0FBTyxDQUFDLGVBQWUsRUFBRSxHQUFHLElBQUMsQ0FBQztTQUNsRCxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7QUFDZixDQUFDLENBQUM7QUFFRixNQUFNLENBQUMsSUFBTSw2QkFBNkIsR0FBMkM7SUFDbkYsSUFBSSxFQUFFLHdCQUF3QjtJQUM5QixJQUFJLEVBQUUsT0FBTztJQUNiLFFBQVEsRUFBRSxLQUFLO0lBQ2YsSUFBSSxFQUFFLENBQUMsZ0JBQWdCLEVBQUUsWUFBWSxDQUFDO0lBQ3RDLFFBQVEsRUFBRSxJQUFJO0NBQ2YsQ0FBQztBQUVGLE1BQU0sQ0FBQyxJQUFNLGtCQUFrQixHQUFHLFVBQUMsTUFBK0IsSUFBMEIsT0FBQSxDQUFDO0lBQzNGLFlBQVksRUFBRSxVQUFDLFdBQVc7UUFDeEIsV0FBVyxDQUFDLEdBQUcsQ0FBQyxtQkFBbUIsQ0FBQyxNQUFNLENBQUMsRUFBRSw2QkFBNkIsQ0FBQyxDQUFDO0lBQzlFLENBQUM7Q0FDRixDQUFDLEVBSjBGLENBSTFGLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwUmVxdWVzdCB9IGZyb20gXCJAYXdzLXNkay9wcm90b2NvbC1odHRwXCI7XG5pbXBvcnQge1xuICBBYnNvbHV0ZUxvY2F0aW9uLFxuICBCdWlsZEhhbmRsZXIsXG4gIEJ1aWxkSGFuZGxlckFyZ3VtZW50cyxcbiAgQnVpbGRIYW5kbGVyT3B0aW9ucyxcbiAgQnVpbGRIYW5kbGVyT3V0cHV0LFxuICBIYW5kbGVyRXhlY3V0aW9uQ29udGV4dCxcbiAgTWV0YWRhdGFCZWFyZXIsXG4gIFBsdWdnYWJsZSxcbiAgVXNlckFnZW50UGFpcixcbn0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5cbmltcG9ydCB7IFVzZXJBZ2VudFJlc29sdmVkQ29uZmlnIH0gZnJvbSBcIi4vY29uZmlndXJhdGlvbnNcIjtcbmltcG9ydCB7IFNQQUNFLCBVQV9FU0NBUEVfUkVHRVgsIFVTRVJfQUdFTlQsIFhfQU1aX1VTRVJfQUdFTlQgfSBmcm9tIFwiLi9jb25zdGFudHNcIjtcblxuLyoqXG4gKiBCdWlsZCB1c2VyIGFnZW50IGhlYWRlciBzZWN0aW9ucyBmcm9tOlxuICogMS4gcnVudGltZS1zcGVjaWZpYyBkZWZhdWx0IHVzZXIgYWdlbnQgcHJvdmlkZXI7XG4gKiAyLiBjdXN0b20gdXNlciBhZ2VudCBmcm9tIGBjdXN0b21Vc2VyQWdlbnRgIGNsaWVudCBjb25maWc7XG4gKiAzLiBoYW5kbGVyIGV4ZWN1dGlvbiBjb250ZXh0IHNldCBieSBpbnRlcm5hbCBTREsgY29tcG9uZW50cztcbiAqIFRoZSBidWlsdCB1c2VyIGFnZW50IHdpbGwgYmUgc2V0IHRvIGB4LWFtei11c2VyLWFnZW50YCBoZWFkZXIgZm9yIEFMTCB0aGVcbiAqIHJ1bnRpbWVzLlxuICogUGxlYXNlIG5vdGUgdGhhdCBhbnkgb3ZlcnJpZGUgdG8gdGhlIGB1c2VyLWFnZW50YCBvciBgeC1hbXotdXNlci1hZ2VudGAgaGVhZGVyXG4gKiBpbiB0aGUgSFRUUCByZXF1ZXN0IGlzIGRpc2NvdXJhZ2VkLiBQbGVhc2UgdXNlIGBjdXN0b21Vc2VyQWdlbnRgIGNsaWVudFxuICogY29uZmlnIG9yIG1pZGRsZXdhcmUgc2V0dGluZyB0aGUgYHVzZXJBZ2VudGAgY29udGV4dCB0byBnZW5lcmF0ZSBkZXNpcmVkIHVzZXJcbiAqIGFnZW50LlxuICovXG5leHBvcnQgY29uc3QgdXNlckFnZW50TWlkZGxld2FyZSA9IChvcHRpb25zOiBVc2VyQWdlbnRSZXNvbHZlZENvbmZpZykgPT4gPE91dHB1dCBleHRlbmRzIE1ldGFkYXRhQmVhcmVyPihcbiAgbmV4dDogQnVpbGRIYW5kbGVyPGFueSwgYW55PixcbiAgY29udGV4dDogSGFuZGxlckV4ZWN1dGlvbkNvbnRleHRcbik6IEJ1aWxkSGFuZGxlcjxhbnksIGFueT4gPT4gYXN5bmMgKGFyZ3M6IEJ1aWxkSGFuZGxlckFyZ3VtZW50czxhbnk+KTogUHJvbWlzZTxCdWlsZEhhbmRsZXJPdXRwdXQ8T3V0cHV0Pj4gPT4ge1xuICBjb25zdCB7IHJlcXVlc3QgfSA9IGFyZ3M7XG4gIGlmICghSHR0cFJlcXVlc3QuaXNJbnN0YW5jZShyZXF1ZXN0KSkgcmV0dXJuIG5leHQoYXJncyk7XG4gIGNvbnN0IHsgaGVhZGVycyB9ID0gcmVxdWVzdDtcbiAgY29uc3QgdXNlckFnZW50ID0gY29udGV4dD8udXNlckFnZW50Py5tYXAoZXNjYXBlVXNlckFnZW50KSB8fCBbXTtcbiAgY29uc3QgZGVmYXVsdFVzZXJBZ2VudCA9IChhd2FpdCBvcHRpb25zLmRlZmF1bHRVc2VyQWdlbnRQcm92aWRlcigpKS5tYXAoZXNjYXBlVXNlckFnZW50KTtcbiAgY29uc3QgY3VzdG9tVXNlckFnZW50ID0gb3B0aW9ucz8uY3VzdG9tVXNlckFnZW50Py5tYXAoZXNjYXBlVXNlckFnZW50KSB8fCBbXTtcbiAgLy8gU2V0IHZhbHVlIHRvIEFXUy1zcGVjaWZpYyB1c2VyIGFnZW50IGhlYWRlclxuICBoZWFkZXJzW1hfQU1aX1VTRVJfQUdFTlRdID0gWy4uLmRlZmF1bHRVc2VyQWdlbnQsIC4uLnVzZXJBZ2VudCwgLi4uY3VzdG9tVXNlckFnZW50XS5qb2luKFNQQUNFKTtcbiAgLy8gR2V0IHZhbHVlIHRvIGJlIHNlbnQgd2l0aCBub24tQVdTLXNwZWNpZmljIHVzZXIgYWdlbnQgaGVhZGVyLlxuICBjb25zdCBub3JtYWxVQVZhbHVlID0gW1xuICAgIC4uLmRlZmF1bHRVc2VyQWdlbnQuZmlsdGVyKChzZWN0aW9uKSA9PiBzZWN0aW9uLnN0YXJ0c1dpdGgoXCJhd3Mtc2RrLVwiKSksXG4gICAgLi4uY3VzdG9tVXNlckFnZW50LFxuICBdLmpvaW4oU1BBQ0UpO1xuICBpZiAob3B0aW9ucy5ydW50aW1lICE9PSBcImJyb3dzZXJcIiAmJiBub3JtYWxVQVZhbHVlKSB7XG4gICAgaGVhZGVyc1tVU0VSX0FHRU5UXSA9IGhlYWRlcnNbVVNFUl9BR0VOVF0gPyBgJHtoZWFkZXJzW1VTRVJfQUdFTlRdfSAke25vcm1hbFVBVmFsdWV9YCA6IG5vcm1hbFVBVmFsdWU7XG4gIH1cblxuICByZXR1cm4gbmV4dCh7XG4gICAgLi4uYXJncyxcbiAgICByZXF1ZXN0LFxuICB9KTtcbn07XG5cbi8qKlxuICogRXNjYXBlIHRoZSBlYWNoIHBhaXIgYWNjb3JkaW5nIHRvIGh0dHBzOi8vdG9vbHMuaWV0Zi5vcmcvaHRtbC9yZmM1MjM0IGFuZCBqb2luIHRoZSBwYWlyIHdpdGggcGF0dGVybiBgbmFtZS92ZXJzaW9uYC5cbiAqIFVzZXIgYWdlbnQgbmFtZSBtYXkgaW5jbHVkZSBwcmVmaXggbGlrZSBgbWQvYCwgYGFwaS9gLCBgb3MvYCBldGMuLCB3ZSBzaG91bGQgbm90IGVzY2FwZSB0aGUgYC9gIGFmdGVyIHRoZSBwcmVmaXguXG4gKiBAcHJpdmF0ZVxuICovXG5jb25zdCBlc2NhcGVVc2VyQWdlbnQgPSAoW25hbWUsIHZlcnNpb25dOiBVc2VyQWdlbnRQYWlyKTogc3RyaW5nID0+IHtcbiAgY29uc3QgcHJlZml4U2VwYXJhdG9ySW5kZXggPSBuYW1lLmluZGV4T2YoXCIvXCIpO1xuICBjb25zdCBwcmVmaXggPSBuYW1lLnN1YnN0cmluZygwLCBwcmVmaXhTZXBhcmF0b3JJbmRleCk7IC8vIElmIG5vIHByZWZpeCwgcHJlZml4IGlzIGp1c3QgXCJcIlxuICBsZXQgdWFOYW1lID0gbmFtZS5zdWJzdHJpbmcocHJlZml4U2VwYXJhdG9ySW5kZXggKyAxKTtcbiAgaWYgKHByZWZpeCA9PT0gXCJhcGlcIikge1xuICAgIHVhTmFtZSA9IHVhTmFtZS50b0xvd2VyQ2FzZSgpO1xuICB9XG4gIHJldHVybiBbcHJlZml4LCB1YU5hbWUsIHZlcnNpb25dXG4gICAgLmZpbHRlcigoaXRlbSkgPT4gaXRlbSAmJiBpdGVtLmxlbmd0aCA+IDApXG4gICAgLm1hcCgoaXRlbSkgPT4gaXRlbT8ucmVwbGFjZShVQV9FU0NBUEVfUkVHRVgsIFwiX1wiKSlcbiAgICAuam9pbihcIi9cIik7XG59O1xuXG5leHBvcnQgY29uc3QgZ2V0VXNlckFnZW50TWlkZGxld2FyZU9wdGlvbnM6IEJ1aWxkSGFuZGxlck9wdGlvbnMgJiBBYnNvbHV0ZUxvY2F0aW9uID0ge1xuICBuYW1lOiBcImdldFVzZXJBZ2VudE1pZGRsZXdhcmVcIixcbiAgc3RlcDogXCJidWlsZFwiLFxuICBwcmlvcml0eTogXCJsb3dcIixcbiAgdGFnczogW1wiU0VUX1VTRVJfQUdFTlRcIiwgXCJVU0VSX0FHRU5UXCJdLFxuICBvdmVycmlkZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBnZXRVc2VyQWdlbnRQbHVnaW4gPSAoY29uZmlnOiBVc2VyQWdlbnRSZXNvbHZlZENvbmZpZyk6IFBsdWdnYWJsZTxhbnksIGFueT4gPT4gKHtcbiAgYXBwbHlUb1N0YWNrOiAoY2xpZW50U3RhY2spID0+IHtcbiAgICBjbGllbnRTdGFjay5hZGQodXNlckFnZW50TWlkZGxld2FyZShjb25maWcpLCBnZXRVc2VyQWdlbnRNaWRkbGV3YXJlT3B0aW9ucyk7XG4gIH0sXG59KTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/middleware-user-agent/dist/es/user-agent-middleware.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/property-provider/dist/es/ProviderError.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/property-provider/dist/es/ProviderError.js ***! \**************************************************************************/ /*! exports provided: ProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return ProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\n/**\n * An error representing a failure of an individual credential provider.\n *\n * This error class has special meaning to the {@link chain} method. If a\n * provider in the chain is rejected with an error, the chain will only proceed\n * to the next provider if the value of the `tryNextLink` property on the error\n * is truthy. This allows individual providers to halt the chain and also\n * ensures the chain will stop if an entirely unexpected error is encountered.\n */\nvar ProviderError = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ProviderError, _super);\n function ProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message) || this;\n _this.tryNextLink = tryNextLink;\n return _this;\n }\n return ProviderError;\n}(Error));\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUHJvdmlkZXJFcnJvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9Qcm92aWRlckVycm9yLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQTs7Ozs7Ozs7R0FRRztBQUNIO0lBQW1DLGlDQUFLO0lBQ3RDLHVCQUFZLE9BQWUsRUFBa0IsV0FBMkI7UUFBM0IsNEJBQUEsRUFBQSxrQkFBMkI7UUFBeEUsWUFDRSxrQkFBTSxPQUFPLENBQUMsU0FDZjtRQUY0QyxpQkFBVyxHQUFYLFdBQVcsQ0FBZ0I7O0lBRXhFLENBQUM7SUFDSCxvQkFBQztBQUFELENBQUMsQUFKRCxDQUFtQyxLQUFLLEdBSXZDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBBbiBlcnJvciByZXByZXNlbnRpbmcgYSBmYWlsdXJlIG9mIGFuIGluZGl2aWR1YWwgY3JlZGVudGlhbCBwcm92aWRlci5cbiAqXG4gKiBUaGlzIGVycm9yIGNsYXNzIGhhcyBzcGVjaWFsIG1lYW5pbmcgdG8gdGhlIHtAbGluayBjaGFpbn0gbWV0aG9kLiBJZiBhXG4gKiBwcm92aWRlciBpbiB0aGUgY2hhaW4gaXMgcmVqZWN0ZWQgd2l0aCBhbiBlcnJvciwgdGhlIGNoYWluIHdpbGwgb25seSBwcm9jZWVkXG4gKiB0byB0aGUgbmV4dCBwcm92aWRlciBpZiB0aGUgdmFsdWUgb2YgdGhlIGB0cnlOZXh0TGlua2AgcHJvcGVydHkgb24gdGhlIGVycm9yXG4gKiBpcyB0cnV0aHkuIFRoaXMgYWxsb3dzIGluZGl2aWR1YWwgcHJvdmlkZXJzIHRvIGhhbHQgdGhlIGNoYWluIGFuZCBhbHNvXG4gKiBlbnN1cmVzIHRoZSBjaGFpbiB3aWxsIHN0b3AgaWYgYW4gZW50aXJlbHkgdW5leHBlY3RlZCBlcnJvciBpcyBlbmNvdW50ZXJlZC5cbiAqL1xuZXhwb3J0IGNsYXNzIFByb3ZpZGVyRXJyb3IgZXh0ZW5kcyBFcnJvciB7XG4gIGNvbnN0cnVjdG9yKG1lc3NhZ2U6IHN0cmluZywgcHVibGljIHJlYWRvbmx5IHRyeU5leHRMaW5rOiBib29sZWFuID0gdHJ1ZSkge1xuICAgIHN1cGVyKG1lc3NhZ2UpO1xuICB9XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/property-provider/dist/es/ProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/property-provider/dist/es/chain.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/property-provider/dist/es/chain.js ***! \******************************************************************/ /*! exports provided: chain */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return chain; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/property-provider/dist/es/ProviderError.js\");\n\n\n/**\n * Compose a single credential provider function from multiple credential\n * providers. The first provider in the argument list will always be invoked;\n * subsequent providers in the list will be invoked in the order in which the\n * were received if the preceding provider did not successfully resolve.\n *\n * If no providers were received or no provider resolves successfully, the\n * returned promise will be rejected.\n */\nfunction chain() {\n var providers = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n providers[_i] = arguments[_i];\n }\n return function () {\n var e_1, _a;\n var promise = Promise.reject(new _ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"](\"No providers in chain\"));\n var _loop_1 = function (provider) {\n promise = promise.catch(function (err) {\n if (err === null || err === void 0 ? void 0 : err.tryNextLink) {\n return provider();\n }\n throw err;\n });\n };\n try {\n for (var providers_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(providers), providers_1_1 = providers_1.next(); !providers_1_1.done; providers_1_1 = providers_1.next()) {\n var provider = providers_1_1.value;\n _loop_1(provider);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (providers_1_1 && !providers_1_1.done && (_a = providers_1.return)) _a.call(providers_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return promise;\n };\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhaW4uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvY2hhaW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUVBLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUVoRDs7Ozs7Ozs7R0FRRztBQUNILE1BQU0sVUFBVSxLQUFLO0lBQUksbUJBQWdDO1NBQWhDLFVBQWdDLEVBQWhDLHFCQUFnQyxFQUFoQyxJQUFnQztRQUFoQyw4QkFBZ0M7O0lBQ3ZELE9BQU87O1FBQ0wsSUFBSSxPQUFPLEdBQWUsT0FBTyxDQUFDLE1BQU0sQ0FBQyxJQUFJLGFBQWEsQ0FBQyx1QkFBdUIsQ0FBQyxDQUFDLENBQUM7Z0NBQzFFLFFBQVE7WUFDakIsT0FBTyxHQUFHLE9BQU8sQ0FBQyxLQUFLLENBQUMsVUFBQyxHQUFRO2dCQUMvQixJQUFJLEdBQUcsYUFBSCxHQUFHLHVCQUFILEdBQUcsQ0FBRSxXQUFXLEVBQUU7b0JBQ3BCLE9BQU8sUUFBUSxFQUFFLENBQUM7aUJBQ25CO2dCQUVELE1BQU0sR0FBRyxDQUFDO1lBQ1osQ0FBQyxDQUFDLENBQUM7OztZQVBMLEtBQXVCLElBQUEsY0FBQSxTQUFBLFNBQVMsQ0FBQSxvQ0FBQTtnQkFBM0IsSUFBTSxRQUFRLHNCQUFBO3dCQUFSLFFBQVE7YUFRbEI7Ozs7Ozs7OztRQUVELE9BQU8sT0FBTyxDQUFDO0lBQ2pCLENBQUMsQ0FBQztBQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQcm92aWRlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBQcm92aWRlckVycm9yIH0gZnJvbSBcIi4vUHJvdmlkZXJFcnJvclwiO1xuXG4vKipcbiAqIENvbXBvc2UgYSBzaW5nbGUgY3JlZGVudGlhbCBwcm92aWRlciBmdW5jdGlvbiBmcm9tIG11bHRpcGxlIGNyZWRlbnRpYWxcbiAqIHByb3ZpZGVycy4gVGhlIGZpcnN0IHByb3ZpZGVyIGluIHRoZSBhcmd1bWVudCBsaXN0IHdpbGwgYWx3YXlzIGJlIGludm9rZWQ7XG4gKiBzdWJzZXF1ZW50IHByb3ZpZGVycyBpbiB0aGUgbGlzdCB3aWxsIGJlIGludm9rZWQgaW4gdGhlIG9yZGVyIGluIHdoaWNoIHRoZVxuICogd2VyZSByZWNlaXZlZCBpZiB0aGUgcHJlY2VkaW5nIHByb3ZpZGVyIGRpZCBub3Qgc3VjY2Vzc2Z1bGx5IHJlc29sdmUuXG4gKlxuICogSWYgbm8gcHJvdmlkZXJzIHdlcmUgcmVjZWl2ZWQgb3Igbm8gcHJvdmlkZXIgcmVzb2x2ZXMgc3VjY2Vzc2Z1bGx5LCB0aGVcbiAqIHJldHVybmVkIHByb21pc2Ugd2lsbCBiZSByZWplY3RlZC5cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGNoYWluPFQ+KC4uLnByb3ZpZGVyczogQXJyYXk8UHJvdmlkZXI8VD4+KTogUHJvdmlkZXI8VD4ge1xuICByZXR1cm4gKCkgPT4ge1xuICAgIGxldCBwcm9taXNlOiBQcm9taXNlPFQ+ID0gUHJvbWlzZS5yZWplY3QobmV3IFByb3ZpZGVyRXJyb3IoXCJObyBwcm92aWRlcnMgaW4gY2hhaW5cIikpO1xuICAgIGZvciAoY29uc3QgcHJvdmlkZXIgb2YgcHJvdmlkZXJzKSB7XG4gICAgICBwcm9taXNlID0gcHJvbWlzZS5jYXRjaCgoZXJyOiBhbnkpID0+IHtcbiAgICAgICAgaWYgKGVycj8udHJ5TmV4dExpbmspIHtcbiAgICAgICAgICByZXR1cm4gcHJvdmlkZXIoKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHRocm93IGVycjtcbiAgICAgIH0pO1xuICAgIH1cblxuICAgIHJldHVybiBwcm9taXNlO1xuICB9O1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/property-provider/dist/es/chain.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/property-provider/dist/es/fromStatic.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/property-provider/dist/es/fromStatic.js ***! \***********************************************************************/ /*! exports provided: fromStatic */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return fromStatic; });\nvar fromStatic = function (staticValue) { return function () { return Promise.resolve(staticValue); }; };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZnJvbVN0YXRpYy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9mcm9tU3RhdGljLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sQ0FBQyxJQUFNLFVBQVUsR0FBRyxVQUFJLFdBQWMsSUFBa0IsT0FBQSxjQUFNLE9BQUEsT0FBTyxDQUFDLE9BQU8sQ0FBQyxXQUFXLENBQUMsRUFBNUIsQ0FBNEIsRUFBbEMsQ0FBa0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFByb3ZpZGVyIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5cbmV4cG9ydCBjb25zdCBmcm9tU3RhdGljID0gPFQ+KHN0YXRpY1ZhbHVlOiBUKTogUHJvdmlkZXI8VD4gPT4gKCkgPT4gUHJvbWlzZS5yZXNvbHZlKHN0YXRpY1ZhbHVlKTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/property-provider/dist/es/fromStatic.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/property-provider/dist/es/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/property-provider/dist/es/index.js ***! \******************************************************************/ /*! exports provided: chain, fromStatic, memoize, ProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _chain__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./chain */ \"./node_modules/@aws-sdk/property-provider/dist/es/chain.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return _chain__WEBPACK_IMPORTED_MODULE_0__[\"chain\"]; });\n\n/* harmony import */ var _fromStatic__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./fromStatic */ \"./node_modules/@aws-sdk/property-provider/dist/es/fromStatic.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return _fromStatic__WEBPACK_IMPORTED_MODULE_1__[\"fromStatic\"]; });\n\n/* harmony import */ var _memoize__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./memoize */ \"./node_modules/@aws-sdk/property-provider/dist/es/memoize.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return _memoize__WEBPACK_IMPORTED_MODULE_2__[\"memoize\"]; });\n\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/property-provider/dist/es/ProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return _ProviderError__WEBPACK_IMPORTED_MODULE_3__[\"ProviderError\"]; });\n\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxXQUFXLENBQUM7QUFDMUIsY0FBYyxpQkFBaUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL2NoYWluXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9mcm9tU3RhdGljXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9tZW1vaXplXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9Qcm92aWRlckVycm9yXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/property-provider/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/property-provider/dist/es/memoize.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/property-provider/dist/es/memoize.js ***! \********************************************************************/ /*! exports provided: memoize */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return memoize; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar memoize = function (provider, isExpired, requiresRefresh) {\n var result;\n var hasResult;\n if (isExpired === undefined) {\n // This is a static memoization; no need to incorporate refreshing\n return function () {\n if (!hasResult) {\n result = provider();\n hasResult = true;\n }\n return result;\n };\n }\n var isConstant = false;\n return function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var resolved;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!hasResult) {\n result = provider();\n hasResult = true;\n }\n if (isConstant) {\n return [2 /*return*/, result];\n }\n return [4 /*yield*/, result];\n case 1:\n resolved = _a.sent();\n if (requiresRefresh && !requiresRefresh(resolved)) {\n isConstant = true;\n return [2 /*return*/, resolved];\n }\n if (isExpired(resolved)) {\n return [2 /*return*/, (result = provider())];\n }\n return [2 /*return*/, resolved];\n }\n });\n }); };\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVtb2l6ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9tZW1vaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUEwQ0EsTUFBTSxDQUFDLElBQU0sT0FBTyxHQUFvQixVQUN0QyxRQUFxQixFQUNyQixTQUFvQyxFQUNwQyxlQUEwQztJQUUxQyxJQUFJLE1BQVcsQ0FBQztJQUNoQixJQUFJLFNBQWtCLENBQUM7SUFDdkIsSUFBSSxTQUFTLEtBQUssU0FBUyxFQUFFO1FBQzNCLGtFQUFrRTtRQUNsRSxPQUFPO1lBQ0wsSUFBSSxDQUFDLFNBQVMsRUFBRTtnQkFDZCxNQUFNLEdBQUcsUUFBUSxFQUFFLENBQUM7Z0JBQ3BCLFNBQVMsR0FBRyxJQUFJLENBQUM7YUFDbEI7WUFDRCxPQUFPLE1BQU0sQ0FBQztRQUNoQixDQUFDLENBQUM7S0FDSDtJQUVELElBQUksVUFBVSxHQUFHLEtBQUssQ0FBQztJQUV2QixPQUFPOzs7OztvQkFDTCxJQUFJLENBQUMsU0FBUyxFQUFFO3dCQUNkLE1BQU0sR0FBRyxRQUFRLEVBQUUsQ0FBQzt3QkFDcEIsU0FBUyxHQUFHLElBQUksQ0FBQztxQkFDbEI7b0JBQ0QsSUFBSSxVQUFVLEVBQUU7d0JBQ2Qsc0JBQU8sTUFBTSxFQUFDO3FCQUNmO29CQUVnQixxQkFBTSxNQUFNLEVBQUE7O29CQUF2QixRQUFRLEdBQUcsU0FBWTtvQkFDN0IsSUFBSSxlQUFlLElBQUksQ0FBQyxlQUFlLENBQUMsUUFBUSxDQUFDLEVBQUU7d0JBQ2pELFVBQVUsR0FBRyxJQUFJLENBQUM7d0JBQ2xCLHNCQUFPLFFBQVEsRUFBQztxQkFDakI7b0JBQ0QsSUFBSSxTQUFTLENBQUMsUUFBUSxDQUFDLEVBQUU7d0JBQ3ZCLHNCQUFPLENBQUMsTUFBTSxHQUFHLFFBQVEsRUFBRSxDQUFDLEVBQUM7cUJBQzlCO29CQUNELHNCQUFPLFFBQVEsRUFBQzs7O1NBQ2pCLENBQUM7QUFDSixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQcm92aWRlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbnRlcmZhY2UgTWVtb2l6ZU92ZXJsb2FkIHtcbiAgLyoqXG4gICAqXG4gICAqIERlY29yYXRlcyBhIHByb3ZpZGVyIGZ1bmN0aW9uIHdpdGggZWl0aGVyIHN0YXRpYyBtZW1vaXphdGlvbi5cbiAgICpcbiAgICogVG8gY3JlYXRlIGEgc3RhdGljYWxseSBtZW1vaXplZCBwcm92aWRlciwgc3VwcGx5IGEgcHJvdmlkZXIgYXMgdGhlIG9ubHlcbiAgICogYXJndW1lbnQgdG8gdGhpcyBmdW5jdGlvbi4gVGhlIHByb3ZpZGVyIHdpbGwgYmUgaW52b2tlZCBvbmNlLCBhbmQgYWxsXG4gICAqIGludm9jYXRpb25zIG9mIHRoZSBwcm92aWRlciByZXR1cm5lZCBieSBgbWVtb2l6ZWAgd2lsbCByZXR1cm4gdGhlIHNhbWVcbiAgICogcHJvbWlzZSBvYmplY3QuXG4gICAqXG4gICAqIEBwYXJhbSBwcm92aWRlciBUaGUgcHJvdmlkZXIgd2hvc2UgcmVzdWx0IHNob3VsZCBiZSBjYWNoZWQgaW5kZWZpbml0ZWx5LlxuICAgKi9cbiAgPFQ+KHByb3ZpZGVyOiBQcm92aWRlcjxUPik6IFByb3ZpZGVyPFQ+O1xuXG4gIC8qKlxuICAgKiBEZWNvcmF0ZXMgYSBwcm92aWRlciBmdW5jdGlvbiB3aXRoIHJlZnJlc2hpbmcgbWVtb2l6YXRpb24uXG4gICAqXG4gICAqIEBwYXJhbSBwcm92aWRlciAgICAgICAgICBUaGUgcHJvdmlkZXIgd2hvc2UgcmVzdWx0IHNob3VsZCBiZSBjYWNoZWQuXG4gICAqIEBwYXJhbSBpc0V4cGlyZWQgICAgICAgICBBIGZ1bmN0aW9uIHRoYXQgd2lsbCBldmFsdWF0ZSB0aGUgcmVzb2x2ZWQgdmFsdWUgYW5kXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICBkZXRlcm1pbmUgaWYgaXQgaXMgZXhwaXJlZC4gRm9yIGV4YW1wbGUsIHdoZW5cbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgIG1lbW9pemluZyBBV1MgY3JlZGVudGlhbCBwcm92aWRlcnMsIHRoaXMgZnVuY3Rpb25cbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgIHNob3VsZCByZXR1cm4gYHRydWVgIHdoZW4gdGhlIGNyZWRlbnRpYWwnc1xuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgZXhwaXJhdGlvbiBpcyBpbiB0aGUgcGFzdCAob3IgdmVyeSBuZWFyIGZ1dHVyZSkgYW5kXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICBgZmFsc2VgIG90aGVyd2lzZS5cbiAgICogQHBhcmFtIHJlcXVpcmVzUmVmcmVzaCAgIEEgZnVuY3Rpb24gdGhhdCB3aWxsIGV2YWx1YXRlIHRoZSByZXNvbHZlZCB2YWx1ZSBhbmRcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgIGRldGVybWluZSBpZiBpdCByZXByZXNlbnRzIHN0YXRpYyB2YWx1ZSBvciBvbmUgdGhhdFxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgd2lsbCBldmVudHVhbGx5IG5lZWQgdG8gYmUgcmVmcmVzaGVkLiBGb3IgZXhhbXBsZSxcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgIEFXUyBjcmVkZW50aWFscyB0aGF0IGhhdmUgbm8gZGVmaW5lZCBleHBpcmF0aW9uIHdpbGxcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgIG5ldmVyIG5lZWQgdG8gYmUgcmVmcmVzaGVkLCBzbyB0aGlzIGZ1bmN0aW9uIHdvdWxkXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gYHRydWVgIGlmIHRoZSBjcmVkZW50aWFscyByZXNvbHZlZCBieSB0aGVcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgIHVuZGVybHlpbmcgcHJvdmlkZXIgaGFkIGFuIGV4cGlyYXRpb24gYW5kIGBmYWxzZWBcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgIG90aGVyd2lzZS5cbiAgICovXG4gIDxUPihcbiAgICBwcm92aWRlcjogUHJvdmlkZXI8VD4sXG4gICAgaXNFeHBpcmVkOiAocmVzb2x2ZWQ6IFQpID0+IGJvb2xlYW4sXG4gICAgcmVxdWlyZXNSZWZyZXNoPzogKHJlc29sdmVkOiBUKSA9PiBib29sZWFuXG4gICk6IFByb3ZpZGVyPFQ+O1xufVxuXG5leHBvcnQgY29uc3QgbWVtb2l6ZTogTWVtb2l6ZU92ZXJsb2FkID0gPFQ+KFxuICBwcm92aWRlcjogUHJvdmlkZXI8VD4sXG4gIGlzRXhwaXJlZD86IChyZXNvbHZlZDogVCkgPT4gYm9vbGVhbixcbiAgcmVxdWlyZXNSZWZyZXNoPzogKHJlc29sdmVkOiBUKSA9PiBib29sZWFuXG4pOiBQcm92aWRlcjxUPiA9PiB7XG4gIGxldCByZXN1bHQ6IGFueTtcbiAgbGV0IGhhc1Jlc3VsdDogYm9vbGVhbjtcbiAgaWYgKGlzRXhwaXJlZCA9PT0gdW5kZWZpbmVkKSB7XG4gICAgLy8gVGhpcyBpcyBhIHN0YXRpYyBtZW1vaXphdGlvbjsgbm8gbmVlZCB0byBpbmNvcnBvcmF0ZSByZWZyZXNoaW5nXG4gICAgcmV0dXJuICgpID0+IHtcbiAgICAgIGlmICghaGFzUmVzdWx0KSB7XG4gICAgICAgIHJlc3VsdCA9IHByb3ZpZGVyKCk7XG4gICAgICAgIGhhc1Jlc3VsdCA9IHRydWU7XG4gICAgICB9XG4gICAgICByZXR1cm4gcmVzdWx0O1xuICAgIH07XG4gIH1cblxuICBsZXQgaXNDb25zdGFudCA9IGZhbHNlO1xuXG4gIHJldHVybiBhc3luYyAoKSA9PiB7XG4gICAgaWYgKCFoYXNSZXN1bHQpIHtcbiAgICAgIHJlc3VsdCA9IHByb3ZpZGVyKCk7XG4gICAgICBoYXNSZXN1bHQgPSB0cnVlO1xuICAgIH1cbiAgICBpZiAoaXNDb25zdGFudCkge1xuICAgICAgcmV0dXJuIHJlc3VsdDtcbiAgICB9XG5cbiAgICBjb25zdCByZXNvbHZlZCA9IGF3YWl0IHJlc3VsdDtcbiAgICBpZiAocmVxdWlyZXNSZWZyZXNoICYmICFyZXF1aXJlc1JlZnJlc2gocmVzb2x2ZWQpKSB7XG4gICAgICBpc0NvbnN0YW50ID0gdHJ1ZTtcbiAgICAgIHJldHVybiByZXNvbHZlZDtcbiAgICB9XG4gICAgaWYgKGlzRXhwaXJlZChyZXNvbHZlZCkpIHtcbiAgICAgIHJldHVybiAocmVzdWx0ID0gcHJvdmlkZXIoKSk7XG4gICAgfVxuICAgIHJldHVybiByZXNvbHZlZDtcbiAgfTtcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/property-provider/dist/es/memoize.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/protocol-http/dist/es/httpHandler.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/protocol-http/dist/es/httpHandler.js ***! \********************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHR0cEhhbmRsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaHR0cEhhbmRsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBIYW5kbGVyT3B0aW9ucywgUmVxdWVzdEhhbmRsZXIgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgSHR0cFJlcXVlc3QgfSBmcm9tIFwiLi9odHRwUmVxdWVzdFwiO1xuaW1wb3J0IHsgSHR0cFJlc3BvbnNlIH0gZnJvbSBcIi4vaHR0cFJlc3BvbnNlXCI7XG5cbmV4cG9ydCB0eXBlIEh0dHBIYW5kbGVyID0gUmVxdWVzdEhhbmRsZXI8SHR0cFJlcXVlc3QsIEh0dHBSZXNwb25zZSwgSHR0cEhhbmRsZXJPcHRpb25zPjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/protocol-http/dist/es/httpHandler.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/protocol-http/dist/es/httpRequest.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/protocol-http/dist/es/httpRequest.js ***! \********************************************************************/ /*! exports provided: HttpRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return HttpRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nvar HttpRequest = /** @class */ (function () {\n function HttpRequest(options) {\n this.method = options.method || \"GET\";\n this.hostname = options.hostname || \"localhost\";\n this.port = options.port;\n this.query = options.query || {};\n this.headers = options.headers || {};\n this.body = options.body;\n this.protocol = options.protocol\n ? options.protocol.substr(-1) !== \":\"\n ? options.protocol + \":\"\n : options.protocol\n : \"https:\";\n this.path = options.path ? (options.path.charAt(0) !== \"/\" ? \"/\" + options.path : options.path) : \"/\";\n }\n HttpRequest.isInstance = function (request) {\n //determine if request is a valid httpRequest\n if (!request)\n return false;\n var req = request;\n return (\"method\" in req &&\n \"protocol\" in req &&\n \"hostname\" in req &&\n \"path\" in req &&\n typeof req[\"query\"] === \"object\" &&\n typeof req[\"headers\"] === \"object\");\n };\n HttpRequest.prototype.clone = function () {\n var cloned = new HttpRequest(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, this.headers) }));\n if (cloned.query)\n cloned.query = cloneQuery(cloned.query);\n return cloned;\n };\n return HttpRequest;\n}());\n\nfunction cloneQuery(query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(param) : param, _a));\n }, {});\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHR0cFJlcXVlc3QuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaHR0cFJlcXVlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQU1BO0lBVUUscUJBQVksT0FBMkI7UUFDckMsSUFBSSxDQUFDLE1BQU0sR0FBRyxPQUFPLENBQUMsTUFBTSxJQUFJLEtBQUssQ0FBQztRQUN0QyxJQUFJLENBQUMsUUFBUSxHQUFHLE9BQU8sQ0FBQyxRQUFRLElBQUksV0FBVyxDQUFDO1FBQ2hELElBQUksQ0FBQyxJQUFJLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQztRQUN6QixJQUFJLENBQUMsS0FBSyxHQUFHLE9BQU8sQ0FBQyxLQUFLLElBQUksRUFBRSxDQUFDO1FBQ2pDLElBQUksQ0FBQyxPQUFPLEdBQUcsT0FBTyxDQUFDLE9BQU8sSUFBSSxFQUFFLENBQUM7UUFDckMsSUFBSSxDQUFDLElBQUksR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDO1FBQ3pCLElBQUksQ0FBQyxRQUFRLEdBQUcsT0FBTyxDQUFDLFFBQVE7WUFDOUIsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssR0FBRztnQkFDbkMsQ0FBQyxDQUFJLE9BQU8sQ0FBQyxRQUFRLE1BQUc7Z0JBQ3hCLENBQUMsQ0FBQyxPQUFPLENBQUMsUUFBUTtZQUNwQixDQUFDLENBQUMsUUFBUSxDQUFDO1FBQ2IsSUFBSSxDQUFDLElBQUksR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDLENBQUMsTUFBSSxPQUFPLENBQUMsSUFBTSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQztJQUN4RyxDQUFDO0lBRU0sc0JBQVUsR0FBakIsVUFBa0IsT0FBZ0I7UUFDaEMsNkNBQTZDO1FBQzdDLElBQUksQ0FBQyxPQUFPO1lBQUUsT0FBTyxLQUFLLENBQUM7UUFDM0IsSUFBTSxHQUFHLEdBQVEsT0FBTyxDQUFDO1FBQ3pCLE9BQU8sQ0FDTCxRQUFRLElBQUksR0FBRztZQUNmLFVBQVUsSUFBSSxHQUFHO1lBQ2pCLFVBQVUsSUFBSSxHQUFHO1lBQ2pCLE1BQU0sSUFBSSxHQUFHO1lBQ2IsT0FBTyxHQUFHLENBQUMsT0FBTyxDQUFDLEtBQUssUUFBUTtZQUNoQyxPQUFPLEdBQUcsQ0FBQyxTQUFTLENBQUMsS0FBSyxRQUFRLENBQ25DLENBQUM7SUFDSixDQUFDO0lBRUQsMkJBQUssR0FBTDtRQUNFLElBQU0sTUFBTSxHQUFHLElBQUksV0FBVyx1QkFDekIsSUFBSSxLQUNQLE9BQU8sZUFBTyxJQUFJLENBQUMsT0FBTyxLQUMxQixDQUFDO1FBQ0gsSUFBSSxNQUFNLENBQUMsS0FBSztZQUFFLE1BQU0sQ0FBQyxLQUFLLEdBQUcsVUFBVSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUMxRCxPQUFPLE1BQU0sQ0FBQztJQUNoQixDQUFDO0lBQ0gsa0JBQUM7QUFBRCxDQUFDLEFBL0NELElBK0NDOztBQUVELFNBQVMsVUFBVSxDQUFDLEtBQXdCO0lBQzFDLE9BQU8sTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBQyxLQUF3QixFQUFFLFNBQWlCOztRQUMzRSxJQUFNLEtBQUssR0FBRyxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUM7UUFDL0IsNkJBQ0ssS0FBSyxnQkFDUCxTQUFTLElBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLFVBQUssS0FBSyxFQUFFLENBQUMsQ0FBQyxLQUFLLE9BQ3REO0lBQ0osQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDO0FBQ1QsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVuZHBvaW50LCBIZWFkZXJCYWcsIEh0dHBNZXNzYWdlLCBIdHRwUmVxdWVzdCBhcyBJSHR0cFJlcXVlc3QsIFF1ZXJ5UGFyYW1ldGVyQmFnIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5cbnR5cGUgSHR0cFJlcXVlc3RPcHRpb25zID0gUGFydGlhbDxIdHRwTWVzc2FnZT4gJiBQYXJ0aWFsPEVuZHBvaW50PiAmIHsgbWV0aG9kPzogc3RyaW5nIH07XG5cbmV4cG9ydCBpbnRlcmZhY2UgSHR0cFJlcXVlc3QgZXh0ZW5kcyBJSHR0cFJlcXVlc3Qge31cblxuZXhwb3J0IGNsYXNzIEh0dHBSZXF1ZXN0IGltcGxlbWVudHMgSHR0cE1lc3NhZ2UsIEVuZHBvaW50IHtcbiAgcHVibGljIG1ldGhvZDogc3RyaW5nO1xuICBwdWJsaWMgcHJvdG9jb2w6IHN0cmluZztcbiAgcHVibGljIGhvc3RuYW1lOiBzdHJpbmc7XG4gIHB1YmxpYyBwb3J0PzogbnVtYmVyO1xuICBwdWJsaWMgcGF0aDogc3RyaW5nO1xuICBwdWJsaWMgcXVlcnk6IFF1ZXJ5UGFyYW1ldGVyQmFnO1xuICBwdWJsaWMgaGVhZGVyczogSGVhZGVyQmFnO1xuICBwdWJsaWMgYm9keT86IGFueTtcblxuICBjb25zdHJ1Y3RvcihvcHRpb25zOiBIdHRwUmVxdWVzdE9wdGlvbnMpIHtcbiAgICB0aGlzLm1ldGhvZCA9IG9wdGlvbnMubWV0aG9kIHx8IFwiR0VUXCI7XG4gICAgdGhpcy5ob3N0bmFtZSA9IG9wdGlvbnMuaG9zdG5hbWUgfHwgXCJsb2NhbGhvc3RcIjtcbiAgICB0aGlzLnBvcnQgPSBvcHRpb25zLnBvcnQ7XG4gICAgdGhpcy5xdWVyeSA9IG9wdGlvbnMucXVlcnkgfHwge307XG4gICAgdGhpcy5oZWFkZXJzID0gb3B0aW9ucy5oZWFkZXJzIHx8IHt9O1xuICAgIHRoaXMuYm9keSA9IG9wdGlvbnMuYm9keTtcbiAgICB0aGlzLnByb3RvY29sID0gb3B0aW9ucy5wcm90b2NvbFxuICAgICAgPyBvcHRpb25zLnByb3RvY29sLnN1YnN0cigtMSkgIT09IFwiOlwiXG4gICAgICAgID8gYCR7b3B0aW9ucy5wcm90b2NvbH06YFxuICAgICAgICA6IG9wdGlvbnMucHJvdG9jb2xcbiAgICAgIDogXCJodHRwczpcIjtcbiAgICB0aGlzLnBhdGggPSBvcHRpb25zLnBhdGggPyAob3B0aW9ucy5wYXRoLmNoYXJBdCgwKSAhPT0gXCIvXCIgPyBgLyR7b3B0aW9ucy5wYXRofWAgOiBvcHRpb25zLnBhdGgpIDogXCIvXCI7XG4gIH1cblxuICBzdGF0aWMgaXNJbnN0YW5jZShyZXF1ZXN0OiB1bmtub3duKTogcmVxdWVzdCBpcyBIdHRwUmVxdWVzdCB7XG4gICAgLy9kZXRlcm1pbmUgaWYgcmVxdWVzdCBpcyBhIHZhbGlkIGh0dHBSZXF1ZXN0XG4gICAgaWYgKCFyZXF1ZXN0KSByZXR1cm4gZmFsc2U7XG4gICAgY29uc3QgcmVxOiBhbnkgPSByZXF1ZXN0O1xuICAgIHJldHVybiAoXG4gICAgICBcIm1ldGhvZFwiIGluIHJlcSAmJlxuICAgICAgXCJwcm90b2NvbFwiIGluIHJlcSAmJlxuICAgICAgXCJob3N0bmFtZVwiIGluIHJlcSAmJlxuICAgICAgXCJwYXRoXCIgaW4gcmVxICYmXG4gICAgICB0eXBlb2YgcmVxW1wicXVlcnlcIl0gPT09IFwib2JqZWN0XCIgJiZcbiAgICAgIHR5cGVvZiByZXFbXCJoZWFkZXJzXCJdID09PSBcIm9iamVjdFwiXG4gICAgKTtcbiAgfVxuXG4gIGNsb25lKCk6IEh0dHBSZXF1ZXN0IHtcbiAgICBjb25zdCBjbG9uZWQgPSBuZXcgSHR0cFJlcXVlc3Qoe1xuICAgICAgLi4udGhpcyxcbiAgICAgIGhlYWRlcnM6IHsgLi4udGhpcy5oZWFkZXJzIH0sXG4gICAgfSk7XG4gICAgaWYgKGNsb25lZC5xdWVyeSkgY2xvbmVkLnF1ZXJ5ID0gY2xvbmVRdWVyeShjbG9uZWQucXVlcnkpO1xuICAgIHJldHVybiBjbG9uZWQ7XG4gIH1cbn1cblxuZnVuY3Rpb24gY2xvbmVRdWVyeShxdWVyeTogUXVlcnlQYXJhbWV0ZXJCYWcpOiBRdWVyeVBhcmFtZXRlckJhZyB7XG4gIHJldHVybiBPYmplY3Qua2V5cyhxdWVyeSkucmVkdWNlKChjYXJyeTogUXVlcnlQYXJhbWV0ZXJCYWcsIHBhcmFtTmFtZTogc3RyaW5nKSA9PiB7XG4gICAgY29uc3QgcGFyYW0gPSBxdWVyeVtwYXJhbU5hbWVdO1xuICAgIHJldHVybiB7XG4gICAgICAuLi5jYXJyeSxcbiAgICAgIFtwYXJhbU5hbWVdOiBBcnJheS5pc0FycmF5KHBhcmFtKSA/IFsuLi5wYXJhbV0gOiBwYXJhbSxcbiAgICB9O1xuICB9LCB7fSk7XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/protocol-http/dist/es/httpRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/protocol-http/dist/es/httpResponse.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/protocol-http/dist/es/httpResponse.js ***! \*********************************************************************/ /*! exports provided: HttpResponse */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return HttpResponse; });\nvar HttpResponse = /** @class */ (function () {\n function HttpResponse(options) {\n this.statusCode = options.statusCode;\n this.headers = options.headers || {};\n this.body = options.body;\n }\n HttpResponse.isInstance = function (response) {\n //determine if response is a valid HttpResponse\n if (!response)\n return false;\n var resp = response;\n return typeof resp.statusCode === \"number\" && typeof resp.headers === \"object\";\n };\n return HttpResponse;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHR0cFJlc3BvbnNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2h0dHBSZXNwb25zZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFRQTtJQUtFLHNCQUFZLE9BQTRCO1FBQ3RDLElBQUksQ0FBQyxVQUFVLEdBQUcsT0FBTyxDQUFDLFVBQVUsQ0FBQztRQUNyQyxJQUFJLENBQUMsT0FBTyxHQUFHLE9BQU8sQ0FBQyxPQUFPLElBQUksRUFBRSxDQUFDO1FBQ3JDLElBQUksQ0FBQyxJQUFJLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQztJQUMzQixDQUFDO0lBRU0sdUJBQVUsR0FBakIsVUFBa0IsUUFBaUI7UUFDakMsK0NBQStDO1FBQy9DLElBQUksQ0FBQyxRQUFRO1lBQUUsT0FBTyxLQUFLLENBQUM7UUFDNUIsSUFBTSxJQUFJLEdBQUcsUUFBZSxDQUFDO1FBQzdCLE9BQU8sT0FBTyxJQUFJLENBQUMsVUFBVSxLQUFLLFFBQVEsSUFBSSxPQUFPLElBQUksQ0FBQyxPQUFPLEtBQUssUUFBUSxDQUFDO0lBQ2pGLENBQUM7SUFDSCxtQkFBQztBQUFELENBQUMsQUFqQkQsSUFpQkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIZWFkZXJCYWcsIEh0dHBNZXNzYWdlLCBIdHRwUmVzcG9uc2UgYXMgSUh0dHBSZXNwb25zZSB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG50eXBlIEh0dHBSZXNwb25zZU9wdGlvbnMgPSBQYXJ0aWFsPEh0dHBNZXNzYWdlPiAmIHtcbiAgc3RhdHVzQ29kZTogbnVtYmVyO1xufTtcblxuZXhwb3J0IGludGVyZmFjZSBIdHRwUmVzcG9uc2UgZXh0ZW5kcyBJSHR0cFJlc3BvbnNlIHt9XG5cbmV4cG9ydCBjbGFzcyBIdHRwUmVzcG9uc2Uge1xuICBwdWJsaWMgc3RhdHVzQ29kZTogbnVtYmVyO1xuICBwdWJsaWMgaGVhZGVyczogSGVhZGVyQmFnO1xuICBwdWJsaWMgYm9keT86IGFueTtcblxuICBjb25zdHJ1Y3RvcihvcHRpb25zOiBIdHRwUmVzcG9uc2VPcHRpb25zKSB7XG4gICAgdGhpcy5zdGF0dXNDb2RlID0gb3B0aW9ucy5zdGF0dXNDb2RlO1xuICAgIHRoaXMuaGVhZGVycyA9IG9wdGlvbnMuaGVhZGVycyB8fCB7fTtcbiAgICB0aGlzLmJvZHkgPSBvcHRpb25zLmJvZHk7XG4gIH1cblxuICBzdGF0aWMgaXNJbnN0YW5jZShyZXNwb25zZTogdW5rbm93bik6IHJlc3BvbnNlIGlzIEh0dHBSZXNwb25zZSB7XG4gICAgLy9kZXRlcm1pbmUgaWYgcmVzcG9uc2UgaXMgYSB2YWxpZCBIdHRwUmVzcG9uc2VcbiAgICBpZiAoIXJlc3BvbnNlKSByZXR1cm4gZmFsc2U7XG4gICAgY29uc3QgcmVzcCA9IHJlc3BvbnNlIGFzIGFueTtcbiAgICByZXR1cm4gdHlwZW9mIHJlc3Auc3RhdHVzQ29kZSA9PT0gXCJudW1iZXJcIiAmJiB0eXBlb2YgcmVzcC5oZWFkZXJzID09PSBcIm9iamVjdFwiO1xuICB9XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/protocol-http/dist/es/httpResponse.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/protocol-http/dist/es/index.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-sdk/protocol-http/dist/es/index.js ***! \**************************************************************/ /*! exports provided: HttpResponse, HttpRequest, isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _httpResponse__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./httpResponse */ \"./node_modules/@aws-sdk/protocol-http/dist/es/httpResponse.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpResponse\", function() { return _httpResponse__WEBPACK_IMPORTED_MODULE_0__[\"HttpResponse\"]; });\n\n/* harmony import */ var _httpRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./httpRequest */ \"./node_modules/@aws-sdk/protocol-http/dist/es/httpRequest.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HttpRequest\", function() { return _httpRequest__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"]; });\n\n/* harmony import */ var _httpHandler__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./httpHandler */ \"./node_modules/@aws-sdk/protocol-http/dist/es/httpHandler.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _isValidHostname__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isValidHostname */ \"./node_modules/@aws-sdk/protocol-http/dist/es/isValidHostname.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return _isValidHostname__WEBPACK_IMPORTED_MODULE_3__[\"isValidHostname\"]; });\n\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vaHR0cFJlc3BvbnNlXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9odHRwUmVxdWVzdFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vaHR0cEhhbmRsZXJcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2lzVmFsaWRIb3N0bmFtZVwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/protocol-http/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/protocol-http/dist/es/isValidHostname.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-sdk/protocol-http/dist/es/isValidHostname.js ***! \************************************************************************/ /*! exports provided: isValidHostname */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isValidHostname\", function() { return isValidHostname; });\nfunction isValidHostname(hostname) {\n var hostPattern = /^[a-z0-9][a-z0-9\\.\\-]*[a-z0-9]$/;\n return hostPattern.test(hostname);\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNWYWxpZEhvc3RuYW1lLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2lzVmFsaWRIb3N0bmFtZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFVBQVUsZUFBZSxDQUFDLFFBQWdCO0lBQzlDLElBQU0sV0FBVyxHQUFHLGlDQUFpQyxDQUFDO0lBQ3RELE9BQU8sV0FBVyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztBQUNwQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGZ1bmN0aW9uIGlzVmFsaWRIb3N0bmFtZShob3N0bmFtZTogc3RyaW5nKTogYm9vbGVhbiB7XG4gIGNvbnN0IGhvc3RQYXR0ZXJuID0gL15bYS16MC05XVthLXowLTlcXC5cXC1dKlthLXowLTldJC87XG4gIHJldHVybiBob3N0UGF0dGVybi50ZXN0KGhvc3RuYW1lKTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/protocol-http/dist/es/isValidHostname.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/querystring-builder/dist/es/index.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/querystring-builder/dist/es/index.js ***! \********************************************************************/ /*! exports provided: buildQueryString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildQueryString\", function() { return buildQueryString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-uri-escape */ \"./node_modules/@aws-sdk/util-uri-escape/dist/es/index.js\");\n\n\nfunction buildQueryString(query) {\n var e_1, _a;\n var parts = [];\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(query).sort()), _c = _b.next(); !_c.done; _c = _b.next()) {\n var key = _c.value;\n var value = query[key];\n key = Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key);\n if (Array.isArray(value)) {\n for (var i = 0, iLen = value.length; i < iLen; i++) {\n parts.push(key + \"=\" + Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value[i]));\n }\n }\n else {\n var qsEntry = key;\n if (value || typeof value === \"string\") {\n qsEntry += \"=\" + Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value);\n }\n parts.push(qsEntry);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return parts.join(\"&\");\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUNBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUVyRCxNQUFNLFVBQVUsZ0JBQWdCLENBQUMsS0FBd0I7O0lBQ3ZELElBQU0sS0FBSyxHQUFhLEVBQUUsQ0FBQzs7UUFDM0IsS0FBZ0IsSUFBQSxLQUFBLFNBQUEsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQSxnQkFBQSw0QkFBRTtZQUF0QyxJQUFJLEdBQUcsV0FBQTtZQUNWLElBQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQztZQUN6QixHQUFHLEdBQUcsU0FBUyxDQUFDLEdBQUcsQ0FBQyxDQUFDO1lBQ3JCLElBQUksS0FBSyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsRUFBRTtnQkFDeEIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsSUFBSSxHQUFHLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQyxHQUFHLElBQUksRUFBRSxDQUFDLEVBQUUsRUFBRTtvQkFDbEQsS0FBSyxDQUFDLElBQUksQ0FBSSxHQUFHLFNBQUksU0FBUyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBRyxDQUFDLENBQUM7aUJBQzdDO2FBQ0Y7aUJBQU07Z0JBQ0wsSUFBSSxPQUFPLEdBQUcsR0FBRyxDQUFDO2dCQUNsQixJQUFJLEtBQUssSUFBSSxPQUFPLEtBQUssS0FBSyxRQUFRLEVBQUU7b0JBQ3RDLE9BQU8sSUFBSSxNQUFJLFNBQVMsQ0FBQyxLQUFLLENBQUcsQ0FBQztpQkFDbkM7Z0JBQ0QsS0FBSyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQzthQUNyQjtTQUNGOzs7Ozs7Ozs7SUFFRCxPQUFPLEtBQUssQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7QUFDekIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFF1ZXJ5UGFyYW1ldGVyQmFnIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBlc2NhcGVVcmkgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC11cmktZXNjYXBlXCI7XG5cbmV4cG9ydCBmdW5jdGlvbiBidWlsZFF1ZXJ5U3RyaW5nKHF1ZXJ5OiBRdWVyeVBhcmFtZXRlckJhZyk6IHN0cmluZyB7XG4gIGNvbnN0IHBhcnRzOiBzdHJpbmdbXSA9IFtdO1xuICBmb3IgKGxldCBrZXkgb2YgT2JqZWN0LmtleXMocXVlcnkpLnNvcnQoKSkge1xuICAgIGNvbnN0IHZhbHVlID0gcXVlcnlba2V5XTtcbiAgICBrZXkgPSBlc2NhcGVVcmkoa2V5KTtcbiAgICBpZiAoQXJyYXkuaXNBcnJheSh2YWx1ZSkpIHtcbiAgICAgIGZvciAobGV0IGkgPSAwLCBpTGVuID0gdmFsdWUubGVuZ3RoOyBpIDwgaUxlbjsgaSsrKSB7XG4gICAgICAgIHBhcnRzLnB1c2goYCR7a2V5fT0ke2VzY2FwZVVyaSh2YWx1ZVtpXSl9YCk7XG4gICAgICB9XG4gICAgfSBlbHNlIHtcbiAgICAgIGxldCBxc0VudHJ5ID0ga2V5O1xuICAgICAgaWYgKHZhbHVlIHx8IHR5cGVvZiB2YWx1ZSA9PT0gXCJzdHJpbmdcIikge1xuICAgICAgICBxc0VudHJ5ICs9IGA9JHtlc2NhcGVVcmkodmFsdWUpfWA7XG4gICAgICB9XG4gICAgICBwYXJ0cy5wdXNoKHFzRW50cnkpO1xuICAgIH1cbiAgfVxuXG4gIHJldHVybiBwYXJ0cy5qb2luKFwiJlwiKTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/querystring-builder/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/querystring-parser/dist/es/index.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/querystring-parser/dist/es/index.js ***! \*******************************************************************/ /*! exports provided: parseQueryString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseQueryString\", function() { return parseQueryString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nfunction parseQueryString(querystring) {\n var e_1, _a;\n var query = {};\n querystring = querystring.replace(/^\\?/, \"\");\n if (querystring) {\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(querystring.split(\"&\")), _c = _b.next(); !_c.done; _c = _b.next()) {\n var pair = _c.value;\n var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(pair.split(\"=\"), 2), key = _d[0], _e = _d[1], value = _e === void 0 ? null : _e;\n key = decodeURIComponent(key);\n if (value) {\n value = decodeURIComponent(value);\n }\n if (!(key in query)) {\n query[key] = value;\n }\n else if (Array.isArray(query[key])) {\n query[key].push(value);\n }\n else {\n query[key] = [query[key], value];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n }\n return query;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUVBLE1BQU0sVUFBVSxnQkFBZ0IsQ0FBQyxXQUFtQjs7SUFDbEQsSUFBTSxLQUFLLEdBQXNCLEVBQUUsQ0FBQztJQUNwQyxXQUFXLEdBQUcsV0FBVyxDQUFDLE9BQU8sQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUM7SUFFN0MsSUFBSSxXQUFXLEVBQUU7O1lBQ2YsS0FBbUIsSUFBQSxLQUFBLFNBQUEsV0FBVyxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQSxnQkFBQSw0QkFBRTtnQkFBdEMsSUFBTSxJQUFJLFdBQUE7Z0JBQ1QsSUFBQSxLQUFBLE9BQXNCLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLElBQUEsRUFBcEMsR0FBRyxRQUFBLEVBQUUsVUFBWSxFQUFaLEtBQUssbUJBQUcsSUFBSSxLQUFtQixDQUFDO2dCQUMxQyxHQUFHLEdBQUcsa0JBQWtCLENBQUMsR0FBRyxDQUFDLENBQUM7Z0JBQzlCLElBQUksS0FBSyxFQUFFO29CQUNULEtBQUssR0FBRyxrQkFBa0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztpQkFDbkM7Z0JBQ0QsSUFBSSxDQUFDLENBQUMsR0FBRyxJQUFJLEtBQUssQ0FBQyxFQUFFO29CQUNuQixLQUFLLENBQUMsR0FBRyxDQUFDLEdBQUcsS0FBSyxDQUFDO2lCQUNwQjtxQkFBTSxJQUFJLEtBQUssQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEVBQUU7b0JBQ25DLEtBQUssQ0FBQyxHQUFHLENBQW1CLENBQUMsSUFBSSxDQUFDLEtBQWUsQ0FBQyxDQUFDO2lCQUNyRDtxQkFBTTtvQkFDTCxLQUFLLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFXLEVBQUUsS0FBZSxDQUFDLENBQUM7aUJBQ3REO2FBQ0Y7Ozs7Ozs7OztLQUNGO0lBRUQsT0FBTyxLQUFLLENBQUM7QUFDZixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUXVlcnlQYXJhbWV0ZXJCYWcgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGZ1bmN0aW9uIHBhcnNlUXVlcnlTdHJpbmcocXVlcnlzdHJpbmc6IHN0cmluZyk6IFF1ZXJ5UGFyYW1ldGVyQmFnIHtcbiAgY29uc3QgcXVlcnk6IFF1ZXJ5UGFyYW1ldGVyQmFnID0ge307XG4gIHF1ZXJ5c3RyaW5nID0gcXVlcnlzdHJpbmcucmVwbGFjZSgvXlxcPy8sIFwiXCIpO1xuXG4gIGlmIChxdWVyeXN0cmluZykge1xuICAgIGZvciAoY29uc3QgcGFpciBvZiBxdWVyeXN0cmluZy5zcGxpdChcIiZcIikpIHtcbiAgICAgIGxldCBba2V5LCB2YWx1ZSA9IG51bGxdID0gcGFpci5zcGxpdChcIj1cIik7XG4gICAgICBrZXkgPSBkZWNvZGVVUklDb21wb25lbnQoa2V5KTtcbiAgICAgIGlmICh2YWx1ZSkge1xuICAgICAgICB2YWx1ZSA9IGRlY29kZVVSSUNvbXBvbmVudCh2YWx1ZSk7XG4gICAgICB9XG4gICAgICBpZiAoIShrZXkgaW4gcXVlcnkpKSB7XG4gICAgICAgIHF1ZXJ5W2tleV0gPSB2YWx1ZTtcbiAgICAgIH0gZWxzZSBpZiAoQXJyYXkuaXNBcnJheShxdWVyeVtrZXldKSkge1xuICAgICAgICAocXVlcnlba2V5XSBhcyBBcnJheTxzdHJpbmc+KS5wdXNoKHZhbHVlIGFzIHN0cmluZyk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBxdWVyeVtrZXldID0gW3F1ZXJ5W2tleV0gYXMgc3RyaW5nLCB2YWx1ZSBhcyBzdHJpbmddO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIHJldHVybiBxdWVyeTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/querystring-parser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/s3-request-presigner/dist/es/constants.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/s3-request-presigner/dist/es/constants.js ***! \*************************************************************************/ /*! exports provided: UNSIGNED_PAYLOAD, SHA256_HEADER, ALGORITHM_QUERY_PARAM, CREDENTIAL_QUERY_PARAM, AMZ_DATE_QUERY_PARAM, SIGNED_HEADERS_QUERY_PARAM, EXPIRES_QUERY_PARAM, HOST_HEADER, ALGORITHM_IDENTIFIER */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UNSIGNED_PAYLOAD\", function() { return UNSIGNED_PAYLOAD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SHA256_HEADER\", function() { return SHA256_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_QUERY_PARAM\", function() { return ALGORITHM_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CREDENTIAL_QUERY_PARAM\", function() { return CREDENTIAL_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMZ_DATE_QUERY_PARAM\", function() { return AMZ_DATE_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNED_HEADERS_QUERY_PARAM\", function() { return SIGNED_HEADERS_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EXPIRES_QUERY_PARAM\", function() { return EXPIRES_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HOST_HEADER\", function() { return HOST_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_IDENTIFIER\", function() { return ALGORITHM_IDENTIFIER; });\nvar UNSIGNED_PAYLOAD = \"UNSIGNED-PAYLOAD\";\nvar SHA256_HEADER = \"X-Amz-Content-Sha256\";\nvar ALGORITHM_QUERY_PARAM = \"X-Amz-Algorithm\";\nvar CREDENTIAL_QUERY_PARAM = \"X-Amz-Credential\";\nvar AMZ_DATE_QUERY_PARAM = \"X-Amz-Date\";\nvar SIGNED_HEADERS_QUERY_PARAM = \"X-Amz-SignedHeaders\";\nvar EXPIRES_QUERY_PARAM = \"X-Amz-Expires\";\nvar HOST_HEADER = \"host\";\nvar ALGORITHM_IDENTIFIER = \"AWS4-HMAC-SHA256\";\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsSUFBTSxnQkFBZ0IsR0FBRyxrQkFBa0IsQ0FBQztBQUNuRCxNQUFNLENBQUMsSUFBTSxhQUFhLEdBQUcsc0JBQXNCLENBQUM7QUFFcEQsTUFBTSxDQUFDLElBQU0scUJBQXFCLEdBQUcsaUJBQWlCLENBQUM7QUFDdkQsTUFBTSxDQUFDLElBQU0sc0JBQXNCLEdBQUcsa0JBQWtCLENBQUM7QUFDekQsTUFBTSxDQUFDLElBQU0sb0JBQW9CLEdBQUcsWUFBWSxDQUFDO0FBQ2pELE1BQU0sQ0FBQyxJQUFNLDBCQUEwQixHQUFHLHFCQUFxQixDQUFDO0FBQ2hFLE1BQU0sQ0FBQyxJQUFNLG1CQUFtQixHQUFHLGVBQWUsQ0FBQztBQUNuRCxNQUFNLENBQUMsSUFBTSxXQUFXLEdBQUcsTUFBTSxDQUFDO0FBQ2xDLE1BQU0sQ0FBQyxJQUFNLG9CQUFvQixHQUFHLGtCQUFrQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IFVOU0lHTkVEX1BBWUxPQUQgPSBcIlVOU0lHTkVELVBBWUxPQURcIjtcbmV4cG9ydCBjb25zdCBTSEEyNTZfSEVBREVSID0gXCJYLUFtei1Db250ZW50LVNoYTI1NlwiO1xuXG5leHBvcnQgY29uc3QgQUxHT1JJVEhNX1FVRVJZX1BBUkFNID0gXCJYLUFtei1BbGdvcml0aG1cIjtcbmV4cG9ydCBjb25zdCBDUkVERU5USUFMX1FVRVJZX1BBUkFNID0gXCJYLUFtei1DcmVkZW50aWFsXCI7XG5leHBvcnQgY29uc3QgQU1aX0RBVEVfUVVFUllfUEFSQU0gPSBcIlgtQW16LURhdGVcIjtcbmV4cG9ydCBjb25zdCBTSUdORURfSEVBREVSU19RVUVSWV9QQVJBTSA9IFwiWC1BbXotU2lnbmVkSGVhZGVyc1wiO1xuZXhwb3J0IGNvbnN0IEVYUElSRVNfUVVFUllfUEFSQU0gPSBcIlgtQW16LUV4cGlyZXNcIjtcbmV4cG9ydCBjb25zdCBIT1NUX0hFQURFUiA9IFwiaG9zdFwiO1xuZXhwb3J0IGNvbnN0IEFMR09SSVRITV9JREVOVElGSUVSID0gXCJBV1M0LUhNQUMtU0hBMjU2XCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/s3-request-presigner/dist/es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/s3-request-presigner/dist/es/getSignedUrl.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/s3-request-presigner/dist/es/getSignedUrl.js ***! \****************************************************************************/ /*! exports provided: getSignedUrl */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSignedUrl\", function() { return getSignedUrl; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ \"./node_modules/@aws-sdk/protocol-http/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_format_url__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-format-url */ \"./node_modules/@aws-sdk/util-format-url/dist/es/index.js\");\n/* harmony import */ var _presigner__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./presigner */ \"./node_modules/@aws-sdk/s3-request-presigner/dist/es/presigner.js\");\n\n\n\n\nvar getSignedUrl = function (client, command, options) {\n if (options === void 0) { options = {}; }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var s3Presigner, presignInterceptMiddleware, middlewareName, presigned, output;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n s3Presigner = new _presigner__WEBPACK_IMPORTED_MODULE_3__[\"S3RequestPresigner\"](Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, client.config));\n presignInterceptMiddleware = function (next, context) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var request, presigned;\n var _a, _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0:\n request = args.request;\n if (!_aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__[\"HttpRequest\"].isInstance(request)) {\n throw new Error(\"Request to be presigned is not an valid HTTP request.\");\n }\n // Retry information headers are not meaningful in presigned URLs\n delete request.headers[\"amz-sdk-invocation-id\"];\n delete request.headers[\"amz-sdk-request\"];\n return [4 /*yield*/, s3Presigner.presign(request, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, options), { signingRegion: (_a = options.signingRegion) !== null && _a !== void 0 ? _a : context[\"signing_region\"], signingService: (_b = options.signingService) !== null && _b !== void 0 ? _b : context[\"signing_service\"] }))];\n case 1:\n presigned = _c.sent();\n return [2 /*return*/, {\n // Intercept the middleware stack by returning fake response\n response: {},\n output: {\n $metadata: { httpStatusCode: 200 },\n presigned: presigned,\n },\n }];\n }\n });\n }); }; };\n middlewareName = \"presignInterceptMiddleware\";\n client.middlewareStack.addRelativeTo(presignInterceptMiddleware, {\n name: middlewareName,\n relation: \"before\",\n toMiddleware: \"awsAuthMiddleware\",\n override: true,\n });\n _a.label = 1;\n case 1:\n _a.trys.push([1, , 3, 4]);\n return [4 /*yield*/, client.send(command)];\n case 2:\n output = _a.sent();\n //@ts-ignore the output is faked, so it's not actually OutputType\n presigned = output.presigned;\n return [3 /*break*/, 4];\n case 3:\n client.middlewareStack.remove(middlewareName);\n return [7 /*endfinally*/];\n case 4: return [2 /*return*/, Object(_aws_sdk_util_format_url__WEBPACK_IMPORTED_MODULE_2__[\"formatUrl\"])(presigned)];\n }\n });\n });\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0U2lnbmVkVXJsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2dldFNpZ25lZFVybC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBR3JELE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUVyRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFakQsTUFBTSxDQUFDLElBQU0sWUFBWSxHQUFHLFVBSzFCLE1BQXlELEVBQ3pELE9BQTZFLEVBQzdFLE9BQXdDO0lBQXhDLHdCQUFBLEVBQUEsWUFBd0M7Ozs7OztvQkFFbEMsV0FBVyxHQUFHLElBQUksa0JBQWtCLGNBQU0sTUFBTSxDQUFDLE1BQU0sRUFBRyxDQUFDO29CQUMzRCwwQkFBMEIsR0FBcUQsVUFBQyxJQUFJLEVBQUUsT0FBTyxJQUFLLE9BQUEsVUFDdEcsSUFBSTs7Ozs7O29DQUVJLE9BQU8sR0FBSyxJQUFJLFFBQVQsQ0FBVTtvQ0FDekIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDLEVBQUU7d0NBQ3BDLE1BQU0sSUFBSSxLQUFLLENBQUMsdURBQXVELENBQUMsQ0FBQztxQ0FDMUU7b0NBQ0QsaUVBQWlFO29DQUNqRSxPQUFPLE9BQU8sQ0FBQyxPQUFPLENBQUMsdUJBQXVCLENBQUMsQ0FBQztvQ0FDaEQsT0FBTyxPQUFPLENBQUMsT0FBTyxDQUFDLGlCQUFpQixDQUFDLENBQUM7b0NBRXhCLHFCQUFNLFdBQVcsQ0FBQyxPQUFPLENBQUMsT0FBTyx3QkFDOUMsT0FBTyxLQUNWLGFBQWEsUUFBRSxPQUFPLENBQUMsYUFBYSxtQ0FBSSxPQUFPLENBQUMsZ0JBQWdCLENBQUMsRUFDakUsY0FBYyxRQUFFLE9BQU8sQ0FBQyxjQUFjLG1DQUFJLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQyxJQUNwRSxFQUFBOztvQ0FKSSxTQUFTLEdBQUcsU0FJaEI7b0NBQ0Ysc0JBQU87NENBQ0wsNERBQTREOzRDQUM1RCxRQUFRLEVBQUUsRUFBRTs0Q0FDWixNQUFNLEVBQUU7Z0RBQ04sU0FBUyxFQUFFLEVBQUUsY0FBYyxFQUFFLEdBQUcsRUFBRTtnREFDbEMsU0FBUyxXQUFBOzZDQUNWO3lDQUNLLEVBQUM7Ozt5QkFDVixFQXhCdUcsQ0F3QnZHLENBQUM7b0JBQ0ksY0FBYyxHQUFHLDRCQUE0QixDQUFDO29CQUNwRCxNQUFNLENBQUMsZUFBZSxDQUFDLGFBQWEsQ0FBQywwQkFBMEIsRUFBRTt3QkFDL0QsSUFBSSxFQUFFLGNBQWM7d0JBQ3BCLFFBQVEsRUFBRSxRQUFRO3dCQUNsQixZQUFZLEVBQUUsbUJBQW1CO3dCQUNqQyxRQUFRLEVBQUUsSUFBSTtxQkFDZixDQUFDLENBQUM7Ozs7b0JBSWMscUJBQU0sTUFBTSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsRUFBQTs7b0JBQW5DLE1BQU0sR0FBRyxTQUEwQjtvQkFDekMsaUVBQWlFO29CQUNqRSxTQUFTLEdBQUcsTUFBTSxDQUFDLFNBQVMsQ0FBQzs7O29CQUU3QixNQUFNLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQyxjQUFjLENBQUMsQ0FBQzs7d0JBR2hELHNCQUFPLFNBQVMsQ0FBQyxTQUFTLENBQUMsRUFBQzs7OztDQUM3QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSHR0cFJlcXVlc3QgfSBmcm9tIFwiQGF3cy1zZGsvcHJvdG9jb2wtaHR0cFwiO1xuaW1wb3J0IHsgQ2xpZW50LCBDb21tYW5kIH0gZnJvbSBcIkBhd3Mtc2RrL3NtaXRoeS1jbGllbnRcIjtcbmltcG9ydCB7IEJ1aWxkTWlkZGxld2FyZSwgTWV0YWRhdGFCZWFyZXIsIFJlcXVlc3RQcmVzaWduaW5nQXJndW1lbnRzIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBmb3JtYXRVcmwgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC1mb3JtYXQtdXJsXCI7XG5cbmltcG9ydCB7IFMzUmVxdWVzdFByZXNpZ25lciB9IGZyb20gXCIuL3ByZXNpZ25lclwiO1xuXG5leHBvcnQgY29uc3QgZ2V0U2lnbmVkVXJsID0gYXN5bmMgPFxuICBJbnB1dFR5cGVzVW5pb24gZXh0ZW5kcyBvYmplY3QsXG4gIElucHV0VHlwZSBleHRlbmRzIElucHV0VHlwZXNVbmlvbixcbiAgT3V0cHV0VHlwZSBleHRlbmRzIE1ldGFkYXRhQmVhcmVyID0gTWV0YWRhdGFCZWFyZXJcbj4oXG4gIGNsaWVudDogQ2xpZW50PGFueSwgSW5wdXRUeXBlc1VuaW9uLCBNZXRhZGF0YUJlYXJlciwgYW55PixcbiAgY29tbWFuZDogQ29tbWFuZDxJbnB1dFR5cGUsIE91dHB1dFR5cGUsIGFueSwgSW5wdXRUeXBlc1VuaW9uLCBNZXRhZGF0YUJlYXJlcj4sXG4gIG9wdGlvbnM6IFJlcXVlc3RQcmVzaWduaW5nQXJndW1lbnRzID0ge31cbik6IFByb21pc2U8c3RyaW5nPiA9PiB7XG4gIGNvbnN0IHMzUHJlc2lnbmVyID0gbmV3IFMzUmVxdWVzdFByZXNpZ25lcih7IC4uLmNsaWVudC5jb25maWcgfSk7XG4gIGNvbnN0IHByZXNpZ25JbnRlcmNlcHRNaWRkbGV3YXJlOiBCdWlsZE1pZGRsZXdhcmU8SW5wdXRUeXBlc1VuaW9uLCBNZXRhZGF0YUJlYXJlcj4gPSAobmV4dCwgY29udGV4dCkgPT4gYXN5bmMgKFxuICAgIGFyZ3NcbiAgKSA9PiB7XG4gICAgY29uc3QgeyByZXF1ZXN0IH0gPSBhcmdzO1xuICAgIGlmICghSHR0cFJlcXVlc3QuaXNJbnN0YW5jZShyZXF1ZXN0KSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFwiUmVxdWVzdCB0byBiZSBwcmVzaWduZWQgaXMgbm90IGFuIHZhbGlkIEhUVFAgcmVxdWVzdC5cIik7XG4gICAgfVxuICAgIC8vIFJldHJ5IGluZm9ybWF0aW9uIGhlYWRlcnMgYXJlIG5vdCBtZWFuaW5nZnVsIGluIHByZXNpZ25lZCBVUkxzXG4gICAgZGVsZXRlIHJlcXVlc3QuaGVhZGVyc1tcImFtei1zZGstaW52b2NhdGlvbi1pZFwiXTtcbiAgICBkZWxldGUgcmVxdWVzdC5oZWFkZXJzW1wiYW16LXNkay1yZXF1ZXN0XCJdO1xuXG4gICAgY29uc3QgcHJlc2lnbmVkID0gYXdhaXQgczNQcmVzaWduZXIucHJlc2lnbihyZXF1ZXN0LCB7XG4gICAgICAuLi5vcHRpb25zLFxuICAgICAgc2lnbmluZ1JlZ2lvbjogb3B0aW9ucy5zaWduaW5nUmVnaW9uID8/IGNvbnRleHRbXCJzaWduaW5nX3JlZ2lvblwiXSxcbiAgICAgIHNpZ25pbmdTZXJ2aWNlOiBvcHRpb25zLnNpZ25pbmdTZXJ2aWNlID8/IGNvbnRleHRbXCJzaWduaW5nX3NlcnZpY2VcIl0sXG4gICAgfSk7XG4gICAgcmV0dXJuIHtcbiAgICAgIC8vIEludGVyY2VwdCB0aGUgbWlkZGxld2FyZSBzdGFjayBieSByZXR1cm5pbmcgZmFrZSByZXNwb25zZVxuICAgICAgcmVzcG9uc2U6IHt9LFxuICAgICAgb3V0cHV0OiB7XG4gICAgICAgICRtZXRhZGF0YTogeyBodHRwU3RhdHVzQ29kZTogMjAwIH0sXG4gICAgICAgIHByZXNpZ25lZCxcbiAgICAgIH0sXG4gICAgfSBhcyBhbnk7XG4gIH07XG4gIGNvbnN0IG1pZGRsZXdhcmVOYW1lID0gXCJwcmVzaWduSW50ZXJjZXB0TWlkZGxld2FyZVwiO1xuICBjbGllbnQubWlkZGxld2FyZVN0YWNrLmFkZFJlbGF0aXZlVG8ocHJlc2lnbkludGVyY2VwdE1pZGRsZXdhcmUsIHtcbiAgICBuYW1lOiBtaWRkbGV3YXJlTmFtZSxcbiAgICByZWxhdGlvbjogXCJiZWZvcmVcIixcbiAgICB0b01pZGRsZXdhcmU6IFwiYXdzQXV0aE1pZGRsZXdhcmVcIixcbiAgICBvdmVycmlkZTogdHJ1ZSxcbiAgfSk7XG5cbiAgbGV0IHByZXNpZ25lZDogSHR0cFJlcXVlc3Q7XG4gIHRyeSB7XG4gICAgY29uc3Qgb3V0cHV0ID0gYXdhaXQgY2xpZW50LnNlbmQoY29tbWFuZCk7XG4gICAgLy9AdHMtaWdub3JlIHRoZSBvdXRwdXQgaXMgZmFrZWQsIHNvIGl0J3Mgbm90IGFjdHVhbGx5IE91dHB1dFR5cGVcbiAgICBwcmVzaWduZWQgPSBvdXRwdXQucHJlc2lnbmVkO1xuICB9IGZpbmFsbHkge1xuICAgIGNsaWVudC5taWRkbGV3YXJlU3RhY2sucmVtb3ZlKG1pZGRsZXdhcmVOYW1lKTtcbiAgfVxuXG4gIHJldHVybiBmb3JtYXRVcmwocHJlc2lnbmVkKTtcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/s3-request-presigner/dist/es/getSignedUrl.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/s3-request-presigner/dist/es/index.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/s3-request-presigner/dist/es/index.js ***! \*********************************************************************/ /*! exports provided: S3RequestPresigner, getSignedUrl */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _presigner__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./presigner */ \"./node_modules/@aws-sdk/s3-request-presigner/dist/es/presigner.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"S3RequestPresigner\", function() { return _presigner__WEBPACK_IMPORTED_MODULE_0__[\"S3RequestPresigner\"]; });\n\n/* harmony import */ var _getSignedUrl__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getSignedUrl */ \"./node_modules/@aws-sdk/s3-request-presigner/dist/es/getSignedUrl.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSignedUrl\", function() { return _getSignedUrl__WEBPACK_IMPORTED_MODULE_1__[\"getSignedUrl\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxnQkFBZ0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL3ByZXNpZ25lclwiO1xuZXhwb3J0ICogZnJvbSBcIi4vZ2V0U2lnbmVkVXJsXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/s3-request-presigner/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/s3-request-presigner/dist/es/presigner.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/s3-request-presigner/dist/es/presigner.js ***! \*************************************************************************/ /*! exports provided: S3RequestPresigner */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"S3RequestPresigner\", function() { return S3RequestPresigner; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/signature-v4 */ \"./node_modules/@aws-sdk/signature-v4/dist/es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/s3-request-presigner/dist/es/constants.js\");\n\n\n\nvar S3RequestPresigner = /** @class */ (function () {\n function S3RequestPresigner(options) {\n var resolvedOptions = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ \n // Allow `signingName` because we want to support usecase of supply client's resolved config\n // directly. Where service equals signingName.\n service: options.signingName || options.service || \"s3\", uriEscapePath: options.uriEscapePath || false }, options);\n this.signer = new _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_1__[\"SignatureV4\"](resolvedOptions);\n }\n S3RequestPresigner.prototype.presign = function (requestToSign, _a) {\n if (_a === void 0) { _a = {}; }\n var _b = _a.unsignableHeaders, unsignableHeaders = _b === void 0 ? new Set() : _b, _c = _a.unhoistableHeaders, unhoistableHeaders = _c === void 0 ? new Set() : _c, options = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"unsignableHeaders\", \"unhoistableHeaders\"]);\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n unsignableHeaders.add(\"content-type\");\n // S3 requires SSE headers to be signed in headers instead of query\n // See: https://github.com/aws/aws-sdk-js-v3/issues/1576\n Object.keys(requestToSign.headers)\n .map(function (header) { return header.toLowerCase(); })\n .filter(function (header) { return header.startsWith(\"x-amz-server-side-encryption\"); })\n .forEach(function (header) {\n unhoistableHeaders.add(header);\n });\n requestToSign.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"SHA256_HEADER\"]] = _constants__WEBPACK_IMPORTED_MODULE_2__[\"UNSIGNED_PAYLOAD\"];\n if (!requestToSign.headers[\"host\"]) {\n requestToSign.headers.host = requestToSign.hostname;\n }\n return [2 /*return*/, this.signer.presign(requestToSign, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({ expiresIn: 900, unsignableHeaders: unsignableHeaders,\n unhoistableHeaders: unhoistableHeaders }, options))];\n });\n });\n };\n return S3RequestPresigner;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJlc2lnbmVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3ByZXNpZ25lci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFdBQVcsRUFBMEMsTUFBTSx1QkFBdUIsQ0FBQztBQUk1RixPQUFPLEVBQUUsYUFBYSxFQUFFLGdCQUFnQixFQUFFLE1BQU0sYUFBYSxDQUFDO0FBYzlEO0lBRUUsNEJBQVksT0FBa0M7UUFDNUMsSUFBTSxlQUFlO1lBQ25CLDRGQUE0RjtZQUM1Riw4Q0FBOEM7WUFDOUMsT0FBTyxFQUFFLE9BQU8sQ0FBQyxXQUFXLElBQUksT0FBTyxDQUFDLE9BQU8sSUFBSSxJQUFJLEVBQ3ZELGFBQWEsRUFBRSxPQUFPLENBQUMsYUFBYSxJQUFJLEtBQUssSUFDMUMsT0FBTyxDQUNYLENBQUM7UUFDRixJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksV0FBVyxDQUFDLGVBQWUsQ0FBQyxDQUFDO0lBQ2pELENBQUM7SUFFWSxvQ0FBTyxHQUFwQixVQUNFLGFBQTJCLEVBQzNCLEVBQThHO1FBQTlHLG1CQUFBLEVBQUEsT0FBOEc7UUFBNUcsSUFBQSx5QkFBNkIsRUFBN0IsaUJBQWlCLG1CQUFHLElBQUksR0FBRyxFQUFFLEtBQUEsRUFBRSwwQkFBOEIsRUFBOUIsa0JBQWtCLG1CQUFHLElBQUksR0FBRyxFQUFFLEtBQUEsRUFBSyxPQUFPLGNBQTNFLDJDQUE2RSxDQUFGOzs7Z0JBRTNFLGlCQUFpQixDQUFDLEdBQUcsQ0FBQyxjQUFjLENBQUMsQ0FBQztnQkFDdEMsbUVBQW1FO2dCQUNuRSx3REFBd0Q7Z0JBQ3hELE1BQU0sQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQztxQkFDL0IsR0FBRyxDQUFDLFVBQUMsTUFBTSxJQUFLLE9BQUEsTUFBTSxDQUFDLFdBQVcsRUFBRSxFQUFwQixDQUFvQixDQUFDO3FCQUNyQyxNQUFNLENBQUMsVUFBQyxNQUFNLElBQUssT0FBQSxNQUFNLENBQUMsVUFBVSxDQUFDLDhCQUE4QixDQUFDLEVBQWpELENBQWlELENBQUM7cUJBQ3JFLE9BQU8sQ0FBQyxVQUFDLE1BQU07b0JBQ2Qsa0JBQWtCLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDO2dCQUNqQyxDQUFDLENBQUMsQ0FBQztnQkFDTCxhQUFhLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxHQUFHLGdCQUFnQixDQUFDO2dCQUN4RCxJQUFJLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsRUFBRTtvQkFDbEMsYUFBYSxDQUFDLE9BQU8sQ0FBQyxJQUFJLEdBQUcsYUFBYSxDQUFDLFFBQVEsQ0FBQztpQkFDckQ7Z0JBQ0Qsc0JBQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsYUFBYSxhQUN0QyxTQUFTLEVBQUUsR0FBRyxFQUNkLGlCQUFpQixtQkFBQTt3QkFDakIsa0JBQWtCLG9CQUFBLElBQ2YsT0FBTyxFQUNWLEVBQUM7OztLQUNKO0lBQ0gseUJBQUM7QUFBRCxDQUFDLEFBckNELElBcUNDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2lnbmF0dXJlVjQsIFNpZ25hdHVyZVY0Q3J5cHRvSW5pdCwgU2lnbmF0dXJlVjRJbml0IH0gZnJvbSBcIkBhd3Mtc2RrL3NpZ25hdHVyZS12NFwiO1xuaW1wb3J0IHsgUmVxdWVzdFByZXNpZ25lciwgUmVxdWVzdFByZXNpZ25pbmdBcmd1bWVudHMgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCB7IEh0dHBSZXF1ZXN0IGFzIElIdHRwUmVxdWVzdCB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBTSEEyNTZfSEVBREVSLCBVTlNJR05FRF9QQVlMT0FEIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5cbi8qKlxuICogUGFydGlhbEJ5PFQsIEs+IG1ha2VzIHByb3BlcnRpZXMgc3BlY2lmaWVkIGluIEsgb3B0aW9uYWwgaW4gaW50ZXJmYWNlIFRcbiAqIHNlZTogaHR0cHM6Ly9zdGFja292ZXJmbG93LmNvbS9xdWVzdGlvbnMvNDMxNTk4ODcvbWFrZS1hLXNpbmdsZS1wcm9wZXJ0eS1vcHRpb25hbC1pbi10eXBlc2NyaXB0XG4gKiAqL1xudHlwZSBPbWl0PFQsIEsgZXh0ZW5kcyBrZXlvZiBUPiA9IFBpY2s8VCwgRXhjbHVkZTxrZXlvZiBULCBLPj47XG50eXBlIFBhcnRpYWxCeTxULCBLIGV4dGVuZHMga2V5b2YgVD4gPSBPbWl0PFQsIEs+ICYgUGFydGlhbDxQaWNrPFQsIEs+PjtcblxuZXhwb3J0IHR5cGUgUzNSZXF1ZXN0UHJlc2lnbmVyT3B0aW9ucyA9IFBhcnRpYWxCeTxcbiAgU2lnbmF0dXJlVjRJbml0ICYgU2lnbmF0dXJlVjRDcnlwdG9Jbml0LFxuICBcInNlcnZpY2VcIiB8IFwidXJpRXNjYXBlUGF0aFwiXG4+ICYgeyBzaWduaW5nTmFtZT86IHN0cmluZyB9O1xuXG5leHBvcnQgY2xhc3MgUzNSZXF1ZXN0UHJlc2lnbmVyIGltcGxlbWVudHMgUmVxdWVzdFByZXNpZ25lciB7XG4gIHByaXZhdGUgcmVhZG9ubHkgc2lnbmVyOiBTaWduYXR1cmVWNDtcbiAgY29uc3RydWN0b3Iob3B0aW9uczogUzNSZXF1ZXN0UHJlc2lnbmVyT3B0aW9ucykge1xuICAgIGNvbnN0IHJlc29sdmVkT3B0aW9ucyA9IHtcbiAgICAgIC8vIEFsbG93IGBzaWduaW5nTmFtZWAgYmVjYXVzZSB3ZSB3YW50IHRvIHN1cHBvcnQgdXNlY2FzZSBvZiBzdXBwbHkgY2xpZW50J3MgcmVzb2x2ZWQgY29uZmlnXG4gICAgICAvLyBkaXJlY3RseS4gV2hlcmUgc2VydmljZSBlcXVhbHMgc2lnbmluZ05hbWUuXG4gICAgICBzZXJ2aWNlOiBvcHRpb25zLnNpZ25pbmdOYW1lIHx8IG9wdGlvbnMuc2VydmljZSB8fCBcInMzXCIsXG4gICAgICB1cmlFc2NhcGVQYXRoOiBvcHRpb25zLnVyaUVzY2FwZVBhdGggfHwgZmFsc2UsXG4gICAgICAuLi5vcHRpb25zLFxuICAgIH07XG4gICAgdGhpcy5zaWduZXIgPSBuZXcgU2lnbmF0dXJlVjQocmVzb2x2ZWRPcHRpb25zKTtcbiAgfVxuXG4gIHB1YmxpYyBhc3luYyBwcmVzaWduKFxuICAgIHJlcXVlc3RUb1NpZ246IElIdHRwUmVxdWVzdCxcbiAgICB7IHVuc2lnbmFibGVIZWFkZXJzID0gbmV3IFNldCgpLCB1bmhvaXN0YWJsZUhlYWRlcnMgPSBuZXcgU2V0KCksIC4uLm9wdGlvbnMgfTogUmVxdWVzdFByZXNpZ25pbmdBcmd1bWVudHMgPSB7fVxuICApOiBQcm9taXNlPElIdHRwUmVxdWVzdD4ge1xuICAgIHVuc2lnbmFibGVIZWFkZXJzLmFkZChcImNvbnRlbnQtdHlwZVwiKTtcbiAgICAvLyBTMyByZXF1aXJlcyBTU0UgaGVhZGVycyB0byBiZSBzaWduZWQgaW4gaGVhZGVycyBpbnN0ZWFkIG9mIHF1ZXJ5XG4gICAgLy8gU2VlOiBodHRwczovL2dpdGh1Yi5jb20vYXdzL2F3cy1zZGstanMtdjMvaXNzdWVzLzE1NzZcbiAgICBPYmplY3Qua2V5cyhyZXF1ZXN0VG9TaWduLmhlYWRlcnMpXG4gICAgICAubWFwKChoZWFkZXIpID0+IGhlYWRlci50b0xvd2VyQ2FzZSgpKVxuICAgICAgLmZpbHRlcigoaGVhZGVyKSA9PiBoZWFkZXIuc3RhcnRzV2l0aChcIngtYW16LXNlcnZlci1zaWRlLWVuY3J5cHRpb25cIikpXG4gICAgICAuZm9yRWFjaCgoaGVhZGVyKSA9PiB7XG4gICAgICAgIHVuaG9pc3RhYmxlSGVhZGVycy5hZGQoaGVhZGVyKTtcbiAgICAgIH0pO1xuICAgIHJlcXVlc3RUb1NpZ24uaGVhZGVyc1tTSEEyNTZfSEVBREVSXSA9IFVOU0lHTkVEX1BBWUxPQUQ7XG4gICAgaWYgKCFyZXF1ZXN0VG9TaWduLmhlYWRlcnNbXCJob3N0XCJdKSB7XG4gICAgICByZXF1ZXN0VG9TaWduLmhlYWRlcnMuaG9zdCA9IHJlcXVlc3RUb1NpZ24uaG9zdG5hbWU7XG4gICAgfVxuICAgIHJldHVybiB0aGlzLnNpZ25lci5wcmVzaWduKHJlcXVlc3RUb1NpZ24sIHtcbiAgICAgIGV4cGlyZXNJbjogOTAwLFxuICAgICAgdW5zaWduYWJsZUhlYWRlcnMsXG4gICAgICB1bmhvaXN0YWJsZUhlYWRlcnMsXG4gICAgICAuLi5vcHRpb25zLFxuICAgIH0pO1xuICB9XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/s3-request-presigner/dist/es/presigner.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/service-error-classification/dist/es/constants.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/service-error-classification/dist/es/constants.js ***! \*********************************************************************************/ /*! exports provided: CLOCK_SKEW_ERROR_CODES, THROTTLING_ERROR_CODES, TRANSIENT_ERROR_CODES, TRANSIENT_ERROR_STATUS_CODES */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CLOCK_SKEW_ERROR_CODES\", function() { return CLOCK_SKEW_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"THROTTLING_ERROR_CODES\", function() { return THROTTLING_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TRANSIENT_ERROR_CODES\", function() { return TRANSIENT_ERROR_CODES; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TRANSIENT_ERROR_STATUS_CODES\", function() { return TRANSIENT_ERROR_STATUS_CODES; });\n/**\n * Errors encountered when the client clock and server clock cannot agree on the\n * current time.\n *\n * These errors are retryable, assuming the SDK has enabled clock skew\n * correction.\n */\nvar CLOCK_SKEW_ERROR_CODES = [\n \"AuthFailure\",\n \"InvalidSignatureException\",\n \"RequestExpired\",\n \"RequestInTheFuture\",\n \"RequestTimeTooSkewed\",\n \"SignatureDoesNotMatch\",\n];\n/**\n * Errors that indicate the SDK is being throttled.\n *\n * These errors are always retryable.\n */\nvar THROTTLING_ERROR_CODES = [\n \"BandwidthLimitExceeded\",\n \"EC2ThrottledException\",\n \"LimitExceededException\",\n \"PriorRequestNotComplete\",\n \"ProvisionedThroughputExceededException\",\n \"RequestLimitExceeded\",\n \"RequestThrottled\",\n \"RequestThrottledException\",\n \"SlowDown\",\n \"ThrottledException\",\n \"Throttling\",\n \"ThrottlingException\",\n \"TooManyRequestsException\",\n \"TransactionInProgressException\",\n];\n/**\n * Error codes that indicate transient issues\n */\nvar TRANSIENT_ERROR_CODES = [\"AbortError\", \"TimeoutError\", \"RequestTimeout\", \"RequestTimeoutException\"];\n/**\n * Error codes that indicate transient issues\n */\nvar TRANSIENT_ERROR_STATUS_CODES = [500, 502, 503, 504];\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFDSCxNQUFNLENBQUMsSUFBTSxzQkFBc0IsR0FBRztJQUNwQyxhQUFhO0lBQ2IsMkJBQTJCO0lBQzNCLGdCQUFnQjtJQUNoQixvQkFBb0I7SUFDcEIsc0JBQXNCO0lBQ3RCLHVCQUF1QjtDQUN4QixDQUFDO0FBRUY7Ozs7R0FJRztBQUNILE1BQU0sQ0FBQyxJQUFNLHNCQUFzQixHQUFHO0lBQ3BDLHdCQUF3QjtJQUN4Qix1QkFBdUI7SUFDdkIsd0JBQXdCO0lBQ3hCLHlCQUF5QjtJQUN6Qix3Q0FBd0M7SUFDeEMsc0JBQXNCO0lBQ3RCLGtCQUFrQjtJQUNsQiwyQkFBMkI7SUFDM0IsVUFBVTtJQUNWLG9CQUFvQjtJQUNwQixZQUFZO0lBQ1oscUJBQXFCO0lBQ3JCLDBCQUEwQjtJQUMxQixnQ0FBZ0M7Q0FDakMsQ0FBQztBQUVGOztHQUVHO0FBQ0gsTUFBTSxDQUFDLElBQU0scUJBQXFCLEdBQUcsQ0FBQyxZQUFZLEVBQUUsY0FBYyxFQUFFLGdCQUFnQixFQUFFLHlCQUF5QixDQUFDLENBQUM7QUFFakg7O0dBRUc7QUFDSCxNQUFNLENBQUMsSUFBTSw0QkFBNEIsR0FBRyxDQUFDLEdBQUcsRUFBRSxHQUFHLEVBQUUsR0FBRyxFQUFFLEdBQUcsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBFcnJvcnMgZW5jb3VudGVyZWQgd2hlbiB0aGUgY2xpZW50IGNsb2NrIGFuZCBzZXJ2ZXIgY2xvY2sgY2Fubm90IGFncmVlIG9uIHRoZVxuICogY3VycmVudCB0aW1lLlxuICpcbiAqIFRoZXNlIGVycm9ycyBhcmUgcmV0cnlhYmxlLCBhc3N1bWluZyB0aGUgU0RLIGhhcyBlbmFibGVkIGNsb2NrIHNrZXdcbiAqIGNvcnJlY3Rpb24uXG4gKi9cbmV4cG9ydCBjb25zdCBDTE9DS19TS0VXX0VSUk9SX0NPREVTID0gW1xuICBcIkF1dGhGYWlsdXJlXCIsXG4gIFwiSW52YWxpZFNpZ25hdHVyZUV4Y2VwdGlvblwiLFxuICBcIlJlcXVlc3RFeHBpcmVkXCIsXG4gIFwiUmVxdWVzdEluVGhlRnV0dXJlXCIsXG4gIFwiUmVxdWVzdFRpbWVUb29Ta2V3ZWRcIixcbiAgXCJTaWduYXR1cmVEb2VzTm90TWF0Y2hcIixcbl07XG5cbi8qKlxuICogRXJyb3JzIHRoYXQgaW5kaWNhdGUgdGhlIFNESyBpcyBiZWluZyB0aHJvdHRsZWQuXG4gKlxuICogVGhlc2UgZXJyb3JzIGFyZSBhbHdheXMgcmV0cnlhYmxlLlxuICovXG5leHBvcnQgY29uc3QgVEhST1RUTElOR19FUlJPUl9DT0RFUyA9IFtcbiAgXCJCYW5kd2lkdGhMaW1pdEV4Y2VlZGVkXCIsXG4gIFwiRUMyVGhyb3R0bGVkRXhjZXB0aW9uXCIsXG4gIFwiTGltaXRFeGNlZWRlZEV4Y2VwdGlvblwiLFxuICBcIlByaW9yUmVxdWVzdE5vdENvbXBsZXRlXCIsXG4gIFwiUHJvdmlzaW9uZWRUaHJvdWdocHV0RXhjZWVkZWRFeGNlcHRpb25cIixcbiAgXCJSZXF1ZXN0TGltaXRFeGNlZWRlZFwiLFxuICBcIlJlcXVlc3RUaHJvdHRsZWRcIixcbiAgXCJSZXF1ZXN0VGhyb3R0bGVkRXhjZXB0aW9uXCIsXG4gIFwiU2xvd0Rvd25cIixcbiAgXCJUaHJvdHRsZWRFeGNlcHRpb25cIixcbiAgXCJUaHJvdHRsaW5nXCIsXG4gIFwiVGhyb3R0bGluZ0V4Y2VwdGlvblwiLFxuICBcIlRvb01hbnlSZXF1ZXN0c0V4Y2VwdGlvblwiLFxuICBcIlRyYW5zYWN0aW9uSW5Qcm9ncmVzc0V4Y2VwdGlvblwiLCAvLyBEeW5hbW9EQlxuXTtcblxuLyoqXG4gKiBFcnJvciBjb2RlcyB0aGF0IGluZGljYXRlIHRyYW5zaWVudCBpc3N1ZXNcbiAqL1xuZXhwb3J0IGNvbnN0IFRSQU5TSUVOVF9FUlJPUl9DT0RFUyA9IFtcIkFib3J0RXJyb3JcIiwgXCJUaW1lb3V0RXJyb3JcIiwgXCJSZXF1ZXN0VGltZW91dFwiLCBcIlJlcXVlc3RUaW1lb3V0RXhjZXB0aW9uXCJdO1xuXG4vKipcbiAqIEVycm9yIGNvZGVzIHRoYXQgaW5kaWNhdGUgdHJhbnNpZW50IGlzc3Vlc1xuICovXG5leHBvcnQgY29uc3QgVFJBTlNJRU5UX0VSUk9SX1NUQVRVU19DT0RFUyA9IFs1MDAsIDUwMiwgNTAzLCA1MDRdO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/service-error-classification/dist/es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/service-error-classification/dist/es/index.js": /*!*****************************************************************************!*\ !*** ./node_modules/@aws-sdk/service-error-classification/dist/es/index.js ***! \*****************************************************************************/ /*! exports provided: isRetryableByTrait, isClockSkewError, isThrottlingError, isTransientError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isRetryableByTrait\", function() { return isRetryableByTrait; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isClockSkewError\", function() { return isClockSkewError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isThrottlingError\", function() { return isThrottlingError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTransientError\", function() { return isTransientError; });\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/service-error-classification/dist/es/constants.js\");\n\nvar isRetryableByTrait = function (error) { return error.$retryable !== undefined; };\nvar isClockSkewError = function (error) { return _constants__WEBPACK_IMPORTED_MODULE_0__[\"CLOCK_SKEW_ERROR_CODES\"].includes(error.name); };\nvar isThrottlingError = function (error) {\n var _a, _b;\n return ((_a = error.$metadata) === null || _a === void 0 ? void 0 : _a.httpStatusCode) === 429 ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"THROTTLING_ERROR_CODES\"].includes(error.name) ||\n ((_b = error.$retryable) === null || _b === void 0 ? void 0 : _b.throttling) == true;\n};\nvar isTransientError = function (error) {\n var _a;\n return _constants__WEBPACK_IMPORTED_MODULE_0__[\"TRANSIENT_ERROR_CODES\"].includes(error.name) ||\n _constants__WEBPACK_IMPORTED_MODULE_0__[\"TRANSIENT_ERROR_STATUS_CODES\"].includes(((_a = error.$metadata) === null || _a === void 0 ? void 0 : _a.httpStatusCode) || 0);\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxFQUNMLHNCQUFzQixFQUN0QixzQkFBc0IsRUFDdEIscUJBQXFCLEVBQ3JCLDRCQUE0QixHQUM3QixNQUFNLGFBQWEsQ0FBQztBQUVyQixNQUFNLENBQUMsSUFBTSxrQkFBa0IsR0FBRyxVQUFDLEtBQWUsSUFBSyxPQUFBLEtBQUssQ0FBQyxVQUFVLEtBQUssU0FBUyxFQUE5QixDQUE4QixDQUFDO0FBRXRGLE1BQU0sQ0FBQyxJQUFNLGdCQUFnQixHQUFHLFVBQUMsS0FBZSxJQUFLLE9BQUEsc0JBQXNCLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsRUFBM0MsQ0FBMkMsQ0FBQztBQUVqRyxNQUFNLENBQUMsSUFBTSxpQkFBaUIsR0FBRyxVQUFDLEtBQWU7O0lBQy9DLE9BQUEsT0FBQSxLQUFLLENBQUMsU0FBUywwQ0FBRSxjQUFjLE1BQUssR0FBRztRQUN2QyxzQkFBc0IsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQztRQUMzQyxPQUFBLEtBQUssQ0FBQyxVQUFVLDBDQUFFLFVBQVUsS0FBSSxJQUFJLENBQUE7Q0FBQSxDQUFDO0FBRXZDLE1BQU0sQ0FBQyxJQUFNLGdCQUFnQixHQUFHLFVBQUMsS0FBZTs7SUFDOUMsT0FBQSxxQkFBcUIsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQztRQUMxQyw0QkFBNEIsQ0FBQyxRQUFRLENBQUMsT0FBQSxLQUFLLENBQUMsU0FBUywwQ0FBRSxjQUFjLEtBQUksQ0FBQyxDQUFDLENBQUE7Q0FBQSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2RrRXJyb3IgfSBmcm9tIFwiQGF3cy1zZGsvc21pdGh5LWNsaWVudFwiO1xuXG5pbXBvcnQge1xuICBDTE9DS19TS0VXX0VSUk9SX0NPREVTLFxuICBUSFJPVFRMSU5HX0VSUk9SX0NPREVTLFxuICBUUkFOU0lFTlRfRVJST1JfQ09ERVMsXG4gIFRSQU5TSUVOVF9FUlJPUl9TVEFUVVNfQ09ERVMsXG59IGZyb20gXCIuL2NvbnN0YW50c1wiO1xuXG5leHBvcnQgY29uc3QgaXNSZXRyeWFibGVCeVRyYWl0ID0gKGVycm9yOiBTZGtFcnJvcikgPT4gZXJyb3IuJHJldHJ5YWJsZSAhPT0gdW5kZWZpbmVkO1xuXG5leHBvcnQgY29uc3QgaXNDbG9ja1NrZXdFcnJvciA9IChlcnJvcjogU2RrRXJyb3IpID0+IENMT0NLX1NLRVdfRVJST1JfQ09ERVMuaW5jbHVkZXMoZXJyb3IubmFtZSk7XG5cbmV4cG9ydCBjb25zdCBpc1Rocm90dGxpbmdFcnJvciA9IChlcnJvcjogU2RrRXJyb3IpID0+XG4gIGVycm9yLiRtZXRhZGF0YT8uaHR0cFN0YXR1c0NvZGUgPT09IDQyOSB8fFxuICBUSFJPVFRMSU5HX0VSUk9SX0NPREVTLmluY2x1ZGVzKGVycm9yLm5hbWUpIHx8XG4gIGVycm9yLiRyZXRyeWFibGU/LnRocm90dGxpbmcgPT0gdHJ1ZTtcblxuZXhwb3J0IGNvbnN0IGlzVHJhbnNpZW50RXJyb3IgPSAoZXJyb3I6IFNka0Vycm9yKSA9PlxuICBUUkFOU0lFTlRfRVJST1JfQ09ERVMuaW5jbHVkZXMoZXJyb3IubmFtZSkgfHxcbiAgVFJBTlNJRU5UX0VSUk9SX1NUQVRVU19DT0RFUy5pbmNsdWRlcyhlcnJvci4kbWV0YWRhdGE/Lmh0dHBTdGF0dXNDb2RlIHx8IDApO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/service-error-classification/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/SignatureV4.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/SignatureV4.js ***! \*******************************************************************/ /*! exports provided: SignatureV4 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SignatureV4\", function() { return SignatureV4; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/util-hex-encoding/dist/es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/signature-v4/dist/es/constants.js\");\n/* harmony import */ var _credentialDerivation__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./credentialDerivation */ \"./node_modules/@aws-sdk/signature-v4/dist/es/credentialDerivation.js\");\n/* harmony import */ var _getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getCanonicalHeaders */ \"./node_modules/@aws-sdk/signature-v4/dist/es/getCanonicalHeaders.js\");\n/* harmony import */ var _getCanonicalQuery__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./getCanonicalQuery */ \"./node_modules/@aws-sdk/signature-v4/dist/es/getCanonicalQuery.js\");\n/* harmony import */ var _getPayloadHash__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./getPayloadHash */ \"./node_modules/@aws-sdk/signature-v4/dist/es/getPayloadHash.js\");\n/* harmony import */ var _hasHeader__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./hasHeader */ \"./node_modules/@aws-sdk/signature-v4/dist/es/hasHeader.js\");\n/* harmony import */ var _moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./moveHeadersToQuery */ \"./node_modules/@aws-sdk/signature-v4/dist/es/moveHeadersToQuery.js\");\n/* harmony import */ var _prepareRequest__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./prepareRequest */ \"./node_modules/@aws-sdk/signature-v4/dist/es/prepareRequest.js\");\n/* harmony import */ var _utilDate__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./utilDate */ \"./node_modules/@aws-sdk/signature-v4/dist/es/utilDate.js\");\n\n\n\n\n\n\n\n\n\n\n\nvar SignatureV4 = /** @class */ (function () {\n function SignatureV4(_a) {\n var applyChecksum = _a.applyChecksum, credentials = _a.credentials, region = _a.region, service = _a.service, sha256 = _a.sha256, _b = _a.uriEscapePath, uriEscapePath = _b === void 0 ? true : _b;\n this.service = service;\n this.sha256 = sha256;\n this.uriEscapePath = uriEscapePath;\n // default to true if applyChecksum isn't set\n this.applyChecksum = typeof applyChecksum === \"boolean\" ? applyChecksum : true;\n this.regionProvider = normalizeRegionProvider(region);\n this.credentialProvider = normalizeCredentialsProvider(credentials);\n }\n SignatureV4.prototype.presign = function (originalRequest, options) {\n if (options === void 0) { options = {}; }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _a, signingDate, _b, expiresIn, unsignableHeaders, unhoistableHeaders, signableHeaders, signingRegion, signingService, credentials, region, _c, _d, longDate, shortDate, scope, request, canonicalHeaders, _e, _f, _g, _h, _j, _k;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_l) {\n switch (_l.label) {\n case 0:\n _a = options.signingDate, signingDate = _a === void 0 ? new Date() : _a, _b = options.expiresIn, expiresIn = _b === void 0 ? 3600 : _b, unsignableHeaders = options.unsignableHeaders, unhoistableHeaders = options.unhoistableHeaders, signableHeaders = options.signableHeaders, signingRegion = options.signingRegion, signingService = options.signingService;\n return [4 /*yield*/, this.credentialProvider()];\n case 1:\n credentials = _l.sent();\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3 /*break*/, 2];\n _c = signingRegion;\n return [3 /*break*/, 4];\n case 2: return [4 /*yield*/, this.regionProvider()];\n case 3:\n _c = (_l.sent());\n _l.label = 4;\n case 4:\n region = _c;\n _d = formatDate(signingDate), longDate = _d.longDate, shortDate = _d.shortDate;\n if (expiresIn > _constants__WEBPACK_IMPORTED_MODULE_2__[\"MAX_PRESIGNED_TTL\"]) {\n return [2 /*return*/, Promise.reject(\"Signature version 4 presigned URLs\" + \" must have an expiration date less than one week in\" + \" the future\")];\n }\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_3__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n request = Object(_moveHeadersToQuery__WEBPACK_IMPORTED_MODULE_8__[\"moveHeadersToQuery\"])(Object(_prepareRequest__WEBPACK_IMPORTED_MODULE_9__[\"prepareRequest\"])(originalRequest), { unhoistableHeaders: unhoistableHeaders });\n if (credentials.sessionToken) {\n request.query[_constants__WEBPACK_IMPORTED_MODULE_2__[\"TOKEN_QUERY_PARAM\"]] = credentials.sessionToken;\n }\n request.query[_constants__WEBPACK_IMPORTED_MODULE_2__[\"ALGORITHM_QUERY_PARAM\"]] = _constants__WEBPACK_IMPORTED_MODULE_2__[\"ALGORITHM_IDENTIFIER\"];\n request.query[_constants__WEBPACK_IMPORTED_MODULE_2__[\"CREDENTIAL_QUERY_PARAM\"]] = credentials.accessKeyId + \"/\" + scope;\n request.query[_constants__WEBPACK_IMPORTED_MODULE_2__[\"AMZ_DATE_QUERY_PARAM\"]] = longDate;\n request.query[_constants__WEBPACK_IMPORTED_MODULE_2__[\"EXPIRES_QUERY_PARAM\"]] = expiresIn.toString(10);\n canonicalHeaders = Object(_getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_4__[\"getCanonicalHeaders\"])(request, unsignableHeaders, signableHeaders);\n request.query[_constants__WEBPACK_IMPORTED_MODULE_2__[\"SIGNED_HEADERS_QUERY_PARAM\"]] = getCanonicalHeaderList(canonicalHeaders);\n _e = request.query;\n _f = _constants__WEBPACK_IMPORTED_MODULE_2__[\"SIGNATURE_QUERY_PARAM\"];\n _g = this.getSignature;\n _h = [longDate,\n scope,\n this.getSigningKey(credentials, region, shortDate, signingService)];\n _j = this.createCanonicalRequest;\n _k = [request, canonicalHeaders];\n return [4 /*yield*/, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_6__[\"getPayloadHash\"])(originalRequest, this.sha256)];\n case 5: return [4 /*yield*/, _g.apply(this, _h.concat([_j.apply(this, _k.concat([_l.sent()]))]))];\n case 6:\n _e[_f] = _l.sent();\n return [2 /*return*/, request];\n }\n });\n });\n };\n SignatureV4.prototype.sign = function (toSign, options) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n if (typeof toSign === \"string\") {\n return [2 /*return*/, this.signString(toSign, options)];\n }\n else if (toSign.headers && toSign.payload) {\n return [2 /*return*/, this.signEvent(toSign, options)];\n }\n else {\n return [2 /*return*/, this.signRequest(toSign, options)];\n }\n return [2 /*return*/];\n });\n });\n };\n SignatureV4.prototype.signEvent = function (_a, _b) {\n var headers = _a.headers, payload = _a.payload;\n var _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, priorSignature = _b.priorSignature, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var region, _d, _e, shortDate, longDate, scope, hashedPayload, hash, hashedHeaders, _f, stringToSign;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_g) {\n switch (_g.label) {\n case 0:\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3 /*break*/, 1];\n _d = signingRegion;\n return [3 /*break*/, 3];\n case 1: return [4 /*yield*/, this.regionProvider()];\n case 2:\n _d = (_g.sent());\n _g.label = 3;\n case 3:\n region = _d;\n _e = formatDate(signingDate), shortDate = _e.shortDate, longDate = _e.longDate;\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_3__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n return [4 /*yield*/, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_6__[\"getPayloadHash\"])({ headers: {}, body: payload }, this.sha256)];\n case 4:\n hashedPayload = _g.sent();\n hash = new this.sha256();\n hash.update(headers);\n _f = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4 /*yield*/, hash.digest()];\n case 5:\n hashedHeaders = _f.apply(void 0, [_g.sent()]);\n stringToSign = [\n _constants__WEBPACK_IMPORTED_MODULE_2__[\"EVENT_ALGORITHM_IDENTIFIER\"],\n longDate,\n scope,\n priorSignature,\n hashedHeaders,\n hashedPayload,\n ].join(\"\\n\");\n return [2 /*return*/, this.signString(stringToSign, { signingDate: signingDate, signingRegion: region, signingService: signingService })];\n }\n });\n });\n };\n SignatureV4.prototype.signString = function (stringToSign, _a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var credentials, region, _d, shortDate, hash, _e, _f, _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n switch (_h.label) {\n case 0: return [4 /*yield*/, this.credentialProvider()];\n case 1:\n credentials = _h.sent();\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3 /*break*/, 2];\n _d = signingRegion;\n return [3 /*break*/, 4];\n case 2: return [4 /*yield*/, this.regionProvider()];\n case 3:\n _d = (_h.sent());\n _h.label = 4;\n case 4:\n region = _d;\n shortDate = formatDate(signingDate).shortDate;\n _f = (_e = this.sha256).bind;\n return [4 /*yield*/, this.getSigningKey(credentials, region, shortDate, signingService)];\n case 5:\n hash = new (_f.apply(_e, [void 0, _h.sent()]))();\n hash.update(stringToSign);\n _g = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4 /*yield*/, hash.digest()];\n case 6: return [2 /*return*/, _g.apply(void 0, [_h.sent()])];\n }\n });\n });\n };\n SignatureV4.prototype.signRequest = function (requestToSign, _a) {\n var _b = _a === void 0 ? {} : _a, _c = _b.signingDate, signingDate = _c === void 0 ? new Date() : _c, signableHeaders = _b.signableHeaders, unsignableHeaders = _b.unsignableHeaders, signingRegion = _b.signingRegion, signingService = _b.signingService;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var credentials, region, _d, request, _e, longDate, shortDate, scope, payloadHash, canonicalHeaders, signature;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0: return [4 /*yield*/, this.credentialProvider()];\n case 1:\n credentials = _f.sent();\n if (!(signingRegion !== null && signingRegion !== void 0)) return [3 /*break*/, 2];\n _d = signingRegion;\n return [3 /*break*/, 4];\n case 2: return [4 /*yield*/, this.regionProvider()];\n case 3:\n _d = (_f.sent());\n _f.label = 4;\n case 4:\n region = _d;\n request = Object(_prepareRequest__WEBPACK_IMPORTED_MODULE_9__[\"prepareRequest\"])(requestToSign);\n _e = formatDate(signingDate), longDate = _e.longDate, shortDate = _e.shortDate;\n scope = Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_3__[\"createScope\"])(shortDate, region, signingService !== null && signingService !== void 0 ? signingService : this.service);\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"AMZ_DATE_HEADER\"]] = longDate;\n if (credentials.sessionToken) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"TOKEN_HEADER\"]] = credentials.sessionToken;\n }\n return [4 /*yield*/, Object(_getPayloadHash__WEBPACK_IMPORTED_MODULE_6__[\"getPayloadHash\"])(request, this.sha256)];\n case 5:\n payloadHash = _f.sent();\n if (!Object(_hasHeader__WEBPACK_IMPORTED_MODULE_7__[\"hasHeader\"])(_constants__WEBPACK_IMPORTED_MODULE_2__[\"SHA256_HEADER\"], request.headers) && this.applyChecksum) {\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"SHA256_HEADER\"]] = payloadHash;\n }\n canonicalHeaders = Object(_getCanonicalHeaders__WEBPACK_IMPORTED_MODULE_4__[\"getCanonicalHeaders\"])(request, unsignableHeaders, signableHeaders);\n return [4 /*yield*/, this.getSignature(longDate, scope, this.getSigningKey(credentials, region, shortDate, signingService), this.createCanonicalRequest(request, canonicalHeaders, payloadHash))];\n case 6:\n signature = _f.sent();\n request.headers[_constants__WEBPACK_IMPORTED_MODULE_2__[\"AUTH_HEADER\"]] =\n _constants__WEBPACK_IMPORTED_MODULE_2__[\"ALGORITHM_IDENTIFIER\"] + \" \" +\n (\"Credential=\" + credentials.accessKeyId + \"/\" + scope + \", \") +\n (\"SignedHeaders=\" + getCanonicalHeaderList(canonicalHeaders) + \", \") +\n (\"Signature=\" + signature);\n return [2 /*return*/, request];\n }\n });\n });\n };\n SignatureV4.prototype.createCanonicalRequest = function (request, canonicalHeaders, payloadHash) {\n var sortedHeaders = Object.keys(canonicalHeaders).sort();\n return request.method + \"\\n\" + this.getCanonicalPath(request) + \"\\n\" + Object(_getCanonicalQuery__WEBPACK_IMPORTED_MODULE_5__[\"getCanonicalQuery\"])(request) + \"\\n\" + sortedHeaders.map(function (name) { return name + \":\" + canonicalHeaders[name]; }).join(\"\\n\") + \"\\n\\n\" + sortedHeaders.join(\";\") + \"\\n\" + payloadHash;\n };\n SignatureV4.prototype.createStringToSign = function (longDate, credentialScope, canonicalRequest) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var hash, hashedRequest;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n hash = new this.sha256();\n hash.update(canonicalRequest);\n return [4 /*yield*/, hash.digest()];\n case 1:\n hashedRequest = _a.sent();\n return [2 /*return*/, _constants__WEBPACK_IMPORTED_MODULE_2__[\"ALGORITHM_IDENTIFIER\"] + \"\\n\" + longDate + \"\\n\" + credentialScope + \"\\n\" + Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(hashedRequest)];\n }\n });\n });\n };\n SignatureV4.prototype.getCanonicalPath = function (_a) {\n var path = _a.path;\n if (this.uriEscapePath) {\n var doubleEncoded = encodeURIComponent(path.replace(/^\\//, \"\"));\n return \"/\" + doubleEncoded.replace(/%2F/g, \"/\");\n }\n return path;\n };\n SignatureV4.prototype.getSignature = function (longDate, credentialScope, keyPromise, canonicalRequest) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var stringToSign, hash, _a, _b, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0: return [4 /*yield*/, this.createStringToSign(longDate, credentialScope, canonicalRequest)];\n case 1:\n stringToSign = _d.sent();\n _b = (_a = this.sha256).bind;\n return [4 /*yield*/, keyPromise];\n case 2:\n hash = new (_b.apply(_a, [void 0, _d.sent()]))();\n hash.update(stringToSign);\n _c = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"];\n return [4 /*yield*/, hash.digest()];\n case 3: return [2 /*return*/, _c.apply(void 0, [_d.sent()])];\n }\n });\n });\n };\n SignatureV4.prototype.getSigningKey = function (credentials, region, shortDate, service) {\n return Object(_credentialDerivation__WEBPACK_IMPORTED_MODULE_3__[\"getSigningKey\"])(this.sha256, credentials, shortDate, region, service || this.service);\n };\n return SignatureV4;\n}());\n\nvar formatDate = function (now) {\n var longDate = Object(_utilDate__WEBPACK_IMPORTED_MODULE_10__[\"iso8601\"])(now).replace(/[\\-:]/g, \"\");\n return {\n longDate: longDate,\n shortDate: longDate.substr(0, 8),\n };\n};\nvar getCanonicalHeaderList = function (headers) { return Object.keys(headers).sort().join(\";\"); };\nvar normalizeRegionProvider = function (region) {\n if (typeof region === \"string\") {\n var promisified_1 = Promise.resolve(region);\n return function () { return promisified_1; };\n }\n else {\n return region;\n }\n};\nvar normalizeCredentialsProvider = function (credentials) {\n if (typeof credentials === \"object\") {\n var promisified_2 = Promise.resolve(credentials);\n return function () { return promisified_2; };\n }\n else {\n return credentials;\n }\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiU2lnbmF0dXJlVjQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvU2lnbmF0dXJlVjQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQWlCQSxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFFbkQsT0FBTyxFQUNMLG9CQUFvQixFQUNwQixxQkFBcUIsRUFDckIsZUFBZSxFQUNmLG9CQUFvQixFQUNwQixXQUFXLEVBQ1gsc0JBQXNCLEVBQ3RCLDBCQUEwQixFQUMxQixtQkFBbUIsRUFDbkIsaUJBQWlCLEVBQ2pCLGFBQWEsRUFDYixxQkFBcUIsRUFDckIsMEJBQTBCLEVBQzFCLFlBQVksRUFDWixpQkFBaUIsR0FDbEIsTUFBTSxhQUFhLENBQUM7QUFDckIsT0FBTyxFQUFFLFdBQVcsRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNwRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUM1RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN4RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDbEQsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUN4QyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUMxRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDbEQsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLFlBQVksQ0FBQztBQWtEckM7SUFRRSxxQkFBWSxFQU84QjtZQU54QyxhQUFhLG1CQUFBLEVBQ2IsV0FBVyxpQkFBQSxFQUNYLE1BQU0sWUFBQSxFQUNOLE9BQU8sYUFBQSxFQUNQLE1BQU0sWUFBQSxFQUNOLHFCQUFvQixFQUFwQixhQUFhLG1CQUFHLElBQUksS0FBQTtRQUVwQixJQUFJLENBQUMsT0FBTyxHQUFHLE9BQU8sQ0FBQztRQUN2QixJQUFJLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQztRQUNyQixJQUFJLENBQUMsYUFBYSxHQUFHLGFBQWEsQ0FBQztRQUNuQyw2Q0FBNkM7UUFDN0MsSUFBSSxDQUFDLGFBQWEsR0FBRyxPQUFPLGFBQWEsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO1FBQy9FLElBQUksQ0FBQyxjQUFjLEdBQUcsdUJBQXVCLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDdEQsSUFBSSxDQUFDLGtCQUFrQixHQUFHLDRCQUE0QixDQUFDLFdBQVcsQ0FBQyxDQUFDO0lBQ3RFLENBQUM7SUFFWSw2QkFBTyxHQUFwQixVQUFxQixlQUE0QixFQUFFLE9BQXdDO1FBQXhDLHdCQUFBLEVBQUEsWUFBd0M7Ozs7Ozt3QkFFdkYsS0FPRSxPQUFPLFlBUGUsRUFBeEIsV0FBVyxtQkFBRyxJQUFJLElBQUksRUFBRSxLQUFBLEVBQ3hCLEtBTUUsT0FBTyxVQU5PLEVBQWhCLFNBQVMsbUJBQUcsSUFBSSxLQUFBLEVBQ2hCLGlCQUFpQixHQUtmLE9BQU8sa0JBTFEsRUFDakIsa0JBQWtCLEdBSWhCLE9BQU8sbUJBSlMsRUFDbEIsZUFBZSxHQUdiLE9BQU8sZ0JBSE0sRUFDZixhQUFhLEdBRVgsT0FBTyxjQUZJLEVBQ2IsY0FBYyxHQUNaLE9BQU8sZUFESyxDQUNKO3dCQUNRLHFCQUFNLElBQUksQ0FBQyxrQkFBa0IsRUFBRSxFQUFBOzt3QkFBN0MsV0FBVyxHQUFHLFNBQStCOzhCQUNwQyxhQUFhLGFBQWIsYUFBYTt3QkFBYixLQUFBLGFBQWEsQ0FBQTs7NEJBQUsscUJBQU0sSUFBSSxDQUFDLGNBQWMsRUFBRSxFQUFBOzt3QkFBNUIsS0FBQSxDQUFDLFNBQTJCLENBQUMsQ0FBQTs7O3dCQUF2RCxNQUFNLEtBQWlEO3dCQUV2RCxLQUEwQixVQUFVLENBQUMsV0FBVyxDQUFDLEVBQS9DLFFBQVEsY0FBQSxFQUFFLFNBQVMsZUFBQSxDQUE2Qjt3QkFDeEQsSUFBSSxTQUFTLEdBQUcsaUJBQWlCLEVBQUU7NEJBQ2pDLHNCQUFPLE9BQU8sQ0FBQyxNQUFNLENBQ25CLG9DQUFvQyxHQUFHLHFEQUFxRCxHQUFHLGFBQWEsQ0FDN0csRUFBQzt5QkFDSDt3QkFFSyxLQUFLLEdBQUcsV0FBVyxDQUFDLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxhQUFkLGNBQWMsY0FBZCxjQUFjLEdBQUksSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO3dCQUN2RSxPQUFPLEdBQUcsa0JBQWtCLENBQUMsY0FBYyxDQUFDLGVBQWUsQ0FBQyxFQUFFLEVBQUUsa0JBQWtCLG9CQUFBLEVBQUUsQ0FBQyxDQUFDO3dCQUU1RixJQUFJLFdBQVcsQ0FBQyxZQUFZLEVBQUU7NEJBQzVCLE9BQU8sQ0FBQyxLQUFLLENBQUMsaUJBQWlCLENBQUMsR0FBRyxXQUFXLENBQUMsWUFBWSxDQUFDO3lCQUM3RDt3QkFDRCxPQUFPLENBQUMsS0FBSyxDQUFDLHFCQUFxQixDQUFDLEdBQUcsb0JBQW9CLENBQUM7d0JBQzVELE9BQU8sQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsR0FBTSxXQUFXLENBQUMsV0FBVyxTQUFJLEtBQU8sQ0FBQzt3QkFDOUUsT0FBTyxDQUFDLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQyxHQUFHLFFBQVEsQ0FBQzt3QkFDL0MsT0FBTyxDQUFDLEtBQUssQ0FBQyxtQkFBbUIsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDLENBQUM7d0JBRXRELGdCQUFnQixHQUFHLG1CQUFtQixDQUFDLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxlQUFlLENBQUMsQ0FBQzt3QkFDMUYsT0FBTyxDQUFDLEtBQUssQ0FBQywwQkFBMEIsQ0FBQyxHQUFHLHNCQUFzQixDQUFDLGdCQUFnQixDQUFDLENBQUM7d0JBRXJGLEtBQUEsT0FBTyxDQUFDLEtBQUssQ0FBQTt3QkFBQyxLQUFBLHFCQUFxQixDQUFBO3dCQUFVLEtBQUEsSUFBSSxDQUFDLFlBQVksQ0FBQTs4QkFDNUQsUUFBUTs0QkFDUixLQUFLOzRCQUNMLElBQUksQ0FBQyxhQUFhLENBQUMsV0FBVyxFQUFFLE1BQU0sRUFBRSxTQUFTLEVBQUUsY0FBYyxDQUFDO3dCQUNsRSxLQUFBLElBQUksQ0FBQyxzQkFBc0IsQ0FBQTs4QkFBQyxPQUFPLEVBQUUsZ0JBQWdCO3dCQUFFLHFCQUFNLGNBQWMsQ0FBQyxlQUFlLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFBOzRCQUpwRSxxQkFBTSxTQUFBLElBQUksYUFJL0MsU0FBQSxJQUFJLGFBQW1ELFNBQWtELEdBQUMsR0FDM0csRUFBQTs7d0JBTEQsTUFBb0MsR0FBRyxTQUt0QyxDQUFDO3dCQUVGLHNCQUFPLE9BQU8sRUFBQzs7OztLQUNoQjtJQUtZLDBCQUFJLEdBQWpCLFVBQWtCLE1BQVcsRUFBRSxPQUFZOzs7Z0JBQ3pDLElBQUksT0FBTyxNQUFNLEtBQUssUUFBUSxFQUFFO29CQUM5QixzQkFBTyxJQUFJLENBQUMsVUFBVSxDQUFDLE1BQU0sRUFBRSxPQUFPLENBQUMsRUFBQztpQkFDekM7cUJBQU0sSUFBSSxNQUFNLENBQUMsT0FBTyxJQUFJLE1BQU0sQ0FBQyxPQUFPLEVBQUU7b0JBQzNDLHNCQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsTUFBTSxFQUFFLE9BQU8sQ0FBQyxFQUFDO2lCQUN4QztxQkFBTTtvQkFDTCxzQkFBTyxJQUFJLENBQUMsV0FBVyxDQUFDLE1BQU0sRUFBRSxPQUFPLENBQUMsRUFBQztpQkFDMUM7Ozs7S0FDRjtJQUVhLCtCQUFTLEdBQXZCLFVBQ0UsRUFBb0MsRUFDcEMsRUFBa0c7WUFEaEcsT0FBTyxhQUFBLEVBQUUsT0FBTyxhQUFBO1lBQ2hCLG1CQUF3QixFQUF4QixXQUFXLG1CQUFHLElBQUksSUFBSSxFQUFFLEtBQUEsRUFBRSxjQUFjLG9CQUFBLEVBQUUsYUFBYSxtQkFBQSxFQUFFLGNBQWMsb0JBQUE7Ozs7Ozs4QkFFMUQsYUFBYSxhQUFiLGFBQWE7d0JBQWIsS0FBQSxhQUFhLENBQUE7OzRCQUFLLHFCQUFNLElBQUksQ0FBQyxjQUFjLEVBQUUsRUFBQTs7d0JBQTVCLEtBQUEsQ0FBQyxTQUEyQixDQUFDLENBQUE7Ozt3QkFBdkQsTUFBTSxLQUFpRDt3QkFDdkQsS0FBMEIsVUFBVSxDQUFDLFdBQVcsQ0FBQyxFQUEvQyxTQUFTLGVBQUEsRUFBRSxRQUFRLGNBQUEsQ0FBNkI7d0JBQ2xELEtBQUssR0FBRyxXQUFXLENBQUMsU0FBUyxFQUFFLE1BQU0sRUFBRSxjQUFjLGFBQWQsY0FBYyxjQUFkLGNBQWMsR0FBSSxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7d0JBQ3ZELHFCQUFNLGNBQWMsQ0FBQyxFQUFFLE9BQU8sRUFBRSxFQUFFLEVBQUUsSUFBSSxFQUFFLE9BQU8sRUFBUyxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBQTs7d0JBQXhGLGFBQWEsR0FBRyxTQUF3RTt3QkFDeEYsSUFBSSxHQUFHLElBQUksSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDO3dCQUMvQixJQUFJLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDO3dCQUNDLEtBQUEsS0FBSyxDQUFBO3dCQUFDLHFCQUFNLElBQUksQ0FBQyxNQUFNLEVBQUUsRUFBQTs7d0JBQXpDLGFBQWEsR0FBRyxrQkFBTSxTQUFtQixFQUFDO3dCQUMxQyxZQUFZLEdBQUc7NEJBQ25CLDBCQUEwQjs0QkFDMUIsUUFBUTs0QkFDUixLQUFLOzRCQUNMLGNBQWM7NEJBQ2QsYUFBYTs0QkFDYixhQUFhO3lCQUNkLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO3dCQUNiLHNCQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsWUFBWSxFQUFFLEVBQUUsV0FBVyxhQUFBLEVBQUUsYUFBYSxFQUFFLE1BQU0sRUFBRSxjQUFjLGdCQUFBLEVBQUUsQ0FBQyxFQUFDOzs7O0tBQzlGO0lBRWEsZ0NBQVUsR0FBeEIsVUFDRSxZQUFvQixFQUNwQixFQUFrRjtZQUFsRixxQkFBZ0YsRUFBRSxLQUFBLEVBQWhGLG1CQUF3QixFQUF4QixXQUFXLG1CQUFHLElBQUksSUFBSSxFQUFFLEtBQUEsRUFBRSxhQUFhLG1CQUFBLEVBQUUsY0FBYyxvQkFBQTs7Ozs7NEJBRXJDLHFCQUFNLElBQUksQ0FBQyxrQkFBa0IsRUFBRSxFQUFBOzt3QkFBN0MsV0FBVyxHQUFHLFNBQStCOzhCQUNwQyxhQUFhLGFBQWIsYUFBYTt3QkFBYixLQUFBLGFBQWEsQ0FBQTs7NEJBQUsscUJBQU0sSUFBSSxDQUFDLGNBQWMsRUFBRSxFQUFBOzt3QkFBNUIsS0FBQSxDQUFDLFNBQTJCLENBQUMsQ0FBQTs7O3dCQUF2RCxNQUFNLEtBQWlEO3dCQUNyRCxTQUFTLEdBQUssVUFBVSxDQUFDLFdBQVcsQ0FBQyxVQUE1QixDQUE2Qjs2QkFFN0IsQ0FBQSxLQUFBLElBQUksQ0FBQyxNQUFNLENBQUE7d0JBQUMscUJBQU0sSUFBSSxDQUFDLGFBQWEsQ0FBQyxXQUFXLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBRSxjQUFjLENBQUMsRUFBQTs7d0JBQS9GLElBQUksR0FBRywyQkFBZ0IsU0FBd0UsS0FBQzt3QkFDdEcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsQ0FBQzt3QkFDbkIsS0FBQSxLQUFLLENBQUE7d0JBQUMscUJBQU0sSUFBSSxDQUFDLE1BQU0sRUFBRSxFQUFBOzRCQUFoQyxzQkFBTyxrQkFBTSxTQUFtQixFQUFDLEVBQUM7Ozs7S0FDbkM7SUFFYSxpQ0FBVyxHQUF6QixVQUNFLGFBQTBCLEVBQzFCLEVBTStCO1lBTi9CLHFCQU02QixFQUFFLEtBQUEsRUFMN0IsbUJBQXdCLEVBQXhCLFdBQVcsbUJBQUcsSUFBSSxJQUFJLEVBQUUsS0FBQSxFQUN4QixlQUFlLHFCQUFBLEVBQ2YsaUJBQWlCLHVCQUFBLEVBQ2pCLGFBQWEsbUJBQUEsRUFDYixjQUFjLG9CQUFBOzs7Ozs0QkFHSSxxQkFBTSxJQUFJLENBQUMsa0JBQWtCLEVBQUUsRUFBQTs7d0JBQTdDLFdBQVcsR0FBRyxTQUErQjs4QkFDcEMsYUFBYSxhQUFiLGFBQWE7d0JBQWIsS0FBQSxhQUFhLENBQUE7OzRCQUFLLHFCQUFNLElBQUksQ0FBQyxjQUFjLEVBQUUsRUFBQTs7d0JBQTVCLEtBQUEsQ0FBQyxTQUEyQixDQUFDLENBQUE7Ozt3QkFBdkQsTUFBTSxLQUFpRDt3QkFDdkQsT0FBTyxHQUFHLGNBQWMsQ0FBQyxhQUFhLENBQUMsQ0FBQzt3QkFDeEMsS0FBMEIsVUFBVSxDQUFDLFdBQVcsQ0FBQyxFQUEvQyxRQUFRLGNBQUEsRUFBRSxTQUFTLGVBQUEsQ0FBNkI7d0JBQ2xELEtBQUssR0FBRyxXQUFXLENBQUMsU0FBUyxFQUFFLE1BQU0sRUFBRSxjQUFjLGFBQWQsY0FBYyxjQUFkLGNBQWMsR0FBSSxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7d0JBRTdFLE9BQU8sQ0FBQyxPQUFPLENBQUMsZUFBZSxDQUFDLEdBQUcsUUFBUSxDQUFDO3dCQUM1QyxJQUFJLFdBQVcsQ0FBQyxZQUFZLEVBQUU7NEJBQzVCLE9BQU8sQ0FBQyxPQUFPLENBQUMsWUFBWSxDQUFDLEdBQUcsV0FBVyxDQUFDLFlBQVksQ0FBQzt5QkFDMUQ7d0JBRW1CLHFCQUFNLGNBQWMsQ0FBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxFQUFBOzt3QkFBeEQsV0FBVyxHQUFHLFNBQTBDO3dCQUM5RCxJQUFJLENBQUMsU0FBUyxDQUFDLGFBQWEsRUFBRSxPQUFPLENBQUMsT0FBTyxDQUFDLElBQUksSUFBSSxDQUFDLGFBQWEsRUFBRTs0QkFDcEUsT0FBTyxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsR0FBRyxXQUFXLENBQUM7eUJBQzlDO3dCQUVLLGdCQUFnQixHQUFHLG1CQUFtQixDQUFDLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxlQUFlLENBQUMsQ0FBQzt3QkFDeEUscUJBQU0sSUFBSSxDQUFDLFlBQVksQ0FDdkMsUUFBUSxFQUNSLEtBQUssRUFDTCxJQUFJLENBQUMsYUFBYSxDQUFDLFdBQVcsRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLGNBQWMsQ0FBQyxFQUNsRSxJQUFJLENBQUMsc0JBQXNCLENBQUMsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFdBQVcsQ0FBQyxDQUNwRSxFQUFBOzt3QkFMSyxTQUFTLEdBQUcsU0FLakI7d0JBRUQsT0FBTyxDQUFDLE9BQU8sQ0FBQyxXQUFXLENBQUM7NEJBQ3ZCLG9CQUFvQixNQUFHO2lDQUMxQixnQkFBYyxXQUFXLENBQUMsV0FBVyxTQUFJLEtBQUssT0FBSSxDQUFBO2lDQUNsRCxtQkFBaUIsc0JBQXNCLENBQUMsZ0JBQWdCLENBQUMsT0FBSSxDQUFBO2lDQUM3RCxlQUFhLFNBQVcsQ0FBQSxDQUFDO3dCQUUzQixzQkFBTyxPQUFPLEVBQUM7Ozs7S0FDaEI7SUFFTyw0Q0FBc0IsR0FBOUIsVUFBK0IsT0FBb0IsRUFBRSxnQkFBMkIsRUFBRSxXQUFtQjtRQUNuRyxJQUFNLGFBQWEsR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDM0QsT0FBVSxPQUFPLENBQUMsTUFBTSxVQUMxQixJQUFJLENBQUMsZ0JBQWdCLENBQUMsT0FBTyxDQUFDLFVBQzlCLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxVQUMxQixhQUFhLENBQUMsR0FBRyxDQUFDLFVBQUMsSUFBSSxJQUFLLE9BQUcsSUFBSSxTQUFJLGdCQUFnQixDQUFDLElBQUksQ0FBRyxFQUFuQyxDQUFtQyxDQUFDLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxZQUUzRSxhQUFhLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxVQUN2QixXQUFhLENBQUM7SUFDZCxDQUFDO0lBRWEsd0NBQWtCLEdBQWhDLFVBQ0UsUUFBZ0IsRUFDaEIsZUFBdUIsRUFDdkIsZ0JBQXdCOzs7Ozs7d0JBRWxCLElBQUksR0FBRyxJQUFJLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQzt3QkFDL0IsSUFBSSxDQUFDLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO3dCQUNSLHFCQUFNLElBQUksQ0FBQyxNQUFNLEVBQUUsRUFBQTs7d0JBQW5DLGFBQWEsR0FBRyxTQUFtQjt3QkFFekMsc0JBQVUsb0JBQW9CLFVBQ2hDLFFBQVEsVUFDUixlQUFlLFVBQ2YsS0FBSyxDQUFDLGFBQWEsQ0FBRyxFQUFDOzs7O0tBQ3RCO0lBRU8sc0NBQWdCLEdBQXhCLFVBQXlCLEVBQXFCO1lBQW5CLElBQUksVUFBQTtRQUM3QixJQUFJLElBQUksQ0FBQyxhQUFhLEVBQUU7WUFDdEIsSUFBTSxhQUFhLEdBQUcsa0JBQWtCLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQztZQUNsRSxPQUFPLE1BQUksYUFBYSxDQUFDLE9BQU8sQ0FBQyxNQUFNLEVBQUUsR0FBRyxDQUFHLENBQUM7U0FDakQ7UUFFRCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFFYSxrQ0FBWSxHQUExQixVQUNFLFFBQWdCLEVBQ2hCLGVBQXVCLEVBQ3ZCLFVBQStCLEVBQy9CLGdCQUF3Qjs7Ozs7NEJBRUgscUJBQU0sSUFBSSxDQUFDLGtCQUFrQixDQUFDLFFBQVEsRUFBRSxlQUFlLEVBQUUsZ0JBQWdCLENBQUMsRUFBQTs7d0JBQXpGLFlBQVksR0FBRyxTQUEwRTs2QkFFOUUsQ0FBQSxLQUFBLElBQUksQ0FBQyxNQUFNLENBQUE7d0JBQUMscUJBQU0sVUFBVSxFQUFBOzt3QkFBdkMsSUFBSSxHQUFHLDJCQUFnQixTQUFnQixLQUFDO3dCQUM5QyxJQUFJLENBQUMsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDO3dCQUNuQixLQUFBLEtBQUssQ0FBQTt3QkFBQyxxQkFBTSxJQUFJLENBQUMsTUFBTSxFQUFFLEVBQUE7NEJBQWhDLHNCQUFPLGtCQUFNLFNBQW1CLEVBQUMsRUFBQzs7OztLQUNuQztJQUVPLG1DQUFhLEdBQXJCLFVBQ0UsV0FBd0IsRUFDeEIsTUFBYyxFQUNkLFNBQWlCLEVBQ2pCLE9BQWdCO1FBRWhCLE9BQU8sYUFBYSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsV0FBVyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsT0FBTyxJQUFJLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUM3RixDQUFDO0lBQ0gsa0JBQUM7QUFBRCxDQUFDLEFBeE5ELElBd05DOztBQUVELElBQU0sVUFBVSxHQUFHLFVBQUMsR0FBYztJQUNoQyxJQUFNLFFBQVEsR0FBRyxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxFQUFFLENBQUMsQ0FBQztJQUNwRCxPQUFPO1FBQ0wsUUFBUSxVQUFBO1FBQ1IsU0FBUyxFQUFFLFFBQVEsQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQztLQUNqQyxDQUFDO0FBQ0osQ0FBQyxDQUFDO0FBRUYsSUFBTSxzQkFBc0IsR0FBRyxVQUFDLE9BQWUsSUFBYSxPQUFBLE1BQU0sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFyQyxDQUFxQyxDQUFDO0FBRWxHLElBQU0sdUJBQXVCLEdBQUcsVUFBQyxNQUFpQztJQUNoRSxJQUFJLE9BQU8sTUFBTSxLQUFLLFFBQVEsRUFBRTtRQUM5QixJQUFNLGFBQVcsR0FBRyxPQUFPLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBQzVDLE9BQU8sY0FBTSxPQUFBLGFBQVcsRUFBWCxDQUFXLENBQUM7S0FDMUI7U0FBTTtRQUNMLE9BQU8sTUFBTSxDQUFDO0tBQ2Y7QUFDSCxDQUFDLENBQUM7QUFFRixJQUFNLDRCQUE0QixHQUFHLFVBQUMsV0FBZ0Q7SUFDcEYsSUFBSSxPQUFPLFdBQVcsS0FBSyxRQUFRLEVBQUU7UUFDbkMsSUFBTSxhQUFXLEdBQUcsT0FBTyxDQUFDLE9BQU8sQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUNqRCxPQUFPLGNBQU0sT0FBQSxhQUFXLEVBQVgsQ0FBVyxDQUFDO0tBQzFCO1NBQU07UUFDTCxPQUFPLFdBQVcsQ0FBQztLQUNwQjtBQUNILENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENyZWRlbnRpYWxzLFxuICBEYXRlSW5wdXQsXG4gIEV2ZW50U2lnbmVyLFxuICBFdmVudFNpZ25pbmdBcmd1bWVudHMsXG4gIEZvcm1hdHRlZEV2ZW50LFxuICBIYXNoQ29uc3RydWN0b3IsXG4gIEhlYWRlckJhZyxcbiAgSHR0cFJlcXVlc3QsXG4gIFByb3ZpZGVyLFxuICBSZXF1ZXN0UHJlc2lnbmVyLFxuICBSZXF1ZXN0UHJlc2lnbmluZ0FyZ3VtZW50cyxcbiAgUmVxdWVzdFNpZ25lcixcbiAgUmVxdWVzdFNpZ25pbmdBcmd1bWVudHMsXG4gIFNpZ25pbmdBcmd1bWVudHMsXG4gIFN0cmluZ1NpZ25lcixcbn0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyB0b0hleCB9IGZyb20gXCJAYXdzLXNkay91dGlsLWhleC1lbmNvZGluZ1wiO1xuXG5pbXBvcnQge1xuICBBTEdPUklUSE1fSURFTlRJRklFUixcbiAgQUxHT1JJVEhNX1FVRVJZX1BBUkFNLFxuICBBTVpfREFURV9IRUFERVIsXG4gIEFNWl9EQVRFX1FVRVJZX1BBUkFNLFxuICBBVVRIX0hFQURFUixcbiAgQ1JFREVOVElBTF9RVUVSWV9QQVJBTSxcbiAgRVZFTlRfQUxHT1JJVEhNX0lERU5USUZJRVIsXG4gIEVYUElSRVNfUVVFUllfUEFSQU0sXG4gIE1BWF9QUkVTSUdORURfVFRMLFxuICBTSEEyNTZfSEVBREVSLFxuICBTSUdOQVRVUkVfUVVFUllfUEFSQU0sXG4gIFNJR05FRF9IRUFERVJTX1FVRVJZX1BBUkFNLFxuICBUT0tFTl9IRUFERVIsXG4gIFRPS0VOX1FVRVJZX1BBUkFNLFxufSBmcm9tIFwiLi9jb25zdGFudHNcIjtcbmltcG9ydCB7IGNyZWF0ZVNjb3BlLCBnZXRTaWduaW5nS2V5IH0gZnJvbSBcIi4vY3JlZGVudGlhbERlcml2YXRpb25cIjtcbmltcG9ydCB7IGdldENhbm9uaWNhbEhlYWRlcnMgfSBmcm9tIFwiLi9nZXRDYW5vbmljYWxIZWFkZXJzXCI7XG5pbXBvcnQgeyBnZXRDYW5vbmljYWxRdWVyeSB9IGZyb20gXCIuL2dldENhbm9uaWNhbFF1ZXJ5XCI7XG5pbXBvcnQgeyBnZXRQYXlsb2FkSGFzaCB9IGZyb20gXCIuL2dldFBheWxvYWRIYXNoXCI7XG5pbXBvcnQgeyBoYXNIZWFkZXIgfSBmcm9tIFwiLi9oYXNIZWFkZXJcIjtcbmltcG9ydCB7IG1vdmVIZWFkZXJzVG9RdWVyeSB9IGZyb20gXCIuL21vdmVIZWFkZXJzVG9RdWVyeVwiO1xuaW1wb3J0IHsgcHJlcGFyZVJlcXVlc3QgfSBmcm9tIFwiLi9wcmVwYXJlUmVxdWVzdFwiO1xuaW1wb3J0IHsgaXNvODYwMSB9IGZyb20gXCIuL3V0aWxEYXRlXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgU2lnbmF0dXJlVjRJbml0IHtcbiAgLyoqXG4gICAqIFRoZSBzZXJ2aWNlIHNpZ25pbmcgbmFtZS5cbiAgICovXG4gIHNlcnZpY2U6IHN0cmluZztcblxuICAvKipcbiAgICogVGhlIHJlZ2lvbiBuYW1lIG9yIGEgZnVuY3Rpb24gdGhhdCByZXR1cm5zIGEgcHJvbWlzZSB0aGF0IHdpbGwgYmVcbiAgICogcmVzb2x2ZWQgd2l0aCB0aGUgcmVnaW9uIG5hbWUuXG4gICAqL1xuICByZWdpb246IHN0cmluZyB8IFByb3ZpZGVyPHN0cmluZz47XG5cbiAgLyoqXG4gICAqIFRoZSBjcmVkZW50aWFscyB3aXRoIHdoaWNoIHRoZSByZXF1ZXN0IHNob3VsZCBiZSBzaWduZWQgb3IgYSBmdW5jdGlvblxuICAgKiB0aGF0IHJldHVybnMgYSBwcm9taXNlIHRoYXQgd2lsbCBiZSByZXNvbHZlZCB3aXRoIGNyZWRlbnRpYWxzLlxuICAgKi9cbiAgY3JlZGVudGlhbHM6IENyZWRlbnRpYWxzIHwgUHJvdmlkZXI8Q3JlZGVudGlhbHM+O1xuXG4gIC8qKlxuICAgKiBBIGNvbnN0cnVjdG9yIGZ1bmN0aW9uIGZvciBhIGhhc2ggb2JqZWN0IHRoYXQgd2lsbCBjYWxjdWxhdGUgU0hBLTI1NiBITUFDXG4gICAqIGNoZWNrc3Vtcy5cbiAgICovXG4gIHNoYTI1Nj86IEhhc2hDb25zdHJ1Y3RvcjtcblxuICAvKipcbiAgICogV2hldGhlciB0byB1cmktZXNjYXBlIHRoZSByZXF1ZXN0IFVSSSBwYXRoIGFzIHBhcnQgb2YgY29tcHV0aW5nIHRoZVxuICAgKiBjYW5vbmljYWwgcmVxdWVzdCBzdHJpbmcuIFRoaXMgaXMgcmVxdWlyZWQgZm9yIGV2ZXJ5IEFXUyBzZXJ2aWNlLCBleGNlcHRcbiAgICogQW1hem9uIFMzLCBhcyBvZiBsYXRlIDIwMTcuXG4gICAqXG4gICAqIEBkZWZhdWx0IFt0cnVlXVxuICAgKi9cbiAgdXJpRXNjYXBlUGF0aD86IGJvb2xlYW47XG5cbiAgLyoqXG4gICAqIFdoZXRoZXIgdG8gY2FsY3VsYXRlIGEgY2hlY2tzdW0gb2YgdGhlIHJlcXVlc3QgYm9keSBhbmQgaW5jbHVkZSBpdCBhc1xuICAgKiBlaXRoZXIgYSByZXF1ZXN0IGhlYWRlciAod2hlbiBzaWduaW5nKSBvciBhcyBhIHF1ZXJ5IHN0cmluZyBwYXJhbWV0ZXJcbiAgICogKHdoZW4gcHJlc2lnbmluZykuIFRoaXMgaXMgcmVxdWlyZWQgZm9yIEFXUyBHbGFjaWVyIGFuZCBBbWF6b24gUzMgYW5kIG9wdGlvbmFsIGZvclxuICAgKiBldmVyeSBvdGhlciBBV1Mgc2VydmljZSBhcyBvZiBsYXRlIDIwMTcuXG4gICAqXG4gICAqIEBkZWZhdWx0IFt0cnVlXVxuICAgKi9cbiAgYXBwbHlDaGVja3N1bT86IGJvb2xlYW47XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgU2lnbmF0dXJlVjRDcnlwdG9Jbml0IHtcbiAgc2hhMjU2OiBIYXNoQ29uc3RydWN0b3I7XG59XG5cbmV4cG9ydCBjbGFzcyBTaWduYXR1cmVWNCBpbXBsZW1lbnRzIFJlcXVlc3RQcmVzaWduZXIsIFJlcXVlc3RTaWduZXIsIFN0cmluZ1NpZ25lciwgRXZlbnRTaWduZXIge1xuICBwcml2YXRlIHJlYWRvbmx5IHNlcnZpY2U6IHN0cmluZztcbiAgcHJpdmF0ZSByZWFkb25seSByZWdpb25Qcm92aWRlcjogUHJvdmlkZXI8c3RyaW5nPjtcbiAgcHJpdmF0ZSByZWFkb25seSBjcmVkZW50aWFsUHJvdmlkZXI6IFByb3ZpZGVyPENyZWRlbnRpYWxzPjtcbiAgcHJpdmF0ZSByZWFkb25seSBzaGEyNTY6IEhhc2hDb25zdHJ1Y3RvcjtcbiAgcHJpdmF0ZSByZWFkb25seSB1cmlFc2NhcGVQYXRoOiBib29sZWFuO1xuICBwcml2YXRlIHJlYWRvbmx5IGFwcGx5Q2hlY2tzdW06IGJvb2xlYW47XG5cbiAgY29uc3RydWN0b3Ioe1xuICAgIGFwcGx5Q2hlY2tzdW0sXG4gICAgY3JlZGVudGlhbHMsXG4gICAgcmVnaW9uLFxuICAgIHNlcnZpY2UsXG4gICAgc2hhMjU2LFxuICAgIHVyaUVzY2FwZVBhdGggPSB0cnVlLFxuICB9OiBTaWduYXR1cmVWNEluaXQgJiBTaWduYXR1cmVWNENyeXB0b0luaXQpIHtcbiAgICB0aGlzLnNlcnZpY2UgPSBzZXJ2aWNlO1xuICAgIHRoaXMuc2hhMjU2ID0gc2hhMjU2O1xuICAgIHRoaXMudXJpRXNjYXBlUGF0aCA9IHVyaUVzY2FwZVBhdGg7XG4gICAgLy8gZGVmYXVsdCB0byB0cnVlIGlmIGFwcGx5Q2hlY2tzdW0gaXNuJ3Qgc2V0XG4gICAgdGhpcy5hcHBseUNoZWNrc3VtID0gdHlwZW9mIGFwcGx5Q2hlY2tzdW0gPT09IFwiYm9vbGVhblwiID8gYXBwbHlDaGVja3N1bSA6IHRydWU7XG4gICAgdGhpcy5yZWdpb25Qcm92aWRlciA9IG5vcm1hbGl6ZVJlZ2lvblByb3ZpZGVyKHJlZ2lvbik7XG4gICAgdGhpcy5jcmVkZW50aWFsUHJvdmlkZXIgPSBub3JtYWxpemVDcmVkZW50aWFsc1Byb3ZpZGVyKGNyZWRlbnRpYWxzKTtcbiAgfVxuXG4gIHB1YmxpYyBhc3luYyBwcmVzaWduKG9yaWdpbmFsUmVxdWVzdDogSHR0cFJlcXVlc3QsIG9wdGlvbnM6IFJlcXVlc3RQcmVzaWduaW5nQXJndW1lbnRzID0ge30pOiBQcm9taXNlPEh0dHBSZXF1ZXN0PiB7XG4gICAgY29uc3Qge1xuICAgICAgc2lnbmluZ0RhdGUgPSBuZXcgRGF0ZSgpLFxuICAgICAgZXhwaXJlc0luID0gMzYwMCxcbiAgICAgIHVuc2lnbmFibGVIZWFkZXJzLFxuICAgICAgdW5ob2lzdGFibGVIZWFkZXJzLFxuICAgICAgc2lnbmFibGVIZWFkZXJzLFxuICAgICAgc2lnbmluZ1JlZ2lvbixcbiAgICAgIHNpZ25pbmdTZXJ2aWNlLFxuICAgIH0gPSBvcHRpb25zO1xuICAgIGNvbnN0IGNyZWRlbnRpYWxzID0gYXdhaXQgdGhpcy5jcmVkZW50aWFsUHJvdmlkZXIoKTtcbiAgICBjb25zdCByZWdpb24gPSBzaWduaW5nUmVnaW9uID8/IChhd2FpdCB0aGlzLnJlZ2lvblByb3ZpZGVyKCkpO1xuXG4gICAgY29uc3QgeyBsb25nRGF0ZSwgc2hvcnREYXRlIH0gPSBmb3JtYXREYXRlKHNpZ25pbmdEYXRlKTtcbiAgICBpZiAoZXhwaXJlc0luID4gTUFYX1BSRVNJR05FRF9UVEwpIHtcbiAgICAgIHJldHVybiBQcm9taXNlLnJlamVjdChcbiAgICAgICAgXCJTaWduYXR1cmUgdmVyc2lvbiA0IHByZXNpZ25lZCBVUkxzXCIgKyBcIiBtdXN0IGhhdmUgYW4gZXhwaXJhdGlvbiBkYXRlIGxlc3MgdGhhbiBvbmUgd2VlayBpblwiICsgXCIgdGhlIGZ1dHVyZVwiXG4gICAgICApO1xuICAgIH1cblxuICAgIGNvbnN0IHNjb3BlID0gY3JlYXRlU2NvcGUoc2hvcnREYXRlLCByZWdpb24sIHNpZ25pbmdTZXJ2aWNlID8/IHRoaXMuc2VydmljZSk7XG4gICAgY29uc3QgcmVxdWVzdCA9IG1vdmVIZWFkZXJzVG9RdWVyeShwcmVwYXJlUmVxdWVzdChvcmlnaW5hbFJlcXVlc3QpLCB7IHVuaG9pc3RhYmxlSGVhZGVycyB9KTtcblxuICAgIGlmIChjcmVkZW50aWFscy5zZXNzaW9uVG9rZW4pIHtcbiAgICAgIHJlcXVlc3QucXVlcnlbVE9LRU5fUVVFUllfUEFSQU1dID0gY3JlZGVudGlhbHMuc2Vzc2lvblRva2VuO1xuICAgIH1cbiAgICByZXF1ZXN0LnF1ZXJ5W0FMR09SSVRITV9RVUVSWV9QQVJBTV0gPSBBTEdPUklUSE1fSURFTlRJRklFUjtcbiAgICByZXF1ZXN0LnF1ZXJ5W0NSRURFTlRJQUxfUVVFUllfUEFSQU1dID0gYCR7Y3JlZGVudGlhbHMuYWNjZXNzS2V5SWR9LyR7c2NvcGV9YDtcbiAgICByZXF1ZXN0LnF1ZXJ5W0FNWl9EQVRFX1FVRVJZX1BBUkFNXSA9IGxvbmdEYXRlO1xuICAgIHJlcXVlc3QucXVlcnlbRVhQSVJFU19RVUVSWV9QQVJBTV0gPSBleHBpcmVzSW4udG9TdHJpbmcoMTApO1xuXG4gICAgY29uc3QgY2Fub25pY2FsSGVhZGVycyA9IGdldENhbm9uaWNhbEhlYWRlcnMocmVxdWVzdCwgdW5zaWduYWJsZUhlYWRlcnMsIHNpZ25hYmxlSGVhZGVycyk7XG4gICAgcmVxdWVzdC5xdWVyeVtTSUdORURfSEVBREVSU19RVUVSWV9QQVJBTV0gPSBnZXRDYW5vbmljYWxIZWFkZXJMaXN0KGNhbm9uaWNhbEhlYWRlcnMpO1xuXG4gICAgcmVxdWVzdC5xdWVyeVtTSUdOQVRVUkVfUVVFUllfUEFSQU1dID0gYXdhaXQgdGhpcy5nZXRTaWduYXR1cmUoXG4gICAgICBsb25nRGF0ZSxcbiAgICAgIHNjb3BlLFxuICAgICAgdGhpcy5nZXRTaWduaW5nS2V5KGNyZWRlbnRpYWxzLCByZWdpb24sIHNob3J0RGF0ZSwgc2lnbmluZ1NlcnZpY2UpLFxuICAgICAgdGhpcy5jcmVhdGVDYW5vbmljYWxSZXF1ZXN0KHJlcXVlc3QsIGNhbm9uaWNhbEhlYWRlcnMsIGF3YWl0IGdldFBheWxvYWRIYXNoKG9yaWdpbmFsUmVxdWVzdCwgdGhpcy5zaGEyNTYpKVxuICAgICk7XG5cbiAgICByZXR1cm4gcmVxdWVzdDtcbiAgfVxuXG4gIHB1YmxpYyBhc3luYyBzaWduKHN0cmluZ1RvU2lnbjogc3RyaW5nLCBvcHRpb25zPzogU2lnbmluZ0FyZ3VtZW50cyk6IFByb21pc2U8c3RyaW5nPjtcbiAgcHVibGljIGFzeW5jIHNpZ24oZXZlbnQ6IEZvcm1hdHRlZEV2ZW50LCBvcHRpb25zOiBFdmVudFNpZ25pbmdBcmd1bWVudHMpOiBQcm9taXNlPHN0cmluZz47XG4gIHB1YmxpYyBhc3luYyBzaWduKHJlcXVlc3RUb1NpZ246IEh0dHBSZXF1ZXN0LCBvcHRpb25zPzogUmVxdWVzdFNpZ25pbmdBcmd1bWVudHMpOiBQcm9taXNlPEh0dHBSZXF1ZXN0PjtcbiAgcHVibGljIGFzeW5jIHNpZ24odG9TaWduOiBhbnksIG9wdGlvbnM6IGFueSk6IFByb21pc2U8YW55PiB7XG4gICAgaWYgKHR5cGVvZiB0b1NpZ24gPT09IFwic3RyaW5nXCIpIHtcbiAgICAgIHJldHVybiB0aGlzLnNpZ25TdHJpbmcodG9TaWduLCBvcHRpb25zKTtcbiAgICB9IGVsc2UgaWYgKHRvU2lnbi5oZWFkZXJzICYmIHRvU2lnbi5wYXlsb2FkKSB7XG4gICAgICByZXR1cm4gdGhpcy5zaWduRXZlbnQodG9TaWduLCBvcHRpb25zKTtcbiAgICB9IGVsc2Uge1xuICAgICAgcmV0dXJuIHRoaXMuc2lnblJlcXVlc3QodG9TaWduLCBvcHRpb25zKTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGFzeW5jIHNpZ25FdmVudChcbiAgICB7IGhlYWRlcnMsIHBheWxvYWQgfTogRm9ybWF0dGVkRXZlbnQsXG4gICAgeyBzaWduaW5nRGF0ZSA9IG5ldyBEYXRlKCksIHByaW9yU2lnbmF0dXJlLCBzaWduaW5nUmVnaW9uLCBzaWduaW5nU2VydmljZSB9OiBFdmVudFNpZ25pbmdBcmd1bWVudHNcbiAgKTogUHJvbWlzZTxzdHJpbmc+IHtcbiAgICBjb25zdCByZWdpb24gPSBzaWduaW5nUmVnaW9uID8/IChhd2FpdCB0aGlzLnJlZ2lvblByb3ZpZGVyKCkpO1xuICAgIGNvbnN0IHsgc2hvcnREYXRlLCBsb25nRGF0ZSB9ID0gZm9ybWF0RGF0ZShzaWduaW5nRGF0ZSk7XG4gICAgY29uc3Qgc2NvcGUgPSBjcmVhdGVTY29wZShzaG9ydERhdGUsIHJlZ2lvbiwgc2lnbmluZ1NlcnZpY2UgPz8gdGhpcy5zZXJ2aWNlKTtcbiAgICBjb25zdCBoYXNoZWRQYXlsb2FkID0gYXdhaXQgZ2V0UGF5bG9hZEhhc2goeyBoZWFkZXJzOiB7fSwgYm9keTogcGF5bG9hZCB9IGFzIGFueSwgdGhpcy5zaGEyNTYpO1xuICAgIGNvbnN0IGhhc2ggPSBuZXcgdGhpcy5zaGEyNTYoKTtcbiAgICBoYXNoLnVwZGF0ZShoZWFkZXJzKTtcbiAgICBjb25zdCBoYXNoZWRIZWFkZXJzID0gdG9IZXgoYXdhaXQgaGFzaC5kaWdlc3QoKSk7XG4gICAgY29uc3Qgc3RyaW5nVG9TaWduID0gW1xuICAgICAgRVZFTlRfQUxHT1JJVEhNX0lERU5USUZJRVIsXG4gICAgICBsb25nRGF0ZSxcbiAgICAgIHNjb3BlLFxuICAgICAgcHJpb3JTaWduYXR1cmUsXG4gICAgICBoYXNoZWRIZWFkZXJzLFxuICAgICAgaGFzaGVkUGF5bG9hZCxcbiAgICBdLmpvaW4oXCJcXG5cIik7XG4gICAgcmV0dXJuIHRoaXMuc2lnblN0cmluZyhzdHJpbmdUb1NpZ24sIHsgc2lnbmluZ0RhdGUsIHNpZ25pbmdSZWdpb246IHJlZ2lvbiwgc2lnbmluZ1NlcnZpY2UgfSk7XG4gIH1cblxuICBwcml2YXRlIGFzeW5jIHNpZ25TdHJpbmcoXG4gICAgc3RyaW5nVG9TaWduOiBzdHJpbmcsXG4gICAgeyBzaWduaW5nRGF0ZSA9IG5ldyBEYXRlKCksIHNpZ25pbmdSZWdpb24sIHNpZ25pbmdTZXJ2aWNlIH06IFNpZ25pbmdBcmd1bWVudHMgPSB7fVxuICApOiBQcm9taXNlPHN0cmluZz4ge1xuICAgIGNvbnN0IGNyZWRlbnRpYWxzID0gYXdhaXQgdGhpcy5jcmVkZW50aWFsUHJvdmlkZXIoKTtcbiAgICBjb25zdCByZWdpb24gPSBzaWduaW5nUmVnaW9uID8/IChhd2FpdCB0aGlzLnJlZ2lvblByb3ZpZGVyKCkpO1xuICAgIGNvbnN0IHsgc2hvcnREYXRlIH0gPSBmb3JtYXREYXRlKHNpZ25pbmdEYXRlKTtcblxuICAgIGNvbnN0IGhhc2ggPSBuZXcgdGhpcy5zaGEyNTYoYXdhaXQgdGhpcy5nZXRTaWduaW5nS2V5KGNyZWRlbnRpYWxzLCByZWdpb24sIHNob3J0RGF0ZSwgc2lnbmluZ1NlcnZpY2UpKTtcbiAgICBoYXNoLnVwZGF0ZShzdHJpbmdUb1NpZ24pO1xuICAgIHJldHVybiB0b0hleChhd2FpdCBoYXNoLmRpZ2VzdCgpKTtcbiAgfVxuXG4gIHByaXZhdGUgYXN5bmMgc2lnblJlcXVlc3QoXG4gICAgcmVxdWVzdFRvU2lnbjogSHR0cFJlcXVlc3QsXG4gICAge1xuICAgICAgc2lnbmluZ0RhdGUgPSBuZXcgRGF0ZSgpLFxuICAgICAgc2lnbmFibGVIZWFkZXJzLFxuICAgICAgdW5zaWduYWJsZUhlYWRlcnMsXG4gICAgICBzaWduaW5nUmVnaW9uLFxuICAgICAgc2lnbmluZ1NlcnZpY2UsXG4gICAgfTogUmVxdWVzdFNpZ25pbmdBcmd1bWVudHMgPSB7fVxuICApOiBQcm9taXNlPEh0dHBSZXF1ZXN0PiB7XG4gICAgY29uc3QgY3JlZGVudGlhbHMgPSBhd2FpdCB0aGlzLmNyZWRlbnRpYWxQcm92aWRlcigpO1xuICAgIGNvbnN0IHJlZ2lvbiA9IHNpZ25pbmdSZWdpb24gPz8gKGF3YWl0IHRoaXMucmVnaW9uUHJvdmlkZXIoKSk7XG4gICAgY29uc3QgcmVxdWVzdCA9IHByZXBhcmVSZXF1ZXN0KHJlcXVlc3RUb1NpZ24pO1xuICAgIGNvbnN0IHsgbG9uZ0RhdGUsIHNob3J0RGF0ZSB9ID0gZm9ybWF0RGF0ZShzaWduaW5nRGF0ZSk7XG4gICAgY29uc3Qgc2NvcGUgPSBjcmVhdGVTY29wZShzaG9ydERhdGUsIHJlZ2lvbiwgc2lnbmluZ1NlcnZpY2UgPz8gdGhpcy5zZXJ2aWNlKTtcblxuICAgIHJlcXVlc3QuaGVhZGVyc1tBTVpfREFURV9IRUFERVJdID0gbG9uZ0RhdGU7XG4gICAgaWYgKGNyZWRlbnRpYWxzLnNlc3Npb25Ub2tlbikge1xuICAgICAgcmVxdWVzdC5oZWFkZXJzW1RPS0VOX0hFQURFUl0gPSBjcmVkZW50aWFscy5zZXNzaW9uVG9rZW47XG4gICAgfVxuXG4gICAgY29uc3QgcGF5bG9hZEhhc2ggPSBhd2FpdCBnZXRQYXlsb2FkSGFzaChyZXF1ZXN0LCB0aGlzLnNoYTI1Nik7XG4gICAgaWYgKCFoYXNIZWFkZXIoU0hBMjU2X0hFQURFUiwgcmVxdWVzdC5oZWFkZXJzKSAmJiB0aGlzLmFwcGx5Q2hlY2tzdW0pIHtcbiAgICAgIHJlcXVlc3QuaGVhZGVyc1tTSEEyNTZfSEVBREVSXSA9IHBheWxvYWRIYXNoO1xuICAgIH1cblxuICAgIGNvbnN0IGNhbm9uaWNhbEhlYWRlcnMgPSBnZXRDYW5vbmljYWxIZWFkZXJzKHJlcXVlc3QsIHVuc2lnbmFibGVIZWFkZXJzLCBzaWduYWJsZUhlYWRlcnMpO1xuICAgIGNvbnN0IHNpZ25hdHVyZSA9IGF3YWl0IHRoaXMuZ2V0U2lnbmF0dXJlKFxuICAgICAgbG9uZ0RhdGUsXG4gICAgICBzY29wZSxcbiAgICAgIHRoaXMuZ2V0U2lnbmluZ0tleShjcmVkZW50aWFscywgcmVnaW9uLCBzaG9ydERhdGUsIHNpZ25pbmdTZXJ2aWNlKSxcbiAgICAgIHRoaXMuY3JlYXRlQ2Fub25pY2FsUmVxdWVzdChyZXF1ZXN0LCBjYW5vbmljYWxIZWFkZXJzLCBwYXlsb2FkSGFzaClcbiAgICApO1xuXG4gICAgcmVxdWVzdC5oZWFkZXJzW0FVVEhfSEVBREVSXSA9XG4gICAgICBgJHtBTEdPUklUSE1fSURFTlRJRklFUn0gYCArXG4gICAgICBgQ3JlZGVudGlhbD0ke2NyZWRlbnRpYWxzLmFjY2Vzc0tleUlkfS8ke3Njb3BlfSwgYCArXG4gICAgICBgU2lnbmVkSGVhZGVycz0ke2dldENhbm9uaWNhbEhlYWRlckxpc3QoY2Fub25pY2FsSGVhZGVycyl9LCBgICtcbiAgICAgIGBTaWduYXR1cmU9JHtzaWduYXR1cmV9YDtcblxuICAgIHJldHVybiByZXF1ZXN0O1xuICB9XG5cbiAgcHJpdmF0ZSBjcmVhdGVDYW5vbmljYWxSZXF1ZXN0KHJlcXVlc3Q6IEh0dHBSZXF1ZXN0LCBjYW5vbmljYWxIZWFkZXJzOiBIZWFkZXJCYWcsIHBheWxvYWRIYXNoOiBzdHJpbmcpOiBzdHJpbmcge1xuICAgIGNvbnN0IHNvcnRlZEhlYWRlcnMgPSBPYmplY3Qua2V5cyhjYW5vbmljYWxIZWFkZXJzKS5zb3J0KCk7XG4gICAgcmV0dXJuIGAke3JlcXVlc3QubWV0aG9kfVxuJHt0aGlzLmdldENhbm9uaWNhbFBhdGgocmVxdWVzdCl9XG4ke2dldENhbm9uaWNhbFF1ZXJ5KHJlcXVlc3QpfVxuJHtzb3J0ZWRIZWFkZXJzLm1hcCgobmFtZSkgPT4gYCR7bmFtZX06JHtjYW5vbmljYWxIZWFkZXJzW25hbWVdfWApLmpvaW4oXCJcXG5cIil9XG5cbiR7c29ydGVkSGVhZGVycy5qb2luKFwiO1wiKX1cbiR7cGF5bG9hZEhhc2h9YDtcbiAgfVxuXG4gIHByaXZhdGUgYXN5bmMgY3JlYXRlU3RyaW5nVG9TaWduKFxuICAgIGxvbmdEYXRlOiBzdHJpbmcsXG4gICAgY3JlZGVudGlhbFNjb3BlOiBzdHJpbmcsXG4gICAgY2Fub25pY2FsUmVxdWVzdDogc3RyaW5nXG4gICk6IFByb21pc2U8c3RyaW5nPiB7XG4gICAgY29uc3QgaGFzaCA9IG5ldyB0aGlzLnNoYTI1NigpO1xuICAgIGhhc2gudXBkYXRlKGNhbm9uaWNhbFJlcXVlc3QpO1xuICAgIGNvbnN0IGhhc2hlZFJlcXVlc3QgPSBhd2FpdCBoYXNoLmRpZ2VzdCgpO1xuXG4gICAgcmV0dXJuIGAke0FMR09SSVRITV9JREVOVElGSUVSfVxuJHtsb25nRGF0ZX1cbiR7Y3JlZGVudGlhbFNjb3BlfVxuJHt0b0hleChoYXNoZWRSZXF1ZXN0KX1gO1xuICB9XG5cbiAgcHJpdmF0ZSBnZXRDYW5vbmljYWxQYXRoKHsgcGF0aCB9OiBIdHRwUmVxdWVzdCk6IHN0cmluZyB7XG4gICAgaWYgKHRoaXMudXJpRXNjYXBlUGF0aCkge1xuICAgICAgY29uc3QgZG91YmxlRW5jb2RlZCA9IGVuY29kZVVSSUNvbXBvbmVudChwYXRoLnJlcGxhY2UoL15cXC8vLCBcIlwiKSk7XG4gICAgICByZXR1cm4gYC8ke2RvdWJsZUVuY29kZWQucmVwbGFjZSgvJTJGL2csIFwiL1wiKX1gO1xuICAgIH1cblxuICAgIHJldHVybiBwYXRoO1xuICB9XG5cbiAgcHJpdmF0ZSBhc3luYyBnZXRTaWduYXR1cmUoXG4gICAgbG9uZ0RhdGU6IHN0cmluZyxcbiAgICBjcmVkZW50aWFsU2NvcGU6IHN0cmluZyxcbiAgICBrZXlQcm9taXNlOiBQcm9taXNlPFVpbnQ4QXJyYXk+LFxuICAgIGNhbm9uaWNhbFJlcXVlc3Q6IHN0cmluZ1xuICApOiBQcm9taXNlPHN0cmluZz4ge1xuICAgIGNvbnN0IHN0cmluZ1RvU2lnbiA9IGF3YWl0IHRoaXMuY3JlYXRlU3RyaW5nVG9TaWduKGxvbmdEYXRlLCBjcmVkZW50aWFsU2NvcGUsIGNhbm9uaWNhbFJlcXVlc3QpO1xuXG4gICAgY29uc3QgaGFzaCA9IG5ldyB0aGlzLnNoYTI1Nihhd2FpdCBrZXlQcm9taXNlKTtcbiAgICBoYXNoLnVwZGF0ZShzdHJpbmdUb1NpZ24pO1xuICAgIHJldHVybiB0b0hleChhd2FpdCBoYXNoLmRpZ2VzdCgpKTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0U2lnbmluZ0tleShcbiAgICBjcmVkZW50aWFsczogQ3JlZGVudGlhbHMsXG4gICAgcmVnaW9uOiBzdHJpbmcsXG4gICAgc2hvcnREYXRlOiBzdHJpbmcsXG4gICAgc2VydmljZT86IHN0cmluZ1xuICApOiBQcm9taXNlPFVpbnQ4QXJyYXk+IHtcbiAgICByZXR1cm4gZ2V0U2lnbmluZ0tleSh0aGlzLnNoYTI1NiwgY3JlZGVudGlhbHMsIHNob3J0RGF0ZSwgcmVnaW9uLCBzZXJ2aWNlIHx8IHRoaXMuc2VydmljZSk7XG4gIH1cbn1cblxuY29uc3QgZm9ybWF0RGF0ZSA9IChub3c6IERhdGVJbnB1dCk6IHsgbG9uZ0RhdGU6IHN0cmluZzsgc2hvcnREYXRlOiBzdHJpbmcgfSA9PiB7XG4gIGNvbnN0IGxvbmdEYXRlID0gaXNvODYwMShub3cpLnJlcGxhY2UoL1tcXC06XS9nLCBcIlwiKTtcbiAgcmV0dXJuIHtcbiAgICBsb25nRGF0ZSxcbiAgICBzaG9ydERhdGU6IGxvbmdEYXRlLnN1YnN0cigwLCA4KSxcbiAgfTtcbn07XG5cbmNvbnN0IGdldENhbm9uaWNhbEhlYWRlckxpc3QgPSAoaGVhZGVyczogb2JqZWN0KTogc3RyaW5nID0+IE9iamVjdC5rZXlzKGhlYWRlcnMpLnNvcnQoKS5qb2luKFwiO1wiKTtcblxuY29uc3Qgbm9ybWFsaXplUmVnaW9uUHJvdmlkZXIgPSAocmVnaW9uOiBzdHJpbmcgfCBQcm92aWRlcjxzdHJpbmc+KTogUHJvdmlkZXI8c3RyaW5nPiA9PiB7XG4gIGlmICh0eXBlb2YgcmVnaW9uID09PSBcInN0cmluZ1wiKSB7XG4gICAgY29uc3QgcHJvbWlzaWZpZWQgPSBQcm9taXNlLnJlc29sdmUocmVnaW9uKTtcbiAgICByZXR1cm4gKCkgPT4gcHJvbWlzaWZpZWQ7XG4gIH0gZWxzZSB7XG4gICAgcmV0dXJuIHJlZ2lvbjtcbiAgfVxufTtcblxuY29uc3Qgbm9ybWFsaXplQ3JlZGVudGlhbHNQcm92aWRlciA9IChjcmVkZW50aWFsczogQ3JlZGVudGlhbHMgfCBQcm92aWRlcjxDcmVkZW50aWFscz4pOiBQcm92aWRlcjxDcmVkZW50aWFscz4gPT4ge1xuICBpZiAodHlwZW9mIGNyZWRlbnRpYWxzID09PSBcIm9iamVjdFwiKSB7XG4gICAgY29uc3QgcHJvbWlzaWZpZWQgPSBQcm9taXNlLnJlc29sdmUoY3JlZGVudGlhbHMpO1xuICAgIHJldHVybiAoKSA9PiBwcm9taXNpZmllZDtcbiAgfSBlbHNlIHtcbiAgICByZXR1cm4gY3JlZGVudGlhbHM7XG4gIH1cbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/SignatureV4.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/cloneRequest.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/cloneRequest.js ***! \********************************************************************/ /*! exports provided: cloneRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cloneRequest\", function() { return cloneRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\n/**\n * @internal\n */\nfunction cloneRequest(_a) {\n var headers = _a.headers, query = _a.query, rest = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"])(_a, [\"headers\", \"query\"]);\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, rest), { headers: Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, headers), query: query ? cloneQuery(query) : undefined });\n}\nfunction cloneQuery(query) {\n return Object.keys(query).reduce(function (carry, paramName) {\n var _a;\n var param = query[paramName];\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])(param) : param, _a));\n }, {});\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xvbmVSZXF1ZXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2Nsb25lUmVxdWVzdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBRUE7O0dBRUc7QUFDSCxNQUFNLFVBQVUsWUFBWSxDQUFDLEVBQXdDO0lBQXRDLElBQUEsT0FBTyxhQUFBLEVBQUUsS0FBSyxXQUFBLEVBQUssSUFBSSxjQUF6QixvQkFBMkIsQ0FBRjtJQUNwRCw2QkFDSyxJQUFJLEtBQ1AsT0FBTyxlQUFPLE9BQU8sR0FDckIsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxTQUFTLElBQzVDO0FBQ0osQ0FBQztBQUVELFNBQVMsVUFBVSxDQUFDLEtBQXdCO0lBQzFDLE9BQU8sTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBQyxLQUF3QixFQUFFLFNBQWlCOztRQUMzRSxJQUFNLEtBQUssR0FBRyxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUM7UUFDL0IsNkJBQ0ssS0FBSyxnQkFDUCxTQUFTLElBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLFVBQUssS0FBSyxFQUFFLENBQUMsQ0FBQyxLQUFLLE9BQ3REO0lBQ0osQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDO0FBQ1QsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBSZXF1ZXN0LCBRdWVyeVBhcmFtZXRlckJhZyB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgZnVuY3Rpb24gY2xvbmVSZXF1ZXN0KHsgaGVhZGVycywgcXVlcnksIC4uLnJlc3QgfTogSHR0cFJlcXVlc3QpOiBIdHRwUmVxdWVzdCB7XG4gIHJldHVybiB7XG4gICAgLi4ucmVzdCxcbiAgICBoZWFkZXJzOiB7IC4uLmhlYWRlcnMgfSxcbiAgICBxdWVyeTogcXVlcnkgPyBjbG9uZVF1ZXJ5KHF1ZXJ5KSA6IHVuZGVmaW5lZCxcbiAgfTtcbn1cblxuZnVuY3Rpb24gY2xvbmVRdWVyeShxdWVyeTogUXVlcnlQYXJhbWV0ZXJCYWcpOiBRdWVyeVBhcmFtZXRlckJhZyB7XG4gIHJldHVybiBPYmplY3Qua2V5cyhxdWVyeSkucmVkdWNlKChjYXJyeTogUXVlcnlQYXJhbWV0ZXJCYWcsIHBhcmFtTmFtZTogc3RyaW5nKSA9PiB7XG4gICAgY29uc3QgcGFyYW0gPSBxdWVyeVtwYXJhbU5hbWVdO1xuICAgIHJldHVybiB7XG4gICAgICAuLi5jYXJyeSxcbiAgICAgIFtwYXJhbU5hbWVdOiBBcnJheS5pc0FycmF5KHBhcmFtKSA/IFsuLi5wYXJhbV0gOiBwYXJhbSxcbiAgICB9O1xuICB9LCB7fSk7XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/cloneRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/constants.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/constants.js ***! \*****************************************************************/ /*! exports provided: ALGORITHM_QUERY_PARAM, CREDENTIAL_QUERY_PARAM, AMZ_DATE_QUERY_PARAM, SIGNED_HEADERS_QUERY_PARAM, EXPIRES_QUERY_PARAM, SIGNATURE_QUERY_PARAM, TOKEN_QUERY_PARAM, AUTH_HEADER, AMZ_DATE_HEADER, DATE_HEADER, GENERATED_HEADERS, SIGNATURE_HEADER, SHA256_HEADER, TOKEN_HEADER, HOST_HEADER, ALWAYS_UNSIGNABLE_HEADERS, PROXY_HEADER_PATTERN, SEC_HEADER_PATTERN, UNSIGNABLE_PATTERNS, ALGORITHM_IDENTIFIER, EVENT_ALGORITHM_IDENTIFIER, UNSIGNED_PAYLOAD, MAX_CACHE_SIZE, KEY_TYPE_IDENTIFIER, MAX_PRESIGNED_TTL */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_QUERY_PARAM\", function() { return ALGORITHM_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CREDENTIAL_QUERY_PARAM\", function() { return CREDENTIAL_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMZ_DATE_QUERY_PARAM\", function() { return AMZ_DATE_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNED_HEADERS_QUERY_PARAM\", function() { return SIGNED_HEADERS_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EXPIRES_QUERY_PARAM\", function() { return EXPIRES_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNATURE_QUERY_PARAM\", function() { return SIGNATURE_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TOKEN_QUERY_PARAM\", function() { return TOKEN_QUERY_PARAM; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AUTH_HEADER\", function() { return AUTH_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AMZ_DATE_HEADER\", function() { return AMZ_DATE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DATE_HEADER\", function() { return DATE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GENERATED_HEADERS\", function() { return GENERATED_HEADERS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SIGNATURE_HEADER\", function() { return SIGNATURE_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SHA256_HEADER\", function() { return SHA256_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TOKEN_HEADER\", function() { return TOKEN_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HOST_HEADER\", function() { return HOST_HEADER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALWAYS_UNSIGNABLE_HEADERS\", function() { return ALWAYS_UNSIGNABLE_HEADERS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PROXY_HEADER_PATTERN\", function() { return PROXY_HEADER_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SEC_HEADER_PATTERN\", function() { return SEC_HEADER_PATTERN; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UNSIGNABLE_PATTERNS\", function() { return UNSIGNABLE_PATTERNS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ALGORITHM_IDENTIFIER\", function() { return ALGORITHM_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EVENT_ALGORITHM_IDENTIFIER\", function() { return EVENT_ALGORITHM_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UNSIGNED_PAYLOAD\", function() { return UNSIGNED_PAYLOAD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAX_CACHE_SIZE\", function() { return MAX_CACHE_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KEY_TYPE_IDENTIFIER\", function() { return KEY_TYPE_IDENTIFIER; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MAX_PRESIGNED_TTL\", function() { return MAX_PRESIGNED_TTL; });\nvar ALGORITHM_QUERY_PARAM = \"X-Amz-Algorithm\";\nvar CREDENTIAL_QUERY_PARAM = \"X-Amz-Credential\";\nvar AMZ_DATE_QUERY_PARAM = \"X-Amz-Date\";\nvar SIGNED_HEADERS_QUERY_PARAM = \"X-Amz-SignedHeaders\";\nvar EXPIRES_QUERY_PARAM = \"X-Amz-Expires\";\nvar SIGNATURE_QUERY_PARAM = \"X-Amz-Signature\";\nvar TOKEN_QUERY_PARAM = \"X-Amz-Security-Token\";\nvar AUTH_HEADER = \"authorization\";\nvar AMZ_DATE_HEADER = AMZ_DATE_QUERY_PARAM.toLowerCase();\nvar DATE_HEADER = \"date\";\nvar GENERATED_HEADERS = [AUTH_HEADER, AMZ_DATE_HEADER, DATE_HEADER];\nvar SIGNATURE_HEADER = SIGNATURE_QUERY_PARAM.toLowerCase();\nvar SHA256_HEADER = \"x-amz-content-sha256\";\nvar TOKEN_HEADER = TOKEN_QUERY_PARAM.toLowerCase();\nvar HOST_HEADER = \"host\";\nvar ALWAYS_UNSIGNABLE_HEADERS = {\n authorization: true,\n \"cache-control\": true,\n connection: true,\n expect: true,\n from: true,\n \"keep-alive\": true,\n \"max-forwards\": true,\n pragma: true,\n referer: true,\n te: true,\n trailer: true,\n \"transfer-encoding\": true,\n upgrade: true,\n \"user-agent\": true,\n \"x-amzn-trace-id\": true,\n};\nvar PROXY_HEADER_PATTERN = /^proxy-/;\nvar SEC_HEADER_PATTERN = /^sec-/;\nvar UNSIGNABLE_PATTERNS = [/^proxy-/i, /^sec-/i];\nvar ALGORITHM_IDENTIFIER = \"AWS4-HMAC-SHA256\";\nvar EVENT_ALGORITHM_IDENTIFIER = \"AWS4-HMAC-SHA256-PAYLOAD\";\nvar UNSIGNED_PAYLOAD = \"UNSIGNED-PAYLOAD\";\nvar MAX_CACHE_SIZE = 50;\nvar KEY_TYPE_IDENTIFIER = \"aws4_request\";\nvar MAX_PRESIGNED_TTL = 60 * 60 * 24 * 7;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsSUFBTSxxQkFBcUIsR0FBRyxpQkFBaUIsQ0FBQztBQUN2RCxNQUFNLENBQUMsSUFBTSxzQkFBc0IsR0FBRyxrQkFBa0IsQ0FBQztBQUN6RCxNQUFNLENBQUMsSUFBTSxvQkFBb0IsR0FBRyxZQUFZLENBQUM7QUFDakQsTUFBTSxDQUFDLElBQU0sMEJBQTBCLEdBQUcscUJBQXFCLENBQUM7QUFDaEUsTUFBTSxDQUFDLElBQU0sbUJBQW1CLEdBQUcsZUFBZSxDQUFDO0FBQ25ELE1BQU0sQ0FBQyxJQUFNLHFCQUFxQixHQUFHLGlCQUFpQixDQUFDO0FBQ3ZELE1BQU0sQ0FBQyxJQUFNLGlCQUFpQixHQUFHLHNCQUFzQixDQUFDO0FBRXhELE1BQU0sQ0FBQyxJQUFNLFdBQVcsR0FBRyxlQUFlLENBQUM7QUFDM0MsTUFBTSxDQUFDLElBQU0sZUFBZSxHQUFHLG9CQUFvQixDQUFDLFdBQVcsRUFBRSxDQUFDO0FBQ2xFLE1BQU0sQ0FBQyxJQUFNLFdBQVcsR0FBRyxNQUFNLENBQUM7QUFDbEMsTUFBTSxDQUFDLElBQU0saUJBQWlCLEdBQUcsQ0FBQyxXQUFXLEVBQUUsZUFBZSxFQUFFLFdBQVcsQ0FBQyxDQUFDO0FBQzdFLE1BQU0sQ0FBQyxJQUFNLGdCQUFnQixHQUFHLHFCQUFxQixDQUFDLFdBQVcsRUFBRSxDQUFDO0FBQ3BFLE1BQU0sQ0FBQyxJQUFNLGFBQWEsR0FBRyxzQkFBc0IsQ0FBQztBQUNwRCxNQUFNLENBQUMsSUFBTSxZQUFZLEdBQUcsaUJBQWlCLENBQUMsV0FBVyxFQUFFLENBQUM7QUFDNUQsTUFBTSxDQUFDLElBQU0sV0FBVyxHQUFHLE1BQU0sQ0FBQztBQUVsQyxNQUFNLENBQUMsSUFBTSx5QkFBeUIsR0FBRztJQUN2QyxhQUFhLEVBQUUsSUFBSTtJQUNuQixlQUFlLEVBQUUsSUFBSTtJQUNyQixVQUFVLEVBQUUsSUFBSTtJQUNoQixNQUFNLEVBQUUsSUFBSTtJQUNaLElBQUksRUFBRSxJQUFJO0lBQ1YsWUFBWSxFQUFFLElBQUk7SUFDbEIsY0FBYyxFQUFFLElBQUk7SUFDcEIsTUFBTSxFQUFFLElBQUk7SUFDWixPQUFPLEVBQUUsSUFBSTtJQUNiLEVBQUUsRUFBRSxJQUFJO0lBQ1IsT0FBTyxFQUFFLElBQUk7SUFDYixtQkFBbUIsRUFBRSxJQUFJO0lBQ3pCLE9BQU8sRUFBRSxJQUFJO0lBQ2IsWUFBWSxFQUFFLElBQUk7SUFDbEIsaUJBQWlCLEVBQUUsSUFBSTtDQUN4QixDQUFDO0FBRUYsTUFBTSxDQUFDLElBQU0sb0JBQW9CLEdBQUcsU0FBUyxDQUFDO0FBRTlDLE1BQU0sQ0FBQyxJQUFNLGtCQUFrQixHQUFHLE9BQU8sQ0FBQztBQUUxQyxNQUFNLENBQUMsSUFBTSxtQkFBbUIsR0FBRyxDQUFDLFVBQVUsRUFBRSxRQUFRLENBQUMsQ0FBQztBQUUxRCxNQUFNLENBQUMsSUFBTSxvQkFBb0IsR0FBRyxrQkFBa0IsQ0FBQztBQUV2RCxNQUFNLENBQUMsSUFBTSwwQkFBMEIsR0FBRywwQkFBMEIsQ0FBQztBQUVyRSxNQUFNLENBQUMsSUFBTSxnQkFBZ0IsR0FBRyxrQkFBa0IsQ0FBQztBQUVuRCxNQUFNLENBQUMsSUFBTSxjQUFjLEdBQUcsRUFBRSxDQUFDO0FBQ2pDLE1BQU0sQ0FBQyxJQUFNLG1CQUFtQixHQUFHLGNBQWMsQ0FBQztBQUVsRCxNQUFNLENBQUMsSUFBTSxpQkFBaUIsR0FBRyxFQUFFLEdBQUcsRUFBRSxHQUFHLEVBQUUsR0FBRyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgQUxHT1JJVEhNX1FVRVJZX1BBUkFNID0gXCJYLUFtei1BbGdvcml0aG1cIjtcbmV4cG9ydCBjb25zdCBDUkVERU5USUFMX1FVRVJZX1BBUkFNID0gXCJYLUFtei1DcmVkZW50aWFsXCI7XG5leHBvcnQgY29uc3QgQU1aX0RBVEVfUVVFUllfUEFSQU0gPSBcIlgtQW16LURhdGVcIjtcbmV4cG9ydCBjb25zdCBTSUdORURfSEVBREVSU19RVUVSWV9QQVJBTSA9IFwiWC1BbXotU2lnbmVkSGVhZGVyc1wiO1xuZXhwb3J0IGNvbnN0IEVYUElSRVNfUVVFUllfUEFSQU0gPSBcIlgtQW16LUV4cGlyZXNcIjtcbmV4cG9ydCBjb25zdCBTSUdOQVRVUkVfUVVFUllfUEFSQU0gPSBcIlgtQW16LVNpZ25hdHVyZVwiO1xuZXhwb3J0IGNvbnN0IFRPS0VOX1FVRVJZX1BBUkFNID0gXCJYLUFtei1TZWN1cml0eS1Ub2tlblwiO1xuXG5leHBvcnQgY29uc3QgQVVUSF9IRUFERVIgPSBcImF1dGhvcml6YXRpb25cIjtcbmV4cG9ydCBjb25zdCBBTVpfREFURV9IRUFERVIgPSBBTVpfREFURV9RVUVSWV9QQVJBTS50b0xvd2VyQ2FzZSgpO1xuZXhwb3J0IGNvbnN0IERBVEVfSEVBREVSID0gXCJkYXRlXCI7XG5leHBvcnQgY29uc3QgR0VORVJBVEVEX0hFQURFUlMgPSBbQVVUSF9IRUFERVIsIEFNWl9EQVRFX0hFQURFUiwgREFURV9IRUFERVJdO1xuZXhwb3J0IGNvbnN0IFNJR05BVFVSRV9IRUFERVIgPSBTSUdOQVRVUkVfUVVFUllfUEFSQU0udG9Mb3dlckNhc2UoKTtcbmV4cG9ydCBjb25zdCBTSEEyNTZfSEVBREVSID0gXCJ4LWFtei1jb250ZW50LXNoYTI1NlwiO1xuZXhwb3J0IGNvbnN0IFRPS0VOX0hFQURFUiA9IFRPS0VOX1FVRVJZX1BBUkFNLnRvTG93ZXJDYXNlKCk7XG5leHBvcnQgY29uc3QgSE9TVF9IRUFERVIgPSBcImhvc3RcIjtcblxuZXhwb3J0IGNvbnN0IEFMV0FZU19VTlNJR05BQkxFX0hFQURFUlMgPSB7XG4gIGF1dGhvcml6YXRpb246IHRydWUsXG4gIFwiY2FjaGUtY29udHJvbFwiOiB0cnVlLFxuICBjb25uZWN0aW9uOiB0cnVlLFxuICBleHBlY3Q6IHRydWUsXG4gIGZyb206IHRydWUsXG4gIFwia2VlcC1hbGl2ZVwiOiB0cnVlLFxuICBcIm1heC1mb3J3YXJkc1wiOiB0cnVlLFxuICBwcmFnbWE6IHRydWUsXG4gIHJlZmVyZXI6IHRydWUsXG4gIHRlOiB0cnVlLFxuICB0cmFpbGVyOiB0cnVlLFxuICBcInRyYW5zZmVyLWVuY29kaW5nXCI6IHRydWUsXG4gIHVwZ3JhZGU6IHRydWUsXG4gIFwidXNlci1hZ2VudFwiOiB0cnVlLFxuICBcIngtYW16bi10cmFjZS1pZFwiOiB0cnVlLFxufTtcblxuZXhwb3J0IGNvbnN0IFBST1hZX0hFQURFUl9QQVRURVJOID0gL15wcm94eS0vO1xuXG5leHBvcnQgY29uc3QgU0VDX0hFQURFUl9QQVRURVJOID0gL15zZWMtLztcblxuZXhwb3J0IGNvbnN0IFVOU0lHTkFCTEVfUEFUVEVSTlMgPSBbL15wcm94eS0vaSwgL15zZWMtL2ldO1xuXG5leHBvcnQgY29uc3QgQUxHT1JJVEhNX0lERU5USUZJRVIgPSBcIkFXUzQtSE1BQy1TSEEyNTZcIjtcblxuZXhwb3J0IGNvbnN0IEVWRU5UX0FMR09SSVRITV9JREVOVElGSUVSID0gXCJBV1M0LUhNQUMtU0hBMjU2LVBBWUxPQURcIjtcblxuZXhwb3J0IGNvbnN0IFVOU0lHTkVEX1BBWUxPQUQgPSBcIlVOU0lHTkVELVBBWUxPQURcIjtcblxuZXhwb3J0IGNvbnN0IE1BWF9DQUNIRV9TSVpFID0gNTA7XG5leHBvcnQgY29uc3QgS0VZX1RZUEVfSURFTlRJRklFUiA9IFwiYXdzNF9yZXF1ZXN0XCI7XG5cbmV4cG9ydCBjb25zdCBNQVhfUFJFU0lHTkVEX1RUTCA9IDYwICogNjAgKiAyNCAqIDc7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/credentialDerivation.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/credentialDerivation.js ***! \****************************************************************************/ /*! exports provided: createScope, getSigningKey, clearCredentialCache */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createScope\", function() { return createScope; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSigningKey\", function() { return getSigningKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"clearCredentialCache\", function() { return clearCredentialCache; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/util-hex-encoding/dist/es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/signature-v4/dist/es/constants.js\");\n\n\n\nvar signingKeyCache = {};\nvar cacheQueue = [];\n/**\n * Create a string describing the scope of credentials used to sign a request.\n *\n * @param shortDate The current calendar date in the form YYYYMMDD.\n * @param region The AWS region in which the service resides.\n * @param service The service to which the signed request is being sent.\n */\nfunction createScope(shortDate, region, service) {\n return shortDate + \"/\" + region + \"/\" + service + \"/\" + _constants__WEBPACK_IMPORTED_MODULE_2__[\"KEY_TYPE_IDENTIFIER\"];\n}\n/**\n * Derive a signing key from its composite parts\n *\n * @param sha256Constructor A constructor function that can instantiate SHA-256\n * hash objects.\n * @param credentials The credentials with which the request will be\n * signed.\n * @param shortDate The current calendar date in the form YYYYMMDD.\n * @param region The AWS region in which the service resides.\n * @param service The service to which the signed request is being\n * sent.\n */\nvar getSigningKey = function (sha256Constructor, credentials, shortDate, region, service) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var credsHash, cacheKey, key, _a, _b, signable, e_1_1;\n var e_1, _c;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_d) {\n switch (_d.label) {\n case 0: return [4 /*yield*/, hmac(sha256Constructor, credentials.secretAccessKey, credentials.accessKeyId)];\n case 1:\n credsHash = _d.sent();\n cacheKey = shortDate + \":\" + region + \":\" + service + \":\" + Object(_aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__[\"toHex\"])(credsHash) + \":\" + credentials.sessionToken;\n if (cacheKey in signingKeyCache) {\n return [2 /*return*/, signingKeyCache[cacheKey]];\n }\n cacheQueue.push(cacheKey);\n while (cacheQueue.length > _constants__WEBPACK_IMPORTED_MODULE_2__[\"MAX_CACHE_SIZE\"]) {\n delete signingKeyCache[cacheQueue.shift()];\n }\n key = \"AWS4\" + credentials.secretAccessKey;\n _d.label = 2;\n case 2:\n _d.trys.push([2, 7, 8, 9]);\n _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])([shortDate, region, service, _constants__WEBPACK_IMPORTED_MODULE_2__[\"KEY_TYPE_IDENTIFIER\"]]), _b = _a.next();\n _d.label = 3;\n case 3:\n if (!!_b.done) return [3 /*break*/, 6];\n signable = _b.value;\n return [4 /*yield*/, hmac(sha256Constructor, key, signable)];\n case 4:\n key = _d.sent();\n _d.label = 5;\n case 5:\n _b = _a.next();\n return [3 /*break*/, 3];\n case 6: return [3 /*break*/, 9];\n case 7:\n e_1_1 = _d.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 9];\n case 8:\n try {\n if (_b && !_b.done && (_c = _a.return)) _c.call(_a);\n }\n finally { if (e_1) throw e_1.error; }\n return [7 /*endfinally*/];\n case 9: return [2 /*return*/, (signingKeyCache[cacheKey] = key)];\n }\n });\n}); };\n/**\n * @internal\n */\nfunction clearCredentialCache() {\n cacheQueue.length = 0;\n Object.keys(signingKeyCache).forEach(function (cacheKey) {\n delete signingKeyCache[cacheKey];\n });\n}\nfunction hmac(ctor, secret, data) {\n var hash = new ctor(secret);\n hash.update(data);\n return hash.digest();\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlZGVudGlhbERlcml2YXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvY3JlZGVudGlhbERlcml2YXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUNBLE9BQU8sRUFBRSxLQUFLLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUVuRCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsY0FBYyxFQUFFLE1BQU0sYUFBYSxDQUFDO0FBRWxFLElBQU0sZUFBZSxHQUFrQyxFQUFFLENBQUM7QUFDMUQsSUFBTSxVQUFVLEdBQWtCLEVBQUUsQ0FBQztBQUVyQzs7Ozs7O0dBTUc7QUFDSCxNQUFNLFVBQVUsV0FBVyxDQUFDLFNBQWlCLEVBQUUsTUFBYyxFQUFFLE9BQWU7SUFDNUUsT0FBVSxTQUFTLFNBQUksTUFBTSxTQUFJLE9BQU8sU0FBSSxtQkFBcUIsQ0FBQztBQUNwRSxDQUFDO0FBRUQ7Ozs7Ozs7Ozs7O0dBV0c7QUFDSCxNQUFNLENBQUMsSUFBTSxhQUFhLEdBQUcsVUFDM0IsaUJBQWtDLEVBQ2xDLFdBQXdCLEVBQ3hCLFNBQWlCLEVBQ2pCLE1BQWMsRUFDZCxPQUFlOzs7OztvQkFFRyxxQkFBTSxJQUFJLENBQUMsaUJBQWlCLEVBQUUsV0FBVyxDQUFDLGVBQWUsRUFBRSxXQUFXLENBQUMsV0FBVyxDQUFDLEVBQUE7O2dCQUEvRixTQUFTLEdBQUcsU0FBbUY7Z0JBQy9GLFFBQVEsR0FBTSxTQUFTLFNBQUksTUFBTSxTQUFJLE9BQU8sU0FBSSxLQUFLLENBQUMsU0FBUyxDQUFDLFNBQUksV0FBVyxDQUFDLFlBQWMsQ0FBQztnQkFDckcsSUFBSSxRQUFRLElBQUksZUFBZSxFQUFFO29CQUMvQixzQkFBTyxlQUFlLENBQUMsUUFBUSxDQUFDLEVBQUM7aUJBQ2xDO2dCQUVELFVBQVUsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7Z0JBQzFCLE9BQU8sVUFBVSxDQUFDLE1BQU0sR0FBRyxjQUFjLEVBQUU7b0JBQ3pDLE9BQU8sZUFBZSxDQUFDLFVBQVUsQ0FBQyxLQUFLLEVBQVksQ0FBQyxDQUFDO2lCQUN0RDtnQkFFRyxHQUFHLEdBQWUsU0FBTyxXQUFXLENBQUMsZUFBaUIsQ0FBQzs7OztnQkFDcEMsS0FBQSxTQUFBLENBQUMsU0FBUyxFQUFFLE1BQU0sRUFBRSxPQUFPLEVBQUUsbUJBQW1CLENBQUMsQ0FBQTs7OztnQkFBN0QsUUFBUTtnQkFDWCxxQkFBTSxJQUFJLENBQUMsaUJBQWlCLEVBQUUsR0FBRyxFQUFFLFFBQVEsQ0FBQyxFQUFBOztnQkFBbEQsR0FBRyxHQUFHLFNBQTRDLENBQUM7Ozs7Ozs7Ozs7Ozs7Ozs7b0JBRXJELHNCQUFPLENBQUMsZUFBZSxDQUFDLFFBQVEsQ0FBQyxHQUFHLEdBQWlCLENBQUMsRUFBQzs7O0tBQ3hELENBQUM7QUFFRjs7R0FFRztBQUNILE1BQU0sVUFBVSxvQkFBb0I7SUFDbEMsVUFBVSxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUM7SUFDdEIsTUFBTSxDQUFDLElBQUksQ0FBQyxlQUFlLENBQUMsQ0FBQyxPQUFPLENBQUMsVUFBQyxRQUFRO1FBQzVDLE9BQU8sZUFBZSxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQ25DLENBQUMsQ0FBQyxDQUFDO0FBQ0wsQ0FBQztBQUVELFNBQVMsSUFBSSxDQUFDLElBQXFCLEVBQUUsTUFBa0IsRUFBRSxJQUFnQjtJQUN2RSxJQUFNLElBQUksR0FBRyxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUM5QixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ2xCLE9BQU8sSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDO0FBQ3ZCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDcmVkZW50aWFscywgSGFzaENvbnN0cnVjdG9yLCBTb3VyY2VEYXRhIH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyB0b0hleCB9IGZyb20gXCJAYXdzLXNkay91dGlsLWhleC1lbmNvZGluZ1wiO1xuXG5pbXBvcnQgeyBLRVlfVFlQRV9JREVOVElGSUVSLCBNQVhfQ0FDSEVfU0laRSB9IGZyb20gXCIuL2NvbnN0YW50c1wiO1xuXG5jb25zdCBzaWduaW5nS2V5Q2FjaGU6IHsgW2tleTogc3RyaW5nXTogVWludDhBcnJheSB9ID0ge307XG5jb25zdCBjYWNoZVF1ZXVlOiBBcnJheTxzdHJpbmc+ID0gW107XG5cbi8qKlxuICogQ3JlYXRlIGEgc3RyaW5nIGRlc2NyaWJpbmcgdGhlIHNjb3BlIG9mIGNyZWRlbnRpYWxzIHVzZWQgdG8gc2lnbiBhIHJlcXVlc3QuXG4gKlxuICogQHBhcmFtIHNob3J0RGF0ZSBUaGUgY3VycmVudCBjYWxlbmRhciBkYXRlIGluIHRoZSBmb3JtIFlZWVlNTURELlxuICogQHBhcmFtIHJlZ2lvbiAgICBUaGUgQVdTIHJlZ2lvbiBpbiB3aGljaCB0aGUgc2VydmljZSByZXNpZGVzLlxuICogQHBhcmFtIHNlcnZpY2UgICBUaGUgc2VydmljZSB0byB3aGljaCB0aGUgc2lnbmVkIHJlcXVlc3QgaXMgYmVpbmcgc2VudC5cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGNyZWF0ZVNjb3BlKHNob3J0RGF0ZTogc3RyaW5nLCByZWdpb246IHN0cmluZywgc2VydmljZTogc3RyaW5nKTogc3RyaW5nIHtcbiAgcmV0dXJuIGAke3Nob3J0RGF0ZX0vJHtyZWdpb259LyR7c2VydmljZX0vJHtLRVlfVFlQRV9JREVOVElGSUVSfWA7XG59XG5cbi8qKlxuICogRGVyaXZlIGEgc2lnbmluZyBrZXkgZnJvbSBpdHMgY29tcG9zaXRlIHBhcnRzXG4gKlxuICogQHBhcmFtIHNoYTI1NkNvbnN0cnVjdG9yIEEgY29uc3RydWN0b3IgZnVuY3Rpb24gdGhhdCBjYW4gaW5zdGFudGlhdGUgU0hBLTI1NlxuICogICAgICAgICAgICAgICAgICAgICAgICAgIGhhc2ggb2JqZWN0cy5cbiAqIEBwYXJhbSBjcmVkZW50aWFscyAgICAgICBUaGUgY3JlZGVudGlhbHMgd2l0aCB3aGljaCB0aGUgcmVxdWVzdCB3aWxsIGJlXG4gKiAgICAgICAgICAgICAgICAgICAgICAgICAgc2lnbmVkLlxuICogQHBhcmFtIHNob3J0RGF0ZSAgICAgICAgIFRoZSBjdXJyZW50IGNhbGVuZGFyIGRhdGUgaW4gdGhlIGZvcm0gWVlZWU1NREQuXG4gKiBAcGFyYW0gcmVnaW9uICAgICAgICAgICAgVGhlIEFXUyByZWdpb24gaW4gd2hpY2ggdGhlIHNlcnZpY2UgcmVzaWRlcy5cbiAqIEBwYXJhbSBzZXJ2aWNlICAgICAgICAgICBUaGUgc2VydmljZSB0byB3aGljaCB0aGUgc2lnbmVkIHJlcXVlc3QgaXMgYmVpbmdcbiAqICAgICAgICAgICAgICAgICAgICAgICAgICBzZW50LlxuICovXG5leHBvcnQgY29uc3QgZ2V0U2lnbmluZ0tleSA9IGFzeW5jIChcbiAgc2hhMjU2Q29uc3RydWN0b3I6IEhhc2hDb25zdHJ1Y3RvcixcbiAgY3JlZGVudGlhbHM6IENyZWRlbnRpYWxzLFxuICBzaG9ydERhdGU6IHN0cmluZyxcbiAgcmVnaW9uOiBzdHJpbmcsXG4gIHNlcnZpY2U6IHN0cmluZ1xuKTogUHJvbWlzZTxVaW50OEFycmF5PiA9PiB7XG4gIGNvbnN0IGNyZWRzSGFzaCA9IGF3YWl0IGhtYWMoc2hhMjU2Q29uc3RydWN0b3IsIGNyZWRlbnRpYWxzLnNlY3JldEFjY2Vzc0tleSwgY3JlZGVudGlhbHMuYWNjZXNzS2V5SWQpO1xuICBjb25zdCBjYWNoZUtleSA9IGAke3Nob3J0RGF0ZX06JHtyZWdpb259OiR7c2VydmljZX06JHt0b0hleChjcmVkc0hhc2gpfToke2NyZWRlbnRpYWxzLnNlc3Npb25Ub2tlbn1gO1xuICBpZiAoY2FjaGVLZXkgaW4gc2lnbmluZ0tleUNhY2hlKSB7XG4gICAgcmV0dXJuIHNpZ25pbmdLZXlDYWNoZVtjYWNoZUtleV07XG4gIH1cblxuICBjYWNoZVF1ZXVlLnB1c2goY2FjaGVLZXkpO1xuICB3aGlsZSAoY2FjaGVRdWV1ZS5sZW5ndGggPiBNQVhfQ0FDSEVfU0laRSkge1xuICAgIGRlbGV0ZSBzaWduaW5nS2V5Q2FjaGVbY2FjaGVRdWV1ZS5zaGlmdCgpIGFzIHN0cmluZ107XG4gIH1cblxuICBsZXQga2V5OiBTb3VyY2VEYXRhID0gYEFXUzQke2NyZWRlbnRpYWxzLnNlY3JldEFjY2Vzc0tleX1gO1xuICBmb3IgKGNvbnN0IHNpZ25hYmxlIG9mIFtzaG9ydERhdGUsIHJlZ2lvbiwgc2VydmljZSwgS0VZX1RZUEVfSURFTlRJRklFUl0pIHtcbiAgICBrZXkgPSBhd2FpdCBobWFjKHNoYTI1NkNvbnN0cnVjdG9yLCBrZXksIHNpZ25hYmxlKTtcbiAgfVxuICByZXR1cm4gKHNpZ25pbmdLZXlDYWNoZVtjYWNoZUtleV0gPSBrZXkgYXMgVWludDhBcnJheSk7XG59O1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgZnVuY3Rpb24gY2xlYXJDcmVkZW50aWFsQ2FjaGUoKTogdm9pZCB7XG4gIGNhY2hlUXVldWUubGVuZ3RoID0gMDtcbiAgT2JqZWN0LmtleXMoc2lnbmluZ0tleUNhY2hlKS5mb3JFYWNoKChjYWNoZUtleSkgPT4ge1xuICAgIGRlbGV0ZSBzaWduaW5nS2V5Q2FjaGVbY2FjaGVLZXldO1xuICB9KTtcbn1cblxuZnVuY3Rpb24gaG1hYyhjdG9yOiBIYXNoQ29uc3RydWN0b3IsIHNlY3JldDogU291cmNlRGF0YSwgZGF0YTogU291cmNlRGF0YSk6IFByb21pc2U8VWludDhBcnJheT4ge1xuICBjb25zdCBoYXNoID0gbmV3IGN0b3Ioc2VjcmV0KTtcbiAgaGFzaC51cGRhdGUoZGF0YSk7XG4gIHJldHVybiBoYXNoLmRpZ2VzdCgpO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/credentialDerivation.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/getCanonicalHeaders.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/getCanonicalHeaders.js ***! \***************************************************************************/ /*! exports provided: getCanonicalHeaders */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalHeaders\", function() { return getCanonicalHeaders; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/signature-v4/dist/es/constants.js\");\n\n\n/**\n * @internal\n */\nfunction getCanonicalHeaders(_a, unsignableHeaders, signableHeaders) {\n var e_1, _b;\n var headers = _a.headers;\n var canonical = {};\n try {\n for (var _c = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers).sort()), _d = _c.next(); !_d.done; _d = _c.next()) {\n var headerName = _d.value;\n var canonicalHeaderName = headerName.toLowerCase();\n if (canonicalHeaderName in _constants__WEBPACK_IMPORTED_MODULE_1__[\"ALWAYS_UNSIGNABLE_HEADERS\"] || (unsignableHeaders === null || unsignableHeaders === void 0 ? void 0 : unsignableHeaders.has(canonicalHeaderName)) ||\n _constants__WEBPACK_IMPORTED_MODULE_1__[\"PROXY_HEADER_PATTERN\"].test(canonicalHeaderName) ||\n _constants__WEBPACK_IMPORTED_MODULE_1__[\"SEC_HEADER_PATTERN\"].test(canonicalHeaderName)) {\n if (!signableHeaders || (signableHeaders && !signableHeaders.has(canonicalHeaderName))) {\n continue;\n }\n }\n canonical[canonicalHeaderName] = headers[headerName].trim().replace(/\\s+/g, \" \");\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_d && !_d.done && (_b = _c.return)) _b.call(_c);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return canonical;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0Q2Fub25pY2FsSGVhZGVycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9nZXRDYW5vbmljYWxIZWFkZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFFQSxPQUFPLEVBQUUseUJBQXlCLEVBQUUsb0JBQW9CLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFbEc7O0dBRUc7QUFDSCxNQUFNLFVBQVUsbUJBQW1CLENBQ2pDLEVBQXdCLEVBQ3hCLGlCQUErQixFQUMvQixlQUE2Qjs7UUFGM0IsT0FBTyxhQUFBO0lBSVQsSUFBTSxTQUFTLEdBQWMsRUFBRSxDQUFDOztRQUNoQyxLQUF5QixJQUFBLEtBQUEsU0FBQSxNQUFNLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFBLGdCQUFBLDRCQUFFO1lBQWpELElBQU0sVUFBVSxXQUFBO1lBQ25CLElBQU0sbUJBQW1CLEdBQUcsVUFBVSxDQUFDLFdBQVcsRUFBRSxDQUFDO1lBQ3JELElBQ0UsbUJBQW1CLElBQUkseUJBQXlCLEtBQ2hELGlCQUFpQixhQUFqQixpQkFBaUIsdUJBQWpCLGlCQUFpQixDQUFFLEdBQUcsQ0FBQyxtQkFBbUIsRUFBQztnQkFDM0Msb0JBQW9CLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDO2dCQUM5QyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsRUFDNUM7Z0JBQ0EsSUFBSSxDQUFDLGVBQWUsSUFBSSxDQUFDLGVBQWUsSUFBSSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQUMsbUJBQW1CLENBQUMsQ0FBQyxFQUFFO29CQUN0RixTQUFTO2lCQUNWO2FBQ0Y7WUFFRCxTQUFTLENBQUMsbUJBQW1CLENBQUMsR0FBRyxPQUFPLENBQUMsVUFBVSxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsT0FBTyxDQUFDLE1BQU0sRUFBRSxHQUFHLENBQUMsQ0FBQztTQUNsRjs7Ozs7Ozs7O0lBRUQsT0FBTyxTQUFTLENBQUM7QUFDbkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEhlYWRlckJhZywgSHR0cFJlcXVlc3QgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgQUxXQVlTX1VOU0lHTkFCTEVfSEVBREVSUywgUFJPWFlfSEVBREVSX1BBVFRFUk4sIFNFQ19IRUFERVJfUEFUVEVSTiB9IGZyb20gXCIuL2NvbnN0YW50c1wiO1xuXG4vKipcbiAqIEBpbnRlcm5hbFxuICovXG5leHBvcnQgZnVuY3Rpb24gZ2V0Q2Fub25pY2FsSGVhZGVycyhcbiAgeyBoZWFkZXJzIH06IEh0dHBSZXF1ZXN0LFxuICB1bnNpZ25hYmxlSGVhZGVycz86IFNldDxzdHJpbmc+LFxuICBzaWduYWJsZUhlYWRlcnM/OiBTZXQ8c3RyaW5nPlxuKTogSGVhZGVyQmFnIHtcbiAgY29uc3QgY2Fub25pY2FsOiBIZWFkZXJCYWcgPSB7fTtcbiAgZm9yIChjb25zdCBoZWFkZXJOYW1lIG9mIE9iamVjdC5rZXlzKGhlYWRlcnMpLnNvcnQoKSkge1xuICAgIGNvbnN0IGNhbm9uaWNhbEhlYWRlck5hbWUgPSBoZWFkZXJOYW1lLnRvTG93ZXJDYXNlKCk7XG4gICAgaWYgKFxuICAgICAgY2Fub25pY2FsSGVhZGVyTmFtZSBpbiBBTFdBWVNfVU5TSUdOQUJMRV9IRUFERVJTIHx8XG4gICAgICB1bnNpZ25hYmxlSGVhZGVycz8uaGFzKGNhbm9uaWNhbEhlYWRlck5hbWUpIHx8XG4gICAgICBQUk9YWV9IRUFERVJfUEFUVEVSTi50ZXN0KGNhbm9uaWNhbEhlYWRlck5hbWUpIHx8XG4gICAgICBTRUNfSEVBREVSX1BBVFRFUk4udGVzdChjYW5vbmljYWxIZWFkZXJOYW1lKVxuICAgICkge1xuICAgICAgaWYgKCFzaWduYWJsZUhlYWRlcnMgfHwgKHNpZ25hYmxlSGVhZGVycyAmJiAhc2lnbmFibGVIZWFkZXJzLmhhcyhjYW5vbmljYWxIZWFkZXJOYW1lKSkpIHtcbiAgICAgICAgY29udGludWU7XG4gICAgICB9XG4gICAgfVxuXG4gICAgY2Fub25pY2FsW2Nhbm9uaWNhbEhlYWRlck5hbWVdID0gaGVhZGVyc1toZWFkZXJOYW1lXS50cmltKCkucmVwbGFjZSgvXFxzKy9nLCBcIiBcIik7XG4gIH1cblxuICByZXR1cm4gY2Fub25pY2FsO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/getCanonicalHeaders.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/getCanonicalQuery.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/getCanonicalQuery.js ***! \*************************************************************************/ /*! exports provided: getCanonicalQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCanonicalQuery\", function() { return getCanonicalQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-uri-escape */ \"./node_modules/@aws-sdk/util-uri-escape/dist/es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/signature-v4/dist/es/constants.js\");\n\n\n\n/**\n * @internal\n */\nfunction getCanonicalQuery(_a) {\n var e_1, _b;\n var _c = _a.query, query = _c === void 0 ? {} : _c;\n var keys = [];\n var serialized = {};\n var _loop_1 = function (key) {\n if (key.toLowerCase() === _constants__WEBPACK_IMPORTED_MODULE_2__[\"SIGNATURE_HEADER\"]) {\n return \"continue\";\n }\n keys.push(key);\n var value = query[key];\n if (typeof value === \"string\") {\n serialized[key] = Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key) + \"=\" + Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value);\n }\n else if (Array.isArray(value)) {\n serialized[key] = value\n .slice(0)\n .sort()\n .reduce(function (encoded, value) { return encoded.concat([Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(key) + \"=\" + Object(_aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__[\"escapeUri\"])(value)]); }, [])\n .join(\"&\");\n }\n };\n try {\n for (var _d = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(query).sort()), _e = _d.next(); !_e.done; _e = _d.next()) {\n var key = _e.value;\n _loop_1(key);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_e && !_e.done && (_b = _d.return)) _b.call(_d);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return keys\n .map(function (key) { return serialized[key]; })\n .filter(function (serialized) { return serialized; }) // omit any falsy values\n .join(\"&\");\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0Q2Fub25pY2FsUXVlcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZ2V0Q2Fub25pY2FsUXVlcnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUNBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUVyRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFL0M7O0dBRUc7QUFDSCxNQUFNLFVBQVUsaUJBQWlCLENBQUMsRUFBMkI7O1FBQXpCLGFBQVUsRUFBVixLQUFLLG1CQUFHLEVBQUUsS0FBQTtJQUM1QyxJQUFNLElBQUksR0FBa0IsRUFBRSxDQUFDO0lBQy9CLElBQU0sVUFBVSxHQUE4QixFQUFFLENBQUM7NEJBQ3RDLEdBQUc7UUFDWixJQUFJLEdBQUcsQ0FBQyxXQUFXLEVBQUUsS0FBSyxnQkFBZ0IsRUFBRTs7U0FFM0M7UUFFRCxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO1FBQ2YsSUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDO1FBQ3pCLElBQUksT0FBTyxLQUFLLEtBQUssUUFBUSxFQUFFO1lBQzdCLFVBQVUsQ0FBQyxHQUFHLENBQUMsR0FBTSxTQUFTLENBQUMsR0FBRyxDQUFDLFNBQUksU0FBUyxDQUFDLEtBQUssQ0FBRyxDQUFDO1NBQzNEO2FBQU0sSUFBSSxLQUFLLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxFQUFFO1lBQy9CLFVBQVUsQ0FBQyxHQUFHLENBQUMsR0FBRyxLQUFLO2lCQUNwQixLQUFLLENBQUMsQ0FBQyxDQUFDO2lCQUNSLElBQUksRUFBRTtpQkFDTixNQUFNLENBQ0wsVUFBQyxPQUFzQixFQUFFLEtBQWEsSUFBSyxPQUFBLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBSSxTQUFTLENBQUMsR0FBRyxDQUFDLFNBQUksU0FBUyxDQUFDLEtBQUssQ0FBRyxDQUFDLENBQUMsRUFBekQsQ0FBeUQsRUFDcEcsRUFBRSxDQUNIO2lCQUNBLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztTQUNkOzs7UUFsQkgsS0FBa0IsSUFBQSxLQUFBLFNBQUEsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQSxnQkFBQTtZQUF0QyxJQUFNLEdBQUcsV0FBQTtvQkFBSCxHQUFHO1NBbUJiOzs7Ozs7Ozs7SUFFRCxPQUFPLElBQUk7U0FDUixHQUFHLENBQUMsVUFBQyxHQUFHLElBQUssT0FBQSxVQUFVLENBQUMsR0FBRyxDQUFDLEVBQWYsQ0FBZSxDQUFDO1NBQzdCLE1BQU0sQ0FBQyxVQUFDLFVBQVUsSUFBSyxPQUFBLFVBQVUsRUFBVixDQUFVLENBQUMsQ0FBQyx3QkFBd0I7U0FDM0QsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0FBQ2YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBSZXF1ZXN0IH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyBlc2NhcGVVcmkgfSBmcm9tIFwiQGF3cy1zZGsvdXRpbC11cmktZXNjYXBlXCI7XG5cbmltcG9ydCB7IFNJR05BVFVSRV9IRUFERVIgfSBmcm9tIFwiLi9jb25zdGFudHNcIjtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGdldENhbm9uaWNhbFF1ZXJ5KHsgcXVlcnkgPSB7fSB9OiBIdHRwUmVxdWVzdCk6IHN0cmluZyB7XG4gIGNvbnN0IGtleXM6IEFycmF5PHN0cmluZz4gPSBbXTtcbiAgY29uc3Qgc2VyaWFsaXplZDogeyBba2V5OiBzdHJpbmddOiBzdHJpbmcgfSA9IHt9O1xuICBmb3IgKGNvbnN0IGtleSBvZiBPYmplY3Qua2V5cyhxdWVyeSkuc29ydCgpKSB7XG4gICAgaWYgKGtleS50b0xvd2VyQ2FzZSgpID09PSBTSUdOQVRVUkVfSEVBREVSKSB7XG4gICAgICBjb250aW51ZTtcbiAgICB9XG5cbiAgICBrZXlzLnB1c2goa2V5KTtcbiAgICBjb25zdCB2YWx1ZSA9IHF1ZXJ5W2tleV07XG4gICAgaWYgKHR5cGVvZiB2YWx1ZSA9PT0gXCJzdHJpbmdcIikge1xuICAgICAgc2VyaWFsaXplZFtrZXldID0gYCR7ZXNjYXBlVXJpKGtleSl9PSR7ZXNjYXBlVXJpKHZhbHVlKX1gO1xuICAgIH0gZWxzZSBpZiAoQXJyYXkuaXNBcnJheSh2YWx1ZSkpIHtcbiAgICAgIHNlcmlhbGl6ZWRba2V5XSA9IHZhbHVlXG4gICAgICAgIC5zbGljZSgwKVxuICAgICAgICAuc29ydCgpXG4gICAgICAgIC5yZWR1Y2UoXG4gICAgICAgICAgKGVuY29kZWQ6IEFycmF5PHN0cmluZz4sIHZhbHVlOiBzdHJpbmcpID0+IGVuY29kZWQuY29uY2F0KFtgJHtlc2NhcGVVcmkoa2V5KX09JHtlc2NhcGVVcmkodmFsdWUpfWBdKSxcbiAgICAgICAgICBbXVxuICAgICAgICApXG4gICAgICAgIC5qb2luKFwiJlwiKTtcbiAgICB9XG4gIH1cblxuICByZXR1cm4ga2V5c1xuICAgIC5tYXAoKGtleSkgPT4gc2VyaWFsaXplZFtrZXldKVxuICAgIC5maWx0ZXIoKHNlcmlhbGl6ZWQpID0+IHNlcmlhbGl6ZWQpIC8vIG9taXQgYW55IGZhbHN5IHZhbHVlc1xuICAgIC5qb2luKFwiJlwiKTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/getCanonicalQuery.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/getPayloadHash.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/getPayloadHash.js ***! \**********************************************************************/ /*! exports provided: getPayloadHash */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPayloadHash\", function() { return getPayloadHash; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/is-array-buffer */ \"./node_modules/@aws-sdk/is-array-buffer/dist/es/index.js\");\n/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ \"./node_modules/@aws-sdk/util-hex-encoding/dist/es/index.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/signature-v4/dist/es/constants.js\");\n\n\n\n\n/**\n * @internal\n */\nfunction getPayloadHash(_a, hashConstructor) {\n var headers = _a.headers, body = _a.body;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var _b, _c, headerName, hashCtor, _d;\n var e_1, _e;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_f) {\n switch (_f.label) {\n case 0:\n try {\n for (_b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n headerName = _c.value;\n if (headerName.toLowerCase() === _constants__WEBPACK_IMPORTED_MODULE_3__[\"SHA256_HEADER\"]) {\n return [2 /*return*/, headers[headerName]];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_e = _b.return)) _e.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n if (!(body == undefined)) return [3 /*break*/, 1];\n return [2 /*return*/, \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"];\n case 1:\n if (!(typeof body === \"string\" || ArrayBuffer.isView(body) || Object(_aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__[\"isArrayBuffer\"])(body))) return [3 /*break*/, 3];\n hashCtor = new hashConstructor();\n hashCtor.update(body);\n _d = _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__[\"toHex\"];\n return [4 /*yield*/, hashCtor.digest()];\n case 2: return [2 /*return*/, _d.apply(void 0, [_f.sent()])];\n case 3: \n // As any defined body that is not a string or binary data is a stream, this\n // body is unsignable. Attempt to send the request with an unsigned payload,\n // which may or may not be accepted by the service.\n return [2 /*return*/, _constants__WEBPACK_IMPORTED_MODULE_3__[\"UNSIGNED_PAYLOAD\"]];\n }\n });\n });\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0UGF5bG9hZEhhc2guanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZ2V0UGF5bG9hZEhhc2gudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUV6RCxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFFbkQsT0FBTyxFQUFFLGFBQWEsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUU5RDs7R0FFRztBQUNILE1BQU0sVUFBZ0IsY0FBYyxDQUNsQyxFQUE4QixFQUM5QixlQUFnQztRQUQ5QixPQUFPLGFBQUEsRUFBRSxJQUFJLFVBQUE7Ozs7Ozs7O3dCQUdmLEtBQXlCLEtBQUEsU0FBQSxNQUFNLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFBLDRDQUFFOzRCQUFwQyxVQUFVOzRCQUNuQixJQUFJLFVBQVUsQ0FBQyxXQUFXLEVBQUUsS0FBSyxhQUFhLEVBQUU7Z0NBQzlDLHNCQUFPLE9BQU8sQ0FBQyxVQUFVLENBQUMsRUFBQzs2QkFDNUI7eUJBQ0Y7Ozs7Ozs7Ozt5QkFFRyxDQUFBLElBQUksSUFBSSxTQUFTLENBQUEsRUFBakIsd0JBQWlCO29CQUNuQixzQkFBTyxrRUFBa0UsRUFBQzs7eUJBQ2pFLENBQUEsT0FBTyxJQUFJLEtBQUssUUFBUSxJQUFJLFdBQVcsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksYUFBYSxDQUFDLElBQUksQ0FBQyxDQUFBLEVBQTNFLHdCQUEyRTtvQkFDOUUsUUFBUSxHQUFHLElBQUksZUFBZSxFQUFFLENBQUM7b0JBQ3ZDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUM7b0JBQ2YsS0FBQSxLQUFLLENBQUE7b0JBQUMscUJBQU0sUUFBUSxDQUFDLE1BQU0sRUFBRSxFQUFBO3dCQUFwQyxzQkFBTyxrQkFBTSxTQUF1QixFQUFDLEVBQUM7O2dCQUd4Qyw0RUFBNEU7Z0JBQzVFLDRFQUE0RTtnQkFDNUUsbURBQW1EO2dCQUNuRCxzQkFBTyxnQkFBZ0IsRUFBQzs7OztDQUN6QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGlzQXJyYXlCdWZmZXIgfSBmcm9tIFwiQGF3cy1zZGsvaXMtYXJyYXktYnVmZmVyXCI7XG5pbXBvcnQgeyBIYXNoQ29uc3RydWN0b3IsIEh0dHBSZXF1ZXN0IH0gZnJvbSBcIkBhd3Mtc2RrL3R5cGVzXCI7XG5pbXBvcnQgeyB0b0hleCB9IGZyb20gXCJAYXdzLXNkay91dGlsLWhleC1lbmNvZGluZ1wiO1xuXG5pbXBvcnQgeyBTSEEyNTZfSEVBREVSLCBVTlNJR05FRF9QQVlMT0FEIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBhc3luYyBmdW5jdGlvbiBnZXRQYXlsb2FkSGFzaChcbiAgeyBoZWFkZXJzLCBib2R5IH06IEh0dHBSZXF1ZXN0LFxuICBoYXNoQ29uc3RydWN0b3I6IEhhc2hDb25zdHJ1Y3RvclxuKTogUHJvbWlzZTxzdHJpbmc+IHtcbiAgZm9yIChjb25zdCBoZWFkZXJOYW1lIG9mIE9iamVjdC5rZXlzKGhlYWRlcnMpKSB7XG4gICAgaWYgKGhlYWRlck5hbWUudG9Mb3dlckNhc2UoKSA9PT0gU0hBMjU2X0hFQURFUikge1xuICAgICAgcmV0dXJuIGhlYWRlcnNbaGVhZGVyTmFtZV07XG4gICAgfVxuICB9XG5cbiAgaWYgKGJvZHkgPT0gdW5kZWZpbmVkKSB7XG4gICAgcmV0dXJuIFwiZTNiMGM0NDI5OGZjMWMxNDlhZmJmNGM4OTk2ZmI5MjQyN2FlNDFlNDY0OWI5MzRjYTQ5NTk5MWI3ODUyYjg1NVwiO1xuICB9IGVsc2UgaWYgKHR5cGVvZiBib2R5ID09PSBcInN0cmluZ1wiIHx8IEFycmF5QnVmZmVyLmlzVmlldyhib2R5KSB8fCBpc0FycmF5QnVmZmVyKGJvZHkpKSB7XG4gICAgY29uc3QgaGFzaEN0b3IgPSBuZXcgaGFzaENvbnN0cnVjdG9yKCk7XG4gICAgaGFzaEN0b3IudXBkYXRlKGJvZHkpO1xuICAgIHJldHVybiB0b0hleChhd2FpdCBoYXNoQ3Rvci5kaWdlc3QoKSk7XG4gIH1cblxuICAvLyBBcyBhbnkgZGVmaW5lZCBib2R5IHRoYXQgaXMgbm90IGEgc3RyaW5nIG9yIGJpbmFyeSBkYXRhIGlzIGEgc3RyZWFtLCB0aGlzXG4gIC8vIGJvZHkgaXMgdW5zaWduYWJsZS4gQXR0ZW1wdCB0byBzZW5kIHRoZSByZXF1ZXN0IHdpdGggYW4gdW5zaWduZWQgcGF5bG9hZCxcbiAgLy8gd2hpY2ggbWF5IG9yIG1heSBub3QgYmUgYWNjZXB0ZWQgYnkgdGhlIHNlcnZpY2UuXG4gIHJldHVybiBVTlNJR05FRF9QQVlMT0FEO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/getPayloadHash.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/hasHeader.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/hasHeader.js ***! \*****************************************************************/ /*! exports provided: hasHeader */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasHeader\", function() { return hasHeader; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nfunction hasHeader(soughtHeader, headers) {\n var e_1, _a;\n soughtHeader = soughtHeader.toLowerCase();\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (soughtHeader === headerName.toLowerCase()) {\n return true;\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return false;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGFzSGVhZGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2hhc0hlYWRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBRUEsTUFBTSxVQUFVLFNBQVMsQ0FBQyxZQUFvQixFQUFFLE9BQWtCOztJQUNoRSxZQUFZLEdBQUcsWUFBWSxDQUFDLFdBQVcsRUFBRSxDQUFDOztRQUMxQyxLQUF5QixJQUFBLEtBQUEsU0FBQSxNQUFNLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFBLGdCQUFBLDRCQUFFO1lBQTFDLElBQU0sVUFBVSxXQUFBO1lBQ25CLElBQUksWUFBWSxLQUFLLFVBQVUsQ0FBQyxXQUFXLEVBQUUsRUFBRTtnQkFDN0MsT0FBTyxJQUFJLENBQUM7YUFDYjtTQUNGOzs7Ozs7Ozs7SUFFRCxPQUFPLEtBQUssQ0FBQztBQUNmLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIZWFkZXJCYWcgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGZ1bmN0aW9uIGhhc0hlYWRlcihzb3VnaHRIZWFkZXI6IHN0cmluZywgaGVhZGVyczogSGVhZGVyQmFnKTogYm9vbGVhbiB7XG4gIHNvdWdodEhlYWRlciA9IHNvdWdodEhlYWRlci50b0xvd2VyQ2FzZSgpO1xuICBmb3IgKGNvbnN0IGhlYWRlck5hbWUgb2YgT2JqZWN0LmtleXMoaGVhZGVycykpIHtcbiAgICBpZiAoc291Z2h0SGVhZGVyID09PSBoZWFkZXJOYW1lLnRvTG93ZXJDYXNlKCkpIHtcbiAgICAgIHJldHVybiB0cnVlO1xuICAgIH1cbiAgfVxuXG4gIHJldHVybiBmYWxzZTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/hasHeader.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/index.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/index.js ***! \*************************************************************/ /*! exports provided: createScope, getSigningKey, clearCredentialCache, SignatureV4 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _credentialDerivation__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./credentialDerivation */ \"./node_modules/@aws-sdk/signature-v4/dist/es/credentialDerivation.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createScope\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_0__[\"createScope\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSigningKey\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_0__[\"getSigningKey\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"clearCredentialCache\", function() { return _credentialDerivation__WEBPACK_IMPORTED_MODULE_0__[\"clearCredentialCache\"]; });\n\n/* harmony import */ var _SignatureV4__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./SignatureV4 */ \"./node_modules/@aws-sdk/signature-v4/dist/es/SignatureV4.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SignatureV4\", function() { return _SignatureV4__WEBPACK_IMPORTED_MODULE_1__[\"SignatureV4\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLGVBQWUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL2NyZWRlbnRpYWxEZXJpdmF0aW9uXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9TaWduYXR1cmVWNFwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/moveHeadersToQuery.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/moveHeadersToQuery.js ***! \**************************************************************************/ /*! exports provided: moveHeadersToQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"moveHeadersToQuery\", function() { return moveHeadersToQuery; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _cloneRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./cloneRequest */ \"./node_modules/@aws-sdk/signature-v4/dist/es/cloneRequest.js\");\n\n\n/**\n * @internal\n */\nfunction moveHeadersToQuery(request, options) {\n var e_1, _a;\n var _b;\n if (options === void 0) { options = {}; }\n var _c = typeof request.clone === \"function\" ? request.clone() : Object(_cloneRequest__WEBPACK_IMPORTED_MODULE_1__[\"cloneRequest\"])(request), headers = _c.headers, _d = _c.query, query = _d === void 0 ? {} : _d;\n try {\n for (var _e = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(headers)), _f = _e.next(); !_f.done; _f = _e.next()) {\n var name = _f.value;\n var lname = name.toLowerCase();\n if (lname.substr(0, 6) === \"x-amz-\" && !((_b = options.unhoistableHeaders) === null || _b === void 0 ? void 0 : _b.has(lname))) {\n query[name] = headers[name];\n delete headers[name];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_f && !_f.done && (_a = _e.return)) _a.call(_e);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, request), { headers: headers,\n query: query });\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW92ZUhlYWRlcnNUb1F1ZXJ5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL21vdmVIZWFkZXJzVG9RdWVyeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBRUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRTlDOztHQUVHO0FBQ0gsTUFBTSxVQUFVLGtCQUFrQixDQUNoQyxPQUFvQixFQUNwQixPQUFrRDs7O0lBQWxELHdCQUFBLEVBQUEsWUFBa0Q7SUFFNUMsSUFBQSxLQUNKLE9BQVEsT0FBZSxDQUFDLEtBQUssS0FBSyxVQUFVLENBQUMsQ0FBQyxDQUFFLE9BQWUsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxFQUR6RixPQUFPLGFBQUEsRUFBRSxhQUErQixFQUEvQixLQUFLLG1CQUFHLEVBQXVCLEtBQ2lELENBQUM7O1FBQ2xHLEtBQW1CLElBQUEsS0FBQSxTQUFBLE1BQU0sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUEsZ0JBQUEsNEJBQUU7WUFBcEMsSUFBTSxJQUFJLFdBQUE7WUFDYixJQUFNLEtBQUssR0FBRyxJQUFJLENBQUMsV0FBVyxFQUFFLENBQUM7WUFDakMsSUFBSSxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsS0FBSyxRQUFRLElBQUksUUFBQyxPQUFPLENBQUMsa0JBQWtCLDBDQUFFLEdBQUcsQ0FBQyxLQUFLLEVBQUMsRUFBRTtnQkFDOUUsS0FBSyxDQUFDLElBQUksQ0FBQyxHQUFHLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQztnQkFDNUIsT0FBTyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7YUFDdEI7U0FDRjs7Ozs7Ozs7O0lBRUQsNkJBQ0ssT0FBTyxLQUNWLE9BQU8sU0FBQTtRQUNQLEtBQUssT0FBQSxJQUNMO0FBQ0osQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBSZXF1ZXN0LCBRdWVyeVBhcmFtZXRlckJhZyB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBjbG9uZVJlcXVlc3QgfSBmcm9tIFwiLi9jbG9uZVJlcXVlc3RcIjtcblxuLyoqXG4gKiBAaW50ZXJuYWxcbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIG1vdmVIZWFkZXJzVG9RdWVyeShcbiAgcmVxdWVzdDogSHR0cFJlcXVlc3QsXG4gIG9wdGlvbnM6IHsgdW5ob2lzdGFibGVIZWFkZXJzPzogU2V0PHN0cmluZz4gfSA9IHt9XG4pOiBIdHRwUmVxdWVzdCAmIHsgcXVlcnk6IFF1ZXJ5UGFyYW1ldGVyQmFnIH0ge1xuICBjb25zdCB7IGhlYWRlcnMsIHF1ZXJ5ID0ge30gYXMgUXVlcnlQYXJhbWV0ZXJCYWcgfSA9XG4gICAgdHlwZW9mIChyZXF1ZXN0IGFzIGFueSkuY2xvbmUgPT09IFwiZnVuY3Rpb25cIiA/IChyZXF1ZXN0IGFzIGFueSkuY2xvbmUoKSA6IGNsb25lUmVxdWVzdChyZXF1ZXN0KTtcbiAgZm9yIChjb25zdCBuYW1lIG9mIE9iamVjdC5rZXlzKGhlYWRlcnMpKSB7XG4gICAgY29uc3QgbG5hbWUgPSBuYW1lLnRvTG93ZXJDYXNlKCk7XG4gICAgaWYgKGxuYW1lLnN1YnN0cigwLCA2KSA9PT0gXCJ4LWFtei1cIiAmJiAhb3B0aW9ucy51bmhvaXN0YWJsZUhlYWRlcnM/LmhhcyhsbmFtZSkpIHtcbiAgICAgIHF1ZXJ5W25hbWVdID0gaGVhZGVyc1tuYW1lXTtcbiAgICAgIGRlbGV0ZSBoZWFkZXJzW25hbWVdO1xuICAgIH1cbiAgfVxuXG4gIHJldHVybiB7XG4gICAgLi4ucmVxdWVzdCxcbiAgICBoZWFkZXJzLFxuICAgIHF1ZXJ5LFxuICB9O1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/moveHeadersToQuery.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/prepareRequest.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/prepareRequest.js ***! \**********************************************************************/ /*! exports provided: prepareRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"prepareRequest\", function() { return prepareRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _cloneRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./cloneRequest */ \"./node_modules/@aws-sdk/signature-v4/dist/es/cloneRequest.js\");\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/signature-v4/dist/es/constants.js\");\n\n\n\n/**\n * @internal\n */\nfunction prepareRequest(request) {\n var e_1, _a;\n // Create a clone of the request object that does not clone the body\n request = typeof request.clone === \"function\" ? request.clone() : Object(_cloneRequest__WEBPACK_IMPORTED_MODULE_1__[\"cloneRequest\"])(request);\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(request.headers)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var headerName = _c.value;\n if (_constants__WEBPACK_IMPORTED_MODULE_2__[\"GENERATED_HEADERS\"].indexOf(headerName.toLowerCase()) > -1) {\n delete request.headers[headerName];\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return request;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJlcGFyZVJlcXVlc3QuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvcHJlcGFyZVJlcXVlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUVBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM5QyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFaEQ7O0dBRUc7QUFDSCxNQUFNLFVBQVUsY0FBYyxDQUFDLE9BQW9COztJQUNqRCxvRUFBb0U7SUFDcEUsT0FBTyxHQUFHLE9BQVEsT0FBZSxDQUFDLEtBQUssS0FBSyxVQUFVLENBQUMsQ0FBQyxDQUFFLE9BQWUsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxDQUFDOztRQUUxRyxLQUF5QixJQUFBLEtBQUEsU0FBQSxNQUFNLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsQ0FBQSxnQkFBQSw0QkFBRTtZQUFsRCxJQUFNLFVBQVUsV0FBQTtZQUNuQixJQUFJLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxVQUFVLENBQUMsV0FBVyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsRUFBRTtnQkFDNUQsT0FBTyxPQUFPLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBQyxDQUFDO2FBQ3BDO1NBQ0Y7Ozs7Ozs7OztJQUVELE9BQU8sT0FBTyxDQUFDO0FBQ2pCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwUmVxdWVzdCB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBjbG9uZVJlcXVlc3QgfSBmcm9tIFwiLi9jbG9uZVJlcXVlc3RcIjtcbmltcG9ydCB7IEdFTkVSQVRFRF9IRUFERVJTIH0gZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5cbi8qKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiBwcmVwYXJlUmVxdWVzdChyZXF1ZXN0OiBIdHRwUmVxdWVzdCk6IEh0dHBSZXF1ZXN0IHtcbiAgLy8gQ3JlYXRlIGEgY2xvbmUgb2YgdGhlIHJlcXVlc3Qgb2JqZWN0IHRoYXQgZG9lcyBub3QgY2xvbmUgdGhlIGJvZHlcbiAgcmVxdWVzdCA9IHR5cGVvZiAocmVxdWVzdCBhcyBhbnkpLmNsb25lID09PSBcImZ1bmN0aW9uXCIgPyAocmVxdWVzdCBhcyBhbnkpLmNsb25lKCkgOiBjbG9uZVJlcXVlc3QocmVxdWVzdCk7XG5cbiAgZm9yIChjb25zdCBoZWFkZXJOYW1lIG9mIE9iamVjdC5rZXlzKHJlcXVlc3QuaGVhZGVycykpIHtcbiAgICBpZiAoR0VORVJBVEVEX0hFQURFUlMuaW5kZXhPZihoZWFkZXJOYW1lLnRvTG93ZXJDYXNlKCkpID4gLTEpIHtcbiAgICAgIGRlbGV0ZSByZXF1ZXN0LmhlYWRlcnNbaGVhZGVyTmFtZV07XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIHJlcXVlc3Q7XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/prepareRequest.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/signature-v4/dist/es/utilDate.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/signature-v4/dist/es/utilDate.js ***! \****************************************************************/ /*! exports provided: iso8601, toDate */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"iso8601\", function() { return iso8601; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toDate\", function() { return toDate; });\nfunction iso8601(time) {\n return toDate(time)\n .toISOString()\n .replace(/\\.\\d{3}Z$/, \"Z\");\n}\nfunction toDate(time) {\n if (typeof time === \"number\") {\n return new Date(time * 1000);\n }\n if (typeof time === \"string\") {\n if (Number(time)) {\n return new Date(Number(time) * 1000);\n }\n return new Date(time);\n }\n return time;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXRpbERhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdXRpbERhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxVQUFVLE9BQU8sQ0FBQyxJQUE0QjtJQUNsRCxPQUFPLE1BQU0sQ0FBQyxJQUFJLENBQUM7U0FDaEIsV0FBVyxFQUFFO1NBQ2IsT0FBTyxDQUFDLFdBQVcsRUFBRSxHQUFHLENBQUMsQ0FBQztBQUMvQixDQUFDO0FBRUQsTUFBTSxVQUFVLE1BQU0sQ0FBQyxJQUE0QjtJQUNqRCxJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVEsRUFBRTtRQUM1QixPQUFPLElBQUksSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsQ0FBQztLQUM5QjtJQUVELElBQUksT0FBTyxJQUFJLEtBQUssUUFBUSxFQUFFO1FBQzVCLElBQUksTUFBTSxDQUFDLElBQUksQ0FBQyxFQUFFO1lBQ2hCLE9BQU8sSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDO1NBQ3RDO1FBQ0QsT0FBTyxJQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztLQUN2QjtJQUVELE9BQU8sSUFBSSxDQUFDO0FBQ2QsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBmdW5jdGlvbiBpc284NjAxKHRpbWU6IG51bWJlciB8IHN0cmluZyB8IERhdGUpOiBzdHJpbmcge1xuICByZXR1cm4gdG9EYXRlKHRpbWUpXG4gICAgLnRvSVNPU3RyaW5nKClcbiAgICAucmVwbGFjZSgvXFwuXFxkezN9WiQvLCBcIlpcIik7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiB0b0RhdGUodGltZTogbnVtYmVyIHwgc3RyaW5nIHwgRGF0ZSk6IERhdGUge1xuICBpZiAodHlwZW9mIHRpbWUgPT09IFwibnVtYmVyXCIpIHtcbiAgICByZXR1cm4gbmV3IERhdGUodGltZSAqIDEwMDApO1xuICB9XG5cbiAgaWYgKHR5cGVvZiB0aW1lID09PSBcInN0cmluZ1wiKSB7XG4gICAgaWYgKE51bWJlcih0aW1lKSkge1xuICAgICAgcmV0dXJuIG5ldyBEYXRlKE51bWJlcih0aW1lKSAqIDEwMDApO1xuICAgIH1cbiAgICByZXR1cm4gbmV3IERhdGUodGltZSk7XG4gIH1cblxuICByZXR1cm4gdGltZTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/signature-v4/dist/es/utilDate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/client.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/client.js ***! \***************************************************************/ /*! exports provided: Client */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Client\", function() { return Client; });\n/* harmony import */ var _aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/middleware-stack */ \"./node_modules/@aws-sdk/middleware-stack/dist/es/index.js\");\n\nvar Client = /** @class */ (function () {\n function Client(config) {\n this.middlewareStack = Object(_aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"])();\n this.config = config;\n }\n Client.prototype.send = function (command, optionsOrCb, cb) {\n var options = typeof optionsOrCb !== \"function\" ? optionsOrCb : undefined;\n var callback = typeof optionsOrCb === \"function\" ? optionsOrCb : cb;\n var handler = command.resolveMiddleware(this.middlewareStack, this.config, options);\n if (callback) {\n handler(command)\n .then(function (result) { return callback(null, result.output); }, function (err) { return callback(err); })\n .catch(\n // prevent any errors thrown in the callback from triggering an\n // unhandled promise rejection\n function () { });\n }\n else {\n return handler(command).then(function (result) { return result.output; });\n }\n };\n Client.prototype.destroy = function () {\n if (this.config.requestHandler.destroy)\n this.config.requestHandler.destroy();\n };\n return Client;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xpZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NsaWVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFlM0Q7SUFRRSxnQkFBWSxNQUFtQztRQUZ4QyxvQkFBZSxHQUFHLGNBQWMsRUFBNkIsQ0FBQztRQUduRSxJQUFJLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQztJQUN2QixDQUFDO0lBY0QscUJBQUksR0FBSixVQUNFLE9BQStHLEVBQy9HLFdBQXNFLEVBQ3RFLEVBQTBDO1FBRTFDLElBQU0sT0FBTyxHQUFHLE9BQU8sV0FBVyxLQUFLLFVBQVUsQ0FBQyxDQUFDLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7UUFDNUUsSUFBTSxRQUFRLEdBQUcsT0FBTyxXQUFXLEtBQUssVUFBVSxDQUFDLENBQUMsQ0FBRSxXQUFxRCxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUM7UUFDakgsSUFBTSxPQUFPLEdBQUcsT0FBTyxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxlQUFzQixFQUFFLElBQUksQ0FBQyxNQUFNLEVBQUUsT0FBTyxDQUFDLENBQUM7UUFDN0YsSUFBSSxRQUFRLEVBQUU7WUFDWixPQUFPLENBQUMsT0FBTyxDQUFDO2lCQUNiLElBQUksQ0FDSCxVQUFDLE1BQU0sSUFBSyxPQUFBLFFBQVEsQ0FBQyxJQUFJLEVBQUUsTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUE3QixDQUE2QixFQUN6QyxVQUFDLEdBQVEsSUFBSyxPQUFBLFFBQVEsQ0FBQyxHQUFHLENBQUMsRUFBYixDQUFhLENBQzVCO2lCQUNBLEtBQUs7WUFDSiwrREFBK0Q7WUFDL0QsOEJBQThCO1lBQzlCLGNBQU8sQ0FBQyxDQUNULENBQUM7U0FDTDthQUFNO1lBQ0wsT0FBTyxPQUFPLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQUMsTUFBTSxJQUFLLE9BQUEsTUFBTSxDQUFDLE1BQU0sRUFBYixDQUFhLENBQUMsQ0FBQztTQUN6RDtJQUNILENBQUM7SUFFRCx3QkFBTyxHQUFQO1FBQ0UsSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLGNBQWMsQ0FBQyxPQUFPO1lBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxjQUFjLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDL0UsQ0FBQztJQUNILGFBQUM7QUFBRCxDQUFDLEFBbkRELElBbURDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgY29uc3RydWN0U3RhY2sgfSBmcm9tIFwiQGF3cy1zZGsvbWlkZGxld2FyZS1zdGFja1wiO1xuaW1wb3J0IHsgQ2xpZW50IGFzIElDbGllbnQsIENvbW1hbmQsIE1ldGFkYXRhQmVhcmVyLCBSZXF1ZXN0SGFuZGxlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgaW50ZXJmYWNlIFNtaXRoeUNvbmZpZ3VyYXRpb248SGFuZGxlck9wdGlvbnM+IHtcbiAgcmVxdWVzdEhhbmRsZXI6IFJlcXVlc3RIYW5kbGVyPGFueSwgYW55LCBIYW5kbGVyT3B0aW9ucz47XG4gIC8qKlxuICAgKiBUaGUgQVBJIHZlcnNpb24gc2V0IGludGVybmFsbHkgYnkgdGhlIFNESywgYW5kIGlzXG4gICAqIG5vdCBwbGFubmVkIHRvIGJlIHVzZWQgYnkgY3VzdG9tZXIgY29kZS5cbiAgICogQGludGVybmFsXG4gICAqL1xuICByZWFkb25seSBhcGlWZXJzaW9uOiBzdHJpbmc7XG59XG5cbmV4cG9ydCB0eXBlIFNtaXRoeVJlc29sdmVkQ29uZmlndXJhdGlvbjxIYW5kbGVyT3B0aW9ucz4gPSBTbWl0aHlDb25maWd1cmF0aW9uPEhhbmRsZXJPcHRpb25zPjtcblxuZXhwb3J0IGNsYXNzIENsaWVudDxcbiAgSGFuZGxlck9wdGlvbnMsXG4gIENsaWVudElucHV0IGV4dGVuZHMgb2JqZWN0LFxuICBDbGllbnRPdXRwdXQgZXh0ZW5kcyBNZXRhZGF0YUJlYXJlcixcbiAgUmVzb2x2ZWRDbGllbnRDb25maWd1cmF0aW9uIGV4dGVuZHMgU21pdGh5UmVzb2x2ZWRDb25maWd1cmF0aW9uPEhhbmRsZXJPcHRpb25zPlxuPiBpbXBsZW1lbnRzIElDbGllbnQ8Q2xpZW50SW5wdXQsIENsaWVudE91dHB1dCwgUmVzb2x2ZWRDbGllbnRDb25maWd1cmF0aW9uPiB7XG4gIHB1YmxpYyBtaWRkbGV3YXJlU3RhY2sgPSBjb25zdHJ1Y3RTdGFjazxDbGllbnRJbnB1dCwgQ2xpZW50T3V0cHV0PigpO1xuICByZWFkb25seSBjb25maWc6IFJlc29sdmVkQ2xpZW50Q29uZmlndXJhdGlvbjtcbiAgY29uc3RydWN0b3IoY29uZmlnOiBSZXNvbHZlZENsaWVudENvbmZpZ3VyYXRpb24pIHtcbiAgICB0aGlzLmNvbmZpZyA9IGNvbmZpZztcbiAgfVxuICBzZW5kPElucHV0VHlwZSBleHRlbmRzIENsaWVudElucHV0LCBPdXRwdXRUeXBlIGV4dGVuZHMgQ2xpZW50T3V0cHV0PihcbiAgICBjb21tYW5kOiBDb21tYW5kPENsaWVudElucHV0LCBJbnB1dFR5cGUsIENsaWVudE91dHB1dCwgT3V0cHV0VHlwZSwgU21pdGh5UmVzb2x2ZWRDb25maWd1cmF0aW9uPEhhbmRsZXJPcHRpb25zPj4sXG4gICAgb3B0aW9ucz86IEhhbmRsZXJPcHRpb25zXG4gICk6IFByb21pc2U8T3V0cHV0VHlwZT47XG4gIHNlbmQ8SW5wdXRUeXBlIGV4dGVuZHMgQ2xpZW50SW5wdXQsIE91dHB1dFR5cGUgZXh0ZW5kcyBDbGllbnRPdXRwdXQ+KFxuICAgIGNvbW1hbmQ6IENvbW1hbmQ8Q2xpZW50SW5wdXQsIElucHV0VHlwZSwgQ2xpZW50T3V0cHV0LCBPdXRwdXRUeXBlLCBTbWl0aHlSZXNvbHZlZENvbmZpZ3VyYXRpb248SGFuZGxlck9wdGlvbnM+PixcbiAgICBjYjogKGVycjogYW55LCBkYXRhPzogT3V0cHV0VHlwZSkgPT4gdm9pZFxuICApOiB2b2lkO1xuICBzZW5kPElucHV0VHlwZSBleHRlbmRzIENsaWVudElucHV0LCBPdXRwdXRUeXBlIGV4dGVuZHMgQ2xpZW50T3V0cHV0PihcbiAgICBjb21tYW5kOiBDb21tYW5kPENsaWVudElucHV0LCBJbnB1dFR5cGUsIENsaWVudE91dHB1dCwgT3V0cHV0VHlwZSwgU21pdGh5UmVzb2x2ZWRDb25maWd1cmF0aW9uPEhhbmRsZXJPcHRpb25zPj4sXG4gICAgb3B0aW9uczogSGFuZGxlck9wdGlvbnMsXG4gICAgY2I6IChlcnI6IGFueSwgZGF0YT86IE91dHB1dFR5cGUpID0+IHZvaWRcbiAgKTogdm9pZDtcbiAgc2VuZDxJbnB1dFR5cGUgZXh0ZW5kcyBDbGllbnRJbnB1dCwgT3V0cHV0VHlwZSBleHRlbmRzIENsaWVudE91dHB1dD4oXG4gICAgY29tbWFuZDogQ29tbWFuZDxDbGllbnRJbnB1dCwgSW5wdXRUeXBlLCBDbGllbnRPdXRwdXQsIE91dHB1dFR5cGUsIFNtaXRoeVJlc29sdmVkQ29uZmlndXJhdGlvbjxIYW5kbGVyT3B0aW9ucz4+LFxuICAgIG9wdGlvbnNPckNiPzogSGFuZGxlck9wdGlvbnMgfCAoKGVycjogYW55LCBkYXRhPzogT3V0cHV0VHlwZSkgPT4gdm9pZCksXG4gICAgY2I/OiAoZXJyOiBhbnksIGRhdGE/OiBPdXRwdXRUeXBlKSA9PiB2b2lkXG4gICk6IFByb21pc2U8T3V0cHV0VHlwZT4gfCB2b2lkIHtcbiAgICBjb25zdCBvcHRpb25zID0gdHlwZW9mIG9wdGlvbnNPckNiICE9PSBcImZ1bmN0aW9uXCIgPyBvcHRpb25zT3JDYiA6IHVuZGVmaW5lZDtcbiAgICBjb25zdCBjYWxsYmFjayA9IHR5cGVvZiBvcHRpb25zT3JDYiA9PT0gXCJmdW5jdGlvblwiID8gKG9wdGlvbnNPckNiIGFzIChlcnI6IGFueSwgZGF0YT86IE91dHB1dFR5cGUpID0+IHZvaWQpIDogY2I7XG4gICAgY29uc3QgaGFuZGxlciA9IGNvbW1hbmQucmVzb2x2ZU1pZGRsZXdhcmUodGhpcy5taWRkbGV3YXJlU3RhY2sgYXMgYW55LCB0aGlzLmNvbmZpZywgb3B0aW9ucyk7XG4gICAgaWYgKGNhbGxiYWNrKSB7XG4gICAgICBoYW5kbGVyKGNvbW1hbmQpXG4gICAgICAgIC50aGVuKFxuICAgICAgICAgIChyZXN1bHQpID0+IGNhbGxiYWNrKG51bGwsIHJlc3VsdC5vdXRwdXQpLFxuICAgICAgICAgIChlcnI6IGFueSkgPT4gY2FsbGJhY2soZXJyKVxuICAgICAgICApXG4gICAgICAgIC5jYXRjaChcbiAgICAgICAgICAvLyBwcmV2ZW50IGFueSBlcnJvcnMgdGhyb3duIGluIHRoZSBjYWxsYmFjayBmcm9tIHRyaWdnZXJpbmcgYW5cbiAgICAgICAgICAvLyB1bmhhbmRsZWQgcHJvbWlzZSByZWplY3Rpb25cbiAgICAgICAgICAoKSA9PiB7fVxuICAgICAgICApO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gaGFuZGxlcihjb21tYW5kKS50aGVuKChyZXN1bHQpID0+IHJlc3VsdC5vdXRwdXQpO1xuICAgIH1cbiAgfVxuXG4gIGRlc3Ryb3koKSB7XG4gICAgaWYgKHRoaXMuY29uZmlnLnJlcXVlc3RIYW5kbGVyLmRlc3Ryb3kpIHRoaXMuY29uZmlnLnJlcXVlc3RIYW5kbGVyLmRlc3Ryb3koKTtcbiAgfVxufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/client.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/command.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/command.js ***! \****************************************************************/ /*! exports provided: Command */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Command\", function() { return Command; });\n/* harmony import */ var _aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/middleware-stack */ \"./node_modules/@aws-sdk/middleware-stack/dist/es/index.js\");\n\nvar Command = /** @class */ (function () {\n function Command() {\n this.middlewareStack = Object(_aws_sdk_middleware_stack__WEBPACK_IMPORTED_MODULE_0__[\"constructStack\"])();\n }\n return Command;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbWFuZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21tYW5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUczRDtJQUFBO1FBUVcsb0JBQWUsR0FBb0MsY0FBYyxFQUFpQixDQUFDO0lBTTlGLENBQUM7SUFBRCxjQUFDO0FBQUQsQ0FBQyxBQWRELElBY0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBjb25zdHJ1Y3RTdGFjayB9IGZyb20gXCJAYXdzLXNkay9taWRkbGV3YXJlLXN0YWNrXCI7XG5pbXBvcnQgeyBDb21tYW5kIGFzIElDb21tYW5kLCBIYW5kbGVyLCBNZXRhZGF0YUJlYXJlciwgTWlkZGxld2FyZVN0YWNrIGFzIElNaWRkbGV3YXJlU3RhY2sgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGFic3RyYWN0IGNsYXNzIENvbW1hbmQ8XG4gIElucHV0IGV4dGVuZHMgQ2xpZW50SW5wdXQsXG4gIE91dHB1dCBleHRlbmRzIENsaWVudE91dHB1dCxcbiAgUmVzb2x2ZWRDbGllbnRDb25maWd1cmF0aW9uLFxuICBDbGllbnRJbnB1dCBleHRlbmRzIG9iamVjdCA9IGFueSxcbiAgQ2xpZW50T3V0cHV0IGV4dGVuZHMgTWV0YWRhdGFCZWFyZXIgPSBhbnlcbj4gaW1wbGVtZW50cyBJQ29tbWFuZDxDbGllbnRJbnB1dCwgSW5wdXQsIENsaWVudE91dHB1dCwgT3V0cHV0LCBSZXNvbHZlZENsaWVudENvbmZpZ3VyYXRpb24+IHtcbiAgYWJzdHJhY3QgaW5wdXQ6IElucHV0O1xuICByZWFkb25seSBtaWRkbGV3YXJlU3RhY2s6IElNaWRkbGV3YXJlU3RhY2s8SW5wdXQsIE91dHB1dD4gPSBjb25zdHJ1Y3RTdGFjazxJbnB1dCwgT3V0cHV0PigpO1xuICBhYnN0cmFjdCByZXNvbHZlTWlkZGxld2FyZShcbiAgICBzdGFjazogSU1pZGRsZXdhcmVTdGFjazxDbGllbnRJbnB1dCwgQ2xpZW50T3V0cHV0PixcbiAgICBjb25maWd1cmF0aW9uOiBSZXNvbHZlZENsaWVudENvbmZpZ3VyYXRpb24sXG4gICAgb3B0aW9uczogYW55XG4gICk6IEhhbmRsZXI8SW5wdXQsIE91dHB1dD47XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/command.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/constants.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/constants.js ***! \******************************************************************/ /*! exports provided: SENSITIVE_STRING */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SENSITIVE_STRING\", function() { return SENSITIVE_STRING; });\nvar SENSITIVE_STRING = \"***SensitiveInformation***\";\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsSUFBTSxnQkFBZ0IsR0FBRyw0QkFBNEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBTRU5TSVRJVkVfU1RSSU5HID0gXCIqKipTZW5zaXRpdmVJbmZvcm1hdGlvbioqKlwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/date-utils.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/date-utils.js ***! \*******************************************************************/ /*! exports provided: dateToUtcString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"dateToUtcString\", function() { return dateToUtcString; });\n/**\n * Builds a proper UTC HttpDate timestamp from a Date object\n * since not all environments will have this as the expected\n * format.\n *\n * See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toUTCString\n * > Prior to ECMAScript 2018, the format of the return value\n * > varied according to the platform. The most common return\n * > value was an RFC-1123 formatted date stamp, which is a\n * > slightly updated version of RFC-822 date stamps.\n */\n// Build indexes outside so we allocate them once.\nvar days = [\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\"];\n// prettier-ignore\nvar months = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"];\nfunction dateToUtcString(date) {\n var year = date.getUTCFullYear();\n var month = date.getUTCMonth();\n var dayOfWeek = date.getUTCDay();\n var dayOfMonthInt = date.getUTCDate();\n var hoursInt = date.getUTCHours();\n var minutesInt = date.getUTCMinutes();\n var secondsInt = date.getUTCSeconds();\n // Build 0 prefixed strings for contents that need to be\n // two digits and where we get an integer back.\n var dayOfMonthString = dayOfMonthInt < 10 ? \"0\" + dayOfMonthInt : \"\" + dayOfMonthInt;\n var hoursString = hoursInt < 10 ? \"0\" + hoursInt : \"\" + hoursInt;\n var minutesString = minutesInt < 10 ? \"0\" + minutesInt : \"\" + minutesInt;\n var secondsString = secondsInt < 10 ? \"0\" + secondsInt : \"\" + secondsInt;\n return days[dayOfWeek] + \", \" + dayOfMonthString + \" \" + months[month] + \" \" + year + \" \" + hoursString + \":\" + minutesString + \":\" + secondsString + \" GMT\";\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS11dGlscy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kYXRlLXV0aWxzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7Ozs7O0dBVUc7QUFFSCxrREFBa0Q7QUFDbEQsSUFBTSxJQUFJLEdBQWtCLENBQUMsS0FBSyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsS0FBSyxDQUFDLENBQUM7QUFDOUUsa0JBQWtCO0FBQ2xCLElBQU0sTUFBTSxHQUFrQixDQUFDLEtBQUssRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsS0FBSyxDQUFDLENBQUM7QUFFbkgsTUFBTSxVQUFVLGVBQWUsQ0FBQyxJQUFVO0lBQ3hDLElBQU0sSUFBSSxHQUFHLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUNuQyxJQUFNLEtBQUssR0FBRyxJQUFJLENBQUMsV0FBVyxFQUFFLENBQUM7SUFDakMsSUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDO0lBQ25DLElBQU0sYUFBYSxHQUFHLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztJQUN4QyxJQUFNLFFBQVEsR0FBRyxJQUFJLENBQUMsV0FBVyxFQUFFLENBQUM7SUFDcEMsSUFBTSxVQUFVLEdBQUcsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO0lBQ3hDLElBQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUV4Qyx3REFBd0Q7SUFDeEQsK0NBQStDO0lBQy9DLElBQU0sZ0JBQWdCLEdBQUcsYUFBYSxHQUFHLEVBQUUsQ0FBQyxDQUFDLENBQUMsTUFBSSxhQUFlLENBQUMsQ0FBQyxDQUFDLEtBQUcsYUFBZSxDQUFDO0lBQ3ZGLElBQU0sV0FBVyxHQUFHLFFBQVEsR0FBRyxFQUFFLENBQUMsQ0FBQyxDQUFDLE1BQUksUUFBVSxDQUFDLENBQUMsQ0FBQyxLQUFHLFFBQVUsQ0FBQztJQUNuRSxJQUFNLGFBQWEsR0FBRyxVQUFVLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQyxNQUFJLFVBQVksQ0FBQyxDQUFDLENBQUMsS0FBRyxVQUFZLENBQUM7SUFDM0UsSUFBTSxhQUFhLEdBQUcsVUFBVSxHQUFHLEVBQUUsQ0FBQyxDQUFDLENBQUMsTUFBSSxVQUFZLENBQUMsQ0FBQyxDQUFDLEtBQUcsVUFBWSxDQUFDO0lBRTNFLE9BQVUsSUFBSSxDQUFDLFNBQVMsQ0FBQyxVQUFLLGdCQUFnQixTQUFJLE1BQU0sQ0FBQyxLQUFLLENBQUMsU0FBSSxJQUFJLFNBQUksV0FBVyxTQUFJLGFBQWEsU0FBSSxhQUFhLFNBQU0sQ0FBQztBQUNqSSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBCdWlsZHMgYSBwcm9wZXIgVVRDIEh0dHBEYXRlIHRpbWVzdGFtcCBmcm9tIGEgRGF0ZSBvYmplY3RcbiAqIHNpbmNlIG5vdCBhbGwgZW52aXJvbm1lbnRzIHdpbGwgaGF2ZSB0aGlzIGFzIHRoZSBleHBlY3RlZFxuICogZm9ybWF0LlxuICpcbiAqIFNlZTogaHR0cHM6Ly9kZXZlbG9wZXIubW96aWxsYS5vcmcvZW4tVVMvZG9jcy9XZWIvSmF2YVNjcmlwdC9SZWZlcmVuY2UvR2xvYmFsX09iamVjdHMvRGF0ZS90b1VUQ1N0cmluZ1xuICogPiBQcmlvciB0byBFQ01BU2NyaXB0IDIwMTgsIHRoZSBmb3JtYXQgb2YgdGhlIHJldHVybiB2YWx1ZVxuICogPiB2YXJpZWQgYWNjb3JkaW5nIHRvIHRoZSBwbGF0Zm9ybS4gVGhlIG1vc3QgY29tbW9uIHJldHVyblxuICogPiB2YWx1ZSB3YXMgYW4gUkZDLTExMjMgZm9ybWF0dGVkIGRhdGUgc3RhbXAsIHdoaWNoIGlzIGFcbiAqID4gc2xpZ2h0bHkgdXBkYXRlZCB2ZXJzaW9uIG9mIFJGQy04MjIgZGF0ZSBzdGFtcHMuXG4gKi9cblxuLy8gQnVpbGQgaW5kZXhlcyBvdXRzaWRlIHNvIHdlIGFsbG9jYXRlIHRoZW0gb25jZS5cbmNvbnN0IGRheXM6IEFycmF5PFN0cmluZz4gPSBbXCJTdW5cIiwgXCJNb25cIiwgXCJUdWVcIiwgXCJXZWRcIiwgXCJUaHVcIiwgXCJGcmlcIiwgXCJTYXRcIl07XG4vLyBwcmV0dGllci1pZ25vcmVcbmNvbnN0IG1vbnRoczogQXJyYXk8U3RyaW5nPiA9IFtcIkphblwiLCBcIkZlYlwiLCBcIk1hclwiLCBcIkFwclwiLCBcIk1heVwiLCBcIkp1blwiLCBcIkp1bFwiLCBcIkF1Z1wiLCBcIlNlcFwiLCBcIk9jdFwiLCBcIk5vdlwiLCBcIkRlY1wiXTtcblxuZXhwb3J0IGZ1bmN0aW9uIGRhdGVUb1V0Y1N0cmluZyhkYXRlOiBEYXRlKTogc3RyaW5nIHtcbiAgY29uc3QgeWVhciA9IGRhdGUuZ2V0VVRDRnVsbFllYXIoKTtcbiAgY29uc3QgbW9udGggPSBkYXRlLmdldFVUQ01vbnRoKCk7XG4gIGNvbnN0IGRheU9mV2VlayA9IGRhdGUuZ2V0VVRDRGF5KCk7XG4gIGNvbnN0IGRheU9mTW9udGhJbnQgPSBkYXRlLmdldFVUQ0RhdGUoKTtcbiAgY29uc3QgaG91cnNJbnQgPSBkYXRlLmdldFVUQ0hvdXJzKCk7XG4gIGNvbnN0IG1pbnV0ZXNJbnQgPSBkYXRlLmdldFVUQ01pbnV0ZXMoKTtcbiAgY29uc3Qgc2Vjb25kc0ludCA9IGRhdGUuZ2V0VVRDU2Vjb25kcygpO1xuXG4gIC8vIEJ1aWxkIDAgcHJlZml4ZWQgc3RyaW5ncyBmb3IgY29udGVudHMgdGhhdCBuZWVkIHRvIGJlXG4gIC8vIHR3byBkaWdpdHMgYW5kIHdoZXJlIHdlIGdldCBhbiBpbnRlZ2VyIGJhY2suXG4gIGNvbnN0IGRheU9mTW9udGhTdHJpbmcgPSBkYXlPZk1vbnRoSW50IDwgMTAgPyBgMCR7ZGF5T2ZNb250aEludH1gIDogYCR7ZGF5T2ZNb250aEludH1gO1xuICBjb25zdCBob3Vyc1N0cmluZyA9IGhvdXJzSW50IDwgMTAgPyBgMCR7aG91cnNJbnR9YCA6IGAke2hvdXJzSW50fWA7XG4gIGNvbnN0IG1pbnV0ZXNTdHJpbmcgPSBtaW51dGVzSW50IDwgMTAgPyBgMCR7bWludXRlc0ludH1gIDogYCR7bWludXRlc0ludH1gO1xuICBjb25zdCBzZWNvbmRzU3RyaW5nID0gc2Vjb25kc0ludCA8IDEwID8gYDAke3NlY29uZHNJbnR9YCA6IGAke3NlY29uZHNJbnR9YDtcblxuICByZXR1cm4gYCR7ZGF5c1tkYXlPZldlZWtdfSwgJHtkYXlPZk1vbnRoU3RyaW5nfSAke21vbnRoc1ttb250aF19ICR7eWVhcn0gJHtob3Vyc1N0cmluZ306JHttaW51dGVzU3RyaW5nfToke3NlY29uZHNTdHJpbmd9IEdNVGA7XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/date-utils.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/document-type.js": /*!**********************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/document-type.js ***! \**********************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG9jdW1lbnQtdHlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kb2N1bWVudC10eXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIFNtaXRoeSBkb2N1bWVudCB0eXBlIHZhbHVlcy5cbiAqL1xuLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEB0eXBlc2NyaXB0LWVzbGludC9uby1uYW1lc3BhY2VcbmV4cG9ydCBuYW1lc3BhY2UgRG9jdW1lbnRUeXBlIHtcbiAgZXhwb3J0IHR5cGUgVmFsdWUgPSBTY2FsYXIgfCBTdHJ1Y3R1cmUgfCBMaXN0O1xuICBleHBvcnQgdHlwZSBTY2FsYXIgPSBzdHJpbmcgfCBudW1iZXIgfCBib29sZWFuIHwgbnVsbDtcbiAgZXhwb3J0IHR5cGUgU3RydWN0dXJlID0geyBbbWVtYmVyOiBzdHJpbmddOiBWYWx1ZSB9O1xuICBleHBvcnQgaW50ZXJmYWNlIExpc3QgZXh0ZW5kcyBBcnJheTxWYWx1ZT4ge31cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/document-type.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/exception.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/exception.js ***! \******************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhjZXB0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2V4Y2VwdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUmV0cnlhYmxlVHJhaXQgfSBmcm9tIFwiLi9yZXRyeWFibGUtdHJhaXRcIjtcblxuLyoqXG4gKiBUeXBlIHRoYXQgaXMgaW1wbGVtZW50ZWQgYnkgYWxsIFNtaXRoeSBzaGFwZXMgbWFya2VkIHdpdGggdGhlXG4gKiBlcnJvciB0cmFpdC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBTbWl0aHlFeGNlcHRpb24ge1xuICAvKipcbiAgICogVGhlIHNoYXBlIElEIG5hbWUgb2YgdGhlIGV4Y2VwdGlvbi5cbiAgICovXG4gIHJlYWRvbmx5IG5hbWU6IHN0cmluZztcblxuICAvKipcbiAgICogV2hldGhlciB0aGUgY2xpZW50IG9yIHNlcnZlciBhcmUgYXQgZmF1bHQuXG4gICAqL1xuICByZWFkb25seSAkZmF1bHQ6IFwiY2xpZW50XCIgfCBcInNlcnZlclwiO1xuXG4gIC8qKlxuICAgKiBUaGUgc2VydmljZSB0aGF0IGVuY291bnRlcmVkIHRoZSBleGNlcHRpb24uXG4gICAqL1xuICByZWFkb25seSAkc2VydmljZT86IHN0cmluZztcblxuICAvKipcbiAgICogSW5kaWNhdGVzIHRoYXQgYW4gZXJyb3IgTUFZIGJlIHJldHJpZWQgYnkgdGhlIGNsaWVudC5cbiAgICovXG4gIHJlYWRvbmx5ICRyZXRyeWFibGU/OiBSZXRyeWFibGVUcmFpdDtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/exception.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/extended-encode-uri-component.js": /*!**************************************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/extended-encode-uri-component.js ***! \**************************************************************************************/ /*! exports provided: extendedEncodeURIComponent */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extendedEncodeURIComponent\", function() { return extendedEncodeURIComponent; });\n/**\n * Function that wraps encodeURIComponent to encode additional characters\n * to fully adhere to RFC 3986.\n */\nfunction extendedEncodeURIComponent(str) {\n return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {\n return \"%\" + c.charCodeAt(0).toString(16);\n });\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXh0ZW5kZWQtZW5jb2RlLXVyaS1jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZXh0ZW5kZWQtZW5jb2RlLXVyaS1jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7OztHQUdHO0FBQ0gsTUFBTSxVQUFVLDBCQUEwQixDQUFDLEdBQVc7SUFDcEQsT0FBTyxrQkFBa0IsQ0FBQyxHQUFHLENBQUMsQ0FBQyxPQUFPLENBQUMsVUFBVSxFQUFFLFVBQVUsQ0FBQztRQUM1RCxPQUFPLEdBQUcsR0FBRyxDQUFDLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUM1QyxDQUFDLENBQUMsQ0FBQztBQUNMLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEZ1bmN0aW9uIHRoYXQgd3JhcHMgZW5jb2RlVVJJQ29tcG9uZW50IHRvIGVuY29kZSBhZGRpdGlvbmFsIGNoYXJhY3RlcnNcbiAqIHRvIGZ1bGx5IGFkaGVyZSB0byBSRkMgMzk4Ni5cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGV4dGVuZGVkRW5jb2RlVVJJQ29tcG9uZW50KHN0cjogc3RyaW5nKTogc3RyaW5nIHtcbiAgcmV0dXJuIGVuY29kZVVSSUNvbXBvbmVudChzdHIpLnJlcGxhY2UoL1shJygpKl0vZywgZnVuY3Rpb24gKGMpIHtcbiAgICByZXR1cm4gXCIlXCIgKyBjLmNoYXJDb2RlQXQoMCkudG9TdHJpbmcoMTYpO1xuICB9KTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/extended-encode-uri-component.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/get-array-if-single-item.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/get-array-if-single-item.js ***! \*********************************************************************************/ /*! exports provided: getArrayIfSingleItem */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getArrayIfSingleItem\", function() { return getArrayIfSingleItem; });\n/**\n * The XML parser will set one K:V for a member that could\n * return multiple entries but only has one.\n */\nvar getArrayIfSingleItem = function (mayBeArray) {\n return Array.isArray(mayBeArray) ? mayBeArray : [mayBeArray];\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0LWFycmF5LWlmLXNpbmdsZS1pdGVtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2dldC1hcnJheS1pZi1zaW5nbGUtaXRlbS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7O0dBR0c7QUFDSCxNQUFNLENBQUMsSUFBTSxvQkFBb0IsR0FBRyxVQUFJLFVBQWE7SUFDbkQsT0FBQSxLQUFLLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUMsVUFBVSxDQUFDO0FBQXJELENBQXFELENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIFRoZSBYTUwgcGFyc2VyIHdpbGwgc2V0IG9uZSBLOlYgZm9yIGEgbWVtYmVyIHRoYXQgY291bGRcbiAqIHJldHVybiBtdWx0aXBsZSBlbnRyaWVzIGJ1dCBvbmx5IGhhcyBvbmUuXG4gKi9cbmV4cG9ydCBjb25zdCBnZXRBcnJheUlmU2luZ2xlSXRlbSA9IDxUPihtYXlCZUFycmF5OiBUKTogVCB8IFRbXSA9PlxuICBBcnJheS5pc0FycmF5KG1heUJlQXJyYXkpID8gbWF5QmVBcnJheSA6IFttYXlCZUFycmF5XTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/get-array-if-single-item.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/get-value-from-text-node.js": /*!*********************************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/get-value-from-text-node.js ***! \*********************************************************************************/ /*! exports provided: getValueFromTextNode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getValueFromTextNode\", function() { return getValueFromTextNode; });\n/**\n * Recursively parses object and populates value is node from\n * \"#text\" key if it's available\n */\nvar getValueFromTextNode = function (obj) {\n var textNodeName = \"#text\";\n for (var key in obj) {\n if (obj.hasOwnProperty(key) && obj[key][textNodeName] !== undefined) {\n obj[key] = obj[key][textNodeName];\n }\n else if (typeof obj[key] === \"object\" && obj[key] !== null) {\n obj[key] = getValueFromTextNode(obj[key]);\n }\n }\n return obj;\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0LXZhbHVlLWZyb20tdGV4dC1ub2RlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2dldC12YWx1ZS1mcm9tLXRleHQtbm9kZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7O0dBR0c7QUFDSCxNQUFNLENBQUMsSUFBTSxvQkFBb0IsR0FBRyxVQUFDLEdBQVE7SUFDM0MsSUFBTSxZQUFZLEdBQUcsT0FBTyxDQUFDO0lBQzdCLEtBQUssSUFBTSxHQUFHLElBQUksR0FBRyxFQUFFO1FBQ3JCLElBQUksR0FBRyxDQUFDLGNBQWMsQ0FBQyxHQUFHLENBQUMsSUFBSSxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsWUFBWSxDQUFDLEtBQUssU0FBUyxFQUFFO1lBQ25FLEdBQUcsQ0FBQyxHQUFHLENBQUMsR0FBRyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsWUFBWSxDQUFDLENBQUM7U0FDbkM7YUFBTSxJQUFJLE9BQU8sR0FBRyxDQUFDLEdBQUcsQ0FBQyxLQUFLLFFBQVEsSUFBSSxHQUFHLENBQUMsR0FBRyxDQUFDLEtBQUssSUFBSSxFQUFFO1lBQzVELEdBQUcsQ0FBQyxHQUFHLENBQUMsR0FBRyxvQkFBb0IsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztTQUMzQztLQUNGO0lBQ0QsT0FBTyxHQUFHLENBQUM7QUFDYixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIFJlY3Vyc2l2ZWx5IHBhcnNlcyBvYmplY3QgYW5kIHBvcHVsYXRlcyB2YWx1ZSBpcyBub2RlIGZyb21cbiAqIFwiI3RleHRcIiBrZXkgaWYgaXQncyBhdmFpbGFibGVcbiAqL1xuZXhwb3J0IGNvbnN0IGdldFZhbHVlRnJvbVRleHROb2RlID0gKG9iajogYW55KSA9PiB7XG4gIGNvbnN0IHRleHROb2RlTmFtZSA9IFwiI3RleHRcIjtcbiAgZm9yIChjb25zdCBrZXkgaW4gb2JqKSB7XG4gICAgaWYgKG9iai5oYXNPd25Qcm9wZXJ0eShrZXkpICYmIG9ialtrZXldW3RleHROb2RlTmFtZV0gIT09IHVuZGVmaW5lZCkge1xuICAgICAgb2JqW2tleV0gPSBvYmpba2V5XVt0ZXh0Tm9kZU5hbWVdO1xuICAgIH0gZWxzZSBpZiAodHlwZW9mIG9ialtrZXldID09PSBcIm9iamVjdFwiICYmIG9ialtrZXldICE9PSBudWxsKSB7XG4gICAgICBvYmpba2V5XSA9IGdldFZhbHVlRnJvbVRleHROb2RlKG9ialtrZXldKTtcbiAgICB9XG4gIH1cbiAgcmV0dXJuIG9iajtcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/get-value-from-text-node.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/index.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/index.js ***! \**************************************************************/ /*! exports provided: Client, Command, extendedEncodeURIComponent, getArrayIfSingleItem, getValueFromTextNode, StringWrapper, LazyJsonString, dateToUtcString, splitEvery, SENSITIVE_STRING */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./client */ \"./node_modules/@aws-sdk/smithy-client/dist/es/client.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Client\", function() { return _client__WEBPACK_IMPORTED_MODULE_0__[\"Client\"]; });\n\n/* harmony import */ var _command__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./command */ \"./node_modules/@aws-sdk/smithy-client/dist/es/command.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Command\", function() { return _command__WEBPACK_IMPORTED_MODULE_1__[\"Command\"]; });\n\n/* harmony import */ var _document_type__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./document-type */ \"./node_modules/@aws-sdk/smithy-client/dist/es/document-type.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _exception__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./exception */ \"./node_modules/@aws-sdk/smithy-client/dist/es/exception.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./extended-encode-uri-component */ \"./node_modules/@aws-sdk/smithy-client/dist/es/extended-encode-uri-component.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"extendedEncodeURIComponent\", function() { return _extended_encode_uri_component__WEBPACK_IMPORTED_MODULE_4__[\"extendedEncodeURIComponent\"]; });\n\n/* harmony import */ var _get_array_if_single_item__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./get-array-if-single-item */ \"./node_modules/@aws-sdk/smithy-client/dist/es/get-array-if-single-item.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getArrayIfSingleItem\", function() { return _get_array_if_single_item__WEBPACK_IMPORTED_MODULE_5__[\"getArrayIfSingleItem\"]; });\n\n/* harmony import */ var _get_value_from_text_node__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./get-value-from-text-node */ \"./node_modules/@aws-sdk/smithy-client/dist/es/get-value-from-text-node.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getValueFromTextNode\", function() { return _get_value_from_text_node__WEBPACK_IMPORTED_MODULE_6__[\"getValueFromTextNode\"]; });\n\n/* harmony import */ var _lazy_json__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./lazy-json */ \"./node_modules/@aws-sdk/smithy-client/dist/es/lazy-json.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StringWrapper\", function() { return _lazy_json__WEBPACK_IMPORTED_MODULE_7__[\"StringWrapper\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LazyJsonString\", function() { return _lazy_json__WEBPACK_IMPORTED_MODULE_7__[\"LazyJsonString\"]; });\n\n/* harmony import */ var _date_utils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./date-utils */ \"./node_modules/@aws-sdk/smithy-client/dist/es/date-utils.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"dateToUtcString\", function() { return _date_utils__WEBPACK_IMPORTED_MODULE_8__[\"dateToUtcString\"]; });\n\n/* harmony import */ var _split_every__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./split-every */ \"./node_modules/@aws-sdk/smithy-client/dist/es/split-every.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"splitEvery\", function() { return _split_every__WEBPACK_IMPORTED_MODULE_9__[\"splitEvery\"]; });\n\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/smithy-client/dist/es/constants.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SENSITIVE_STRING\", function() { return _constants__WEBPACK_IMPORTED_MODULE_10__[\"SENSITIVE_STRING\"]; });\n\n/* harmony import */ var _retryable_trait__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./retryable-trait */ \"./node_modules/@aws-sdk/smithy-client/dist/es/retryable-trait.js\");\n/* empty/unused harmony star reexport *//* harmony import */ var _sdk_error__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./sdk-error */ \"./node_modules/@aws-sdk/smithy-client/dist/es/sdk-error.js\");\n/* empty/unused harmony star reexport */\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxXQUFXLENBQUM7QUFDMUIsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vY2xpZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21tYW5kXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9kb2N1bWVudC10eXBlXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9leGNlcHRpb25cIjtcbmV4cG9ydCAqIGZyb20gXCIuL2V4dGVuZGVkLWVuY29kZS11cmktY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9nZXQtYXJyYXktaWYtc2luZ2xlLWl0ZW1cIjtcbmV4cG9ydCAqIGZyb20gXCIuL2dldC12YWx1ZS1mcm9tLXRleHQtbm9kZVwiO1xuZXhwb3J0ICogZnJvbSBcIi4vbGF6eS1qc29uXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9kYXRlLXV0aWxzXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9zcGxpdC1ldmVyeVwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29uc3RhbnRzXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9yZXRyeWFibGUtdHJhaXRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3Nkay1lcnJvclwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/lazy-json.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/lazy-json.js ***! \******************************************************************/ /*! exports provided: StringWrapper, LazyJsonString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"StringWrapper\", function() { return StringWrapper; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LazyJsonString\", function() { return LazyJsonString; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/**\n * Lazy String holder for JSON typed contents.\n */\n\n/**\n * Because of https://github.com/microsoft/tslib/issues/95,\n * TS 'extends' shim doesn't support extending native types like String.\n * So here we create StringWrapper that duplicate everything from String\n * class including its prototype chain. So we can extend from here.\n */\n// @ts-ignore StringWrapper implementation is not a simple constructor\nvar StringWrapper = function () {\n //@ts-ignore 'this' cannot be assigned to any, but Object.getPrototypeOf accepts any\n var Class = Object.getPrototypeOf(this).constructor;\n var Constructor = Function.bind.apply(String, Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__spread\"])([null], arguments));\n //@ts-ignore Call wrapped String constructor directly, don't bother typing it.\n var instance = new Constructor();\n Object.setPrototypeOf(instance, Class.prototype);\n return instance;\n};\nStringWrapper.prototype = Object.create(String.prototype, {\n constructor: {\n value: StringWrapper,\n enumerable: false,\n writable: true,\n configurable: true,\n },\n});\nObject.setPrototypeOf(StringWrapper, String);\nvar LazyJsonString = /** @class */ (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(LazyJsonString, _super);\n function LazyJsonString() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n LazyJsonString.prototype.deserializeJSON = function () {\n return JSON.parse(_super.prototype.toString.call(this));\n };\n LazyJsonString.prototype.toJSON = function () {\n return _super.prototype.toString.call(this);\n };\n LazyJsonString.fromObject = function (object) {\n if (object instanceof LazyJsonString) {\n return object;\n }\n else if (object instanceof String || typeof object === \"string\") {\n return new LazyJsonString(object);\n }\n return new LazyJsonString(JSON.stringify(object));\n };\n return LazyJsonString;\n}(StringWrapper));\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGF6eS1qc29uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2xhenktanNvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRzs7QUFNSDs7Ozs7R0FLRztBQUNILHNFQUFzRTtBQUN0RSxNQUFNLENBQUMsSUFBTSxhQUFhLEdBQWtCO0lBQzFDLG9GQUFvRjtJQUNwRixJQUFNLEtBQUssR0FBRyxNQUFNLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxDQUFDLFdBQVcsQ0FBQztJQUN0RCxJQUFNLFdBQVcsR0FBRyxRQUFRLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLFlBQUcsSUFBVyxHQUFLLFNBQVMsRUFBRSxDQUFDO0lBQzdFLDhFQUE4RTtJQUM5RSxJQUFNLFFBQVEsR0FBRyxJQUFJLFdBQVcsRUFBRSxDQUFDO0lBQ25DLE1BQU0sQ0FBQyxjQUFjLENBQUMsUUFBUSxFQUFFLEtBQUssQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUNqRCxPQUFPLFFBQWtCLENBQUM7QUFDNUIsQ0FBQyxDQUFDO0FBQ0YsYUFBYSxDQUFDLFNBQVMsR0FBRyxNQUFNLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxTQUFTLEVBQUU7SUFDeEQsV0FBVyxFQUFFO1FBQ1gsS0FBSyxFQUFFLGFBQWE7UUFDcEIsVUFBVSxFQUFFLEtBQUs7UUFDakIsUUFBUSxFQUFFLElBQUk7UUFDZCxZQUFZLEVBQUUsSUFBSTtLQUNuQjtDQUNGLENBQUMsQ0FBQztBQUNILE1BQU0sQ0FBQyxjQUFjLENBQUMsYUFBYSxFQUFFLE1BQU0sQ0FBQyxDQUFDO0FBRTdDO0lBQW9DLGtDQUFhO0lBQWpEOztJQWlCQSxDQUFDO0lBaEJDLHdDQUFlLEdBQWY7UUFDRSxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsaUJBQU0sUUFBUSxXQUFFLENBQUMsQ0FBQztJQUN0QyxDQUFDO0lBRUQsK0JBQU0sR0FBTjtRQUNFLE9BQU8saUJBQU0sUUFBUSxXQUFFLENBQUM7SUFDMUIsQ0FBQztJQUVNLHlCQUFVLEdBQWpCLFVBQWtCLE1BQVc7UUFDM0IsSUFBSSxNQUFNLFlBQVksY0FBYyxFQUFFO1lBQ3BDLE9BQU8sTUFBTSxDQUFDO1NBQ2Y7YUFBTSxJQUFJLE1BQU0sWUFBWSxNQUFNLElBQUksT0FBTyxNQUFNLEtBQUssUUFBUSxFQUFFO1lBQ2pFLE9BQU8sSUFBSSxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUM7U0FDbkM7UUFDRCxPQUFPLElBQUksY0FBYyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQztJQUNwRCxDQUFDO0lBQ0gscUJBQUM7QUFBRCxDQUFDLEFBakJELENBQW9DLGFBQWEsR0FpQmhEIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBMYXp5IFN0cmluZyBob2xkZXIgZm9yIEpTT04gdHlwZWQgY29udGVudHMuXG4gKi9cblxuaW50ZXJmYWNlIFN0cmluZ1dyYXBwZXIge1xuICBuZXcgKGFyZzogYW55KTogU3RyaW5nO1xufVxuXG4vKipcbiAqIEJlY2F1c2Ugb2YgaHR0cHM6Ly9naXRodWIuY29tL21pY3Jvc29mdC90c2xpYi9pc3N1ZXMvOTUsXG4gKiBUUyAnZXh0ZW5kcycgc2hpbSBkb2Vzbid0IHN1cHBvcnQgZXh0ZW5kaW5nIG5hdGl2ZSB0eXBlcyBsaWtlIFN0cmluZy5cbiAqIFNvIGhlcmUgd2UgY3JlYXRlIFN0cmluZ1dyYXBwZXIgdGhhdCBkdXBsaWNhdGUgZXZlcnl0aGluZyBmcm9tIFN0cmluZ1xuICogY2xhc3MgaW5jbHVkaW5nIGl0cyBwcm90b3R5cGUgY2hhaW4uIFNvIHdlIGNhbiBleHRlbmQgZnJvbSBoZXJlLlxuICovXG4vLyBAdHMtaWdub3JlIFN0cmluZ1dyYXBwZXIgaW1wbGVtZW50YXRpb24gaXMgbm90IGEgc2ltcGxlIGNvbnN0cnVjdG9yXG5leHBvcnQgY29uc3QgU3RyaW5nV3JhcHBlcjogU3RyaW5nV3JhcHBlciA9IGZ1bmN0aW9uICgpIHtcbiAgLy9AdHMtaWdub3JlICd0aGlzJyBjYW5ub3QgYmUgYXNzaWduZWQgdG8gYW55LCBidXQgT2JqZWN0LmdldFByb3RvdHlwZU9mIGFjY2VwdHMgYW55XG4gIGNvbnN0IENsYXNzID0gT2JqZWN0LmdldFByb3RvdHlwZU9mKHRoaXMpLmNvbnN0cnVjdG9yO1xuICBjb25zdCBDb25zdHJ1Y3RvciA9IEZ1bmN0aW9uLmJpbmQuYXBwbHkoU3RyaW5nLCBbbnVsbCBhcyBhbnksIC4uLmFyZ3VtZW50c10pO1xuICAvL0B0cy1pZ25vcmUgQ2FsbCB3cmFwcGVkIFN0cmluZyBjb25zdHJ1Y3RvciBkaXJlY3RseSwgZG9uJ3QgYm90aGVyIHR5cGluZyBpdC5cbiAgY29uc3QgaW5zdGFuY2UgPSBuZXcgQ29uc3RydWN0b3IoKTtcbiAgT2JqZWN0LnNldFByb3RvdHlwZU9mKGluc3RhbmNlLCBDbGFzcy5wcm90b3R5cGUpO1xuICByZXR1cm4gaW5zdGFuY2UgYXMgU3RyaW5nO1xufTtcblN0cmluZ1dyYXBwZXIucHJvdG90eXBlID0gT2JqZWN0LmNyZWF0ZShTdHJpbmcucHJvdG90eXBlLCB7XG4gIGNvbnN0cnVjdG9yOiB7XG4gICAgdmFsdWU6IFN0cmluZ1dyYXBwZXIsXG4gICAgZW51bWVyYWJsZTogZmFsc2UsXG4gICAgd3JpdGFibGU6IHRydWUsXG4gICAgY29uZmlndXJhYmxlOiB0cnVlLFxuICB9LFxufSk7XG5PYmplY3Quc2V0UHJvdG90eXBlT2YoU3RyaW5nV3JhcHBlciwgU3RyaW5nKTtcblxuZXhwb3J0IGNsYXNzIExhenlKc29uU3RyaW5nIGV4dGVuZHMgU3RyaW5nV3JhcHBlciB7XG4gIGRlc2VyaWFsaXplSlNPTigpOiBhbnkge1xuICAgIHJldHVybiBKU09OLnBhcnNlKHN1cGVyLnRvU3RyaW5nKCkpO1xuICB9XG5cbiAgdG9KU09OKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHN1cGVyLnRvU3RyaW5nKCk7XG4gIH1cblxuICBzdGF0aWMgZnJvbU9iamVjdChvYmplY3Q6IGFueSk6IExhenlKc29uU3RyaW5nIHtcbiAgICBpZiAob2JqZWN0IGluc3RhbmNlb2YgTGF6eUpzb25TdHJpbmcpIHtcbiAgICAgIHJldHVybiBvYmplY3Q7XG4gICAgfSBlbHNlIGlmIChvYmplY3QgaW5zdGFuY2VvZiBTdHJpbmcgfHwgdHlwZW9mIG9iamVjdCA9PT0gXCJzdHJpbmdcIikge1xuICAgICAgcmV0dXJuIG5ldyBMYXp5SnNvblN0cmluZyhvYmplY3QpO1xuICAgIH1cbiAgICByZXR1cm4gbmV3IExhenlKc29uU3RyaW5nKEpTT04uc3RyaW5naWZ5KG9iamVjdCkpO1xuICB9XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/lazy-json.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/retryable-trait.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/retryable-trait.js ***! \************************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmV0cnlhYmxlLXRyYWl0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3JldHJ5YWJsZS10cmFpdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBBIHN0cnVjdHVyZSBzaGFwZSB3aXRoIHRoZSBlcnJvciB0cmFpdC5cbiAqIGh0dHBzOi8vYXdzbGFicy5naXRodWIuaW8vc21pdGh5L3NwZWMvY29yZS5odG1sI3JldHJ5YWJsZS10cmFpdFxuICovXG5leHBvcnQgaW50ZXJmYWNlIFJldHJ5YWJsZVRyYWl0IHtcbiAgLyoqXG4gICAqIEluZGljYXRlcyB0aGF0IHRoZSBlcnJvciBpcyBhIHJldHJ5YWJsZSB0aHJvdHRsaW5nIGVycm9yLlxuICAgKi9cbiAgcmVhZG9ubHkgdGhyb3R0bGluZz86IGJvb2xlYW47XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/retryable-trait.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/sdk-error.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/sdk-error.js ***! \******************************************************************/ /*! no exports provided */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2RrLWVycm9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3Nkay1lcnJvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWV0YWRhdGFCZWFyZXIgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuaW1wb3J0IHsgU21pdGh5RXhjZXB0aW9uIH0gZnJvbSBcIi4vZXhjZXB0aW9uXCI7XG5cbmV4cG9ydCB0eXBlIFNka0Vycm9yID0gRXJyb3IgJiBTbWl0aHlFeGNlcHRpb24gJiBNZXRhZGF0YUJlYXJlcjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/sdk-error.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/smithy-client/dist/es/split-every.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/smithy-client/dist/es/split-every.js ***! \********************************************************************/ /*! exports provided: splitEvery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"splitEvery\", function() { return splitEvery; });\n/**\n * Given an input string, splits based on the delimiter after a given\n * number of delimiters has been encountered.\n *\n * @param value The input string to split.\n * @param delimiter The delimiter to split on.\n * @param numDelimiters The number of delimiters to have encountered to split.\n */\nfunction splitEvery(value, delimiter, numDelimiters) {\n // Fail if we don't have a clear number to split on.\n if (numDelimiters <= 0 || !Number.isInteger(numDelimiters)) {\n throw new Error(\"Invalid number of delimiters (\" + numDelimiters + \") for splitEvery.\");\n }\n var segments = value.split(delimiter);\n // Short circuit extra logic for the simple case.\n if (numDelimiters === 1) {\n return segments;\n }\n var compoundSegments = [];\n var currentSegment = \"\";\n for (var i = 0; i < segments.length; i++) {\n if (currentSegment === \"\") {\n // Start a new segment.\n currentSegment = segments[i];\n }\n else {\n // Compound the current segment with the delimiter.\n currentSegment += delimiter + segments[i];\n }\n if ((i + 1) % numDelimiters === 0) {\n // We encountered the right number of delimiters, so add the entry.\n compoundSegments.push(currentSegment);\n // And reset the current segment.\n currentSegment = \"\";\n }\n }\n // Handle any leftover segment portion.\n if (currentSegment !== \"\") {\n compoundSegments.push(currentSegment);\n }\n return compoundSegments;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BsaXQtZXZlcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvc3BsaXQtZXZlcnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7R0FPRztBQUNILE1BQU0sVUFBVSxVQUFVLENBQUMsS0FBYSxFQUFFLFNBQWlCLEVBQUUsYUFBcUI7SUFDaEYsb0RBQW9EO0lBQ3BELElBQUksYUFBYSxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsYUFBYSxDQUFDLEVBQUU7UUFDMUQsTUFBTSxJQUFJLEtBQUssQ0FBQyxnQ0FBZ0MsR0FBRyxhQUFhLEdBQUcsbUJBQW1CLENBQUMsQ0FBQztLQUN6RjtJQUVELElBQU0sUUFBUSxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUM7SUFDeEMsaURBQWlEO0lBQ2pELElBQUksYUFBYSxLQUFLLENBQUMsRUFBRTtRQUN2QixPQUFPLFFBQVEsQ0FBQztLQUNqQjtJQUVELElBQU0sZ0JBQWdCLEdBQWtCLEVBQUUsQ0FBQztJQUMzQyxJQUFJLGNBQWMsR0FBRyxFQUFFLENBQUM7SUFDeEIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLFFBQVEsQ0FBQyxNQUFNLEVBQUUsQ0FBQyxFQUFFLEVBQUU7UUFDeEMsSUFBSSxjQUFjLEtBQUssRUFBRSxFQUFFO1lBQ3pCLHVCQUF1QjtZQUN2QixjQUFjLEdBQUcsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDO1NBQzlCO2FBQU07WUFDTCxtREFBbUQ7WUFDbkQsY0FBYyxJQUFJLFNBQVMsR0FBRyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUM7U0FDM0M7UUFFRCxJQUFJLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLGFBQWEsS0FBSyxDQUFDLEVBQUU7WUFDakMsbUVBQW1FO1lBQ25FLGdCQUFnQixDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQztZQUN0QyxpQ0FBaUM7WUFDakMsY0FBYyxHQUFHLEVBQUUsQ0FBQztTQUNyQjtLQUNGO0lBRUQsdUNBQXVDO0lBQ3ZDLElBQUksY0FBYyxLQUFLLEVBQUUsRUFBRTtRQUN6QixnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLENBQUM7S0FDdkM7SUFFRCxPQUFPLGdCQUFnQixDQUFDO0FBQzFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdpdmVuIGFuIGlucHV0IHN0cmluZywgc3BsaXRzIGJhc2VkIG9uIHRoZSBkZWxpbWl0ZXIgYWZ0ZXIgYSBnaXZlblxuICogbnVtYmVyIG9mIGRlbGltaXRlcnMgaGFzIGJlZW4gZW5jb3VudGVyZWQuXG4gKlxuICogQHBhcmFtIHZhbHVlIFRoZSBpbnB1dCBzdHJpbmcgdG8gc3BsaXQuXG4gKiBAcGFyYW0gZGVsaW1pdGVyIFRoZSBkZWxpbWl0ZXIgdG8gc3BsaXQgb24uXG4gKiBAcGFyYW0gbnVtRGVsaW1pdGVycyBUaGUgbnVtYmVyIG9mIGRlbGltaXRlcnMgdG8gaGF2ZSBlbmNvdW50ZXJlZCB0byBzcGxpdC5cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIHNwbGl0RXZlcnkodmFsdWU6IHN0cmluZywgZGVsaW1pdGVyOiBzdHJpbmcsIG51bURlbGltaXRlcnM6IG51bWJlcik6IEFycmF5PHN0cmluZz4ge1xuICAvLyBGYWlsIGlmIHdlIGRvbid0IGhhdmUgYSBjbGVhciBudW1iZXIgdG8gc3BsaXQgb24uXG4gIGlmIChudW1EZWxpbWl0ZXJzIDw9IDAgfHwgIU51bWJlci5pc0ludGVnZXIobnVtRGVsaW1pdGVycykpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJJbnZhbGlkIG51bWJlciBvZiBkZWxpbWl0ZXJzIChcIiArIG51bURlbGltaXRlcnMgKyBcIikgZm9yIHNwbGl0RXZlcnkuXCIpO1xuICB9XG5cbiAgY29uc3Qgc2VnbWVudHMgPSB2YWx1ZS5zcGxpdChkZWxpbWl0ZXIpO1xuICAvLyBTaG9ydCBjaXJjdWl0IGV4dHJhIGxvZ2ljIGZvciB0aGUgc2ltcGxlIGNhc2UuXG4gIGlmIChudW1EZWxpbWl0ZXJzID09PSAxKSB7XG4gICAgcmV0dXJuIHNlZ21lbnRzO1xuICB9XG5cbiAgY29uc3QgY29tcG91bmRTZWdtZW50czogQXJyYXk8c3RyaW5nPiA9IFtdO1xuICBsZXQgY3VycmVudFNlZ21lbnQgPSBcIlwiO1xuICBmb3IgKGxldCBpID0gMDsgaSA8IHNlZ21lbnRzLmxlbmd0aDsgaSsrKSB7XG4gICAgaWYgKGN1cnJlbnRTZWdtZW50ID09PSBcIlwiKSB7XG4gICAgICAvLyBTdGFydCBhIG5ldyBzZWdtZW50LlxuICAgICAgY3VycmVudFNlZ21lbnQgPSBzZWdtZW50c1tpXTtcbiAgICB9IGVsc2Uge1xuICAgICAgLy8gQ29tcG91bmQgdGhlIGN1cnJlbnQgc2VnbWVudCB3aXRoIHRoZSBkZWxpbWl0ZXIuXG4gICAgICBjdXJyZW50U2VnbWVudCArPSBkZWxpbWl0ZXIgKyBzZWdtZW50c1tpXTtcbiAgICB9XG5cbiAgICBpZiAoKGkgKyAxKSAlIG51bURlbGltaXRlcnMgPT09IDApIHtcbiAgICAgIC8vIFdlIGVuY291bnRlcmVkIHRoZSByaWdodCBudW1iZXIgb2YgZGVsaW1pdGVycywgc28gYWRkIHRoZSBlbnRyeS5cbiAgICAgIGNvbXBvdW5kU2VnbWVudHMucHVzaChjdXJyZW50U2VnbWVudCk7XG4gICAgICAvLyBBbmQgcmVzZXQgdGhlIGN1cnJlbnQgc2VnbWVudC5cbiAgICAgIGN1cnJlbnRTZWdtZW50ID0gXCJcIjtcbiAgICB9XG4gIH1cblxuICAvLyBIYW5kbGUgYW55IGxlZnRvdmVyIHNlZ21lbnQgcG9ydGlvbi5cbiAgaWYgKGN1cnJlbnRTZWdtZW50ICE9PSBcIlwiKSB7XG4gICAgY29tcG91bmRTZWdtZW50cy5wdXNoKGN1cnJlbnRTZWdtZW50KTtcbiAgfVxuXG4gIHJldHVybiBjb21wb3VuZFNlZ21lbnRzO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/smithy-client/dist/es/split-every.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/url-parser/dist/es/index.js": /*!***********************************************************!*\ !*** ./node_modules/@aws-sdk/url-parser/dist/es/index.js ***! \***********************************************************/ /*! exports provided: parseUrl */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseUrl\", function() { return parseUrl; });\n/* harmony import */ var _aws_sdk_querystring_parser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/querystring-parser */ \"./node_modules/@aws-sdk/querystring-parser/dist/es/index.js\");\n\nvar parseUrl = function (url) {\n var _a = new URL(url), hostname = _a.hostname, pathname = _a.pathname, port = _a.port, protocol = _a.protocol, search = _a.search;\n var query;\n if (search) {\n query = Object(_aws_sdk_querystring_parser__WEBPACK_IMPORTED_MODULE_0__[\"parseQueryString\"])(search);\n }\n return {\n hostname: hostname,\n port: port ? parseInt(port) : undefined,\n protocol: protocol,\n path: pathname,\n query: query,\n };\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFHL0QsTUFBTSxDQUFDLElBQU0sUUFBUSxHQUFjLFVBQUMsR0FBVztJQUN2QyxJQUFBLEtBQWlELElBQUksR0FBRyxDQUFDLEdBQUcsQ0FBQyxFQUEzRCxRQUFRLGNBQUEsRUFBRSxRQUFRLGNBQUEsRUFBRSxJQUFJLFVBQUEsRUFBRSxRQUFRLGNBQUEsRUFBRSxNQUFNLFlBQWlCLENBQUM7SUFFcEUsSUFBSSxLQUFvQyxDQUFDO0lBQ3pDLElBQUksTUFBTSxFQUFFO1FBQ1YsS0FBSyxHQUFHLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxDQUFDO0tBQ2xDO0lBRUQsT0FBTztRQUNMLFFBQVEsVUFBQTtRQUNSLElBQUksRUFBRSxJQUFJLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsU0FBUztRQUN2QyxRQUFRLFVBQUE7UUFDUixJQUFJLEVBQUUsUUFBUTtRQUNkLEtBQUssT0FBQTtLQUNOLENBQUM7QUFDSixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBwYXJzZVF1ZXJ5U3RyaW5nIH0gZnJvbSBcIkBhd3Mtc2RrL3F1ZXJ5c3RyaW5nLXBhcnNlclwiO1xuaW1wb3J0IHsgRW5kcG9pbnQsIFF1ZXJ5UGFyYW1ldGVyQmFnLCBVcmxQYXJzZXIgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcblxuZXhwb3J0IGNvbnN0IHBhcnNlVXJsOiBVcmxQYXJzZXIgPSAodXJsOiBzdHJpbmcpOiBFbmRwb2ludCA9PiB7XG4gIGNvbnN0IHsgaG9zdG5hbWUsIHBhdGhuYW1lLCBwb3J0LCBwcm90b2NvbCwgc2VhcmNoIH0gPSBuZXcgVVJMKHVybCk7XG5cbiAgbGV0IHF1ZXJ5OiBRdWVyeVBhcmFtZXRlckJhZyB8IHVuZGVmaW5lZDtcbiAgaWYgKHNlYXJjaCkge1xuICAgIHF1ZXJ5ID0gcGFyc2VRdWVyeVN0cmluZyhzZWFyY2gpO1xuICB9XG5cbiAgcmV0dXJuIHtcbiAgICBob3N0bmFtZSxcbiAgICBwb3J0OiBwb3J0ID8gcGFyc2VJbnQocG9ydCkgOiB1bmRlZmluZWQsXG4gICAgcHJvdG9jb2wsXG4gICAgcGF0aDogcGF0aG5hbWUsXG4gICAgcXVlcnksXG4gIH07XG59O1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/url-parser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-arn-parser/dist/es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/util-arn-parser/dist/es/index.js ***! \****************************************************************/ /*! exports provided: validate, parse, build */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validate\", function() { return validate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parse\", function() { return parse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"build\", function() { return build; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\n/**\n * Validate whether a string is an ARN.\n */\nvar validate = function (str) {\n return typeof str === \"string\" && str.indexOf(\"arn:\") === 0 && str.split(\":\").length >= 6;\n};\n/**\n * Parse an ARN string into structure with partition, service, region, accountId and resource values\n */\nvar parse = function (arn) {\n var segments = arn.split(\":\");\n if (segments.length < 6 || segments[0] !== \"arn\")\n throw new Error(\"Malformed ARN\");\n var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__read\"])(segments), \n //Skip \"arn\" literal\n partition = _a[1], service = _a[2], region = _a[3], accountId = _a[4], resource = _a.slice(5);\n return {\n partition: partition,\n service: service,\n region: region,\n accountId: accountId,\n resource: resource.join(\":\"),\n };\n};\n/**\n * Build an ARN with service, partition, region, accountId, and resources strings\n */\nvar build = function (arnObject) {\n var _a = arnObject.partition, partition = _a === void 0 ? \"aws\" : _a, service = arnObject.service, region = arnObject.region, accountId = arnObject.accountId, resource = arnObject.resource;\n if ([service, region, accountId, resource].some(function (segment) { return typeof segment !== \"string\"; })) {\n throw new Error(\"Input ARN object is invalid\");\n }\n return \"arn:\" + partition + \":\" + service + \":\" + region + \":\" + accountId + \":\" + resource;\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQU9BOztHQUVHO0FBQ0gsTUFBTSxDQUFDLElBQU0sUUFBUSxHQUFHLFVBQUMsR0FBUTtJQUMvQixPQUFBLE9BQU8sR0FBRyxLQUFLLFFBQVEsSUFBSSxHQUFHLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsSUFBSSxHQUFHLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLE1BQU0sSUFBSSxDQUFDO0FBQWxGLENBQWtGLENBQUM7QUFFckY7O0dBRUc7QUFDSCxNQUFNLENBQUMsSUFBTSxLQUFLLEdBQUcsVUFBQyxHQUFXO0lBQy9CLElBQU0sUUFBUSxHQUFHLEdBQUcsQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDaEMsSUFBSSxRQUFRLENBQUMsTUFBTSxHQUFHLENBQUMsSUFBSSxRQUFRLENBQUMsQ0FBQyxDQUFDLEtBQUssS0FBSztRQUFFLE1BQU0sSUFBSSxLQUFLLENBQUMsZUFBZSxDQUFDLENBQUM7SUFDN0UsSUFBQSxLQUFBLE9BUUYsUUFBUSxDQUFBO0lBTlYsb0JBQW9CO0lBQ3BCLFNBQVMsUUFBQSxFQUNULE9BQU8sUUFBQSxFQUNQLE1BQU0sUUFBQSxFQUNOLFNBQVMsUUFBQSxFQUNOLFFBQVEsY0FDRCxDQUFDO0lBRWIsT0FBTztRQUNMLFNBQVMsV0FBQTtRQUNULE9BQU8sU0FBQTtRQUNQLE1BQU0sUUFBQTtRQUNOLFNBQVMsV0FBQTtRQUNULFFBQVEsRUFBRSxRQUFRLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQztLQUM3QixDQUFDO0FBQ0osQ0FBQyxDQUFDO0FBSUY7O0dBRUc7QUFDSCxNQUFNLENBQUMsSUFBTSxLQUFLLEdBQUcsVUFBQyxTQUF1QjtJQUNuQyxJQUFBLEtBQTRELFNBQVMsVUFBcEQsRUFBakIsU0FBUyxtQkFBRyxLQUFLLEtBQUEsRUFBRSxPQUFPLEdBQWtDLFNBQVMsUUFBM0MsRUFBRSxNQUFNLEdBQTBCLFNBQVMsT0FBbkMsRUFBRSxTQUFTLEdBQWUsU0FBUyxVQUF4QixFQUFFLFFBQVEsR0FBSyxTQUFTLFNBQWQsQ0FBZTtJQUM5RSxJQUFJLENBQUMsT0FBTyxFQUFFLE1BQU0sRUFBRSxTQUFTLEVBQUUsUUFBUSxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQUMsT0FBTyxJQUFLLE9BQUEsT0FBTyxPQUFPLEtBQUssUUFBUSxFQUEzQixDQUEyQixDQUFDLEVBQUU7UUFDekYsTUFBTSxJQUFJLEtBQUssQ0FBQyw2QkFBNkIsQ0FBQyxDQUFDO0tBQ2hEO0lBQ0QsT0FBTyxTQUFPLFNBQVMsU0FBSSxPQUFPLFNBQUksTUFBTSxTQUFJLFNBQVMsU0FBSSxRQUFVLENBQUM7QUFDMUUsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBBUk4ge1xuICBwYXJ0aXRpb246IHN0cmluZztcbiAgc2VydmljZTogc3RyaW5nO1xuICByZWdpb246IHN0cmluZztcbiAgYWNjb3VudElkOiBzdHJpbmc7XG4gIHJlc291cmNlOiBzdHJpbmc7XG59XG4vKipcbiAqIFZhbGlkYXRlIHdoZXRoZXIgYSBzdHJpbmcgaXMgYW4gQVJOLlxuICovXG5leHBvcnQgY29uc3QgdmFsaWRhdGUgPSAoc3RyOiBhbnkpOiBib29sZWFuID0+XG4gIHR5cGVvZiBzdHIgPT09IFwic3RyaW5nXCIgJiYgc3RyLmluZGV4T2YoXCJhcm46XCIpID09PSAwICYmIHN0ci5zcGxpdChcIjpcIikubGVuZ3RoID49IDY7XG5cbi8qKlxuICogUGFyc2UgYW4gQVJOIHN0cmluZyBpbnRvIHN0cnVjdHVyZSB3aXRoIHBhcnRpdGlvbiwgc2VydmljZSwgcmVnaW9uLCBhY2NvdW50SWQgYW5kIHJlc291cmNlIHZhbHVlc1xuICovXG5leHBvcnQgY29uc3QgcGFyc2UgPSAoYXJuOiBzdHJpbmcpOiBBUk4gPT4ge1xuICBjb25zdCBzZWdtZW50cyA9IGFybi5zcGxpdChcIjpcIik7XG4gIGlmIChzZWdtZW50cy5sZW5ndGggPCA2IHx8IHNlZ21lbnRzWzBdICE9PSBcImFyblwiKSB0aHJvdyBuZXcgRXJyb3IoXCJNYWxmb3JtZWQgQVJOXCIpO1xuICBjb25zdCBbXG4gICAgLFxuICAgIC8vU2tpcCBcImFyblwiIGxpdGVyYWxcbiAgICBwYXJ0aXRpb24sXG4gICAgc2VydmljZSxcbiAgICByZWdpb24sXG4gICAgYWNjb3VudElkLFxuICAgIC4uLnJlc291cmNlXG4gIF0gPSBzZWdtZW50cztcblxuICByZXR1cm4ge1xuICAgIHBhcnRpdGlvbixcbiAgICBzZXJ2aWNlLFxuICAgIHJlZ2lvbixcbiAgICBhY2NvdW50SWQsXG4gICAgcmVzb3VyY2U6IHJlc291cmNlLmpvaW4oXCI6XCIpLFxuICB9O1xufTtcblxudHlwZSBidWlsZE9wdGlvbnMgPSBPbWl0PEFSTiwgXCJwYXJ0aXRpb25cIj4gJiB7IHBhcnRpdGlvbj86IHN0cmluZyB9O1xuXG4vKipcbiAqIEJ1aWxkIGFuIEFSTiB3aXRoIHNlcnZpY2UsIHBhcnRpdGlvbiwgcmVnaW9uLCBhY2NvdW50SWQsIGFuZCByZXNvdXJjZXMgc3RyaW5nc1xuICovXG5leHBvcnQgY29uc3QgYnVpbGQgPSAoYXJuT2JqZWN0OiBidWlsZE9wdGlvbnMpOiBzdHJpbmcgPT4ge1xuICBjb25zdCB7IHBhcnRpdGlvbiA9IFwiYXdzXCIsIHNlcnZpY2UsIHJlZ2lvbiwgYWNjb3VudElkLCByZXNvdXJjZSB9ID0gYXJuT2JqZWN0O1xuICBpZiAoW3NlcnZpY2UsIHJlZ2lvbiwgYWNjb3VudElkLCByZXNvdXJjZV0uc29tZSgoc2VnbWVudCkgPT4gdHlwZW9mIHNlZ21lbnQgIT09IFwic3RyaW5nXCIpKSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKFwiSW5wdXQgQVJOIG9iamVjdCBpcyBpbnZhbGlkXCIpO1xuICB9XG4gIHJldHVybiBgYXJuOiR7cGFydGl0aW9ufToke3NlcnZpY2V9OiR7cmVnaW9ufToke2FjY291bnRJZH06JHtyZXNvdXJjZX1gO1xufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-arn-parser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js ***! \********************************************************************/ /*! exports provided: fromBase64, toBase64 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromBase64\", function() { return fromBase64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toBase64\", function() { return toBase64; });\nvar alphabetByEncoding = {};\nvar alphabetByValue = new Array(64);\nfor (var i = 0, start = \"A\".charCodeAt(0), limit = \"Z\".charCodeAt(0); i + start <= limit; i++) {\n var char = String.fromCharCode(i + start);\n alphabetByEncoding[char] = i;\n alphabetByValue[i] = char;\n}\nfor (var i = 0, start = \"a\".charCodeAt(0), limit = \"z\".charCodeAt(0); i + start <= limit; i++) {\n var char = String.fromCharCode(i + start);\n var index = i + 26;\n alphabetByEncoding[char] = index;\n alphabetByValue[index] = char;\n}\nfor (var i = 0; i < 10; i++) {\n alphabetByEncoding[i.toString(10)] = i + 52;\n var char = i.toString(10);\n var index = i + 52;\n alphabetByEncoding[char] = index;\n alphabetByValue[index] = char;\n}\nalphabetByEncoding[\"+\"] = 62;\nalphabetByValue[62] = \"+\";\nalphabetByEncoding[\"/\"] = 63;\nalphabetByValue[63] = \"/\";\nvar bitsPerLetter = 6;\nvar bitsPerByte = 8;\nvar maxLetterValue = 63;\n/**\n * Converts a base-64 encoded string to a Uint8Array of bytes.\n *\n * @param input The base-64 encoded string\n *\n * @see https://tools.ietf.org/html/rfc4648#section-4\n */\nfunction fromBase64(input) {\n var totalByteLength = (input.length / 4) * 3;\n if (input.substr(-2) === \"==\") {\n totalByteLength -= 2;\n }\n else if (input.substr(-1) === \"=\") {\n totalByteLength--;\n }\n var out = new ArrayBuffer(totalByteLength);\n var dataView = new DataView(out);\n for (var i = 0; i < input.length; i += 4) {\n var bits = 0;\n var bitLength = 0;\n for (var j = i, limit = i + 3; j <= limit; j++) {\n if (input[j] !== \"=\") {\n bits |= alphabetByEncoding[input[j]] << ((limit - j) * bitsPerLetter);\n bitLength += bitsPerLetter;\n }\n else {\n bits >>= bitsPerLetter;\n }\n }\n var chunkOffset = (i / 4) * 3;\n bits >>= bitLength % bitsPerByte;\n var byteLength = Math.floor(bitLength / bitsPerByte);\n for (var k = 0; k < byteLength; k++) {\n var offset = (byteLength - k - 1) * bitsPerByte;\n dataView.setUint8(chunkOffset + k, (bits & (255 << offset)) >> offset);\n }\n }\n return new Uint8Array(out);\n}\n/**\n * Converts a Uint8Array of binary data to a base-64 encoded string.\n *\n * @param input The binary data to encode\n *\n * @see https://tools.ietf.org/html/rfc4648#section-4\n */\nfunction toBase64(input) {\n var str = \"\";\n for (var i = 0; i < input.length; i += 3) {\n var bits = 0;\n var bitLength = 0;\n for (var j = i, limit = Math.min(i + 3, input.length); j < limit; j++) {\n bits |= input[j] << ((limit - j - 1) * bitsPerByte);\n bitLength += bitsPerByte;\n }\n var bitClusterCount = Math.ceil(bitLength / bitsPerLetter);\n bits <<= bitClusterCount * bitsPerLetter - bitLength;\n for (var k = 1; k <= bitClusterCount; k++) {\n var offset = (bitClusterCount - k) * bitsPerLetter;\n str += alphabetByValue[(bits & (maxLetterValue << offset)) >> offset];\n }\n str += \"==\".slice(0, 4 - bitClusterCount);\n }\n return str;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsSUFBTSxrQkFBa0IsR0FBOEIsRUFBRSxDQUFDO0FBQ3pELElBQU0sZUFBZSxHQUFrQixJQUFJLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztBQUVyRCxLQUFLLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxLQUFLLEdBQUcsR0FBRyxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsRUFBRSxLQUFLLEdBQUcsR0FBRyxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLEdBQUcsS0FBSyxJQUFJLEtBQUssRUFBRSxDQUFDLEVBQUUsRUFBRTtJQUM3RixJQUFNLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLENBQUMsR0FBRyxLQUFLLENBQUMsQ0FBQztJQUM1QyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDN0IsZUFBZSxDQUFDLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQztDQUMzQjtBQUVELEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLEtBQUssR0FBRyxHQUFHLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxFQUFFLEtBQUssR0FBRyxHQUFHLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsR0FBRyxLQUFLLElBQUksS0FBSyxFQUFFLENBQUMsRUFBRSxFQUFFO0lBQzdGLElBQU0sSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsQ0FBQyxHQUFHLEtBQUssQ0FBQyxDQUFDO0lBQzVDLElBQU0sS0FBSyxHQUFHLENBQUMsR0FBRyxFQUFFLENBQUM7SUFDckIsa0JBQWtCLENBQUMsSUFBSSxDQUFDLEdBQUcsS0FBSyxDQUFDO0lBQ2pDLGVBQWUsQ0FBQyxLQUFLLENBQUMsR0FBRyxJQUFJLENBQUM7Q0FDL0I7QUFFRCxLQUFLLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsRUFBRSxFQUFFLENBQUMsRUFBRSxFQUFFO0lBQzNCLGtCQUFrQixDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDLENBQUMsR0FBRyxDQUFDLEdBQUcsRUFBRSxDQUFDO0lBQzVDLElBQU0sSUFBSSxHQUFHLENBQUMsQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDLENBQUM7SUFDNUIsSUFBTSxLQUFLLEdBQUcsQ0FBQyxHQUFHLEVBQUUsQ0FBQztJQUNyQixrQkFBa0IsQ0FBQyxJQUFJLENBQUMsR0FBRyxLQUFLLENBQUM7SUFDakMsZUFBZSxDQUFDLEtBQUssQ0FBQyxHQUFHLElBQUksQ0FBQztDQUMvQjtBQUVELGtCQUFrQixDQUFDLEdBQUcsQ0FBQyxHQUFHLEVBQUUsQ0FBQztBQUM3QixlQUFlLENBQUMsRUFBRSxDQUFDLEdBQUcsR0FBRyxDQUFDO0FBQzFCLGtCQUFrQixDQUFDLEdBQUcsQ0FBQyxHQUFHLEVBQUUsQ0FBQztBQUM3QixlQUFlLENBQUMsRUFBRSxDQUFDLEdBQUcsR0FBRyxDQUFDO0FBRTFCLElBQU0sYUFBYSxHQUFHLENBQUMsQ0FBQztBQUN4QixJQUFNLFdBQVcsR0FBRyxDQUFDLENBQUM7QUFDdEIsSUFBTSxjQUFjLEdBQUcsRUFBUSxDQUFDO0FBRWhDOzs7Ozs7R0FNRztBQUNILE1BQU0sVUFBVSxVQUFVLENBQUMsS0FBYTtJQUN0QyxJQUFJLGVBQWUsR0FBRyxDQUFDLEtBQUssQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQzdDLElBQUksS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLElBQUksRUFBRTtRQUM3QixlQUFlLElBQUksQ0FBQyxDQUFDO0tBQ3RCO1NBQU0sSUFBSSxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssR0FBRyxFQUFFO1FBQ25DLGVBQWUsRUFBRSxDQUFDO0tBQ25CO0lBQ0QsSUFBTSxHQUFHLEdBQUcsSUFBSSxXQUFXLENBQUMsZUFBZSxDQUFDLENBQUM7SUFDN0MsSUFBTSxRQUFRLEdBQUcsSUFBSSxRQUFRLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDbkMsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQyxJQUFJLENBQUMsRUFBRTtRQUN4QyxJQUFJLElBQUksR0FBRyxDQUFDLENBQUM7UUFDYixJQUFJLFNBQVMsR0FBRyxDQUFDLENBQUM7UUFDbEIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsS0FBSyxHQUFHLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxJQUFJLEtBQUssRUFBRSxDQUFDLEVBQUUsRUFBRTtZQUM5QyxJQUFJLEtBQUssQ0FBQyxDQUFDLENBQUMsS0FBSyxHQUFHLEVBQUU7Z0JBQ3BCLElBQUksSUFBSSxrQkFBa0IsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxHQUFHLENBQUMsQ0FBQyxHQUFHLGFBQWEsQ0FBQyxDQUFDO2dCQUN0RSxTQUFTLElBQUksYUFBYSxDQUFDO2FBQzVCO2lCQUFNO2dCQUNMLElBQUksS0FBSyxhQUFhLENBQUM7YUFDeEI7U0FDRjtRQUVELElBQU0sV0FBVyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQztRQUNoQyxJQUFJLEtBQUssU0FBUyxHQUFHLFdBQVcsQ0FBQztRQUNqQyxJQUFNLFVBQVUsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVMsR0FBRyxXQUFXLENBQUMsQ0FBQztRQUN2RCxLQUFLLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsVUFBVSxFQUFFLENBQUMsRUFBRSxFQUFFO1lBQ25DLElBQU0sTUFBTSxHQUFHLENBQUMsVUFBVSxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxXQUFXLENBQUM7WUFDbEQsUUFBUSxDQUFDLFFBQVEsQ0FBQyxXQUFXLEdBQUcsQ0FBQyxFQUFFLENBQUMsSUFBSSxHQUFHLENBQUMsR0FBRyxJQUFJLE1BQU0sQ0FBQyxDQUFDLElBQUksTUFBTSxDQUFDLENBQUM7U0FDeEU7S0FDRjtJQUVELE9BQU8sSUFBSSxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUM7QUFDN0IsQ0FBQztBQUVEOzs7Ozs7R0FNRztBQUNILE1BQU0sVUFBVSxRQUFRLENBQUMsS0FBaUI7SUFDeEMsSUFBSSxHQUFHLEdBQUcsRUFBRSxDQUFDO0lBQ2IsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQyxJQUFJLENBQUMsRUFBRTtRQUN4QyxJQUFJLElBQUksR0FBRyxDQUFDLENBQUM7UUFDYixJQUFJLFNBQVMsR0FBRyxDQUFDLENBQUM7UUFDbEIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsS0FBSyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsRUFBRSxLQUFLLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxHQUFHLEtBQUssRUFBRSxDQUFDLEVBQUUsRUFBRTtZQUNyRSxJQUFJLElBQUksS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxLQUFLLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLFdBQVcsQ0FBQyxDQUFDO1lBQ3BELFNBQVMsSUFBSSxXQUFXLENBQUM7U0FDMUI7UUFFRCxJQUFNLGVBQWUsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsR0FBRyxhQUFhLENBQUMsQ0FBQztRQUM3RCxJQUFJLEtBQUssZUFBZSxHQUFHLGFBQWEsR0FBRyxTQUFTLENBQUM7UUFDckQsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxJQUFJLGVBQWUsRUFBRSxDQUFDLEVBQUUsRUFBRTtZQUN6QyxJQUFNLE1BQU0sR0FBRyxDQUFDLGVBQWUsR0FBRyxDQUFDLENBQUMsR0FBRyxhQUFhLENBQUM7WUFDckQsR0FBRyxJQUFJLGVBQWUsQ0FBQyxDQUFDLElBQUksR0FBRyxDQUFDLGNBQWMsSUFBSSxNQUFNLENBQUMsQ0FBQyxJQUFJLE1BQU0sQ0FBQyxDQUFDO1NBQ3ZFO1FBRUQsR0FBRyxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxFQUFFLENBQUMsR0FBRyxlQUFlLENBQUMsQ0FBQztLQUMzQztJQUVELE9BQU8sR0FBRyxDQUFDO0FBQ2IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImNvbnN0IGFscGhhYmV0QnlFbmNvZGluZzogeyBba2V5OiBzdHJpbmddOiBudW1iZXIgfSA9IHt9O1xuY29uc3QgYWxwaGFiZXRCeVZhbHVlOiBBcnJheTxzdHJpbmc+ID0gbmV3IEFycmF5KDY0KTtcblxuZm9yIChsZXQgaSA9IDAsIHN0YXJ0ID0gXCJBXCIuY2hhckNvZGVBdCgwKSwgbGltaXQgPSBcIlpcIi5jaGFyQ29kZUF0KDApOyBpICsgc3RhcnQgPD0gbGltaXQ7IGkrKykge1xuICBjb25zdCBjaGFyID0gU3RyaW5nLmZyb21DaGFyQ29kZShpICsgc3RhcnQpO1xuICBhbHBoYWJldEJ5RW5jb2RpbmdbY2hhcl0gPSBpO1xuICBhbHBoYWJldEJ5VmFsdWVbaV0gPSBjaGFyO1xufVxuXG5mb3IgKGxldCBpID0gMCwgc3RhcnQgPSBcImFcIi5jaGFyQ29kZUF0KDApLCBsaW1pdCA9IFwielwiLmNoYXJDb2RlQXQoMCk7IGkgKyBzdGFydCA8PSBsaW1pdDsgaSsrKSB7XG4gIGNvbnN0IGNoYXIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKGkgKyBzdGFydCk7XG4gIGNvbnN0IGluZGV4ID0gaSArIDI2O1xuICBhbHBoYWJldEJ5RW5jb2RpbmdbY2hhcl0gPSBpbmRleDtcbiAgYWxwaGFiZXRCeVZhbHVlW2luZGV4XSA9IGNoYXI7XG59XG5cbmZvciAobGV0IGkgPSAwOyBpIDwgMTA7IGkrKykge1xuICBhbHBoYWJldEJ5RW5jb2RpbmdbaS50b1N0cmluZygxMCldID0gaSArIDUyO1xuICBjb25zdCBjaGFyID0gaS50b1N0cmluZygxMCk7XG4gIGNvbnN0IGluZGV4ID0gaSArIDUyO1xuICBhbHBoYWJldEJ5RW5jb2RpbmdbY2hhcl0gPSBpbmRleDtcbiAgYWxwaGFiZXRCeVZhbHVlW2luZGV4XSA9IGNoYXI7XG59XG5cbmFscGhhYmV0QnlFbmNvZGluZ1tcIitcIl0gPSA2MjtcbmFscGhhYmV0QnlWYWx1ZVs2Ml0gPSBcIitcIjtcbmFscGhhYmV0QnlFbmNvZGluZ1tcIi9cIl0gPSA2MztcbmFscGhhYmV0QnlWYWx1ZVs2M10gPSBcIi9cIjtcblxuY29uc3QgYml0c1BlckxldHRlciA9IDY7XG5jb25zdCBiaXRzUGVyQnl0ZSA9IDg7XG5jb25zdCBtYXhMZXR0ZXJWYWx1ZSA9IDBiMTExMTExO1xuXG4vKipcbiAqIENvbnZlcnRzIGEgYmFzZS02NCBlbmNvZGVkIHN0cmluZyB0byBhIFVpbnQ4QXJyYXkgb2YgYnl0ZXMuXG4gKlxuICogQHBhcmFtIGlucHV0IFRoZSBiYXNlLTY0IGVuY29kZWQgc3RyaW5nXG4gKlxuICogQHNlZSBodHRwczovL3Rvb2xzLmlldGYub3JnL2h0bWwvcmZjNDY0OCNzZWN0aW9uLTRcbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGZyb21CYXNlNjQoaW5wdXQ6IHN0cmluZyk6IFVpbnQ4QXJyYXkge1xuICBsZXQgdG90YWxCeXRlTGVuZ3RoID0gKGlucHV0Lmxlbmd0aCAvIDQpICogMztcbiAgaWYgKGlucHV0LnN1YnN0cigtMikgPT09IFwiPT1cIikge1xuICAgIHRvdGFsQnl0ZUxlbmd0aCAtPSAyO1xuICB9IGVsc2UgaWYgKGlucHV0LnN1YnN0cigtMSkgPT09IFwiPVwiKSB7XG4gICAgdG90YWxCeXRlTGVuZ3RoLS07XG4gIH1cbiAgY29uc3Qgb3V0ID0gbmV3IEFycmF5QnVmZmVyKHRvdGFsQnl0ZUxlbmd0aCk7XG4gIGNvbnN0IGRhdGFWaWV3ID0gbmV3IERhdGFWaWV3KG91dCk7XG4gIGZvciAobGV0IGkgPSAwOyBpIDwgaW5wdXQubGVuZ3RoOyBpICs9IDQpIHtcbiAgICBsZXQgYml0cyA9IDA7XG4gICAgbGV0IGJpdExlbmd0aCA9IDA7XG4gICAgZm9yIChsZXQgaiA9IGksIGxpbWl0ID0gaSArIDM7IGogPD0gbGltaXQ7IGorKykge1xuICAgICAgaWYgKGlucHV0W2pdICE9PSBcIj1cIikge1xuICAgICAgICBiaXRzIHw9IGFscGhhYmV0QnlFbmNvZGluZ1tpbnB1dFtqXV0gPDwgKChsaW1pdCAtIGopICogYml0c1BlckxldHRlcik7XG4gICAgICAgIGJpdExlbmd0aCArPSBiaXRzUGVyTGV0dGVyO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgYml0cyA+Pj0gYml0c1BlckxldHRlcjtcbiAgICAgIH1cbiAgICB9XG5cbiAgICBjb25zdCBjaHVua09mZnNldCA9IChpIC8gNCkgKiAzO1xuICAgIGJpdHMgPj49IGJpdExlbmd0aCAlIGJpdHNQZXJCeXRlO1xuICAgIGNvbnN0IGJ5dGVMZW5ndGggPSBNYXRoLmZsb29yKGJpdExlbmd0aCAvIGJpdHNQZXJCeXRlKTtcbiAgICBmb3IgKGxldCBrID0gMDsgayA8IGJ5dGVMZW5ndGg7IGsrKykge1xuICAgICAgY29uc3Qgb2Zmc2V0ID0gKGJ5dGVMZW5ndGggLSBrIC0gMSkgKiBiaXRzUGVyQnl0ZTtcbiAgICAgIGRhdGFWaWV3LnNldFVpbnQ4KGNodW5rT2Zmc2V0ICsgaywgKGJpdHMgJiAoMjU1IDw8IG9mZnNldCkpID4+IG9mZnNldCk7XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIG5ldyBVaW50OEFycmF5KG91dCk7XG59XG5cbi8qKlxuICogQ29udmVydHMgYSBVaW50OEFycmF5IG9mIGJpbmFyeSBkYXRhIHRvIGEgYmFzZS02NCBlbmNvZGVkIHN0cmluZy5cbiAqXG4gKiBAcGFyYW0gaW5wdXQgVGhlIGJpbmFyeSBkYXRhIHRvIGVuY29kZVxuICpcbiAqIEBzZWUgaHR0cHM6Ly90b29scy5pZXRmLm9yZy9odG1sL3JmYzQ2NDgjc2VjdGlvbi00XG4gKi9cbmV4cG9ydCBmdW5jdGlvbiB0b0Jhc2U2NChpbnB1dDogVWludDhBcnJheSk6IHN0cmluZyB7XG4gIGxldCBzdHIgPSBcIlwiO1xuICBmb3IgKGxldCBpID0gMDsgaSA8IGlucHV0Lmxlbmd0aDsgaSArPSAzKSB7XG4gICAgbGV0IGJpdHMgPSAwO1xuICAgIGxldCBiaXRMZW5ndGggPSAwO1xuICAgIGZvciAobGV0IGogPSBpLCBsaW1pdCA9IE1hdGgubWluKGkgKyAzLCBpbnB1dC5sZW5ndGgpOyBqIDwgbGltaXQ7IGorKykge1xuICAgICAgYml0cyB8PSBpbnB1dFtqXSA8PCAoKGxpbWl0IC0gaiAtIDEpICogYml0c1BlckJ5dGUpO1xuICAgICAgYml0TGVuZ3RoICs9IGJpdHNQZXJCeXRlO1xuICAgIH1cblxuICAgIGNvbnN0IGJpdENsdXN0ZXJDb3VudCA9IE1hdGguY2VpbChiaXRMZW5ndGggLyBiaXRzUGVyTGV0dGVyKTtcbiAgICBiaXRzIDw8PSBiaXRDbHVzdGVyQ291bnQgKiBiaXRzUGVyTGV0dGVyIC0gYml0TGVuZ3RoO1xuICAgIGZvciAobGV0IGsgPSAxOyBrIDw9IGJpdENsdXN0ZXJDb3VudDsgaysrKSB7XG4gICAgICBjb25zdCBvZmZzZXQgPSAoYml0Q2x1c3RlckNvdW50IC0gaykgKiBiaXRzUGVyTGV0dGVyO1xuICAgICAgc3RyICs9IGFscGhhYmV0QnlWYWx1ZVsoYml0cyAmIChtYXhMZXR0ZXJWYWx1ZSA8PCBvZmZzZXQpKSA+PiBvZmZzZXRdO1xuICAgIH1cblxuICAgIHN0ciArPSBcIj09XCIuc2xpY2UoMCwgNCAtIGJpdENsdXN0ZXJDb3VudCk7XG4gIH1cblxuICByZXR1cm4gc3RyO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-base64-browser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js": /*!*************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js ***! \*************************************************************************/ /*! exports provided: calculateBodyLength */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"calculateBodyLength\", function() { return calculateBodyLength; });\nfunction calculateBodyLength(body) {\n if (typeof body === \"string\") {\n var len = body.length;\n for (var i = len - 1; i >= 0; i--) {\n var code = body.charCodeAt(i);\n if (code > 0x7f && code <= 0x7ff)\n len++;\n else if (code > 0x7ff && code <= 0xffff)\n len += 2;\n }\n return len;\n }\n else if (typeof body.byteLength === \"number\") {\n // handles Uint8Array, ArrayBuffer, Buffer, and ArrayBufferView\n return body.byteLength;\n }\n else if (typeof body.size === \"number\") {\n // handles browser File object\n return body.size;\n }\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxVQUFVLG1CQUFtQixDQUFDLElBQVM7SUFDM0MsSUFBSSxPQUFPLElBQUksS0FBSyxRQUFRLEVBQUU7UUFDNUIsSUFBSSxHQUFHLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQztRQUV0QixLQUFLLElBQUksQ0FBQyxHQUFHLEdBQUcsR0FBRyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRTtZQUNqQyxJQUFNLElBQUksR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ2hDLElBQUksSUFBSSxHQUFHLElBQUksSUFBSSxJQUFJLElBQUksS0FBSztnQkFBRSxHQUFHLEVBQUUsQ0FBQztpQkFDbkMsSUFBSSxJQUFJLEdBQUcsS0FBSyxJQUFJLElBQUksSUFBSSxNQUFNO2dCQUFFLEdBQUcsSUFBSSxDQUFDLENBQUM7U0FDbkQ7UUFFRCxPQUFPLEdBQUcsQ0FBQztLQUNaO1NBQU0sSUFBSSxPQUFPLElBQUksQ0FBQyxVQUFVLEtBQUssUUFBUSxFQUFFO1FBQzlDLCtEQUErRDtRQUMvRCxPQUFPLElBQUksQ0FBQyxVQUFVLENBQUM7S0FDeEI7U0FBTSxJQUFJLE9BQU8sSUFBSSxDQUFDLElBQUksS0FBSyxRQUFRLEVBQUU7UUFDeEMsOEJBQThCO1FBQzlCLE9BQU8sSUFBSSxDQUFDLElBQUksQ0FBQztLQUNsQjtBQUNILENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZnVuY3Rpb24gY2FsY3VsYXRlQm9keUxlbmd0aChib2R5OiBhbnkpOiBudW1iZXIgfCB1bmRlZmluZWQge1xuICBpZiAodHlwZW9mIGJvZHkgPT09IFwic3RyaW5nXCIpIHtcbiAgICBsZXQgbGVuID0gYm9keS5sZW5ndGg7XG5cbiAgICBmb3IgKGxldCBpID0gbGVuIC0gMTsgaSA+PSAwOyBpLS0pIHtcbiAgICAgIGNvbnN0IGNvZGUgPSBib2R5LmNoYXJDb2RlQXQoaSk7XG4gICAgICBpZiAoY29kZSA+IDB4N2YgJiYgY29kZSA8PSAweDdmZikgbGVuKys7XG4gICAgICBlbHNlIGlmIChjb2RlID4gMHg3ZmYgJiYgY29kZSA8PSAweGZmZmYpIGxlbiArPSAyO1xuICAgIH1cblxuICAgIHJldHVybiBsZW47XG4gIH0gZWxzZSBpZiAodHlwZW9mIGJvZHkuYnl0ZUxlbmd0aCA9PT0gXCJudW1iZXJcIikge1xuICAgIC8vIGhhbmRsZXMgVWludDhBcnJheSwgQXJyYXlCdWZmZXIsIEJ1ZmZlciwgYW5kIEFycmF5QnVmZmVyVmlld1xuICAgIHJldHVybiBib2R5LmJ5dGVMZW5ndGg7XG4gIH0gZWxzZSBpZiAodHlwZW9mIGJvZHkuc2l6ZSA9PT0gXCJudW1iZXJcIikge1xuICAgIC8vIGhhbmRsZXMgYnJvd3NlciBGaWxlIG9iamVjdFxuICAgIHJldHVybiBib2R5LnNpemU7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-body-length-browser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-buffer-from/dist/es/index.js": /*!*****************************************************************!*\ !*** ./node_modules/@aws-sdk/util-buffer-from/dist/es/index.js ***! \*****************************************************************/ /*! exports provided: fromArrayBuffer, fromString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromArrayBuffer\", function() { return fromArrayBuffer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromString\", function() { return fromString; });\n/* harmony import */ var _aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/is-array-buffer */ \"./node_modules/@aws-sdk/is-array-buffer/dist/es/index.js\");\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! buffer */ \"./node_modules/buffer/index.js\");\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(buffer__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar fromArrayBuffer = function (input, offset, length) {\n if (offset === void 0) { offset = 0; }\n if (length === void 0) { length = input.byteLength - offset; }\n if (!Object(_aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_0__[\"isArrayBuffer\"])(input)) {\n throw new TypeError(\"The \\\"input\\\" argument must be ArrayBuffer. Received type \" + typeof input + \" (\" + input + \")\");\n }\n return buffer__WEBPACK_IMPORTED_MODULE_1__[\"Buffer\"].from(input, offset, length);\n};\nvar fromString = function (input, encoding) {\n if (typeof input !== \"string\") {\n throw new TypeError(\"The \\\"input\\\" argument must be of type string. Received type \" + typeof input + \" (\" + input + \")\");\n }\n return encoding ? buffer__WEBPACK_IMPORTED_MODULE_1__[\"Buffer\"].from(input, encoding) : buffer__WEBPACK_IMPORTED_MODULE_1__[\"Buffer\"].from(input);\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxNQUFNLEVBQUUsTUFBTSxRQUFRLENBQUM7QUFFaEMsTUFBTSxDQUFDLElBQU0sZUFBZSxHQUFHLFVBQUMsS0FBa0IsRUFBRSxNQUFVLEVBQUUsTUFBMEM7SUFBdEQsdUJBQUEsRUFBQSxVQUFVO0lBQUUsdUJBQUEsRUFBQSxTQUFpQixLQUFLLENBQUMsVUFBVSxHQUFHLE1BQU07SUFDeEcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsRUFBRTtRQUN6QixNQUFNLElBQUksU0FBUyxDQUFDLCtEQUEyRCxPQUFPLEtBQUssVUFBSyxLQUFLLE1BQUcsQ0FBQyxDQUFDO0tBQzNHO0lBRUQsT0FBTyxNQUFNLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSxDQUFDLENBQUM7QUFDNUMsQ0FBQyxDQUFDO0FBSUYsTUFBTSxDQUFDLElBQU0sVUFBVSxHQUFHLFVBQUMsS0FBYSxFQUFFLFFBQXlCO0lBQ2pFLElBQUksT0FBTyxLQUFLLEtBQUssUUFBUSxFQUFFO1FBQzdCLE1BQU0sSUFBSSxTQUFTLENBQUMsa0VBQThELE9BQU8sS0FBSyxVQUFLLEtBQUssTUFBRyxDQUFDLENBQUM7S0FDOUc7SUFFRCxPQUFPLFFBQVEsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7QUFDdEUsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgaXNBcnJheUJ1ZmZlciB9IGZyb20gXCJAYXdzLXNkay9pcy1hcnJheS1idWZmZXJcIjtcbmltcG9ydCB7IEJ1ZmZlciB9IGZyb20gXCJidWZmZXJcIjtcblxuZXhwb3J0IGNvbnN0IGZyb21BcnJheUJ1ZmZlciA9IChpbnB1dDogQXJyYXlCdWZmZXIsIG9mZnNldCA9IDAsIGxlbmd0aDogbnVtYmVyID0gaW5wdXQuYnl0ZUxlbmd0aCAtIG9mZnNldCk6IEJ1ZmZlciA9PiB7XG4gIGlmICghaXNBcnJheUJ1ZmZlcihpbnB1dCkpIHtcbiAgICB0aHJvdyBuZXcgVHlwZUVycm9yKGBUaGUgXCJpbnB1dFwiIGFyZ3VtZW50IG11c3QgYmUgQXJyYXlCdWZmZXIuIFJlY2VpdmVkIHR5cGUgJHt0eXBlb2YgaW5wdXR9ICgke2lucHV0fSlgKTtcbiAgfVxuXG4gIHJldHVybiBCdWZmZXIuZnJvbShpbnB1dCwgb2Zmc2V0LCBsZW5ndGgpO1xufTtcblxuZXhwb3J0IHR5cGUgU3RyaW5nRW5jb2RpbmcgPSBcImFzY2lpXCIgfCBcInV0ZjhcIiB8IFwidXRmMTZsZVwiIHwgXCJ1Y3MyXCIgfCBcImJhc2U2NFwiIHwgXCJsYXRpbjFcIiB8IFwiYmluYXJ5XCIgfCBcImhleFwiO1xuXG5leHBvcnQgY29uc3QgZnJvbVN0cmluZyA9IChpbnB1dDogc3RyaW5nLCBlbmNvZGluZz86IFN0cmluZ0VuY29kaW5nKTogQnVmZmVyID0+IHtcbiAgaWYgKHR5cGVvZiBpbnB1dCAhPT0gXCJzdHJpbmdcIikge1xuICAgIHRocm93IG5ldyBUeXBlRXJyb3IoYFRoZSBcImlucHV0XCIgYXJndW1lbnQgbXVzdCBiZSBvZiB0eXBlIHN0cmluZy4gUmVjZWl2ZWQgdHlwZSAke3R5cGVvZiBpbnB1dH0gKCR7aW5wdXR9KWApO1xuICB9XG5cbiAgcmV0dXJuIGVuY29kaW5nID8gQnVmZmVyLmZyb20oaW5wdXQsIGVuY29kaW5nKSA6IEJ1ZmZlci5mcm9tKGlucHV0KTtcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-buffer-from/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-config-provider/dist-es/booleanSelector.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-config-provider/dist-es/booleanSelector.js ***! \*******************************************************************************/ /*! exports provided: SelectorType, booleanSelector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SelectorType\", function() { return SelectorType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"booleanSelector\", function() { return booleanSelector; });\nvar SelectorType;\n(function (SelectorType) {\n SelectorType[\"ENV\"] = \"env\";\n SelectorType[\"CONFIG\"] = \"shared config entry\";\n})(SelectorType || (SelectorType = {}));\nvar booleanSelector = function (obj, key, type) {\n if (!(key in obj))\n return undefined;\n if (obj[key] === \"true\")\n return true;\n if (obj[key] === \"false\")\n return false;\n throw new Error(\"Cannot load \".concat(type, \" \\\"\").concat(key, \"\\\". Expected \\\"true\\\" or \\\"false\\\", got \").concat(obj[key], \".\"));\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-config-provider/dist-es/booleanSelector.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-config-provider/dist-es/index.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/util-config-provider/dist-es/index.js ***! \*********************************************************************/ /*! exports provided: SelectorType, booleanSelector */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _booleanSelector__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./booleanSelector */ \"./node_modules/@aws-sdk/util-config-provider/dist-es/booleanSelector.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectorType\", function() { return _booleanSelector__WEBPACK_IMPORTED_MODULE_0__[\"SelectorType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"booleanSelector\", function() { return _booleanSelector__WEBPACK_IMPORTED_MODULE_0__[\"booleanSelector\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-config-provider/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-create-request/dist/es/index.js": /*!********************************************************************!*\ !*** ./node_modules/@aws-sdk/util-create-request/dist/es/index.js ***! \********************************************************************/ /*! exports provided: createRequest */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createRequest\", function() { return createRequest; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\nfunction createRequest(client, command) {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(this, void 0, void 0, function () {\n var interceptMiddleware, clientStack, handler;\n var _this = this;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n interceptMiddleware = function (next) { return function (args) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(_this, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2 /*return*/, { output: { request: args.request }, response: undefined }];\n });\n }); }; };\n clientStack = client.middlewareStack.clone();\n // @ts-ignore: add middleware to the last of 'build' step\n clientStack.add(interceptMiddleware, {\n step: \"build\",\n priority: \"low\",\n });\n handler = command.resolveMiddleware(clientStack, client.config, undefined);\n return [4 /*yield*/, handler(command).then(function (output) { return output.output.request; })];\n case 1: \n // @ts-ignore\n return [2 /*return*/, _a.sent()];\n }\n });\n });\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUdBLE1BQU0sVUFBZ0IsYUFBYSxDQUtqQyxNQUF5RCxFQUN6RCxPQUE2RTs7Ozs7OztvQkFHdkUsbUJBQW1CLEdBQTJDLFVBQUMsSUFBSSxJQUFLLE9BQUEsVUFBTyxJQUFJOzs0QkFDdkYsc0JBQU8sRUFBRSxNQUFNLEVBQUUsRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sRUFBUyxFQUFFLFFBQVEsRUFBRSxTQUFTLEVBQUUsRUFBQzs7eUJBQzFFLEVBRjZFLENBRTdFLENBQUM7b0JBQ0ksV0FBVyxHQUFHLE1BQU0sQ0FBQyxlQUFlLENBQUMsS0FBSyxFQUFFLENBQUM7b0JBRW5ELHlEQUF5RDtvQkFDekQsV0FBVyxDQUFDLEdBQUcsQ0FBQyxtQkFBbUIsRUFBRTt3QkFDbkMsSUFBSSxFQUFFLE9BQU87d0JBQ2IsUUFBUSxFQUFFLEtBQUs7cUJBQ2hCLENBQUMsQ0FBQztvQkFFRyxPQUFPLEdBQUcsT0FBTyxDQUFDLGlCQUFpQixDQUFDLFdBQVcsRUFBRSxNQUFNLENBQUMsTUFBTSxFQUFFLFNBQVMsQ0FBQyxDQUFDO29CQUcxRSxxQkFBTSxPQUFPLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQUMsTUFBTSxJQUFLLE9BQUEsTUFBTSxDQUFDLE1BQU0sQ0FBQyxPQUFPLEVBQXJCLENBQXFCLENBQUMsRUFBQTs7Z0JBRHJFLGFBQWE7Z0JBQ2Isc0JBQU8sU0FBOEQsRUFBQzs7OztDQUN2RSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENsaWVudCwgQ29tbWFuZCB9IGZyb20gXCJAYXdzLXNkay9zbWl0aHktY2xpZW50XCI7XG5pbXBvcnQgeyBCdWlsZE1pZGRsZXdhcmUsIEh0dHBSZXF1ZXN0LCBNZXRhZGF0YUJlYXJlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgYXN5bmMgZnVuY3Rpb24gY3JlYXRlUmVxdWVzdDxcbiAgSW5wdXRUeXBlc1VuaW9uIGV4dGVuZHMgb2JqZWN0LFxuICBJbnB1dFR5cGUgZXh0ZW5kcyBJbnB1dFR5cGVzVW5pb24sXG4gIE91dHB1dFR5cGUgZXh0ZW5kcyBNZXRhZGF0YUJlYXJlciA9IE1ldGFkYXRhQmVhcmVyXG4+KFxuICBjbGllbnQ6IENsaWVudDxhbnksIElucHV0VHlwZXNVbmlvbiwgTWV0YWRhdGFCZWFyZXIsIGFueT4sXG4gIGNvbW1hbmQ6IENvbW1hbmQ8SW5wdXRUeXBlLCBPdXRwdXRUeXBlLCBhbnksIElucHV0VHlwZXNVbmlvbiwgTWV0YWRhdGFCZWFyZXI+XG4pOiBQcm9taXNlPEh0dHBSZXF1ZXN0PiB7XG4gIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbm8tdW51c2VkLXZhcnNcbiAgY29uc3QgaW50ZXJjZXB0TWlkZGxld2FyZTogQnVpbGRNaWRkbGV3YXJlPElucHV0VHlwZSwgT3V0cHV0VHlwZT4gPSAobmV4dCkgPT4gYXN5bmMgKGFyZ3MpID0+IHtcbiAgICByZXR1cm4geyBvdXRwdXQ6IHsgcmVxdWVzdDogYXJncy5yZXF1ZXN0IH0gYXMgYW55LCByZXNwb25zZTogdW5kZWZpbmVkIH07XG4gIH07XG4gIGNvbnN0IGNsaWVudFN0YWNrID0gY2xpZW50Lm1pZGRsZXdhcmVTdGFjay5jbG9uZSgpO1xuXG4gIC8vIEB0cy1pZ25vcmU6IGFkZCBtaWRkbGV3YXJlIHRvIHRoZSBsYXN0IG9mICdidWlsZCcgc3RlcFxuICBjbGllbnRTdGFjay5hZGQoaW50ZXJjZXB0TWlkZGxld2FyZSwge1xuICAgIHN0ZXA6IFwiYnVpbGRcIixcbiAgICBwcmlvcml0eTogXCJsb3dcIixcbiAgfSk7XG5cbiAgY29uc3QgaGFuZGxlciA9IGNvbW1hbmQucmVzb2x2ZU1pZGRsZXdhcmUoY2xpZW50U3RhY2ssIGNsaWVudC5jb25maWcsIHVuZGVmaW5lZCk7XG5cbiAgLy8gQHRzLWlnbm9yZVxuICByZXR1cm4gYXdhaXQgaGFuZGxlcihjb21tYW5kKS50aGVuKChvdXRwdXQpID0+IG91dHB1dC5vdXRwdXQucmVxdWVzdCk7XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-create-request/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/constants.js": /*!*******************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/constants.js ***! \*******************************************************************************/ /*! exports provided: DEFAULTS_MODE_OPTIONS */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULTS_MODE_OPTIONS\", function() { return DEFAULTS_MODE_OPTIONS; });\nvar DEFAULTS_MODE_OPTIONS = [\"in-region\", \"cross-region\", \"mobile\", \"standard\", \"legacy\"];\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/constants.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/index.js": /*!***************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/index.js ***! \***************************************************************************/ /*! exports provided: resolveDefaultsModeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _resolveDefaultsModeConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./resolveDefaultsModeConfig */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resolveDefaultsModeConfig\", function() { return _resolveDefaultsModeConfig__WEBPACK_IMPORTED_MODULE_0__[\"resolveDefaultsModeConfig\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js ***! \***********************************************************************************************/ /*! exports provided: resolveDefaultsModeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resolveDefaultsModeConfig\", function() { return resolveDefaultsModeConfig; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/property-provider */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/index.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! bowser */ \"./node_modules/bowser/es5.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(bowser__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./constants */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/constants.js\");\n\n\n\n\nvar resolveDefaultsModeConfig = function (_a) {\n var _b = _a === void 0 ? {} : _a, defaultsMode = _b.defaultsMode;\n return Object(_aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_1__[\"memoize\"])(function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var mode, _a;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!(typeof defaultsMode === \"function\")) return [3, 2];\n return [4, defaultsMode()];\n case 1:\n _a = _b.sent();\n return [3, 3];\n case 2:\n _a = defaultsMode;\n _b.label = 3;\n case 3:\n mode = _a;\n switch (mode === null || mode === void 0 ? void 0 : mode.toLowerCase()) {\n case \"auto\":\n return [2, Promise.resolve(isMobileBrowser() ? \"mobile\" : \"standard\")];\n case \"mobile\":\n case \"in-region\":\n case \"cross-region\":\n case \"standard\":\n case \"legacy\":\n return [2, Promise.resolve(mode === null || mode === void 0 ? void 0 : mode.toLocaleLowerCase())];\n case undefined:\n return [2, Promise.resolve(\"legacy\")];\n default:\n throw new Error(\"Invalid parameter for \\\"defaultsMode\\\", expect \".concat(_constants__WEBPACK_IMPORTED_MODULE_3__[\"DEFAULTS_MODE_OPTIONS\"].join(\", \"), \", got \").concat(mode));\n }\n return [2];\n }\n });\n }); });\n};\nvar isMobileBrowser = function () {\n var _a, _b;\n var parsedUA = typeof window !== \"undefined\" && ((_a = window === null || window === void 0 ? void 0 : window.navigator) === null || _a === void 0 ? void 0 : _a.userAgent)\n ? bowser__WEBPACK_IMPORTED_MODULE_2___default.a.parse(window.navigator.userAgent)\n : undefined;\n var platform = (_b = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.platform) === null || _b === void 0 ? void 0 : _b.type;\n return platform === \"tablet\" || platform === \"mobile\";\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js": /*!**************************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js ***! \**************************************************************************************************************************************/ /*! exports provided: CredentialsProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CredentialsProviderError\", function() { return CredentialsProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n\n\nvar CredentialsProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(CredentialsProviderError, _super);\n function CredentialsProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message, tryNextLink) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"CredentialsProviderError\";\n Object.setPrototypeOf(_this, CredentialsProviderError.prototype);\n return _this;\n }\n return CredentialsProviderError;\n}(_ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js": /*!***************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js ***! \***************************************************************************************************************************/ /*! exports provided: ProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return ProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/tslib/tslib.es6.js\");\n\nvar ProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(ProviderError, _super);\n function ProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"ProviderError\";\n Object.setPrototypeOf(_this, ProviderError.prototype);\n return _this;\n }\n ProviderError.from = function (error, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n return Object.assign(new this(error.message, tryNextLink), error);\n };\n return ProviderError;\n}(Error));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js": /*!********************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js ***! \********************************************************************************************************************************/ /*! exports provided: TokenProviderError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TokenProviderError\", function() { return TokenProviderError; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n\n\nvar TokenProviderError = (function (_super) {\n Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"])(TokenProviderError, _super);\n function TokenProviderError(message, tryNextLink) {\n if (tryNextLink === void 0) { tryNextLink = true; }\n var _this = _super.call(this, message, tryNextLink) || this;\n _this.tryNextLink = tryNextLink;\n _this.name = \"TokenProviderError\";\n Object.setPrototypeOf(_this, TokenProviderError.prototype);\n return _this;\n }\n return TokenProviderError;\n}(_ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]));\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/chain.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/chain.js ***! \*******************************************************************************************************************/ /*! exports provided: chain */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return chain; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n\n\nfunction chain() {\n var providers = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n providers[_i] = arguments[_i];\n }\n return function () {\n var e_1, _a;\n var promise = Promise.reject(new _ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"](\"No providers in chain\"));\n var _loop_1 = function (provider) {\n promise = promise.catch(function (err) {\n if (err === null || err === void 0 ? void 0 : err.tryNextLink) {\n return provider();\n }\n throw err;\n });\n };\n try {\n for (var providers_1 = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(providers), providers_1_1 = providers_1.next(); !providers_1_1.done; providers_1_1 = providers_1.next()) {\n var provider = providers_1_1.value;\n _loop_1(provider);\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (providers_1_1 && !providers_1_1.done && (_a = providers_1.return)) _a.call(providers_1);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return promise;\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/chain.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js": /*!************************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js ***! \************************************************************************************************************************/ /*! exports provided: fromStatic */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return fromStatic; });\nvar fromStatic = function (staticValue) {\n return function () {\n return Promise.resolve(staticValue);\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/index.js": /*!*******************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/index.js ***! \*******************************************************************************************************************/ /*! exports provided: CredentialsProviderError, ProviderError, TokenProviderError, chain, fromStatic, memoize */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _CredentialsProviderError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CredentialsProviderError */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CredentialsProviderError\", function() { return _CredentialsProviderError__WEBPACK_IMPORTED_MODULE_0__[\"CredentialsProviderError\"]; });\n\n/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProviderError\", function() { return _ProviderError__WEBPACK_IMPORTED_MODULE_1__[\"ProviderError\"]; });\n\n/* harmony import */ var _TokenProviderError__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./TokenProviderError */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TokenProviderError\", function() { return _TokenProviderError__WEBPACK_IMPORTED_MODULE_2__[\"TokenProviderError\"]; });\n\n/* harmony import */ var _chain__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./chain */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/chain.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"chain\", function() { return _chain__WEBPACK_IMPORTED_MODULE_3__[\"chain\"]; });\n\n/* harmony import */ var _fromStatic__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./fromStatic */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fromStatic\", function() { return _fromStatic__WEBPACK_IMPORTED_MODULE_4__[\"fromStatic\"]; });\n\n/* harmony import */ var _memoize__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./memoize */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/memoize.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return _memoize__WEBPACK_IMPORTED_MODULE_5__[\"memoize\"]; });\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/memoize.js": /*!*********************************************************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/memoize.js ***! \*********************************************************************************************************************/ /*! exports provided: memoize */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return memoize; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/tslib/tslib.es6.js\");\n\nvar memoize = function (provider, isExpired, requiresRefresh) {\n var resolved;\n var pending;\n var hasResult;\n var isConstant = false;\n var coalesceProvider = function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!pending) {\n pending = provider();\n }\n _a.label = 1;\n case 1:\n _a.trys.push([1, , 3, 4]);\n return [4, pending];\n case 2:\n resolved = _a.sent();\n hasResult = true;\n isConstant = false;\n return [3, 4];\n case 3:\n pending = undefined;\n return [7];\n case 4: return [2, resolved];\n }\n });\n }); };\n if (isExpired === undefined) {\n return function (options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(!hasResult || (options === null || options === void 0 ? void 0 : options.forceRefresh))) return [3, 2];\n return [4, coalesceProvider()];\n case 1:\n resolved = _a.sent();\n _a.label = 2;\n case 2: return [2, resolved];\n }\n });\n }); };\n }\n return function (options) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!(!hasResult || (options === null || options === void 0 ? void 0 : options.forceRefresh))) return [3, 2];\n return [4, coalesceProvider()];\n case 1:\n resolved = _a.sent();\n _a.label = 2;\n case 2:\n if (isConstant) {\n return [2, resolved];\n }\n if (requiresRefresh && !requiresRefresh(resolved)) {\n isConstant = true;\n return [2, resolved];\n }\n if (!isExpired(resolved)) return [3, 4];\n return [4, coalesceProvider()];\n case 3:\n _a.sent();\n return [2, resolved];\n case 4: return [2, resolved];\n }\n });\n }); };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/@aws-sdk/property-provider/dist-es/memoize.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/tslib/tslib.es6.js": /*!******************************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/tslib/tslib.es6.js ***! \******************************************************************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__esDecorate\", function() { return __esDecorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__runInitializers\", function() { return __runInitializers; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__propKey\", function() { return __propKey; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__setFunctionName\", function() { return __setFunctionName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArray\", function() { return __spreadArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldIn\", function() { return __classPrivateFieldIn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__addDisposableResource\", function() { return __addDisposableResource; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__disposeResources\", function() { return __disposeResources; });\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nfunction __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nfunction __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nfunction __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nvar __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nfunction __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nfunction __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n 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\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n 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\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nfunction __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nfunction __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nfunction __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n});\r\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-defaults-mode-browser/node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-format-url/dist/es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/util-format-url/dist/es/index.js ***! \****************************************************************/ /*! exports provided: formatUrl */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"formatUrl\", function() { return formatUrl; });\n/* harmony import */ var _aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/querystring-builder */ \"./node_modules/@aws-sdk/querystring-builder/dist/es/index.js\");\n\nfunction formatUrl(request) {\n var port = request.port, query = request.query;\n var protocol = request.protocol, path = request.path, hostname = request.hostname;\n if (protocol && protocol.substr(-1) !== \":\") {\n protocol += \":\";\n }\n if (port) {\n hostname += \":\" + port;\n }\n if (path && path.charAt(0) !== \"/\") {\n path = \"/\" + path;\n }\n var queryString = query ? Object(_aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_0__[\"buildQueryString\"])(query) : \"\";\n if (queryString && queryString[0] !== \"?\") {\n queryString = \"?\" + queryString;\n }\n return protocol + \"//\" + hostname + path + queryString;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFHaEUsTUFBTSxVQUFVLFNBQVMsQ0FBQyxPQUFnRDtJQUNoRSxJQUFBLElBQUksR0FBWSxPQUFPLEtBQW5CLEVBQUUsS0FBSyxHQUFLLE9BQU8sTUFBWixDQUFhO0lBQzFCLElBQUEsUUFBUSxHQUFxQixPQUFPLFNBQTVCLEVBQUUsSUFBSSxHQUFlLE9BQU8sS0FBdEIsRUFBRSxRQUFRLEdBQUssT0FBTyxTQUFaLENBQWE7SUFDM0MsSUFBSSxRQUFRLElBQUksUUFBUSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLEdBQUcsRUFBRTtRQUMzQyxRQUFRLElBQUksR0FBRyxDQUFDO0tBQ2pCO0lBQ0QsSUFBSSxJQUFJLEVBQUU7UUFDUixRQUFRLElBQUksTUFBSSxJQUFNLENBQUM7S0FDeEI7SUFDRCxJQUFJLElBQUksSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxLQUFLLEdBQUcsRUFBRTtRQUNsQyxJQUFJLEdBQUcsTUFBSSxJQUFNLENBQUM7S0FDbkI7SUFDRCxJQUFJLFdBQVcsR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLGdCQUFnQixDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUM7SUFDdkQsSUFBSSxXQUFXLElBQUksV0FBVyxDQUFDLENBQUMsQ0FBQyxLQUFLLEdBQUcsRUFBRTtRQUN6QyxXQUFXLEdBQUcsTUFBSSxXQUFhLENBQUM7S0FDakM7SUFDRCxPQUFVLFFBQVEsVUFBSyxRQUFRLEdBQUcsSUFBSSxHQUFHLFdBQWEsQ0FBQztBQUN6RCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYnVpbGRRdWVyeVN0cmluZyB9IGZyb20gXCJAYXdzLXNkay9xdWVyeXN0cmluZy1idWlsZGVyXCI7XG5pbXBvcnQgeyBIdHRwUmVxdWVzdCB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgZnVuY3Rpb24gZm9ybWF0VXJsKHJlcXVlc3Q6IE9taXQ8SHR0cFJlcXVlc3QsIFwiaGVhZGVyc1wiIHwgXCJtZXRob2RcIj4pOiBzdHJpbmcge1xuICBjb25zdCB7IHBvcnQsIHF1ZXJ5IH0gPSByZXF1ZXN0O1xuICBsZXQgeyBwcm90b2NvbCwgcGF0aCwgaG9zdG5hbWUgfSA9IHJlcXVlc3Q7XG4gIGlmIChwcm90b2NvbCAmJiBwcm90b2NvbC5zdWJzdHIoLTEpICE9PSBcIjpcIikge1xuICAgIHByb3RvY29sICs9IFwiOlwiO1xuICB9XG4gIGlmIChwb3J0KSB7XG4gICAgaG9zdG5hbWUgKz0gYDoke3BvcnR9YDtcbiAgfVxuICBpZiAocGF0aCAmJiBwYXRoLmNoYXJBdCgwKSAhPT0gXCIvXCIpIHtcbiAgICBwYXRoID0gYC8ke3BhdGh9YDtcbiAgfVxuICBsZXQgcXVlcnlTdHJpbmcgPSBxdWVyeSA/IGJ1aWxkUXVlcnlTdHJpbmcocXVlcnkpIDogXCJcIjtcbiAgaWYgKHF1ZXJ5U3RyaW5nICYmIHF1ZXJ5U3RyaW5nWzBdICE9PSBcIj9cIikge1xuICAgIHF1ZXJ5U3RyaW5nID0gYD8ke3F1ZXJ5U3RyaW5nfWA7XG4gIH1cbiAgcmV0dXJuIGAke3Byb3RvY29sfS8vJHtob3N0bmFtZX0ke3BhdGh9JHtxdWVyeVN0cmluZ31gO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-format-url/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-hex-encoding/dist/es/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/util-hex-encoding/dist/es/index.js ***! \******************************************************************/ /*! exports provided: fromHex, toHex */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromHex\", function() { return fromHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toHex\", function() { return toHex; });\nvar SHORT_TO_HEX = {};\nvar HEX_TO_SHORT = {};\nfor (var i = 0; i < 256; i++) {\n var encodedByte = i.toString(16).toLowerCase();\n if (encodedByte.length === 1) {\n encodedByte = \"0\" + encodedByte;\n }\n SHORT_TO_HEX[i] = encodedByte;\n HEX_TO_SHORT[encodedByte] = i;\n}\n/**\n * Converts a hexadecimal encoded string to a Uint8Array of bytes.\n *\n * @param encoded The hexadecimal encoded string\n */\nfunction fromHex(encoded) {\n if (encoded.length % 2 !== 0) {\n throw new Error(\"Hex encoded strings must have an even number length\");\n }\n var out = new Uint8Array(encoded.length / 2);\n for (var i = 0; i < encoded.length; i += 2) {\n var encodedByte = encoded.substr(i, 2).toLowerCase();\n if (encodedByte in HEX_TO_SHORT) {\n out[i / 2] = HEX_TO_SHORT[encodedByte];\n }\n else {\n throw new Error(\"Cannot decode unrecognized sequence \" + encodedByte + \" as hexadecimal\");\n }\n }\n return out;\n}\n/**\n * Converts a Uint8Array of binary data to a hexadecimal encoded string.\n *\n * @param bytes The binary data to encode\n */\nfunction toHex(bytes) {\n var out = \"\";\n for (var i = 0; i < bytes.byteLength; i++) {\n out += SHORT_TO_HEX[bytes[i]];\n }\n return out;\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsSUFBTSxZQUFZLEdBQThCLEVBQUUsQ0FBQztBQUNuRCxJQUFNLFlBQVksR0FBOEIsRUFBRSxDQUFDO0FBRW5ELEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxHQUFHLEVBQUUsQ0FBQyxFQUFFLEVBQUU7SUFDNUIsSUFBSSxXQUFXLEdBQUcsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxXQUFXLEVBQUUsQ0FBQztJQUMvQyxJQUFJLFdBQVcsQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFO1FBQzVCLFdBQVcsR0FBRyxNQUFJLFdBQWEsQ0FBQztLQUNqQztJQUVELFlBQVksQ0FBQyxDQUFDLENBQUMsR0FBRyxXQUFXLENBQUM7SUFDOUIsWUFBWSxDQUFDLFdBQVcsQ0FBQyxHQUFHLENBQUMsQ0FBQztDQUMvQjtBQUVEOzs7O0dBSUc7QUFDSCxNQUFNLFVBQVUsT0FBTyxDQUFDLE9BQWU7SUFDckMsSUFBSSxPQUFPLENBQUMsTUFBTSxHQUFHLENBQUMsS0FBSyxDQUFDLEVBQUU7UUFDNUIsTUFBTSxJQUFJLEtBQUssQ0FBQyxxREFBcUQsQ0FBQyxDQUFDO0tBQ3hFO0lBRUQsSUFBTSxHQUFHLEdBQUcsSUFBSSxVQUFVLENBQUMsT0FBTyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQztJQUMvQyxLQUFLLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsT0FBTyxDQUFDLE1BQU0sRUFBRSxDQUFDLElBQUksQ0FBQyxFQUFFO1FBQzFDLElBQU0sV0FBVyxHQUFHLE9BQU8sQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLFdBQVcsRUFBRSxDQUFDO1FBQ3ZELElBQUksV0FBVyxJQUFJLFlBQVksRUFBRTtZQUMvQixHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLFlBQVksQ0FBQyxXQUFXLENBQUMsQ0FBQztTQUN4QzthQUFNO1lBQ0wsTUFBTSxJQUFJLEtBQUssQ0FBQyx5Q0FBdUMsV0FBVyxvQkFBaUIsQ0FBQyxDQUFDO1NBQ3RGO0tBQ0Y7SUFFRCxPQUFPLEdBQUcsQ0FBQztBQUNiLENBQUM7QUFFRDs7OztHQUlHO0FBQ0gsTUFBTSxVQUFVLEtBQUssQ0FBQyxLQUFpQjtJQUNyQyxJQUFJLEdBQUcsR0FBRyxFQUFFLENBQUM7SUFDYixLQUFLLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsS0FBSyxDQUFDLFVBQVUsRUFBRSxDQUFDLEVBQUUsRUFBRTtRQUN6QyxHQUFHLElBQUksWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO0tBQy9CO0lBRUQsT0FBTyxHQUFHLENBQUM7QUFDYixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiY29uc3QgU0hPUlRfVE9fSEVYOiB7IFtrZXk6IG51bWJlcl06IHN0cmluZyB9ID0ge307XG5jb25zdCBIRVhfVE9fU0hPUlQ6IHsgW2tleTogc3RyaW5nXTogbnVtYmVyIH0gPSB7fTtcblxuZm9yIChsZXQgaSA9IDA7IGkgPCAyNTY7IGkrKykge1xuICBsZXQgZW5jb2RlZEJ5dGUgPSBpLnRvU3RyaW5nKDE2KS50b0xvd2VyQ2FzZSgpO1xuICBpZiAoZW5jb2RlZEJ5dGUubGVuZ3RoID09PSAxKSB7XG4gICAgZW5jb2RlZEJ5dGUgPSBgMCR7ZW5jb2RlZEJ5dGV9YDtcbiAgfVxuXG4gIFNIT1JUX1RPX0hFWFtpXSA9IGVuY29kZWRCeXRlO1xuICBIRVhfVE9fU0hPUlRbZW5jb2RlZEJ5dGVdID0gaTtcbn1cblxuLyoqXG4gKiBDb252ZXJ0cyBhIGhleGFkZWNpbWFsIGVuY29kZWQgc3RyaW5nIHRvIGEgVWludDhBcnJheSBvZiBieXRlcy5cbiAqXG4gKiBAcGFyYW0gZW5jb2RlZCBUaGUgaGV4YWRlY2ltYWwgZW5jb2RlZCBzdHJpbmdcbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGZyb21IZXgoZW5jb2RlZDogc3RyaW5nKTogVWludDhBcnJheSB7XG4gIGlmIChlbmNvZGVkLmxlbmd0aCAlIDIgIT09IDApIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoXCJIZXggZW5jb2RlZCBzdHJpbmdzIG11c3QgaGF2ZSBhbiBldmVuIG51bWJlciBsZW5ndGhcIik7XG4gIH1cblxuICBjb25zdCBvdXQgPSBuZXcgVWludDhBcnJheShlbmNvZGVkLmxlbmd0aCAvIDIpO1xuICBmb3IgKGxldCBpID0gMDsgaSA8IGVuY29kZWQubGVuZ3RoOyBpICs9IDIpIHtcbiAgICBjb25zdCBlbmNvZGVkQnl0ZSA9IGVuY29kZWQuc3Vic3RyKGksIDIpLnRvTG93ZXJDYXNlKCk7XG4gICAgaWYgKGVuY29kZWRCeXRlIGluIEhFWF9UT19TSE9SVCkge1xuICAgICAgb3V0W2kgLyAyXSA9IEhFWF9UT19TSE9SVFtlbmNvZGVkQnl0ZV07XG4gICAgfSBlbHNlIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihgQ2Fubm90IGRlY29kZSB1bnJlY29nbml6ZWQgc2VxdWVuY2UgJHtlbmNvZGVkQnl0ZX0gYXMgaGV4YWRlY2ltYWxgKTtcbiAgICB9XG4gIH1cblxuICByZXR1cm4gb3V0O1xufVxuXG4vKipcbiAqIENvbnZlcnRzIGEgVWludDhBcnJheSBvZiBiaW5hcnkgZGF0YSB0byBhIGhleGFkZWNpbWFsIGVuY29kZWQgc3RyaW5nLlxuICpcbiAqIEBwYXJhbSBieXRlcyBUaGUgYmluYXJ5IGRhdGEgdG8gZW5jb2RlXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiB0b0hleChieXRlczogVWludDhBcnJheSk6IHN0cmluZyB7XG4gIGxldCBvdXQgPSBcIlwiO1xuICBmb3IgKGxldCBpID0gMDsgaSA8IGJ5dGVzLmJ5dGVMZW5ndGg7IGkrKykge1xuICAgIG91dCArPSBTSE9SVF9UT19IRVhbYnl0ZXNbaV1dO1xuICB9XG5cbiAgcmV0dXJuIG91dDtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-hex-encoding/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-locate-window/dist-es/index.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/util-locate-window/dist-es/index.js ***! \*******************************************************************/ /*! exports provided: locateWindow */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"locateWindow\", function() { return locateWindow; });\nconst fallbackWindow = {};\nfunction locateWindow() {\n if (typeof window !== \"undefined\") {\n return window;\n }\n else if (typeof self !== \"undefined\") {\n return self;\n }\n return fallbackWindow;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-locate-window/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-middleware/dist-es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/util-middleware/dist-es/index.js ***! \****************************************************************/ /*! exports provided: normalizeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _normalizeProvider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./normalizeProvider */ \"./node_modules/@aws-sdk/util-middleware/dist-es/normalizeProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"normalizeProvider\", function() { return _normalizeProvider__WEBPACK_IMPORTED_MODULE_0__[\"normalizeProvider\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-middleware/dist-es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-middleware/dist-es/normalizeProvider.js": /*!****************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-middleware/dist-es/normalizeProvider.js ***! \****************************************************************************/ /*! exports provided: normalizeProvider */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"normalizeProvider\", function() { return normalizeProvider; });\nvar normalizeProvider = function (input) {\n if (typeof input === \"function\")\n return input;\n var promisified = Promise.resolve(input);\n return function () { return promisified; };\n};\n\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-middleware/dist-es/normalizeProvider.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-uri-escape/dist/es/escape-uri-path.js": /*!**************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-uri-escape/dist/es/escape-uri-path.js ***! \**************************************************************************/ /*! exports provided: escapeUriPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeUriPath\", function() { return escapeUriPath; });\n/* harmony import */ var _escape_uri__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./escape-uri */ \"./node_modules/@aws-sdk/util-uri-escape/dist/es/escape-uri.js\");\n\nvar escapeUriPath = function (uri) { return uri.split(\"/\").map(_escape_uri__WEBPACK_IMPORTED_MODULE_0__[\"escapeUri\"]).join(\"/\"); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNjYXBlLXVyaS1wYXRoLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2VzY2FwZS11cmktcGF0aC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBRXpDLE1BQU0sQ0FBQyxJQUFNLGFBQWEsR0FBRyxVQUFDLEdBQVcsSUFBYSxPQUFBLEdBQUcsQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxDQUFDLFNBQVMsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBdkMsQ0FBdUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGVzY2FwZVVyaSB9IGZyb20gXCIuL2VzY2FwZS11cmlcIjtcblxuZXhwb3J0IGNvbnN0IGVzY2FwZVVyaVBhdGggPSAodXJpOiBzdHJpbmcpOiBzdHJpbmcgPT4gdXJpLnNwbGl0KFwiL1wiKS5tYXAoZXNjYXBlVXJpKS5qb2luKFwiL1wiKTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-uri-escape/dist/es/escape-uri-path.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-uri-escape/dist/es/escape-uri.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/util-uri-escape/dist/es/escape-uri.js ***! \*********************************************************************/ /*! exports provided: escapeUri */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeUri\", function() { return escapeUri; });\nvar escapeUri = function (uri) {\n // AWS percent-encodes some extra non-standard characters in a URI\n return encodeURIComponent(uri).replace(/[!'()*]/g, hexEncode);\n};\nvar hexEncode = function (c) { return \"%\" + c.charCodeAt(0).toString(16).toUpperCase(); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNjYXBlLXVyaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9lc2NhcGUtdXJpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxJQUFNLFNBQVMsR0FBRyxVQUFDLEdBQVc7SUFDbkMsa0VBQWtFO0lBQ2xFLE9BQUEsa0JBQWtCLENBQUMsR0FBRyxDQUFDLENBQUMsT0FBTyxDQUFDLFVBQVUsRUFBRSxTQUFTLENBQUM7QUFBdEQsQ0FBc0QsQ0FBQztBQUV6RCxJQUFNLFNBQVMsR0FBRyxVQUFDLENBQVMsSUFBSyxPQUFBLE1BQUksQ0FBQyxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDLENBQUMsV0FBVyxFQUFJLEVBQWhELENBQWdELENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgZXNjYXBlVXJpID0gKHVyaTogc3RyaW5nKTogc3RyaW5nID0+XG4gIC8vIEFXUyBwZXJjZW50LWVuY29kZXMgc29tZSBleHRyYSBub24tc3RhbmRhcmQgY2hhcmFjdGVycyBpbiBhIFVSSVxuICBlbmNvZGVVUklDb21wb25lbnQodXJpKS5yZXBsYWNlKC9bIScoKSpdL2csIGhleEVuY29kZSk7XG5cbmNvbnN0IGhleEVuY29kZSA9IChjOiBzdHJpbmcpID0+IGAlJHtjLmNoYXJDb2RlQXQoMCkudG9TdHJpbmcoMTYpLnRvVXBwZXJDYXNlKCl9YDtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-uri-escape/dist/es/escape-uri.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-uri-escape/dist/es/index.js": /*!****************************************************************!*\ !*** ./node_modules/@aws-sdk/util-uri-escape/dist/es/index.js ***! \****************************************************************/ /*! exports provided: escapeUri, escapeUriPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _escape_uri__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./escape-uri */ \"./node_modules/@aws-sdk/util-uri-escape/dist/es/escape-uri.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"escapeUri\", function() { return _escape_uri__WEBPACK_IMPORTED_MODULE_0__[\"escapeUri\"]; });\n\n/* harmony import */ var _escape_uri_path__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./escape-uri-path */ \"./node_modules/@aws-sdk/util-uri-escape/dist/es/escape-uri-path.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"escapeUriPath\", function() { return _escape_uri_path__WEBPACK_IMPORTED_MODULE_1__[\"escapeUriPath\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxtQkFBbUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL2VzY2FwZS11cmlcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2VzY2FwZS11cmktcGF0aFwiO1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-uri-escape/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js": /*!************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js ***! \************************************************************************/ /*! exports provided: defaultUserAgent */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultUserAgent\", function() { return defaultUserAgent; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! bowser */ \"./node_modules/bowser/es5.js\");\n/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(bowser__WEBPACK_IMPORTED_MODULE_1__);\n\n\n/**\n * Default provider to the user agent in browsers. It's a best effort to infer\n * the device information. It uses bowser library to detect the browser and virsion\n */\nvar defaultUserAgent = function (_a) {\n var serviceId = _a.serviceId, clientVersion = _a.clientVersion;\n return function () { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var parsedUA, sections;\n var _a, _b, _c, _d, _e, _f, _g;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_h) {\n parsedUA = ((_a = window === null || window === void 0 ? void 0 : window.navigator) === null || _a === void 0 ? void 0 : _a.userAgent) ? bowser__WEBPACK_IMPORTED_MODULE_1___default.a.parse(window.navigator.userAgent) : undefined;\n sections = [\n // sdk-metadata\n [\"aws-sdk-js\", clientVersion],\n // os-metadata\n [\"os/\" + (((_b = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.os) === null || _b === void 0 ? void 0 : _b.name) || \"other\"), (_c = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.os) === null || _c === void 0 ? void 0 : _c.version],\n // language-metadata\n // ECMAScript edition doesn't matter in JS.\n [\"lang/js\"],\n // browser vendor and version.\n [\"md/browser\", ((_e = (_d = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.browser) === null || _d === void 0 ? void 0 : _d.name) !== null && _e !== void 0 ? _e : \"unknown\") + \"_\" + ((_g = (_f = parsedUA === null || parsedUA === void 0 ? void 0 : parsedUA.browser) === null || _f === void 0 ? void 0 : _f.version) !== null && _g !== void 0 ? _g : \"unknown\")],\n ];\n if (serviceId) {\n // api-metadata\n // service Id may not appear in non-AWS clients\n sections.push([\"api/\" + serviceId, clientVersion]);\n }\n return [2 /*return*/, sections];\n });\n }); };\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUNBLE9BQU8sTUFBTSxNQUFNLFFBQVEsQ0FBQztBQUk1Qjs7O0dBR0c7QUFDSCxNQUFNLENBQUMsSUFBTSxnQkFBZ0IsR0FBRyxVQUFDLEVBR1A7UUFGeEIsU0FBUyxlQUFBLEVBQ1QsYUFBYSxtQkFBQTtJQUNxQyxPQUFBOzs7O1lBQzVDLFFBQVEsR0FBRyxPQUFBLE1BQU0sYUFBTixNQUFNLHVCQUFOLE1BQU0sQ0FBRSxTQUFTLDBDQUFFLFNBQVMsRUFBQyxDQUFDLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDL0YsUUFBUSxHQUFjO2dCQUMxQixlQUFlO2dCQUNmLENBQUMsWUFBWSxFQUFFLGFBQWEsQ0FBQztnQkFDN0IsY0FBYztnQkFDZCxDQUFDLFNBQU0sT0FBQSxRQUFRLGFBQVIsUUFBUSx1QkFBUixRQUFRLENBQUUsRUFBRSwwQ0FBRSxJQUFJLEtBQUksT0FBTyxDQUFFLFFBQUUsUUFBUSxhQUFSLFFBQVEsdUJBQVIsUUFBUSxDQUFFLEVBQUUsMENBQUUsT0FBTyxDQUFDO2dCQUM5RCxvQkFBb0I7Z0JBQ3BCLDJDQUEyQztnQkFDM0MsQ0FBQyxTQUFTLENBQUM7Z0JBQ1gsOEJBQThCO2dCQUM5QixDQUFDLFlBQVksRUFBRSxhQUFHLFFBQVEsYUFBUixRQUFRLHVCQUFSLFFBQVEsQ0FBRSxPQUFPLDBDQUFFLElBQUksbUNBQUksU0FBUyx1QkFBSSxRQUFRLGFBQVIsUUFBUSx1QkFBUixRQUFRLENBQUUsT0FBTywwQ0FBRSxPQUFPLG1DQUFJLFNBQVMsQ0FBRSxDQUFDO2FBQ3JHLENBQUM7WUFFRixJQUFJLFNBQVMsRUFBRTtnQkFDYixlQUFlO2dCQUNmLCtDQUErQztnQkFDL0MsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLFNBQU8sU0FBVyxFQUFFLGFBQWEsQ0FBQyxDQUFDLENBQUM7YUFDcEQ7WUFFRCxzQkFBTyxRQUFRLEVBQUM7O1NBQ2pCO0FBckJtRCxDQXFCbkQsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFByb3ZpZGVyLCBVc2VyQWdlbnQgfSBmcm9tIFwiQGF3cy1zZGsvdHlwZXNcIjtcbmltcG9ydCBib3dzZXIgZnJvbSBcImJvd3NlclwiO1xuXG5pbXBvcnQgeyBEZWZhdWx0VXNlckFnZW50T3B0aW9ucyB9IGZyb20gXCIuL2NvbmZpZ3VyYXRpb25zXCI7XG5cbi8qKlxuICogRGVmYXVsdCBwcm92aWRlciB0byB0aGUgdXNlciBhZ2VudCBpbiBicm93c2Vycy4gSXQncyBhIGJlc3QgZWZmb3J0IHRvIGluZmVyXG4gKiB0aGUgZGV2aWNlIGluZm9ybWF0aW9uLiBJdCB1c2VzIGJvd3NlciBsaWJyYXJ5IHRvIGRldGVjdCB0aGUgYnJvd3NlciBhbmQgdmlyc2lvblxuICovXG5leHBvcnQgY29uc3QgZGVmYXVsdFVzZXJBZ2VudCA9ICh7XG4gIHNlcnZpY2VJZCxcbiAgY2xpZW50VmVyc2lvbixcbn06IERlZmF1bHRVc2VyQWdlbnRPcHRpb25zKTogUHJvdmlkZXI8VXNlckFnZW50PiA9PiBhc3luYyAoKSA9PiB7XG4gIGNvbnN0IHBhcnNlZFVBID0gd2luZG93Py5uYXZpZ2F0b3I/LnVzZXJBZ2VudCA/IGJvd3Nlci5wYXJzZSh3aW5kb3cubmF2aWdhdG9yLnVzZXJBZ2VudCkgOiB1bmRlZmluZWQ7XG4gIGNvbnN0IHNlY3Rpb25zOiBVc2VyQWdlbnQgPSBbXG4gICAgLy8gc2RrLW1ldGFkYXRhXG4gICAgW1wiYXdzLXNkay1qc1wiLCBjbGllbnRWZXJzaW9uXSxcbiAgICAvLyBvcy1tZXRhZGF0YVxuICAgIFtgb3MvJHtwYXJzZWRVQT8ub3M/Lm5hbWUgfHwgXCJvdGhlclwifWAsIHBhcnNlZFVBPy5vcz8udmVyc2lvbl0sXG4gICAgLy8gbGFuZ3VhZ2UtbWV0YWRhdGFcbiAgICAvLyBFQ01BU2NyaXB0IGVkaXRpb24gZG9lc24ndCBtYXR0ZXIgaW4gSlMuXG4gICAgW1wibGFuZy9qc1wiXSxcbiAgICAvLyBicm93c2VyIHZlbmRvciBhbmQgdmVyc2lvbi5cbiAgICBbXCJtZC9icm93c2VyXCIsIGAke3BhcnNlZFVBPy5icm93c2VyPy5uYW1lID8/IFwidW5rbm93blwifV8ke3BhcnNlZFVBPy5icm93c2VyPy52ZXJzaW9uID8/IFwidW5rbm93blwifWBdLFxuICBdO1xuXG4gIGlmIChzZXJ2aWNlSWQpIHtcbiAgICAvLyBhcGktbWV0YWRhdGFcbiAgICAvLyBzZXJ2aWNlIElkIG1heSBub3QgYXBwZWFyIGluIG5vbi1BV1MgY2xpZW50c1xuICAgIHNlY3Rpb25zLnB1c2goW2BhcGkvJHtzZXJ2aWNlSWR9YCwgY2xpZW50VmVyc2lvbl0pO1xuICB9XG5cbiAgcmV0dXJuIHNlY3Rpb25zO1xufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-user-agent-browser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js ***! \******************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\n/* harmony import */ var _pureJs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./pureJs */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/pureJs.js\");\n/* harmony import */ var _whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./whatwgEncodingApi */ \"./node_modules/@aws-sdk/util-utf8-browser/dist/es/whatwgEncodingApi.js\");\n\n\nvar fromUtf8 = function (input) {\n return typeof TextEncoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"fromUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"fromUtf8\"])(input);\n};\nvar toUtf8 = function (input) {\n return typeof TextDecoder === \"function\" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__[\"toUtf8\"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__[\"toUtf8\"])(input);\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsSUFBSSxVQUFVLEVBQUUsTUFBTSxJQUFJLFFBQVEsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUN0RSxPQUFPLEVBQUUsUUFBUSxJQUFJLG1CQUFtQixFQUFFLE1BQU0sSUFBSSxpQkFBaUIsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBS25HLE1BQU0sQ0FBQyxJQUFNLFFBQVEsR0FBRyxVQUFDLEtBQWE7SUFDcEMsT0FBQSxPQUFPLFdBQVcsS0FBSyxVQUFVLENBQUMsQ0FBQyxDQUFDLG1CQUFtQixDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDO0FBQWxGLENBQWtGLENBQUM7QUFFckYsTUFBTSxDQUFDLElBQU0sTUFBTSxHQUFHLFVBQUMsS0FBaUI7SUFDdEMsT0FBQSxPQUFPLFdBQVcsS0FBSyxVQUFVLENBQUMsQ0FBQyxDQUFDLGlCQUFpQixDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDO0FBQTlFLENBQThFLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBmcm9tVXRmOCBhcyBqc0Zyb21VdGY4LCB0b1V0ZjggYXMganNUb1V0ZjggfSBmcm9tIFwiLi9wdXJlSnNcIjtcbmltcG9ydCB7IGZyb21VdGY4IGFzIHRleHRFbmNvZGVyRnJvbVV0ZjgsIHRvVXRmOCBhcyB0ZXh0RW5jb2RlclRvVXRmOCB9IGZyb20gXCIuL3doYXR3Z0VuY29kaW5nQXBpXCI7XG5cbmRlY2xhcmUgY29uc3QgVGV4dERlY29kZXI6IEZ1bmN0aW9uIHwgdW5kZWZpbmVkO1xuZGVjbGFyZSBjb25zdCBUZXh0RW5jb2RlcjogRnVuY3Rpb24gfCB1bmRlZmluZWQ7XG5cbmV4cG9ydCBjb25zdCBmcm9tVXRmOCA9IChpbnB1dDogc3RyaW5nKTogVWludDhBcnJheSA9PlxuICB0eXBlb2YgVGV4dEVuY29kZXIgPT09IFwiZnVuY3Rpb25cIiA/IHRleHRFbmNvZGVyRnJvbVV0ZjgoaW5wdXQpIDoganNGcm9tVXRmOChpbnB1dCk7XG5cbmV4cG9ydCBjb25zdCB0b1V0ZjggPSAoaW5wdXQ6IFVpbnQ4QXJyYXkpOiBzdHJpbmcgPT5cbiAgdHlwZW9mIFRleHREZWNvZGVyID09PSBcImZ1bmN0aW9uXCIgPyB0ZXh0RW5jb2RlclRvVXRmOChpbnB1dCkgOiBqc1RvVXRmOChpbnB1dCk7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-utf8-browser/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-utf8-browser/dist/es/pureJs.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/util-utf8-browser/dist/es/pureJs.js ***! \*******************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\n/**\n * Converts a JS string from its native UCS-2/UTF-16 representation into a\n * Uint8Array of the bytes used to represent the equivalent characters in UTF-8.\n *\n * Cribbed from the `goog.crypt.stringToUtf8ByteArray` function in the Google\n * Closure library, though updated to use typed arrays.\n */\nvar fromUtf8 = function (input) {\n var bytes = [];\n for (var i = 0, len = input.length; i < len; i++) {\n var value = input.charCodeAt(i);\n if (value < 0x80) {\n bytes.push(value);\n }\n else if (value < 0x800) {\n bytes.push((value >> 6) | 192, (value & 63) | 128);\n }\n else if (i + 1 < input.length && (value & 0xfc00) === 0xd800 && (input.charCodeAt(i + 1) & 0xfc00) === 0xdc00) {\n var surrogatePair = 0x10000 + ((value & 1023) << 10) + (input.charCodeAt(++i) & 1023);\n bytes.push((surrogatePair >> 18) | 240, ((surrogatePair >> 12) & 63) | 128, ((surrogatePair >> 6) & 63) | 128, (surrogatePair & 63) | 128);\n }\n else {\n bytes.push((value >> 12) | 224, ((value >> 6) & 63) | 128, (value & 63) | 128);\n }\n }\n return Uint8Array.from(bytes);\n};\n/**\n * Converts a typed array of bytes containing UTF-8 data into a native JS\n * string.\n *\n * Partly cribbed from the `goog.crypt.utf8ByteArrayToString` function in the\n * Google Closure library, though updated to use typed arrays and to better\n * handle astral plane code points.\n */\nvar toUtf8 = function (input) {\n var decoded = \"\";\n for (var i = 0, len = input.length; i < len; i++) {\n var byte = input[i];\n if (byte < 0x80) {\n decoded += String.fromCharCode(byte);\n }\n else if (192 <= byte && byte < 224) {\n var nextByte = input[++i];\n decoded += String.fromCharCode(((byte & 31) << 6) | (nextByte & 63));\n }\n else if (240 <= byte && byte < 365) {\n var surrogatePair = [byte, input[++i], input[++i], input[++i]];\n var encoded = \"%\" + surrogatePair.map(function (byteValue) { return byteValue.toString(16); }).join(\"%\");\n decoded += decodeURIComponent(encoded);\n }\n else {\n decoded += String.fromCharCode(((byte & 15) << 12) | ((input[++i] & 63) << 6) | (input[++i] & 63));\n }\n }\n return decoded;\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVyZUpzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3B1cmVKcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFDSCxNQUFNLENBQUMsSUFBTSxRQUFRLEdBQUcsVUFBQyxLQUFhO0lBQ3BDLElBQU0sS0FBSyxHQUFrQixFQUFFLENBQUM7SUFDaEMsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsR0FBRyxHQUFHLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDLEVBQUUsRUFBRTtRQUNoRCxJQUFNLEtBQUssR0FBRyxLQUFLLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ2xDLElBQUksS0FBSyxHQUFHLElBQUksRUFBRTtZQUNoQixLQUFLLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ25CO2FBQU0sSUFBSSxLQUFLLEdBQUcsS0FBSyxFQUFFO1lBQ3hCLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxLQUFLLElBQUksQ0FBQyxDQUFDLEdBQUcsR0FBVSxFQUFFLENBQUMsS0FBSyxHQUFHLEVBQVEsQ0FBQyxHQUFHLEdBQVUsQ0FBQyxDQUFDO1NBQ3hFO2FBQU0sSUFBSSxDQUFDLEdBQUcsQ0FBQyxHQUFHLEtBQUssQ0FBQyxNQUFNLElBQUksQ0FBQyxLQUFLLEdBQUcsTUFBTSxDQUFDLEtBQUssTUFBTSxJQUFJLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsTUFBTSxDQUFDLEtBQUssTUFBTSxFQUFFO1lBQy9HLElBQU0sYUFBYSxHQUFHLE9BQU8sR0FBRyxDQUFDLENBQUMsS0FBSyxHQUFHLElBQVksQ0FBQyxJQUFJLEVBQUUsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxHQUFHLElBQVksQ0FBQyxDQUFDO1lBQ3hHLEtBQUssQ0FBQyxJQUFJLENBQ1IsQ0FBQyxhQUFhLElBQUksRUFBRSxDQUFDLEdBQUcsR0FBVSxFQUNsQyxDQUFDLENBQUMsYUFBYSxJQUFJLEVBQUUsQ0FBQyxHQUFHLEVBQVEsQ0FBQyxHQUFHLEdBQVUsRUFDL0MsQ0FBQyxDQUFDLGFBQWEsSUFBSSxDQUFDLENBQUMsR0FBRyxFQUFRLENBQUMsR0FBRyxHQUFVLEVBQzlDLENBQUMsYUFBYSxHQUFHLEVBQVEsQ0FBQyxHQUFHLEdBQVUsQ0FDeEMsQ0FBQztTQUNIO2FBQU07WUFDTCxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxJQUFJLEVBQUUsQ0FBQyxHQUFHLEdBQVUsRUFBRSxDQUFDLENBQUMsS0FBSyxJQUFJLENBQUMsQ0FBQyxHQUFHLEVBQVEsQ0FBQyxHQUFHLEdBQVUsRUFBRSxDQUFDLEtBQUssR0FBRyxFQUFRLENBQUMsR0FBRyxHQUFVLENBQUMsQ0FBQztTQUNqSDtLQUNGO0lBRUQsT0FBTyxVQUFVLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0FBQ2hDLENBQUMsQ0FBQztBQUVGOzs7Ozs7O0dBT0c7QUFDSCxNQUFNLENBQUMsSUFBTSxNQUFNLEdBQUcsVUFBQyxLQUFpQjtJQUN0QyxJQUFJLE9BQU8sR0FBRyxFQUFFLENBQUM7SUFDakIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsR0FBRyxHQUFHLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDLEVBQUUsRUFBRTtRQUNoRCxJQUFNLElBQUksR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDdEIsSUFBSSxJQUFJLEdBQUcsSUFBSSxFQUFFO1lBQ2YsT0FBTyxJQUFJLE1BQU0sQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDdEM7YUFBTSxJQUFJLEdBQVUsSUFBSSxJQUFJLElBQUksSUFBSSxHQUFHLEdBQVUsRUFBRTtZQUNsRCxJQUFNLFFBQVEsR0FBRyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQztZQUM1QixPQUFPLElBQUksTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDLENBQUMsSUFBSSxHQUFHLEVBQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxHQUFHLENBQUMsUUFBUSxHQUFHLEVBQVEsQ0FBQyxDQUFDLENBQUM7U0FDakY7YUFBTSxJQUFJLEdBQVUsSUFBSSxJQUFJLElBQUksSUFBSSxHQUFHLEdBQVcsRUFBRTtZQUNuRCxJQUFNLGFBQWEsR0FBRyxDQUFDLElBQUksRUFBRSxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ2pFLElBQU0sT0FBTyxHQUFHLEdBQUcsR0FBRyxhQUFhLENBQUMsR0FBRyxDQUFDLFVBQUMsU0FBUyxJQUFLLE9BQUEsU0FBUyxDQUFDLFFBQVEsQ0FBQyxFQUFFLENBQUMsRUFBdEIsQ0FBc0IsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztZQUN6RixPQUFPLElBQUksa0JBQWtCLENBQUMsT0FBTyxDQUFDLENBQUM7U0FDeEM7YUFBTTtZQUNMLE9BQU8sSUFBSSxNQUFNLENBQUMsWUFBWSxDQUM1QixDQUFDLENBQUMsSUFBSSxHQUFHLEVBQU0sQ0FBQyxJQUFJLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUMsR0FBRyxFQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQyxHQUFHLEVBQVEsQ0FBQyxDQUNuRixDQUFDO1NBQ0g7S0FDRjtJQUVELE9BQU8sT0FBTyxDQUFDO0FBQ2pCLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQ29udmVydHMgYSBKUyBzdHJpbmcgZnJvbSBpdHMgbmF0aXZlIFVDUy0yL1VURi0xNiByZXByZXNlbnRhdGlvbiBpbnRvIGFcbiAqIFVpbnQ4QXJyYXkgb2YgdGhlIGJ5dGVzIHVzZWQgdG8gcmVwcmVzZW50IHRoZSBlcXVpdmFsZW50IGNoYXJhY3RlcnMgaW4gVVRGLTguXG4gKlxuICogQ3JpYmJlZCBmcm9tIHRoZSBgZ29vZy5jcnlwdC5zdHJpbmdUb1V0ZjhCeXRlQXJyYXlgIGZ1bmN0aW9uIGluIHRoZSBHb29nbGVcbiAqIENsb3N1cmUgbGlicmFyeSwgdGhvdWdoIHVwZGF0ZWQgdG8gdXNlIHR5cGVkIGFycmF5cy5cbiAqL1xuZXhwb3J0IGNvbnN0IGZyb21VdGY4ID0gKGlucHV0OiBzdHJpbmcpOiBVaW50OEFycmF5ID0+IHtcbiAgY29uc3QgYnl0ZXM6IEFycmF5PG51bWJlcj4gPSBbXTtcbiAgZm9yIChsZXQgaSA9IDAsIGxlbiA9IGlucHV0Lmxlbmd0aDsgaSA8IGxlbjsgaSsrKSB7XG4gICAgY29uc3QgdmFsdWUgPSBpbnB1dC5jaGFyQ29kZUF0KGkpO1xuICAgIGlmICh2YWx1ZSA8IDB4ODApIHtcbiAgICAgIGJ5dGVzLnB1c2godmFsdWUpO1xuICAgIH0gZWxzZSBpZiAodmFsdWUgPCAweDgwMCkge1xuICAgICAgYnl0ZXMucHVzaCgodmFsdWUgPj4gNikgfCAwYjExMDAwMDAwLCAodmFsdWUgJiAwYjExMTExMSkgfCAwYjEwMDAwMDAwKTtcbiAgICB9IGVsc2UgaWYgKGkgKyAxIDwgaW5wdXQubGVuZ3RoICYmICh2YWx1ZSAmIDB4ZmMwMCkgPT09IDB4ZDgwMCAmJiAoaW5wdXQuY2hhckNvZGVBdChpICsgMSkgJiAweGZjMDApID09PSAweGRjMDApIHtcbiAgICAgIGNvbnN0IHN1cnJvZ2F0ZVBhaXIgPSAweDEwMDAwICsgKCh2YWx1ZSAmIDBiMTExMTExMTExMSkgPDwgMTApICsgKGlucHV0LmNoYXJDb2RlQXQoKytpKSAmIDBiMTExMTExMTExMSk7XG4gICAgICBieXRlcy5wdXNoKFxuICAgICAgICAoc3Vycm9nYXRlUGFpciA+PiAxOCkgfCAwYjExMTEwMDAwLFxuICAgICAgICAoKHN1cnJvZ2F0ZVBhaXIgPj4gMTIpICYgMGIxMTExMTEpIHwgMGIxMDAwMDAwMCxcbiAgICAgICAgKChzdXJyb2dhdGVQYWlyID4+IDYpICYgMGIxMTExMTEpIHwgMGIxMDAwMDAwMCxcbiAgICAgICAgKHN1cnJvZ2F0ZVBhaXIgJiAwYjExMTExMSkgfCAwYjEwMDAwMDAwXG4gICAgICApO1xuICAgIH0gZWxzZSB7XG4gICAgICBieXRlcy5wdXNoKCh2YWx1ZSA+PiAxMikgfCAwYjExMTAwMDAwLCAoKHZhbHVlID4+IDYpICYgMGIxMTExMTEpIHwgMGIxMDAwMDAwMCwgKHZhbHVlICYgMGIxMTExMTEpIHwgMGIxMDAwMDAwMCk7XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIFVpbnQ4QXJyYXkuZnJvbShieXRlcyk7XG59O1xuXG4vKipcbiAqIENvbnZlcnRzIGEgdHlwZWQgYXJyYXkgb2YgYnl0ZXMgY29udGFpbmluZyBVVEYtOCBkYXRhIGludG8gYSBuYXRpdmUgSlNcbiAqIHN0cmluZy5cbiAqXG4gKiBQYXJ0bHkgY3JpYmJlZCBmcm9tIHRoZSBgZ29vZy5jcnlwdC51dGY4Qnl0ZUFycmF5VG9TdHJpbmdgIGZ1bmN0aW9uIGluIHRoZVxuICogR29vZ2xlIENsb3N1cmUgbGlicmFyeSwgdGhvdWdoIHVwZGF0ZWQgdG8gdXNlIHR5cGVkIGFycmF5cyBhbmQgdG8gYmV0dGVyXG4gKiBoYW5kbGUgYXN0cmFsIHBsYW5lIGNvZGUgcG9pbnRzLlxuICovXG5leHBvcnQgY29uc3QgdG9VdGY4ID0gKGlucHV0OiBVaW50OEFycmF5KTogc3RyaW5nID0+IHtcbiAgbGV0IGRlY29kZWQgPSBcIlwiO1xuICBmb3IgKGxldCBpID0gMCwgbGVuID0gaW5wdXQubGVuZ3RoOyBpIDwgbGVuOyBpKyspIHtcbiAgICBjb25zdCBieXRlID0gaW5wdXRbaV07XG4gICAgaWYgKGJ5dGUgPCAweDgwKSB7XG4gICAgICBkZWNvZGVkICs9IFN0cmluZy5mcm9tQ2hhckNvZGUoYnl0ZSk7XG4gICAgfSBlbHNlIGlmICgwYjExMDAwMDAwIDw9IGJ5dGUgJiYgYnl0ZSA8IDBiMTExMDAwMDApIHtcbiAgICAgIGNvbnN0IG5leHRCeXRlID0gaW5wdXRbKytpXTtcbiAgICAgIGRlY29kZWQgKz0gU3RyaW5nLmZyb21DaGFyQ29kZSgoKGJ5dGUgJiAwYjExMTExKSA8PCA2KSB8IChuZXh0Qnl0ZSAmIDBiMTExMTExKSk7XG4gICAgfSBlbHNlIGlmICgwYjExMTEwMDAwIDw9IGJ5dGUgJiYgYnl0ZSA8IDBiMTAxMTAxMTAxKSB7XG4gICAgICBjb25zdCBzdXJyb2dhdGVQYWlyID0gW2J5dGUsIGlucHV0WysraV0sIGlucHV0WysraV0sIGlucHV0WysraV1dO1xuICAgICAgY29uc3QgZW5jb2RlZCA9IFwiJVwiICsgc3Vycm9nYXRlUGFpci5tYXAoKGJ5dGVWYWx1ZSkgPT4gYnl0ZVZhbHVlLnRvU3RyaW5nKDE2KSkuam9pbihcIiVcIik7XG4gICAgICBkZWNvZGVkICs9IGRlY29kZVVSSUNvbXBvbmVudChlbmNvZGVkKTtcbiAgICB9IGVsc2Uge1xuICAgICAgZGVjb2RlZCArPSBTdHJpbmcuZnJvbUNoYXJDb2RlKFxuICAgICAgICAoKGJ5dGUgJiAwYjExMTEpIDw8IDEyKSB8ICgoaW5wdXRbKytpXSAmIDBiMTExMTExKSA8PCA2KSB8IChpbnB1dFsrK2ldICYgMGIxMTExMTEpXG4gICAgICApO1xuICAgIH1cbiAgfVxuXG4gIHJldHVybiBkZWNvZGVkO1xufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-utf8-browser/dist/es/pureJs.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-utf8-browser/dist/es/whatwgEncodingApi.js": /*!******************************************************************************!*\ !*** ./node_modules/@aws-sdk/util-utf8-browser/dist/es/whatwgEncodingApi.js ***! \******************************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\nfunction fromUtf8(input) {\n return new TextEncoder().encode(input);\n}\nfunction toUtf8(input) {\n return new TextDecoder(\"utf-8\").decode(input);\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2hhdHdnRW5jb2RpbmdBcGkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2hhdHdnRW5jb2RpbmdBcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBeUNBLE1BQU0sVUFBVSxRQUFRLENBQUMsS0FBYTtJQUNwQyxPQUFPLElBQUksV0FBVyxFQUFFLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO0FBQ3pDLENBQUM7QUFFRCxNQUFNLFVBQVUsTUFBTSxDQUFDLEtBQWlCO0lBQ3RDLE9BQU8sSUFBSSxXQUFXLENBQUMsT0FBTyxDQUFDLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO0FBQ2hELENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEEgZGVjbGFyYXRpb24gb2YgdGhlIGdsb2JhbCBUZXh0RW5jb2RlciBhbmQgVGV4dERlY29kZXIgY29uc3RydWN0b3JzLlxuICpcbiAqIEBzZWUgaHR0cHM6Ly9lbmNvZGluZy5zcGVjLndoYXR3Zy5vcmcvXG4gKi9cbi8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbm8tbmFtZXNwYWNlXG5uYW1lc3BhY2UgRW5jb2Rpbmcge1xuICBpbnRlcmZhY2UgVGV4dERlY29kZXJPcHRpb25zIHtcbiAgICBmYXRhbD86IGJvb2xlYW47XG4gICAgaWdub3JlQk9NPzogYm9vbGVhbjtcbiAgfVxuXG4gIGludGVyZmFjZSBUZXh0RGVjb2RlT3B0aW9ucyB7XG4gICAgc3RyZWFtPzogYm9vbGVhbjtcbiAgfVxuXG4gIGludGVyZmFjZSBUZXh0RGVjb2RlciB7XG4gICAgcmVhZG9ubHkgZW5jb2Rpbmc6IHN0cmluZztcbiAgICByZWFkb25seSBmYXRhbDogYm9vbGVhbjtcbiAgICByZWFkb25seSBpZ25vcmVCT006IGJvb2xlYW47XG4gICAgZGVjb2RlKGlucHV0PzogQXJyYXlCdWZmZXIgfCBBcnJheUJ1ZmZlclZpZXcsIG9wdGlvbnM/OiBUZXh0RGVjb2RlT3B0aW9ucyk6IHN0cmluZztcbiAgfVxuXG4gIGV4cG9ydCBpbnRlcmZhY2UgVGV4dERlY29kZXJDb25zdHJ1Y3RvciB7XG4gICAgbmV3IChsYWJlbD86IHN0cmluZywgb3B0aW9ucz86IFRleHREZWNvZGVyT3B0aW9ucyk6IFRleHREZWNvZGVyO1xuICB9XG5cbiAgaW50ZXJmYWNlIFRleHRFbmNvZGVyIHtcbiAgICByZWFkb25seSBlbmNvZGluZzogXCJ1dGYtOFwiO1xuICAgIGVuY29kZShpbnB1dD86IHN0cmluZyk6IFVpbnQ4QXJyYXk7XG4gIH1cblxuICBleHBvcnQgaW50ZXJmYWNlIFRleHRFbmNvZGVyQ29uc3RydWN0b3Ige1xuICAgIG5ldyAoKTogVGV4dEVuY29kZXI7XG4gIH1cbn1cblxuZGVjbGFyZSBjb25zdCBUZXh0RGVjb2RlcjogRW5jb2RpbmcuVGV4dERlY29kZXJDb25zdHJ1Y3RvcjtcblxuZGVjbGFyZSBjb25zdCBUZXh0RW5jb2RlcjogRW5jb2RpbmcuVGV4dEVuY29kZXJDb25zdHJ1Y3RvcjtcblxuZXhwb3J0IGZ1bmN0aW9uIGZyb21VdGY4KGlucHV0OiBzdHJpbmcpOiBVaW50OEFycmF5IHtcbiAgcmV0dXJuIG5ldyBUZXh0RW5jb2RlcigpLmVuY29kZShpbnB1dCk7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiB0b1V0ZjgoaW5wdXQ6IFVpbnQ4QXJyYXkpOiBzdHJpbmcge1xuICByZXR1cm4gbmV3IFRleHREZWNvZGVyKFwidXRmLThcIikuZGVjb2RlKGlucHV0KTtcbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-utf8-browser/dist/es/whatwgEncodingApi.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-utf8-node/dist/es/index.js": /*!***************************************************************!*\ !*** ./node_modules/@aws-sdk/util-utf8-node/dist/es/index.js ***! \***************************************************************/ /*! exports provided: fromUtf8, toUtf8 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromUtf8\", function() { return fromUtf8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toUtf8\", function() { return toUtf8; });\n/* harmony import */ var _aws_sdk_util_buffer_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-sdk/util-buffer-from */ \"./node_modules/@aws-sdk/util-buffer-from/dist/es/index.js\");\n\nvar fromUtf8 = function (input) {\n var buf = Object(_aws_sdk_util_buffer_from__WEBPACK_IMPORTED_MODULE_0__[\"fromString\"])(input, \"utf8\");\n return new Uint8Array(buf.buffer, buf.byteOffset, buf.byteLength / Uint8Array.BYTES_PER_ELEMENT);\n};\nvar toUtf8 = function (input) {\n return Object(_aws_sdk_util_buffer_from__WEBPACK_IMPORTED_MODULE_0__[\"fromArrayBuffer\"])(input.buffer, input.byteOffset, input.byteLength).toString(\"utf8\");\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGVBQWUsRUFBRSxVQUFVLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUV4RSxNQUFNLENBQUMsSUFBTSxRQUFRLEdBQUcsVUFBQyxLQUFhO0lBQ3BDLElBQU0sR0FBRyxHQUFHLFVBQVUsQ0FBQyxLQUFLLEVBQUUsTUFBTSxDQUFDLENBQUM7SUFDdEMsT0FBTyxJQUFJLFVBQVUsQ0FBQyxHQUFHLENBQUMsTUFBTSxFQUFFLEdBQUcsQ0FBQyxVQUFVLEVBQUUsR0FBRyxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUMsaUJBQWlCLENBQUMsQ0FBQztBQUNuRyxDQUFDLENBQUM7QUFFRixNQUFNLENBQUMsSUFBTSxNQUFNLEdBQUcsVUFBQyxLQUFpQjtJQUN0QyxPQUFBLGVBQWUsQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLEtBQUssQ0FBQyxVQUFVLEVBQUUsS0FBSyxDQUFDLFVBQVUsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUM7QUFBbEYsQ0FBa0YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGZyb21BcnJheUJ1ZmZlciwgZnJvbVN0cmluZyB9IGZyb20gXCJAYXdzLXNkay91dGlsLWJ1ZmZlci1mcm9tXCI7XG5cbmV4cG9ydCBjb25zdCBmcm9tVXRmOCA9IChpbnB1dDogc3RyaW5nKTogVWludDhBcnJheSA9PiB7XG4gIGNvbnN0IGJ1ZiA9IGZyb21TdHJpbmcoaW5wdXQsIFwidXRmOFwiKTtcbiAgcmV0dXJuIG5ldyBVaW50OEFycmF5KGJ1Zi5idWZmZXIsIGJ1Zi5ieXRlT2Zmc2V0LCBidWYuYnl0ZUxlbmd0aCAvIFVpbnQ4QXJyYXkuQllURVNfUEVSX0VMRU1FTlQpO1xufTtcblxuZXhwb3J0IGNvbnN0IHRvVXRmOCA9IChpbnB1dDogVWludDhBcnJheSk6IHN0cmluZyA9PlxuICBmcm9tQXJyYXlCdWZmZXIoaW5wdXQuYnVmZmVyLCBpbnB1dC5ieXRlT2Zmc2V0LCBpbnB1dC5ieXRlTGVuZ3RoKS50b1N0cmluZyhcInV0ZjhcIik7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-utf8-node/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-waiter/dist/es/createWaiter.js": /*!*******************************************************************!*\ !*** ./node_modules/@aws-sdk/util-waiter/dist/es/createWaiter.js ***! \*******************************************************************/ /*! exports provided: createWaiter */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createWaiter\", function() { return createWaiter; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _poller__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./poller */ \"./node_modules/@aws-sdk/util-waiter/dist/es/poller.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils */ \"./node_modules/@aws-sdk/util-waiter/dist/es/utils/index.js\");\n/* harmony import */ var _waiter__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./waiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/waiter.js\");\n\n\n\n\nvar abortTimeout = function (abortSignal) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n return [2 /*return*/, new Promise(function (resolve) {\n abortSignal.onabort = function () { return resolve({ state: _waiter__WEBPACK_IMPORTED_MODULE_3__[\"WaiterState\"].ABORTED }); };\n })];\n });\n}); };\n/**\n * Create a waiter promise that only resolves when:\n * 1. Abort controller is signaled\n * 2. Max wait time is reached\n * 3. `acceptorChecks` succeeds, or fails\n * Otherwise, it invokes `acceptorChecks` with exponential-backoff delay.\n *\n * @internal\n */\nvar createWaiter = function (options, input, acceptorChecks) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var params, exitConditions;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_a) {\n params = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"])({}, _waiter__WEBPACK_IMPORTED_MODULE_3__[\"waiterServiceDefaults\"]), options);\n Object(_utils__WEBPACK_IMPORTED_MODULE_2__[\"validateWaiterOptions\"])(params);\n exitConditions = [Object(_poller__WEBPACK_IMPORTED_MODULE_1__[\"runPolling\"])(params, input, acceptorChecks)];\n if (options.abortController) {\n exitConditions.push(abortTimeout(options.abortController.signal));\n }\n return [2 /*return*/, Promise.race(exitConditions)];\n });\n}); };\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlV2FpdGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NyZWF0ZVdhaXRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBRUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUN0QyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxTQUFTLENBQUM7QUFDaEQsT0FBTyxFQUErQixxQkFBcUIsRUFBRSxXQUFXLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFFM0YsSUFBTSxZQUFZLEdBQUcsVUFBTyxXQUF3Qjs7UUFDbEQsc0JBQU8sSUFBSSxPQUFPLENBQUMsVUFBQyxPQUFPO2dCQUN6QixXQUFXLENBQUMsT0FBTyxHQUFHLGNBQU0sT0FBQSxPQUFPLENBQUMsRUFBRSxLQUFLLEVBQUUsV0FBVyxDQUFDLE9BQU8sRUFBRSxDQUFDLEVBQXZDLENBQXVDLENBQUM7WUFDdEUsQ0FBQyxDQUFDLEVBQUM7O0tBQ0osQ0FBQztBQUVGOzs7Ozs7OztHQVFHO0FBQ0gsTUFBTSxDQUFDLElBQU0sWUFBWSxHQUFHLFVBQzFCLE9BQThCLEVBQzlCLEtBQVksRUFDWixjQUF1RTs7O1FBRWpFLE1BQU0seUJBQ1AscUJBQXFCLEdBQ3JCLE9BQU8sQ0FDWCxDQUFDO1FBQ0YscUJBQXFCLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFeEIsY0FBYyxHQUFHLENBQUMsVUFBVSxDQUFnQixNQUFNLEVBQUUsS0FBSyxFQUFFLGNBQWMsQ0FBQyxDQUFDLENBQUM7UUFDbEYsSUFBSSxPQUFPLENBQUMsZUFBZSxFQUFFO1lBQzNCLGNBQWMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxlQUFlLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQztTQUNuRTtRQUNELHNCQUFPLE9BQU8sQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLEVBQUM7O0tBQ3JDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBYm9ydFNpZ25hbCB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5pbXBvcnQgeyBydW5Qb2xsaW5nIH0gZnJvbSBcIi4vcG9sbGVyXCI7XG5pbXBvcnQgeyB2YWxpZGF0ZVdhaXRlck9wdGlvbnMgfSBmcm9tIFwiLi91dGlsc1wiO1xuaW1wb3J0IHsgV2FpdGVyT3B0aW9ucywgV2FpdGVyUmVzdWx0LCB3YWl0ZXJTZXJ2aWNlRGVmYXVsdHMsIFdhaXRlclN0YXRlIH0gZnJvbSBcIi4vd2FpdGVyXCI7XG5cbmNvbnN0IGFib3J0VGltZW91dCA9IGFzeW5jIChhYm9ydFNpZ25hbDogQWJvcnRTaWduYWwpOiBQcm9taXNlPFdhaXRlclJlc3VsdD4gPT4ge1xuICByZXR1cm4gbmV3IFByb21pc2UoKHJlc29sdmUpID0+IHtcbiAgICBhYm9ydFNpZ25hbC5vbmFib3J0ID0gKCkgPT4gcmVzb2x2ZSh7IHN0YXRlOiBXYWl0ZXJTdGF0ZS5BQk9SVEVEIH0pO1xuICB9KTtcbn07XG5cbi8qKlxuICogQ3JlYXRlIGEgd2FpdGVyIHByb21pc2UgdGhhdCBvbmx5IHJlc29sdmVzIHdoZW46XG4gKiAxLiBBYm9ydCBjb250cm9sbGVyIGlzIHNpZ25hbGVkXG4gKiAyLiBNYXggd2FpdCB0aW1lIGlzIHJlYWNoZWRcbiAqIDMuIGBhY2NlcHRvckNoZWNrc2Agc3VjY2VlZHMsIG9yIGZhaWxzXG4gKiBPdGhlcndpc2UsIGl0IGludm9rZXMgYGFjY2VwdG9yQ2hlY2tzYCB3aXRoIGV4cG9uZW50aWFsLWJhY2tvZmYgZGVsYXkuXG4gKlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBjb25zdCBjcmVhdGVXYWl0ZXIgPSBhc3luYyA8Q2xpZW50LCBJbnB1dD4oXG4gIG9wdGlvbnM6IFdhaXRlck9wdGlvbnM8Q2xpZW50PixcbiAgaW5wdXQ6IElucHV0LFxuICBhY2NlcHRvckNoZWNrczogKGNsaWVudDogQ2xpZW50LCBpbnB1dDogSW5wdXQpID0+IFByb21pc2U8V2FpdGVyUmVzdWx0PlxuKTogUHJvbWlzZTxXYWl0ZXJSZXN1bHQ+ID0+IHtcbiAgY29uc3QgcGFyYW1zID0ge1xuICAgIC4uLndhaXRlclNlcnZpY2VEZWZhdWx0cyxcbiAgICAuLi5vcHRpb25zLFxuICB9O1xuICB2YWxpZGF0ZVdhaXRlck9wdGlvbnMocGFyYW1zKTtcblxuICBjb25zdCBleGl0Q29uZGl0aW9ucyA9IFtydW5Qb2xsaW5nPENsaWVudCwgSW5wdXQ+KHBhcmFtcywgaW5wdXQsIGFjY2VwdG9yQ2hlY2tzKV07XG4gIGlmIChvcHRpb25zLmFib3J0Q29udHJvbGxlcikge1xuICAgIGV4aXRDb25kaXRpb25zLnB1c2goYWJvcnRUaW1lb3V0KG9wdGlvbnMuYWJvcnRDb250cm9sbGVyLnNpZ25hbCkpO1xuICB9XG4gIHJldHVybiBQcm9taXNlLnJhY2UoZXhpdENvbmRpdGlvbnMpO1xufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-waiter/dist/es/createWaiter.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-waiter/dist/es/index.js": /*!************************************************************!*\ !*** ./node_modules/@aws-sdk/util-waiter/dist/es/index.js ***! \************************************************************/ /*! exports provided: createWaiter, waiterServiceDefaults, WaiterState */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _createWaiter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./createWaiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/createWaiter.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createWaiter\", function() { return _createWaiter__WEBPACK_IMPORTED_MODULE_0__[\"createWaiter\"]; });\n\n/* harmony import */ var _waiter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./waiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/waiter.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"waiterServiceDefaults\", function() { return _waiter__WEBPACK_IMPORTED_MODULE_1__[\"waiterServiceDefaults\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WaiterState\", function() { return _waiter__WEBPACK_IMPORTED_MODULE_1__[\"WaiterState\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLFVBQVUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCIuL2NyZWF0ZVdhaXRlclwiO1xuZXhwb3J0ICogZnJvbSBcIi4vd2FpdGVyXCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-waiter/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-waiter/dist/es/poller.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-sdk/util-waiter/dist/es/poller.js ***! \*************************************************************/ /*! exports provided: runPolling */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"runPolling\", function() { return runPolling; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _utils_sleep__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils/sleep */ \"./node_modules/@aws-sdk/util-waiter/dist/es/utils/sleep.js\");\n/* harmony import */ var _waiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./waiter */ \"./node_modules/@aws-sdk/util-waiter/dist/es/waiter.js\");\n\n\n\n/**\n * Reference: https://awslabs.github.io/smithy/1.0/spec/waiters.html#waiter-retries\n */\nvar exponentialBackoffWithJitter = function (minDelay, maxDelay, attemptCeiling, attempt) {\n if (attempt > attemptCeiling)\n return maxDelay;\n var delay = minDelay * Math.pow(2, (attempt - 1));\n return randomInRange(minDelay, delay);\n};\nvar randomInRange = function (min, max) { return min + Math.random() * (max - min); };\n/**\n * Function that runs polling as part of waiters. This will make one inital attempt and then\n * subsequent attempts with an increasing delay.\n * @param params options passed to the waiter.\n * @param client AWS SDK Client\n * @param input client input\n * @param stateChecker function that checks the acceptor states on each poll.\n */\nvar runPolling = function (_a, input, acceptorChecks) {\n var minDelay = _a.minDelay, maxDelay = _a.maxDelay, maxWaitTime = _a.maxWaitTime, abortController = _a.abortController, client = _a.client;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__awaiter\"])(void 0, void 0, void 0, function () {\n var state, currentAttempt, waitUntil, attemptCeiling, delay, state_1;\n var _b;\n return Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__generator\"])(this, function (_c) {\n switch (_c.label) {\n case 0: return [4 /*yield*/, acceptorChecks(client, input)];\n case 1:\n state = (_c.sent()).state;\n if (state !== _waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].RETRY) {\n return [2 /*return*/, { state: state }];\n }\n currentAttempt = 1;\n waitUntil = Date.now() + maxWaitTime * 1000;\n attemptCeiling = Math.log(maxDelay / minDelay) / Math.log(2) + 1;\n _c.label = 2;\n case 2:\n if (false) {}\n if ((_b = abortController === null || abortController === void 0 ? void 0 : abortController.signal) === null || _b === void 0 ? void 0 : _b.aborted) {\n return [2 /*return*/, { state: _waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].ABORTED }];\n }\n delay = exponentialBackoffWithJitter(minDelay, maxDelay, attemptCeiling, currentAttempt);\n // Resolve the promise explicitly at timeout or aborted. Otherwise this while loop will keep making API call until\n // `acceptorCheck` returns non-retry status, even with the Promise.race() outside.\n if (Date.now() + delay * 1000 > waitUntil) {\n return [2 /*return*/, { state: _waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].TIMEOUT }];\n }\n return [4 /*yield*/, Object(_utils_sleep__WEBPACK_IMPORTED_MODULE_1__[\"sleep\"])(delay)];\n case 3:\n _c.sent();\n return [4 /*yield*/, acceptorChecks(client, input)];\n case 4:\n state_1 = (_c.sent()).state;\n if (state_1 !== _waiter__WEBPACK_IMPORTED_MODULE_2__[\"WaiterState\"].RETRY) {\n return [2 /*return*/, { state: state_1 }];\n }\n currentAttempt += 1;\n return [3 /*break*/, 2];\n case 5: return [2 /*return*/];\n }\n });\n });\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9sbGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3BvbGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0QyxPQUFPLEVBQStCLFdBQVcsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUVwRTs7R0FFRztBQUNILElBQU0sNEJBQTRCLEdBQUcsVUFBQyxRQUFnQixFQUFFLFFBQWdCLEVBQUUsY0FBc0IsRUFBRSxPQUFlO0lBQy9HLElBQUksT0FBTyxHQUFHLGNBQWM7UUFBRSxPQUFPLFFBQVEsQ0FBQztJQUM5QyxJQUFNLEtBQUssR0FBRyxRQUFRLEdBQUcsU0FBQSxDQUFDLEVBQUksQ0FBQyxPQUFPLEdBQUcsQ0FBQyxDQUFDLENBQUEsQ0FBQztJQUM1QyxPQUFPLGFBQWEsQ0FBQyxRQUFRLEVBQUUsS0FBSyxDQUFDLENBQUM7QUFDeEMsQ0FBQyxDQUFDO0FBRUYsSUFBTSxhQUFhLEdBQUcsVUFBQyxHQUFXLEVBQUUsR0FBVyxJQUFLLE9BQUEsR0FBRyxHQUFHLElBQUksQ0FBQyxNQUFNLEVBQUUsR0FBRyxDQUFDLEdBQUcsR0FBRyxHQUFHLENBQUMsRUFBakMsQ0FBaUMsQ0FBQztBQUV0Rjs7Ozs7OztHQU9HO0FBQ0gsTUFBTSxDQUFDLElBQU0sVUFBVSxHQUFHLFVBQ3hCLEVBQW1GLEVBQ25GLEtBQVksRUFDWixjQUF1RTtRQUZyRSxRQUFRLGNBQUEsRUFBRSxRQUFRLGNBQUEsRUFBRSxXQUFXLGlCQUFBLEVBQUUsZUFBZSxxQkFBQSxFQUFFLE1BQU0sWUFBQTs7Ozs7O3dCQUl4QyxxQkFBTSxjQUFjLENBQUMsTUFBTSxFQUFFLEtBQUssQ0FBQyxFQUFBOztvQkFBN0MsS0FBSyxHQUFLLENBQUEsU0FBbUMsQ0FBQSxNQUF4QztvQkFDYixJQUFJLEtBQUssS0FBSyxXQUFXLENBQUMsS0FBSyxFQUFFO3dCQUMvQixzQkFBTyxFQUFFLEtBQUssT0FBQSxFQUFFLEVBQUM7cUJBQ2xCO29CQUVHLGNBQWMsR0FBRyxDQUFDLENBQUM7b0JBQ2pCLFNBQVMsR0FBRyxJQUFJLENBQUMsR0FBRyxFQUFFLEdBQUcsV0FBVyxHQUFHLElBQUksQ0FBQztvQkFHNUMsY0FBYyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsUUFBUSxHQUFHLFFBQVEsQ0FBQyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDOzs7eUJBQ2hFLElBQUk7b0JBQ1QsVUFBSSxlQUFlLGFBQWYsZUFBZSx1QkFBZixlQUFlLENBQUUsTUFBTSwwQ0FBRSxPQUFPLEVBQUU7d0JBQ3BDLHNCQUFPLEVBQUUsS0FBSyxFQUFFLFdBQVcsQ0FBQyxPQUFPLEVBQUUsRUFBQztxQkFDdkM7b0JBQ0ssS0FBSyxHQUFHLDRCQUE0QixDQUFDLFFBQVEsRUFBRSxRQUFRLEVBQUUsY0FBYyxFQUFFLGNBQWMsQ0FBQyxDQUFDO29CQUMvRixrSEFBa0g7b0JBQ2xILGtGQUFrRjtvQkFDbEYsSUFBSSxJQUFJLENBQUMsR0FBRyxFQUFFLEdBQUcsS0FBSyxHQUFHLElBQUksR0FBRyxTQUFTLEVBQUU7d0JBQ3pDLHNCQUFPLEVBQUUsS0FBSyxFQUFFLFdBQVcsQ0FBQyxPQUFPLEVBQUUsRUFBQztxQkFDdkM7b0JBQ0QscUJBQU0sS0FBSyxDQUFDLEtBQUssQ0FBQyxFQUFBOztvQkFBbEIsU0FBa0IsQ0FBQztvQkFDRCxxQkFBTSxjQUFjLENBQUMsTUFBTSxFQUFFLEtBQUssQ0FBQyxFQUFBOztvQkFBN0MsVUFBVSxDQUFBLFNBQW1DLENBQUEsTUFBeEM7b0JBQ2IsSUFBSSxPQUFLLEtBQUssV0FBVyxDQUFDLEtBQUssRUFBRTt3QkFDL0Isc0JBQU8sRUFBRSxLQUFLLFNBQUEsRUFBRSxFQUFDO3FCQUNsQjtvQkFFRCxjQUFjLElBQUksQ0FBQyxDQUFDOzs7Ozs7Q0FFdkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IHNsZWVwIH0gZnJvbSBcIi4vdXRpbHMvc2xlZXBcIjtcbmltcG9ydCB7IFdhaXRlck9wdGlvbnMsIFdhaXRlclJlc3VsdCwgV2FpdGVyU3RhdGUgfSBmcm9tIFwiLi93YWl0ZXJcIjtcblxuLyoqXG4gKiBSZWZlcmVuY2U6IGh0dHBzOi8vYXdzbGFicy5naXRodWIuaW8vc21pdGh5LzEuMC9zcGVjL3dhaXRlcnMuaHRtbCN3YWl0ZXItcmV0cmllc1xuICovXG5jb25zdCBleHBvbmVudGlhbEJhY2tvZmZXaXRoSml0dGVyID0gKG1pbkRlbGF5OiBudW1iZXIsIG1heERlbGF5OiBudW1iZXIsIGF0dGVtcHRDZWlsaW5nOiBudW1iZXIsIGF0dGVtcHQ6IG51bWJlcikgPT4ge1xuICBpZiAoYXR0ZW1wdCA+IGF0dGVtcHRDZWlsaW5nKSByZXR1cm4gbWF4RGVsYXk7XG4gIGNvbnN0IGRlbGF5ID0gbWluRGVsYXkgKiAyICoqIChhdHRlbXB0IC0gMSk7XG4gIHJldHVybiByYW5kb21JblJhbmdlKG1pbkRlbGF5LCBkZWxheSk7XG59O1xuXG5jb25zdCByYW5kb21JblJhbmdlID0gKG1pbjogbnVtYmVyLCBtYXg6IG51bWJlcikgPT4gbWluICsgTWF0aC5yYW5kb20oKSAqIChtYXggLSBtaW4pO1xuXG4vKipcbiAqIEZ1bmN0aW9uIHRoYXQgcnVucyBwb2xsaW5nIGFzIHBhcnQgb2Ygd2FpdGVycy4gVGhpcyB3aWxsIG1ha2Ugb25lIGluaXRhbCBhdHRlbXB0IGFuZCB0aGVuXG4gKiBzdWJzZXF1ZW50IGF0dGVtcHRzIHdpdGggYW4gaW5jcmVhc2luZyBkZWxheS5cbiAqIEBwYXJhbSBwYXJhbXMgb3B0aW9ucyBwYXNzZWQgdG8gdGhlIHdhaXRlci5cbiAqIEBwYXJhbSBjbGllbnQgQVdTIFNESyBDbGllbnRcbiAqIEBwYXJhbSBpbnB1dCBjbGllbnQgaW5wdXRcbiAqIEBwYXJhbSBzdGF0ZUNoZWNrZXIgZnVuY3Rpb24gdGhhdCBjaGVja3MgdGhlIGFjY2VwdG9yIHN0YXRlcyBvbiBlYWNoIHBvbGwuXG4gKi9cbmV4cG9ydCBjb25zdCBydW5Qb2xsaW5nID0gYXN5bmMgPENsaWVudCwgSW5wdXQ+KFxuICB7IG1pbkRlbGF5LCBtYXhEZWxheSwgbWF4V2FpdFRpbWUsIGFib3J0Q29udHJvbGxlciwgY2xpZW50IH06IFdhaXRlck9wdGlvbnM8Q2xpZW50PixcbiAgaW5wdXQ6IElucHV0LFxuICBhY2NlcHRvckNoZWNrczogKGNsaWVudDogQ2xpZW50LCBpbnB1dDogSW5wdXQpID0+IFByb21pc2U8V2FpdGVyUmVzdWx0PlxuKTogUHJvbWlzZTxXYWl0ZXJSZXN1bHQ+ID0+IHtcbiAgY29uc3QgeyBzdGF0ZSB9ID0gYXdhaXQgYWNjZXB0b3JDaGVja3MoY2xpZW50LCBpbnB1dCk7XG4gIGlmIChzdGF0ZSAhPT0gV2FpdGVyU3RhdGUuUkVUUlkpIHtcbiAgICByZXR1cm4geyBzdGF0ZSB9O1xuICB9XG5cbiAgbGV0IGN1cnJlbnRBdHRlbXB0ID0gMTtcbiAgY29uc3Qgd2FpdFVudGlsID0gRGF0ZS5ub3coKSArIG1heFdhaXRUaW1lICogMTAwMDtcbiAgLy8gVGhlIG1heCBhdHRlbXB0IG51bWJlciB0aGF0IHRoZSBkZXJpdmVkIGRlbGF5IHRpbWUgdGVuZCB0byBpbmNyZWFzZS5cbiAgLy8gUHJlLWNvbXB1dGUgdGhpcyBudW1iZXIgdG8gYXZvaWQgTnVtYmVyIHR5cGUgb3ZlcmZsb3cuXG4gIGNvbnN0IGF0dGVtcHRDZWlsaW5nID0gTWF0aC5sb2cobWF4RGVsYXkgLyBtaW5EZWxheSkgLyBNYXRoLmxvZygyKSArIDE7XG4gIHdoaWxlICh0cnVlKSB7XG4gICAgaWYgKGFib3J0Q29udHJvbGxlcj8uc2lnbmFsPy5hYm9ydGVkKSB7XG4gICAgICByZXR1cm4geyBzdGF0ZTogV2FpdGVyU3RhdGUuQUJPUlRFRCB9O1xuICAgIH1cbiAgICBjb25zdCBkZWxheSA9IGV4cG9uZW50aWFsQmFja29mZldpdGhKaXR0ZXIobWluRGVsYXksIG1heERlbGF5LCBhdHRlbXB0Q2VpbGluZywgY3VycmVudEF0dGVtcHQpO1xuICAgIC8vIFJlc29sdmUgdGhlIHByb21pc2UgZXhwbGljaXRseSBhdCB0aW1lb3V0IG9yIGFib3J0ZWQuIE90aGVyd2lzZSB0aGlzIHdoaWxlIGxvb3Agd2lsbCBrZWVwIG1ha2luZyBBUEkgY2FsbCB1bnRpbFxuICAgIC8vIGBhY2NlcHRvckNoZWNrYCByZXR1cm5zIG5vbi1yZXRyeSBzdGF0dXMsIGV2ZW4gd2l0aCB0aGUgUHJvbWlzZS5yYWNlKCkgb3V0c2lkZS5cbiAgICBpZiAoRGF0ZS5ub3coKSArIGRlbGF5ICogMTAwMCA+IHdhaXRVbnRpbCkge1xuICAgICAgcmV0dXJuIHsgc3RhdGU6IFdhaXRlclN0YXRlLlRJTUVPVVQgfTtcbiAgICB9XG4gICAgYXdhaXQgc2xlZXAoZGVsYXkpO1xuICAgIGNvbnN0IHsgc3RhdGUgfSA9IGF3YWl0IGFjY2VwdG9yQ2hlY2tzKGNsaWVudCwgaW5wdXQpO1xuICAgIGlmIChzdGF0ZSAhPT0gV2FpdGVyU3RhdGUuUkVUUlkpIHtcbiAgICAgIHJldHVybiB7IHN0YXRlIH07XG4gICAgfVxuXG4gICAgY3VycmVudEF0dGVtcHQgKz0gMTtcbiAgfVxufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-waiter/dist/es/poller.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-waiter/dist/es/utils/index.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/util-waiter/dist/es/utils/index.js ***! \******************************************************************/ /*! exports provided: sleep, validateWaiterOptions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _sleep__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./sleep */ \"./node_modules/@aws-sdk/util-waiter/dist/es/utils/sleep.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"sleep\", function() { return _sleep__WEBPACK_IMPORTED_MODULE_0__[\"sleep\"]; });\n\n/* harmony import */ var _validate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./validate */ \"./node_modules/@aws-sdk/util-waiter/dist/es/utils/validate.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateWaiterOptions\", function() { return _validate__WEBPACK_IMPORTED_MODULE_1__[\"validateWaiterOptions\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdXRpbHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxZQUFZLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLi9zbGVlcFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vdmFsaWRhdGVcIjtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-waiter/dist/es/utils/index.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-waiter/dist/es/utils/sleep.js": /*!******************************************************************!*\ !*** ./node_modules/@aws-sdk/util-waiter/dist/es/utils/sleep.js ***! \******************************************************************/ /*! exports provided: sleep */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"sleep\", function() { return sleep; });\nvar sleep = function (seconds) {\n return new Promise(function (resolve) { return setTimeout(resolve, seconds * 1000); });\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2xlZXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdXRpbHMvc2xlZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFDLElBQU0sS0FBSyxHQUFHLFVBQUMsT0FBZTtJQUNuQyxPQUFPLElBQUksT0FBTyxDQUFDLFVBQUMsT0FBTyxJQUFLLE9BQUEsVUFBVSxDQUFDLE9BQU8sRUFBRSxPQUFPLEdBQUcsSUFBSSxDQUFDLEVBQW5DLENBQW1DLENBQUMsQ0FBQztBQUN2RSxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3Qgc2xlZXAgPSAoc2Vjb25kczogbnVtYmVyKSA9PiB7XG4gIHJldHVybiBuZXcgUHJvbWlzZSgocmVzb2x2ZSkgPT4gc2V0VGltZW91dChyZXNvbHZlLCBzZWNvbmRzICogMTAwMCkpO1xufTtcbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-waiter/dist/es/utils/sleep.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-waiter/dist/es/utils/validate.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/util-waiter/dist/es/utils/validate.js ***! \*********************************************************************/ /*! exports provided: validateWaiterOptions */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateWaiterOptions\", function() { return validateWaiterOptions; });\n/**\n * Validates that waiter options are passed correctly\n * @param options a waiter configuration object\n */\nvar validateWaiterOptions = function (options) {\n if (options.maxWaitTime < 1) {\n throw new Error(\"WaiterConfiguration.maxWaitTime must be greater than 0\");\n }\n else if (options.minDelay < 1) {\n throw new Error(\"WaiterConfiguration.minDelay must be greater than 0\");\n }\n else if (options.maxDelay < 1) {\n throw new Error(\"WaiterConfiguration.maxDelay must be greater than 0\");\n }\n else if (options.maxWaitTime <= options.minDelay) {\n throw new Error(\"WaiterConfiguration.maxWaitTime [\" + options.maxWaitTime + \"] must be greater than WaiterConfiguration.minDelay [\" + options.minDelay + \"] for this waiter\");\n }\n else if (options.maxDelay < options.minDelay) {\n throw new Error(\"WaiterConfiguration.maxDelay [\" + options.maxDelay + \"] must be greater than WaiterConfiguration.minDelay [\" + options.minDelay + \"] for this waiter\");\n }\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsaWRhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdXRpbHMvdmFsaWRhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUE7OztHQUdHO0FBQ0gsTUFBTSxDQUFDLElBQU0scUJBQXFCLEdBQUcsVUFBUyxPQUE4QjtJQUMxRSxJQUFJLE9BQU8sQ0FBQyxXQUFXLEdBQUcsQ0FBQyxFQUFFO1FBQzNCLE1BQU0sSUFBSSxLQUFLLENBQUMsd0RBQXdELENBQUMsQ0FBQztLQUMzRTtTQUFNLElBQUksT0FBTyxDQUFDLFFBQVEsR0FBRyxDQUFDLEVBQUU7UUFDL0IsTUFBTSxJQUFJLEtBQUssQ0FBQyxxREFBcUQsQ0FBQyxDQUFDO0tBQ3hFO1NBQU0sSUFBSSxPQUFPLENBQUMsUUFBUSxHQUFHLENBQUMsRUFBRTtRQUMvQixNQUFNLElBQUksS0FBSyxDQUFDLHFEQUFxRCxDQUFDLENBQUM7S0FDeEU7U0FBTSxJQUFJLE9BQU8sQ0FBQyxXQUFXLElBQUksT0FBTyxDQUFDLFFBQVEsRUFBRTtRQUNsRCxNQUFNLElBQUksS0FBSyxDQUNiLHNDQUFvQyxPQUFPLENBQUMsV0FBVyw2REFBd0QsT0FBTyxDQUFDLFFBQVEsc0JBQW1CLENBQ25KLENBQUM7S0FDSDtTQUFNLElBQUksT0FBTyxDQUFDLFFBQVEsR0FBRyxPQUFPLENBQUMsUUFBUSxFQUFFO1FBQzlDLE1BQU0sSUFBSSxLQUFLLENBQ2IsbUNBQWlDLE9BQU8sQ0FBQyxRQUFRLDZEQUF3RCxPQUFPLENBQUMsUUFBUSxzQkFBbUIsQ0FDN0ksQ0FBQztLQUNIO0FBQ0gsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgV2FpdGVyT3B0aW9ucyB9IGZyb20gXCIuLi93YWl0ZXJcIjtcblxuLyoqXG4gKiBWYWxpZGF0ZXMgdGhhdCB3YWl0ZXIgb3B0aW9ucyBhcmUgcGFzc2VkIGNvcnJlY3RseVxuICogQHBhcmFtIG9wdGlvbnMgYSB3YWl0ZXIgY29uZmlndXJhdGlvbiBvYmplY3RcbiAqL1xuZXhwb3J0IGNvbnN0IHZhbGlkYXRlV2FpdGVyT3B0aW9ucyA9IDxDbGllbnQ+KG9wdGlvbnM6IFdhaXRlck9wdGlvbnM8Q2xpZW50Pik6IHZvaWQgPT4ge1xuICBpZiAob3B0aW9ucy5tYXhXYWl0VGltZSA8IDEpIHtcbiAgICB0aHJvdyBuZXcgRXJyb3IoYFdhaXRlckNvbmZpZ3VyYXRpb24ubWF4V2FpdFRpbWUgbXVzdCBiZSBncmVhdGVyIHRoYW4gMGApO1xuICB9IGVsc2UgaWYgKG9wdGlvbnMubWluRGVsYXkgPCAxKSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKGBXYWl0ZXJDb25maWd1cmF0aW9uLm1pbkRlbGF5IG11c3QgYmUgZ3JlYXRlciB0aGFuIDBgKTtcbiAgfSBlbHNlIGlmIChvcHRpb25zLm1heERlbGF5IDwgMSkge1xuICAgIHRocm93IG5ldyBFcnJvcihgV2FpdGVyQ29uZmlndXJhdGlvbi5tYXhEZWxheSBtdXN0IGJlIGdyZWF0ZXIgdGhhbiAwYCk7XG4gIH0gZWxzZSBpZiAob3B0aW9ucy5tYXhXYWl0VGltZSA8PSBvcHRpb25zLm1pbkRlbGF5KSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgYFdhaXRlckNvbmZpZ3VyYXRpb24ubWF4V2FpdFRpbWUgWyR7b3B0aW9ucy5tYXhXYWl0VGltZX1dIG11c3QgYmUgZ3JlYXRlciB0aGFuIFdhaXRlckNvbmZpZ3VyYXRpb24ubWluRGVsYXkgWyR7b3B0aW9ucy5taW5EZWxheX1dIGZvciB0aGlzIHdhaXRlcmBcbiAgICApO1xuICB9IGVsc2UgaWYgKG9wdGlvbnMubWF4RGVsYXkgPCBvcHRpb25zLm1pbkRlbGF5KSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgYFdhaXRlckNvbmZpZ3VyYXRpb24ubWF4RGVsYXkgWyR7b3B0aW9ucy5tYXhEZWxheX1dIG11c3QgYmUgZ3JlYXRlciB0aGFuIFdhaXRlckNvbmZpZ3VyYXRpb24ubWluRGVsYXkgWyR7b3B0aW9ucy5taW5EZWxheX1dIGZvciB0aGlzIHdhaXRlcmBcbiAgICApO1xuICB9XG59O1xuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-waiter/dist/es/utils/validate.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/util-waiter/dist/es/waiter.js": /*!*************************************************************!*\ !*** ./node_modules/@aws-sdk/util-waiter/dist/es/waiter.js ***! \*************************************************************/ /*! exports provided: waiterServiceDefaults, WaiterState */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"waiterServiceDefaults\", function() { return waiterServiceDefaults; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WaiterState\", function() { return WaiterState; });\n/**\n * @private\n */\nvar waiterServiceDefaults = {\n minDelay: 2,\n maxDelay: 120,\n};\nvar WaiterState;\n(function (WaiterState) {\n WaiterState[\"ABORTED\"] = \"ABORTED\";\n WaiterState[\"FAILURE\"] = \"FAILURE\";\n WaiterState[\"SUCCESS\"] = \"SUCCESS\";\n WaiterState[\"RETRY\"] = \"RETRY\";\n WaiterState[\"TIMEOUT\"] = \"TIMEOUT\";\n})(WaiterState || (WaiterState = {}));\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FpdGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3dhaXRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFpQ0E7O0dBRUc7QUFDSCxNQUFNLENBQUMsSUFBTSxxQkFBcUIsR0FBRztJQUNuQyxRQUFRLEVBQUUsQ0FBQztJQUNYLFFBQVEsRUFBRSxHQUFHO0NBQ2QsQ0FBQztBQVFGLE1BQU0sQ0FBTixJQUFZLFdBTVg7QUFORCxXQUFZLFdBQVc7SUFDckIsa0NBQW1CLENBQUE7SUFDbkIsa0NBQW1CLENBQUE7SUFDbkIsa0NBQW1CLENBQUE7SUFDbkIsOEJBQWUsQ0FBQTtJQUNmLGtDQUFtQixDQUFBO0FBQ3JCLENBQUMsRUFOVyxXQUFXLEtBQVgsV0FBVyxRQU10QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFib3J0Q29udHJvbGxlciB9IGZyb20gXCJAYXdzLXNkay90eXBlc1wiO1xuXG5leHBvcnQgaW50ZXJmYWNlIFdhaXRlckNvbmZpZ3VyYXRpb248Q2xpZW50PiB7XG4gIC8qKlxuICAgKiBSZXF1aXJlZCBzZXJ2aWNlIGNsaWVudFxuICAgKi9cbiAgY2xpZW50OiBDbGllbnQ7XG5cbiAgLyoqXG4gICAqIFRoZSBhbW91bnQgb2YgdGltZSBpbiBzZWNvbmRzIGEgdXNlciBpcyB3aWxsaW5nIHRvIHdhaXQgZm9yIGEgd2FpdGVyIHRvIGNvbXBsZXRlLlxuICAgKi9cbiAgbWF4V2FpdFRpbWU6IG51bWJlcjtcblxuICAvKipcbiAgICogQWJvcnQgY29udHJvbGxlci4gVXNlZCBmb3IgZW5kaW5nIHRoZSB3YWl0ZXIgZWFybHkuXG4gICAqL1xuICBhYm9ydENvbnRyb2xsZXI/OiBBYm9ydENvbnRyb2xsZXI7XG5cbiAgLyoqXG4gICAqIFRoZSBtaW5pbXVtIGFtb3VudCBvZiB0aW1lIHRvIGRlbGF5IGJldHdlZW4gcmV0cmllcyBpbiBzZWNvbmRzLiBUaGlzIGlzIHRoZVxuICAgKiBmbG9vciBvZiB0aGUgZXhwb25lbnRpYWwgYmFja29mZi4gVGhpcyB2YWx1ZSBkZWZhdWx0cyB0byBzZXJ2aWNlIGRlZmF1bHRcbiAgICogaWYgbm90IHNwZWNpZmllZC4gVGhpcyB2YWx1ZSBNVVNUIGJlIGxlc3MgdGhhbiBvciBlcXVhbCB0byBtYXhEZWxheSBhbmQgZ3JlYXRlciB0aGFuIDAuXG4gICAqL1xuICBtaW5EZWxheT86IG51bWJlcjtcblxuICAvKipcbiAgICogVGhlIG1heGltdW0gYW1vdW50IG9mIHRpbWUgdG8gZGVsYXkgYmV0d2VlbiByZXRyaWVzIGluIHNlY29uZHMuIFRoaXMgaXMgdGhlXG4gICAqIGNlaWxpbmcgb2YgdGhlIGV4cG9uZW50aWFsIGJhY2tvZmYuIFRoaXMgdmFsdWUgZGVmYXVsdHMgdG8gc2VydmljZSBkZWZhdWx0XG4gICAqIGlmIG5vdCBzcGVjaWZpZWQuIElmIHNwZWNpZmllZCwgdGhpcyB2YWx1ZSBNVVNUIGJlIGdyZWF0ZXIgdGhhbiBvciBlcXVhbCB0byAxLlxuICAgKi9cbiAgbWF4RGVsYXk/OiBudW1iZXI7XG59XG5cbi8qKlxuICogQHByaXZhdGVcbiAqL1xuZXhwb3J0IGNvbnN0IHdhaXRlclNlcnZpY2VEZWZhdWx0cyA9IHtcbiAgbWluRGVsYXk6IDIsXG4gIG1heERlbGF5OiAxMjAsXG59O1xuXG4vKipcbiAqIEBwcml2YXRlXG4gKi9cbmV4cG9ydCB0eXBlIFdhaXRlck9wdGlvbnM8Q2xpZW50PiA9IFdhaXRlckNvbmZpZ3VyYXRpb248Q2xpZW50PiAmXG4gIFJlcXVpcmVkPFBpY2s8V2FpdGVyQ29uZmlndXJhdGlvbjxDbGllbnQ+LCBcIm1pbkRlbGF5XCIgfCBcIm1heERlbGF5XCI+PjtcblxuZXhwb3J0IGVudW0gV2FpdGVyU3RhdGUge1xuICBBQk9SVEVEID0gXCJBQk9SVEVEXCIsXG4gIEZBSUxVUkUgPSBcIkZBSUxVUkVcIixcbiAgU1VDQ0VTUyA9IFwiU1VDQ0VTU1wiLFxuICBSRVRSWSA9IFwiUkVUUllcIixcbiAgVElNRU9VVCA9IFwiVElNRU9VVFwiLFxufVxuXG5leHBvcnQgdHlwZSBXYWl0ZXJSZXN1bHQgPSB7XG4gIHN0YXRlOiBXYWl0ZXJTdGF0ZTtcbn07XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/util-waiter/dist/es/waiter.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/xml-builder/dist/es/XmlNode.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-sdk/xml-builder/dist/es/XmlNode.js ***! \**************************************************************/ /*! exports provided: XmlNode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XmlNode\", function() { return XmlNode; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _escape_attribute__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./escape-attribute */ \"./node_modules/@aws-sdk/xml-builder/dist/es/escape-attribute.js\");\n\n\n/**\n * Represents an XML node.\n */\nvar XmlNode = /** @class */ (function () {\n function XmlNode(name, children) {\n if (children === void 0) { children = []; }\n this.name = name;\n this.children = children;\n this.attributes = {};\n }\n XmlNode.prototype.withName = function (name) {\n this.name = name;\n return this;\n };\n XmlNode.prototype.addAttribute = function (name, value) {\n this.attributes[name] = value;\n return this;\n };\n XmlNode.prototype.addChildNode = function (child) {\n this.children.push(child);\n return this;\n };\n XmlNode.prototype.removeAttribute = function (name) {\n delete this.attributes[name];\n return this;\n };\n XmlNode.prototype.toString = function () {\n var e_1, _a;\n var hasChildren = Boolean(this.children.length);\n var xmlText = \"<\" + this.name;\n // add attributes\n var attributes = this.attributes;\n try {\n for (var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__values\"])(Object.keys(attributes)), _c = _b.next(); !_c.done; _c = _b.next()) {\n var attributeName = _c.value;\n var attribute = attributes[attributeName];\n if (typeof attribute !== \"undefined\" && attribute !== null) {\n xmlText += \" \" + attributeName + \"=\\\"\" + Object(_escape_attribute__WEBPACK_IMPORTED_MODULE_1__[\"escapeAttribute\"])(\"\" + attribute) + \"\\\"\";\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\n }\n finally { if (e_1) throw e_1.error; }\n }\n return (xmlText += !hasChildren ? \"/>\" : \">\" + this.children.map(function (c) { return c.toString(); }).join(\"\") + \"\");\n };\n return XmlNode;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiWG1sTm9kZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9YbWxOb2RlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFHckQ7O0dBRUc7QUFDSDtJQUdFLGlCQUFvQixJQUFZLEVBQWtCLFFBQTJCO1FBQTNCLHlCQUFBLEVBQUEsYUFBMkI7UUFBekQsU0FBSSxHQUFKLElBQUksQ0FBUTtRQUFrQixhQUFRLEdBQVIsUUFBUSxDQUFtQjtRQUZyRSxlQUFVLEdBQTRCLEVBQUUsQ0FBQztJQUUrQixDQUFDO0lBRWpGLDBCQUFRLEdBQVIsVUFBUyxJQUFZO1FBQ25CLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDO1FBQ2pCLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQztJQUVELDhCQUFZLEdBQVosVUFBYSxJQUFZLEVBQUUsS0FBVTtRQUNuQyxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxHQUFHLEtBQUssQ0FBQztRQUM5QixPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFFRCw4QkFBWSxHQUFaLFVBQWEsS0FBaUI7UUFDNUIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDMUIsT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO0lBRUQsaUNBQWUsR0FBZixVQUFnQixJQUFZO1FBQzFCLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUM3QixPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFFRCwwQkFBUSxHQUFSOztRQUNFLElBQU0sV0FBVyxHQUFHLE9BQU8sQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBQ2xELElBQUksT0FBTyxHQUFHLE1BQUksSUFBSSxDQUFDLElBQU0sQ0FBQztRQUM5QixpQkFBaUI7UUFDakIsSUFBTSxVQUFVLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQzs7WUFDbkMsS0FBNEIsSUFBQSxLQUFBLFNBQUEsTUFBTSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQSxnQkFBQSw0QkFBRTtnQkFBaEQsSUFBTSxhQUFhLFdBQUE7Z0JBQ3RCLElBQU0sU0FBUyxHQUFHLFVBQVUsQ0FBQyxhQUFhLENBQUMsQ0FBQztnQkFDNUMsSUFBSSxPQUFPLFNBQVMsS0FBSyxXQUFXLElBQUksU0FBUyxLQUFLLElBQUksRUFBRTtvQkFDMUQsT0FBTyxJQUFJLE1BQUksYUFBYSxXQUFLLGVBQWUsQ0FBQyxFQUFFLEdBQUcsU0FBUyxDQUFDLE9BQUcsQ0FBQztpQkFDckU7YUFDRjs7Ozs7Ozs7O1FBRUQsT0FBTyxDQUFDLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxNQUFJLElBQUksQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLFVBQUMsQ0FBQyxJQUFLLE9BQUEsQ0FBQyxDQUFDLFFBQVEsRUFBRSxFQUFaLENBQVksQ0FBQyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsVUFBSyxJQUFJLENBQUMsSUFBSSxNQUFHLENBQUMsQ0FBQztJQUNqSCxDQUFDO0lBQ0gsY0FBQztBQUFELENBQUMsQUF2Q0QsSUF1Q0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBlc2NhcGVBdHRyaWJ1dGUgfSBmcm9tIFwiLi9lc2NhcGUtYXR0cmlidXRlXCI7XG5pbXBvcnQgeyBTdHJpbmdhYmxlIH0gZnJvbSBcIi4vc3RyaW5nYWJsZVwiO1xuXG4vKipcbiAqIFJlcHJlc2VudHMgYW4gWE1MIG5vZGUuXG4gKi9cbmV4cG9ydCBjbGFzcyBYbWxOb2RlIHtcbiAgcHJpdmF0ZSBhdHRyaWJ1dGVzOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSA9IHt9O1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgbmFtZTogc3RyaW5nLCBwdWJsaWMgcmVhZG9ubHkgY2hpbGRyZW46IFN0cmluZ2FibGVbXSA9IFtdKSB7fVxuXG4gIHdpdGhOYW1lKG5hbWU6IHN0cmluZyk6IFhtbE5vZGUge1xuICAgIHRoaXMubmFtZSA9IG5hbWU7XG4gICAgcmV0dXJuIHRoaXM7XG4gIH1cblxuICBhZGRBdHRyaWJ1dGUobmFtZTogc3RyaW5nLCB2YWx1ZTogYW55KTogWG1sTm9kZSB7XG4gICAgdGhpcy5hdHRyaWJ1dGVzW25hbWVdID0gdmFsdWU7XG4gICAgcmV0dXJuIHRoaXM7XG4gIH1cblxuICBhZGRDaGlsZE5vZGUoY2hpbGQ6IFN0cmluZ2FibGUpOiBYbWxOb2RlIHtcbiAgICB0aGlzLmNoaWxkcmVuLnB1c2goY2hpbGQpO1xuICAgIHJldHVybiB0aGlzO1xuICB9XG5cbiAgcmVtb3ZlQXR0cmlidXRlKG5hbWU6IHN0cmluZyk6IFhtbE5vZGUge1xuICAgIGRlbGV0ZSB0aGlzLmF0dHJpYnV0ZXNbbmFtZV07XG4gICAgcmV0dXJuIHRoaXM7XG4gIH1cblxuICB0b1N0cmluZygpOiBzdHJpbmcge1xuICAgIGNvbnN0IGhhc0NoaWxkcmVuID0gQm9vbGVhbih0aGlzLmNoaWxkcmVuLmxlbmd0aCk7XG4gICAgbGV0IHhtbFRleHQgPSBgPCR7dGhpcy5uYW1lfWA7XG4gICAgLy8gYWRkIGF0dHJpYnV0ZXNcbiAgICBjb25zdCBhdHRyaWJ1dGVzID0gdGhpcy5hdHRyaWJ1dGVzO1xuICAgIGZvciAoY29uc3QgYXR0cmlidXRlTmFtZSBvZiBPYmplY3Qua2V5cyhhdHRyaWJ1dGVzKSkge1xuICAgICAgY29uc3QgYXR0cmlidXRlID0gYXR0cmlidXRlc1thdHRyaWJ1dGVOYW1lXTtcbiAgICAgIGlmICh0eXBlb2YgYXR0cmlidXRlICE9PSBcInVuZGVmaW5lZFwiICYmIGF0dHJpYnV0ZSAhPT0gbnVsbCkge1xuICAgICAgICB4bWxUZXh0ICs9IGAgJHthdHRyaWJ1dGVOYW1lfT1cIiR7ZXNjYXBlQXR0cmlidXRlKFwiXCIgKyBhdHRyaWJ1dGUpfVwiYDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICByZXR1cm4gKHhtbFRleHQgKz0gIWhhc0NoaWxkcmVuID8gXCIvPlwiIDogYD4ke3RoaXMuY2hpbGRyZW4ubWFwKChjKSA9PiBjLnRvU3RyaW5nKCkpLmpvaW4oXCJcIil9PC8ke3RoaXMubmFtZX0+YCk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/xml-builder/dist/es/XmlNode.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/xml-builder/dist/es/XmlText.js": /*!**************************************************************!*\ !*** ./node_modules/@aws-sdk/xml-builder/dist/es/XmlText.js ***! \**************************************************************/ /*! exports provided: XmlText */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"XmlText\", function() { return XmlText; });\n/* harmony import */ var _escape_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./escape-element */ \"./node_modules/@aws-sdk/xml-builder/dist/es/escape-element.js\");\n\n/**\n * Represents an XML text value.\n */\nvar XmlText = /** @class */ (function () {\n function XmlText(value) {\n this.value = value;\n }\n XmlText.prototype.toString = function () {\n return Object(_escape_element__WEBPACK_IMPORTED_MODULE_0__[\"escapeElement\"])(\"\" + this.value);\n };\n return XmlText;\n}());\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiWG1sVGV4dC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9YbWxUZXh0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUVqRDs7R0FFRztBQUNIO0lBQ0UsaUJBQW9CLEtBQWE7UUFBYixVQUFLLEdBQUwsS0FBSyxDQUFRO0lBQUcsQ0FBQztJQUVyQywwQkFBUSxHQUFSO1FBQ0UsT0FBTyxhQUFhLENBQUMsRUFBRSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN4QyxDQUFDO0lBQ0gsY0FBQztBQUFELENBQUMsQUFORCxJQU1DIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgZXNjYXBlRWxlbWVudCB9IGZyb20gXCIuL2VzY2FwZS1lbGVtZW50XCI7XG5pbXBvcnQgeyBTdHJpbmdhYmxlIH0gZnJvbSBcIi4vc3RyaW5nYWJsZVwiO1xuLyoqXG4gKiBSZXByZXNlbnRzIGFuIFhNTCB0ZXh0IHZhbHVlLlxuICovXG5leHBvcnQgY2xhc3MgWG1sVGV4dCBpbXBsZW1lbnRzIFN0cmluZ2FibGUge1xuICBjb25zdHJ1Y3Rvcihwcml2YXRlIHZhbHVlOiBzdHJpbmcpIHt9XG5cbiAgdG9TdHJpbmcoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gZXNjYXBlRWxlbWVudChcIlwiICsgdGhpcy52YWx1ZSk7XG4gIH1cbn1cbiJdfQ==\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/xml-builder/dist/es/XmlText.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/xml-builder/dist/es/escape-attribute.js": /*!***********************************************************************!*\ !*** ./node_modules/@aws-sdk/xml-builder/dist/es/escape-attribute.js ***! \***********************************************************************/ /*! exports provided: escapeAttribute */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeAttribute\", function() { return escapeAttribute; });\n/**\n * Escapes characters that can not be in an XML attribute.\n */\nfunction escapeAttribute(value) {\n return value.replace(/&/g, \"&\").replace(//g, \">\").replace(/\"/g, \""\");\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNjYXBlLWF0dHJpYnV0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9lc2NhcGUtYXR0cmlidXRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxVQUFVLGVBQWUsQ0FBQyxLQUFhO0lBQzNDLE9BQU8sS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsT0FBTyxDQUFDLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxNQUFNLENBQUMsQ0FBQyxPQUFPLENBQUMsSUFBSSxFQUFFLE1BQU0sQ0FBQyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsUUFBUSxDQUFDLENBQUM7QUFDMUcsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRXNjYXBlcyBjaGFyYWN0ZXJzIHRoYXQgY2FuIG5vdCBiZSBpbiBhbiBYTUwgYXR0cmlidXRlLlxuICovXG5leHBvcnQgZnVuY3Rpb24gZXNjYXBlQXR0cmlidXRlKHZhbHVlOiBzdHJpbmcpOiBzdHJpbmcge1xuICByZXR1cm4gdmFsdWUucmVwbGFjZSgvJi9nLCBcIiZhbXA7XCIpLnJlcGxhY2UoLzwvZywgXCImbHQ7XCIpLnJlcGxhY2UoLz4vZywgXCImZ3Q7XCIpLnJlcGxhY2UoL1wiL2csIFwiJnF1b3Q7XCIpO1xufVxuIl19\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/xml-builder/dist/es/escape-attribute.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/xml-builder/dist/es/escape-element.js": /*!*********************************************************************!*\ !*** ./node_modules/@aws-sdk/xml-builder/dist/es/escape-element.js ***! \*********************************************************************/ /*! exports provided: escapeElement */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"escapeElement\", function() { return escapeElement; });\n/**\n * Escapes characters that can not be in an XML element.\n */\nfunction escapeElement(value) {\n return value.replace(/&/g, \"&\").replace(//g, \">\");\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNjYXBlLWVsZW1lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZXNjYXBlLWVsZW1lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFDSCxNQUFNLFVBQVUsYUFBYSxDQUFDLEtBQWE7SUFDekMsT0FBTyxLQUFLLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxPQUFPLENBQUMsQ0FBQyxPQUFPLENBQUMsSUFBSSxFQUFFLE1BQU0sQ0FBQyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsTUFBTSxDQUFDLENBQUM7QUFDbEYsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogRXNjYXBlcyBjaGFyYWN0ZXJzIHRoYXQgY2FuIG5vdCBiZSBpbiBhbiBYTUwgZWxlbWVudC5cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGVzY2FwZUVsZW1lbnQodmFsdWU6IHN0cmluZyk6IHN0cmluZyB7XG4gIHJldHVybiB2YWx1ZS5yZXBsYWNlKC8mL2csIFwiJmFtcDtcIikucmVwbGFjZSgvPC9nLCBcIiZsdDtcIikucmVwbGFjZSgvPi9nLCBcIiZndDtcIik7XG59XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/xml-builder/dist/es/escape-element.js?"); /***/ }), /***/ "./node_modules/@aws-sdk/xml-builder/dist/es/index.js": /*!************************************************************!*\ !*** ./node_modules/@aws-sdk/xml-builder/dist/es/index.js ***! \************************************************************/ /*! exports provided: XmlNode, XmlText */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _XmlNode__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./XmlNode */ \"./node_modules/@aws-sdk/xml-builder/dist/es/XmlNode.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XmlNode\", function() { return _XmlNode__WEBPACK_IMPORTED_MODULE_0__[\"XmlNode\"]; });\n\n/* harmony import */ var _XmlText__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./XmlText */ \"./node_modules/@aws-sdk/xml-builder/dist/es/XmlText.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XmlText\", function() { return _XmlText__WEBPACK_IMPORTED_MODULE_1__[\"XmlText\"]; });\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxXQUFXLENBQUM7QUFDMUIsY0FBYyxXQUFXLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLi9YbWxOb2RlXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9YbWxUZXh0XCI7XG4iXX0=\n\n//# sourceURL=webpack:///./node_modules/@aws-sdk/xml-builder/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@turf/boolean-clockwise/dist/es/index.js": /*!***************************************************************!*\ !*** ./node_modules/@turf/boolean-clockwise/dist/es/index.js ***! \***************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return booleanClockwise; });\n/* harmony import */ var _turf_invariant__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @turf/invariant */ \"./node_modules/@turf/invariant/dist/es/index.js\");\n\n/**\n * Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise.\n *\n * @name booleanClockwise\n * @param {Feature|LineString|Array>} line to be evaluated\n * @returns {boolean} true/false\n * @example\n * var clockwiseRing = turf.lineString([[0,0],[1,1],[1,0],[0,0]]);\n * var counterClockwiseRing = turf.lineString([[0,0],[1,0],[1,1],[0,0]]);\n *\n * turf.booleanClockwise(clockwiseRing)\n * //=true\n * turf.booleanClockwise(counterClockwiseRing)\n * //=false\n */\nfunction booleanClockwise(line) {\n var ring = Object(_turf_invariant__WEBPACK_IMPORTED_MODULE_0__[\"getCoords\"])(line);\n var sum = 0;\n var i = 1;\n var prev;\n var cur;\n while (i < ring.length) {\n prev = cur || ring[0];\n cur = ring[i];\n sum += (cur[0] - prev[0]) * (cur[1] + prev[1]);\n i++;\n }\n return sum > 0;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@turf/boolean-clockwise/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@turf/helpers/dist/es/index.js": /*!*****************************************************!*\ !*** ./node_modules/@turf/helpers/dist/es/index.js ***! \*****************************************************/ /*! exports provided: earthRadius, factors, unitsFactors, areaFactors, feature, geometry, point, points, polygon, polygons, lineString, lineStrings, featureCollection, multiLineString, multiPoint, multiPolygon, geometryCollection, round, radiansToLength, lengthToRadians, lengthToDegrees, bearingToAzimuth, radiansToDegrees, degreesToRadians, convertLength, convertArea, isNumber, isObject, validateBBox, validateId */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"earthRadius\", function() { return earthRadius; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"factors\", function() { return factors; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unitsFactors\", function() { return unitsFactors; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"areaFactors\", function() { return areaFactors; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"feature\", function() { return feature; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"geometry\", function() { return geometry; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"point\", function() { return point; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"points\", function() { return points; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"polygon\", function() { return polygon; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"polygons\", function() { return polygons; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"lineString\", function() { return lineString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"lineStrings\", function() { return lineStrings; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"featureCollection\", function() { return featureCollection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"multiLineString\", function() { return multiLineString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"multiPoint\", function() { return multiPoint; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"multiPolygon\", function() { return multiPolygon; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"geometryCollection\", function() { return geometryCollection; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"round\", function() { return round; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"radiansToLength\", function() { return radiansToLength; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"lengthToRadians\", function() { return lengthToRadians; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"lengthToDegrees\", function() { return lengthToDegrees; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"bearingToAzimuth\", function() { return bearingToAzimuth; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"radiansToDegrees\", function() { return radiansToDegrees; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"degreesToRadians\", function() { return degreesToRadians; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"convertLength\", function() { return convertLength; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"convertArea\", function() { return convertArea; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isNumber\", function() { return isNumber; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isObject\", function() { return isObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateBBox\", function() { return validateBBox; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateId\", function() { return validateId; });\n/**\n * @module helpers\n */\n/**\n * Earth Radius used with the Harvesine formula and approximates using a spherical (non-ellipsoid) Earth.\n *\n * @memberof helpers\n * @type {number}\n */\nvar earthRadius = 6371008.8;\n/**\n * Unit of measurement factors using a spherical (non-ellipsoid) earth radius.\n *\n * @memberof helpers\n * @type {Object}\n */\nvar factors = {\n centimeters: earthRadius * 100,\n centimetres: earthRadius * 100,\n degrees: earthRadius / 111325,\n feet: earthRadius * 3.28084,\n inches: earthRadius * 39.37,\n kilometers: earthRadius / 1000,\n kilometres: earthRadius / 1000,\n meters: earthRadius,\n metres: earthRadius,\n miles: earthRadius / 1609.344,\n millimeters: earthRadius * 1000,\n millimetres: earthRadius * 1000,\n nauticalmiles: earthRadius / 1852,\n radians: 1,\n yards: earthRadius * 1.0936,\n};\n/**\n * Units of measurement factors based on 1 meter.\n *\n * @memberof helpers\n * @type {Object}\n */\nvar unitsFactors = {\n centimeters: 100,\n centimetres: 100,\n degrees: 1 / 111325,\n feet: 3.28084,\n inches: 39.37,\n kilometers: 1 / 1000,\n kilometres: 1 / 1000,\n meters: 1,\n metres: 1,\n miles: 1 / 1609.344,\n millimeters: 1000,\n millimetres: 1000,\n nauticalmiles: 1 / 1852,\n radians: 1 / earthRadius,\n yards: 1.0936133,\n};\n/**\n * Area of measurement factors based on 1 square meter.\n *\n * @memberof helpers\n * @type {Object}\n */\nvar areaFactors = {\n acres: 0.000247105,\n centimeters: 10000,\n centimetres: 10000,\n feet: 10.763910417,\n hectares: 0.0001,\n inches: 1550.003100006,\n kilometers: 0.000001,\n kilometres: 0.000001,\n meters: 1,\n metres: 1,\n miles: 3.86e-7,\n millimeters: 1000000,\n millimetres: 1000000,\n yards: 1.195990046,\n};\n/**\n * Wraps a GeoJSON {@link Geometry} in a GeoJSON {@link Feature}.\n *\n * @name feature\n * @param {Geometry} geometry input geometry\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the Feature\n * @returns {Feature} a GeoJSON Feature\n * @example\n * var geometry = {\n * \"type\": \"Point\",\n * \"coordinates\": [110, 50]\n * };\n *\n * var feature = turf.feature(geometry);\n *\n * //=feature\n */\nfunction feature(geom, properties, options) {\n if (options === void 0) { options = {}; }\n var feat = { type: \"Feature\" };\n if (options.id === 0 || options.id) {\n feat.id = options.id;\n }\n if (options.bbox) {\n feat.bbox = options.bbox;\n }\n feat.properties = properties || {};\n feat.geometry = geom;\n return feat;\n}\n/**\n * Creates a GeoJSON {@link Geometry} from a Geometry string type & coordinates.\n * For GeometryCollection type use `helpers.geometryCollection`\n *\n * @name geometry\n * @param {string} type Geometry Type\n * @param {Array} coordinates Coordinates\n * @param {Object} [options={}] Optional Parameters\n * @returns {Geometry} a GeoJSON Geometry\n * @example\n * var type = \"Point\";\n * var coordinates = [110, 50];\n * var geometry = turf.geometry(type, coordinates);\n * // => geometry\n */\nfunction geometry(type, coordinates, _options) {\n if (_options === void 0) { _options = {}; }\n switch (type) {\n case \"Point\":\n return point(coordinates).geometry;\n case \"LineString\":\n return lineString(coordinates).geometry;\n case \"Polygon\":\n return polygon(coordinates).geometry;\n case \"MultiPoint\":\n return multiPoint(coordinates).geometry;\n case \"MultiLineString\":\n return multiLineString(coordinates).geometry;\n case \"MultiPolygon\":\n return multiPolygon(coordinates).geometry;\n default:\n throw new Error(type + \" is invalid\");\n }\n}\n/**\n * Creates a {@link Point} {@link Feature} from a Position.\n *\n * @name point\n * @param {Array} coordinates longitude, latitude position (each in decimal degrees)\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the Feature\n * @returns {Feature} a Point feature\n * @example\n * var point = turf.point([-75.343, 39.984]);\n *\n * //=point\n */\nfunction point(coordinates, properties, options) {\n if (options === void 0) { options = {}; }\n if (!coordinates) {\n throw new Error(\"coordinates is required\");\n }\n if (!Array.isArray(coordinates)) {\n throw new Error(\"coordinates must be an Array\");\n }\n if (coordinates.length < 2) {\n throw new Error(\"coordinates must be at least 2 numbers long\");\n }\n if (!isNumber(coordinates[0]) || !isNumber(coordinates[1])) {\n throw new Error(\"coordinates must contain numbers\");\n }\n var geom = {\n type: \"Point\",\n coordinates: coordinates,\n };\n return feature(geom, properties, options);\n}\n/**\n * Creates a {@link Point} {@link FeatureCollection} from an Array of Point coordinates.\n *\n * @name points\n * @param {Array>} coordinates an array of Points\n * @param {Object} [properties={}] Translate these properties to each Feature\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north]\n * associated with the FeatureCollection\n * @param {string|number} [options.id] Identifier associated with the FeatureCollection\n * @returns {FeatureCollection} Point Feature\n * @example\n * var points = turf.points([\n * [-75, 39],\n * [-80, 45],\n * [-78, 50]\n * ]);\n *\n * //=points\n */\nfunction points(coordinates, properties, options) {\n if (options === void 0) { options = {}; }\n return featureCollection(coordinates.map(function (coords) {\n return point(coords, properties);\n }), options);\n}\n/**\n * Creates a {@link Polygon} {@link Feature} from an Array of LinearRings.\n *\n * @name polygon\n * @param {Array>>} coordinates an array of LinearRings\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the Feature\n * @returns {Feature} Polygon Feature\n * @example\n * var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], { name: 'poly1' });\n *\n * //=polygon\n */\nfunction polygon(coordinates, properties, options) {\n if (options === void 0) { options = {}; }\n for (var _i = 0, coordinates_1 = coordinates; _i < coordinates_1.length; _i++) {\n var ring = coordinates_1[_i];\n if (ring.length < 4) {\n throw new Error(\"Each LinearRing of a Polygon must have 4 or more Positions.\");\n }\n for (var j = 0; j < ring[ring.length - 1].length; j++) {\n // Check if first point of Polygon contains two numbers\n if (ring[ring.length - 1][j] !== ring[0][j]) {\n throw new Error(\"First and last Position are not equivalent.\");\n }\n }\n }\n var geom = {\n type: \"Polygon\",\n coordinates: coordinates,\n };\n return feature(geom, properties, options);\n}\n/**\n * Creates a {@link Polygon} {@link FeatureCollection} from an Array of Polygon coordinates.\n *\n * @name polygons\n * @param {Array>>>} coordinates an array of Polygon coordinates\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the FeatureCollection\n * @returns {FeatureCollection} Polygon FeatureCollection\n * @example\n * var polygons = turf.polygons([\n * [[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]],\n * [[[-15, 42], [-14, 46], [-12, 41], [-17, 44], [-15, 42]]],\n * ]);\n *\n * //=polygons\n */\nfunction polygons(coordinates, properties, options) {\n if (options === void 0) { options = {}; }\n return featureCollection(coordinates.map(function (coords) {\n return polygon(coords, properties);\n }), options);\n}\n/**\n * Creates a {@link LineString} {@link Feature} from an Array of Positions.\n *\n * @name lineString\n * @param {Array>} coordinates an array of Positions\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the Feature\n * @returns {Feature} LineString Feature\n * @example\n * var linestring1 = turf.lineString([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], {name: 'line 1'});\n * var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], {name: 'line 2'});\n *\n * //=linestring1\n * //=linestring2\n */\nfunction lineString(coordinates, properties, options) {\n if (options === void 0) { options = {}; }\n if (coordinates.length < 2) {\n throw new Error(\"coordinates must be an array of two or more positions\");\n }\n var geom = {\n type: \"LineString\",\n coordinates: coordinates,\n };\n return feature(geom, properties, options);\n}\n/**\n * Creates a {@link LineString} {@link FeatureCollection} from an Array of LineString coordinates.\n *\n * @name lineStrings\n * @param {Array>>} coordinates an array of LinearRings\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north]\n * associated with the FeatureCollection\n * @param {string|number} [options.id] Identifier associated with the FeatureCollection\n * @returns {FeatureCollection} LineString FeatureCollection\n * @example\n * var linestrings = turf.lineStrings([\n * [[-24, 63], [-23, 60], [-25, 65], [-20, 69]],\n * [[-14, 43], [-13, 40], [-15, 45], [-10, 49]]\n * ]);\n *\n * //=linestrings\n */\nfunction lineStrings(coordinates, properties, options) {\n if (options === void 0) { options = {}; }\n return featureCollection(coordinates.map(function (coords) {\n return lineString(coords, properties);\n }), options);\n}\n/**\n * Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection}.\n *\n * @name featureCollection\n * @param {Feature[]} features input features\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the Feature\n * @returns {FeatureCollection} FeatureCollection of Features\n * @example\n * var locationA = turf.point([-75.343, 39.984], {name: 'Location A'});\n * var locationB = turf.point([-75.833, 39.284], {name: 'Location B'});\n * var locationC = turf.point([-75.534, 39.123], {name: 'Location C'});\n *\n * var collection = turf.featureCollection([\n * locationA,\n * locationB,\n * locationC\n * ]);\n *\n * //=collection\n */\nfunction featureCollection(features, options) {\n if (options === void 0) { options = {}; }\n var fc = { type: \"FeatureCollection\" };\n if (options.id) {\n fc.id = options.id;\n }\n if (options.bbox) {\n fc.bbox = options.bbox;\n }\n fc.features = features;\n return fc;\n}\n/**\n * Creates a {@link Feature} based on a\n * coordinate array. Properties can be added optionally.\n *\n * @name multiLineString\n * @param {Array>>} coordinates an array of LineStrings\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the Feature\n * @returns {Feature} a MultiLineString feature\n * @throws {Error} if no coordinates are passed\n * @example\n * var multiLine = turf.multiLineString([[[0,0],[10,10]]]);\n *\n * //=multiLine\n */\nfunction multiLineString(coordinates, properties, options) {\n if (options === void 0) { options = {}; }\n var geom = {\n type: \"MultiLineString\",\n coordinates: coordinates,\n };\n return feature(geom, properties, options);\n}\n/**\n * Creates a {@link Feature} based on a\n * coordinate array. Properties can be added optionally.\n *\n * @name multiPoint\n * @param {Array>} coordinates an array of Positions\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the Feature\n * @returns {Feature} a MultiPoint feature\n * @throws {Error} if no coordinates are passed\n * @example\n * var multiPt = turf.multiPoint([[0,0],[10,10]]);\n *\n * //=multiPt\n */\nfunction multiPoint(coordinates, properties, options) {\n if (options === void 0) { options = {}; }\n var geom = {\n type: \"MultiPoint\",\n coordinates: coordinates,\n };\n return feature(geom, properties, options);\n}\n/**\n * Creates a {@link Feature} based on a\n * coordinate array. Properties can be added optionally.\n *\n * @name multiPolygon\n * @param {Array>>>} coordinates an array of Polygons\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the Feature\n * @returns {Feature} a multipolygon feature\n * @throws {Error} if no coordinates are passed\n * @example\n * var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]);\n *\n * //=multiPoly\n *\n */\nfunction multiPolygon(coordinates, properties, options) {\n if (options === void 0) { options = {}; }\n var geom = {\n type: \"MultiPolygon\",\n coordinates: coordinates,\n };\n return feature(geom, properties, options);\n}\n/**\n * Creates a {@link Feature} based on a\n * coordinate array. Properties can be added optionally.\n *\n * @name geometryCollection\n * @param {Array} geometries an array of GeoJSON Geometries\n * @param {Object} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {string|number} [options.id] Identifier associated with the Feature\n * @returns {Feature} a GeoJSON GeometryCollection Feature\n * @example\n * var pt = turf.geometry(\"Point\", [100, 0]);\n * var line = turf.geometry(\"LineString\", [[101, 0], [102, 1]]);\n * var collection = turf.geometryCollection([pt, line]);\n *\n * // => collection\n */\nfunction geometryCollection(geometries, properties, options) {\n if (options === void 0) { options = {}; }\n var geom = {\n type: \"GeometryCollection\",\n geometries: geometries,\n };\n return feature(geom, properties, options);\n}\n/**\n * Round number to precision\n *\n * @param {number} num Number\n * @param {number} [precision=0] Precision\n * @returns {number} rounded number\n * @example\n * turf.round(120.4321)\n * //=120\n *\n * turf.round(120.4321, 2)\n * //=120.43\n */\nfunction round(num, precision) {\n if (precision === void 0) { precision = 0; }\n if (precision && !(precision >= 0)) {\n throw new Error(\"precision must be a positive number\");\n }\n var multiplier = Math.pow(10, precision || 0);\n return Math.round(num * multiplier) / multiplier;\n}\n/**\n * Convert a distance measurement (assuming a spherical Earth) from radians to a more friendly unit.\n * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet\n *\n * @name radiansToLength\n * @param {number} radians in radians across the sphere\n * @param {string} [units=\"kilometers\"] can be degrees, radians, miles, inches, yards, metres,\n * meters, kilometres, kilometers.\n * @returns {number} distance\n */\nfunction radiansToLength(radians, units) {\n if (units === void 0) { units = \"kilometers\"; }\n var factor = factors[units];\n if (!factor) {\n throw new Error(units + \" units is invalid\");\n }\n return radians * factor;\n}\n/**\n * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into radians\n * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet\n *\n * @name lengthToRadians\n * @param {number} distance in real units\n * @param {string} [units=\"kilometers\"] can be degrees, radians, miles, inches, yards, metres,\n * meters, kilometres, kilometers.\n * @returns {number} radians\n */\nfunction lengthToRadians(distance, units) {\n if (units === void 0) { units = \"kilometers\"; }\n var factor = factors[units];\n if (!factor) {\n throw new Error(units + \" units is invalid\");\n }\n return distance / factor;\n}\n/**\n * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into degrees\n * Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, kilometres, feet\n *\n * @name lengthToDegrees\n * @param {number} distance in real units\n * @param {string} [units=\"kilometers\"] can be degrees, radians, miles, inches, yards, metres,\n * meters, kilometres, kilometers.\n * @returns {number} degrees\n */\nfunction lengthToDegrees(distance, units) {\n return radiansToDegrees(lengthToRadians(distance, units));\n}\n/**\n * Converts any bearing angle from the north line direction (positive clockwise)\n * and returns an angle between 0-360 degrees (positive clockwise), 0 being the north line\n *\n * @name bearingToAzimuth\n * @param {number} bearing angle, between -180 and +180 degrees\n * @returns {number} angle between 0 and 360 degrees\n */\nfunction bearingToAzimuth(bearing) {\n var angle = bearing % 360;\n if (angle < 0) {\n angle += 360;\n }\n return angle;\n}\n/**\n * Converts an angle in radians to degrees\n *\n * @name radiansToDegrees\n * @param {number} radians angle in radians\n * @returns {number} degrees between 0 and 360 degrees\n */\nfunction radiansToDegrees(radians) {\n var degrees = radians % (2 * Math.PI);\n return (degrees * 180) / Math.PI;\n}\n/**\n * Converts an angle in degrees to radians\n *\n * @name degreesToRadians\n * @param {number} degrees angle between 0 and 360 degrees\n * @returns {number} angle in radians\n */\nfunction degreesToRadians(degrees) {\n var radians = degrees % 360;\n return (radians * Math.PI) / 180;\n}\n/**\n * Converts a length to the requested unit.\n * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet\n *\n * @param {number} length to be converted\n * @param {Units} [originalUnit=\"kilometers\"] of the length\n * @param {Units} [finalUnit=\"kilometers\"] returned unit\n * @returns {number} the converted length\n */\nfunction convertLength(length, originalUnit, finalUnit) {\n if (originalUnit === void 0) { originalUnit = \"kilometers\"; }\n if (finalUnit === void 0) { finalUnit = \"kilometers\"; }\n if (!(length >= 0)) {\n throw new Error(\"length must be a positive number\");\n }\n return radiansToLength(lengthToRadians(length, originalUnit), finalUnit);\n}\n/**\n * Converts a area to the requested unit.\n * Valid units: kilometers, kilometres, meters, metres, centimetres, millimeters, acres, miles, yards, feet, inches, hectares\n * @param {number} area to be converted\n * @param {Units} [originalUnit=\"meters\"] of the distance\n * @param {Units} [finalUnit=\"kilometers\"] returned unit\n * @returns {number} the converted area\n */\nfunction convertArea(area, originalUnit, finalUnit) {\n if (originalUnit === void 0) { originalUnit = \"meters\"; }\n if (finalUnit === void 0) { finalUnit = \"kilometers\"; }\n if (!(area >= 0)) {\n throw new Error(\"area must be a positive number\");\n }\n var startFactor = areaFactors[originalUnit];\n if (!startFactor) {\n throw new Error(\"invalid original units\");\n }\n var finalFactor = areaFactors[finalUnit];\n if (!finalFactor) {\n throw new Error(\"invalid final units\");\n }\n return (area / startFactor) * finalFactor;\n}\n/**\n * isNumber\n *\n * @param {*} num Number to validate\n * @returns {boolean} true/false\n * @example\n * turf.isNumber(123)\n * //=true\n * turf.isNumber('foo')\n * //=false\n */\nfunction isNumber(num) {\n return !isNaN(num) && num !== null && !Array.isArray(num);\n}\n/**\n * isObject\n *\n * @param {*} input variable to validate\n * @returns {boolean} true/false\n * @example\n * turf.isObject({elevation: 10})\n * //=true\n * turf.isObject('foo')\n * //=false\n */\nfunction isObject(input) {\n return !!input && input.constructor === Object;\n}\n/**\n * Validate BBox\n *\n * @private\n * @param {Array} bbox BBox to validate\n * @returns {void}\n * @throws Error if BBox is not valid\n * @example\n * validateBBox([-180, -40, 110, 50])\n * //=OK\n * validateBBox([-180, -40])\n * //=Error\n * validateBBox('Foo')\n * //=Error\n * validateBBox(5)\n * //=Error\n * validateBBox(null)\n * //=Error\n * validateBBox(undefined)\n * //=Error\n */\nfunction validateBBox(bbox) {\n if (!bbox) {\n throw new Error(\"bbox is required\");\n }\n if (!Array.isArray(bbox)) {\n throw new Error(\"bbox must be an Array\");\n }\n if (bbox.length !== 4 && bbox.length !== 6) {\n throw new Error(\"bbox must be an Array of 4 or 6 numbers\");\n }\n bbox.forEach(function (num) {\n if (!isNumber(num)) {\n throw new Error(\"bbox must only contain numbers\");\n }\n });\n}\n/**\n * Validate Id\n *\n * @private\n * @param {string|number} id Id to validate\n * @returns {void}\n * @throws Error if Id is not valid\n * @example\n * validateId([-180, -40, 110, 50])\n * //=Error\n * validateId([-180, -40])\n * //=Error\n * validateId('Foo')\n * //=OK\n * validateId(5)\n * //=OK\n * validateId(null)\n * //=Error\n * validateId(undefined)\n * //=Error\n */\nfunction validateId(id) {\n if (!id) {\n throw new Error(\"id is required\");\n }\n if ([\"string\", \"number\"].indexOf(typeof id) === -1) {\n throw new Error(\"id must be a number or a string\");\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/@turf/helpers/dist/es/index.js?"); /***/ }), /***/ "./node_modules/@turf/invariant/dist/es/index.js": /*!*******************************************************!*\ !*** ./node_modules/@turf/invariant/dist/es/index.js ***! \*******************************************************/ /*! exports provided: getCoord, getCoords, containsNumber, geojsonType, featureOf, collectionOf, getGeom, getType */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCoord\", function() { return getCoord; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getCoords\", function() { return getCoords; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"containsNumber\", function() { return containsNumber; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"geojsonType\", function() { return geojsonType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"featureOf\", function() { return featureOf; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"collectionOf\", function() { return collectionOf; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getGeom\", function() { return getGeom; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getType\", function() { return getType; });\n/* harmony import */ var _turf_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @turf/helpers */ \"./node_modules/@turf/helpers/dist/es/index.js\");\n\n/**\n * Unwrap a coordinate from a Point Feature, Geometry or a single coordinate.\n *\n * @name getCoord\n * @param {Array|Geometry|Feature} coord GeoJSON Point or an Array of numbers\n * @returns {Array} coordinates\n * @example\n * var pt = turf.point([10, 10]);\n *\n * var coord = turf.getCoord(pt);\n * //= [10, 10]\n */\nfunction getCoord(coord) {\n if (!coord) {\n throw new Error(\"coord is required\");\n }\n if (!Array.isArray(coord)) {\n if (coord.type === \"Feature\" &&\n coord.geometry !== null &&\n coord.geometry.type === \"Point\") {\n return coord.geometry.coordinates;\n }\n if (coord.type === \"Point\") {\n return coord.coordinates;\n }\n }\n if (Array.isArray(coord) &&\n coord.length >= 2 &&\n !Array.isArray(coord[0]) &&\n !Array.isArray(coord[1])) {\n return coord;\n }\n throw new Error(\"coord must be GeoJSON Point or an Array of numbers\");\n}\n/**\n * Unwrap coordinates from a Feature, Geometry Object or an Array\n *\n * @name getCoords\n * @param {Array|Geometry|Feature} coords Feature, Geometry Object or an Array\n * @returns {Array} coordinates\n * @example\n * var poly = turf.polygon([[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]]);\n *\n * var coords = turf.getCoords(poly);\n * //= [[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]]\n */\nfunction getCoords(coords) {\n if (Array.isArray(coords)) {\n return coords;\n }\n // Feature\n if (coords.type === \"Feature\") {\n if (coords.geometry !== null) {\n return coords.geometry.coordinates;\n }\n }\n else {\n // Geometry\n if (coords.coordinates) {\n return coords.coordinates;\n }\n }\n throw new Error(\"coords must be GeoJSON Feature, Geometry Object or an Array\");\n}\n/**\n * Checks if coordinates contains a number\n *\n * @name containsNumber\n * @param {Array} coordinates GeoJSON Coordinates\n * @returns {boolean} true if Array contains a number\n */\nfunction containsNumber(coordinates) {\n if (coordinates.length > 1 &&\n Object(_turf_helpers__WEBPACK_IMPORTED_MODULE_0__[\"isNumber\"])(coordinates[0]) &&\n Object(_turf_helpers__WEBPACK_IMPORTED_MODULE_0__[\"isNumber\"])(coordinates[1])) {\n return true;\n }\n if (Array.isArray(coordinates[0]) && coordinates[0].length) {\n return containsNumber(coordinates[0]);\n }\n throw new Error(\"coordinates must only contain numbers\");\n}\n/**\n * Enforce expectations about types of GeoJSON objects for Turf.\n *\n * @name geojsonType\n * @param {GeoJSON} value any GeoJSON object\n * @param {string} type expected GeoJSON type\n * @param {string} name name of calling function\n * @throws {Error} if value is not the expected type.\n */\nfunction geojsonType(value, type, name) {\n if (!type || !name) {\n throw new Error(\"type and name required\");\n }\n if (!value || value.type !== type) {\n throw new Error(\"Invalid input to \" +\n name +\n \": must be a \" +\n type +\n \", given \" +\n value.type);\n }\n}\n/**\n * Enforce expectations about types of {@link Feature} inputs for Turf.\n * Internally this uses {@link geojsonType} to judge geometry types.\n *\n * @name featureOf\n * @param {Feature} feature a feature with an expected geometry type\n * @param {string} type expected GeoJSON type\n * @param {string} name name of calling function\n * @throws {Error} error if value is not the expected type.\n */\nfunction featureOf(feature, type, name) {\n if (!feature) {\n throw new Error(\"No feature passed\");\n }\n if (!name) {\n throw new Error(\".featureOf() requires a name\");\n }\n if (!feature || feature.type !== \"Feature\" || !feature.geometry) {\n throw new Error(\"Invalid input to \" + name + \", Feature with geometry required\");\n }\n if (!feature.geometry || feature.geometry.type !== type) {\n throw new Error(\"Invalid input to \" +\n name +\n \": must be a \" +\n type +\n \", given \" +\n feature.geometry.type);\n }\n}\n/**\n * Enforce expectations about types of {@link FeatureCollection} inputs for Turf.\n * Internally this uses {@link geojsonType} to judge geometry types.\n *\n * @name collectionOf\n * @param {FeatureCollection} featureCollection a FeatureCollection for which features will be judged\n * @param {string} type expected GeoJSON type\n * @param {string} name name of calling function\n * @throws {Error} if value is not the expected type.\n */\nfunction collectionOf(featureCollection, type, name) {\n if (!featureCollection) {\n throw new Error(\"No featureCollection passed\");\n }\n if (!name) {\n throw new Error(\".collectionOf() requires a name\");\n }\n if (!featureCollection || featureCollection.type !== \"FeatureCollection\") {\n throw new Error(\"Invalid input to \" + name + \", FeatureCollection required\");\n }\n for (var _i = 0, _a = featureCollection.features; _i < _a.length; _i++) {\n var feature = _a[_i];\n if (!feature || feature.type !== \"Feature\" || !feature.geometry) {\n throw new Error(\"Invalid input to \" + name + \", Feature with geometry required\");\n }\n if (!feature.geometry || feature.geometry.type !== type) {\n throw new Error(\"Invalid input to \" +\n name +\n \": must be a \" +\n type +\n \", given \" +\n feature.geometry.type);\n }\n }\n}\n/**\n * Get Geometry from Feature or Geometry Object\n *\n * @param {Feature|Geometry} geojson GeoJSON Feature or Geometry Object\n * @returns {Geometry|null} GeoJSON Geometry Object\n * @throws {Error} if geojson is not a Feature or Geometry Object\n * @example\n * var point = {\n * \"type\": \"Feature\",\n * \"properties\": {},\n * \"geometry\": {\n * \"type\": \"Point\",\n * \"coordinates\": [110, 40]\n * }\n * }\n * var geom = turf.getGeom(point)\n * //={\"type\": \"Point\", \"coordinates\": [110, 40]}\n */\nfunction getGeom(geojson) {\n if (geojson.type === \"Feature\") {\n return geojson.geometry;\n }\n return geojson;\n}\n/**\n * Get GeoJSON object's type, Geometry type is prioritize.\n *\n * @param {GeoJSON} geojson GeoJSON object\n * @param {string} [name=\"geojson\"] name of the variable to display in error message (unused)\n * @returns {string} GeoJSON type\n * @example\n * var point = {\n * \"type\": \"Feature\",\n * \"properties\": {},\n * \"geometry\": {\n * \"type\": \"Point\",\n * \"coordinates\": [110, 40]\n * }\n * }\n * var geom = turf.getType(point)\n * //=\"Point\"\n */\nfunction getType(geojson, _name) {\n if (geojson.type === \"FeatureCollection\") {\n return \"FeatureCollection\";\n }\n if (geojson.type === \"GeometryCollection\") {\n return \"GeometryCollection\";\n }\n if (geojson.type === \"Feature\" && geojson.geometry !== null) {\n return geojson.geometry.type;\n }\n return geojson.type;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@turf/invariant/dist/es/index.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/AuthenticationDetails.js": /*!*****************************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/AuthenticationDetails.js ***! \*****************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return AuthenticationDetails; });\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n/** @class */\nvar AuthenticationDetails = /*#__PURE__*/function () {\n /**\n * Constructs a new AuthenticationDetails object\n * @param {object=} data Creation options.\n * @param {string} data.Username User being authenticated.\n * @param {string} data.Password Plain-text password to authenticate with.\n * @param {(AttributeArg[])?} data.ValidationData Application extra metadata.\n * @param {(AttributeArg[])?} data.AuthParamaters Authentication paramaters for custom auth.\n */\n function AuthenticationDetails(data) {\n var _ref = data || {},\n ValidationData = _ref.ValidationData,\n Username = _ref.Username,\n Password = _ref.Password,\n AuthParameters = _ref.AuthParameters,\n ClientMetadata = _ref.ClientMetadata;\n this.validationData = ValidationData || {};\n this.authParameters = AuthParameters || {};\n this.clientMetadata = ClientMetadata || {};\n this.username = Username;\n this.password = Password;\n }\n\n /**\n * @returns {string} the record's username\n */\n var _proto = AuthenticationDetails.prototype;\n _proto.getUsername = function getUsername() {\n return this.username;\n }\n\n /**\n * @returns {string} the record's password\n */;\n _proto.getPassword = function getPassword() {\n return this.password;\n }\n\n /**\n * @returns {Array} the record's validationData\n */;\n _proto.getValidationData = function getValidationData() {\n return this.validationData;\n }\n\n /**\n * @returns {Array} the record's authParameters\n */;\n _proto.getAuthParameters = function getAuthParameters() {\n return this.authParameters;\n }\n\n /**\n * @returns {ClientMetadata} the clientMetadata for a Lambda trigger\n */;\n _proto.getClientMetadata = function getClientMetadata() {\n return this.clientMetadata;\n };\n return AuthenticationDetails;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/AuthenticationDetails.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/AuthenticationHelper.js": /*!****************************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/AuthenticationHelper.js ***! \****************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return AuthenticationHelper; });\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! buffer */ \"./node_modules/buffer/index.js\");\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(buffer__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var crypto_js_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! crypto-js/core */ \"./node_modules/crypto-js/core.js\");\n/* harmony import */ var crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(crypto_js_core__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var crypto_js_lib_typedarrays__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! crypto-js/lib-typedarrays */ \"./node_modules/crypto-js/lib-typedarrays.js\");\n/* harmony import */ var crypto_js_lib_typedarrays__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(crypto_js_lib_typedarrays__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var crypto_js_sha256__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! crypto-js/sha256 */ \"./node_modules/crypto-js/sha256.js\");\n/* harmony import */ var crypto_js_sha256__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(crypto_js_sha256__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! crypto-js/hmac-sha256 */ \"./node_modules/crypto-js/hmac-sha256.js\");\n/* harmony import */ var crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var _utils_WordArray__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./utils/WordArray */ \"./node_modules/amazon-cognito-identity-js/es/utils/WordArray.js\");\n/* harmony import */ var _BigInteger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BigInteger */ \"./node_modules/amazon-cognito-identity-js/es/BigInteger.js\");\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n\n\n // necessary for crypto js\n\n\n\n\n/**\n * Returns a Buffer with a sequence of random nBytes\n *\n * @param {number} nBytes\n * @returns {Buffer} fixed-length sequence of random bytes\n */\n\nfunction randomBytes(nBytes) {\n return buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(new _utils_WordArray__WEBPACK_IMPORTED_MODULE_5__[\"default\"]().random(nBytes).toString(), 'hex');\n}\n\n\n/**\n * Tests if a hex string has it most significant bit set (case-insensitive regex)\n */\nvar HEX_MSB_REGEX = /^[89a-f]/i;\nvar initN = 'FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD1' + '29024E088A67CC74020BBEA63B139B22514A08798E3404DD' + 'EF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245' + 'E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7ED' + 'EE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3D' + 'C2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F' + '83655D23DCA3AD961C62F356208552BB9ED529077096966D' + '670C354E4ABC9804F1746C08CA18217C32905E462E36CE3B' + 'E39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9' + 'DE2BCBF6955817183995497CEA956AE515D2261898FA0510' + '15728E5A8AAAC42DAD33170D04507A33A85521ABDF1CBA64' + 'ECFB850458DBEF0A8AEA71575D060C7DB3970F85A6E1E4C7' + 'ABF5AE8CDB0933D71E8C94E04A25619DCEE3D2261AD2EE6B' + 'F12FFA06D98A0864D87602733EC86A64521F2B18177B200C' + 'BBE117577A615D6C770988C0BAD946E208E24FA074E5AB31' + '43DB5BFCE0FD108E4B82D120A93AD2CAFFFFFFFFFFFFFFFF';\nvar newPasswordRequiredChallengeUserAttributePrefix = 'userAttributes.';\n\n/** @class */\nvar AuthenticationHelper = /*#__PURE__*/function () {\n /**\n * Constructs a new AuthenticationHelper object\n * @param {string} PoolName Cognito user pool name.\n */\n function AuthenticationHelper(PoolName) {\n this.N = new _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"](initN, 16);\n this.g = new _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"]('2', 16);\n this.k = new _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"](this.hexHash(\"\" + this.padHex(this.N) + this.padHex(this.g)), 16);\n this.smallAValue = this.generateRandomSmallA();\n this.getLargeAValue(function () {});\n this.infoBits = buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from('Caldera Derived Key', 'utf8');\n this.poolName = PoolName;\n }\n\n /**\n * @returns {BigInteger} small A, a random number\n */\n var _proto = AuthenticationHelper.prototype;\n _proto.getSmallAValue = function getSmallAValue() {\n return this.smallAValue;\n }\n\n /**\n * @param {nodeCallback} callback Called with (err, largeAValue)\n * @returns {void}\n */;\n _proto.getLargeAValue = function getLargeAValue(callback) {\n var _this = this;\n if (this.largeAValue) {\n callback(null, this.largeAValue);\n } else {\n this.calculateA(this.smallAValue, function (err, largeAValue) {\n if (err) {\n callback(err, null);\n }\n _this.largeAValue = largeAValue;\n callback(null, _this.largeAValue);\n });\n }\n }\n\n /**\n * helper function to generate a random big integer\n * @returns {BigInteger} a random value.\n * @private\n */;\n _proto.generateRandomSmallA = function generateRandomSmallA() {\n // This will be interpreted as a postive 128-bit integer\n var hexRandom = randomBytes(128).toString('hex');\n var randomBigInt = new _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"](hexRandom, 16);\n\n // There is no need to do randomBigInt.mod(this.N - 1) as N (3072-bit) is > 128 bytes (1024-bit)\n\n return randomBigInt;\n }\n\n /**\n * helper function to generate a random string\n * @returns {string} a random value.\n * @private\n */;\n _proto.generateRandomString = function generateRandomString() {\n return randomBytes(40).toString('base64');\n }\n\n /**\n * @returns {string} Generated random value included in password hash.\n */;\n _proto.getRandomPassword = function getRandomPassword() {\n return this.randomPassword;\n }\n\n /**\n * @returns {string} Generated random value included in devices hash.\n */;\n _proto.getSaltDevices = function getSaltDevices() {\n return this.SaltToHashDevices;\n }\n\n /**\n * @returns {string} Value used to verify devices.\n */;\n _proto.getVerifierDevices = function getVerifierDevices() {\n return this.verifierDevices;\n }\n\n /**\n * Generate salts and compute verifier.\n * @param {string} deviceGroupKey Devices to generate verifier for.\n * @param {string} username User to generate verifier for.\n * @param {nodeCallback} callback Called with (err, null)\n * @returns {void}\n */;\n _proto.generateHashDevice = function generateHashDevice(deviceGroupKey, username, callback) {\n var _this2 = this;\n this.randomPassword = this.generateRandomString();\n var combinedString = \"\" + deviceGroupKey + username + \":\" + this.randomPassword;\n var hashedString = this.hash(combinedString);\n var hexRandom = randomBytes(16).toString('hex');\n\n // The random hex will be unambiguously represented as a postive integer\n this.SaltToHashDevices = this.padHex(new _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"](hexRandom, 16));\n this.g.modPow(new _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"](this.hexHash(this.SaltToHashDevices + hashedString), 16), this.N, function (err, verifierDevicesNotPadded) {\n if (err) {\n callback(err, null);\n }\n _this2.verifierDevices = _this2.padHex(verifierDevicesNotPadded);\n callback(null, null);\n });\n }\n\n /**\n * Calculate the client's public value A = g^a%N\n * with the generated random number a\n * @param {BigInteger} a Randomly generated small A.\n * @param {nodeCallback} callback Called with (err, largeAValue)\n * @returns {void}\n * @private\n */;\n _proto.calculateA = function calculateA(a, callback) {\n var _this3 = this;\n this.g.modPow(a, this.N, function (err, A) {\n if (err) {\n callback(err, null);\n }\n if (A.mod(_this3.N).equals(_BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"].ZERO)) {\n callback(new Error('Illegal paramater. A mod N cannot be 0.'), null);\n }\n callback(null, A);\n });\n }\n\n /**\n * Calculate the client's value U which is the hash of A and B\n * @param {BigInteger} A Large A value.\n * @param {BigInteger} B Server B value.\n * @returns {BigInteger} Computed U value.\n * @private\n */;\n _proto.calculateU = function calculateU(A, B) {\n this.UHexHash = this.hexHash(this.padHex(A) + this.padHex(B));\n var finalU = new _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"](this.UHexHash, 16);\n return finalU;\n }\n\n /**\n * Calculate a hash from a bitArray\n * @param {Buffer} buf Value to hash.\n * @returns {String} Hex-encoded hash.\n * @private\n */;\n _proto.hash = function hash(buf) {\n var str = buf instanceof buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"] ? crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default.a.lib.WordArray.create(buf) : buf;\n var hashHex = crypto_js_sha256__WEBPACK_IMPORTED_MODULE_3___default()(str).toString();\n return new Array(64 - hashHex.length).join('0') + hashHex;\n }\n\n /**\n * Calculate a hash from a hex string\n * @param {String} hexStr Value to hash.\n * @returns {String} Hex-encoded hash.\n * @private\n */;\n _proto.hexHash = function hexHash(hexStr) {\n return this.hash(buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(hexStr, 'hex'));\n }\n\n /**\n * Standard hkdf algorithm\n * @param {Buffer} ikm Input key material.\n * @param {Buffer} salt Salt value.\n * @returns {Buffer} Strong key material.\n * @private\n */;\n _proto.computehkdf = function computehkdf(ikm, salt) {\n var infoBitsWordArray = crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default.a.lib.WordArray.create(buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].concat([this.infoBits, buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(String.fromCharCode(1), 'utf8')]));\n var ikmWordArray = ikm instanceof buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"] ? crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default.a.lib.WordArray.create(ikm) : ikm;\n var saltWordArray = salt instanceof buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"] ? crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default.a.lib.WordArray.create(salt) : salt;\n var prk = crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4___default()(ikmWordArray, saltWordArray);\n var hmac = crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4___default()(infoBitsWordArray, prk);\n return buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(hmac.toString(), 'hex').slice(0, 16);\n }\n\n /**\n * Calculates the final hkdf based on computed S value, and computed U value and the key\n * @param {String} username Username.\n * @param {String} password Password.\n * @param {BigInteger} serverBValue Server B value.\n * @param {BigInteger} salt Generated salt.\n * @param {nodeCallback} callback Called with (err, hkdfValue)\n * @returns {void}\n */;\n _proto.getPasswordAuthenticationKey = function getPasswordAuthenticationKey(username, password, serverBValue, salt, callback) {\n var _this4 = this;\n if (serverBValue.mod(this.N).equals(_BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"].ZERO)) {\n throw new Error('B cannot be zero.');\n }\n this.UValue = this.calculateU(this.largeAValue, serverBValue);\n if (this.UValue.equals(_BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"].ZERO)) {\n throw new Error('U cannot be zero.');\n }\n var usernamePassword = \"\" + this.poolName + username + \":\" + password;\n var usernamePasswordHash = this.hash(usernamePassword);\n var xValue = new _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"](this.hexHash(this.padHex(salt) + usernamePasswordHash), 16);\n this.calculateS(xValue, serverBValue, function (err, sValue) {\n if (err) {\n callback(err, null);\n }\n var hkdf = _this4.computehkdf(buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(_this4.padHex(sValue), 'hex'), buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(_this4.padHex(_this4.UValue), 'hex'));\n callback(null, hkdf);\n });\n }\n\n /**\n * Calculates the S value used in getPasswordAuthenticationKey\n * @param {BigInteger} xValue Salted password hash value.\n * @param {BigInteger} serverBValue Server B value.\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.calculateS = function calculateS(xValue, serverBValue, callback) {\n var _this5 = this;\n this.g.modPow(xValue, this.N, function (err, gModPowXN) {\n if (err) {\n callback(err, null);\n }\n var intValue2 = serverBValue.subtract(_this5.k.multiply(gModPowXN));\n intValue2.modPow(_this5.smallAValue.add(_this5.UValue.multiply(xValue)), _this5.N, function (err2, result) {\n if (err2) {\n callback(err2, null);\n }\n callback(null, result.mod(_this5.N));\n });\n });\n }\n\n /**\n * Return constant newPasswordRequiredChallengeUserAttributePrefix\n * @return {newPasswordRequiredChallengeUserAttributePrefix} constant prefix value\n */;\n _proto.getNewPasswordRequiredChallengeUserAttributePrefix = function getNewPasswordRequiredChallengeUserAttributePrefix() {\n return newPasswordRequiredChallengeUserAttributePrefix;\n }\n\n /**\n * Returns an unambiguous, even-length hex string of the two's complement encoding of an integer.\n *\n * It is compatible with the hex encoding of Java's BigInteger's toByteArray(), wich returns a\n * byte array containing the two's-complement representation of a BigInteger. The array contains\n * the minimum number of bytes required to represent the BigInteger, including at least one sign bit.\n *\n * Examples showing how ambiguity is avoided by left padding with:\n * \t\"00\" (for positive values where the most-significant-bit is set)\n * \"FF\" (for negative values where the most-significant-bit is set)\n *\n * padHex(bigInteger.fromInt(-236)) === \"FF14\"\n * padHex(bigInteger.fromInt(20)) === \"14\"\n *\n * padHex(bigInteger.fromInt(-200)) === \"FF38\"\n * padHex(bigInteger.fromInt(56)) === \"38\"\n *\n * padHex(bigInteger.fromInt(-20)) === \"EC\"\n * padHex(bigInteger.fromInt(236)) === \"00EC\"\n *\n * padHex(bigInteger.fromInt(-56)) === \"C8\"\n * padHex(bigInteger.fromInt(200)) === \"00C8\"\n *\n * @param {BigInteger} bigInt Number to encode.\n * @returns {String} even-length hex string of the two's complement encoding.\n */;\n _proto.padHex = function padHex(bigInt) {\n if (!(bigInt instanceof _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"])) {\n throw new Error('Not a BigInteger');\n }\n var isNegative = bigInt.compareTo(_BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"].ZERO) < 0;\n\n /* Get a hex string for abs(bigInt) */\n var hexStr = bigInt.abs().toString(16);\n\n /* Pad hex to even length if needed */\n hexStr = hexStr.length % 2 !== 0 ? \"0\" + hexStr : hexStr;\n\n /* Prepend \"00\" if the most significant bit is set */\n hexStr = HEX_MSB_REGEX.test(hexStr) ? \"00\" + hexStr : hexStr;\n if (isNegative) {\n /* Flip the bits of the representation */\n var invertedNibbles = hexStr.split('').map(function (x) {\n var invertedNibble = ~parseInt(x, 16) & 0xf;\n return '0123456789ABCDEF'.charAt(invertedNibble);\n }).join('');\n\n /* After flipping the bits, add one to get the 2's complement representation */\n var flippedBitsBI = new _BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"](invertedNibbles, 16).add(_BigInteger__WEBPACK_IMPORTED_MODULE_6__[\"default\"].ONE);\n hexStr = flippedBitsBI.toString(16);\n\n /*\n For hex strings starting with 'FF8', 'FF' can be dropped, e.g. 0xFFFF80=0xFF80=0x80=-128\n \t\tAny sequence of '1' bits on the left can always be substituted with a single '1' bit\n without changing the represented value.\n \t\tThis only happens in the case when the input is 80...00\n */\n if (hexStr.toUpperCase().startsWith('FF8')) {\n hexStr = hexStr.substring(2);\n }\n }\n return hexStr;\n };\n return AuthenticationHelper;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/AuthenticationHelper.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/BigInteger.js": /*!******************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/BigInteger.js ***! \******************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n// A small implementation of BigInteger based on http://www-cs-students.stanford.edu/~tjw/jsbn/\n//\n// All public methods have been removed except the following:\n// new BigInteger(a, b) (only radix 2, 4, 8, 16 and 32 supported)\n// toString (only radix 2, 4, 8, 16 and 32 supported)\n// negate\n// abs\n// compareTo\n// bitLength\n// mod\n// equals\n// add\n// subtract\n// multiply\n// divide\n// modPow\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (BigInteger);\n\n/*\n * Copyright (c) 2003-2005 Tom Wu\n * All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining\n * a copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS-IS\" AND WITHOUT WARRANTY OF ANY KIND,\n * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY\n * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\n *\n * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,\n * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER\n * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF\n * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT\n * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n *\n * In addition, the following condition applies:\n *\n * All redistributions must retain an intact copy of this copyright notice\n * and disclaimer.\n */\n\n// (public) Constructor\nfunction BigInteger(a, b) {\n if (a != null) this.fromString(a, b);\n}\n\n// return new, unset BigInteger\nfunction nbi() {\n return new BigInteger(null);\n}\n\n// Bits per digit\nvar dbits;\n\n// JavaScript engine analysis\nvar canary = 0xdeadbeefcafe;\nvar j_lm = (canary & 0xffffff) == 0xefcafe;\n\n// am: Compute w_j += (x*this_i), propagate carries,\n// c is initial carry, returns final carry.\n// c < 3*dvalue, x < 2*dvalue, this_i < dvalue\n// We need to select the fastest one that works in this environment.\n\n// am1: use a single mult and divide to get the high bits,\n// max digit bits should be 26 because\n// max internal value = 2*dvalue^2-2*dvalue (< 2^53)\nfunction am1(i, x, w, j, c, n) {\n while (--n >= 0) {\n var v = x * this[i++] + w[j] + c;\n c = Math.floor(v / 0x4000000);\n w[j++] = v & 0x3ffffff;\n }\n return c;\n}\n// am2 avoids a big mult-and-extract completely.\n// Max digit bits should be <= 30 because we do bitwise ops\n// on values up to 2*hdvalue^2-hdvalue-1 (< 2^31)\nfunction am2(i, x, w, j, c, n) {\n var xl = x & 0x7fff,\n xh = x >> 15;\n while (--n >= 0) {\n var l = this[i] & 0x7fff;\n var h = this[i++] >> 15;\n var m = xh * l + h * xl;\n l = xl * l + ((m & 0x7fff) << 15) + w[j] + (c & 0x3fffffff);\n c = (l >>> 30) + (m >>> 15) + xh * h + (c >>> 30);\n w[j++] = l & 0x3fffffff;\n }\n return c;\n}\n// Alternately, set max digit bits to 28 since some\n// browsers slow down when dealing with 32-bit numbers.\nfunction am3(i, x, w, j, c, n) {\n var xl = x & 0x3fff,\n xh = x >> 14;\n while (--n >= 0) {\n var l = this[i] & 0x3fff;\n var h = this[i++] >> 14;\n var m = xh * l + h * xl;\n l = xl * l + ((m & 0x3fff) << 14) + w[j] + c;\n c = (l >> 28) + (m >> 14) + xh * h;\n w[j++] = l & 0xfffffff;\n }\n return c;\n}\nvar inBrowser = typeof navigator !== 'undefined';\nif (inBrowser && j_lm && navigator.appName == 'Microsoft Internet Explorer') {\n BigInteger.prototype.am = am2;\n dbits = 30;\n} else if (inBrowser && j_lm && navigator.appName != 'Netscape') {\n BigInteger.prototype.am = am1;\n dbits = 26;\n} else {\n // Mozilla/Netscape seems to prefer am3\n BigInteger.prototype.am = am3;\n dbits = 28;\n}\nBigInteger.prototype.DB = dbits;\nBigInteger.prototype.DM = (1 << dbits) - 1;\nBigInteger.prototype.DV = 1 << dbits;\nvar BI_FP = 52;\nBigInteger.prototype.FV = Math.pow(2, BI_FP);\nBigInteger.prototype.F1 = BI_FP - dbits;\nBigInteger.prototype.F2 = 2 * dbits - BI_FP;\n\n// Digit conversions\nvar BI_RM = '0123456789abcdefghijklmnopqrstuvwxyz';\nvar BI_RC = new Array();\nvar rr, vv;\nrr = '0'.charCodeAt(0);\nfor (vv = 0; vv <= 9; ++vv) BI_RC[rr++] = vv;\nrr = 'a'.charCodeAt(0);\nfor (vv = 10; vv < 36; ++vv) BI_RC[rr++] = vv;\nrr = 'A'.charCodeAt(0);\nfor (vv = 10; vv < 36; ++vv) BI_RC[rr++] = vv;\nfunction int2char(n) {\n return BI_RM.charAt(n);\n}\nfunction intAt(s, i) {\n var c = BI_RC[s.charCodeAt(i)];\n return c == null ? -1 : c;\n}\n\n// (protected) copy this to r\nfunction bnpCopyTo(r) {\n for (var i = this.t - 1; i >= 0; --i) r[i] = this[i];\n r.t = this.t;\n r.s = this.s;\n}\n\n// (protected) set from integer value x, -DV <= x < DV\nfunction bnpFromInt(x) {\n this.t = 1;\n this.s = x < 0 ? -1 : 0;\n if (x > 0) this[0] = x;else if (x < -1) this[0] = x + this.DV;else this.t = 0;\n}\n\n// return bigint initialized to value\nfunction nbv(i) {\n var r = nbi();\n r.fromInt(i);\n return r;\n}\n\n// (protected) set from string and radix\nfunction bnpFromString(s, b) {\n var k;\n if (b == 16) k = 4;else if (b == 8) k = 3;else if (b == 2) k = 1;else if (b == 32) k = 5;else if (b == 4) k = 2;else throw new Error('Only radix 2, 4, 8, 16, 32 are supported');\n this.t = 0;\n this.s = 0;\n var i = s.length,\n mi = false,\n sh = 0;\n while (--i >= 0) {\n var x = intAt(s, i);\n if (x < 0) {\n if (s.charAt(i) == '-') mi = true;\n continue;\n }\n mi = false;\n if (sh == 0) this[this.t++] = x;else if (sh + k > this.DB) {\n this[this.t - 1] |= (x & (1 << this.DB - sh) - 1) << sh;\n this[this.t++] = x >> this.DB - sh;\n } else this[this.t - 1] |= x << sh;\n sh += k;\n if (sh >= this.DB) sh -= this.DB;\n }\n this.clamp();\n if (mi) BigInteger.ZERO.subTo(this, this);\n}\n\n// (protected) clamp off excess high words\nfunction bnpClamp() {\n var c = this.s & this.DM;\n while (this.t > 0 && this[this.t - 1] == c) --this.t;\n}\n\n// (public) return string representation in given radix\nfunction bnToString(b) {\n if (this.s < 0) return '-' + this.negate().toString(b);\n var k;\n if (b == 16) k = 4;else if (b == 8) k = 3;else if (b == 2) k = 1;else if (b == 32) k = 5;else if (b == 4) k = 2;else throw new Error('Only radix 2, 4, 8, 16, 32 are supported');\n var km = (1 << k) - 1,\n d,\n m = false,\n r = '',\n i = this.t;\n var p = this.DB - i * this.DB % k;\n if (i-- > 0) {\n if (p < this.DB && (d = this[i] >> p) > 0) {\n m = true;\n r = int2char(d);\n }\n while (i >= 0) {\n if (p < k) {\n d = (this[i] & (1 << p) - 1) << k - p;\n d |= this[--i] >> (p += this.DB - k);\n } else {\n d = this[i] >> (p -= k) & km;\n if (p <= 0) {\n p += this.DB;\n --i;\n }\n }\n if (d > 0) m = true;\n if (m) r += int2char(d);\n }\n }\n return m ? r : '0';\n}\n\n// (public) -this\nfunction bnNegate() {\n var r = nbi();\n BigInteger.ZERO.subTo(this, r);\n return r;\n}\n\n// (public) |this|\nfunction bnAbs() {\n return this.s < 0 ? this.negate() : this;\n}\n\n// (public) return + if this > a, - if this < a, 0 if equal\nfunction bnCompareTo(a) {\n var r = this.s - a.s;\n if (r != 0) return r;\n var i = this.t;\n r = i - a.t;\n if (r != 0) return this.s < 0 ? -r : r;\n while (--i >= 0) if ((r = this[i] - a[i]) != 0) return r;\n return 0;\n}\n\n// returns bit length of the integer x\nfunction nbits(x) {\n var r = 1,\n t;\n if ((t = x >>> 16) != 0) {\n x = t;\n r += 16;\n }\n if ((t = x >> 8) != 0) {\n x = t;\n r += 8;\n }\n if ((t = x >> 4) != 0) {\n x = t;\n r += 4;\n }\n if ((t = x >> 2) != 0) {\n x = t;\n r += 2;\n }\n if ((t = x >> 1) != 0) {\n x = t;\n r += 1;\n }\n return r;\n}\n\n// (public) return the number of bits in \"this\"\nfunction bnBitLength() {\n if (this.t <= 0) return 0;\n return this.DB * (this.t - 1) + nbits(this[this.t - 1] ^ this.s & this.DM);\n}\n\n// (protected) r = this << n*DB\nfunction bnpDLShiftTo(n, r) {\n var i;\n for (i = this.t - 1; i >= 0; --i) r[i + n] = this[i];\n for (i = n - 1; i >= 0; --i) r[i] = 0;\n r.t = this.t + n;\n r.s = this.s;\n}\n\n// (protected) r = this >> n*DB\nfunction bnpDRShiftTo(n, r) {\n for (var i = n; i < this.t; ++i) r[i - n] = this[i];\n r.t = Math.max(this.t - n, 0);\n r.s = this.s;\n}\n\n// (protected) r = this << n\nfunction bnpLShiftTo(n, r) {\n var bs = n % this.DB;\n var cbs = this.DB - bs;\n var bm = (1 << cbs) - 1;\n var ds = Math.floor(n / this.DB),\n c = this.s << bs & this.DM,\n i;\n for (i = this.t - 1; i >= 0; --i) {\n r[i + ds + 1] = this[i] >> cbs | c;\n c = (this[i] & bm) << bs;\n }\n for (i = ds - 1; i >= 0; --i) r[i] = 0;\n r[ds] = c;\n r.t = this.t + ds + 1;\n r.s = this.s;\n r.clamp();\n}\n\n// (protected) r = this >> n\nfunction bnpRShiftTo(n, r) {\n r.s = this.s;\n var ds = Math.floor(n / this.DB);\n if (ds >= this.t) {\n r.t = 0;\n return;\n }\n var bs = n % this.DB;\n var cbs = this.DB - bs;\n var bm = (1 << bs) - 1;\n r[0] = this[ds] >> bs;\n for (var i = ds + 1; i < this.t; ++i) {\n r[i - ds - 1] |= (this[i] & bm) << cbs;\n r[i - ds] = this[i] >> bs;\n }\n if (bs > 0) r[this.t - ds - 1] |= (this.s & bm) << cbs;\n r.t = this.t - ds;\n r.clamp();\n}\n\n// (protected) r = this - a\nfunction bnpSubTo(a, r) {\n var i = 0,\n c = 0,\n m = Math.min(a.t, this.t);\n while (i < m) {\n c += this[i] - a[i];\n r[i++] = c & this.DM;\n c >>= this.DB;\n }\n if (a.t < this.t) {\n c -= a.s;\n while (i < this.t) {\n c += this[i];\n r[i++] = c & this.DM;\n c >>= this.DB;\n }\n c += this.s;\n } else {\n c += this.s;\n while (i < a.t) {\n c -= a[i];\n r[i++] = c & this.DM;\n c >>= this.DB;\n }\n c -= a.s;\n }\n r.s = c < 0 ? -1 : 0;\n if (c < -1) r[i++] = this.DV + c;else if (c > 0) r[i++] = c;\n r.t = i;\n r.clamp();\n}\n\n// (protected) r = this * a, r != this,a (HAC 14.12)\n// \"this\" should be the larger one if appropriate.\nfunction bnpMultiplyTo(a, r) {\n var x = this.abs(),\n y = a.abs();\n var i = x.t;\n r.t = i + y.t;\n while (--i >= 0) r[i] = 0;\n for (i = 0; i < y.t; ++i) r[i + x.t] = x.am(0, y[i], r, i, 0, x.t);\n r.s = 0;\n r.clamp();\n if (this.s != a.s) BigInteger.ZERO.subTo(r, r);\n}\n\n// (protected) r = this^2, r != this (HAC 14.16)\nfunction bnpSquareTo(r) {\n var x = this.abs();\n var i = r.t = 2 * x.t;\n while (--i >= 0) r[i] = 0;\n for (i = 0; i < x.t - 1; ++i) {\n var c = x.am(i, x[i], r, 2 * i, 0, 1);\n if ((r[i + x.t] += x.am(i + 1, 2 * x[i], r, 2 * i + 1, c, x.t - i - 1)) >= x.DV) {\n r[i + x.t] -= x.DV;\n r[i + x.t + 1] = 1;\n }\n }\n if (r.t > 0) r[r.t - 1] += x.am(i, x[i], r, 2 * i, 0, 1);\n r.s = 0;\n r.clamp();\n}\n\n// (protected) divide this by m, quotient and remainder to q, r (HAC 14.20)\n// r != q, this != m. q or r may be null.\nfunction bnpDivRemTo(m, q, r) {\n var pm = m.abs();\n if (pm.t <= 0) return;\n var pt = this.abs();\n if (pt.t < pm.t) {\n if (q != null) q.fromInt(0);\n if (r != null) this.copyTo(r);\n return;\n }\n if (r == null) r = nbi();\n var y = nbi(),\n ts = this.s,\n ms = m.s;\n var nsh = this.DB - nbits(pm[pm.t - 1]);\n // normalize modulus\n if (nsh > 0) {\n pm.lShiftTo(nsh, y);\n pt.lShiftTo(nsh, r);\n } else {\n pm.copyTo(y);\n pt.copyTo(r);\n }\n var ys = y.t;\n var y0 = y[ys - 1];\n if (y0 == 0) return;\n var yt = y0 * (1 << this.F1) + (ys > 1 ? y[ys - 2] >> this.F2 : 0);\n var d1 = this.FV / yt,\n d2 = (1 << this.F1) / yt,\n e = 1 << this.F2;\n var i = r.t,\n j = i - ys,\n t = q == null ? nbi() : q;\n y.dlShiftTo(j, t);\n if (r.compareTo(t) >= 0) {\n r[r.t++] = 1;\n r.subTo(t, r);\n }\n BigInteger.ONE.dlShiftTo(ys, t);\n t.subTo(y, y);\n // \"negative\" y so we can replace sub with am later\n while (y.t < ys) y[y.t++] = 0;\n while (--j >= 0) {\n // Estimate quotient digit\n var qd = r[--i] == y0 ? this.DM : Math.floor(r[i] * d1 + (r[i - 1] + e) * d2);\n if ((r[i] += y.am(0, qd, r, j, 0, ys)) < qd) {\n // Try it out\n y.dlShiftTo(j, t);\n r.subTo(t, r);\n while (r[i] < --qd) r.subTo(t, r);\n }\n }\n if (q != null) {\n r.drShiftTo(ys, q);\n if (ts != ms) BigInteger.ZERO.subTo(q, q);\n }\n r.t = ys;\n r.clamp();\n if (nsh > 0) r.rShiftTo(nsh, r);\n // Denormalize remainder\n if (ts < 0) BigInteger.ZERO.subTo(r, r);\n}\n\n// (public) this mod a\nfunction bnMod(a) {\n var r = nbi();\n this.abs().divRemTo(a, null, r);\n if (this.s < 0 && r.compareTo(BigInteger.ZERO) > 0) a.subTo(r, r);\n return r;\n}\n\n// (protected) return \"-1/this % 2^DB\"; useful for Mont. reduction\n// justification:\n// xy == 1 (mod m)\n// xy = 1+km\n// xy(2-xy) = (1+km)(1-km)\n// x[y(2-xy)] = 1-k^2m^2\n// x[y(2-xy)] == 1 (mod m^2)\n// if y is 1/x mod m, then y(2-xy) is 1/x mod m^2\n// should reduce x and y(2-xy) by m^2 at each step to keep size bounded.\n// JS multiply \"overflows\" differently from C/C++, so care is needed here.\nfunction bnpInvDigit() {\n if (this.t < 1) return 0;\n var x = this[0];\n if ((x & 1) == 0) return 0;\n var y = x & 3;\n // y == 1/x mod 2^2\n y = y * (2 - (x & 0xf) * y) & 0xf;\n // y == 1/x mod 2^4\n y = y * (2 - (x & 0xff) * y) & 0xff;\n // y == 1/x mod 2^8\n y = y * (2 - ((x & 0xffff) * y & 0xffff)) & 0xffff;\n // y == 1/x mod 2^16\n // last step - calculate inverse mod DV directly;\n // assumes 16 < DB <= 32 and assumes ability to handle 48-bit ints\n y = y * (2 - x * y % this.DV) % this.DV;\n // y == 1/x mod 2^dbits\n // we really want the negative inverse, and -DV < y < DV\n return y > 0 ? this.DV - y : -y;\n}\nfunction bnEquals(a) {\n return this.compareTo(a) == 0;\n}\n\n// (protected) r = this + a\nfunction bnpAddTo(a, r) {\n var i = 0,\n c = 0,\n m = Math.min(a.t, this.t);\n while (i < m) {\n c += this[i] + a[i];\n r[i++] = c & this.DM;\n c >>= this.DB;\n }\n if (a.t < this.t) {\n c += a.s;\n while (i < this.t) {\n c += this[i];\n r[i++] = c & this.DM;\n c >>= this.DB;\n }\n c += this.s;\n } else {\n c += this.s;\n while (i < a.t) {\n c += a[i];\n r[i++] = c & this.DM;\n c >>= this.DB;\n }\n c += a.s;\n }\n r.s = c < 0 ? -1 : 0;\n if (c > 0) r[i++] = c;else if (c < -1) r[i++] = this.DV + c;\n r.t = i;\n r.clamp();\n}\n\n// (public) this + a\nfunction bnAdd(a) {\n var r = nbi();\n this.addTo(a, r);\n return r;\n}\n\n// (public) this - a\nfunction bnSubtract(a) {\n var r = nbi();\n this.subTo(a, r);\n return r;\n}\n\n// (public) this * a\nfunction bnMultiply(a) {\n var r = nbi();\n this.multiplyTo(a, r);\n return r;\n}\n\n// (public) this / a\nfunction bnDivide(a) {\n var r = nbi();\n this.divRemTo(a, r, null);\n return r;\n}\n\n// Montgomery reduction\nfunction Montgomery(m) {\n this.m = m;\n this.mp = m.invDigit();\n this.mpl = this.mp & 0x7fff;\n this.mph = this.mp >> 15;\n this.um = (1 << m.DB - 15) - 1;\n this.mt2 = 2 * m.t;\n}\n\n// xR mod m\nfunction montConvert(x) {\n var r = nbi();\n x.abs().dlShiftTo(this.m.t, r);\n r.divRemTo(this.m, null, r);\n if (x.s < 0 && r.compareTo(BigInteger.ZERO) > 0) this.m.subTo(r, r);\n return r;\n}\n\n// x/R mod m\nfunction montRevert(x) {\n var r = nbi();\n x.copyTo(r);\n this.reduce(r);\n return r;\n}\n\n// x = x/R mod m (HAC 14.32)\nfunction montReduce(x) {\n while (x.t <= this.mt2)\n // pad x so am has enough room later\n x[x.t++] = 0;\n for (var i = 0; i < this.m.t; ++i) {\n // faster way of calculating u0 = x[i]*mp mod DV\n var j = x[i] & 0x7fff;\n var u0 = j * this.mpl + ((j * this.mph + (x[i] >> 15) * this.mpl & this.um) << 15) & x.DM;\n // use am to combine the multiply-shift-add into one call\n j = i + this.m.t;\n x[j] += this.m.am(0, u0, x, i, 0, this.m.t);\n // propagate carry\n while (x[j] >= x.DV) {\n x[j] -= x.DV;\n x[++j]++;\n }\n }\n x.clamp();\n x.drShiftTo(this.m.t, x);\n if (x.compareTo(this.m) >= 0) x.subTo(this.m, x);\n}\n\n// r = \"x^2/R mod m\"; x != r\nfunction montSqrTo(x, r) {\n x.squareTo(r);\n this.reduce(r);\n}\n\n// r = \"xy/R mod m\"; x,y != r\nfunction montMulTo(x, y, r) {\n x.multiplyTo(y, r);\n this.reduce(r);\n}\nMontgomery.prototype.convert = montConvert;\nMontgomery.prototype.revert = montRevert;\nMontgomery.prototype.reduce = montReduce;\nMontgomery.prototype.mulTo = montMulTo;\nMontgomery.prototype.sqrTo = montSqrTo;\n\n// (public) this^e % m (HAC 14.85)\nfunction bnModPow(e, m, callback) {\n var i = e.bitLength(),\n k,\n r = nbv(1),\n z = new Montgomery(m);\n if (i <= 0) return r;else if (i < 18) k = 1;else if (i < 48) k = 3;else if (i < 144) k = 4;else if (i < 768) k = 5;else k = 6;\n\n // precomputation\n var g = new Array(),\n n = 3,\n k1 = k - 1,\n km = (1 << k) - 1;\n g[1] = z.convert(this);\n if (k > 1) {\n var g2 = nbi();\n z.sqrTo(g[1], g2);\n while (n <= km) {\n g[n] = nbi();\n z.mulTo(g2, g[n - 2], g[n]);\n n += 2;\n }\n }\n var j = e.t - 1,\n w,\n is1 = true,\n r2 = nbi(),\n t;\n i = nbits(e[j]) - 1;\n while (j >= 0) {\n if (i >= k1) w = e[j] >> i - k1 & km;else {\n w = (e[j] & (1 << i + 1) - 1) << k1 - i;\n if (j > 0) w |= e[j - 1] >> this.DB + i - k1;\n }\n n = k;\n while ((w & 1) == 0) {\n w >>= 1;\n --n;\n }\n if ((i -= n) < 0) {\n i += this.DB;\n --j;\n }\n if (is1) {\n // ret == 1, don't bother squaring or multiplying it\n g[w].copyTo(r);\n is1 = false;\n } else {\n while (n > 1) {\n z.sqrTo(r, r2);\n z.sqrTo(r2, r);\n n -= 2;\n }\n if (n > 0) z.sqrTo(r, r2);else {\n t = r;\n r = r2;\n r2 = t;\n }\n z.mulTo(r2, g[w], r);\n }\n while (j >= 0 && (e[j] & 1 << i) == 0) {\n z.sqrTo(r, r2);\n t = r;\n r = r2;\n r2 = t;\n if (--i < 0) {\n i = this.DB - 1;\n --j;\n }\n }\n }\n var result = z.revert(r);\n callback(null, result);\n return result;\n}\n\n// protected\nBigInteger.prototype.copyTo = bnpCopyTo;\nBigInteger.prototype.fromInt = bnpFromInt;\nBigInteger.prototype.fromString = bnpFromString;\nBigInteger.prototype.clamp = bnpClamp;\nBigInteger.prototype.dlShiftTo = bnpDLShiftTo;\nBigInteger.prototype.drShiftTo = bnpDRShiftTo;\nBigInteger.prototype.lShiftTo = bnpLShiftTo;\nBigInteger.prototype.rShiftTo = bnpRShiftTo;\nBigInteger.prototype.subTo = bnpSubTo;\nBigInteger.prototype.multiplyTo = bnpMultiplyTo;\nBigInteger.prototype.squareTo = bnpSquareTo;\nBigInteger.prototype.divRemTo = bnpDivRemTo;\nBigInteger.prototype.invDigit = bnpInvDigit;\nBigInteger.prototype.addTo = bnpAddTo;\n\n// public\nBigInteger.prototype.toString = bnToString;\nBigInteger.prototype.negate = bnNegate;\nBigInteger.prototype.abs = bnAbs;\nBigInteger.prototype.compareTo = bnCompareTo;\nBigInteger.prototype.bitLength = bnBitLength;\nBigInteger.prototype.mod = bnMod;\nBigInteger.prototype.equals = bnEquals;\nBigInteger.prototype.add = bnAdd;\nBigInteger.prototype.subtract = bnSubtract;\nBigInteger.prototype.multiply = bnMultiply;\nBigInteger.prototype.divide = bnDivide;\nBigInteger.prototype.modPow = bnModPow;\n\n// \"constants\"\nBigInteger.ZERO = nbv(0);\nBigInteger.ONE = nbv(1);\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/BigInteger.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/Client.js": /*!**************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/Client.js ***! \**************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return Client; });\n/* harmony import */ var isomorphic_unfetch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! isomorphic-unfetch */ \"./node_modules/isomorphic-unfetch/browser.js\");\n/* harmony import */ var isomorphic_unfetch__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(isomorphic_unfetch__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _UserAgent__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./UserAgent */ \"./node_modules/amazon-cognito-identity-js/es/UserAgent.js\");\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }\nfunction _wrapNativeSuper(Class) { var _cache = typeof Map === \"function\" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== \"function\") { throw new TypeError(\"Super expression must either be null or a function\"); } if (typeof _cache !== \"undefined\") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); }\nfunction _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _construct = Reflect.construct.bind(); } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); }\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\nfunction _isNativeFunction(fn) { return Function.toString.call(fn).indexOf(\"[native code]\") !== -1; }\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n\nvar CognitoError = /*#__PURE__*/function (_Error) {\n _inheritsLoose(CognitoError, _Error);\n function CognitoError(message, code, name, statusCode) {\n var _this;\n _this = _Error.call(this, message) || this;\n _this.code = code;\n _this.name = name;\n _this.statusCode = statusCode;\n return _this;\n }\n return CognitoError;\n}( /*#__PURE__*/_wrapNativeSuper(Error));\n/** @class */\nvar Client = /*#__PURE__*/function () {\n /**\n * Constructs a new AWS Cognito Identity Provider client object\n * @param {string} region AWS region\n * @param {string} endpoint endpoint\n * @param {object} fetchOptions options for fetch API (only credentials is supported)\n */\n function Client(region, endpoint, fetchOptions) {\n this.endpoint = endpoint || \"https://cognito-idp.\" + region + \".amazonaws.com/\";\n var _ref = fetchOptions || {},\n credentials = _ref.credentials;\n this.fetchOptions = credentials ? {\n credentials: credentials\n } : {};\n }\n\n /**\n * Makes an unauthenticated request on AWS Cognito Identity Provider API\n * using fetch\n * @param {string} operation API operation\n * @param {object} params Input parameters\n * @returns Promise\n */\n var _proto = Client.prototype;\n _proto.promisifyRequest = function promisifyRequest(operation, params) {\n var _this2 = this;\n return new Promise(function (resolve, reject) {\n _this2.request(operation, params, function (err, data) {\n if (err) {\n reject(new CognitoError(err.message, err.code, err.name, err.statusCode));\n } else {\n resolve(data);\n }\n });\n });\n };\n _proto.requestWithRetry = function requestWithRetry(operation, params, callback) {\n var _this3 = this;\n var MAX_DELAY_IN_MILLIS = 5 * 1000;\n jitteredExponentialRetry(function (p) {\n return new Promise(function (res, rej) {\n _this3.request(operation, p, function (error, result) {\n if (error) {\n rej(error);\n } else {\n res(result);\n }\n });\n });\n }, [params], MAX_DELAY_IN_MILLIS).then(function (result) {\n return callback(null, result);\n })[\"catch\"](function (error) {\n return callback(error);\n });\n }\n\n /**\n * Makes an unauthenticated request on AWS Cognito Identity Provider API\n * using fetch\n * @param {string} operation API operation\n * @param {object} params Input parameters\n * @param {function} callback Callback called when a response is returned\n * @returns {void}\n */;\n _proto.request = function request(operation, params, callback) {\n var headers = {\n 'Content-Type': 'application/x-amz-json-1.1',\n 'X-Amz-Target': \"AWSCognitoIdentityProviderService.\" + operation,\n 'X-Amz-User-Agent': _UserAgent__WEBPACK_IMPORTED_MODULE_1__[\"default\"].prototype.userAgent,\n 'Cache-Control': 'no-store'\n };\n var options = Object.assign({}, this.fetchOptions, {\n headers: headers,\n method: 'POST',\n mode: 'cors',\n body: JSON.stringify(params)\n });\n var response;\n var responseJsonData;\n fetch(this.endpoint, options).then(function (resp) {\n response = resp;\n return resp;\n }, function (err) {\n // If error happens here, the request failed\n // if it is TypeError throw network error\n if (err instanceof TypeError) {\n throw new Error('Network error');\n }\n throw err;\n }).then(function (resp) {\n return resp.json()[\"catch\"](function () {\n return {};\n });\n }).then(function (data) {\n // return parsed body stream\n if (response.ok) return callback(null, data);\n responseJsonData = data;\n\n // Taken from aws-sdk-js/lib/protocol/json.js\n // eslint-disable-next-line no-underscore-dangle\n var code = (data.__type || data.code).split('#').pop();\n var error = new Error(data.message || data.Message || null);\n error.name = code;\n error.code = code;\n return callback(error);\n })[\"catch\"](function (err) {\n // first check if we have a service error\n if (response && response.headers && response.headers.get('x-amzn-errortype')) {\n try {\n var code = response.headers.get('x-amzn-errortype').split(':')[0];\n var error = new Error(response.status ? response.status.toString() : null);\n error.code = code;\n error.name = code;\n error.statusCode = response.status;\n return callback(error);\n } catch (ex) {\n return callback(err);\n }\n // otherwise check if error is Network error\n } else if (err instanceof Error && err.message === 'Network error') {\n err.code = 'NetworkError';\n }\n return callback(err);\n });\n };\n return Client;\n}();\n\nvar logger = {\n debug: function debug() {\n // Intentionally blank. This package doesn't have logging\n }\n};\n\n/**\n * For now, all errors are retryable.\n */\nvar NonRetryableError = /*#__PURE__*/function (_Error2) {\n _inheritsLoose(NonRetryableError, _Error2);\n function NonRetryableError(message) {\n var _this4;\n _this4 = _Error2.call(this, message) || this;\n _this4.nonRetryable = true;\n return _this4;\n }\n return NonRetryableError;\n}( /*#__PURE__*/_wrapNativeSuper(Error));\nvar isNonRetryableError = function isNonRetryableError(obj) {\n var key = 'nonRetryable';\n return obj && obj[key];\n};\nfunction retry(functionToRetry, args, delayFn, attempt) {\n if (attempt === void 0) {\n attempt = 1;\n }\n if (typeof functionToRetry !== 'function') {\n throw Error('functionToRetry must be a function');\n }\n logger.debug(functionToRetry.name + \" attempt #\" + attempt + \" with args: \" + JSON.stringify(args));\n return functionToRetry.apply(void 0, args)[\"catch\"](function (err) {\n logger.debug(\"error on \" + functionToRetry.name, err);\n if (isNonRetryableError(err)) {\n logger.debug(functionToRetry.name + \" non retryable error\", err);\n throw err;\n }\n var retryIn = delayFn(attempt, args, err);\n logger.debug(functionToRetry.name + \" retrying in \" + retryIn + \" ms\");\n if (retryIn !== false) {\n return new Promise(function (res) {\n return setTimeout(res, retryIn);\n }).then(function () {\n return retry(functionToRetry, args, delayFn, attempt + 1);\n });\n } else {\n throw err;\n }\n });\n}\nfunction jitteredBackoff(maxDelayMs) {\n var BASE_TIME_MS = 100;\n var JITTER_FACTOR = 100;\n return function (attempt) {\n var delay = Math.pow(2, attempt) * BASE_TIME_MS + JITTER_FACTOR * Math.random();\n return delay > maxDelayMs ? false : delay;\n };\n}\nvar MAX_DELAY_MS = 5 * 60 * 1000;\nfunction jitteredExponentialRetry(functionToRetry, args, maxDelayMs) {\n if (maxDelayMs === void 0) {\n maxDelayMs = MAX_DELAY_MS;\n }\n return retry(functionToRetry, args, jitteredBackoff(maxDelayMs));\n}\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/Client.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/CognitoAccessToken.js": /*!**************************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/CognitoAccessToken.js ***! \**************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return CognitoAccessToken; });\n/* harmony import */ var _CognitoJwtToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CognitoJwtToken */ \"./node_modules/amazon-cognito-identity-js/es/CognitoJwtToken.js\");\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n\n\n/** @class */\nvar CognitoAccessToken = /*#__PURE__*/function (_CognitoJwtToken) {\n _inheritsLoose(CognitoAccessToken, _CognitoJwtToken);\n /**\n * Constructs a new CognitoAccessToken object\n * @param {string=} AccessToken The JWT access token.\n */\n function CognitoAccessToken(_temp) {\n var _ref = _temp === void 0 ? {} : _temp,\n AccessToken = _ref.AccessToken;\n return _CognitoJwtToken.call(this, AccessToken || '') || this;\n }\n return CognitoAccessToken;\n}(_CognitoJwtToken__WEBPACK_IMPORTED_MODULE_0__[\"default\"]);\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/CognitoAccessToken.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/CognitoIdToken.js": /*!**********************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/CognitoIdToken.js ***! \**********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return CognitoIdToken; });\n/* harmony import */ var _CognitoJwtToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CognitoJwtToken */ \"./node_modules/amazon-cognito-identity-js/es/CognitoJwtToken.js\");\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n\n\n/** @class */\nvar CognitoIdToken = /*#__PURE__*/function (_CognitoJwtToken) {\n _inheritsLoose(CognitoIdToken, _CognitoJwtToken);\n /**\n * Constructs a new CognitoIdToken object\n * @param {string=} IdToken The JWT Id token\n */\n function CognitoIdToken(_temp) {\n var _ref = _temp === void 0 ? {} : _temp,\n IdToken = _ref.IdToken;\n return _CognitoJwtToken.call(this, IdToken || '') || this;\n }\n return CognitoIdToken;\n}(_CognitoJwtToken__WEBPACK_IMPORTED_MODULE_0__[\"default\"]);\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/CognitoIdToken.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/CognitoJwtToken.js": /*!***********************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/CognitoJwtToken.js ***! \***********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return CognitoJwtToken; });\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! buffer */ \"./node_modules/buffer/index.js\");\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(buffer__WEBPACK_IMPORTED_MODULE_0__);\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n\n\n/** @class */\nvar CognitoJwtToken = /*#__PURE__*/function () {\n /**\n * Constructs a new CognitoJwtToken object\n * @param {string=} token The JWT token.\n */\n function CognitoJwtToken(token) {\n // Assign object\n this.jwtToken = token || '';\n this.payload = this.decodePayload();\n }\n\n /**\n * @returns {string} the record's token.\n */\n var _proto = CognitoJwtToken.prototype;\n _proto.getJwtToken = function getJwtToken() {\n return this.jwtToken;\n }\n\n /**\n * @returns {int} the token's expiration (exp member).\n */;\n _proto.getExpiration = function getExpiration() {\n return this.payload.exp;\n }\n\n /**\n * @returns {int} the token's \"issued at\" (iat member).\n */;\n _proto.getIssuedAt = function getIssuedAt() {\n return this.payload.iat;\n }\n\n /**\n * @returns {object} the token's payload.\n */;\n _proto.decodePayload = function decodePayload() {\n var payload = this.jwtToken.split('.')[1];\n try {\n return JSON.parse(buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(payload, 'base64').toString('utf8'));\n } catch (err) {\n return {};\n }\n };\n return CognitoJwtToken;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/CognitoJwtToken.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/CognitoRefreshToken.js": /*!***************************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/CognitoRefreshToken.js ***! \***************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return CognitoRefreshToken; });\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n/** @class */\nvar CognitoRefreshToken = /*#__PURE__*/function () {\n /**\n * Constructs a new CognitoRefreshToken object\n * @param {string=} RefreshToken The JWT refresh token.\n */\n function CognitoRefreshToken(_temp) {\n var _ref = _temp === void 0 ? {} : _temp,\n RefreshToken = _ref.RefreshToken;\n // Assign object\n this.token = RefreshToken || '';\n }\n\n /**\n * @returns {string} the record's token.\n */\n var _proto = CognitoRefreshToken.prototype;\n _proto.getToken = function getToken() {\n return this.token;\n };\n return CognitoRefreshToken;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/CognitoRefreshToken.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/CognitoUser.js": /*!*******************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/CognitoUser.js ***! \*******************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return CognitoUser; });\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! buffer */ \"./node_modules/buffer/index.js\");\n/* harmony import */ var buffer__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(buffer__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var crypto_js_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! crypto-js/core */ \"./node_modules/crypto-js/core.js\");\n/* harmony import */ var crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(crypto_js_core__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var crypto_js_lib_typedarrays__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! crypto-js/lib-typedarrays */ \"./node_modules/crypto-js/lib-typedarrays.js\");\n/* harmony import */ var crypto_js_lib_typedarrays__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(crypto_js_lib_typedarrays__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var crypto_js_enc_base64__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! crypto-js/enc-base64 */ \"./node_modules/crypto-js/enc-base64.js\");\n/* harmony import */ var crypto_js_enc_base64__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(crypto_js_enc_base64__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! crypto-js/hmac-sha256 */ \"./node_modules/crypto-js/hmac-sha256.js\");\n/* harmony import */ var crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var _BigInteger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./BigInteger */ \"./node_modules/amazon-cognito-identity-js/es/BigInteger.js\");\n/* harmony import */ var _AuthenticationHelper__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./AuthenticationHelper */ \"./node_modules/amazon-cognito-identity-js/es/AuthenticationHelper.js\");\n/* harmony import */ var _CognitoAccessToken__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./CognitoAccessToken */ \"./node_modules/amazon-cognito-identity-js/es/CognitoAccessToken.js\");\n/* harmony import */ var _CognitoIdToken__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./CognitoIdToken */ \"./node_modules/amazon-cognito-identity-js/es/CognitoIdToken.js\");\n/* harmony import */ var _CognitoRefreshToken__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./CognitoRefreshToken */ \"./node_modules/amazon-cognito-identity-js/es/CognitoRefreshToken.js\");\n/* harmony import */ var _CognitoUserSession__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./CognitoUserSession */ \"./node_modules/amazon-cognito-identity-js/es/CognitoUserSession.js\");\n/* harmony import */ var _DateHelper__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./DateHelper */ \"./node_modules/amazon-cognito-identity-js/es/DateHelper.js\");\n/* harmony import */ var _CognitoUserAttribute__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./CognitoUserAttribute */ \"./node_modules/amazon-cognito-identity-js/es/CognitoUserAttribute.js\");\n/* harmony import */ var _StorageHelper__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./StorageHelper */ \"./node_modules/amazon-cognito-identity-js/es/StorageHelper.js\");\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n\n\n // necessary for crypto js\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @callback nodeCallback\n * @template T result\n * @param {*} err The operation failure reason, or null.\n * @param {T} result The operation result.\n */\n\n/**\n * @callback onFailure\n * @param {*} err Failure reason.\n */\n\n/**\n * @callback onSuccess\n * @template T result\n * @param {T} result The operation result.\n */\n\n/**\n * @callback mfaRequired\n * @param {*} details MFA challenge details.\n */\n\n/**\n * @callback customChallenge\n * @param {*} details Custom challenge details.\n */\n\n/**\n * @callback inputVerificationCode\n * @param {*} data Server response.\n */\n\n/**\n * @callback authSuccess\n * @param {CognitoUserSession} session The new session.\n * @param {bool=} userConfirmationNecessary User must be confirmed.\n */\n\nvar isBrowser = typeof navigator !== 'undefined';\nvar userAgent = isBrowser ? navigator.userAgent : 'nodejs';\n\n/** @class */\nvar CognitoUser = /*#__PURE__*/function () {\n /**\n * Constructs a new CognitoUser object\n * @param {object} data Creation options\n * @param {string} data.Username The user's username.\n * @param {CognitoUserPool} data.Pool Pool containing the user.\n * @param {object} data.Storage Optional storage object.\n */\n function CognitoUser(data) {\n if (data == null || data.Username == null || data.Pool == null) {\n throw new Error('Username and Pool information are required.');\n }\n this.username = data.Username || '';\n this.pool = data.Pool;\n this.Session = null;\n this.client = data.Pool.client;\n this.signInUserSession = null;\n this.authenticationFlowType = 'USER_SRP_AUTH';\n this.storage = data.Storage || new _StorageHelper__WEBPACK_IMPORTED_MODULE_13__[\"default\"]().getStorage();\n this.keyPrefix = \"CognitoIdentityServiceProvider.\" + this.pool.getClientId();\n this.userDataKey = this.keyPrefix + \".\" + this.username + \".userData\";\n }\n\n /**\n * Sets the session for this user\n * @param {CognitoUserSession} signInUserSession the session\n * @returns {void}\n */\n var _proto = CognitoUser.prototype;\n _proto.setSignInUserSession = function setSignInUserSession(signInUserSession) {\n this.clearCachedUserData();\n this.signInUserSession = signInUserSession;\n this.cacheTokens();\n }\n\n /**\n * @returns {CognitoUserSession} the current session for this user\n */;\n _proto.getSignInUserSession = function getSignInUserSession() {\n return this.signInUserSession;\n }\n\n /**\n * @returns {string} the user's username\n */;\n _proto.getUsername = function getUsername() {\n return this.username;\n }\n\n /**\n * @returns {String} the authentication flow type\n */;\n _proto.getAuthenticationFlowType = function getAuthenticationFlowType() {\n return this.authenticationFlowType;\n }\n\n /**\n * sets authentication flow type\n * @param {string} authenticationFlowType New value.\n * @returns {void}\n */;\n _proto.setAuthenticationFlowType = function setAuthenticationFlowType(authenticationFlowType) {\n this.authenticationFlowType = authenticationFlowType;\n }\n\n /**\n * This is used for authenticating the user through the custom authentication flow.\n * @param {AuthenticationDetails} authDetails Contains the authentication data\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {customChallenge} callback.customChallenge Custom challenge\n * response required to continue.\n * @param {authSuccess} callback.onSuccess Called on success with the new session.\n * @returns {void}\n */;\n _proto.initiateAuth = function initiateAuth(authDetails, callback) {\n var _this = this;\n var authParameters = authDetails.getAuthParameters();\n authParameters.USERNAME = this.username;\n var clientMetaData = Object.keys(authDetails.getValidationData()).length !== 0 ? authDetails.getValidationData() : authDetails.getClientMetadata();\n var jsonReq = {\n AuthFlow: 'CUSTOM_AUTH',\n ClientId: this.pool.getClientId(),\n AuthParameters: authParameters,\n ClientMetadata: clientMetaData\n };\n if (this.getUserContextData()) {\n jsonReq.UserContextData = this.getUserContextData();\n }\n this.client.request('InitiateAuth', jsonReq, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n var challengeName = data.ChallengeName;\n var challengeParameters = data.ChallengeParameters;\n if (challengeName === 'CUSTOM_CHALLENGE') {\n _this.Session = data.Session;\n return callback.customChallenge(challengeParameters);\n }\n _this.signInUserSession = _this.getCognitoUserSession(data.AuthenticationResult);\n _this.cacheTokens();\n return callback.onSuccess(_this.signInUserSession);\n });\n }\n\n /**\n * This is used for authenticating the user.\n * stuff\n * @param {AuthenticationDetails} authDetails Contains the authentication data\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {newPasswordRequired} callback.newPasswordRequired new\n * password and any required attributes are required to continue\n * @param {mfaRequired} callback.mfaRequired MFA code\n * required to continue.\n * @param {customChallenge} callback.customChallenge Custom challenge\n * response required to continue.\n * @param {authSuccess} callback.onSuccess Called on success with the new session.\n * @returns {void}\n */;\n _proto.authenticateUser = function authenticateUser(authDetails, callback) {\n if (this.authenticationFlowType === 'USER_PASSWORD_AUTH') {\n return this.authenticateUserPlainUsernamePassword(authDetails, callback);\n } else if (this.authenticationFlowType === 'USER_SRP_AUTH' || this.authenticationFlowType === 'CUSTOM_AUTH') {\n return this.authenticateUserDefaultAuth(authDetails, callback);\n }\n return callback.onFailure(new Error('Authentication flow type is invalid.'));\n }\n\n /**\n * PRIVATE ONLY: This is an internal only method and should not\n * be directly called by the consumers.\n * It calls the AuthenticationHelper for SRP related\n * stuff\n * @param {AuthenticationDetails} authDetails Contains the authentication data\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {newPasswordRequired} callback.newPasswordRequired new\n * password and any required attributes are required to continue\n * @param {mfaRequired} callback.mfaRequired MFA code\n * required to continue.\n * @param {customChallenge} callback.customChallenge Custom challenge\n * response required to continue.\n * @param {authSuccess} callback.onSuccess Called on success with the new session.\n * @returns {void}\n */;\n _proto.authenticateUserDefaultAuth = function authenticateUserDefaultAuth(authDetails, callback) {\n var _this2 = this;\n var authenticationHelper = new _AuthenticationHelper__WEBPACK_IMPORTED_MODULE_6__[\"default\"](this.pool.getUserPoolName());\n var dateHelper = new _DateHelper__WEBPACK_IMPORTED_MODULE_11__[\"default\"]();\n var serverBValue;\n var salt;\n var authParameters = {};\n if (this.deviceKey != null) {\n authParameters.DEVICE_KEY = this.deviceKey;\n }\n authParameters.USERNAME = this.username;\n authenticationHelper.getLargeAValue(function (errOnAValue, aValue) {\n // getLargeAValue callback start\n if (errOnAValue) {\n callback.onFailure(errOnAValue);\n }\n authParameters.SRP_A = aValue.toString(16);\n if (_this2.authenticationFlowType === 'CUSTOM_AUTH') {\n authParameters.CHALLENGE_NAME = 'SRP_A';\n }\n var clientMetaData = Object.keys(authDetails.getValidationData()).length !== 0 ? authDetails.getValidationData() : authDetails.getClientMetadata();\n var jsonReq = {\n AuthFlow: _this2.authenticationFlowType,\n ClientId: _this2.pool.getClientId(),\n AuthParameters: authParameters,\n ClientMetadata: clientMetaData\n };\n if (_this2.getUserContextData(_this2.username)) {\n jsonReq.UserContextData = _this2.getUserContextData(_this2.username);\n }\n _this2.client.request('InitiateAuth', jsonReq, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n var challengeParameters = data.ChallengeParameters;\n _this2.username = challengeParameters.USER_ID_FOR_SRP;\n _this2.userDataKey = _this2.keyPrefix + \".\" + _this2.username + \".userData\";\n serverBValue = new _BigInteger__WEBPACK_IMPORTED_MODULE_5__[\"default\"](challengeParameters.SRP_B, 16);\n salt = new _BigInteger__WEBPACK_IMPORTED_MODULE_5__[\"default\"](challengeParameters.SALT, 16);\n _this2.getCachedDeviceKeyAndPassword();\n authenticationHelper.getPasswordAuthenticationKey(_this2.username, authDetails.getPassword(), serverBValue, salt, function (errOnHkdf, hkdf) {\n // getPasswordAuthenticationKey callback start\n if (errOnHkdf) {\n callback.onFailure(errOnHkdf);\n }\n var dateNow = dateHelper.getNowString();\n var message = crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default.a.lib.WordArray.create(buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].concat([buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(_this2.pool.getUserPoolName(), 'utf8'), buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(_this2.username, 'utf8'), buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(challengeParameters.SECRET_BLOCK, 'base64'), buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(dateNow, 'utf8')]));\n var key = crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default.a.lib.WordArray.create(hkdf);\n var signatureString = crypto_js_enc_base64__WEBPACK_IMPORTED_MODULE_3___default.a.stringify(crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4___default()(message, key));\n var challengeResponses = {};\n challengeResponses.USERNAME = _this2.username;\n challengeResponses.PASSWORD_CLAIM_SECRET_BLOCK = challengeParameters.SECRET_BLOCK;\n challengeResponses.TIMESTAMP = dateNow;\n challengeResponses.PASSWORD_CLAIM_SIGNATURE = signatureString;\n if (_this2.deviceKey != null) {\n challengeResponses.DEVICE_KEY = _this2.deviceKey;\n }\n var respondToAuthChallenge = function respondToAuthChallenge(challenge, challengeCallback) {\n return _this2.client.request('RespondToAuthChallenge', challenge, function (errChallenge, dataChallenge) {\n if (errChallenge && errChallenge.code === 'ResourceNotFoundException' && errChallenge.message.toLowerCase().indexOf('device') !== -1) {\n challengeResponses.DEVICE_KEY = null;\n _this2.deviceKey = null;\n _this2.randomPassword = null;\n _this2.deviceGroupKey = null;\n _this2.clearCachedDeviceKeyAndPassword();\n return respondToAuthChallenge(challenge, challengeCallback);\n }\n return challengeCallback(errChallenge, dataChallenge);\n });\n };\n var jsonReqResp = {\n ChallengeName: 'PASSWORD_VERIFIER',\n ClientId: _this2.pool.getClientId(),\n ChallengeResponses: challengeResponses,\n Session: data.Session,\n ClientMetadata: clientMetaData\n };\n if (_this2.getUserContextData()) {\n jsonReqResp.UserContextData = _this2.getUserContextData();\n }\n respondToAuthChallenge(jsonReqResp, function (errAuthenticate, dataAuthenticate) {\n if (errAuthenticate) {\n return callback.onFailure(errAuthenticate);\n }\n return _this2.authenticateUserInternal(dataAuthenticate, authenticationHelper, callback);\n });\n return undefined;\n // getPasswordAuthenticationKey callback end\n });\n\n return undefined;\n });\n // getLargeAValue callback end\n });\n }\n\n /**\n * PRIVATE ONLY: This is an internal only method and should not\n * be directly called by the consumers.\n * @param {AuthenticationDetails} authDetails Contains the authentication data.\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {mfaRequired} callback.mfaRequired MFA code\n * required to continue.\n * @param {authSuccess} callback.onSuccess Called on success with the new session.\n * @returns {void}\n */;\n _proto.authenticateUserPlainUsernamePassword = function authenticateUserPlainUsernamePassword(authDetails, callback) {\n var _this3 = this;\n var authParameters = {};\n authParameters.USERNAME = this.username;\n authParameters.PASSWORD = authDetails.getPassword();\n if (!authParameters.PASSWORD) {\n callback.onFailure(new Error('PASSWORD parameter is required'));\n return;\n }\n var authenticationHelper = new _AuthenticationHelper__WEBPACK_IMPORTED_MODULE_6__[\"default\"](this.pool.getUserPoolName());\n this.getCachedDeviceKeyAndPassword();\n if (this.deviceKey != null) {\n authParameters.DEVICE_KEY = this.deviceKey;\n }\n var clientMetaData = Object.keys(authDetails.getValidationData()).length !== 0 ? authDetails.getValidationData() : authDetails.getClientMetadata();\n var jsonReq = {\n AuthFlow: 'USER_PASSWORD_AUTH',\n ClientId: this.pool.getClientId(),\n AuthParameters: authParameters,\n ClientMetadata: clientMetaData\n };\n if (this.getUserContextData(this.username)) {\n jsonReq.UserContextData = this.getUserContextData(this.username);\n }\n // USER_PASSWORD_AUTH happens in a single round-trip: client sends userName and password,\n // Cognito UserPools verifies password and returns tokens.\n this.client.request('InitiateAuth', jsonReq, function (err, authResult) {\n if (err) {\n return callback.onFailure(err);\n }\n return _this3.authenticateUserInternal(authResult, authenticationHelper, callback);\n });\n }\n\n /**\n * PRIVATE ONLY: This is an internal only method and should not\n * be directly called by the consumers.\n * @param {object} dataAuthenticate authentication data\n * @param {object} authenticationHelper helper created\n * @param {callback} callback passed on from caller\n * @returns {void}\n */;\n _proto.authenticateUserInternal = function authenticateUserInternal(dataAuthenticate, authenticationHelper, callback) {\n var _this4 = this;\n var challengeName = dataAuthenticate.ChallengeName;\n var challengeParameters = dataAuthenticate.ChallengeParameters;\n if (challengeName === 'SMS_MFA') {\n this.Session = dataAuthenticate.Session;\n return callback.mfaRequired(challengeName, challengeParameters);\n }\n if (challengeName === 'SELECT_MFA_TYPE') {\n this.Session = dataAuthenticate.Session;\n return callback.selectMFAType(challengeName, challengeParameters);\n }\n if (challengeName === 'MFA_SETUP') {\n this.Session = dataAuthenticate.Session;\n return callback.mfaSetup(challengeName, challengeParameters);\n }\n if (challengeName === 'SOFTWARE_TOKEN_MFA') {\n this.Session = dataAuthenticate.Session;\n return callback.totpRequired(challengeName, challengeParameters);\n }\n if (challengeName === 'CUSTOM_CHALLENGE') {\n this.Session = dataAuthenticate.Session;\n return callback.customChallenge(challengeParameters);\n }\n if (challengeName === 'NEW_PASSWORD_REQUIRED') {\n this.Session = dataAuthenticate.Session;\n var userAttributes = null;\n var rawRequiredAttributes = null;\n var requiredAttributes = [];\n var userAttributesPrefix = authenticationHelper.getNewPasswordRequiredChallengeUserAttributePrefix();\n if (challengeParameters) {\n userAttributes = JSON.parse(dataAuthenticate.ChallengeParameters.userAttributes);\n rawRequiredAttributes = JSON.parse(dataAuthenticate.ChallengeParameters.requiredAttributes);\n }\n if (rawRequiredAttributes) {\n for (var i = 0; i < rawRequiredAttributes.length; i++) {\n requiredAttributes[i] = rawRequiredAttributes[i].substr(userAttributesPrefix.length);\n }\n }\n return callback.newPasswordRequired(userAttributes, requiredAttributes);\n }\n if (challengeName === 'DEVICE_SRP_AUTH') {\n this.Session = dataAuthenticate.Session;\n this.getDeviceResponse(callback);\n return undefined;\n }\n this.signInUserSession = this.getCognitoUserSession(dataAuthenticate.AuthenticationResult);\n this.challengeName = challengeName;\n this.cacheTokens();\n var newDeviceMetadata = dataAuthenticate.AuthenticationResult.NewDeviceMetadata;\n if (newDeviceMetadata == null) {\n return callback.onSuccess(this.signInUserSession);\n }\n authenticationHelper.generateHashDevice(dataAuthenticate.AuthenticationResult.NewDeviceMetadata.DeviceGroupKey, dataAuthenticate.AuthenticationResult.NewDeviceMetadata.DeviceKey, function (errGenHash) {\n if (errGenHash) {\n return callback.onFailure(errGenHash);\n }\n var deviceSecretVerifierConfig = {\n Salt: buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(authenticationHelper.getSaltDevices(), 'hex').toString('base64'),\n PasswordVerifier: buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(authenticationHelper.getVerifierDevices(), 'hex').toString('base64')\n };\n _this4.verifierDevices = deviceSecretVerifierConfig.PasswordVerifier;\n _this4.deviceGroupKey = newDeviceMetadata.DeviceGroupKey;\n _this4.randomPassword = authenticationHelper.getRandomPassword();\n _this4.client.request('ConfirmDevice', {\n DeviceKey: newDeviceMetadata.DeviceKey,\n AccessToken: _this4.signInUserSession.getAccessToken().getJwtToken(),\n DeviceSecretVerifierConfig: deviceSecretVerifierConfig,\n DeviceName: userAgent\n }, function (errConfirm, dataConfirm) {\n if (errConfirm) {\n return callback.onFailure(errConfirm);\n }\n _this4.deviceKey = dataAuthenticate.AuthenticationResult.NewDeviceMetadata.DeviceKey;\n _this4.cacheDeviceKeyAndPassword();\n if (dataConfirm.UserConfirmationNecessary === true) {\n return callback.onSuccess(_this4.signInUserSession, dataConfirm.UserConfirmationNecessary);\n }\n return callback.onSuccess(_this4.signInUserSession);\n });\n return undefined;\n });\n return undefined;\n }\n\n /**\n * This method is user to complete the NEW_PASSWORD_REQUIRED challenge.\n * Pass the new password with any new user attributes to be updated.\n * User attribute keys must be of format userAttributes..\n * @param {string} newPassword new password for this user\n * @param {object} requiredAttributeData map with values for all required attributes\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {mfaRequired} callback.mfaRequired MFA code required to continue.\n * @param {customChallenge} callback.customChallenge Custom challenge\n * response required to continue.\n * @param {authSuccess} callback.onSuccess Called on success with the new session.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.completeNewPasswordChallenge = function completeNewPasswordChallenge(newPassword, requiredAttributeData, callback, clientMetadata) {\n var _this5 = this;\n if (!newPassword) {\n return callback.onFailure(new Error('New password is required.'));\n }\n var authenticationHelper = new _AuthenticationHelper__WEBPACK_IMPORTED_MODULE_6__[\"default\"](this.pool.getUserPoolName());\n var userAttributesPrefix = authenticationHelper.getNewPasswordRequiredChallengeUserAttributePrefix();\n var finalUserAttributes = {};\n if (requiredAttributeData) {\n Object.keys(requiredAttributeData).forEach(function (key) {\n finalUserAttributes[userAttributesPrefix + key] = requiredAttributeData[key];\n });\n }\n finalUserAttributes.NEW_PASSWORD = newPassword;\n finalUserAttributes.USERNAME = this.username;\n var jsonReq = {\n ChallengeName: 'NEW_PASSWORD_REQUIRED',\n ClientId: this.pool.getClientId(),\n ChallengeResponses: finalUserAttributes,\n Session: this.Session,\n ClientMetadata: clientMetadata\n };\n if (this.getUserContextData()) {\n jsonReq.UserContextData = this.getUserContextData();\n }\n this.client.request('RespondToAuthChallenge', jsonReq, function (errAuthenticate, dataAuthenticate) {\n if (errAuthenticate) {\n return callback.onFailure(errAuthenticate);\n }\n return _this5.authenticateUserInternal(dataAuthenticate, authenticationHelper, callback);\n });\n return undefined;\n }\n\n /**\n * This is used to get a session using device authentication. It is called at the end of user\n * authentication\n *\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {authSuccess} callback.onSuccess Called on success with the new session.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n * @private\n */;\n _proto.getDeviceResponse = function getDeviceResponse(callback, clientMetadata) {\n var _this6 = this;\n var authenticationHelper = new _AuthenticationHelper__WEBPACK_IMPORTED_MODULE_6__[\"default\"](this.deviceGroupKey);\n var dateHelper = new _DateHelper__WEBPACK_IMPORTED_MODULE_11__[\"default\"]();\n var authParameters = {};\n authParameters.USERNAME = this.username;\n authParameters.DEVICE_KEY = this.deviceKey;\n authenticationHelper.getLargeAValue(function (errAValue, aValue) {\n // getLargeAValue callback start\n if (errAValue) {\n callback.onFailure(errAValue);\n }\n authParameters.SRP_A = aValue.toString(16);\n var jsonReq = {\n ChallengeName: 'DEVICE_SRP_AUTH',\n ClientId: _this6.pool.getClientId(),\n ChallengeResponses: authParameters,\n ClientMetadata: clientMetadata,\n Session: _this6.Session\n };\n if (_this6.getUserContextData()) {\n jsonReq.UserContextData = _this6.getUserContextData();\n }\n _this6.client.request('RespondToAuthChallenge', jsonReq, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n var challengeParameters = data.ChallengeParameters;\n var serverBValue = new _BigInteger__WEBPACK_IMPORTED_MODULE_5__[\"default\"](challengeParameters.SRP_B, 16);\n var salt = new _BigInteger__WEBPACK_IMPORTED_MODULE_5__[\"default\"](challengeParameters.SALT, 16);\n authenticationHelper.getPasswordAuthenticationKey(_this6.deviceKey, _this6.randomPassword, serverBValue, salt, function (errHkdf, hkdf) {\n // getPasswordAuthenticationKey callback start\n if (errHkdf) {\n return callback.onFailure(errHkdf);\n }\n var dateNow = dateHelper.getNowString();\n var message = crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default.a.lib.WordArray.create(buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].concat([buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(_this6.deviceGroupKey, 'utf8'), buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(_this6.deviceKey, 'utf8'), buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(challengeParameters.SECRET_BLOCK, 'base64'), buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(dateNow, 'utf8')]));\n var key = crypto_js_core__WEBPACK_IMPORTED_MODULE_1___default.a.lib.WordArray.create(hkdf);\n var signatureString = crypto_js_enc_base64__WEBPACK_IMPORTED_MODULE_3___default.a.stringify(crypto_js_hmac_sha256__WEBPACK_IMPORTED_MODULE_4___default()(message, key));\n var challengeResponses = {};\n challengeResponses.USERNAME = _this6.username;\n challengeResponses.PASSWORD_CLAIM_SECRET_BLOCK = challengeParameters.SECRET_BLOCK;\n challengeResponses.TIMESTAMP = dateNow;\n challengeResponses.PASSWORD_CLAIM_SIGNATURE = signatureString;\n challengeResponses.DEVICE_KEY = _this6.deviceKey;\n var jsonReqResp = {\n ChallengeName: 'DEVICE_PASSWORD_VERIFIER',\n ClientId: _this6.pool.getClientId(),\n ChallengeResponses: challengeResponses,\n Session: data.Session\n };\n if (_this6.getUserContextData()) {\n jsonReqResp.UserContextData = _this6.getUserContextData();\n }\n _this6.client.request('RespondToAuthChallenge', jsonReqResp, function (errAuthenticate, dataAuthenticate) {\n if (errAuthenticate) {\n return callback.onFailure(errAuthenticate);\n }\n _this6.signInUserSession = _this6.getCognitoUserSession(dataAuthenticate.AuthenticationResult);\n _this6.cacheTokens();\n return callback.onSuccess(_this6.signInUserSession);\n });\n return undefined;\n // getPasswordAuthenticationKey callback end\n });\n\n return undefined;\n });\n // getLargeAValue callback end\n });\n }\n\n /**\n * This is used for a certain user to confirm the registration by using a confirmation code\n * @param {string} confirmationCode Code entered by user.\n * @param {bool} forceAliasCreation Allow migrating from an existing email / phone number.\n * @param {nodeCallback} callback Called on success or error.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.confirmRegistration = function confirmRegistration(confirmationCode, forceAliasCreation, callback, clientMetadata) {\n var jsonReq = {\n ClientId: this.pool.getClientId(),\n ConfirmationCode: confirmationCode,\n Username: this.username,\n ForceAliasCreation: forceAliasCreation,\n ClientMetadata: clientMetadata\n };\n if (this.getUserContextData()) {\n jsonReq.UserContextData = this.getUserContextData();\n }\n this.client.request('ConfirmSignUp', jsonReq, function (err) {\n if (err) {\n return callback(err, null);\n }\n return callback(null, 'SUCCESS');\n });\n }\n\n /**\n * This is used by the user once he has the responses to a custom challenge\n * @param {string} answerChallenge The custom challenge answer.\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {customChallenge} callback.customChallenge\n * Custom challenge response required to continue.\n * @param {authSuccess} callback.onSuccess Called on success with the new session.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.sendCustomChallengeAnswer = function sendCustomChallengeAnswer(answerChallenge, callback, clientMetadata) {\n var _this7 = this;\n var challengeResponses = {};\n challengeResponses.USERNAME = this.username;\n challengeResponses.ANSWER = answerChallenge;\n var authenticationHelper = new _AuthenticationHelper__WEBPACK_IMPORTED_MODULE_6__[\"default\"](this.pool.getUserPoolName());\n this.getCachedDeviceKeyAndPassword();\n if (this.deviceKey != null) {\n challengeResponses.DEVICE_KEY = this.deviceKey;\n }\n var jsonReq = {\n ChallengeName: 'CUSTOM_CHALLENGE',\n ChallengeResponses: challengeResponses,\n ClientId: this.pool.getClientId(),\n Session: this.Session,\n ClientMetadata: clientMetadata\n };\n if (this.getUserContextData()) {\n jsonReq.UserContextData = this.getUserContextData();\n }\n this.client.request('RespondToAuthChallenge', jsonReq, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n return _this7.authenticateUserInternal(data, authenticationHelper, callback);\n });\n }\n\n /**\n * This is used by the user once he has an MFA code\n * @param {string} confirmationCode The MFA code entered by the user.\n * @param {object} callback Result callback map.\n * @param {string} mfaType The mfa we are replying to.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {authSuccess} callback.onSuccess Called on success with the new session.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.sendMFACode = function sendMFACode(confirmationCode, callback, mfaType, clientMetadata) {\n var _this8 = this;\n var challengeResponses = {};\n challengeResponses.USERNAME = this.username;\n challengeResponses.SMS_MFA_CODE = confirmationCode;\n var mfaTypeSelection = mfaType || 'SMS_MFA';\n if (mfaTypeSelection === 'SOFTWARE_TOKEN_MFA') {\n challengeResponses.SOFTWARE_TOKEN_MFA_CODE = confirmationCode;\n }\n if (this.deviceKey != null) {\n challengeResponses.DEVICE_KEY = this.deviceKey;\n }\n var jsonReq = {\n ChallengeName: mfaTypeSelection,\n ChallengeResponses: challengeResponses,\n ClientId: this.pool.getClientId(),\n Session: this.Session,\n ClientMetadata: clientMetadata\n };\n if (this.getUserContextData()) {\n jsonReq.UserContextData = this.getUserContextData();\n }\n this.client.request('RespondToAuthChallenge', jsonReq, function (err, dataAuthenticate) {\n if (err) {\n return callback.onFailure(err);\n }\n var challengeName = dataAuthenticate.ChallengeName;\n if (challengeName === 'DEVICE_SRP_AUTH') {\n _this8.getDeviceResponse(callback);\n return undefined;\n }\n _this8.signInUserSession = _this8.getCognitoUserSession(dataAuthenticate.AuthenticationResult);\n _this8.cacheTokens();\n if (dataAuthenticate.AuthenticationResult.NewDeviceMetadata == null) {\n return callback.onSuccess(_this8.signInUserSession);\n }\n var authenticationHelper = new _AuthenticationHelper__WEBPACK_IMPORTED_MODULE_6__[\"default\"](_this8.pool.getUserPoolName());\n authenticationHelper.generateHashDevice(dataAuthenticate.AuthenticationResult.NewDeviceMetadata.DeviceGroupKey, dataAuthenticate.AuthenticationResult.NewDeviceMetadata.DeviceKey, function (errGenHash) {\n if (errGenHash) {\n return callback.onFailure(errGenHash);\n }\n var deviceSecretVerifierConfig = {\n Salt: buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(authenticationHelper.getSaltDevices(), 'hex').toString('base64'),\n PasswordVerifier: buffer__WEBPACK_IMPORTED_MODULE_0__[\"Buffer\"].from(authenticationHelper.getVerifierDevices(), 'hex').toString('base64')\n };\n _this8.verifierDevices = deviceSecretVerifierConfig.PasswordVerifier;\n _this8.deviceGroupKey = dataAuthenticate.AuthenticationResult.NewDeviceMetadata.DeviceGroupKey;\n _this8.randomPassword = authenticationHelper.getRandomPassword();\n _this8.client.request('ConfirmDevice', {\n DeviceKey: dataAuthenticate.AuthenticationResult.NewDeviceMetadata.DeviceKey,\n AccessToken: _this8.signInUserSession.getAccessToken().getJwtToken(),\n DeviceSecretVerifierConfig: deviceSecretVerifierConfig,\n DeviceName: userAgent\n }, function (errConfirm, dataConfirm) {\n if (errConfirm) {\n return callback.onFailure(errConfirm);\n }\n _this8.deviceKey = dataAuthenticate.AuthenticationResult.NewDeviceMetadata.DeviceKey;\n _this8.cacheDeviceKeyAndPassword();\n if (dataConfirm.UserConfirmationNecessary === true) {\n return callback.onSuccess(_this8.signInUserSession, dataConfirm.UserConfirmationNecessary);\n }\n return callback.onSuccess(_this8.signInUserSession);\n });\n return undefined;\n });\n return undefined;\n });\n }\n\n /**\n * This is used by an authenticated user to change the current password\n * @param {string} oldUserPassword The current password.\n * @param {string} newUserPassword The requested new password.\n * @param {nodeCallback} callback Called on success or error.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.changePassword = function changePassword(oldUserPassword, newUserPassword, callback, clientMetadata) {\n if (!(this.signInUserSession != null && this.signInUserSession.isValid())) {\n return callback(new Error('User is not authenticated'), null);\n }\n this.client.request('ChangePassword', {\n PreviousPassword: oldUserPassword,\n ProposedPassword: newUserPassword,\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n ClientMetadata: clientMetadata\n }, function (err) {\n if (err) {\n return callback(err, null);\n }\n return callback(null, 'SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used by an authenticated user to enable MFA for itself\n * @deprecated\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.enableMFA = function enableMFA(callback) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback(new Error('User is not authenticated'), null);\n }\n var mfaOptions = [];\n var mfaEnabled = {\n DeliveryMedium: 'SMS',\n AttributeName: 'phone_number'\n };\n mfaOptions.push(mfaEnabled);\n this.client.request('SetUserSettings', {\n MFAOptions: mfaOptions,\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n }, function (err) {\n if (err) {\n return callback(err, null);\n }\n return callback(null, 'SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used by an authenticated user to enable MFA for itself\n * @param {IMfaSettings} smsMfaSettings the sms mfa settings\n * @param {IMFASettings} softwareTokenMfaSettings the software token mfa settings\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.setUserMfaPreference = function setUserMfaPreference(smsMfaSettings, softwareTokenMfaSettings, callback) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback(new Error('User is not authenticated'), null);\n }\n this.client.request('SetUserMFAPreference', {\n SMSMfaSettings: smsMfaSettings,\n SoftwareTokenMfaSettings: softwareTokenMfaSettings,\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n }, function (err) {\n if (err) {\n return callback(err, null);\n }\n return callback(null, 'SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used by an authenticated user to disable MFA for itself\n * @deprecated\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.disableMFA = function disableMFA(callback) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback(new Error('User is not authenticated'), null);\n }\n var mfaOptions = [];\n this.client.request('SetUserSettings', {\n MFAOptions: mfaOptions,\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n }, function (err) {\n if (err) {\n return callback(err, null);\n }\n return callback(null, 'SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used by an authenticated user to delete itself\n * @param {nodeCallback} callback Called on success or error.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.deleteUser = function deleteUser(callback, clientMetadata) {\n var _this9 = this;\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback(new Error('User is not authenticated'), null);\n }\n this.client.request('DeleteUser', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n ClientMetadata: clientMetadata\n }, function (err) {\n if (err) {\n return callback(err, null);\n }\n _this9.clearCachedUser();\n return callback(null, 'SUCCESS');\n });\n return undefined;\n }\n\n /**\n * @typedef {CognitoUserAttribute | { Name:string, Value:string }} AttributeArg\n */\n /**\n * This is used by an authenticated user to change a list of attributes\n * @param {AttributeArg[]} attributes A list of the new user attributes.\n * @param {nodeCallback} callback Called on success or error.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.updateAttributes = function updateAttributes(attributes, callback, clientMetadata) {\n var _this10 = this;\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback(new Error('User is not authenticated'), null);\n }\n this.client.request('UpdateUserAttributes', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n UserAttributes: attributes,\n ClientMetadata: clientMetadata\n }, function (err) {\n if (err) {\n return callback(err, null);\n }\n\n // update cached user\n return _this10.getUserData(function () {\n return callback(null, 'SUCCESS');\n }, {\n bypassCache: true\n });\n });\n return undefined;\n }\n\n /**\n * This is used by an authenticated user to get a list of attributes\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.getUserAttributes = function getUserAttributes(callback) {\n if (!(this.signInUserSession != null && this.signInUserSession.isValid())) {\n return callback(new Error('User is not authenticated'), null);\n }\n this.client.request('GetUser', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n }, function (err, userData) {\n if (err) {\n return callback(err, null);\n }\n var attributeList = [];\n for (var i = 0; i < userData.UserAttributes.length; i++) {\n var attribute = {\n Name: userData.UserAttributes[i].Name,\n Value: userData.UserAttributes[i].Value\n };\n var userAttribute = new _CognitoUserAttribute__WEBPACK_IMPORTED_MODULE_12__[\"default\"](attribute);\n attributeList.push(userAttribute);\n }\n return callback(null, attributeList);\n });\n return undefined;\n }\n\n /**\n * This was previously used by an authenticated user to get MFAOptions,\n * but no longer returns a meaningful response. Refer to the documentation for\n * how to setup and use MFA: https://docs.amplify.aws/lib/auth/mfa/q/platform/js\n * @deprecated\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.getMFAOptions = function getMFAOptions(callback) {\n if (!(this.signInUserSession != null && this.signInUserSession.isValid())) {\n return callback(new Error('User is not authenticated'), null);\n }\n this.client.request('GetUser', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n }, function (err, userData) {\n if (err) {\n return callback(err, null);\n }\n return callback(null, userData.MFAOptions);\n });\n return undefined;\n }\n\n /**\n * PRIVATE ONLY: This is an internal only method and should not\n * be directly called by the consumers.\n */;\n _proto.createGetUserRequest = function createGetUserRequest() {\n return this.client.promisifyRequest('GetUser', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n });\n }\n\n /**\n * PRIVATE ONLY: This is an internal only method and should not\n * be directly called by the consumers.\n */;\n _proto.refreshSessionIfPossible = function refreshSessionIfPossible(options) {\n var _this11 = this;\n if (options === void 0) {\n options = {};\n }\n // best effort, if not possible\n return new Promise(function (resolve) {\n var refresh = _this11.signInUserSession.getRefreshToken();\n if (refresh && refresh.getToken()) {\n _this11.refreshSession(refresh, resolve, options.clientMetadata);\n } else {\n resolve();\n }\n });\n }\n\n /**\n * @typedef {Object} GetUserDataOptions\n * @property {boolean} bypassCache - force getting data from Cognito service\n * @property {Record} clientMetadata - clientMetadata for getSession\n */\n\n /**\n * This is used by an authenticated users to get the userData\n * @param {nodeCallback} callback Called on success or error.\n * @param {GetUserDataOptions} params\n * @returns {void}\n */;\n _proto.getUserData = function getUserData(callback, params) {\n var _this12 = this;\n if (!(this.signInUserSession != null && this.signInUserSession.isValid())) {\n this.clearCachedUserData();\n return callback(new Error('User is not authenticated'), null);\n }\n var userData = this.getUserDataFromCache();\n if (!userData) {\n this.fetchUserData().then(function (data) {\n callback(null, data);\n })[\"catch\"](callback);\n return;\n }\n if (this.isFetchUserDataAndTokenRequired(params)) {\n this.fetchUserData().then(function (data) {\n return _this12.refreshSessionIfPossible(params).then(function () {\n return data;\n });\n }).then(function (data) {\n return callback(null, data);\n })[\"catch\"](callback);\n return;\n }\n try {\n callback(null, JSON.parse(userData));\n return;\n } catch (err) {\n this.clearCachedUserData();\n callback(err, null);\n return;\n }\n }\n\n /**\n *\n * PRIVATE ONLY: This is an internal only method and should not\n * be directly called by the consumers.\n */;\n _proto.getUserDataFromCache = function getUserDataFromCache() {\n var userData = this.storage.getItem(this.userDataKey);\n return userData;\n }\n\n /**\n *\n * PRIVATE ONLY: This is an internal only method and should not\n * be directly called by the consumers.\n */;\n _proto.isFetchUserDataAndTokenRequired = function isFetchUserDataAndTokenRequired(params) {\n var _ref = params || {},\n _ref$bypassCache = _ref.bypassCache,\n bypassCache = _ref$bypassCache === void 0 ? false : _ref$bypassCache;\n return bypassCache;\n }\n /**\n *\n * PRIVATE ONLY: This is an internal only method and should not\n * be directly called by the consumers.\n */;\n _proto.fetchUserData = function fetchUserData() {\n var _this13 = this;\n return this.createGetUserRequest().then(function (data) {\n _this13.cacheUserData(data);\n return data;\n });\n }\n\n /**\n * This is used by an authenticated user to delete a list of attributes\n * @param {string[]} attributeList Names of the attributes to delete.\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.deleteAttributes = function deleteAttributes(attributeList, callback) {\n var _this14 = this;\n if (!(this.signInUserSession != null && this.signInUserSession.isValid())) {\n return callback(new Error('User is not authenticated'), null);\n }\n this.client.request('DeleteUserAttributes', {\n UserAttributeNames: attributeList,\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n }, function (err) {\n if (err) {\n return callback(err, null);\n }\n\n // update cached user\n return _this14.getUserData(function () {\n return callback(null, 'SUCCESS');\n }, {\n bypassCache: true\n });\n });\n return undefined;\n }\n\n /**\n * This is used by a user to resend a confirmation code\n * @param {nodeCallback} callback Called on success or error.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.resendConfirmationCode = function resendConfirmationCode(callback, clientMetadata) {\n var jsonReq = {\n ClientId: this.pool.getClientId(),\n Username: this.username,\n ClientMetadata: clientMetadata\n };\n this.client.request('ResendConfirmationCode', jsonReq, function (err, result) {\n if (err) {\n return callback(err, null);\n }\n return callback(null, result);\n });\n }\n\n /**\n * @typedef {Object} GetSessionOptions\n * @property {Record} clientMetadata - clientMetadata for getSession\n */\n\n /**\n * This is used to get a session, either from the session object\n * or from the local storage, or by using a refresh token\n *\n * @param {nodeCallback} callback Called on success or error.\n * @param {GetSessionOptions} options\n * @returns {void}\n */;\n _proto.getSession = function getSession(callback, options) {\n if (options === void 0) {\n options = {};\n }\n if (this.username == null) {\n return callback(new Error('Username is null. Cannot retrieve a new session'), null);\n }\n if (this.signInUserSession != null && this.signInUserSession.isValid()) {\n return callback(null, this.signInUserSession);\n }\n var keyPrefix = \"CognitoIdentityServiceProvider.\" + this.pool.getClientId() + \".\" + this.username;\n var idTokenKey = keyPrefix + \".idToken\";\n var accessTokenKey = keyPrefix + \".accessToken\";\n var refreshTokenKey = keyPrefix + \".refreshToken\";\n var clockDriftKey = keyPrefix + \".clockDrift\";\n if (this.storage.getItem(idTokenKey)) {\n var idToken = new _CognitoIdToken__WEBPACK_IMPORTED_MODULE_8__[\"default\"]({\n IdToken: this.storage.getItem(idTokenKey)\n });\n var accessToken = new _CognitoAccessToken__WEBPACK_IMPORTED_MODULE_7__[\"default\"]({\n AccessToken: this.storage.getItem(accessTokenKey)\n });\n var refreshToken = new _CognitoRefreshToken__WEBPACK_IMPORTED_MODULE_9__[\"default\"]({\n RefreshToken: this.storage.getItem(refreshTokenKey)\n });\n var clockDrift = parseInt(this.storage.getItem(clockDriftKey), 0) || 0;\n var sessionData = {\n IdToken: idToken,\n AccessToken: accessToken,\n RefreshToken: refreshToken,\n ClockDrift: clockDrift\n };\n var cachedSession = new _CognitoUserSession__WEBPACK_IMPORTED_MODULE_10__[\"default\"](sessionData);\n if (cachedSession.isValid()) {\n this.signInUserSession = cachedSession;\n return callback(null, this.signInUserSession);\n }\n if (!refreshToken.getToken()) {\n return callback(new Error('Cannot retrieve a new session. Please authenticate.'), null);\n }\n this.refreshSession(refreshToken, callback, options.clientMetadata);\n } else {\n callback(new Error('Local storage is missing an ID Token, Please authenticate'), null);\n }\n return undefined;\n }\n\n /**\n * This uses the refreshToken to retrieve a new session\n * @param {CognitoRefreshToken} refreshToken A previous session's refresh token.\n * @param {nodeCallback} callback Called on success or error.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.refreshSession = function refreshSession(refreshToken, callback, clientMetadata) {\n var _this15 = this;\n var wrappedCallback = this.pool.wrapRefreshSessionCallback ? this.pool.wrapRefreshSessionCallback(callback) : callback;\n var authParameters = {};\n authParameters.REFRESH_TOKEN = refreshToken.getToken();\n var keyPrefix = \"CognitoIdentityServiceProvider.\" + this.pool.getClientId();\n var lastUserKey = keyPrefix + \".LastAuthUser\";\n if (this.storage.getItem(lastUserKey)) {\n this.username = this.storage.getItem(lastUserKey);\n var deviceKeyKey = keyPrefix + \".\" + this.username + \".deviceKey\";\n this.deviceKey = this.storage.getItem(deviceKeyKey);\n authParameters.DEVICE_KEY = this.deviceKey;\n }\n var jsonReq = {\n ClientId: this.pool.getClientId(),\n AuthFlow: 'REFRESH_TOKEN_AUTH',\n AuthParameters: authParameters,\n ClientMetadata: clientMetadata\n };\n if (this.getUserContextData()) {\n jsonReq.UserContextData = this.getUserContextData();\n }\n this.client.request('InitiateAuth', jsonReq, function (err, authResult) {\n if (err) {\n if (err.code === 'NotAuthorizedException') {\n _this15.clearCachedUser();\n }\n return wrappedCallback(err, null);\n }\n if (authResult) {\n var authenticationResult = authResult.AuthenticationResult;\n if (!Object.prototype.hasOwnProperty.call(authenticationResult, 'RefreshToken')) {\n authenticationResult.RefreshToken = refreshToken.getToken();\n }\n _this15.signInUserSession = _this15.getCognitoUserSession(authenticationResult);\n _this15.cacheTokens();\n return wrappedCallback(null, _this15.signInUserSession);\n }\n return undefined;\n });\n }\n\n /**\n * This is used to save the session tokens to local storage\n * @returns {void}\n */;\n _proto.cacheTokens = function cacheTokens() {\n var keyPrefix = \"CognitoIdentityServiceProvider.\" + this.pool.getClientId();\n var idTokenKey = keyPrefix + \".\" + this.username + \".idToken\";\n var accessTokenKey = keyPrefix + \".\" + this.username + \".accessToken\";\n var refreshTokenKey = keyPrefix + \".\" + this.username + \".refreshToken\";\n var clockDriftKey = keyPrefix + \".\" + this.username + \".clockDrift\";\n var lastUserKey = keyPrefix + \".LastAuthUser\";\n this.storage.setItem(idTokenKey, this.signInUserSession.getIdToken().getJwtToken());\n this.storage.setItem(accessTokenKey, this.signInUserSession.getAccessToken().getJwtToken());\n this.storage.setItem(refreshTokenKey, this.signInUserSession.getRefreshToken().getToken());\n this.storage.setItem(clockDriftKey, \"\" + this.signInUserSession.getClockDrift());\n this.storage.setItem(lastUserKey, this.username);\n }\n\n /**\n * This is to cache user data\n */;\n _proto.cacheUserData = function cacheUserData(userData) {\n this.storage.setItem(this.userDataKey, JSON.stringify(userData));\n }\n\n /**\n * This is to remove cached user data\n */;\n _proto.clearCachedUserData = function clearCachedUserData() {\n this.storage.removeItem(this.userDataKey);\n };\n _proto.clearCachedUser = function clearCachedUser() {\n this.clearCachedTokens();\n this.clearCachedUserData();\n }\n\n /**\n * This is used to cache the device key and device group and device password\n * @returns {void}\n */;\n _proto.cacheDeviceKeyAndPassword = function cacheDeviceKeyAndPassword() {\n var keyPrefix = \"CognitoIdentityServiceProvider.\" + this.pool.getClientId() + \".\" + this.username;\n var deviceKeyKey = keyPrefix + \".deviceKey\";\n var randomPasswordKey = keyPrefix + \".randomPasswordKey\";\n var deviceGroupKeyKey = keyPrefix + \".deviceGroupKey\";\n this.storage.setItem(deviceKeyKey, this.deviceKey);\n this.storage.setItem(randomPasswordKey, this.randomPassword);\n this.storage.setItem(deviceGroupKeyKey, this.deviceGroupKey);\n }\n\n /**\n * This is used to get current device key and device group and device password\n * @returns {void}\n */;\n _proto.getCachedDeviceKeyAndPassword = function getCachedDeviceKeyAndPassword() {\n var keyPrefix = \"CognitoIdentityServiceProvider.\" + this.pool.getClientId() + \".\" + this.username;\n var deviceKeyKey = keyPrefix + \".deviceKey\";\n var randomPasswordKey = keyPrefix + \".randomPasswordKey\";\n var deviceGroupKeyKey = keyPrefix + \".deviceGroupKey\";\n if (this.storage.getItem(deviceKeyKey)) {\n this.deviceKey = this.storage.getItem(deviceKeyKey);\n this.randomPassword = this.storage.getItem(randomPasswordKey);\n this.deviceGroupKey = this.storage.getItem(deviceGroupKeyKey);\n }\n }\n\n /**\n * This is used to clear the device key info from local storage\n * @returns {void}\n */;\n _proto.clearCachedDeviceKeyAndPassword = function clearCachedDeviceKeyAndPassword() {\n var keyPrefix = \"CognitoIdentityServiceProvider.\" + this.pool.getClientId() + \".\" + this.username;\n var deviceKeyKey = keyPrefix + \".deviceKey\";\n var randomPasswordKey = keyPrefix + \".randomPasswordKey\";\n var deviceGroupKeyKey = keyPrefix + \".deviceGroupKey\";\n this.storage.removeItem(deviceKeyKey);\n this.storage.removeItem(randomPasswordKey);\n this.storage.removeItem(deviceGroupKeyKey);\n }\n\n /**\n * This is used to clear the session tokens from local storage\n * @returns {void}\n */;\n _proto.clearCachedTokens = function clearCachedTokens() {\n var keyPrefix = \"CognitoIdentityServiceProvider.\" + this.pool.getClientId();\n var idTokenKey = keyPrefix + \".\" + this.username + \".idToken\";\n var accessTokenKey = keyPrefix + \".\" + this.username + \".accessToken\";\n var refreshTokenKey = keyPrefix + \".\" + this.username + \".refreshToken\";\n var lastUserKey = keyPrefix + \".LastAuthUser\";\n var clockDriftKey = keyPrefix + \".\" + this.username + \".clockDrift\";\n this.storage.removeItem(idTokenKey);\n this.storage.removeItem(accessTokenKey);\n this.storage.removeItem(refreshTokenKey);\n this.storage.removeItem(lastUserKey);\n this.storage.removeItem(clockDriftKey);\n }\n\n /**\n * This is used to build a user session from tokens retrieved in the authentication result\n * @param {object} authResult Successful auth response from server.\n * @returns {CognitoUserSession} The new user session.\n * @private\n */;\n _proto.getCognitoUserSession = function getCognitoUserSession(authResult) {\n var idToken = new _CognitoIdToken__WEBPACK_IMPORTED_MODULE_8__[\"default\"](authResult);\n var accessToken = new _CognitoAccessToken__WEBPACK_IMPORTED_MODULE_7__[\"default\"](authResult);\n var refreshToken = new _CognitoRefreshToken__WEBPACK_IMPORTED_MODULE_9__[\"default\"](authResult);\n var sessionData = {\n IdToken: idToken,\n AccessToken: accessToken,\n RefreshToken: refreshToken\n };\n return new _CognitoUserSession__WEBPACK_IMPORTED_MODULE_10__[\"default\"](sessionData);\n }\n\n /**\n * This is used to initiate a forgot password request\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {inputVerificationCode?} callback.inputVerificationCode\n * Optional callback raised instead of onSuccess with response data.\n * @param {onSuccess} callback.onSuccess Called on success.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.forgotPassword = function forgotPassword(callback, clientMetadata) {\n var jsonReq = {\n ClientId: this.pool.getClientId(),\n Username: this.username,\n ClientMetadata: clientMetadata\n };\n if (this.getUserContextData()) {\n jsonReq.UserContextData = this.getUserContextData();\n }\n this.client.request('ForgotPassword', jsonReq, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n if (typeof callback.inputVerificationCode === 'function') {\n return callback.inputVerificationCode(data);\n }\n return callback.onSuccess(data);\n });\n }\n\n /**\n * This is used to confirm a new password using a confirmationCode\n * @param {string} confirmationCode Code entered by user.\n * @param {string} newPassword Confirm new password.\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {onSuccess} callback.onSuccess Called on success.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.confirmPassword = function confirmPassword(confirmationCode, newPassword, callback, clientMetadata) {\n var jsonReq = {\n ClientId: this.pool.getClientId(),\n Username: this.username,\n ConfirmationCode: confirmationCode,\n Password: newPassword,\n ClientMetadata: clientMetadata\n };\n if (this.getUserContextData()) {\n jsonReq.UserContextData = this.getUserContextData();\n }\n this.client.request('ConfirmForgotPassword', jsonReq, function (err) {\n if (err) {\n return callback.onFailure(err);\n }\n return callback.onSuccess('SUCCESS');\n });\n }\n\n /**\n * This is used to initiate an attribute confirmation request\n * @param {string} attributeName User attribute that needs confirmation.\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {inputVerificationCode} callback.inputVerificationCode Called on success.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.getAttributeVerificationCode = function getAttributeVerificationCode(attributeName, callback, clientMetadata) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback.onFailure(new Error('User is not authenticated'));\n }\n this.client.request('GetUserAttributeVerificationCode', {\n AttributeName: attributeName,\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n ClientMetadata: clientMetadata\n }, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n if (typeof callback.inputVerificationCode === 'function') {\n return callback.inputVerificationCode(data);\n }\n return callback.onSuccess('SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used to confirm an attribute using a confirmation code\n * @param {string} attributeName Attribute being confirmed.\n * @param {string} confirmationCode Code entered by user.\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {onSuccess} callback.onSuccess Called on success.\n * @returns {void}\n */;\n _proto.verifyAttribute = function verifyAttribute(attributeName, confirmationCode, callback) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback.onFailure(new Error('User is not authenticated'));\n }\n this.client.request('VerifyUserAttribute', {\n AttributeName: attributeName,\n Code: confirmationCode,\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n }, function (err) {\n if (err) {\n return callback.onFailure(err);\n }\n return callback.onSuccess('SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used to get the device information using the current device key\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {onSuccess<*>} callback.onSuccess Called on success with device data.\n * @returns {void}\n */;\n _proto.getDevice = function getDevice(callback) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback.onFailure(new Error('User is not authenticated'));\n }\n this.client.request('GetDevice', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n DeviceKey: this.deviceKey\n }, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n return callback.onSuccess(data);\n });\n return undefined;\n }\n\n /**\n * This is used to forget a specific device\n * @param {string} deviceKey Device key.\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {onSuccess} callback.onSuccess Called on success.\n * @returns {void}\n */;\n _proto.forgetSpecificDevice = function forgetSpecificDevice(deviceKey, callback) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback.onFailure(new Error('User is not authenticated'));\n }\n this.client.request('ForgetDevice', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n DeviceKey: deviceKey\n }, function (err) {\n if (err) {\n return callback.onFailure(err);\n }\n return callback.onSuccess('SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used to forget the current device\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {onSuccess} callback.onSuccess Called on success.\n * @returns {void}\n */;\n _proto.forgetDevice = function forgetDevice(callback) {\n var _this16 = this;\n this.forgetSpecificDevice(this.deviceKey, {\n onFailure: callback.onFailure,\n onSuccess: function onSuccess(result) {\n _this16.deviceKey = null;\n _this16.deviceGroupKey = null;\n _this16.randomPassword = null;\n _this16.clearCachedDeviceKeyAndPassword();\n return callback.onSuccess(result);\n }\n });\n }\n\n /**\n * This is used to set the device status as remembered\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {onSuccess} callback.onSuccess Called on success.\n * @returns {void}\n */;\n _proto.setDeviceStatusRemembered = function setDeviceStatusRemembered(callback) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback.onFailure(new Error('User is not authenticated'));\n }\n this.client.request('UpdateDeviceStatus', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n DeviceKey: this.deviceKey,\n DeviceRememberedStatus: 'remembered'\n }, function (err) {\n if (err) {\n return callback.onFailure(err);\n }\n return callback.onSuccess('SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used to set the device status as not remembered\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {onSuccess} callback.onSuccess Called on success.\n * @returns {void}\n */;\n _proto.setDeviceStatusNotRemembered = function setDeviceStatusNotRemembered(callback) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback.onFailure(new Error('User is not authenticated'));\n }\n this.client.request('UpdateDeviceStatus', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n DeviceKey: this.deviceKey,\n DeviceRememberedStatus: 'not_remembered'\n }, function (err) {\n if (err) {\n return callback.onFailure(err);\n }\n return callback.onSuccess('SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used to list all devices for a user\n *\n * @param {int} limit the number of devices returned in a call\n * @param {string | null} paginationToken the pagination token in case any was returned before\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {onSuccess<*>} callback.onSuccess Called on success with device list.\n * @returns {void}\n */;\n _proto.listDevices = function listDevices(limit, paginationToken, callback) {\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback.onFailure(new Error('User is not authenticated'));\n }\n var requestParams = {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n Limit: limit\n };\n if (paginationToken) {\n requestParams.PaginationToken = paginationToken;\n }\n this.client.request('ListDevices', requestParams, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n return callback.onSuccess(data);\n });\n return undefined;\n }\n\n /**\n * This is used to globally revoke all tokens issued to a user\n * @param {object} callback Result callback map.\n * @param {onFailure} callback.onFailure Called on any error.\n * @param {onSuccess} callback.onSuccess Called on success.\n * @returns {void}\n */;\n _proto.globalSignOut = function globalSignOut(callback) {\n var _this17 = this;\n if (this.signInUserSession == null || !this.signInUserSession.isValid()) {\n return callback.onFailure(new Error('User is not authenticated'));\n }\n this.client.request('GlobalSignOut', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n }, function (err) {\n if (err) {\n return callback.onFailure(err);\n }\n _this17.clearCachedUser();\n return callback.onSuccess('SUCCESS');\n });\n return undefined;\n }\n\n /**\n * This is used for the user to signOut of the application and clear the cached tokens.\n * @returns {void}\n */;\n _proto.signOut = function signOut(revokeTokenCallback) {\n var _this18 = this;\n // If tokens won't be revoked, we just clean the client data.\n if (!revokeTokenCallback || typeof revokeTokenCallback !== 'function') {\n this.cleanClientData();\n return;\n }\n this.getSession(function (error, _session) {\n if (error) {\n return revokeTokenCallback(error);\n }\n _this18.revokeTokens(function (err) {\n _this18.cleanClientData();\n revokeTokenCallback(err);\n });\n });\n };\n _proto.revokeTokens = function revokeTokens(revokeTokenCallback) {\n if (revokeTokenCallback === void 0) {\n revokeTokenCallback = function revokeTokenCallback() {};\n }\n if (typeof revokeTokenCallback !== 'function') {\n throw new Error('Invalid revokeTokenCallback. It should be a function.');\n }\n var tokensToBeRevoked = [];\n if (!this.signInUserSession) {\n var error = new Error('User is not authenticated');\n return revokeTokenCallback(error);\n }\n if (!this.signInUserSession.getAccessToken()) {\n var _error = new Error('No Access token available');\n return revokeTokenCallback(_error);\n }\n var refreshToken = this.signInUserSession.getRefreshToken().getToken();\n var accessToken = this.signInUserSession.getAccessToken();\n if (this.isSessionRevocable(accessToken)) {\n if (refreshToken) {\n return this.revokeToken({\n token: refreshToken,\n callback: revokeTokenCallback\n });\n }\n }\n revokeTokenCallback();\n };\n _proto.isSessionRevocable = function isSessionRevocable(token) {\n if (token && typeof token.decodePayload === 'function') {\n try {\n var _token$decodePayload2 = token.decodePayload(),\n origin_jti = _token$decodePayload2.origin_jti;\n return !!origin_jti;\n } catch (err) {\n // Nothing to do, token doesnt have origin_jti claim\n }\n }\n return false;\n };\n _proto.cleanClientData = function cleanClientData() {\n this.signInUserSession = null;\n this.clearCachedUser();\n };\n _proto.revokeToken = function revokeToken(_ref2) {\n var token = _ref2.token,\n callback = _ref2.callback;\n this.client.requestWithRetry('RevokeToken', {\n Token: token,\n ClientId: this.pool.getClientId()\n }, function (err) {\n if (err) {\n return callback(err);\n }\n callback();\n });\n }\n\n /**\n * This is used by a user trying to select a given MFA\n * @param {string} answerChallenge the mfa the user wants\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.sendMFASelectionAnswer = function sendMFASelectionAnswer(answerChallenge, callback) {\n var _this19 = this;\n var challengeResponses = {};\n challengeResponses.USERNAME = this.username;\n challengeResponses.ANSWER = answerChallenge;\n var jsonReq = {\n ChallengeName: 'SELECT_MFA_TYPE',\n ChallengeResponses: challengeResponses,\n ClientId: this.pool.getClientId(),\n Session: this.Session\n };\n if (this.getUserContextData()) {\n jsonReq.UserContextData = this.getUserContextData();\n }\n this.client.request('RespondToAuthChallenge', jsonReq, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n _this19.Session = data.Session;\n if (answerChallenge === 'SMS_MFA') {\n return callback.mfaRequired(data.ChallengeName, data.ChallengeParameters);\n }\n if (answerChallenge === 'SOFTWARE_TOKEN_MFA') {\n return callback.totpRequired(data.ChallengeName, data.ChallengeParameters);\n }\n return undefined;\n });\n }\n\n /**\n * This returns the user context data for advanced security feature.\n * @returns {string} the user context data from CognitoUserPool\n */;\n _proto.getUserContextData = function getUserContextData() {\n var pool = this.pool;\n return pool.getUserContextData(this.username);\n }\n\n /**\n * This is used by an authenticated or a user trying to authenticate to associate a TOTP MFA\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.associateSoftwareToken = function associateSoftwareToken(callback) {\n var _this20 = this;\n if (!(this.signInUserSession != null && this.signInUserSession.isValid())) {\n this.client.request('AssociateSoftwareToken', {\n Session: this.Session\n }, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n _this20.Session = data.Session;\n return callback.associateSecretCode(data.SecretCode);\n });\n } else {\n this.client.request('AssociateSoftwareToken', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken()\n }, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n return callback.associateSecretCode(data.SecretCode);\n });\n }\n }\n\n /**\n * This is used by an authenticated or a user trying to authenticate to verify a TOTP MFA\n * @param {string} totpCode The MFA code entered by the user.\n * @param {string} friendlyDeviceName The device name we are assigning to the device.\n * @param {nodeCallback} callback Called on success or error.\n * @returns {void}\n */;\n _proto.verifySoftwareToken = function verifySoftwareToken(totpCode, friendlyDeviceName, callback) {\n var _this21 = this;\n if (!(this.signInUserSession != null && this.signInUserSession.isValid())) {\n this.client.request('VerifySoftwareToken', {\n Session: this.Session,\n UserCode: totpCode,\n FriendlyDeviceName: friendlyDeviceName\n }, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n _this21.Session = data.Session;\n var challengeResponses = {};\n challengeResponses.USERNAME = _this21.username;\n var jsonReq = {\n ChallengeName: 'MFA_SETUP',\n ClientId: _this21.pool.getClientId(),\n ChallengeResponses: challengeResponses,\n Session: _this21.Session\n };\n if (_this21.getUserContextData()) {\n jsonReq.UserContextData = _this21.getUserContextData();\n }\n _this21.client.request('RespondToAuthChallenge', jsonReq, function (errRespond, dataRespond) {\n if (errRespond) {\n return callback.onFailure(errRespond);\n }\n _this21.signInUserSession = _this21.getCognitoUserSession(dataRespond.AuthenticationResult);\n _this21.cacheTokens();\n return callback.onSuccess(_this21.signInUserSession);\n });\n return undefined;\n });\n } else {\n this.client.request('VerifySoftwareToken', {\n AccessToken: this.signInUserSession.getAccessToken().getJwtToken(),\n UserCode: totpCode,\n FriendlyDeviceName: friendlyDeviceName\n }, function (err, data) {\n if (err) {\n return callback.onFailure(err);\n }\n return callback.onSuccess(data);\n });\n }\n };\n return CognitoUser;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/CognitoUser.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/CognitoUserAttribute.js": /*!****************************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/CognitoUserAttribute.js ***! \****************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return CognitoUserAttribute; });\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n/** @class */\nvar CognitoUserAttribute = /*#__PURE__*/function () {\n /**\n * Constructs a new CognitoUserAttribute object\n * @param {string=} Name The record's name\n * @param {string=} Value The record's value\n */\n function CognitoUserAttribute(_temp) {\n var _ref = _temp === void 0 ? {} : _temp,\n Name = _ref.Name,\n Value = _ref.Value;\n this.Name = Name || '';\n this.Value = Value || '';\n }\n\n /**\n * @returns {string} the record's value.\n */\n var _proto = CognitoUserAttribute.prototype;\n _proto.getValue = function getValue() {\n return this.Value;\n }\n\n /**\n * Sets the record's value.\n * @param {string} value The new value.\n * @returns {CognitoUserAttribute} The record for method chaining.\n */;\n _proto.setValue = function setValue(value) {\n this.Value = value;\n return this;\n }\n\n /**\n * @returns {string} the record's name.\n */;\n _proto.getName = function getName() {\n return this.Name;\n }\n\n /**\n * Sets the record's name\n * @param {string} name The new name.\n * @returns {CognitoUserAttribute} The record for method chaining.\n */;\n _proto.setName = function setName(name) {\n this.Name = name;\n return this;\n }\n\n /**\n * @returns {string} a string representation of the record.\n */;\n _proto.toString = function toString() {\n return JSON.stringify(this);\n }\n\n /**\n * @returns {object} a flat object representing the record.\n */;\n _proto.toJSON = function toJSON() {\n return {\n Name: this.Name,\n Value: this.Value\n };\n };\n return CognitoUserAttribute;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/CognitoUserAttribute.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/CognitoUserPool.js": /*!***********************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/CognitoUserPool.js ***! \***********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return CognitoUserPool; });\n/* harmony import */ var _Client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Client */ \"./node_modules/amazon-cognito-identity-js/es/Client.js\");\n/* harmony import */ var _CognitoUser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CognitoUser */ \"./node_modules/amazon-cognito-identity-js/es/CognitoUser.js\");\n/* harmony import */ var _StorageHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./StorageHelper */ \"./node_modules/amazon-cognito-identity-js/es/StorageHelper.js\");\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n\n\n\nvar USER_POOL_ID_MAX_LENGTH = 55;\n\n/** @class */\nvar CognitoUserPool = /*#__PURE__*/function () {\n /**\n * Constructs a new CognitoUserPool object\n * @param {object} data Creation options.\n * @param {string} data.UserPoolId Cognito user pool id.\n * @param {string} data.ClientId User pool application client id.\n * @param {string} data.endpoint Optional custom service endpoint.\n * @param {object} data.fetchOptions Optional options for fetch API.\n * (only credentials option is supported)\n * @param {object} data.Storage Optional storage object.\n * @param {boolean} data.AdvancedSecurityDataCollectionFlag Optional:\n * boolean flag indicating if the data collection is enabled\n * to support cognito advanced security features. By default, this\n * flag is set to true.\n */\n function CognitoUserPool(data, wrapRefreshSessionCallback) {\n var _ref = data || {},\n UserPoolId = _ref.UserPoolId,\n ClientId = _ref.ClientId,\n endpoint = _ref.endpoint,\n fetchOptions = _ref.fetchOptions,\n AdvancedSecurityDataCollectionFlag = _ref.AdvancedSecurityDataCollectionFlag;\n if (!UserPoolId || !ClientId) {\n throw new Error('Both UserPoolId and ClientId are required.');\n }\n if (UserPoolId.length > USER_POOL_ID_MAX_LENGTH || !/^[\\w-]+_[0-9a-zA-Z]+$/.test(UserPoolId)) {\n throw new Error('Invalid UserPoolId format.');\n }\n var region = UserPoolId.split('_')[0];\n this.userPoolId = UserPoolId;\n this.clientId = ClientId;\n this.client = new _Client__WEBPACK_IMPORTED_MODULE_0__[\"default\"](region, endpoint, fetchOptions);\n\n /**\n * By default, AdvancedSecurityDataCollectionFlag is set to true,\n * if no input value is provided.\n */\n this.advancedSecurityDataCollectionFlag = AdvancedSecurityDataCollectionFlag !== false;\n this.storage = data.Storage || new _StorageHelper__WEBPACK_IMPORTED_MODULE_2__[\"default\"]().getStorage();\n if (wrapRefreshSessionCallback) {\n this.wrapRefreshSessionCallback = wrapRefreshSessionCallback;\n }\n }\n\n /**\n * @returns {string} the user pool id\n */\n var _proto = CognitoUserPool.prototype;\n _proto.getUserPoolId = function getUserPoolId() {\n return this.userPoolId;\n }\n\n /**\n * @returns {string} the user pool name\n */;\n _proto.getUserPoolName = function getUserPoolName() {\n return this.getUserPoolId().split('_')[1];\n }\n\n /**\n * @returns {string} the client id\n */;\n _proto.getClientId = function getClientId() {\n return this.clientId;\n }\n\n /**\n * @typedef {object} SignUpResult\n * @property {CognitoUser} user New user.\n * @property {bool} userConfirmed If the user is already confirmed.\n */\n /**\n * method for signing up a user\n * @param {string} username User's username.\n * @param {string} password Plain-text initial password entered by user.\n * @param {(AttributeArg[])=} userAttributes New user attributes.\n * @param {(AttributeArg[])=} validationData Application metadata.\n * @param {(AttributeArg[])=} clientMetadata Client metadata.\n * @param {nodeCallback} callback Called on error or with the new user.\n * @param {ClientMetadata} clientMetadata object which is passed from client to Cognito Lambda trigger\n * @returns {void}\n */;\n _proto.signUp = function signUp(username, password, userAttributes, validationData, callback, clientMetadata) {\n var _this = this;\n var jsonReq = {\n ClientId: this.clientId,\n Username: username,\n Password: password,\n UserAttributes: userAttributes,\n ValidationData: validationData,\n ClientMetadata: clientMetadata\n };\n if (this.getUserContextData(username)) {\n jsonReq.UserContextData = this.getUserContextData(username);\n }\n this.client.request('SignUp', jsonReq, function (err, data) {\n if (err) {\n return callback(err, null);\n }\n var cognitoUser = {\n Username: username,\n Pool: _this,\n Storage: _this.storage\n };\n var returnData = {\n user: new _CognitoUser__WEBPACK_IMPORTED_MODULE_1__[\"default\"](cognitoUser),\n userConfirmed: data.UserConfirmed,\n userSub: data.UserSub,\n codeDeliveryDetails: data.CodeDeliveryDetails\n };\n return callback(null, returnData);\n });\n }\n\n /**\n * method for getting the current user of the application from the local storage\n *\n * @returns {CognitoUser} the user retrieved from storage\n */;\n _proto.getCurrentUser = function getCurrentUser() {\n var lastUserKey = \"CognitoIdentityServiceProvider.\" + this.clientId + \".LastAuthUser\";\n var lastAuthUser = this.storage.getItem(lastUserKey);\n if (lastAuthUser) {\n var cognitoUser = {\n Username: lastAuthUser,\n Pool: this,\n Storage: this.storage\n };\n return new _CognitoUser__WEBPACK_IMPORTED_MODULE_1__[\"default\"](cognitoUser);\n }\n return null;\n }\n\n /**\n * This method returns the encoded data string used for cognito advanced security feature.\n * This would be generated only when developer has included the JS used for collecting the\n * data on their client. Please refer to documentation to know more about using AdvancedSecurity\n * features\n * @param {string} username the username for the context data\n * @returns {string} the user context data\n **/;\n _proto.getUserContextData = function getUserContextData(username) {\n if (typeof AmazonCognitoAdvancedSecurityData === 'undefined') {\n return undefined;\n }\n /* eslint-disable */\n var amazonCognitoAdvancedSecurityDataConst = AmazonCognitoAdvancedSecurityData;\n /* eslint-enable */\n\n if (this.advancedSecurityDataCollectionFlag) {\n var advancedSecurityData = amazonCognitoAdvancedSecurityDataConst.getData(username, this.userPoolId, this.clientId);\n if (advancedSecurityData) {\n var userContextData = {\n EncodedData: advancedSecurityData\n };\n return userContextData;\n }\n }\n return {};\n };\n return CognitoUserPool;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/CognitoUserPool.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/CognitoUserSession.js": /*!**************************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/CognitoUserSession.js ***! \**************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return CognitoUserSession; });\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n/** @class */\nvar CognitoUserSession = /*#__PURE__*/function () {\n /**\n * Constructs a new CognitoUserSession object\n * @param {CognitoIdToken} IdToken The session's Id token.\n * @param {CognitoRefreshToken=} RefreshToken The session's refresh token.\n * @param {CognitoAccessToken} AccessToken The session's access token.\n * @param {int} ClockDrift The saved computer's clock drift or undefined to force calculation.\n */\n function CognitoUserSession(_temp) {\n var _ref = _temp === void 0 ? {} : _temp,\n IdToken = _ref.IdToken,\n RefreshToken = _ref.RefreshToken,\n AccessToken = _ref.AccessToken,\n ClockDrift = _ref.ClockDrift;\n if (AccessToken == null || IdToken == null) {\n throw new Error('Id token and Access Token must be present.');\n }\n this.idToken = IdToken;\n this.refreshToken = RefreshToken;\n this.accessToken = AccessToken;\n this.clockDrift = ClockDrift === undefined ? this.calculateClockDrift() : ClockDrift;\n }\n\n /**\n * @returns {CognitoIdToken} the session's Id token\n */\n var _proto = CognitoUserSession.prototype;\n _proto.getIdToken = function getIdToken() {\n return this.idToken;\n }\n\n /**\n * @returns {CognitoRefreshToken} the session's refresh token\n */;\n _proto.getRefreshToken = function getRefreshToken() {\n return this.refreshToken;\n }\n\n /**\n * @returns {CognitoAccessToken} the session's access token\n */;\n _proto.getAccessToken = function getAccessToken() {\n return this.accessToken;\n }\n\n /**\n * @returns {int} the session's clock drift\n */;\n _proto.getClockDrift = function getClockDrift() {\n return this.clockDrift;\n }\n\n /**\n * @returns {int} the computer's clock drift\n */;\n _proto.calculateClockDrift = function calculateClockDrift() {\n var now = Math.floor(new Date() / 1000);\n var iat = Math.min(this.accessToken.getIssuedAt(), this.idToken.getIssuedAt());\n return now - iat;\n }\n\n /**\n * Checks to see if the session is still valid based on session expiry information found\n * in tokens and the current time (adjusted with clock drift)\n * @returns {boolean} if the session is still valid\n */;\n _proto.isValid = function isValid() {\n var now = Math.floor(new Date() / 1000);\n var adjusted = now - this.clockDrift;\n return adjusted < this.accessToken.getExpiration() && adjusted < this.idToken.getExpiration();\n };\n return CognitoUserSession;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/CognitoUserSession.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/CookieStorage.js": /*!*********************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/CookieStorage.js ***! \*********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return CookieStorage; });\n/* harmony import */ var js_cookie__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-cookie */ \"./node_modules/js-cookie/src/js.cookie.js\");\n/* harmony import */ var js_cookie__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(js_cookie__WEBPACK_IMPORTED_MODULE_0__);\n\n\n/** @class */\nvar CookieStorage = /*#__PURE__*/function () {\n /**\n * Constructs a new CookieStorage object\n * @param {object} data Creation options.\n * @param {string} data.domain Cookies domain (mandatory).\n * @param {string} data.path Cookies path (default: '/')\n * @param {integer} data.expires Cookie expiration (in days, default: 365)\n * @param {boolean} data.secure Cookie secure flag (default: true)\n * @param {string} data.sameSite Cookie request behaviour (default: null)\n */\n function CookieStorage(data) {\n if (data.domain) {\n this.domain = data.domain;\n } else {\n throw new Error('The domain of cookieStorage can not be undefined.');\n }\n if (data.path) {\n this.path = data.path;\n } else {\n this.path = '/';\n }\n if (Object.prototype.hasOwnProperty.call(data, 'expires')) {\n this.expires = data.expires;\n } else {\n this.expires = 365;\n }\n if (Object.prototype.hasOwnProperty.call(data, 'secure')) {\n this.secure = data.secure;\n } else {\n this.secure = true;\n }\n if (Object.prototype.hasOwnProperty.call(data, 'sameSite')) {\n if (!['strict', 'lax', 'none'].includes(data.sameSite)) {\n throw new Error('The sameSite value of cookieStorage must be \"lax\", \"strict\" or \"none\".');\n }\n if (data.sameSite === 'none' && !this.secure) {\n throw new Error('sameSite = None requires the Secure attribute in latest browser versions.');\n }\n this.sameSite = data.sameSite;\n } else {\n this.sameSite = null;\n }\n }\n\n /**\n * This is used to set a specific item in storage\n * @param {string} key - the key for the item\n * @param {object} value - the value\n * @returns {string} value that was set\n */\n var _proto = CookieStorage.prototype;\n _proto.setItem = function setItem(key, value) {\n var options = {\n path: this.path,\n expires: this.expires,\n domain: this.domain,\n secure: this.secure\n };\n if (this.sameSite) {\n options.sameSite = this.sameSite;\n }\n js_cookie__WEBPACK_IMPORTED_MODULE_0__[\"set\"](key, value, options);\n return js_cookie__WEBPACK_IMPORTED_MODULE_0__[\"get\"](key);\n }\n\n /**\n * This is used to get a specific key from storage\n * @param {string} key - the key for the item\n * This is used to clear the storage\n * @returns {string} the data item\n */;\n _proto.getItem = function getItem(key) {\n return js_cookie__WEBPACK_IMPORTED_MODULE_0__[\"get\"](key);\n }\n\n /**\n * This is used to remove an item from storage\n * @param {string} key - the key being set\n * @returns {string} value - value that was deleted\n */;\n _proto.removeItem = function removeItem(key) {\n var options = {\n path: this.path,\n expires: this.expires,\n domain: this.domain,\n secure: this.secure\n };\n if (this.sameSite) {\n options.sameSite = this.sameSite;\n }\n return js_cookie__WEBPACK_IMPORTED_MODULE_0__[\"remove\"](key, options);\n }\n\n /**\n * This is used to clear the storage of optional\n * items that were previously set\n * @returns {} an empty object\n */;\n _proto.clear = function clear() {\n var cookies = js_cookie__WEBPACK_IMPORTED_MODULE_0__[\"get\"]();\n var numKeys = Object.keys(cookies).length;\n for (var index = 0; index < numKeys; ++index) {\n this.removeItem(Object.keys(cookies)[index]);\n }\n return {};\n };\n return CookieStorage;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/CookieStorage.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/DateHelper.js": /*!******************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/DateHelper.js ***! \******************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return DateHelper; });\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\nvar monthNames = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];\nvar weekNames = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];\n\n/** @class */\nvar DateHelper = /*#__PURE__*/function () {\n function DateHelper() {}\n var _proto = DateHelper.prototype;\n /**\n * @returns {string} The current time in \"ddd MMM D HH:mm:ss UTC YYYY\" format.\n */\n _proto.getNowString = function getNowString() {\n var now = new Date();\n var weekDay = weekNames[now.getUTCDay()];\n var month = monthNames[now.getUTCMonth()];\n var day = now.getUTCDate();\n var hours = now.getUTCHours();\n if (hours < 10) {\n hours = \"0\" + hours;\n }\n var minutes = now.getUTCMinutes();\n if (minutes < 10) {\n minutes = \"0\" + minutes;\n }\n var seconds = now.getUTCSeconds();\n if (seconds < 10) {\n seconds = \"0\" + seconds;\n }\n var year = now.getUTCFullYear();\n\n // ddd MMM D HH:mm:ss UTC YYYY\n var dateNow = weekDay + \" \" + month + \" \" + day + \" \" + hours + \":\" + minutes + \":\" + seconds + \" UTC \" + year;\n return dateNow;\n };\n return DateHelper;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/DateHelper.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/Platform/index.js": /*!**********************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/Platform/index.js ***! \**********************************************************************/ /*! exports provided: Platform, getUserAgent, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Platform\", function() { return Platform; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUserAgent\", function() { return getUserAgent; });\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./version */ \"./node_modules/amazon-cognito-identity-js/es/Platform/version.js\");\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\nvar BASE_USER_AGENT = \"aws-amplify/\" + _version__WEBPACK_IMPORTED_MODULE_0__[\"version\"];\nvar Platform = {\n userAgent: BASE_USER_AGENT + \" js\",\n product: '',\n navigator: null,\n isReactNative: false\n};\nif (typeof navigator !== 'undefined' && navigator.product) {\n Platform.product = navigator.product || '';\n Platform.navigator = navigator || null;\n switch (navigator.product) {\n case 'ReactNative':\n Platform.userAgent = BASE_USER_AGENT + \" react-native\";\n Platform.isReactNative = true;\n break;\n default:\n Platform.userAgent = BASE_USER_AGENT + \" js\";\n Platform.isReactNative = false;\n break;\n }\n}\nvar getUserAgent = function getUserAgent() {\n return Platform.userAgent;\n};\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (Platform);\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/Platform/index.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/Platform/version.js": /*!************************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/Platform/version.js ***! \************************************************************************/ /*! exports provided: version */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return version; });\n// generated by genversion\nvar version = '5.0.4';\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/Platform/version.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/StorageHelper.js": /*!*********************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/StorageHelper.js ***! \*********************************************************************/ /*! exports provided: MemoryStorage, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MemoryStorage\", function() { return MemoryStorage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return StorageHelper; });\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\nvar dataMemory = {};\n\n/** @class */\nvar MemoryStorage = /*#__PURE__*/function () {\n function MemoryStorage() {}\n /**\n * This is used to set a specific item in storage\n * @param {string} key - the key for the item\n * @param {object} value - the value\n * @returns {string} value that was set\n */\n MemoryStorage.setItem = function setItem(key, value) {\n dataMemory[key] = value;\n return dataMemory[key];\n }\n\n /**\n * This is used to get a specific key from storage\n * @param {string} key - the key for the item\n * This is used to clear the storage\n * @returns {string} the data item\n */;\n MemoryStorage.getItem = function getItem(key) {\n return Object.prototype.hasOwnProperty.call(dataMemory, key) ? dataMemory[key] : undefined;\n }\n\n /**\n * This is used to remove an item from storage\n * @param {string} key - the key being set\n * @returns {boolean} return true\n */;\n MemoryStorage.removeItem = function removeItem(key) {\n return delete dataMemory[key];\n }\n\n /**\n * This is used to clear the storage\n * @returns {string} nothing\n */;\n MemoryStorage.clear = function clear() {\n dataMemory = {};\n return dataMemory;\n };\n return MemoryStorage;\n}();\n\n/** @class */\nvar StorageHelper = /*#__PURE__*/function () {\n /**\n * This is used to get a storage object\n * @returns {object} the storage\n */\n function StorageHelper() {\n try {\n this.storageWindow = window.localStorage;\n this.storageWindow.setItem('aws.cognito.test-ls', 1);\n this.storageWindow.removeItem('aws.cognito.test-ls');\n } catch (exception) {\n this.storageWindow = MemoryStorage;\n }\n }\n\n /**\n * This is used to return the storage\n * @returns {object} the storage\n */\n var _proto = StorageHelper.prototype;\n _proto.getStorage = function getStorage() {\n return this.storageWindow;\n };\n return StorageHelper;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/StorageHelper.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/UserAgent.js": /*!*****************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/UserAgent.js ***! \*****************************************************************/ /*! exports provided: appendToCognitoUserAgent, default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"appendToCognitoUserAgent\", function() { return appendToCognitoUserAgent; });\n/* harmony import */ var _Platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Platform */ \"./node_modules/amazon-cognito-identity-js/es/Platform/index.js\");\n\n// constructor\nfunction UserAgent() {}\n// public\nUserAgent.prototype.userAgent = Object(_Platform__WEBPACK_IMPORTED_MODULE_0__[\"getUserAgent\"])();\nvar appendToCognitoUserAgent = function appendToCognitoUserAgent(content) {\n if (!content) {\n return;\n }\n if (UserAgent.prototype.userAgent && !UserAgent.prototype.userAgent.includes(content)) {\n UserAgent.prototype.userAgent = UserAgent.prototype.userAgent.concat(' ', content);\n }\n if (!UserAgent.prototype.userAgent || UserAgent.prototype.userAgent === '') {\n UserAgent.prototype.userAgent = content;\n }\n};\n\n// class for defining the amzn user-agent\n/* harmony default export */ __webpack_exports__[\"default\"] = (UserAgent);\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/UserAgent.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/index.js": /*!*************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/index.js ***! \*************************************************************/ /*! exports provided: AuthenticationDetails, AuthenticationHelper, CognitoAccessToken, CognitoIdToken, CognitoRefreshToken, CognitoUser, CognitoUserAttribute, CognitoUserPool, CognitoUserSession, CookieStorage, DateHelper, appendToCognitoUserAgent, WordArray */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AuthenticationDetails__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AuthenticationDetails */ \"./node_modules/amazon-cognito-identity-js/es/AuthenticationDetails.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AuthenticationDetails\", function() { return _AuthenticationDetails__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/* harmony import */ var _AuthenticationHelper__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AuthenticationHelper */ \"./node_modules/amazon-cognito-identity-js/es/AuthenticationHelper.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AuthenticationHelper\", function() { return _AuthenticationHelper__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _CognitoAccessToken__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./CognitoAccessToken */ \"./node_modules/amazon-cognito-identity-js/es/CognitoAccessToken.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoAccessToken\", function() { return _CognitoAccessToken__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n/* harmony import */ var _CognitoIdToken__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./CognitoIdToken */ \"./node_modules/amazon-cognito-identity-js/es/CognitoIdToken.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoIdToken\", function() { return _CognitoIdToken__WEBPACK_IMPORTED_MODULE_3__[\"default\"]; });\n\n/* harmony import */ var _CognitoRefreshToken__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./CognitoRefreshToken */ \"./node_modules/amazon-cognito-identity-js/es/CognitoRefreshToken.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoRefreshToken\", function() { return _CognitoRefreshToken__WEBPACK_IMPORTED_MODULE_4__[\"default\"]; });\n\n/* harmony import */ var _CognitoUser__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./CognitoUser */ \"./node_modules/amazon-cognito-identity-js/es/CognitoUser.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoUser\", function() { return _CognitoUser__WEBPACK_IMPORTED_MODULE_5__[\"default\"]; });\n\n/* harmony import */ var _CognitoUserAttribute__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./CognitoUserAttribute */ \"./node_modules/amazon-cognito-identity-js/es/CognitoUserAttribute.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoUserAttribute\", function() { return _CognitoUserAttribute__WEBPACK_IMPORTED_MODULE_6__[\"default\"]; });\n\n/* harmony import */ var _CognitoUserPool__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./CognitoUserPool */ \"./node_modules/amazon-cognito-identity-js/es/CognitoUserPool.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoUserPool\", function() { return _CognitoUserPool__WEBPACK_IMPORTED_MODULE_7__[\"default\"]; });\n\n/* harmony import */ var _CognitoUserSession__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./CognitoUserSession */ \"./node_modules/amazon-cognito-identity-js/es/CognitoUserSession.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CognitoUserSession\", function() { return _CognitoUserSession__WEBPACK_IMPORTED_MODULE_8__[\"default\"]; });\n\n/* harmony import */ var _CookieStorage__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./CookieStorage */ \"./node_modules/amazon-cognito-identity-js/es/CookieStorage.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CookieStorage\", function() { return _CookieStorage__WEBPACK_IMPORTED_MODULE_9__[\"default\"]; });\n\n/* harmony import */ var _DateHelper__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./DateHelper */ \"./node_modules/amazon-cognito-identity-js/es/DateHelper.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DateHelper\", function() { return _DateHelper__WEBPACK_IMPORTED_MODULE_10__[\"default\"]; });\n\n/* harmony import */ var _UserAgent__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./UserAgent */ \"./node_modules/amazon-cognito-identity-js/es/UserAgent.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"appendToCognitoUserAgent\", function() { return _UserAgent__WEBPACK_IMPORTED_MODULE_11__[\"appendToCognitoUserAgent\"]; });\n\n/* harmony import */ var _utils_WordArray__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./utils/WordArray */ \"./node_modules/amazon-cognito-identity-js/es/utils/WordArray.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WordArray\", function() { return _utils_WordArray__WEBPACK_IMPORTED_MODULE_12__[\"default\"]; });\n\n/*!\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/index.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/utils/WordArray.js": /*!***********************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/utils/WordArray.js ***! \***********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return WordArray; });\n/* harmony import */ var _cryptoSecureRandomInt__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./cryptoSecureRandomInt */ \"./node_modules/amazon-cognito-identity-js/es/utils/cryptoSecureRandomInt.js\");\n\n\n/**\n * Hex encoding strategy.\n * Converts a word array to a hex string.\n * @param {WordArray} wordArray The word array.\n * @return {string} The hex string.\n * @static\n */\nfunction hexStringify(wordArray) {\n // Shortcuts\n var words = wordArray.words;\n var sigBytes = wordArray.sigBytes;\n\n // Convert\n var hexChars = [];\n for (var i = 0; i < sigBytes; i++) {\n var bite = words[i >>> 2] >>> 24 - i % 4 * 8 & 0xff;\n hexChars.push((bite >>> 4).toString(16));\n hexChars.push((bite & 0x0f).toString(16));\n }\n return hexChars.join('');\n}\nvar WordArray = /*#__PURE__*/function () {\n function WordArray(words, sigBytes) {\n words = this.words = words || [];\n if (sigBytes != undefined) {\n this.sigBytes = sigBytes;\n } else {\n this.sigBytes = words.length * 4;\n }\n }\n var _proto = WordArray.prototype;\n _proto.random = function random(nBytes) {\n var words = [];\n for (var i = 0; i < nBytes; i += 4) {\n words.push(Object(_cryptoSecureRandomInt__WEBPACK_IMPORTED_MODULE_0__[\"default\"])());\n }\n return new WordArray(words, nBytes);\n };\n _proto.toString = function toString() {\n return hexStringify(this);\n };\n return WordArray;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/utils/WordArray.js?"); /***/ }), /***/ "./node_modules/amazon-cognito-identity-js/es/utils/cryptoSecureRandomInt.js": /*!***********************************************************************************!*\ !*** ./node_modules/amazon-cognito-identity-js/es/utils/cryptoSecureRandomInt.js ***! \***********************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(global) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return cryptoSecureRandomInt; });\nvar crypto;\n\n// Native crypto from window (Browser)\nif (typeof window !== 'undefined' && window.crypto) {\n crypto = window.crypto;\n}\n\n// Native (experimental IE 11) crypto from window (Browser)\nif (!crypto && typeof window !== 'undefined' && window.msCrypto) {\n crypto = window.msCrypto;\n}\n\n// Native crypto from global (NodeJS)\nif (!crypto && typeof global !== 'undefined' && global.crypto) {\n crypto = global.crypto;\n}\n\n// Native crypto import via require (NodeJS)\nif (!crypto && \"function\" === 'function') {\n try {\n crypto = __webpack_require__(/*! crypto */ 3);\n } catch (err) {}\n}\n\n/*\n * Cryptographically secure pseudorandom number generator\n * As Math.random() is cryptographically not safe to use\n */\nfunction cryptoSecureRandomInt() {\n if (crypto) {\n // Use getRandomValues method (Browser)\n if (typeof crypto.getRandomValues === 'function') {\n try {\n return crypto.getRandomValues(new Uint32Array(1))[0];\n } catch (err) {}\n }\n\n // Use randomBytes method (NodeJS)\n if (typeof crypto.randomBytes === 'function') {\n try {\n return crypto.randomBytes(4).readInt32LE();\n } catch (err) {}\n }\n }\n throw new Error('Native crypto module could not be used to get secure random number.');\n}\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/amazon-cognito-identity-js/es/utils/cryptoSecureRandomInt.js?"); /***/ }), /***/ "./node_modules/aws-amplify/lib-esm/index.js": /*!***************************************************!*\ !*** ./node_modules/aws-amplify/lib-esm/index.js ***! \***************************************************/ /*! no static exports found */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Amplify\", function() { return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"]; });\n\n/* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/auth */ \"./node_modules/@aws-amplify/auth/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/cache */ \"./node_modules/@aws-amplify/cache/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Cache\", function() { return _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__[\"Cache\"]; });\n\n/* harmony import */ var _aws_amplify_analytics__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/analytics */ \"./node_modules/@aws-amplify/analytics/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Analytics\", function() { return _aws_amplify_analytics__WEBPACK_IMPORTED_MODULE_3__[\"Analytics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSPinpointProvider\", function() { return _aws_amplify_analytics__WEBPACK_IMPORTED_MODULE_3__[\"AWSPinpointProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSKinesisProvider\", function() { return _aws_amplify_analytics__WEBPACK_IMPORTED_MODULE_3__[\"AWSKinesisProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSKinesisFirehoseProvider\", function() { return _aws_amplify_analytics__WEBPACK_IMPORTED_MODULE_3__[\"AWSKinesisFirehoseProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AmazonPersonalizeProvider\", function() { return _aws_amplify_analytics__WEBPACK_IMPORTED_MODULE_3__[\"AmazonPersonalizeProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Auth\", function() { return _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__[\"Auth\"]; });\n\n/* harmony import */ var _aws_amplify_storage__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/storage */ \"./node_modules/@aws-amplify/storage/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Storage\", function() { return _aws_amplify_storage__WEBPACK_IMPORTED_MODULE_4__[\"Storage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StorageClass\", function() { return _aws_amplify_storage__WEBPACK_IMPORTED_MODULE_4__[\"StorageClass\"]; });\n\n/* harmony import */ var _aws_amplify_api__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-amplify/api */ \"./node_modules/@aws-amplify/api/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"API\", function() { return _aws_amplify_api__WEBPACK_IMPORTED_MODULE_5__[\"API\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"APIClass\", function() { return _aws_amplify_api__WEBPACK_IMPORTED_MODULE_5__[\"APIClass\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"graphqlOperation\", function() { return _aws_amplify_api__WEBPACK_IMPORTED_MODULE_5__[\"graphqlOperation\"]; });\n\n/* harmony import */ var _aws_amplify_datastore__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-amplify/datastore */ \"./node_modules/@aws-amplify/datastore/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AuthModeStrategyType\", function() { return _aws_amplify_datastore__WEBPACK_IMPORTED_MODULE_6__[\"AuthModeStrategyType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DataStore\", function() { return _aws_amplify_datastore__WEBPACK_IMPORTED_MODULE_6__[\"DataStore\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Predicates\", function() { return _aws_amplify_datastore__WEBPACK_IMPORTED_MODULE_6__[\"Predicates\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SortDirection\", function() { return _aws_amplify_datastore__WEBPACK_IMPORTED_MODULE_6__[\"SortDirection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"syncExpression\", function() { return _aws_amplify_datastore__WEBPACK_IMPORTED_MODULE_6__[\"syncExpression\"]; });\n\n/* harmony import */ var _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @aws-amplify/pubsub */ \"./node_modules/@aws-amplify/pubsub/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PubSub\", function() { return _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_7__[\"PubSub\"]; });\n\n/* harmony import */ var _aws_amplify_interactions__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-amplify/interactions */ \"./node_modules/@aws-amplify/interactions/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Interactions\", function() { return _aws_amplify_interactions__WEBPACK_IMPORTED_MODULE_8__[\"Interactions\"]; });\n\n/* harmony import */ var _aws_amplify_ui__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @aws-amplify/ui */ \"./node_modules/@aws-amplify/ui/dist/aws-amplify-ui.js\");\n/* harmony import */ var _aws_amplify_ui__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_ui__WEBPACK_IMPORTED_MODULE_9__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _aws_amplify_ui__WEBPACK_IMPORTED_MODULE_9__) if([\"default\",\"Analytics\",\"AWSPinpointProvider\",\"AWSKinesisProvider\",\"AWSKinesisFirehoseProvider\",\"AmazonPersonalizeProvider\",\"Auth\",\"Storage\",\"StorageClass\",\"API\",\"APIClass\",\"graphqlOperation\",\"AuthModeStrategyType\",\"DataStore\",\"Predicates\",\"SortDirection\",\"syncExpression\",\"PubSub\",\"Interactions\",\"XR\",\"Predictions\",\"Logger\",\"Hub\",\"JS\",\"ClientDevice\",\"Signer\",\"I18n\",\"ServiceWorker\",\"AWSCloudWatchProvider\",\"withSSRContext\",\"Geo\",\"Cache\",\"Amplify\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _aws_amplify_ui__WEBPACK_IMPORTED_MODULE_9__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n/* harmony import */ var _aws_amplify_xr__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @aws-amplify/xr */ \"./node_modules/@aws-amplify/xr/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"XR\", function() { return _aws_amplify_xr__WEBPACK_IMPORTED_MODULE_10__[\"XR\"]; });\n\n/* harmony import */ var _aws_amplify_predictions__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @aws-amplify/predictions */ \"./node_modules/@aws-amplify/predictions/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Predictions\", function() { return _aws_amplify_predictions__WEBPACK_IMPORTED_MODULE_11__[\"Predictions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Logger\", function() { return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ConsoleLogger\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Hub\", function() { return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Hub\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"JS\", function() { return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"JS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ClientDevice\", function() { return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ClientDevice\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Signer\", function() { return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Signer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"I18n\", function() { return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"I18n\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ServiceWorker\", function() { return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ServiceWorker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AWSCloudWatchProvider\", function() { return _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"AWSCloudWatchProvider\"]; });\n\n/* harmony import */ var _withSSRContext__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./withSSRContext */ \"./node_modules/aws-amplify/lib-esm/withSSRContext.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"withSSRContext\", function() { return _withSSRContext__WEBPACK_IMPORTED_MODULE_12__[\"withSSRContext\"]; });\n\n/* harmony import */ var _aws_amplify_geo__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! @aws-amplify/geo */ \"./node_modules/@aws-amplify/geo/lib-esm/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Geo\", function() { return _aws_amplify_geo__WEBPACK_IMPORTED_MODULE_13__[\"Geo\"]; });\n\n/*\n * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0/\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License.\n */\n\n\n\n/** Always importing Auth when users import Amplify such that\n for unauthenticated access (no sign in and sign up),\n users don't have to import Auth explicitly **/\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"].Auth = _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__[\"Auth\"];\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"].Cache = _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_2__[\"Cache\"];\n_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"].ServiceWorker = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"ServiceWorker\"];\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @deprecated use named import\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__[\"Amplify\"]);\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/aws-amplify/lib-esm/index.js?"); /***/ }), /***/ "./node_modules/aws-amplify/lib-esm/withSSRContext.js": /*!************************************************************!*\ !*** ./node_modules/aws-amplify/lib-esm/withSSRContext.js ***! \************************************************************/ /*! exports provided: withSSRContext */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"withSSRContext\", function() { return withSSRContext; });\n/* harmony import */ var _aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @aws-amplify/api */ \"./node_modules/@aws-amplify/api/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/auth */ \"./node_modules/@aws-amplify/auth/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ \"./node_modules/@aws-amplify/core/lib-esm/index.js\");\n/* harmony import */ var _aws_amplify_datastore__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/datastore */ \"./node_modules/@aws-amplify/datastore/lib-esm/index.js\");\n/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./index */ \"./node_modules/aws-amplify/lib-esm/index.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n\n\n\n\n// ! We have to use this exact reference, since it gets mutated with Amplify.Auth\n\nvar requiredModules = [\n // API cannot function without Auth\n _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__[\"Auth\"],\n // Auth cannot function without Credentials\n _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"Credentials\"],\n];\n// These modules have been tested with SSR\nvar defaultModules = [_aws_amplify_api__WEBPACK_IMPORTED_MODULE_0__[\"default\"], _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_1__[\"Auth\"], _aws_amplify_datastore__WEBPACK_IMPORTED_MODULE_3__[\"DataStore\"]];\nfunction withSSRContext(context) {\n if (context === void 0) { context = {}; }\n var _a = context.modules, modules = _a === void 0 ? defaultModules : _a, req = context.req;\n var previousConfig = _index__WEBPACK_IMPORTED_MODULE_4__[\"Amplify\"].configure();\n var amplify = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"AmplifyClass\"]();\n var storage = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__[\"UniversalStorage\"]({ req: req });\n requiredModules.forEach(function (m) {\n if (!modules.includes(m)) {\n // @ts-ignore This expression is not constructable.\n // Type 'Function' has no construct signatures.ts(2351)\n amplify.register(new m.constructor());\n }\n });\n // Associate new module instances with this amplify\n modules.forEach(function (m) {\n amplify.register(new m.constructor());\n });\n // Configure new Amplify instances with previous configuration\n amplify.configure(__assign(__assign({}, previousConfig), { storage: storage }));\n return amplify;\n}\n//# sourceMappingURL=withSSRContext.js.map\n\n//# sourceURL=webpack:///./node_modules/aws-amplify/lib-esm/withSSRContext.js?"); /***/ }), /***/ "./node_modules/axios/index.js": /*!*************************************!*\ !*** ./node_modules/axios/index.js ***! \*************************************/ /*! exports provided: default, Axios, AxiosError, CanceledError, isCancel, CancelToken, VERSION, all, Cancel, isAxiosError, spread, toFormData, AxiosHeaders, HttpStatusCode, formToJSON, getAdapter, mergeConfig */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Axios\", function() { return Axios; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AxiosError\", function() { return AxiosError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CanceledError\", function() { return CanceledError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isCancel\", function() { return isCancel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CancelToken\", function() { return CancelToken; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VERSION\", function() { return VERSION; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"all\", function() { return all; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Cancel\", function() { return Cancel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAxiosError\", function() { return isAxiosError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"spread\", function() { return spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toFormData\", function() { return toFormData; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AxiosHeaders\", function() { return AxiosHeaders; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HttpStatusCode\", function() { return HttpStatusCode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"formToJSON\", function() { return formToJSON; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getAdapter\", function() { return getAdapter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mergeConfig\", function() { return mergeConfig; });\n/* harmony import */ var _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./lib/axios.js */ \"./node_modules/axios/lib/axios.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n\n\n// This module is intended to unwrap Axios default export as named.\n// Keep top-level export same with static properties\n// so that it can keep same with es module or cjs\nconst {\n Axios,\n AxiosError,\n CanceledError,\n isCancel,\n CancelToken,\n VERSION,\n all,\n Cancel,\n isAxiosError,\n spread,\n toFormData,\n AxiosHeaders,\n HttpStatusCode,\n formToJSON,\n getAdapter,\n mergeConfig\n} = _lib_axios_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"];\n\n\n\n\n//# sourceURL=webpack:///./node_modules/axios/index.js?"); /***/ }), /***/ "./node_modules/axios/lib/adapters/adapters.js": /*!*****************************************************!*\ !*** ./node_modules/axios/lib/adapters/adapters.js ***! \*****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _http_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./http.js */ \"./node_modules/axios/lib/helpers/null.js\");\n/* harmony import */ var _xhr_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./xhr.js */ \"./node_modules/axios/lib/adapters/xhr.js\");\n/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../core/AxiosError.js */ \"./node_modules/axios/lib/core/AxiosError.js\");\n\n\n\n\n\nconst knownAdapters = {\n http: _http_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n xhr: _xhr_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"]\n}\n\n_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(knownAdapters, (fn, value) => {\n if (fn) {\n try {\n Object.defineProperty(fn, 'name', {value});\n } catch (e) {\n // eslint-disable-next-line no-empty\n }\n Object.defineProperty(fn, 'adapterName', {value});\n }\n});\n\nconst renderReason = (reason) => `- ${reason}`;\n\nconst isResolvedHandle = (adapter) => _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFunction(adapter) || adapter === null || adapter === false;\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n getAdapter: (adapters) => {\n adapters = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(adapters) ? adapters : [adapters];\n\n const {length} = adapters;\n let nameOrAdapter;\n let adapter;\n\n const rejectedReasons = {};\n\n for (let i = 0; i < length; i++) {\n nameOrAdapter = adapters[i];\n let id;\n\n adapter = nameOrAdapter;\n\n if (!isResolvedHandle(nameOrAdapter)) {\n adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];\n\n if (adapter === undefined) {\n throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"](`Unknown adapter '${id}'`);\n }\n }\n\n if (adapter) {\n break;\n }\n\n rejectedReasons[id || '#' + i] = adapter;\n }\n\n if (!adapter) {\n\n const reasons = Object.entries(rejectedReasons)\n .map(([id, state]) => `adapter ${id} ` +\n (state === false ? 'is not supported by the environment' : 'is not available in the build')\n );\n\n let s = length ?\n (reasons.length > 1 ? 'since :\\n' + reasons.map(renderReason).join('\\n') : ' ' + renderReason(reasons[0])) :\n 'as no adapter specified';\n\n throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"](\n `There is no suitable adapter to dispatch the request ` + s,\n 'ERR_NOT_SUPPORT'\n );\n }\n\n return adapter;\n },\n adapters: knownAdapters\n});\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/adapters/adapters.js?"); /***/ }), /***/ "./node_modules/axios/lib/adapters/xhr.js": /*!************************************************!*\ !*** ./node_modules/axios/lib/adapters/xhr.js ***! \************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../core/settle.js */ \"./node_modules/axios/lib/core/settle.js\");\n/* harmony import */ var _helpers_cookies_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./../helpers/cookies.js */ \"./node_modules/axios/lib/helpers/cookies.js\");\n/* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./../helpers/buildURL.js */ \"./node_modules/axios/lib/helpers/buildURL.js\");\n/* harmony import */ var _core_buildFullPath_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../core/buildFullPath.js */ \"./node_modules/axios/lib/core/buildFullPath.js\");\n/* harmony import */ var _helpers_isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./../helpers/isURLSameOrigin.js */ \"./node_modules/axios/lib/helpers/isURLSameOrigin.js\");\n/* harmony import */ var _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../defaults/transitional.js */ \"./node_modules/axios/lib/defaults/transitional.js\");\n/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../core/AxiosError.js */ \"./node_modules/axios/lib/core/AxiosError.js\");\n/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../cancel/CanceledError.js */ \"./node_modules/axios/lib/cancel/CanceledError.js\");\n/* harmony import */ var _helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../helpers/parseProtocol.js */ \"./node_modules/axios/lib/helpers/parseProtocol.js\");\n/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../platform/index.js */ \"./node_modules/axios/lib/platform/index.js\");\n/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ \"./node_modules/axios/lib/core/AxiosHeaders.js\");\n/* harmony import */ var _helpers_speedometer_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../helpers/speedometer.js */ \"./node_modules/axios/lib/helpers/speedometer.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfunction progressEventReducer(listener, isDownloadStream) {\n let bytesNotified = 0;\n const _speedometer = Object(_helpers_speedometer_js__WEBPACK_IMPORTED_MODULE_12__[\"default\"])(50, 250);\n\n return e => {\n const loaded = e.loaded;\n const total = e.lengthComputable ? e.total : undefined;\n const progressBytes = loaded - bytesNotified;\n const rate = _speedometer(progressBytes);\n const inRange = loaded <= total;\n\n bytesNotified = loaded;\n\n const data = {\n loaded,\n total,\n progress: total ? (loaded / total) : undefined,\n bytes: progressBytes,\n rate: rate ? rate : undefined,\n estimated: rate && total && inRange ? (total - loaded) / rate : undefined,\n event: e\n };\n\n data[isDownloadStream ? 'download' : 'upload'] = true;\n\n listener(data);\n };\n}\n\nconst isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (isXHRAdapterSupported && function (config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n let requestData = config.data;\n const requestHeaders = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_11__[\"default\"].from(config.headers).normalize();\n let {responseType, withXSRFToken} = config;\n let onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n let contentType;\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFormData(requestData)) {\n if (_platform_index_js__WEBPACK_IMPORTED_MODULE_10__[\"default\"].hasStandardBrowserEnv || _platform_index_js__WEBPACK_IMPORTED_MODULE_10__[\"default\"].hasStandardBrowserWebWorkerEnv) {\n requestHeaders.setContentType(false); // Let the browser set it\n } else if ((contentType = requestHeaders.getContentType()) !== false) {\n // fix semicolon duplication issue for ReactNative FormData implementation\n const [type, ...tokens] = contentType ? contentType.split(';').map(token => token.trim()).filter(Boolean) : [];\n requestHeaders.setContentType([type || 'multipart/form-data', ...tokens].join('; '));\n }\n }\n\n let request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n const username = config.auth.username || '';\n const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));\n }\n\n const fullPath = Object(_core_buildFullPath_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(config.baseURL, config.url);\n\n request.open(config.method.toUpperCase(), Object(_helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n const responseHeaders = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_11__[\"default\"].from(\n 'getAllResponseHeaders' in request && request.getAllResponseHeaders()\n );\n const responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n const response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config,\n request\n };\n\n Object(_core_settle_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"]('Request aborted', _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"].ECONNABORTED, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"]('Network Error', _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"].ERR_NETWORK, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n const transitional = config.transitional || _defaults_transitional_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"];\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"](\n timeoutErrorMessage,\n transitional.clarifyTimeoutError ? _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"].ETIMEDOUT : _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"].ECONNABORTED,\n config,\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if(_platform_index_js__WEBPACK_IMPORTED_MODULE_10__[\"default\"].hasStandardBrowserEnv) {\n withXSRFToken && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(config));\n\n if (withXSRFToken || (withXSRFToken !== false && Object(_helpers_isURLSameOrigin_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(fullPath))) {\n // Add xsrf header\n const xsrfValue = config.xsrfHeaderName && config.xsrfCookieName && _helpers_cookies_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"].read(config.xsrfCookieName);\n\n if (xsrfValue) {\n requestHeaders.set(config.xsrfHeaderName, xsrfValue);\n }\n }\n }\n\n // Remove Content-Type if data is undefined\n requestData === undefined && requestHeaders.setContentType(null);\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {\n request.setRequestHeader(key, val);\n });\n }\n\n // Add withCredentials to request if needed\n if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true));\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress));\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = cancel => {\n if (!request) {\n return;\n }\n reject(!cancel || cancel.type ? new _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_8__[\"default\"](null, config, request) : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n const protocol = Object(_helpers_parseProtocol_js__WEBPACK_IMPORTED_MODULE_9__[\"default\"])(fullPath);\n\n if (protocol && _platform_index_js__WEBPACK_IMPORTED_MODULE_10__[\"default\"].protocols.indexOf(protocol) === -1) {\n reject(new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"]('Unsupported protocol ' + protocol + ':', _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"].ERR_BAD_REQUEST, config));\n return;\n }\n\n\n // Send the request\n request.send(requestData || null);\n });\n});\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/adapters/xhr.js?"); /***/ }), /***/ "./node_modules/axios/lib/axios.js": /*!*****************************************!*\ !*** ./node_modules/axios/lib/axios.js ***! \*****************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers/bind.js */ \"./node_modules/axios/lib/helpers/bind.js\");\n/* harmony import */ var _core_Axios_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./core/Axios.js */ \"./node_modules/axios/lib/core/Axios.js\");\n/* harmony import */ var _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./core/mergeConfig.js */ \"./node_modules/axios/lib/core/mergeConfig.js\");\n/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./defaults/index.js */ \"./node_modules/axios/lib/defaults/index.js\");\n/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./helpers/formDataToJSON.js */ \"./node_modules/axios/lib/helpers/formDataToJSON.js\");\n/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./cancel/CanceledError.js */ \"./node_modules/axios/lib/cancel/CanceledError.js\");\n/* harmony import */ var _cancel_CancelToken_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./cancel/CancelToken.js */ \"./node_modules/axios/lib/cancel/CancelToken.js\");\n/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./cancel/isCancel.js */ \"./node_modules/axios/lib/cancel/isCancel.js\");\n/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./env/data.js */ \"./node_modules/axios/lib/env/data.js\");\n/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./helpers/toFormData.js */ \"./node_modules/axios/lib/helpers/toFormData.js\");\n/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./core/AxiosError.js */ \"./node_modules/axios/lib/core/AxiosError.js\");\n/* harmony import */ var _helpers_spread_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./helpers/spread.js */ \"./node_modules/axios/lib/helpers/spread.js\");\n/* harmony import */ var _helpers_isAxiosError_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./helpers/isAxiosError.js */ \"./node_modules/axios/lib/helpers/isAxiosError.js\");\n/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./core/AxiosHeaders.js */ \"./node_modules/axios/lib/core/AxiosHeaders.js\");\n/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./adapters/adapters.js */ \"./node_modules/axios/lib/adapters/adapters.js\");\n/* harmony import */ var _helpers_HttpStatusCode_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./helpers/HttpStatusCode.js */ \"./node_modules/axios/lib/helpers/HttpStatusCode.js\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n *\n * @returns {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n const context = new _core_Axios_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"](defaultConfig);\n const instance = Object(_helpers_bind_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(_core_Axios_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"].prototype.request, context);\n\n // Copy axios.prototype to instance\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].extend(instance, _core_Axios_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"].prototype, context, {allOwnKeys: true});\n\n // Copy context to instance\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].extend(instance, context, null, {allOwnKeys: true});\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(Object(_core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nconst axios = createInstance(_defaults_index_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"]);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = _core_Axios_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"];\n\n// Expose Cancel & CancelToken\naxios.CanceledError = _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"];\naxios.CancelToken = _cancel_CancelToken_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"];\naxios.isCancel = _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_8__[\"default\"];\naxios.VERSION = _env_data_js__WEBPACK_IMPORTED_MODULE_9__[\"VERSION\"];\naxios.toFormData = _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_10__[\"default\"];\n\n// Expose AxiosError class\naxios.AxiosError = _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_11__[\"default\"];\n\n// alias for CanceledError for backward compatibility\naxios.Cancel = axios.CanceledError;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\n\naxios.spread = _helpers_spread_js__WEBPACK_IMPORTED_MODULE_12__[\"default\"];\n\n// Expose isAxiosError\naxios.isAxiosError = _helpers_isAxiosError_js__WEBPACK_IMPORTED_MODULE_13__[\"default\"];\n\n// Expose mergeConfig\naxios.mergeConfig = _core_mergeConfig_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"];\n\naxios.AxiosHeaders = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_14__[\"default\"];\n\naxios.formToJSON = thing => Object(_helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isHTMLForm(thing) ? new FormData(thing) : thing);\n\naxios.getAdapter = _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_15__[\"default\"].getAdapter;\n\naxios.HttpStatusCode = _helpers_HttpStatusCode_js__WEBPACK_IMPORTED_MODULE_16__[\"default\"];\n\naxios.default = axios;\n\n// this module should only have a default export\n/* harmony default export */ __webpack_exports__[\"default\"] = (axios);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/axios.js?"); /***/ }), /***/ "./node_modules/axios/lib/cancel/CancelToken.js": /*!******************************************************!*\ !*** ./node_modules/axios/lib/cancel/CancelToken.js ***! \******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CanceledError.js */ \"./node_modules/axios/lib/cancel/CanceledError.js\");\n\n\n\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @param {Function} executor The executor function.\n *\n * @returns {CancelToken}\n */\nclass CancelToken {\n constructor(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n let resolvePromise;\n\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n const token = this;\n\n // eslint-disable-next-line func-names\n this.promise.then(cancel => {\n if (!token._listeners) return;\n\n let i = token._listeners.length;\n\n while (i-- > 0) {\n token._listeners[i](cancel);\n }\n token._listeners = null;\n });\n\n // eslint-disable-next-line func-names\n this.promise.then = onfulfilled => {\n let _resolve;\n // eslint-disable-next-line func-names\n const promise = new Promise(resolve => {\n token.subscribe(resolve);\n _resolve = resolve;\n }).then(onfulfilled);\n\n promise.cancel = function reject() {\n token.unsubscribe(_resolve);\n };\n\n return promise;\n };\n\n executor(function cancel(message, config, request) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"](message, config, request);\n resolvePromise(token.reason);\n });\n }\n\n /**\n * Throws a `CanceledError` if cancellation has been requested.\n */\n throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n }\n\n /**\n * Subscribe to the cancel signal\n */\n\n subscribe(listener) {\n if (this.reason) {\n listener(this.reason);\n return;\n }\n\n if (this._listeners) {\n this._listeners.push(listener);\n } else {\n this._listeners = [listener];\n }\n }\n\n /**\n * Unsubscribe from the cancel signal\n */\n\n unsubscribe(listener) {\n if (!this._listeners) {\n return;\n }\n const index = this._listeners.indexOf(listener);\n if (index !== -1) {\n this._listeners.splice(index, 1);\n }\n }\n\n /**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\n static source() {\n let cancel;\n const token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token,\n cancel\n };\n }\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (CancelToken);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/cancel/CancelToken.js?"); /***/ }), /***/ "./node_modules/axios/lib/cancel/CanceledError.js": /*!********************************************************!*\ !*** ./node_modules/axios/lib/cancel/CanceledError.js ***! \********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ \"./node_modules/axios/lib/core/AxiosError.js\");\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n\n\n\n\n\n/**\n * A `CanceledError` is an object that is thrown when an operation is canceled.\n *\n * @param {string=} message The message.\n * @param {Object=} config The config.\n * @param {Object=} request The request.\n *\n * @returns {CanceledError} The created error.\n */\nfunction CanceledError(message, config, request) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].call(this, message == null ? 'canceled' : message, _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].ERR_CANCELED, config, request);\n this.name = 'CanceledError';\n}\n\n_utils_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"].inherits(CanceledError, _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"], {\n __CANCEL__: true\n});\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (CanceledError);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/cancel/CanceledError.js?"); /***/ }), /***/ "./node_modules/axios/lib/cancel/isCancel.js": /*!***************************************************!*\ !*** ./node_modules/axios/lib/cancel/isCancel.js ***! \***************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return isCancel; });\n\n\nfunction isCancel(value) {\n return !!(value && value.__CANCEL__);\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/cancel/isCancel.js?"); /***/ }), /***/ "./node_modules/axios/lib/core/Axios.js": /*!**********************************************!*\ !*** ./node_modules/axios/lib/core/Axios.js ***! \**********************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/buildURL.js */ \"./node_modules/axios/lib/helpers/buildURL.js\");\n/* harmony import */ var _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./InterceptorManager.js */ \"./node_modules/axios/lib/core/InterceptorManager.js\");\n/* harmony import */ var _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./dispatchRequest.js */ \"./node_modules/axios/lib/core/dispatchRequest.js\");\n/* harmony import */ var _mergeConfig_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./mergeConfig.js */ \"./node_modules/axios/lib/core/mergeConfig.js\");\n/* harmony import */ var _buildFullPath_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./buildFullPath.js */ \"./node_modules/axios/lib/core/buildFullPath.js\");\n/* harmony import */ var _helpers_validator_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../helpers/validator.js */ \"./node_modules/axios/lib/helpers/validator.js\");\n/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./AxiosHeaders.js */ \"./node_modules/axios/lib/core/AxiosHeaders.js\");\n\n\n\n\n\n\n\n\n\n\n\nconst validators = _helpers_validator_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"].validators;\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n *\n * @return {Axios} A new instance of Axios\n */\nclass Axios {\n constructor(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"](),\n response: new _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"]()\n };\n }\n\n /**\n * Dispatch a request\n *\n * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)\n * @param {?Object} config\n *\n * @returns {Promise} The Promise to be fulfilled\n */\n request(configOrUrl, config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof configOrUrl === 'string') {\n config = config || {};\n config.url = configOrUrl;\n } else {\n config = configOrUrl || {};\n }\n\n config = Object(_mergeConfig_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(this.defaults, config);\n\n const {transitional, paramsSerializer, headers} = config;\n\n if (transitional !== undefined) {\n _helpers_validator_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"].assertOptions(transitional, {\n silentJSONParsing: validators.transitional(validators.boolean),\n forcedJSONParsing: validators.transitional(validators.boolean),\n clarifyTimeoutError: validators.transitional(validators.boolean)\n }, false);\n }\n\n if (paramsSerializer != null) {\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFunction(paramsSerializer)) {\n config.paramsSerializer = {\n serialize: paramsSerializer\n }\n } else {\n _helpers_validator_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"].assertOptions(paramsSerializer, {\n encode: validators.function,\n serialize: validators.function\n }, true);\n }\n }\n\n // Set config.method\n config.method = (config.method || this.defaults.method || 'get').toLowerCase();\n\n // Flatten headers\n let contextHeaders = headers && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].merge(\n headers.common,\n headers[config.method]\n );\n\n headers && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n (method) => {\n delete headers[method];\n }\n );\n\n config.headers = _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"].concat(contextHeaders, headers);\n\n // filter out skipped interceptors\n const requestInterceptorChain = [];\n let synchronousRequestInterceptors = true;\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {\n return;\n }\n\n synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;\n\n requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n const responseInterceptorChain = [];\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n let promise;\n let i = 0;\n let len;\n\n if (!synchronousRequestInterceptors) {\n const chain = [_dispatchRequest_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"].bind(this), undefined];\n chain.unshift.apply(chain, requestInterceptorChain);\n chain.push.apply(chain, responseInterceptorChain);\n len = chain.length;\n\n promise = Promise.resolve(config);\n\n while (i < len) {\n promise = promise.then(chain[i++], chain[i++]);\n }\n\n return promise;\n }\n\n len = requestInterceptorChain.length;\n\n let newConfig = config;\n\n i = 0;\n\n while (i < len) {\n const onFulfilled = requestInterceptorChain[i++];\n const onRejected = requestInterceptorChain[i++];\n try {\n newConfig = onFulfilled(newConfig);\n } catch (error) {\n onRejected.call(this, error);\n break;\n }\n }\n\n try {\n promise = _dispatchRequest_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"].call(this, newConfig);\n } catch (error) {\n return Promise.reject(error);\n }\n\n i = 0;\n len = responseInterceptorChain.length;\n\n while (i < len) {\n promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);\n }\n\n return promise;\n }\n\n getUri(config) {\n config = Object(_mergeConfig_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(this.defaults, config);\n const fullPath = Object(_buildFullPath_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(config.baseURL, config.url);\n return Object(_helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(fullPath, config.params, config.paramsSerializer);\n }\n}\n\n// Provide aliases for supported request methods\n_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(Object(_mergeConfig_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(config || {}, {\n method,\n url,\n data: (config || {}).data\n }));\n };\n});\n\n_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n\n function generateHTTPMethod(isForm) {\n return function httpMethod(url, data, config) {\n return this.request(Object(_mergeConfig_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(config || {}, {\n method,\n headers: isForm ? {\n 'Content-Type': 'multipart/form-data'\n } : {},\n url,\n data\n }));\n };\n }\n\n Axios.prototype[method] = generateHTTPMethod();\n\n Axios.prototype[method + 'Form'] = generateHTTPMethod(true);\n});\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (Axios);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/core/Axios.js?"); /***/ }), /***/ "./node_modules/axios/lib/core/AxiosError.js": /*!***************************************************!*\ !*** ./node_modules/axios/lib/core/AxiosError.js ***! \***************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n\n\n\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [config] The config.\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n *\n * @returns {Error} The created error.\n */\nfunction AxiosError(message, code, config, request, response) {\n Error.call(this);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, this.constructor);\n } else {\n this.stack = (new Error()).stack;\n }\n\n this.message = message;\n this.name = 'AxiosError';\n code && (this.code = code);\n config && (this.config = config);\n request && (this.request = request);\n response && (this.response = response);\n}\n\n_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].inherits(AxiosError, Error, {\n toJSON: function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].toJSONObject(this.config),\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n }\n});\n\nconst prototype = AxiosError.prototype;\nconst descriptors = {};\n\n[\n 'ERR_BAD_OPTION_VALUE',\n 'ERR_BAD_OPTION',\n 'ECONNABORTED',\n 'ETIMEDOUT',\n 'ERR_NETWORK',\n 'ERR_FR_TOO_MANY_REDIRECTS',\n 'ERR_DEPRECATED',\n 'ERR_BAD_RESPONSE',\n 'ERR_BAD_REQUEST',\n 'ERR_CANCELED',\n 'ERR_NOT_SUPPORT',\n 'ERR_INVALID_URL'\n// eslint-disable-next-line func-names\n].forEach(code => {\n descriptors[code] = {value: code};\n});\n\nObject.defineProperties(AxiosError, descriptors);\nObject.defineProperty(prototype, 'isAxiosError', {value: true});\n\n// eslint-disable-next-line func-names\nAxiosError.from = (error, code, config, request, response, customProps) => {\n const axiosError = Object.create(prototype);\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].toFlatObject(error, axiosError, function filter(obj) {\n return obj !== Error.prototype;\n }, prop => {\n return prop !== 'isAxiosError';\n });\n\n AxiosError.call(axiosError, error.message, code, config, request, response);\n\n axiosError.cause = error;\n\n axiosError.name = error.name;\n\n customProps && Object.assign(axiosError, customProps);\n\n return axiosError;\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (AxiosError);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/core/AxiosError.js?"); /***/ }), /***/ "./node_modules/axios/lib/core/AxiosHeaders.js": /*!*****************************************************!*\ !*** ./node_modules/axios/lib/core/AxiosHeaders.js ***! \*****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _helpers_parseHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/parseHeaders.js */ \"./node_modules/axios/lib/helpers/parseHeaders.js\");\n\n\n\n\n\nconst $internals = Symbol('internals');\n\nfunction normalizeHeader(header) {\n return header && String(header).trim().toLowerCase();\n}\n\nfunction normalizeValue(value) {\n if (value === false || value == null) {\n return value;\n }\n\n return _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(value) ? value.map(normalizeValue) : String(value);\n}\n\nfunction parseTokens(str) {\n const tokens = Object.create(null);\n const tokensRE = /([^\\s,;=]+)\\s*(?:=\\s*([^,;]+))?/g;\n let match;\n\n while ((match = tokensRE.exec(str))) {\n tokens[match[1]] = match[2];\n }\n\n return tokens;\n}\n\nconst isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());\n\nfunction matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFunction(filter)) {\n return filter.call(this, value, header);\n }\n\n if (isHeaderNameFilter) {\n value = header;\n }\n\n if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isString(value)) return;\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isString(filter)) {\n return value.indexOf(filter) !== -1;\n }\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isRegExp(filter)) {\n return filter.test(value);\n }\n}\n\nfunction formatHeader(header) {\n return header.trim()\n .toLowerCase().replace(/([a-z\\d])(\\w*)/g, (w, char, str) => {\n return char.toUpperCase() + str;\n });\n}\n\nfunction buildAccessors(obj, header) {\n const accessorName = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].toCamelCase(' ' + header);\n\n ['get', 'set', 'has'].forEach(methodName => {\n Object.defineProperty(obj, methodName + accessorName, {\n value: function(arg1, arg2, arg3) {\n return this[methodName].call(this, header, arg1, arg2, arg3);\n },\n configurable: true\n });\n });\n}\n\nclass AxiosHeaders {\n constructor(headers) {\n headers && this.set(headers);\n }\n\n set(header, valueOrRewrite, rewrite) {\n const self = this;\n\n function setHeader(_value, _header, _rewrite) {\n const lHeader = normalizeHeader(_header);\n\n if (!lHeader) {\n throw new Error('header name must be a non-empty string');\n }\n\n const key = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].findKey(self, lHeader);\n\n if(!key || self[key] === undefined || _rewrite === true || (_rewrite === undefined && self[key] !== false)) {\n self[key || _header] = normalizeValue(_value);\n }\n }\n\n const setHeaders = (headers, _rewrite) =>\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite));\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isPlainObject(header) || header instanceof this.constructor) {\n setHeaders(header, valueOrRewrite)\n } else if(_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {\n setHeaders(Object(_helpers_parseHeaders_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(header), valueOrRewrite);\n } else {\n header != null && setHeader(valueOrRewrite, header, rewrite);\n }\n\n return this;\n }\n\n get(header, parser) {\n header = normalizeHeader(header);\n\n if (header) {\n const key = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].findKey(this, header);\n\n if (key) {\n const value = this[key];\n\n if (!parser) {\n return value;\n }\n\n if (parser === true) {\n return parseTokens(value);\n }\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFunction(parser)) {\n return parser.call(this, value, key);\n }\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isRegExp(parser)) {\n return parser.exec(value);\n }\n\n throw new TypeError('parser must be boolean|regexp|function');\n }\n }\n }\n\n has(header, matcher) {\n header = normalizeHeader(header);\n\n if (header) {\n const key = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].findKey(this, header);\n\n return !!(key && this[key] !== undefined && (!matcher || matchHeaderValue(this, this[key], key, matcher)));\n }\n\n return false;\n }\n\n delete(header, matcher) {\n const self = this;\n let deleted = false;\n\n function deleteHeader(_header) {\n _header = normalizeHeader(_header);\n\n if (_header) {\n const key = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].findKey(self, _header);\n\n if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {\n delete self[key];\n\n deleted = true;\n }\n }\n }\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(header)) {\n header.forEach(deleteHeader);\n } else {\n deleteHeader(header);\n }\n\n return deleted;\n }\n\n clear(matcher) {\n const keys = Object.keys(this);\n let i = keys.length;\n let deleted = false;\n\n while (i--) {\n const key = keys[i];\n if(!matcher || matchHeaderValue(this, this[key], key, matcher, true)) {\n delete this[key];\n deleted = true;\n }\n }\n\n return deleted;\n }\n\n normalize(format) {\n const self = this;\n const headers = {};\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(this, (value, header) => {\n const key = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].findKey(headers, header);\n\n if (key) {\n self[key] = normalizeValue(value);\n delete self[header];\n return;\n }\n\n const normalized = format ? formatHeader(header) : String(header).trim();\n\n if (normalized !== header) {\n delete self[header];\n }\n\n self[normalized] = normalizeValue(value);\n\n headers[normalized] = true;\n });\n\n return this;\n }\n\n concat(...targets) {\n return this.constructor.concat(this, ...targets);\n }\n\n toJSON(asStrings) {\n const obj = Object.create(null);\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(this, (value, header) => {\n value != null && value !== false && (obj[header] = asStrings && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(value) ? value.join(', ') : value);\n });\n\n return obj;\n }\n\n [Symbol.iterator]() {\n return Object.entries(this.toJSON())[Symbol.iterator]();\n }\n\n toString() {\n return Object.entries(this.toJSON()).map(([header, value]) => header + ': ' + value).join('\\n');\n }\n\n get [Symbol.toStringTag]() {\n return 'AxiosHeaders';\n }\n\n static from(thing) {\n return thing instanceof this ? thing : new this(thing);\n }\n\n static concat(first, ...targets) {\n const computed = new this(first);\n\n targets.forEach((target) => computed.set(target));\n\n return computed;\n }\n\n static accessor(header) {\n const internals = this[$internals] = (this[$internals] = {\n accessors: {}\n });\n\n const accessors = internals.accessors;\n const prototype = this.prototype;\n\n function defineAccessor(_header) {\n const lHeader = normalizeHeader(_header);\n\n if (!accessors[lHeader]) {\n buildAccessors(prototype, _header);\n accessors[lHeader] = true;\n }\n }\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);\n\n return this;\n }\n}\n\nAxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent', 'Authorization']);\n\n// reserved names hotfix\n_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].reduceDescriptors(AxiosHeaders.prototype, ({value}, key) => {\n let mapped = key[0].toUpperCase() + key.slice(1); // map `set` => `Set`\n return {\n get: () => value,\n set(headerValue) {\n this[mapped] = headerValue;\n }\n }\n});\n\n_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].freezeMethods(AxiosHeaders);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (AxiosHeaders);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/core/AxiosHeaders.js?"); /***/ }), /***/ "./node_modules/axios/lib/core/InterceptorManager.js": /*!***********************************************************!*\ !*** ./node_modules/axios/lib/core/InterceptorManager.js ***! \***********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ \"./node_modules/axios/lib/utils.js\");\n\n\n\n\nclass InterceptorManager {\n constructor() {\n this.handlers = [];\n }\n\n /**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\n use(fulfilled, rejected, options) {\n this.handlers.push({\n fulfilled,\n rejected,\n synchronous: options ? options.synchronous : false,\n runWhen: options ? options.runWhen : null\n });\n return this.handlers.length - 1;\n }\n\n /**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n *\n * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise\n */\n eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n }\n\n /**\n * Clear all interceptors from the stack\n *\n * @returns {void}\n */\n clear() {\n if (this.handlers) {\n this.handlers = [];\n }\n }\n\n /**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n *\n * @returns {void}\n */\n forEach(fn) {\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n }\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (InterceptorManager);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/core/InterceptorManager.js?"); /***/ }), /***/ "./node_modules/axios/lib/core/buildFullPath.js": /*!******************************************************!*\ !*** ./node_modules/axios/lib/core/buildFullPath.js ***! \******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return buildFullPath; });\n/* harmony import */ var _helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/isAbsoluteURL.js */ \"./node_modules/axios/lib/helpers/isAbsoluteURL.js\");\n/* harmony import */ var _helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/combineURLs.js */ \"./node_modules/axios/lib/helpers/combineURLs.js\");\n\n\n\n\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n *\n * @returns {string} The combined full path\n */\nfunction buildFullPath(baseURL, requestedURL) {\n if (baseURL && !Object(_helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(requestedURL)) {\n return Object(_helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(baseURL, requestedURL);\n }\n return requestedURL;\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/core/buildFullPath.js?"); /***/ }), /***/ "./node_modules/axios/lib/core/dispatchRequest.js": /*!********************************************************!*\ !*** ./node_modules/axios/lib/core/dispatchRequest.js ***! \********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return dispatchRequest; });\n/* harmony import */ var _transformData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./transformData.js */ \"./node_modules/axios/lib/core/transformData.js\");\n/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../cancel/isCancel.js */ \"./node_modules/axios/lib/cancel/isCancel.js\");\n/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../defaults/index.js */ \"./node_modules/axios/lib/defaults/index.js\");\n/* harmony import */ var _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../cancel/CanceledError.js */ \"./node_modules/axios/lib/cancel/CanceledError.js\");\n/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ \"./node_modules/axios/lib/core/AxiosHeaders.js\");\n/* harmony import */ var _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../adapters/adapters.js */ \"./node_modules/axios/lib/adapters/adapters.js\");\n\n\n\n\n\n\n\n\n\n/**\n * Throws a `CanceledError` if cancellation has been requested.\n *\n * @param {Object} config The config that is to be used for the request\n *\n * @returns {void}\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new _cancel_CanceledError_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"](null, config);\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n *\n * @returns {Promise} The Promise to be fulfilled\n */\nfunction dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n config.headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"].from(config.headers);\n\n // Transform request data\n config.data = _transformData_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].call(\n config,\n config.transformRequest\n );\n\n if (['post', 'put', 'patch'].indexOf(config.method) !== -1) {\n config.headers.setContentType('application/x-www-form-urlencoded', false);\n }\n\n const adapter = _adapters_adapters_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"].getAdapter(config.adapter || _defaults_index_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"].adapter);\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = _transformData_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].call(\n config,\n config.transformResponse,\n response\n );\n\n response.headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"].from(response.headers);\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!Object(_cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = _transformData_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].call(\n config,\n config.transformResponse,\n reason.response\n );\n reason.response.headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"].from(reason.response.headers);\n }\n }\n\n return Promise.reject(reason);\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/core/dispatchRequest.js?"); /***/ }), /***/ "./node_modules/axios/lib/core/mergeConfig.js": /*!****************************************************!*\ !*** ./node_modules/axios/lib/core/mergeConfig.js ***! \****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return mergeConfig; });\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AxiosHeaders.js */ \"./node_modules/axios/lib/core/AxiosHeaders.js\");\n\n\n\n\n\nconst headersToObject = (thing) => thing instanceof _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"] ? thing.toJSON() : thing;\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n *\n * @returns {Object} New object resulting from merging config2 to config1\n */\nfunction mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n const config = {};\n\n function getMergedValue(target, source, caseless) {\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isPlainObject(target) && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isPlainObject(source)) {\n return _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].merge.call({caseless}, target, source);\n } else if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isPlainObject(source)) {\n return _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].merge({}, source);\n } else if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDeepProperties(a, b, caseless) {\n if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(b)) {\n return getMergedValue(a, b, caseless);\n } else if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(a)) {\n return getMergedValue(undefined, a, caseless);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function valueFromConfig2(a, b) {\n if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(b)) {\n return getMergedValue(undefined, b);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function defaultToConfig2(a, b) {\n if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(b)) {\n return getMergedValue(undefined, b);\n } else if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(a)) {\n return getMergedValue(undefined, a);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDirectKeys(a, b, prop) {\n if (prop in config2) {\n return getMergedValue(a, b);\n } else if (prop in config1) {\n return getMergedValue(undefined, a);\n }\n }\n\n const mergeMap = {\n url: valueFromConfig2,\n method: valueFromConfig2,\n data: valueFromConfig2,\n baseURL: defaultToConfig2,\n transformRequest: defaultToConfig2,\n transformResponse: defaultToConfig2,\n paramsSerializer: defaultToConfig2,\n timeout: defaultToConfig2,\n timeoutMessage: defaultToConfig2,\n withCredentials: defaultToConfig2,\n withXSRFToken: defaultToConfig2,\n adapter: defaultToConfig2,\n responseType: defaultToConfig2,\n xsrfCookieName: defaultToConfig2,\n xsrfHeaderName: defaultToConfig2,\n onUploadProgress: defaultToConfig2,\n onDownloadProgress: defaultToConfig2,\n decompress: defaultToConfig2,\n maxContentLength: defaultToConfig2,\n maxBodyLength: defaultToConfig2,\n beforeRedirect: defaultToConfig2,\n transport: defaultToConfig2,\n httpAgent: defaultToConfig2,\n httpsAgent: defaultToConfig2,\n cancelToken: defaultToConfig2,\n socketPath: defaultToConfig2,\n responseEncoding: defaultToConfig2,\n validateStatus: mergeDirectKeys,\n headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)\n };\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {\n const merge = mergeMap[prop] || mergeDeepProperties;\n const configValue = merge(config1[prop], config2[prop], prop);\n (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);\n });\n\n return config;\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/core/mergeConfig.js?"); /***/ }), /***/ "./node_modules/axios/lib/core/settle.js": /*!***********************************************!*\ !*** ./node_modules/axios/lib/core/settle.js ***! \***********************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return settle; });\n/* harmony import */ var _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosError.js */ \"./node_modules/axios/lib/core/AxiosError.js\");\n\n\n\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n *\n * @returns {object} The response.\n */\nfunction settle(resolve, reject, response) {\n const validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(new _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"](\n 'Request failed with status code ' + response.status,\n [_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].ERR_BAD_REQUEST, _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],\n response.config,\n response.request,\n response\n ));\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/core/settle.js?"); /***/ }), /***/ "./node_modules/axios/lib/core/transformData.js": /*!******************************************************!*\ !*** ./node_modules/axios/lib/core/transformData.js ***! \******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return transformData; });\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../defaults/index.js */ \"./node_modules/axios/lib/defaults/index.js\");\n/* harmony import */ var _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosHeaders.js */ \"./node_modules/axios/lib/core/AxiosHeaders.js\");\n\n\n\n\n\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Array|Function} fns A single function or Array of functions\n * @param {?Object} response The response object\n *\n * @returns {*} The resulting transformed data\n */\nfunction transformData(fns, response) {\n const config = this || _defaults_index_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"];\n const context = response || config;\n const headers = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"].from(context.headers);\n let data = context.data;\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(fns, function transform(fn) {\n data = fn.call(config, data, headers.normalize(), response ? response.status : undefined);\n });\n\n headers.normalize();\n\n return data;\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/core/transformData.js?"); /***/ }), /***/ "./node_modules/axios/lib/defaults/index.js": /*!**************************************************!*\ !*** ./node_modules/axios/lib/defaults/index.js ***! \**************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ \"./node_modules/axios/lib/core/AxiosError.js\");\n/* harmony import */ var _transitional_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./transitional.js */ \"./node_modules/axios/lib/defaults/transitional.js\");\n/* harmony import */ var _helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../helpers/toFormData.js */ \"./node_modules/axios/lib/helpers/toFormData.js\");\n/* harmony import */ var _helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../helpers/toURLEncodedForm.js */ \"./node_modules/axios/lib/helpers/toURLEncodedForm.js\");\n/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../platform/index.js */ \"./node_modules/axios/lib/platform/index.js\");\n/* harmony import */ var _helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../helpers/formDataToJSON.js */ \"./node_modules/axios/lib/helpers/formDataToJSON.js\");\n\n\n\n\n\n\n\n\n\n\n/**\n * It takes a string, tries to parse it, and if it fails, it returns the stringified version\n * of the input\n *\n * @param {any} rawValue - The value to be stringified.\n * @param {Function} parser - A function that parses a string into a JavaScript object.\n * @param {Function} encoder - A function that takes a value and returns a string.\n *\n * @returns {string} A stringified version of the rawValue.\n */\nfunction stringifySafely(rawValue, parser, encoder) {\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nconst defaults = {\n\n transitional: _transitional_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"],\n\n adapter: ['xhr', 'http'],\n\n transformRequest: [function transformRequest(data, headers) {\n const contentType = headers.getContentType() || '';\n const hasJSONContentType = contentType.indexOf('application/json') > -1;\n const isObjectPayload = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isObject(data);\n\n if (isObjectPayload && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isHTMLForm(data)) {\n data = new FormData(data);\n }\n\n const isFormData = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFormData(data);\n\n if (isFormData) {\n if (!hasJSONContentType) {\n return data;\n }\n return hasJSONContentType ? JSON.stringify(Object(_helpers_formDataToJSON_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(data)) : data;\n }\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArrayBuffer(data) ||\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isBuffer(data) ||\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isStream(data) ||\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFile(data) ||\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isBlob(data)\n ) {\n return data;\n }\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArrayBufferView(data)) {\n return data.buffer;\n }\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isURLSearchParams(data)) {\n headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false);\n return data.toString();\n }\n\n let isFileList;\n\n if (isObjectPayload) {\n if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {\n return Object(_helpers_toURLEncodedForm_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(data, this.formSerializer).toString();\n }\n\n if ((isFileList = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {\n const _FormData = this.env && this.env.FormData;\n\n return Object(_helpers_toFormData_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n isFileList ? {'files[]': data} : data,\n _FormData && new _FormData(),\n this.formSerializer\n );\n }\n }\n\n if (isObjectPayload || hasJSONContentType ) {\n headers.setContentType('application/json', false);\n return stringifySafely(data);\n }\n\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n const transitional = this.transitional || defaults.transitional;\n const forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n const JSONRequested = this.responseType === 'json';\n\n if (data && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {\n const silentJSONParsing = transitional && transitional.silentJSONParsing;\n const strictJSONParsing = !silentJSONParsing && JSONRequested;\n\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"].from(e, _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"].ERR_BAD_RESPONSE, this, null, this.response);\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n env: {\n FormData: _platform_index_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"].classes.FormData,\n Blob: _platform_index_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"].classes.Blob\n },\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*',\n 'Content-Type': undefined\n }\n }\n};\n\n_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(['delete', 'get', 'head', 'post', 'put', 'patch'], (method) => {\n defaults.headers[method] = {};\n});\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (defaults);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/defaults/index.js?"); /***/ }), /***/ "./node_modules/axios/lib/defaults/transitional.js": /*!*********************************************************!*\ !*** ./node_modules/axios/lib/defaults/transitional.js ***! \*********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n});\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/defaults/transitional.js?"); /***/ }), /***/ "./node_modules/axios/lib/env/data.js": /*!********************************************!*\ !*** ./node_modules/axios/lib/env/data.js ***! \********************************************/ /*! exports provided: VERSION */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VERSION\", function() { return VERSION; });\nconst VERSION = \"1.6.2\";\n\n//# sourceURL=webpack:///./node_modules/axios/lib/env/data.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/AxiosURLSearchParams.js": /*!****************************************************************!*\ !*** ./node_modules/axios/lib/helpers/AxiosURLSearchParams.js ***! \****************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ \"./node_modules/axios/lib/helpers/toFormData.js\");\n\n\n\n\n/**\n * It encodes a string by replacing all characters that are not in the unreserved set with\n * their percent-encoded equivalents\n *\n * @param {string} str - The string to encode.\n *\n * @returns {string} The encoded string.\n */\nfunction encode(str) {\n const charMap = {\n '!': '%21',\n \"'\": '%27',\n '(': '%28',\n ')': '%29',\n '~': '%7E',\n '%20': '+',\n '%00': '\\x00'\n };\n return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {\n return charMap[match];\n });\n}\n\n/**\n * It takes a params object and converts it to a FormData object\n *\n * @param {Object} params - The parameters to be converted to a FormData object.\n * @param {Object} options - The options object passed to the Axios constructor.\n *\n * @returns {void}\n */\nfunction AxiosURLSearchParams(params, options) {\n this._pairs = [];\n\n params && Object(_toFormData_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(params, this, options);\n}\n\nconst prototype = AxiosURLSearchParams.prototype;\n\nprototype.append = function append(name, value) {\n this._pairs.push([name, value]);\n};\n\nprototype.toString = function toString(encoder) {\n const _encode = encoder ? function(value) {\n return encoder.call(this, value, encode);\n } : encode;\n\n return this._pairs.map(function each(pair) {\n return _encode(pair[0]) + '=' + _encode(pair[1]);\n }, '').join('&');\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (AxiosURLSearchParams);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/AxiosURLSearchParams.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/HttpStatusCode.js": /*!**********************************************************!*\ !*** ./node_modules/axios/lib/helpers/HttpStatusCode.js ***! \**********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\nconst HttpStatusCode = {\n Continue: 100,\n SwitchingProtocols: 101,\n Processing: 102,\n EarlyHints: 103,\n Ok: 200,\n Created: 201,\n Accepted: 202,\n NonAuthoritativeInformation: 203,\n NoContent: 204,\n ResetContent: 205,\n PartialContent: 206,\n MultiStatus: 207,\n AlreadyReported: 208,\n ImUsed: 226,\n MultipleChoices: 300,\n MovedPermanently: 301,\n Found: 302,\n SeeOther: 303,\n NotModified: 304,\n UseProxy: 305,\n Unused: 306,\n TemporaryRedirect: 307,\n PermanentRedirect: 308,\n BadRequest: 400,\n Unauthorized: 401,\n PaymentRequired: 402,\n Forbidden: 403,\n NotFound: 404,\n MethodNotAllowed: 405,\n NotAcceptable: 406,\n ProxyAuthenticationRequired: 407,\n RequestTimeout: 408,\n Conflict: 409,\n Gone: 410,\n LengthRequired: 411,\n PreconditionFailed: 412,\n PayloadTooLarge: 413,\n UriTooLong: 414,\n UnsupportedMediaType: 415,\n RangeNotSatisfiable: 416,\n ExpectationFailed: 417,\n ImATeapot: 418,\n MisdirectedRequest: 421,\n UnprocessableEntity: 422,\n Locked: 423,\n FailedDependency: 424,\n TooEarly: 425,\n UpgradeRequired: 426,\n PreconditionRequired: 428,\n TooManyRequests: 429,\n RequestHeaderFieldsTooLarge: 431,\n UnavailableForLegalReasons: 451,\n InternalServerError: 500,\n NotImplemented: 501,\n BadGateway: 502,\n ServiceUnavailable: 503,\n GatewayTimeout: 504,\n HttpVersionNotSupported: 505,\n VariantAlsoNegotiates: 506,\n InsufficientStorage: 507,\n LoopDetected: 508,\n NotExtended: 510,\n NetworkAuthenticationRequired: 511,\n};\n\nObject.entries(HttpStatusCode).forEach(([key, value]) => {\n HttpStatusCode[value] = key;\n});\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (HttpStatusCode);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/HttpStatusCode.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/bind.js": /*!************************************************!*\ !*** ./node_modules/axios/lib/helpers/bind.js ***! \************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return bind; });\n\n\nfunction bind(fn, thisArg) {\n return function wrap() {\n return fn.apply(thisArg, arguments);\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/bind.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/buildURL.js": /*!****************************************************!*\ !*** ./node_modules/axios/lib/helpers/buildURL.js ***! \****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return buildURL; });\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/AxiosURLSearchParams.js */ \"./node_modules/axios/lib/helpers/AxiosURLSearchParams.js\");\n\n\n\n\n\n/**\n * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their\n * URI encoded counterparts\n *\n * @param {string} val The value to be encoded.\n *\n * @returns {string} The encoded value.\n */\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @param {?object} options\n *\n * @returns {string} The formatted url\n */\nfunction buildURL(url, params, options) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n \n const _encode = options && options.encode || encode;\n\n const serializeFn = options && options.serialize;\n\n let serializedParams;\n\n if (serializeFn) {\n serializedParams = serializeFn(params, options);\n } else {\n serializedParams = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isURLSearchParams(params) ?\n params.toString() :\n new _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"](params, options).toString(_encode);\n }\n\n if (serializedParams) {\n const hashmarkIndex = url.indexOf(\"#\");\n\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/buildURL.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/combineURLs.js": /*!*******************************************************!*\ !*** ./node_modules/axios/lib/helpers/combineURLs.js ***! \*******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return combineURLs; });\n\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n *\n * @returns {string} The combined URL\n */\nfunction combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/combineURLs.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/cookies.js": /*!***************************************************!*\ !*** ./node_modules/axios/lib/helpers/cookies.js ***! \***************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ \"./node_modules/axios/lib/platform/index.js\");\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (_platform_index_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"].hasStandardBrowserEnv ?\n\n // Standard browser envs support document.cookie\n {\n write(name, value, expires, path, domain, secure) {\n const cookie = [name + '=' + encodeURIComponent(value)];\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isNumber(expires) && cookie.push('expires=' + new Date(expires).toGMTString());\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isString(path) && cookie.push('path=' + path);\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isString(domain) && cookie.push('domain=' + domain);\n\n secure === true && cookie.push('secure');\n\n document.cookie = cookie.join('; ');\n },\n\n read(name) {\n const match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n }\n\n :\n\n // Non-standard browser env (web workers, react-native) lack needed support.\n {\n write() {},\n read() {\n return null;\n },\n remove() {}\n });\n\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/cookies.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/formDataToJSON.js": /*!**********************************************************!*\ !*** ./node_modules/axios/lib/helpers/formDataToJSON.js ***! \**********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n\n\n\n\n/**\n * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']\n *\n * @param {string} name - The name of the property to get.\n *\n * @returns An array of strings.\n */\nfunction parsePropPath(name) {\n // foo[x][y][z]\n // foo.x.y.z\n // foo-x-y-z\n // foo x y z\n return _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].matchAll(/\\w+|\\[(\\w*)]/g, name).map(match => {\n return match[0] === '[]' ? '' : match[1] || match[0];\n });\n}\n\n/**\n * Convert an array to an object.\n *\n * @param {Array} arr - The array to convert to an object.\n *\n * @returns An object with the same keys and values as the array.\n */\nfunction arrayToObject(arr) {\n const obj = {};\n const keys = Object.keys(arr);\n let i;\n const len = keys.length;\n let key;\n for (i = 0; i < len; i++) {\n key = keys[i];\n obj[key] = arr[key];\n }\n return obj;\n}\n\n/**\n * It takes a FormData object and returns a JavaScript object\n *\n * @param {string} formData The FormData object to convert to JSON.\n *\n * @returns {Object | null} The converted object.\n */\nfunction formDataToJSON(formData) {\n function buildPath(path, value, target, index) {\n let name = path[index++];\n const isNumericKey = Number.isFinite(+name);\n const isLast = index >= path.length;\n name = !name && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(target) ? target.length : name;\n\n if (isLast) {\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].hasOwnProp(target, name)) {\n target[name] = [target[name], value];\n } else {\n target[name] = value;\n }\n\n return !isNumericKey;\n }\n\n if (!target[name] || !_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isObject(target[name])) {\n target[name] = [];\n }\n\n const result = buildPath(path, value, target[name], index);\n\n if (result && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(target[name])) {\n target[name] = arrayToObject(target[name]);\n }\n\n return !isNumericKey;\n }\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFormData(formData) && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFunction(formData.entries)) {\n const obj = {};\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEachEntry(formData, (name, value) => {\n buildPath(parsePropPath(name), value, obj, 0);\n });\n\n return obj;\n }\n\n return null;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (formDataToJSON);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/formDataToJSON.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/isAbsoluteURL.js": /*!*********************************************************!*\ !*** ./node_modules/axios/lib/helpers/isAbsoluteURL.js ***! \*********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return isAbsoluteURL; });\n\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n *\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nfunction isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/isAbsoluteURL.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/isAxiosError.js": /*!********************************************************!*\ !*** ./node_modules/axios/lib/helpers/isAxiosError.js ***! \********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return isAxiosError; });\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ \"./node_modules/axios/lib/utils.js\");\n\n\n\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n *\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nfunction isAxiosError(payload) {\n return _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isObject(payload) && (payload.isAxiosError === true);\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/isAxiosError.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/isURLSameOrigin.js": /*!***********************************************************!*\ !*** ./node_modules/axios/lib/helpers/isURLSameOrigin.js ***! \***********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/index.js */ \"./node_modules/axios/lib/platform/index.js\");\n\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (_platform_index_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"].hasStandardBrowserEnv ?\n\n// Standard browser envs have full support of the APIs needed to test\n// whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n const msie = /(msie|trident)/i.test(navigator.userAgent);\n const urlParsingNode = document.createElement('a');\n let originURL;\n\n /**\n * Parse a URL to discover its components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n let href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n const parsed = (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })());\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/isURLSameOrigin.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/null.js": /*!************************************************!*\ !*** ./node_modules/axios/lib/helpers/null.js ***! \************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n// eslint-disable-next-line strict\n/* harmony default export */ __webpack_exports__[\"default\"] = (null);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/null.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/parseHeaders.js": /*!********************************************************!*\ !*** ./node_modules/axios/lib/helpers/parseHeaders.js ***! \********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ \"./node_modules/axios/lib/utils.js\");\n\n\n\n\n// RawAxiosHeaders whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nconst ignoreDuplicateOf = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].toObjectSet([\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n]);\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} rawHeaders Headers needing to be parsed\n *\n * @returns {Object} Headers parsed into an object\n */\n/* harmony default export */ __webpack_exports__[\"default\"] = (rawHeaders => {\n const parsed = {};\n let key;\n let val;\n let i;\n\n rawHeaders && rawHeaders.split('\\n').forEach(function parser(line) {\n i = line.indexOf(':');\n key = line.substring(0, i).trim().toLowerCase();\n val = line.substring(i + 1).trim();\n\n if (!key || (parsed[key] && ignoreDuplicateOf[key])) {\n return;\n }\n\n if (key === 'set-cookie') {\n if (parsed[key]) {\n parsed[key].push(val);\n } else {\n parsed[key] = [val];\n }\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n });\n\n return parsed;\n});\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/parseHeaders.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/parseProtocol.js": /*!*********************************************************!*\ !*** ./node_modules/axios/lib/helpers/parseProtocol.js ***! \*********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return parseProtocol; });\n\n\nfunction parseProtocol(url) {\n const match = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(url);\n return match && match[1] || '';\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/parseProtocol.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/speedometer.js": /*!*******************************************************!*\ !*** ./node_modules/axios/lib/helpers/speedometer.js ***! \*******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n/**\n * Calculate data maxRate\n * @param {Number} [samplesCount= 10]\n * @param {Number} [min= 1000]\n * @returns {Function}\n */\nfunction speedometer(samplesCount, min) {\n samplesCount = samplesCount || 10;\n const bytes = new Array(samplesCount);\n const timestamps = new Array(samplesCount);\n let head = 0;\n let tail = 0;\n let firstSampleTS;\n\n min = min !== undefined ? min : 1000;\n\n return function push(chunkLength) {\n const now = Date.now();\n\n const startedAt = timestamps[tail];\n\n if (!firstSampleTS) {\n firstSampleTS = now;\n }\n\n bytes[head] = chunkLength;\n timestamps[head] = now;\n\n let i = tail;\n let bytesCount = 0;\n\n while (i !== head) {\n bytesCount += bytes[i++];\n i = i % samplesCount;\n }\n\n head = (head + 1) % samplesCount;\n\n if (head === tail) {\n tail = (tail + 1) % samplesCount;\n }\n\n if (now - firstSampleTS < min) {\n return;\n }\n\n const passed = startedAt && now - startedAt;\n\n return passed ? Math.round(bytesCount * 1000 / passed) : undefined;\n };\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (speedometer);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/speedometer.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/spread.js": /*!**************************************************!*\ !*** ./node_modules/axios/lib/helpers/spread.js ***! \**************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return spread; });\n\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n *\n * @returns {Function}\n */\nfunction spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/spread.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/toFormData.js": /*!******************************************************!*\ !*** ./node_modules/axios/lib/helpers/toFormData.js ***! \******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(Buffer) {/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ \"./node_modules/axios/lib/core/AxiosError.js\");\n/* harmony import */ var _platform_node_classes_FormData_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../platform/node/classes/FormData.js */ \"./node_modules/axios/lib/helpers/null.js\");\n\n\n\n\n// temporary hotfix to avoid circular references until AxiosURLSearchParams is refactored\n\n\n/**\n * Determines if the given thing is a array or js object.\n *\n * @param {string} thing - The object or array to be visited.\n *\n * @returns {boolean}\n */\nfunction isVisitable(thing) {\n return _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isPlainObject(thing) || _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(thing);\n}\n\n/**\n * It removes the brackets from the end of a string\n *\n * @param {string} key - The key of the parameter.\n *\n * @returns {string} the key without the brackets.\n */\nfunction removeBrackets(key) {\n return _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].endsWith(key, '[]') ? key.slice(0, -2) : key;\n}\n\n/**\n * It takes a path, a key, and a boolean, and returns a string\n *\n * @param {string} path - The path to the current key.\n * @param {string} key - The key of the current object being iterated over.\n * @param {string} dots - If true, the key will be rendered with dots instead of brackets.\n *\n * @returns {string} The path to the current key.\n */\nfunction renderKey(path, key, dots) {\n if (!path) return key;\n return path.concat(key).map(function each(token, i) {\n // eslint-disable-next-line no-param-reassign\n token = removeBrackets(token);\n return !dots && i ? '[' + token + ']' : token;\n }).join(dots ? '.' : '');\n}\n\n/**\n * If the array is an array and none of its elements are visitable, then it's a flat array.\n *\n * @param {Array} arr - The array to check\n *\n * @returns {boolean}\n */\nfunction isFlatArray(arr) {\n return _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(arr) && !arr.some(isVisitable);\n}\n\nconst predicates = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].toFlatObject(_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"], {}, null, function filter(prop) {\n return /^is[A-Z]/.test(prop);\n});\n\n/**\n * Convert a data object to FormData\n *\n * @param {Object} obj\n * @param {?Object} [formData]\n * @param {?Object} [options]\n * @param {Function} [options.visitor]\n * @param {Boolean} [options.metaTokens = true]\n * @param {Boolean} [options.dots = false]\n * @param {?Boolean} [options.indexes = false]\n *\n * @returns {Object}\n **/\n\n/**\n * It converts an object into a FormData object\n *\n * @param {Object} obj - The object to convert to form data.\n * @param {string} formData - The FormData object to append to.\n * @param {Object} options\n *\n * @returns\n */\nfunction toFormData(obj, formData, options) {\n if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isObject(obj)) {\n throw new TypeError('target must be an object');\n }\n\n // eslint-disable-next-line no-param-reassign\n formData = formData || new (_platform_node_classes_FormData_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"] || FormData)();\n\n // eslint-disable-next-line no-param-reassign\n options = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].toFlatObject(options, {\n metaTokens: true,\n dots: false,\n indexes: false\n }, false, function defined(option, source) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n return !_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(source[option]);\n });\n\n const metaTokens = options.metaTokens;\n // eslint-disable-next-line no-use-before-define\n const visitor = options.visitor || defaultVisitor;\n const dots = options.dots;\n const indexes = options.indexes;\n const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob;\n const useBlob = _Blob && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isSpecCompliantForm(formData);\n\n if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFunction(visitor)) {\n throw new TypeError('visitor must be a function');\n }\n\n function convertValue(value) {\n if (value === null) return '';\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isDate(value)) {\n return value.toISOString();\n }\n\n if (!useBlob && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isBlob(value)) {\n throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]('Blob is not supported. Use a Buffer instead.');\n }\n\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArrayBuffer(value) || _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isTypedArray(value)) {\n return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);\n }\n\n return value;\n }\n\n /**\n * Default visitor.\n *\n * @param {*} value\n * @param {String|Number} key\n * @param {Array} path\n * @this {FormData}\n *\n * @returns {boolean} return true to visit the each prop of the value recursively\n */\n function defaultVisitor(value, key, path) {\n let arr = value;\n\n if (value && !path && typeof value === 'object') {\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].endsWith(key, '{}')) {\n // eslint-disable-next-line no-param-reassign\n key = metaTokens ? key : key.slice(0, -2);\n // eslint-disable-next-line no-param-reassign\n value = JSON.stringify(value);\n } else if (\n (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isArray(value) && isFlatArray(value)) ||\n ((_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isFileList(value) || _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].endsWith(key, '[]')) && (arr = _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].toArray(value))\n )) {\n // eslint-disable-next-line no-param-reassign\n key = removeBrackets(key);\n\n arr.forEach(function each(el, index) {\n !(_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(el) || el === null) && formData.append(\n // eslint-disable-next-line no-nested-ternary\n indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'),\n convertValue(el)\n );\n });\n return false;\n }\n }\n\n if (isVisitable(value)) {\n return true;\n }\n\n formData.append(renderKey(path, key, dots), convertValue(value));\n\n return false;\n }\n\n const stack = [];\n\n const exposedHelpers = Object.assign(predicates, {\n defaultVisitor,\n convertValue,\n isVisitable\n });\n\n function build(value, path) {\n if (_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(value)) return;\n\n if (stack.indexOf(value) !== -1) {\n throw Error('Circular reference detected in ' + path.join('.'));\n }\n\n stack.push(value);\n\n _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].forEach(value, function each(el, key) {\n const result = !(_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isUndefined(el) || el === null) && visitor.call(\n formData, el, _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isString(key) ? key.trim() : key, path, exposedHelpers\n );\n\n if (result === true) {\n build(el, path ? path.concat(key) : [key]);\n }\n });\n\n stack.pop();\n }\n\n if (!_utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isObject(obj)) {\n throw new TypeError('data must be an object');\n }\n\n build(obj);\n\n return formData;\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (toFormData);\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../buffer/index.js */ \"./node_modules/buffer/index.js\").Buffer))\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/toFormData.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/toURLEncodedForm.js": /*!************************************************************!*\ !*** ./node_modules/axios/lib/helpers/toURLEncodedForm.js ***! \************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return toURLEncodedForm; });\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ \"./node_modules/axios/lib/utils.js\");\n/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toFormData.js */ \"./node_modules/axios/lib/helpers/toFormData.js\");\n/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../platform/index.js */ \"./node_modules/axios/lib/platform/index.js\");\n\n\n\n\n\n\nfunction toURLEncodedForm(data, options) {\n return Object(_toFormData_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(data, new _platform_index_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"].classes.URLSearchParams(), Object.assign({\n visitor: function(value, key, path, helpers) {\n if (_platform_index_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"].isNode && _utils_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"].isBuffer(value)) {\n this.append(key, value.toString('base64'));\n return false;\n }\n\n return helpers.defaultVisitor.apply(this, arguments);\n }\n }, options));\n}\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/toURLEncodedForm.js?"); /***/ }), /***/ "./node_modules/axios/lib/helpers/validator.js": /*!*****************************************************!*\ !*** ./node_modules/axios/lib/helpers/validator.js ***! \*****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../env/data.js */ \"./node_modules/axios/lib/env/data.js\");\n/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ \"./node_modules/axios/lib/core/AxiosError.js\");\n\n\n\n\n\nconst validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nconst deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n *\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n *\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + _env_data_js__WEBPACK_IMPORTED_MODULE_0__[\"VERSION\"] + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return (value, opt, opts) => {\n if (validator === false) {\n throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"](\n formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')),\n _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"].ERR_DEPRECATED\n );\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n *\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n *\n * @returns {object}\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]('options must be an object', _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"].ERR_BAD_OPTION_VALUE);\n }\n const keys = Object.keys(options);\n let i = keys.length;\n while (i-- > 0) {\n const opt = keys[i];\n const validator = schema[opt];\n if (validator) {\n const value = options[opt];\n const result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]('option ' + opt + ' must be ' + result, _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"].ERR_BAD_OPTION_VALUE);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw new _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]('Unknown option ' + opt, _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"].ERR_BAD_OPTION);\n }\n }\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n assertOptions,\n validators\n});\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/helpers/validator.js?"); /***/ }), /***/ "./node_modules/axios/lib/platform/browser/classes/Blob.js": /*!*****************************************************************!*\ !*** ./node_modules/axios/lib/platform/browser/classes/Blob.js ***! \*****************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (typeof Blob !== 'undefined' ? Blob : null);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/platform/browser/classes/Blob.js?"); /***/ }), /***/ "./node_modules/axios/lib/platform/browser/classes/FormData.js": /*!*********************************************************************!*\ !*** ./node_modules/axios/lib/platform/browser/classes/FormData.js ***! \*********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (typeof FormData !== 'undefined' ? FormData : null);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/platform/browser/classes/FormData.js?"); /***/ }), /***/ "./node_modules/axios/lib/platform/browser/classes/URLSearchParams.js": /*!****************************************************************************!*\ !*** ./node_modules/axios/lib/platform/browser/classes/URLSearchParams.js ***! \****************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../helpers/AxiosURLSearchParams.js */ \"./node_modules/axios/lib/helpers/AxiosURLSearchParams.js\");\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (typeof URLSearchParams !== 'undefined' ? URLSearchParams : _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]);\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/platform/browser/classes/URLSearchParams.js?"); /***/ }), /***/ "./node_modules/axios/lib/platform/browser/index.js": /*!**********************************************************!*\ !*** ./node_modules/axios/lib/platform/browser/index.js ***! \**********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./classes/URLSearchParams.js */ \"./node_modules/axios/lib/platform/browser/classes/URLSearchParams.js\");\n/* harmony import */ var _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./classes/FormData.js */ \"./node_modules/axios/lib/platform/browser/classes/FormData.js\");\n/* harmony import */ var _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./classes/Blob.js */ \"./node_modules/axios/lib/platform/browser/classes/Blob.js\");\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n isBrowser: true,\n classes: {\n URLSearchParams: _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"],\n FormData: _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n Blob: _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"]\n },\n protocols: ['http', 'https', 'file', 'blob', 'url', 'data']\n});\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/platform/browser/index.js?"); /***/ }), /***/ "./node_modules/axios/lib/platform/common/utils.js": /*!*********************************************************!*\ !*** ./node_modules/axios/lib/platform/common/utils.js ***! \*********************************************************/ /*! exports provided: hasBrowserEnv, hasStandardBrowserWebWorkerEnv, hasStandardBrowserEnv */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasBrowserEnv\", function() { return hasBrowserEnv; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasStandardBrowserWebWorkerEnv\", function() { return hasStandardBrowserWebWorkerEnv; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasStandardBrowserEnv\", function() { return hasStandardBrowserEnv; });\nconst hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'undefined';\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n *\n * @returns {boolean}\n */\nconst hasStandardBrowserEnv = (\n (product) => {\n return hasBrowserEnv && ['ReactNative', 'NativeScript', 'NS'].indexOf(product) < 0\n })(typeof navigator !== 'undefined' && navigator.product);\n\n/**\n * Determine if we're running in a standard browser webWorker environment\n *\n * Although the `isStandardBrowserEnv` method indicates that\n * `allows axios to run in a web worker`, the WebWorker will still be\n * filtered out due to its judgment standard\n * `typeof window !== 'undefined' && typeof document !== 'undefined'`.\n * This leads to a problem when axios post `FormData` in webWorker\n */\nconst hasStandardBrowserWebWorkerEnv = (() => {\n return (\n typeof WorkerGlobalScope !== 'undefined' &&\n // eslint-disable-next-line no-undef\n self instanceof WorkerGlobalScope &&\n typeof self.importScripts === 'function'\n );\n})();\n\n\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/platform/common/utils.js?"); /***/ }), /***/ "./node_modules/axios/lib/platform/index.js": /*!**************************************************!*\ !*** ./node_modules/axios/lib/platform/index.js ***! \**************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node/index.js */ \"./node_modules/axios/lib/platform/browser/index.js\");\n/* harmony import */ var _common_utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./common/utils.js */ \"./node_modules/axios/lib/platform/common/utils.js\");\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n ..._common_utils_js__WEBPACK_IMPORTED_MODULE_1__,\n ..._node_index_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]\n});\n\n\n//# sourceURL=webpack:///./node_modules/axios/lib/platform/index.js?"); /***/ }), /***/ "./node_modules/axios/lib/utils.js": /*!*****************************************!*\ !*** ./node_modules/axios/lib/utils.js ***! \*****************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(global) {/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers/bind.js */ \"./node_modules/axios/lib/helpers/bind.js\");\n\n\n\n\n// utils is a library of generic helper functions non-specific to axios\n\nconst {toString} = Object.prototype;\nconst {getPrototypeOf} = Object;\n\nconst kindOf = (cache => thing => {\n const str = toString.call(thing);\n return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());\n})(Object.create(null));\n\nconst kindOfTest = (type) => {\n type = type.toLowerCase();\n return (thing) => kindOf(thing) === type\n}\n\nconst typeOfTest = type => thing => typeof thing === type;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n *\n * @returns {boolean} True if value is an Array, otherwise false\n */\nconst {isArray} = Array;\n\n/**\n * Determine if a value is undefined\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nconst isUndefined = typeOfTest('undefined');\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nconst isArrayBuffer = kindOfTest('ArrayBuffer');\n\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n let result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a String, otherwise false\n */\nconst isString = typeOfTest('string');\n\n/**\n * Determine if a value is a Function\n *\n * @param {*} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nconst isFunction = typeOfTest('function');\n\n/**\n * Determine if a value is a Number\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Number, otherwise false\n */\nconst isNumber = typeOfTest('number');\n\n/**\n * Determine if a value is an Object\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an Object, otherwise false\n */\nconst isObject = (thing) => thing !== null && typeof thing === 'object';\n\n/**\n * Determine if a value is a Boolean\n *\n * @param {*} thing The value to test\n * @returns {boolean} True if value is a Boolean, otherwise false\n */\nconst isBoolean = thing => thing === true || thing === false;\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a plain Object, otherwise false\n */\nconst isPlainObject = (val) => {\n if (kindOf(val) !== 'object') {\n return false;\n }\n\n const prototype = getPrototypeOf(val);\n return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in val) && !(Symbol.iterator in val);\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Date, otherwise false\n */\nconst isDate = kindOfTest('Date');\n\n/**\n * Determine if a value is a File\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFile = kindOfTest('File');\n\n/**\n * Determine if a value is a Blob\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nconst isBlob = kindOfTest('Blob');\n\n/**\n * Determine if a value is a FileList\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFileList = kindOfTest('FileList');\n\n/**\n * Determine if a value is a Stream\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nconst isStream = (val) => isObject(val) && isFunction(val.pipe);\n\n/**\n * Determine if a value is a FormData\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nconst isFormData = (thing) => {\n let kind;\n return thing && (\n (typeof FormData === 'function' && thing instanceof FormData) || (\n isFunction(thing.append) && (\n (kind = kindOf(thing)) === 'formdata' ||\n // detect form-data instance\n (kind === 'object' && isFunction(thing.toString) && thing.toString() === '[object FormData]')\n )\n )\n )\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nconst isURLSearchParams = kindOfTest('URLSearchParams');\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n *\n * @returns {String} The String freed of excess whitespace\n */\nconst trim = (str) => str.trim ?\n str.trim() : str.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, '');\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n *\n * @param {Boolean} [allOwnKeys = false]\n * @returns {any}\n */\nfunction forEach(obj, fn, {allOwnKeys = false} = {}) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n let i;\n let l;\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);\n const len = keys.length;\n let key;\n\n for (i = 0; i < len; i++) {\n key = keys[i];\n fn.call(null, obj[key], key, obj);\n }\n }\n}\n\nfunction findKey(obj, key) {\n key = key.toLowerCase();\n const keys = Object.keys(obj);\n let i = keys.length;\n let _key;\n while (i-- > 0) {\n _key = keys[i];\n if (key === _key.toLowerCase()) {\n return _key;\n }\n }\n return null;\n}\n\nconst _global = (() => {\n /*eslint no-undef:0*/\n if (typeof globalThis !== \"undefined\") return globalThis;\n return typeof self !== \"undefined\" ? self : (typeof window !== 'undefined' ? window : global)\n})();\n\nconst isContextDefined = (context) => !isUndefined(context) && context !== _global;\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n *\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n const {caseless} = isContextDefined(this) && this || {};\n const result = {};\n const assignValue = (val, key) => {\n const targetKey = caseless && findKey(result, key) || key;\n if (isPlainObject(result[targetKey]) && isPlainObject(val)) {\n result[targetKey] = merge(result[targetKey], val);\n } else if (isPlainObject(val)) {\n result[targetKey] = merge({}, val);\n } else if (isArray(val)) {\n result[targetKey] = val.slice();\n } else {\n result[targetKey] = val;\n }\n }\n\n for (let i = 0, l = arguments.length; i < l; i++) {\n arguments[i] && forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n *\n * @param {Boolean} [allOwnKeys]\n * @returns {Object} The resulting value of object a\n */\nconst extend = (a, b, thisArg, {allOwnKeys}= {}) => {\n forEach(b, (val, key) => {\n if (thisArg && isFunction(val)) {\n a[key] = Object(_helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(val, thisArg);\n } else {\n a[key] = val;\n }\n }, {allOwnKeys});\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n *\n * @returns {string} content value without BOM\n */\nconst stripBOM = (content) => {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\n/**\n * Inherit the prototype methods from one constructor into another\n * @param {function} constructor\n * @param {function} superConstructor\n * @param {object} [props]\n * @param {object} [descriptors]\n *\n * @returns {void}\n */\nconst inherits = (constructor, superConstructor, props, descriptors) => {\n constructor.prototype = Object.create(superConstructor.prototype, descriptors);\n constructor.prototype.constructor = constructor;\n Object.defineProperty(constructor, 'super', {\n value: superConstructor.prototype\n });\n props && Object.assign(constructor.prototype, props);\n}\n\n/**\n * Resolve object with deep prototype chain to a flat object\n * @param {Object} sourceObj source object\n * @param {Object} [destObj]\n * @param {Function|Boolean} [filter]\n * @param {Function} [propFilter]\n *\n * @returns {Object}\n */\nconst toFlatObject = (sourceObj, destObj, filter, propFilter) => {\n let props;\n let i;\n let prop;\n const merged = {};\n\n destObj = destObj || {};\n // eslint-disable-next-line no-eq-null,eqeqeq\n if (sourceObj == null) return destObj;\n\n do {\n props = Object.getOwnPropertyNames(sourceObj);\n i = props.length;\n while (i-- > 0) {\n prop = props[i];\n if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {\n destObj[prop] = sourceObj[prop];\n merged[prop] = true;\n }\n }\n sourceObj = filter !== false && getPrototypeOf(sourceObj);\n } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);\n\n return destObj;\n}\n\n/**\n * Determines whether a string ends with the characters of a specified string\n *\n * @param {String} str\n * @param {String} searchString\n * @param {Number} [position= 0]\n *\n * @returns {boolean}\n */\nconst endsWith = (str, searchString, position) => {\n str = String(str);\n if (position === undefined || position > str.length) {\n position = str.length;\n }\n position -= searchString.length;\n const lastIndex = str.indexOf(searchString, position);\n return lastIndex !== -1 && lastIndex === position;\n}\n\n\n/**\n * Returns new array from array like object or null if failed\n *\n * @param {*} [thing]\n *\n * @returns {?Array}\n */\nconst toArray = (thing) => {\n if (!thing) return null;\n if (isArray(thing)) return thing;\n let i = thing.length;\n if (!isNumber(i)) return null;\n const arr = new Array(i);\n while (i-- > 0) {\n arr[i] = thing[i];\n }\n return arr;\n}\n\n/**\n * Checking if the Uint8Array exists and if it does, it returns a function that checks if the\n * thing passed in is an instance of Uint8Array\n *\n * @param {TypedArray}\n *\n * @returns {Array}\n */\n// eslint-disable-next-line func-names\nconst isTypedArray = (TypedArray => {\n // eslint-disable-next-line func-names\n return thing => {\n return TypedArray && thing instanceof TypedArray;\n };\n})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));\n\n/**\n * For each entry in the object, call the function with the key and value.\n *\n * @param {Object} obj - The object to iterate over.\n * @param {Function} fn - The function to call for each entry.\n *\n * @returns {void}\n */\nconst forEachEntry = (obj, fn) => {\n const generator = obj && obj[Symbol.iterator];\n\n const iterator = generator.call(obj);\n\n let result;\n\n while ((result = iterator.next()) && !result.done) {\n const pair = result.value;\n fn.call(obj, pair[0], pair[1]);\n }\n}\n\n/**\n * It takes a regular expression and a string, and returns an array of all the matches\n *\n * @param {string} regExp - The regular expression to match against.\n * @param {string} str - The string to search.\n *\n * @returns {Array}\n */\nconst matchAll = (regExp, str) => {\n let matches;\n const arr = [];\n\n while ((matches = regExp.exec(str)) !== null) {\n arr.push(matches);\n }\n\n return arr;\n}\n\n/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */\nconst isHTMLForm = kindOfTest('HTMLFormElement');\n\nconst toCamelCase = str => {\n return str.toLowerCase().replace(/[-_\\s]([a-z\\d])(\\w*)/g,\n function replacer(m, p1, p2) {\n return p1.toUpperCase() + p2;\n }\n );\n};\n\n/* Creating a function that will check if an object has a property. */\nconst hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);\n\n/**\n * Determine if a value is a RegExp object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a RegExp object, otherwise false\n */\nconst isRegExp = kindOfTest('RegExp');\n\nconst reduceDescriptors = (obj, reducer) => {\n const descriptors = Object.getOwnPropertyDescriptors(obj);\n const reducedDescriptors = {};\n\n forEach(descriptors, (descriptor, name) => {\n let ret;\n if ((ret = reducer(descriptor, name, obj)) !== false) {\n reducedDescriptors[name] = ret || descriptor;\n }\n });\n\n Object.defineProperties(obj, reducedDescriptors);\n}\n\n/**\n * Makes all methods read-only\n * @param {Object} obj\n */\n\nconst freezeMethods = (obj) => {\n reduceDescriptors(obj, (descriptor, name) => {\n // skip restricted props in strict mode\n if (isFunction(obj) && ['arguments', 'caller', 'callee'].indexOf(name) !== -1) {\n return false;\n }\n\n const value = obj[name];\n\n if (!isFunction(value)) return;\n\n descriptor.enumerable = false;\n\n if ('writable' in descriptor) {\n descriptor.writable = false;\n return;\n }\n\n if (!descriptor.set) {\n descriptor.set = () => {\n throw Error('Can not rewrite read-only method \\'' + name + '\\'');\n };\n }\n });\n}\n\nconst toObjectSet = (arrayOrString, delimiter) => {\n const obj = {};\n\n const define = (arr) => {\n arr.forEach(value => {\n obj[value] = true;\n });\n }\n\n isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));\n\n return obj;\n}\n\nconst noop = () => {}\n\nconst toFiniteNumber = (value, defaultValue) => {\n value = +value;\n return Number.isFinite(value) ? value : defaultValue;\n}\n\nconst ALPHA = 'abcdefghijklmnopqrstuvwxyz'\n\nconst DIGIT = '0123456789';\n\nconst ALPHABET = {\n DIGIT,\n ALPHA,\n ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT\n}\n\nconst generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {\n let str = '';\n const {length} = alphabet;\n while (size--) {\n str += alphabet[Math.random() * length|0]\n }\n\n return str;\n}\n\n/**\n * If the thing is a FormData object, return true, otherwise return false.\n *\n * @param {unknown} thing - The thing to check.\n *\n * @returns {boolean}\n */\nfunction isSpecCompliantForm(thing) {\n return !!(thing && isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator]);\n}\n\nconst toJSONObject = (obj) => {\n const stack = new Array(10);\n\n const visit = (source, i) => {\n\n if (isObject(source)) {\n if (stack.indexOf(source) >= 0) {\n return;\n }\n\n if(!('toJSON' in source)) {\n stack[i] = source;\n const target = isArray(source) ? [] : {};\n\n forEach(source, (value, key) => {\n const reducedValue = visit(value, i + 1);\n !isUndefined(reducedValue) && (target[key] = reducedValue);\n });\n\n stack[i] = undefined;\n\n return target;\n }\n }\n\n return source;\n }\n\n return visit(obj, 0);\n}\n\nconst isAsyncFn = kindOfTest('AsyncFunction');\n\nconst isThenable = (thing) =>\n thing && (isObject(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n isArray,\n isArrayBuffer,\n isBuffer,\n isFormData,\n isArrayBufferView,\n isString,\n isNumber,\n isBoolean,\n isObject,\n isPlainObject,\n isUndefined,\n isDate,\n isFile,\n isBlob,\n isRegExp,\n isFunction,\n isStream,\n isURLSearchParams,\n isTypedArray,\n isFileList,\n forEach,\n merge,\n extend,\n trim,\n stripBOM,\n inherits,\n toFlatObject,\n kindOf,\n kindOfTest,\n endsWith,\n toArray,\n forEachEntry,\n matchAll,\n isHTMLForm,\n hasOwnProperty,\n hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection\n reduceDescriptors,\n freezeMethods,\n toObjectSet,\n toCamelCase,\n noop,\n toFiniteNumber,\n findKey,\n global: _global,\n isContextDefined,\n ALPHABET,\n generateString,\n isSpecCompliantForm,\n toJSONObject,\n isAsyncFn,\n isThenable\n});\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/axios/lib/utils.js?"); /***/ }), /***/ "./node_modules/base64-js/index.js": /*!*****************************************!*\ !*** ./node_modules/base64-js/index.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nexports.byteLength = byteLength\nexports.toByteArray = toByteArray\nexports.fromByteArray = fromByteArray\n\nvar lookup = []\nvar revLookup = []\nvar Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array\n\nvar code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'\nfor (var i = 0, len = code.length; i < len; ++i) {\n lookup[i] = code[i]\n revLookup[code.charCodeAt(i)] = i\n}\n\n// Support decoding URL-safe base64 strings, as Node.js does.\n// See: https://en.wikipedia.org/wiki/Base64#URL_applications\nrevLookup['-'.charCodeAt(0)] = 62\nrevLookup['_'.charCodeAt(0)] = 63\n\nfunction getLens (b64) {\n var len = b64.length\n\n if (len % 4 > 0) {\n throw new Error('Invalid string. Length must be a multiple of 4')\n }\n\n // Trim off extra bytes after placeholder bytes are found\n // See: https://github.com/beatgammit/base64-js/issues/42\n var validLen = b64.indexOf('=')\n if (validLen === -1) validLen = len\n\n var placeHoldersLen = validLen === len\n ? 0\n : 4 - (validLen % 4)\n\n return [validLen, placeHoldersLen]\n}\n\n// base64 is 4/3 + up to two characters of the original data\nfunction byteLength (b64) {\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction _byteLength (b64, validLen, placeHoldersLen) {\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction toByteArray (b64) {\n var tmp\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n\n var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen))\n\n var curByte = 0\n\n // if there are placeholders, only get up to the last complete 4 chars\n var len = placeHoldersLen > 0\n ? validLen - 4\n : validLen\n\n var i\n for (i = 0; i < len; i += 4) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 18) |\n (revLookup[b64.charCodeAt(i + 1)] << 12) |\n (revLookup[b64.charCodeAt(i + 2)] << 6) |\n revLookup[b64.charCodeAt(i + 3)]\n arr[curByte++] = (tmp >> 16) & 0xFF\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 2) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 2) |\n (revLookup[b64.charCodeAt(i + 1)] >> 4)\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 1) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 10) |\n (revLookup[b64.charCodeAt(i + 1)] << 4) |\n (revLookup[b64.charCodeAt(i + 2)] >> 2)\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n return arr\n}\n\nfunction tripletToBase64 (num) {\n return lookup[num >> 18 & 0x3F] +\n lookup[num >> 12 & 0x3F] +\n lookup[num >> 6 & 0x3F] +\n lookup[num & 0x3F]\n}\n\nfunction encodeChunk (uint8, start, end) {\n var tmp\n var output = []\n for (var i = start; i < end; i += 3) {\n tmp =\n ((uint8[i] << 16) & 0xFF0000) +\n ((uint8[i + 1] << 8) & 0xFF00) +\n (uint8[i + 2] & 0xFF)\n output.push(tripletToBase64(tmp))\n }\n return output.join('')\n}\n\nfunction fromByteArray (uint8) {\n var tmp\n var len = uint8.length\n var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes\n var parts = []\n var maxChunkLength = 16383 // must be multiple of 3\n\n // go through the array every three bytes, we'll deal with trailing stuff later\n for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {\n parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength)))\n }\n\n // pad the end with zeros, but make sure to not forget the extra bytes\n if (extraBytes === 1) {\n tmp = uint8[len - 1]\n parts.push(\n lookup[tmp >> 2] +\n lookup[(tmp << 4) & 0x3F] +\n '=='\n )\n } else if (extraBytes === 2) {\n tmp = (uint8[len - 2] << 8) + uint8[len - 1]\n parts.push(\n lookup[tmp >> 10] +\n lookup[(tmp >> 4) & 0x3F] +\n lookup[(tmp << 2) & 0x3F] +\n '='\n )\n }\n\n return parts.join('')\n}\n\n\n//# sourceURL=webpack:///./node_modules/base64-js/index.js?"); /***/ }), /***/ "./node_modules/bowser/es5.js": /*!************************************!*\ !*** ./node_modules/bowser/es5.js ***! \************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("!function(e,t){ true?module.exports=t():undefined}(this,(function(){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,\"a\",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p=\"\",r(r.s=90)}({17:function(e,t,r){\"use strict\";t.__esModule=!0,t.default=void 0;var n=r(18),i=function(){function e(){}return e.getFirstMatch=function(e,t){var r=t.match(e);return r&&r.length>0&&r[1]||\"\"},e.getSecondMatch=function(e,t){var r=t.match(e);return r&&r.length>1&&r[2]||\"\"},e.matchAndReturnConst=function(e,t,r){if(e.test(t))return r},e.getWindowsVersionName=function(e){switch(e){case\"NT\":return\"NT\";case\"XP\":return\"XP\";case\"NT 5.0\":return\"2000\";case\"NT 5.1\":return\"XP\";case\"NT 5.2\":return\"2003\";case\"NT 6.0\":return\"Vista\";case\"NT 6.1\":return\"7\";case\"NT 6.2\":return\"8\";case\"NT 6.3\":return\"8.1\";case\"NT 10.0\":return\"10\";default:return}},e.getMacOSVersionName=function(e){var t=e.split(\".\").splice(0,2).map((function(e){return parseInt(e,10)||0}));if(t.push(0),10===t[0])switch(t[1]){case 5:return\"Leopard\";case 6:return\"Snow Leopard\";case 7:return\"Lion\";case 8:return\"Mountain Lion\";case 9:return\"Mavericks\";case 10:return\"Yosemite\";case 11:return\"El Capitan\";case 12:return\"Sierra\";case 13:return\"High Sierra\";case 14:return\"Mojave\";case 15:return\"Catalina\";default:return}},e.getAndroidVersionName=function(e){var t=e.split(\".\").splice(0,2).map((function(e){return parseInt(e,10)||0}));if(t.push(0),!(1===t[0]&&t[1]<5))return 1===t[0]&&t[1]<6?\"Cupcake\":1===t[0]&&t[1]>=6?\"Donut\":2===t[0]&&t[1]<2?\"Eclair\":2===t[0]&&2===t[1]?\"Froyo\":2===t[0]&&t[1]>2?\"Gingerbread\":3===t[0]?\"Honeycomb\":4===t[0]&&t[1]<1?\"Ice Cream Sandwich\":4===t[0]&&t[1]<4?\"Jelly Bean\":4===t[0]&&t[1]>=4?\"KitKat\":5===t[0]?\"Lollipop\":6===t[0]?\"Marshmallow\":7===t[0]?\"Nougat\":8===t[0]?\"Oreo\":9===t[0]?\"Pie\":void 0},e.getVersionPrecision=function(e){return e.split(\".\").length},e.compareVersions=function(t,r,n){void 0===n&&(n=!1);var i=e.getVersionPrecision(t),s=e.getVersionPrecision(r),a=Math.max(i,s),o=0,u=e.map([t,r],(function(t){var r=a-e.getVersionPrecision(t),n=t+new Array(r+1).join(\".0\");return e.map(n.split(\".\"),(function(e){return new Array(20-e.length).join(\"0\")+e})).reverse()}));for(n&&(o=a-Math.min(i,s)),a-=1;a>=o;){if(u[0][a]>u[1][a])return 1;if(u[0][a]===u[1][a]){if(a===o)return 0;a-=1}else if(u[0][a]1?i-1:0),a=1;a0){var a=Object.keys(r),u=o.default.find(a,(function(e){return t.isOS(e)}));if(u){var d=this.satisfies(r[u]);if(void 0!==d)return d}var c=o.default.find(a,(function(e){return t.isPlatform(e)}));if(c){var f=this.satisfies(r[c]);if(void 0!==f)return f}}if(s>0){var l=Object.keys(i),h=o.default.find(l,(function(e){return t.isBrowser(e,!0)}));if(void 0!==h)return this.compareVersion(i[h])}},t.isBrowser=function(e,t){void 0===t&&(t=!1);var r=this.getBrowserName().toLowerCase(),n=e.toLowerCase(),i=o.default.getBrowserTypeByAlias(n);return t&&i&&(n=i.toLowerCase()),n===r},t.compareVersion=function(e){var t=[0],r=e,n=!1,i=this.getBrowserVersion();if(\"string\"==typeof i)return\">\"===e[0]||\"<\"===e[0]?(r=e.substr(1),\"=\"===e[1]?(n=!0,r=e.substr(2)):t=[],\">\"===e[0]?t.push(1):t.push(-1)):\"=\"===e[0]?r=e.substr(1):\"~\"===e[0]&&(n=!0,r=e.substr(1)),t.indexOf(o.default.compareVersions(i,r,n))>-1},t.isOS=function(e){return this.getOSName(!0)===String(e).toLowerCase()},t.isPlatform=function(e){return this.getPlatformType(!0)===String(e).toLowerCase()},t.isEngine=function(e){return this.getEngineName(!0)===String(e).toLowerCase()},t.is=function(e,t){return void 0===t&&(t=!1),this.isBrowser(e,t)||this.isOS(e)||this.isPlatform(e)},t.some=function(e){var t=this;return void 0===e&&(e=[]),e.some((function(e){return t.is(e)}))},e}();t.default=d,e.exports=t.default},92:function(e,t,r){\"use strict\";t.__esModule=!0,t.default=void 0;var n,i=(n=r(17))&&n.__esModule?n:{default:n};var s=/version\\/(\\d+(\\.?_?\\d+)+)/i,a=[{test:[/googlebot/i],describe:function(e){var t={name:\"Googlebot\"},r=i.default.getFirstMatch(/googlebot\\/(\\d+(\\.\\d+))/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/opera/i],describe:function(e){var t={name:\"Opera\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:opera)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/opr\\/|opios/i],describe:function(e){var t={name:\"Opera\"},r=i.default.getFirstMatch(/(?:opr|opios)[\\s/](\\S+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/SamsungBrowser/i],describe:function(e){var t={name:\"Samsung Internet for Android\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:SamsungBrowser)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/Whale/i],describe:function(e){var t={name:\"NAVER Whale Browser\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:whale)[\\s/](\\d+(?:\\.\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/MZBrowser/i],describe:function(e){var t={name:\"MZ Browser\"},r=i.default.getFirstMatch(/(?:MZBrowser)[\\s/](\\d+(?:\\.\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/focus/i],describe:function(e){var t={name:\"Focus\"},r=i.default.getFirstMatch(/(?:focus)[\\s/](\\d+(?:\\.\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/swing/i],describe:function(e){var t={name:\"Swing\"},r=i.default.getFirstMatch(/(?:swing)[\\s/](\\d+(?:\\.\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/coast/i],describe:function(e){var t={name:\"Opera Coast\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:coast)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/opt\\/\\d+(?:.?_?\\d+)+/i],describe:function(e){var t={name:\"Opera Touch\"},r=i.default.getFirstMatch(/(?:opt)[\\s/](\\d+(\\.?_?\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/yabrowser/i],describe:function(e){var t={name:\"Yandex Browser\"},r=i.default.getFirstMatch(/(?:yabrowser)[\\s/](\\d+(\\.?_?\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/ucbrowser/i],describe:function(e){var t={name:\"UC Browser\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:ucbrowser)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/Maxthon|mxios/i],describe:function(e){var t={name:\"Maxthon\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:Maxthon|mxios)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/epiphany/i],describe:function(e){var t={name:\"Epiphany\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:epiphany)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/puffin/i],describe:function(e){var t={name:\"Puffin\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:puffin)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/sleipnir/i],describe:function(e){var t={name:\"Sleipnir\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:sleipnir)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/k-meleon/i],describe:function(e){var t={name:\"K-Meleon\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/(?:k-meleon)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/micromessenger/i],describe:function(e){var t={name:\"WeChat\"},r=i.default.getFirstMatch(/(?:micromessenger)[\\s/](\\d+(\\.?_?\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/qqbrowser/i],describe:function(e){var t={name:/qqbrowserlite/i.test(e)?\"QQ Browser Lite\":\"QQ Browser\"},r=i.default.getFirstMatch(/(?:qqbrowserlite|qqbrowser)[/](\\d+(\\.?_?\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/msie|trident/i],describe:function(e){var t={name:\"Internet Explorer\"},r=i.default.getFirstMatch(/(?:msie |rv:)(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/\\sedg\\//i],describe:function(e){var t={name:\"Microsoft Edge\"},r=i.default.getFirstMatch(/\\sedg\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/edg([ea]|ios)/i],describe:function(e){var t={name:\"Microsoft Edge\"},r=i.default.getSecondMatch(/edg([ea]|ios)\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/vivaldi/i],describe:function(e){var t={name:\"Vivaldi\"},r=i.default.getFirstMatch(/vivaldi\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/seamonkey/i],describe:function(e){var t={name:\"SeaMonkey\"},r=i.default.getFirstMatch(/seamonkey\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/sailfish/i],describe:function(e){var t={name:\"Sailfish\"},r=i.default.getFirstMatch(/sailfish\\s?browser\\/(\\d+(\\.\\d+)?)/i,e);return r&&(t.version=r),t}},{test:[/silk/i],describe:function(e){var t={name:\"Amazon Silk\"},r=i.default.getFirstMatch(/silk\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/phantom/i],describe:function(e){var t={name:\"PhantomJS\"},r=i.default.getFirstMatch(/phantomjs\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/slimerjs/i],describe:function(e){var t={name:\"SlimerJS\"},r=i.default.getFirstMatch(/slimerjs\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/blackberry|\\bbb\\d+/i,/rim\\stablet/i],describe:function(e){var t={name:\"BlackBerry\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/blackberry[\\d]+\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/(web|hpw)[o0]s/i],describe:function(e){var t={name:\"WebOS Browser\"},r=i.default.getFirstMatch(s,e)||i.default.getFirstMatch(/w(?:eb)?[o0]sbrowser\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/bada/i],describe:function(e){var t={name:\"Bada\"},r=i.default.getFirstMatch(/dolfin\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/tizen/i],describe:function(e){var t={name:\"Tizen\"},r=i.default.getFirstMatch(/(?:tizen\\s?)?browser\\/(\\d+(\\.?_?\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/qupzilla/i],describe:function(e){var t={name:\"QupZilla\"},r=i.default.getFirstMatch(/(?:qupzilla)[\\s/](\\d+(\\.?_?\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/firefox|iceweasel|fxios/i],describe:function(e){var t={name:\"Firefox\"},r=i.default.getFirstMatch(/(?:firefox|iceweasel|fxios)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/electron/i],describe:function(e){var t={name:\"Electron\"},r=i.default.getFirstMatch(/(?:electron)\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/MiuiBrowser/i],describe:function(e){var t={name:\"Miui\"},r=i.default.getFirstMatch(/(?:MiuiBrowser)[\\s/](\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/chromium/i],describe:function(e){var t={name:\"Chromium\"},r=i.default.getFirstMatch(/(?:chromium)[\\s/](\\d+(\\.?_?\\d+)+)/i,e)||i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/chrome|crios|crmo/i],describe:function(e){var t={name:\"Chrome\"},r=i.default.getFirstMatch(/(?:chrome|crios|crmo)\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/GSA/i],describe:function(e){var t={name:\"Google Search\"},r=i.default.getFirstMatch(/(?:GSA)\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:function(e){var t=!e.test(/like android/i),r=e.test(/android/i);return t&&r},describe:function(e){var t={name:\"Android Browser\"},r=i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/playstation 4/i],describe:function(e){var t={name:\"PlayStation 4\"},r=i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/safari|applewebkit/i],describe:function(e){var t={name:\"Safari\"},r=i.default.getFirstMatch(s,e);return r&&(t.version=r),t}},{test:[/.*/i],describe:function(e){var t=-1!==e.search(\"\\\\(\")?/^(.*)\\/(.*)[ \\t]\\((.*)/:/^(.*)\\/(.*) /;return{name:i.default.getFirstMatch(t,e),version:i.default.getSecondMatch(t,e)}}}];t.default=a,e.exports=t.default},93:function(e,t,r){\"use strict\";t.__esModule=!0,t.default=void 0;var n,i=(n=r(17))&&n.__esModule?n:{default:n},s=r(18);var a=[{test:[/Roku\\/DVP/],describe:function(e){var t=i.default.getFirstMatch(/Roku\\/DVP-(\\d+\\.\\d+)/i,e);return{name:s.OS_MAP.Roku,version:t}}},{test:[/windows phone/i],describe:function(e){var t=i.default.getFirstMatch(/windows phone (?:os)?\\s?(\\d+(\\.\\d+)*)/i,e);return{name:s.OS_MAP.WindowsPhone,version:t}}},{test:[/windows /i],describe:function(e){var t=i.default.getFirstMatch(/Windows ((NT|XP)( \\d\\d?.\\d)?)/i,e),r=i.default.getWindowsVersionName(t);return{name:s.OS_MAP.Windows,version:t,versionName:r}}},{test:[/Macintosh(.*?) FxiOS(.*?)\\//],describe:function(e){var t={name:s.OS_MAP.iOS},r=i.default.getSecondMatch(/(Version\\/)(\\d[\\d.]+)/,e);return r&&(t.version=r),t}},{test:[/macintosh/i],describe:function(e){var t=i.default.getFirstMatch(/mac os x (\\d+(\\.?_?\\d+)+)/i,e).replace(/[_\\s]/g,\".\"),r=i.default.getMacOSVersionName(t),n={name:s.OS_MAP.MacOS,version:t};return r&&(n.versionName=r),n}},{test:[/(ipod|iphone|ipad)/i],describe:function(e){var t=i.default.getFirstMatch(/os (\\d+([_\\s]\\d+)*) like mac os x/i,e).replace(/[_\\s]/g,\".\");return{name:s.OS_MAP.iOS,version:t}}},{test:function(e){var t=!e.test(/like android/i),r=e.test(/android/i);return t&&r},describe:function(e){var t=i.default.getFirstMatch(/android[\\s/-](\\d+(\\.\\d+)*)/i,e),r=i.default.getAndroidVersionName(t),n={name:s.OS_MAP.Android,version:t};return r&&(n.versionName=r),n}},{test:[/(web|hpw)[o0]s/i],describe:function(e){var t=i.default.getFirstMatch(/(?:web|hpw)[o0]s\\/(\\d+(\\.\\d+)*)/i,e),r={name:s.OS_MAP.WebOS};return t&&t.length&&(r.version=t),r}},{test:[/blackberry|\\bbb\\d+/i,/rim\\stablet/i],describe:function(e){var t=i.default.getFirstMatch(/rim\\stablet\\sos\\s(\\d+(\\.\\d+)*)/i,e)||i.default.getFirstMatch(/blackberry\\d+\\/(\\d+([_\\s]\\d+)*)/i,e)||i.default.getFirstMatch(/\\bbb(\\d+)/i,e);return{name:s.OS_MAP.BlackBerry,version:t}}},{test:[/bada/i],describe:function(e){var t=i.default.getFirstMatch(/bada\\/(\\d+(\\.\\d+)*)/i,e);return{name:s.OS_MAP.Bada,version:t}}},{test:[/tizen/i],describe:function(e){var t=i.default.getFirstMatch(/tizen[/\\s](\\d+(\\.\\d+)*)/i,e);return{name:s.OS_MAP.Tizen,version:t}}},{test:[/linux/i],describe:function(){return{name:s.OS_MAP.Linux}}},{test:[/CrOS/],describe:function(){return{name:s.OS_MAP.ChromeOS}}},{test:[/PlayStation 4/],describe:function(e){var t=i.default.getFirstMatch(/PlayStation 4[/\\s](\\d+(\\.\\d+)*)/i,e);return{name:s.OS_MAP.PlayStation4,version:t}}}];t.default=a,e.exports=t.default},94:function(e,t,r){\"use strict\";t.__esModule=!0,t.default=void 0;var n,i=(n=r(17))&&n.__esModule?n:{default:n},s=r(18);var a=[{test:[/googlebot/i],describe:function(){return{type:\"bot\",vendor:\"Google\"}}},{test:[/huawei/i],describe:function(e){var t=i.default.getFirstMatch(/(can-l01)/i,e)&&\"Nova\",r={type:s.PLATFORMS_MAP.mobile,vendor:\"Huawei\"};return t&&(r.model=t),r}},{test:[/nexus\\s*(?:7|8|9|10).*/i],describe:function(){return{type:s.PLATFORMS_MAP.tablet,vendor:\"Nexus\"}}},{test:[/ipad/i],describe:function(){return{type:s.PLATFORMS_MAP.tablet,vendor:\"Apple\",model:\"iPad\"}}},{test:[/Macintosh(.*?) FxiOS(.*?)\\//],describe:function(){return{type:s.PLATFORMS_MAP.tablet,vendor:\"Apple\",model:\"iPad\"}}},{test:[/kftt build/i],describe:function(){return{type:s.PLATFORMS_MAP.tablet,vendor:\"Amazon\",model:\"Kindle Fire HD 7\"}}},{test:[/silk/i],describe:function(){return{type:s.PLATFORMS_MAP.tablet,vendor:\"Amazon\"}}},{test:[/tablet(?! pc)/i],describe:function(){return{type:s.PLATFORMS_MAP.tablet}}},{test:function(e){var t=e.test(/ipod|iphone/i),r=e.test(/like (ipod|iphone)/i);return t&&!r},describe:function(e){var t=i.default.getFirstMatch(/(ipod|iphone)/i,e);return{type:s.PLATFORMS_MAP.mobile,vendor:\"Apple\",model:t}}},{test:[/nexus\\s*[0-6].*/i,/galaxy nexus/i],describe:function(){return{type:s.PLATFORMS_MAP.mobile,vendor:\"Nexus\"}}},{test:[/[^-]mobi/i],describe:function(){return{type:s.PLATFORMS_MAP.mobile}}},{test:function(e){return\"blackberry\"===e.getBrowserName(!0)},describe:function(){return{type:s.PLATFORMS_MAP.mobile,vendor:\"BlackBerry\"}}},{test:function(e){return\"bada\"===e.getBrowserName(!0)},describe:function(){return{type:s.PLATFORMS_MAP.mobile}}},{test:function(e){return\"windows phone\"===e.getBrowserName()},describe:function(){return{type:s.PLATFORMS_MAP.mobile,vendor:\"Microsoft\"}}},{test:function(e){var t=Number(String(e.getOSVersion()).split(\".\")[0]);return\"android\"===e.getOSName(!0)&&t>=3},describe:function(){return{type:s.PLATFORMS_MAP.tablet}}},{test:function(e){return\"android\"===e.getOSName(!0)},describe:function(){return{type:s.PLATFORMS_MAP.mobile}}},{test:function(e){return\"macos\"===e.getOSName(!0)},describe:function(){return{type:s.PLATFORMS_MAP.desktop,vendor:\"Apple\"}}},{test:function(e){return\"windows\"===e.getOSName(!0)},describe:function(){return{type:s.PLATFORMS_MAP.desktop}}},{test:function(e){return\"linux\"===e.getOSName(!0)},describe:function(){return{type:s.PLATFORMS_MAP.desktop}}},{test:function(e){return\"playstation 4\"===e.getOSName(!0)},describe:function(){return{type:s.PLATFORMS_MAP.tv}}},{test:function(e){return\"roku\"===e.getOSName(!0)},describe:function(){return{type:s.PLATFORMS_MAP.tv}}}];t.default=a,e.exports=t.default},95:function(e,t,r){\"use strict\";t.__esModule=!0,t.default=void 0;var n,i=(n=r(17))&&n.__esModule?n:{default:n},s=r(18);var a=[{test:function(e){return\"microsoft edge\"===e.getBrowserName(!0)},describe:function(e){if(/\\sedg\\//i.test(e))return{name:s.ENGINE_MAP.Blink};var t=i.default.getFirstMatch(/edge\\/(\\d+(\\.?_?\\d+)+)/i,e);return{name:s.ENGINE_MAP.EdgeHTML,version:t}}},{test:[/trident/i],describe:function(e){var t={name:s.ENGINE_MAP.Trident},r=i.default.getFirstMatch(/trident\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:function(e){return e.test(/presto/i)},describe:function(e){var t={name:s.ENGINE_MAP.Presto},r=i.default.getFirstMatch(/presto\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:function(e){var t=e.test(/gecko/i),r=e.test(/like gecko/i);return t&&!r},describe:function(e){var t={name:s.ENGINE_MAP.Gecko},r=i.default.getFirstMatch(/gecko\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}},{test:[/(apple)?webkit\\/537\\.36/i],describe:function(){return{name:s.ENGINE_MAP.Blink}}},{test:[/(apple)?webkit/i],describe:function(e){var t={name:s.ENGINE_MAP.WebKit},r=i.default.getFirstMatch(/webkit\\/(\\d+(\\.?_?\\d+)+)/i,e);return r&&(t.version=r),t}}];t.default=a,e.exports=t.default}})}));\n\n//# sourceURL=webpack:///./node_modules/bowser/es5.js?"); /***/ }), /***/ "./node_modules/buffer/index.js": /*!**************************************!*\ !*** ./node_modules/buffer/index.js ***! \**************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/* WEBPACK VAR INJECTION */(function(global) {/*!\n * The buffer module from node.js, for the browser.\n *\n * @author Feross Aboukhadijeh \n * @license MIT\n */\n/* eslint-disable no-proto */\n\n\n\nvar base64 = __webpack_require__(/*! base64-js */ \"./node_modules/base64-js/index.js\")\nvar ieee754 = __webpack_require__(/*! ieee754 */ \"./node_modules/ieee754/index.js\")\nvar isArray = __webpack_require__(/*! isarray */ \"./node_modules/isarray/index.js\")\n\nexports.Buffer = Buffer\nexports.SlowBuffer = SlowBuffer\nexports.INSPECT_MAX_BYTES = 50\n\n/**\n * If `Buffer.TYPED_ARRAY_SUPPORT`:\n * === true Use Uint8Array implementation (fastest)\n * === false Use Object implementation (most compatible, even IE6)\n *\n * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,\n * Opera 11.6+, iOS 4.2+.\n *\n * Due to various browser bugs, sometimes the Object implementation will be used even\n * when the browser supports typed arrays.\n *\n * Note:\n *\n * - Firefox 4-29 lacks support for adding new properties to `Uint8Array` instances,\n * See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438.\n *\n * - Chrome 9-10 is missing the `TypedArray.prototype.subarray` function.\n *\n * - IE10 has a broken `TypedArray.prototype.subarray` function which returns arrays of\n * incorrect length in some situations.\n\n * We detect these buggy browsers and set `Buffer.TYPED_ARRAY_SUPPORT` to `false` so they\n * get the Object implementation, which is slower but behaves correctly.\n */\nBuffer.TYPED_ARRAY_SUPPORT = global.TYPED_ARRAY_SUPPORT !== undefined\n ? global.TYPED_ARRAY_SUPPORT\n : typedArraySupport()\n\n/*\n * Export kMaxLength after typed array support is determined.\n */\nexports.kMaxLength = kMaxLength()\n\nfunction typedArraySupport () {\n try {\n var arr = new Uint8Array(1)\n arr.__proto__ = {__proto__: Uint8Array.prototype, foo: function () { return 42 }}\n return arr.foo() === 42 && // typed array instances can be augmented\n typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray`\n arr.subarray(1, 1).byteLength === 0 // ie10 has broken `subarray`\n } catch (e) {\n return false\n }\n}\n\nfunction kMaxLength () {\n return Buffer.TYPED_ARRAY_SUPPORT\n ? 0x7fffffff\n : 0x3fffffff\n}\n\nfunction createBuffer (that, length) {\n if (kMaxLength() < length) {\n throw new RangeError('Invalid typed array length')\n }\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n // Return an augmented `Uint8Array` instance, for best performance\n that = new Uint8Array(length)\n that.__proto__ = Buffer.prototype\n } else {\n // Fallback: Return an object instance of the Buffer class\n if (that === null) {\n that = new Buffer(length)\n }\n that.length = length\n }\n\n return that\n}\n\n/**\n * The Buffer constructor returns instances of `Uint8Array` that have their\n * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of\n * `Uint8Array`, so the returned instances will have all the node `Buffer` methods\n * and the `Uint8Array` methods. Square bracket notation works as expected -- it\n * returns a single octet.\n *\n * The `Uint8Array` prototype remains unmodified.\n */\n\nfunction Buffer (arg, encodingOrOffset, length) {\n if (!Buffer.TYPED_ARRAY_SUPPORT && !(this instanceof Buffer)) {\n return new Buffer(arg, encodingOrOffset, length)\n }\n\n // Common case.\n if (typeof arg === 'number') {\n if (typeof encodingOrOffset === 'string') {\n throw new Error(\n 'If encoding is specified then the first argument must be a string'\n )\n }\n return allocUnsafe(this, arg)\n }\n return from(this, arg, encodingOrOffset, length)\n}\n\nBuffer.poolSize = 8192 // not used by this implementation\n\n// TODO: Legacy, not needed anymore. Remove in next major version.\nBuffer._augment = function (arr) {\n arr.__proto__ = Buffer.prototype\n return arr\n}\n\nfunction from (that, value, encodingOrOffset, length) {\n if (typeof value === 'number') {\n throw new TypeError('\"value\" argument must not be a number')\n }\n\n if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) {\n return fromArrayBuffer(that, value, encodingOrOffset, length)\n }\n\n if (typeof value === 'string') {\n return fromString(that, value, encodingOrOffset)\n }\n\n return fromObject(that, value)\n}\n\n/**\n * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError\n * if value is a number.\n * Buffer.from(str[, encoding])\n * Buffer.from(array)\n * Buffer.from(buffer)\n * Buffer.from(arrayBuffer[, byteOffset[, length]])\n **/\nBuffer.from = function (value, encodingOrOffset, length) {\n return from(null, value, encodingOrOffset, length)\n}\n\nif (Buffer.TYPED_ARRAY_SUPPORT) {\n Buffer.prototype.__proto__ = Uint8Array.prototype\n Buffer.__proto__ = Uint8Array\n if (typeof Symbol !== 'undefined' && Symbol.species &&\n Buffer[Symbol.species] === Buffer) {\n // Fix subarray() in ES2016. See: https://github.com/feross/buffer/pull/97\n Object.defineProperty(Buffer, Symbol.species, {\n value: null,\n configurable: true\n })\n }\n}\n\nfunction assertSize (size) {\n if (typeof size !== 'number') {\n throw new TypeError('\"size\" argument must be a number')\n } else if (size < 0) {\n throw new RangeError('\"size\" argument must not be negative')\n }\n}\n\nfunction alloc (that, size, fill, encoding) {\n assertSize(size)\n if (size <= 0) {\n return createBuffer(that, size)\n }\n if (fill !== undefined) {\n // Only pay attention to encoding if it's a string. This\n // prevents accidentally sending in a number that would\n // be interpretted as a start offset.\n return typeof encoding === 'string'\n ? createBuffer(that, size).fill(fill, encoding)\n : createBuffer(that, size).fill(fill)\n }\n return createBuffer(that, size)\n}\n\n/**\n * Creates a new filled Buffer instance.\n * alloc(size[, fill[, encoding]])\n **/\nBuffer.alloc = function (size, fill, encoding) {\n return alloc(null, size, fill, encoding)\n}\n\nfunction allocUnsafe (that, size) {\n assertSize(size)\n that = createBuffer(that, size < 0 ? 0 : checked(size) | 0)\n if (!Buffer.TYPED_ARRAY_SUPPORT) {\n for (var i = 0; i < size; ++i) {\n that[i] = 0\n }\n }\n return that\n}\n\n/**\n * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.\n * */\nBuffer.allocUnsafe = function (size) {\n return allocUnsafe(null, size)\n}\n/**\n * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.\n */\nBuffer.allocUnsafeSlow = function (size) {\n return allocUnsafe(null, size)\n}\n\nfunction fromString (that, string, encoding) {\n if (typeof encoding !== 'string' || encoding === '') {\n encoding = 'utf8'\n }\n\n if (!Buffer.isEncoding(encoding)) {\n throw new TypeError('\"encoding\" must be a valid string encoding')\n }\n\n var length = byteLength(string, encoding) | 0\n that = createBuffer(that, length)\n\n var actual = that.write(string, encoding)\n\n if (actual !== length) {\n // Writing a hex string, for example, that contains invalid characters will\n // cause everything after the first invalid character to be ignored. (e.g.\n // 'abxxcd' will be treated as 'ab')\n that = that.slice(0, actual)\n }\n\n return that\n}\n\nfunction fromArrayLike (that, array) {\n var length = array.length < 0 ? 0 : checked(array.length) | 0\n that = createBuffer(that, length)\n for (var i = 0; i < length; i += 1) {\n that[i] = array[i] & 255\n }\n return that\n}\n\nfunction fromArrayBuffer (that, array, byteOffset, length) {\n array.byteLength // this throws if `array` is not a valid ArrayBuffer\n\n if (byteOffset < 0 || array.byteLength < byteOffset) {\n throw new RangeError('\\'offset\\' is out of bounds')\n }\n\n if (array.byteLength < byteOffset + (length || 0)) {\n throw new RangeError('\\'length\\' is out of bounds')\n }\n\n if (byteOffset === undefined && length === undefined) {\n array = new Uint8Array(array)\n } else if (length === undefined) {\n array = new Uint8Array(array, byteOffset)\n } else {\n array = new Uint8Array(array, byteOffset, length)\n }\n\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n // Return an augmented `Uint8Array` instance, for best performance\n that = array\n that.__proto__ = Buffer.prototype\n } else {\n // Fallback: Return an object instance of the Buffer class\n that = fromArrayLike(that, array)\n }\n return that\n}\n\nfunction fromObject (that, obj) {\n if (Buffer.isBuffer(obj)) {\n var len = checked(obj.length) | 0\n that = createBuffer(that, len)\n\n if (that.length === 0) {\n return that\n }\n\n obj.copy(that, 0, 0, len)\n return that\n }\n\n if (obj) {\n if ((typeof ArrayBuffer !== 'undefined' &&\n obj.buffer instanceof ArrayBuffer) || 'length' in obj) {\n if (typeof obj.length !== 'number' || isnan(obj.length)) {\n return createBuffer(that, 0)\n }\n return fromArrayLike(that, obj)\n }\n\n if (obj.type === 'Buffer' && isArray(obj.data)) {\n return fromArrayLike(that, obj.data)\n }\n }\n\n throw new TypeError('First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.')\n}\n\nfunction checked (length) {\n // Note: cannot use `length < kMaxLength()` here because that fails when\n // length is NaN (which is otherwise coerced to zero.)\n if (length >= kMaxLength()) {\n throw new RangeError('Attempt to allocate Buffer larger than maximum ' +\n 'size: 0x' + kMaxLength().toString(16) + ' bytes')\n }\n return length | 0\n}\n\nfunction SlowBuffer (length) {\n if (+length != length) { // eslint-disable-line eqeqeq\n length = 0\n }\n return Buffer.alloc(+length)\n}\n\nBuffer.isBuffer = function isBuffer (b) {\n return !!(b != null && b._isBuffer)\n}\n\nBuffer.compare = function compare (a, b) {\n if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {\n throw new TypeError('Arguments must be Buffers')\n }\n\n if (a === b) return 0\n\n var x = a.length\n var y = b.length\n\n for (var i = 0, len = Math.min(x, y); i < len; ++i) {\n if (a[i] !== b[i]) {\n x = a[i]\n y = b[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\nBuffer.isEncoding = function isEncoding (encoding) {\n switch (String(encoding).toLowerCase()) {\n case 'hex':\n case 'utf8':\n case 'utf-8':\n case 'ascii':\n case 'latin1':\n case 'binary':\n case 'base64':\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return true\n default:\n return false\n }\n}\n\nBuffer.concat = function concat (list, length) {\n if (!isArray(list)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n }\n\n if (list.length === 0) {\n return Buffer.alloc(0)\n }\n\n var i\n if (length === undefined) {\n length = 0\n for (i = 0; i < list.length; ++i) {\n length += list[i].length\n }\n }\n\n var buffer = Buffer.allocUnsafe(length)\n var pos = 0\n for (i = 0; i < list.length; ++i) {\n var buf = list[i]\n if (!Buffer.isBuffer(buf)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n }\n buf.copy(buffer, pos)\n pos += buf.length\n }\n return buffer\n}\n\nfunction byteLength (string, encoding) {\n if (Buffer.isBuffer(string)) {\n return string.length\n }\n if (typeof ArrayBuffer !== 'undefined' && typeof ArrayBuffer.isView === 'function' &&\n (ArrayBuffer.isView(string) || string instanceof ArrayBuffer)) {\n return string.byteLength\n }\n if (typeof string !== 'string') {\n string = '' + string\n }\n\n var len = string.length\n if (len === 0) return 0\n\n // Use a for loop to avoid recursion\n var loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'ascii':\n case 'latin1':\n case 'binary':\n return len\n case 'utf8':\n case 'utf-8':\n case undefined:\n return utf8ToBytes(string).length\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return len * 2\n case 'hex':\n return len >>> 1\n case 'base64':\n return base64ToBytes(string).length\n default:\n if (loweredCase) return utf8ToBytes(string).length // assume utf8\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\nBuffer.byteLength = byteLength\n\nfunction slowToString (encoding, start, end) {\n var loweredCase = false\n\n // No need to verify that \"this.length <= MAX_UINT32\" since it's a read-only\n // property of a typed array.\n\n // This behaves neither like String nor Uint8Array in that we set start/end\n // to their upper/lower bounds if the value passed is out of range.\n // undefined is handled specially as per ECMA-262 6th Edition,\n // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.\n if (start === undefined || start < 0) {\n start = 0\n }\n // Return early if start > this.length. Done here to prevent potential uint32\n // coercion fail below.\n if (start > this.length) {\n return ''\n }\n\n if (end === undefined || end > this.length) {\n end = this.length\n }\n\n if (end <= 0) {\n return ''\n }\n\n // Force coersion to uint32. This will also coerce falsey/NaN values to 0.\n end >>>= 0\n start >>>= 0\n\n if (end <= start) {\n return ''\n }\n\n if (!encoding) encoding = 'utf8'\n\n while (true) {\n switch (encoding) {\n case 'hex':\n return hexSlice(this, start, end)\n\n case 'utf8':\n case 'utf-8':\n return utf8Slice(this, start, end)\n\n case 'ascii':\n return asciiSlice(this, start, end)\n\n case 'latin1':\n case 'binary':\n return latin1Slice(this, start, end)\n\n case 'base64':\n return base64Slice(this, start, end)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return utf16leSlice(this, start, end)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = (encoding + '').toLowerCase()\n loweredCase = true\n }\n }\n}\n\n// The property is used by `Buffer.isBuffer` and `is-buffer` (in Safari 5-7) to detect\n// Buffer instances.\nBuffer.prototype._isBuffer = true\n\nfunction swap (b, n, m) {\n var i = b[n]\n b[n] = b[m]\n b[m] = i\n}\n\nBuffer.prototype.swap16 = function swap16 () {\n var len = this.length\n if (len % 2 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 16-bits')\n }\n for (var i = 0; i < len; i += 2) {\n swap(this, i, i + 1)\n }\n return this\n}\n\nBuffer.prototype.swap32 = function swap32 () {\n var len = this.length\n if (len % 4 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 32-bits')\n }\n for (var i = 0; i < len; i += 4) {\n swap(this, i, i + 3)\n swap(this, i + 1, i + 2)\n }\n return this\n}\n\nBuffer.prototype.swap64 = function swap64 () {\n var len = this.length\n if (len % 8 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 64-bits')\n }\n for (var i = 0; i < len; i += 8) {\n swap(this, i, i + 7)\n swap(this, i + 1, i + 6)\n swap(this, i + 2, i + 5)\n swap(this, i + 3, i + 4)\n }\n return this\n}\n\nBuffer.prototype.toString = function toString () {\n var length = this.length | 0\n if (length === 0) return ''\n if (arguments.length === 0) return utf8Slice(this, 0, length)\n return slowToString.apply(this, arguments)\n}\n\nBuffer.prototype.equals = function equals (b) {\n if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')\n if (this === b) return true\n return Buffer.compare(this, b) === 0\n}\n\nBuffer.prototype.inspect = function inspect () {\n var str = ''\n var max = exports.INSPECT_MAX_BYTES\n if (this.length > 0) {\n str = this.toString('hex', 0, max).match(/.{2}/g).join(' ')\n if (this.length > max) str += ' ... '\n }\n return ''\n}\n\nBuffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) {\n if (!Buffer.isBuffer(target)) {\n throw new TypeError('Argument must be a Buffer')\n }\n\n if (start === undefined) {\n start = 0\n }\n if (end === undefined) {\n end = target ? target.length : 0\n }\n if (thisStart === undefined) {\n thisStart = 0\n }\n if (thisEnd === undefined) {\n thisEnd = this.length\n }\n\n if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {\n throw new RangeError('out of range index')\n }\n\n if (thisStart >= thisEnd && start >= end) {\n return 0\n }\n if (thisStart >= thisEnd) {\n return -1\n }\n if (start >= end) {\n return 1\n }\n\n start >>>= 0\n end >>>= 0\n thisStart >>>= 0\n thisEnd >>>= 0\n\n if (this === target) return 0\n\n var x = thisEnd - thisStart\n var y = end - start\n var len = Math.min(x, y)\n\n var thisCopy = this.slice(thisStart, thisEnd)\n var targetCopy = target.slice(start, end)\n\n for (var i = 0; i < len; ++i) {\n if (thisCopy[i] !== targetCopy[i]) {\n x = thisCopy[i]\n y = targetCopy[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\n// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,\n// OR the last index of `val` in `buffer` at offset <= `byteOffset`.\n//\n// Arguments:\n// - buffer - a Buffer to search\n// - val - a string, Buffer, or number\n// - byteOffset - an index into `buffer`; will be clamped to an int32\n// - encoding - an optional encoding, relevant is val is a string\n// - dir - true for indexOf, false for lastIndexOf\nfunction bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {\n // Empty buffer means no match\n if (buffer.length === 0) return -1\n\n // Normalize byteOffset\n if (typeof byteOffset === 'string') {\n encoding = byteOffset\n byteOffset = 0\n } else if (byteOffset > 0x7fffffff) {\n byteOffset = 0x7fffffff\n } else if (byteOffset < -0x80000000) {\n byteOffset = -0x80000000\n }\n byteOffset = +byteOffset // Coerce to Number.\n if (isNaN(byteOffset)) {\n // byteOffset: it it's undefined, null, NaN, \"foo\", etc, search whole buffer\n byteOffset = dir ? 0 : (buffer.length - 1)\n }\n\n // Normalize byteOffset: negative offsets start from the end of the buffer\n if (byteOffset < 0) byteOffset = buffer.length + byteOffset\n if (byteOffset >= buffer.length) {\n if (dir) return -1\n else byteOffset = buffer.length - 1\n } else if (byteOffset < 0) {\n if (dir) byteOffset = 0\n else return -1\n }\n\n // Normalize val\n if (typeof val === 'string') {\n val = Buffer.from(val, encoding)\n }\n\n // Finally, search either indexOf (if dir is true) or lastIndexOf\n if (Buffer.isBuffer(val)) {\n // Special case: looking for empty string/buffer always fails\n if (val.length === 0) {\n return -1\n }\n return arrayIndexOf(buffer, val, byteOffset, encoding, dir)\n } else if (typeof val === 'number') {\n val = val & 0xFF // Search for a byte value [0-255]\n if (Buffer.TYPED_ARRAY_SUPPORT &&\n typeof Uint8Array.prototype.indexOf === 'function') {\n if (dir) {\n return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset)\n } else {\n return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset)\n }\n }\n return arrayIndexOf(buffer, [ val ], byteOffset, encoding, dir)\n }\n\n throw new TypeError('val must be string, number or Buffer')\n}\n\nfunction arrayIndexOf (arr, val, byteOffset, encoding, dir) {\n var indexSize = 1\n var arrLength = arr.length\n var valLength = val.length\n\n if (encoding !== undefined) {\n encoding = String(encoding).toLowerCase()\n if (encoding === 'ucs2' || encoding === 'ucs-2' ||\n encoding === 'utf16le' || encoding === 'utf-16le') {\n if (arr.length < 2 || val.length < 2) {\n return -1\n }\n indexSize = 2\n arrLength /= 2\n valLength /= 2\n byteOffset /= 2\n }\n }\n\n function read (buf, i) {\n if (indexSize === 1) {\n return buf[i]\n } else {\n return buf.readUInt16BE(i * indexSize)\n }\n }\n\n var i\n if (dir) {\n var foundIndex = -1\n for (i = byteOffset; i < arrLength; i++) {\n if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {\n if (foundIndex === -1) foundIndex = i\n if (i - foundIndex + 1 === valLength) return foundIndex * indexSize\n } else {\n if (foundIndex !== -1) i -= i - foundIndex\n foundIndex = -1\n }\n }\n } else {\n if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength\n for (i = byteOffset; i >= 0; i--) {\n var found = true\n for (var j = 0; j < valLength; j++) {\n if (read(arr, i + j) !== read(val, j)) {\n found = false\n break\n }\n }\n if (found) return i\n }\n }\n\n return -1\n}\n\nBuffer.prototype.includes = function includes (val, byteOffset, encoding) {\n return this.indexOf(val, byteOffset, encoding) !== -1\n}\n\nBuffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, true)\n}\n\nBuffer.prototype.lastIndexOf = function lastIndexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, false)\n}\n\nfunction hexWrite (buf, string, offset, length) {\n offset = Number(offset) || 0\n var remaining = buf.length - offset\n if (!length) {\n length = remaining\n } else {\n length = Number(length)\n if (length > remaining) {\n length = remaining\n }\n }\n\n // must be an even number of digits\n var strLen = string.length\n if (strLen % 2 !== 0) throw new TypeError('Invalid hex string')\n\n if (length > strLen / 2) {\n length = strLen / 2\n }\n for (var i = 0; i < length; ++i) {\n var parsed = parseInt(string.substr(i * 2, 2), 16)\n if (isNaN(parsed)) return i\n buf[offset + i] = parsed\n }\n return i\n}\n\nfunction utf8Write (buf, string, offset, length) {\n return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nfunction asciiWrite (buf, string, offset, length) {\n return blitBuffer(asciiToBytes(string), buf, offset, length)\n}\n\nfunction latin1Write (buf, string, offset, length) {\n return asciiWrite(buf, string, offset, length)\n}\n\nfunction base64Write (buf, string, offset, length) {\n return blitBuffer(base64ToBytes(string), buf, offset, length)\n}\n\nfunction ucs2Write (buf, string, offset, length) {\n return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nBuffer.prototype.write = function write (string, offset, length, encoding) {\n // Buffer#write(string)\n if (offset === undefined) {\n encoding = 'utf8'\n length = this.length\n offset = 0\n // Buffer#write(string, encoding)\n } else if (length === undefined && typeof offset === 'string') {\n encoding = offset\n length = this.length\n offset = 0\n // Buffer#write(string, offset[, length][, encoding])\n } else if (isFinite(offset)) {\n offset = offset | 0\n if (isFinite(length)) {\n length = length | 0\n if (encoding === undefined) encoding = 'utf8'\n } else {\n encoding = length\n length = undefined\n }\n // legacy write(string, encoding, offset, length) - remove in v0.13\n } else {\n throw new Error(\n 'Buffer.write(string, encoding, offset[, length]) is no longer supported'\n )\n }\n\n var remaining = this.length - offset\n if (length === undefined || length > remaining) length = remaining\n\n if ((string.length > 0 && (length < 0 || offset < 0)) || offset > this.length) {\n throw new RangeError('Attempt to write outside buffer bounds')\n }\n\n if (!encoding) encoding = 'utf8'\n\n var loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'hex':\n return hexWrite(this, string, offset, length)\n\n case 'utf8':\n case 'utf-8':\n return utf8Write(this, string, offset, length)\n\n case 'ascii':\n return asciiWrite(this, string, offset, length)\n\n case 'latin1':\n case 'binary':\n return latin1Write(this, string, offset, length)\n\n case 'base64':\n // Warning: maxLength not taken into account in base64Write\n return base64Write(this, string, offset, length)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return ucs2Write(this, string, offset, length)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\n\nBuffer.prototype.toJSON = function toJSON () {\n return {\n type: 'Buffer',\n data: Array.prototype.slice.call(this._arr || this, 0)\n }\n}\n\nfunction base64Slice (buf, start, end) {\n if (start === 0 && end === buf.length) {\n return base64.fromByteArray(buf)\n } else {\n return base64.fromByteArray(buf.slice(start, end))\n }\n}\n\nfunction utf8Slice (buf, start, end) {\n end = Math.min(buf.length, end)\n var res = []\n\n var i = start\n while (i < end) {\n var firstByte = buf[i]\n var codePoint = null\n var bytesPerSequence = (firstByte > 0xEF) ? 4\n : (firstByte > 0xDF) ? 3\n : (firstByte > 0xBF) ? 2\n : 1\n\n if (i + bytesPerSequence <= end) {\n var secondByte, thirdByte, fourthByte, tempCodePoint\n\n switch (bytesPerSequence) {\n case 1:\n if (firstByte < 0x80) {\n codePoint = firstByte\n }\n break\n case 2:\n secondByte = buf[i + 1]\n if ((secondByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0x1F) << 0x6 | (secondByte & 0x3F)\n if (tempCodePoint > 0x7F) {\n codePoint = tempCodePoint\n }\n }\n break\n case 3:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F)\n if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {\n codePoint = tempCodePoint\n }\n }\n break\n case 4:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n fourthByte = buf[i + 3]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | (fourthByte & 0x3F)\n if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {\n codePoint = tempCodePoint\n }\n }\n }\n }\n\n if (codePoint === null) {\n // we did not generate a valid codePoint so insert a\n // replacement char (U+FFFD) and advance only 1 byte\n codePoint = 0xFFFD\n bytesPerSequence = 1\n } else if (codePoint > 0xFFFF) {\n // encode to utf16 (surrogate pair dance)\n codePoint -= 0x10000\n res.push(codePoint >>> 10 & 0x3FF | 0xD800)\n codePoint = 0xDC00 | codePoint & 0x3FF\n }\n\n res.push(codePoint)\n i += bytesPerSequence\n }\n\n return decodeCodePointsArray(res)\n}\n\n// Based on http://stackoverflow.com/a/22747272/680742, the browser with\n// the lowest limit is Chrome, with 0x10000 args.\n// We go 1 magnitude less, for safety\nvar MAX_ARGUMENTS_LENGTH = 0x1000\n\nfunction decodeCodePointsArray (codePoints) {\n var len = codePoints.length\n if (len <= MAX_ARGUMENTS_LENGTH) {\n return String.fromCharCode.apply(String, codePoints) // avoid extra slice()\n }\n\n // Decode in chunks to avoid \"call stack size exceeded\".\n var res = ''\n var i = 0\n while (i < len) {\n res += String.fromCharCode.apply(\n String,\n codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)\n )\n }\n return res\n}\n\nfunction asciiSlice (buf, start, end) {\n var ret = ''\n end = Math.min(buf.length, end)\n\n for (var i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i] & 0x7F)\n }\n return ret\n}\n\nfunction latin1Slice (buf, start, end) {\n var ret = ''\n end = Math.min(buf.length, end)\n\n for (var i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i])\n }\n return ret\n}\n\nfunction hexSlice (buf, start, end) {\n var len = buf.length\n\n if (!start || start < 0) start = 0\n if (!end || end < 0 || end > len) end = len\n\n var out = ''\n for (var i = start; i < end; ++i) {\n out += toHex(buf[i])\n }\n return out\n}\n\nfunction utf16leSlice (buf, start, end) {\n var bytes = buf.slice(start, end)\n var res = ''\n for (var i = 0; i < bytes.length; i += 2) {\n res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256)\n }\n return res\n}\n\nBuffer.prototype.slice = function slice (start, end) {\n var len = this.length\n start = ~~start\n end = end === undefined ? len : ~~end\n\n if (start < 0) {\n start += len\n if (start < 0) start = 0\n } else if (start > len) {\n start = len\n }\n\n if (end < 0) {\n end += len\n if (end < 0) end = 0\n } else if (end > len) {\n end = len\n }\n\n if (end < start) end = start\n\n var newBuf\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n newBuf = this.subarray(start, end)\n newBuf.__proto__ = Buffer.prototype\n } else {\n var sliceLen = end - start\n newBuf = new Buffer(sliceLen, undefined)\n for (var i = 0; i < sliceLen; ++i) {\n newBuf[i] = this[i + start]\n }\n }\n\n return newBuf\n}\n\n/*\n * Need to make sure that buffer isn't trying to write out of bounds.\n */\nfunction checkOffset (offset, ext, length) {\n if ((offset % 1) !== 0 || offset < 0) throw new RangeError('offset is not uint')\n if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length')\n}\n\nBuffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) {\n offset = offset | 0\n byteLength = byteLength | 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var val = this[offset]\n var mul = 1\n var i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) {\n offset = offset | 0\n byteLength = byteLength | 0\n if (!noAssert) {\n checkOffset(offset, byteLength, this.length)\n }\n\n var val = this[offset + --byteLength]\n var mul = 1\n while (byteLength > 0 && (mul *= 0x100)) {\n val += this[offset + --byteLength] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 1, this.length)\n return this[offset]\n}\n\nBuffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 2, this.length)\n return this[offset] | (this[offset + 1] << 8)\n}\n\nBuffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 2, this.length)\n return (this[offset] << 8) | this[offset + 1]\n}\n\nBuffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return ((this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16)) +\n (this[offset + 3] * 0x1000000)\n}\n\nBuffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] * 0x1000000) +\n ((this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n this[offset + 3])\n}\n\nBuffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) {\n offset = offset | 0\n byteLength = byteLength | 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var val = this[offset]\n var mul = 1\n var i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) {\n offset = offset | 0\n byteLength = byteLength | 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var i = byteLength\n var mul = 1\n var val = this[offset + --i]\n while (i > 0 && (mul *= 0x100)) {\n val += this[offset + --i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readInt8 = function readInt8 (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 1, this.length)\n if (!(this[offset] & 0x80)) return (this[offset])\n return ((0xff - this[offset] + 1) * -1)\n}\n\nBuffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 2, this.length)\n var val = this[offset] | (this[offset + 1] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 2, this.length)\n var val = this[offset + 1] | (this[offset] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16) |\n (this[offset + 3] << 24)\n}\n\nBuffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] << 24) |\n (this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n (this[offset + 3])\n}\n\nBuffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, true, 23, 4)\n}\n\nBuffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, false, 23, 4)\n}\n\nBuffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, true, 52, 8)\n}\n\nBuffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) {\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, false, 52, 8)\n}\n\nfunction checkInt (buf, value, offset, ext, max, min) {\n if (!Buffer.isBuffer(buf)) throw new TypeError('\"buffer\" argument must be a Buffer instance')\n if (value > max || value < min) throw new RangeError('\"value\" argument is out of bounds')\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n}\n\nBuffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset | 0\n byteLength = byteLength | 0\n if (!noAssert) {\n var maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n var mul = 1\n var i = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset | 0\n byteLength = byteLength | 0\n if (!noAssert) {\n var maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n var i = byteLength - 1\n var mul = 1\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0)\n if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value)\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nfunction objectWriteUInt16 (buf, value, offset, littleEndian) {\n if (value < 0) value = 0xffff + value + 1\n for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; ++i) {\n buf[offset + i] = (value & (0xff << (8 * (littleEndian ? i : 1 - i)))) >>>\n (littleEndian ? i : 1 - i) * 8\n }\n}\n\nBuffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n } else {\n objectWriteUInt16(this, value, offset, true)\n }\n return offset + 2\n}\n\nBuffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n } else {\n objectWriteUInt16(this, value, offset, false)\n }\n return offset + 2\n}\n\nfunction objectWriteUInt32 (buf, value, offset, littleEndian) {\n if (value < 0) value = 0xffffffff + value + 1\n for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; ++i) {\n buf[offset + i] = (value >>> (littleEndian ? i : 3 - i) * 8) & 0xff\n }\n}\n\nBuffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n this[offset + 3] = (value >>> 24)\n this[offset + 2] = (value >>> 16)\n this[offset + 1] = (value >>> 8)\n this[offset] = (value & 0xff)\n } else {\n objectWriteUInt32(this, value, offset, true)\n }\n return offset + 4\n}\n\nBuffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n } else {\n objectWriteUInt32(this, value, offset, false)\n }\n return offset + 4\n}\n\nBuffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) {\n var limit = Math.pow(2, 8 * byteLength - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n var i = 0\n var mul = 1\n var sub = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) {\n var limit = Math.pow(2, 8 * byteLength - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n var i = byteLength - 1\n var mul = 1\n var sub = 0\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80)\n if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value)\n if (value < 0) value = 0xff + value + 1\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nBuffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n } else {\n objectWriteUInt16(this, value, offset, true)\n }\n return offset + 2\n}\n\nBuffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n } else {\n objectWriteUInt16(this, value, offset, false)\n }\n return offset + 2\n}\n\nBuffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n this[offset + 2] = (value >>> 16)\n this[offset + 3] = (value >>> 24)\n } else {\n objectWriteUInt32(this, value, offset, true)\n }\n return offset + 4\n}\n\nBuffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset | 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n if (value < 0) value = 0xffffffff + value + 1\n if (Buffer.TYPED_ARRAY_SUPPORT) {\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n } else {\n objectWriteUInt32(this, value, offset, false)\n }\n return offset + 4\n}\n\nfunction checkIEEE754 (buf, value, offset, ext, max, min) {\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n if (offset < 0) throw new RangeError('Index out of range')\n}\n\nfunction writeFloat (buf, value, offset, littleEndian, noAssert) {\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38)\n }\n ieee754.write(buf, value, offset, littleEndian, 23, 4)\n return offset + 4\n}\n\nBuffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) {\n return writeFloat(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) {\n return writeFloat(this, value, offset, false, noAssert)\n}\n\nfunction writeDouble (buf, value, offset, littleEndian, noAssert) {\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308)\n }\n ieee754.write(buf, value, offset, littleEndian, 52, 8)\n return offset + 8\n}\n\nBuffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) {\n return writeDouble(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) {\n return writeDouble(this, value, offset, false, noAssert)\n}\n\n// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)\nBuffer.prototype.copy = function copy (target, targetStart, start, end) {\n if (!start) start = 0\n if (!end && end !== 0) end = this.length\n if (targetStart >= target.length) targetStart = target.length\n if (!targetStart) targetStart = 0\n if (end > 0 && end < start) end = start\n\n // Copy 0 bytes; we're done\n if (end === start) return 0\n if (target.length === 0 || this.length === 0) return 0\n\n // Fatal error conditions\n if (targetStart < 0) {\n throw new RangeError('targetStart out of bounds')\n }\n if (start < 0 || start >= this.length) throw new RangeError('sourceStart out of bounds')\n if (end < 0) throw new RangeError('sourceEnd out of bounds')\n\n // Are we oob?\n if (end > this.length) end = this.length\n if (target.length - targetStart < end - start) {\n end = target.length - targetStart + start\n }\n\n var len = end - start\n var i\n\n if (this === target && start < targetStart && targetStart < end) {\n // descending copy from end\n for (i = len - 1; i >= 0; --i) {\n target[i + targetStart] = this[i + start]\n }\n } else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) {\n // ascending copy from start\n for (i = 0; i < len; ++i) {\n target[i + targetStart] = this[i + start]\n }\n } else {\n Uint8Array.prototype.set.call(\n target,\n this.subarray(start, start + len),\n targetStart\n )\n }\n\n return len\n}\n\n// Usage:\n// buffer.fill(number[, offset[, end]])\n// buffer.fill(buffer[, offset[, end]])\n// buffer.fill(string[, offset[, end]][, encoding])\nBuffer.prototype.fill = function fill (val, start, end, encoding) {\n // Handle string cases:\n if (typeof val === 'string') {\n if (typeof start === 'string') {\n encoding = start\n start = 0\n end = this.length\n } else if (typeof end === 'string') {\n encoding = end\n end = this.length\n }\n if (val.length === 1) {\n var code = val.charCodeAt(0)\n if (code < 256) {\n val = code\n }\n }\n if (encoding !== undefined && typeof encoding !== 'string') {\n throw new TypeError('encoding must be a string')\n }\n if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {\n throw new TypeError('Unknown encoding: ' + encoding)\n }\n } else if (typeof val === 'number') {\n val = val & 255\n }\n\n // Invalid ranges are not set to a default, so can range check early.\n if (start < 0 || this.length < start || this.length < end) {\n throw new RangeError('Out of range index')\n }\n\n if (end <= start) {\n return this\n }\n\n start = start >>> 0\n end = end === undefined ? this.length : end >>> 0\n\n if (!val) val = 0\n\n var i\n if (typeof val === 'number') {\n for (i = start; i < end; ++i) {\n this[i] = val\n }\n } else {\n var bytes = Buffer.isBuffer(val)\n ? val\n : utf8ToBytes(new Buffer(val, encoding).toString())\n var len = bytes.length\n for (i = 0; i < end - start; ++i) {\n this[i + start] = bytes[i % len]\n }\n }\n\n return this\n}\n\n// HELPER FUNCTIONS\n// ================\n\nvar INVALID_BASE64_RE = /[^+\\/0-9A-Za-z-_]/g\n\nfunction base64clean (str) {\n // Node strips out invalid characters like \\n and \\t from the string, base64-js does not\n str = stringtrim(str).replace(INVALID_BASE64_RE, '')\n // Node converts strings with length < 2 to ''\n if (str.length < 2) return ''\n // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not\n while (str.length % 4 !== 0) {\n str = str + '='\n }\n return str\n}\n\nfunction stringtrim (str) {\n if (str.trim) return str.trim()\n return str.replace(/^\\s+|\\s+$/g, '')\n}\n\nfunction toHex (n) {\n if (n < 16) return '0' + n.toString(16)\n return n.toString(16)\n}\n\nfunction utf8ToBytes (string, units) {\n units = units || Infinity\n var codePoint\n var length = string.length\n var leadSurrogate = null\n var bytes = []\n\n for (var i = 0; i < length; ++i) {\n codePoint = string.charCodeAt(i)\n\n // is surrogate component\n if (codePoint > 0xD7FF && codePoint < 0xE000) {\n // last char was a lead\n if (!leadSurrogate) {\n // no lead yet\n if (codePoint > 0xDBFF) {\n // unexpected trail\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n } else if (i + 1 === length) {\n // unpaired lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n }\n\n // valid lead\n leadSurrogate = codePoint\n\n continue\n }\n\n // 2 leads in a row\n if (codePoint < 0xDC00) {\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n leadSurrogate = codePoint\n continue\n }\n\n // valid surrogate pair\n codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000\n } else if (leadSurrogate) {\n // valid bmp char, but last char was a lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n }\n\n leadSurrogate = null\n\n // encode utf8\n if (codePoint < 0x80) {\n if ((units -= 1) < 0) break\n bytes.push(codePoint)\n } else if (codePoint < 0x800) {\n if ((units -= 2) < 0) break\n bytes.push(\n codePoint >> 0x6 | 0xC0,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x10000) {\n if ((units -= 3) < 0) break\n bytes.push(\n codePoint >> 0xC | 0xE0,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x110000) {\n if ((units -= 4) < 0) break\n bytes.push(\n codePoint >> 0x12 | 0xF0,\n codePoint >> 0xC & 0x3F | 0x80,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else {\n throw new Error('Invalid code point')\n }\n }\n\n return bytes\n}\n\nfunction asciiToBytes (str) {\n var byteArray = []\n for (var i = 0; i < str.length; ++i) {\n // Node's code seems to be doing this and not & 0x7F..\n byteArray.push(str.charCodeAt(i) & 0xFF)\n }\n return byteArray\n}\n\nfunction utf16leToBytes (str, units) {\n var c, hi, lo\n var byteArray = []\n for (var i = 0; i < str.length; ++i) {\n if ((units -= 2) < 0) break\n\n c = str.charCodeAt(i)\n hi = c >> 8\n lo = c % 256\n byteArray.push(lo)\n byteArray.push(hi)\n }\n\n return byteArray\n}\n\nfunction base64ToBytes (str) {\n return base64.toByteArray(base64clean(str))\n}\n\nfunction blitBuffer (src, dst, offset, length) {\n for (var i = 0; i < length; ++i) {\n if ((i + offset >= dst.length) || (i >= src.length)) break\n dst[i + offset] = src[i]\n }\n return i\n}\n\nfunction isnan (val) {\n return val !== val // eslint-disable-line no-self-compare\n}\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/buffer/index.js?"); /***/ }), /***/ "./node_modules/call-bind/callBound.js": /*!*********************************************!*\ !*** ./node_modules/call-bind/callBound.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar GetIntrinsic = __webpack_require__(/*! get-intrinsic */ \"./node_modules/get-intrinsic/index.js\");\n\nvar callBind = __webpack_require__(/*! ./ */ \"./node_modules/call-bind/index.js\");\n\nvar $indexOf = callBind(GetIntrinsic('String.prototype.indexOf'));\n\nmodule.exports = function callBoundIntrinsic(name, allowMissing) {\n\tvar intrinsic = GetIntrinsic(name, !!allowMissing);\n\tif (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) {\n\t\treturn callBind(intrinsic);\n\t}\n\treturn intrinsic;\n};\n\n\n//# sourceURL=webpack:///./node_modules/call-bind/callBound.js?"); /***/ }), /***/ "./node_modules/call-bind/index.js": /*!*****************************************!*\ !*** ./node_modules/call-bind/index.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar bind = __webpack_require__(/*! function-bind */ \"./node_modules/function-bind/index.js\");\nvar GetIntrinsic = __webpack_require__(/*! get-intrinsic */ \"./node_modules/get-intrinsic/index.js\");\nvar setFunctionLength = __webpack_require__(/*! set-function-length */ \"./node_modules/set-function-length/index.js\");\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $apply = GetIntrinsic('%Function.prototype.apply%');\nvar $call = GetIntrinsic('%Function.prototype.call%');\nvar $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply);\n\nvar $defineProperty = GetIntrinsic('%Object.defineProperty%', true);\nvar $max = GetIntrinsic('%Math.max%');\n\nif ($defineProperty) {\n\ttry {\n\t\t$defineProperty({}, 'a', { value: 1 });\n\t} catch (e) {\n\t\t// IE 8 has a broken defineProperty\n\t\t$defineProperty = null;\n\t}\n}\n\nmodule.exports = function callBind(originalFunction) {\n\tif (typeof originalFunction !== 'function') {\n\t\tthrow new $TypeError('a function is required');\n\t}\n\tvar func = $reflectApply(bind, $call, arguments);\n\treturn setFunctionLength(\n\t\tfunc,\n\t\t1 + $max(0, originalFunction.length - (arguments.length - 1)),\n\t\ttrue\n\t);\n};\n\nvar applyBind = function applyBind() {\n\treturn $reflectApply(bind, $apply, arguments);\n};\n\nif ($defineProperty) {\n\t$defineProperty(module.exports, 'apply', { value: applyBind });\n} else {\n\tmodule.exports.apply = applyBind;\n}\n\n\n//# sourceURL=webpack:///./node_modules/call-bind/index.js?"); /***/ }), /***/ "./node_modules/camelcase-keys/index.js": /*!**********************************************!*\ !*** ./node_modules/camelcase-keys/index.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nconst mapObj = __webpack_require__(/*! map-obj */ \"./node_modules/map-obj/index.js\");\nconst camelCase = __webpack_require__(/*! camelcase */ \"./node_modules/camelcase-keys/node_modules/camelcase/index.js\");\nconst QuickLru = __webpack_require__(/*! quick-lru */ \"./node_modules/quick-lru/index.js\");\n\nconst has = (array, key) => array.some(x => {\n\tif (typeof x === 'string') {\n\t\treturn x === key;\n\t}\n\n\tx.lastIndex = 0;\n\treturn x.test(key);\n});\n\nconst cache = new QuickLru({maxSize: 100000});\n\n// Reproduces behavior from `map-obj`\nconst isObject = value =>\n\ttypeof value === 'object' &&\n\tvalue !== null &&\n\t!(value instanceof RegExp) &&\n\t!(value instanceof Error) &&\n\t!(value instanceof Date);\n\nconst camelCaseConvert = (input, options) => {\n\tif (!isObject(input)) {\n\t\treturn input;\n\t}\n\n\toptions = {\n\t\tdeep: false,\n\t\tpascalCase: false,\n\t\t...options\n\t};\n\n\tconst {exclude, pascalCase, stopPaths, deep} = options;\n\n\tconst stopPathsSet = new Set(stopPaths);\n\n\tconst makeMapper = parentPath => (key, value) => {\n\t\tif (deep && isObject(value)) {\n\t\t\tconst path = parentPath === undefined ? key : `${parentPath}.${key}`;\n\n\t\t\tif (!stopPathsSet.has(path)) {\n\t\t\t\tvalue = mapObj(value, makeMapper(path));\n\t\t\t}\n\t\t}\n\n\t\tif (!(exclude && has(exclude, key))) {\n\t\t\tconst cacheKey = pascalCase ? `${key}_` : key;\n\n\t\t\tif (cache.has(cacheKey)) {\n\t\t\t\tkey = cache.get(cacheKey);\n\t\t\t} else {\n\t\t\t\tconst ret = camelCase(key, {pascalCase});\n\n\t\t\t\tif (key.length < 100) { // Prevent abuse\n\t\t\t\t\tcache.set(cacheKey, ret);\n\t\t\t\t}\n\n\t\t\t\tkey = ret;\n\t\t\t}\n\t\t}\n\n\t\treturn [key, value];\n\t};\n\n\treturn mapObj(input, makeMapper(undefined));\n};\n\nmodule.exports = (input, options) => {\n\tif (Array.isArray(input)) {\n\t\treturn Object.keys(input).map(key => camelCaseConvert(input[key], options));\n\t}\n\n\treturn camelCaseConvert(input, options);\n};\n\n\n//# sourceURL=webpack:///./node_modules/camelcase-keys/index.js?"); /***/ }), /***/ "./node_modules/camelcase-keys/node_modules/camelcase/index.js": /*!*********************************************************************!*\ !*** ./node_modules/camelcase-keys/node_modules/camelcase/index.js ***! \*********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nconst preserveCamelCase = string => {\n\tlet isLastCharLower = false;\n\tlet isLastCharUpper = false;\n\tlet isLastLastCharUpper = false;\n\n\tfor (let i = 0; i < string.length; i++) {\n\t\tconst character = string[i];\n\n\t\tif (isLastCharLower && /[a-zA-Z]/.test(character) && character.toUpperCase() === character) {\n\t\t\tstring = string.slice(0, i) + '-' + string.slice(i);\n\t\t\tisLastCharLower = false;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = true;\n\t\t\ti++;\n\t\t} else if (isLastCharUpper && isLastLastCharUpper && /[a-zA-Z]/.test(character) && character.toLowerCase() === character) {\n\t\t\tstring = string.slice(0, i - 1) + '-' + string.slice(i - 1);\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = false;\n\t\t\tisLastCharLower = true;\n\t\t} else {\n\t\t\tisLastCharLower = character.toLowerCase() === character && character.toUpperCase() !== character;\n\t\t\tisLastLastCharUpper = isLastCharUpper;\n\t\t\tisLastCharUpper = character.toUpperCase() === character && character.toLowerCase() !== character;\n\t\t}\n\t}\n\n\treturn string;\n};\n\nconst camelCase = (input, options) => {\n\tif (!(typeof input === 'string' || Array.isArray(input))) {\n\t\tthrow new TypeError('Expected the input to be `string | string[]`');\n\t}\n\n\toptions = Object.assign({\n\t\tpascalCase: false\n\t}, options);\n\n\tconst postProcess = x => options.pascalCase ? x.charAt(0).toUpperCase() + x.slice(1) : x;\n\n\tif (Array.isArray(input)) {\n\t\tinput = input.map(x => x.trim())\n\t\t\t.filter(x => x.length)\n\t\t\t.join('-');\n\t} else {\n\t\tinput = input.trim();\n\t}\n\n\tif (input.length === 0) {\n\t\treturn '';\n\t}\n\n\tif (input.length === 1) {\n\t\treturn options.pascalCase ? input.toUpperCase() : input.toLowerCase();\n\t}\n\n\tconst hasUpperCase = input !== input.toLowerCase();\n\n\tif (hasUpperCase) {\n\t\tinput = preserveCamelCase(input);\n\t}\n\n\tinput = input\n\t\t.replace(/^[_.\\- ]+/, '')\n\t\t.toLowerCase()\n\t\t.replace(/[_.\\- ]+(\\w|$)/g, (_, p1) => p1.toUpperCase())\n\t\t.replace(/\\d+(\\w|$)/g, m => m.toUpperCase());\n\n\treturn postProcess(input);\n};\n\nmodule.exports = camelCase;\n// TODO: Remove this for the next major release\nmodule.exports.default = camelCase;\n\n\n//# sourceURL=webpack:///./node_modules/camelcase-keys/node_modules/camelcase/index.js?"); /***/ }), /***/ "./node_modules/cookie/index.js": /*!**************************************!*\ !*** ./node_modules/cookie/index.js ***! \**************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/*!\n * cookie\n * Copyright(c) 2012-2014 Roman Shtylman\n * Copyright(c) 2015 Douglas Christopher Wilson\n * MIT Licensed\n */\n\n\n\n/**\n * Module exports.\n * @public\n */\n\nexports.parse = parse;\nexports.serialize = serialize;\n\n/**\n * Module variables.\n * @private\n */\n\nvar decode = decodeURIComponent;\nvar encode = encodeURIComponent;\n\n/**\n * RegExp to match field-content in RFC 7230 sec 3.2\n *\n * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]\n * field-vchar = VCHAR / obs-text\n * obs-text = %x80-FF\n */\n\nvar fieldContentRegExp = /^[\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+$/;\n\n/**\n * Parse a cookie header.\n *\n * Parse the given cookie header string into an object\n * The object has the various cookies as keys(names) => values\n *\n * @param {string} str\n * @param {object} [options]\n * @return {object}\n * @public\n */\n\nfunction parse(str, options) {\n if (typeof str !== 'string') {\n throw new TypeError('argument str must be a string');\n }\n\n var obj = {}\n var opt = options || {};\n var pairs = str.split(';')\n var dec = opt.decode || decode;\n\n for (var i = 0; i < pairs.length; i++) {\n var pair = pairs[i];\n var index = pair.indexOf('=')\n\n // skip things that don't look like key=value\n if (index < 0) {\n continue;\n }\n\n var key = pair.substring(0, index).trim()\n\n // only assign once\n if (undefined == obj[key]) {\n var val = pair.substring(index + 1, pair.length).trim()\n\n // quoted values\n if (val[0] === '\"') {\n val = val.slice(1, -1)\n }\n\n obj[key] = tryDecode(val, dec);\n }\n }\n\n return obj;\n}\n\n/**\n * Serialize data into a cookie header.\n *\n * Serialize the a name value pair into a cookie string suitable for\n * http headers. An optional options object specified cookie parameters.\n *\n * serialize('foo', 'bar', { httpOnly: true })\n * => \"foo=bar; httpOnly\"\n *\n * @param {string} name\n * @param {string} val\n * @param {object} [options]\n * @return {string}\n * @public\n */\n\nfunction serialize(name, val, options) {\n var opt = options || {};\n var enc = opt.encode || encode;\n\n if (typeof enc !== 'function') {\n throw new TypeError('option encode is invalid');\n }\n\n if (!fieldContentRegExp.test(name)) {\n throw new TypeError('argument name is invalid');\n }\n\n var value = enc(val);\n\n if (value && !fieldContentRegExp.test(value)) {\n throw new TypeError('argument val is invalid');\n }\n\n var str = name + '=' + value;\n\n if (null != opt.maxAge) {\n var maxAge = opt.maxAge - 0;\n\n if (isNaN(maxAge) || !isFinite(maxAge)) {\n throw new TypeError('option maxAge is invalid')\n }\n\n str += '; Max-Age=' + Math.floor(maxAge);\n }\n\n if (opt.domain) {\n if (!fieldContentRegExp.test(opt.domain)) {\n throw new TypeError('option domain is invalid');\n }\n\n str += '; Domain=' + opt.domain;\n }\n\n if (opt.path) {\n if (!fieldContentRegExp.test(opt.path)) {\n throw new TypeError('option path is invalid');\n }\n\n str += '; Path=' + opt.path;\n }\n\n if (opt.expires) {\n if (typeof opt.expires.toUTCString !== 'function') {\n throw new TypeError('option expires is invalid');\n }\n\n str += '; Expires=' + opt.expires.toUTCString();\n }\n\n if (opt.httpOnly) {\n str += '; HttpOnly';\n }\n\n if (opt.secure) {\n str += '; Secure';\n }\n\n if (opt.sameSite) {\n var sameSite = typeof opt.sameSite === 'string'\n ? opt.sameSite.toLowerCase() : opt.sameSite;\n\n switch (sameSite) {\n case true:\n str += '; SameSite=Strict';\n break;\n case 'lax':\n str += '; SameSite=Lax';\n break;\n case 'strict':\n str += '; SameSite=Strict';\n break;\n case 'none':\n str += '; SameSite=None';\n break;\n default:\n throw new TypeError('option sameSite is invalid');\n }\n }\n\n return str;\n}\n\n/**\n * Try decoding a string using a decoding function.\n *\n * @param {string} str\n * @param {function} decode\n * @private\n */\n\nfunction tryDecode(str, decode) {\n try {\n return decode(str);\n } catch (e) {\n return str;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/cookie/index.js?"); /***/ }), /***/ "./node_modules/core-js/internals/a-callable.js": /*!******************************************************!*\ !*** ./node_modules/core-js/internals/a-callable.js ***! \******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\nvar tryToString = __webpack_require__(/*! ../internals/try-to-string */ \"./node_modules/core-js/internals/try-to-string.js\");\n\nvar $TypeError = TypeError;\n\n// `Assert: IsCallable(argument) is true`\nmodule.exports = function (argument) {\n if (isCallable(argument)) return argument;\n throw new $TypeError(tryToString(argument) + ' is not a function');\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/a-callable.js?"); /***/ }), /***/ "./node_modules/core-js/internals/a-possible-prototype.js": /*!****************************************************************!*\ !*** ./node_modules/core-js/internals/a-possible-prototype.js ***! \****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\n\nvar $String = String;\nvar $TypeError = TypeError;\n\nmodule.exports = function (argument) {\n if (typeof argument == 'object' || isCallable(argument)) return argument;\n throw new $TypeError(\"Can't set \" + $String(argument) + ' as a prototype');\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/a-possible-prototype.js?"); /***/ }), /***/ "./node_modules/core-js/internals/an-object.js": /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/an-object.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\n\nvar $String = String;\nvar $TypeError = TypeError;\n\n// `Assert: Type(argument) is Object`\nmodule.exports = function (argument) {\n if (isObject(argument)) return argument;\n throw new $TypeError($String(argument) + ' is not an object');\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/an-object.js?"); /***/ }), /***/ "./node_modules/core-js/internals/array-includes.js": /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/array-includes.js ***! \**********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \"./node_modules/core-js/internals/to-indexed-object.js\");\nvar toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ \"./node_modules/core-js/internals/to-absolute-index.js\");\nvar lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ \"./node_modules/core-js/internals/length-of-array-like.js\");\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = lengthOfArrayLike(O);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare -- NaN check\n if (IS_INCLUDES && el !== el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare -- NaN check\n if (value !== value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.es/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.es/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-includes.js?"); /***/ }), /***/ "./node_modules/core-js/internals/array-method-is-strict.js": /*!******************************************************************!*\ !*** ./node_modules/core-js/internals/array-method-is-strict.js ***! \******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call -- required for testing\n method.call(null, argument || function () { return 1; }, 1);\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-method-is-strict.js?"); /***/ }), /***/ "./node_modules/core-js/internals/array-reduce.js": /*!********************************************************!*\ !*** ./node_modules/core-js/internals/array-reduce.js ***! \********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar aCallable = __webpack_require__(/*! ../internals/a-callable */ \"./node_modules/core-js/internals/a-callable.js\");\nvar toObject = __webpack_require__(/*! ../internals/to-object */ \"./node_modules/core-js/internals/to-object.js\");\nvar IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ \"./node_modules/core-js/internals/indexed-object.js\");\nvar lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ \"./node_modules/core-js/internals/length-of-array-like.js\");\n\nvar $TypeError = TypeError;\n\n// `Array.prototype.{ reduce, reduceRight }` methods implementation\nvar createMethod = function (IS_RIGHT) {\n return function (that, callbackfn, argumentsLength, memo) {\n aCallable(callbackfn);\n var O = toObject(that);\n var self = IndexedObject(O);\n var length = lengthOfArrayLike(O);\n var index = IS_RIGHT ? length - 1 : 0;\n var i = IS_RIGHT ? -1 : 1;\n if (argumentsLength < 2) while (true) {\n if (index in self) {\n memo = self[index];\n index += i;\n break;\n }\n index += i;\n if (IS_RIGHT ? index < 0 : length <= index) {\n throw new $TypeError('Reduce of empty array with no initial value');\n }\n }\n for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {\n memo = callbackfn(memo, self[index], index, O);\n }\n return memo;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.reduce` method\n // https://tc39.es/ecma262/#sec-array.prototype.reduce\n left: createMethod(false),\n // `Array.prototype.reduceRight` method\n // https://tc39.es/ecma262/#sec-array.prototype.reduceright\n right: createMethod(true)\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-reduce.js?"); /***/ }), /***/ "./node_modules/core-js/internals/array-set-length.js": /*!************************************************************!*\ !*** ./node_modules/core-js/internals/array-set-length.js ***! \************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\nvar isArray = __webpack_require__(/*! ../internals/is-array */ \"./node_modules/core-js/internals/is-array.js\");\n\nvar $TypeError = TypeError;\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Safari < 13 does not throw an error in this case\nvar SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {\n // makes no sense without proper strict mode support\n if (this !== undefined) return true;\n try {\n // eslint-disable-next-line es/no-object-defineproperty -- safe\n Object.defineProperty([], 'length', { writable: false }).length = 1;\n } catch (error) {\n return error instanceof TypeError;\n }\n}();\n\nmodule.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {\n if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {\n throw new $TypeError('Cannot set read only .length');\n } return O.length = length;\n} : function (O, length) {\n return O.length = length;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-set-length.js?"); /***/ }), /***/ "./node_modules/core-js/internals/classof-raw.js": /*!*******************************************************!*\ !*** ./node_modules/core-js/internals/classof-raw.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\n\nvar toString = uncurryThis({}.toString);\nvar stringSlice = uncurryThis(''.slice);\n\nmodule.exports = function (it) {\n return stringSlice(toString(it), 8, -1);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/classof-raw.js?"); /***/ }), /***/ "./node_modules/core-js/internals/classof.js": /*!***************************************************!*\ !*** ./node_modules/core-js/internals/classof.js ***! \***************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ \"./node_modules/core-js/internals/to-string-tag-support.js\");\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\nvar classofRaw = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar $Object = Object;\n\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/classof.js?"); /***/ }), /***/ "./node_modules/core-js/internals/copy-constructor-properties.js": /*!***********************************************************************!*\ !*** ./node_modules/core-js/internals/copy-constructor-properties.js ***! \***********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar hasOwn = __webpack_require__(/*! ../internals/has-own-property */ \"./node_modules/core-js/internals/has-own-property.js\");\nvar ownKeys = __webpack_require__(/*! ../internals/own-keys */ \"./node_modules/core-js/internals/own-keys.js\");\nvar getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ \"./node_modules/core-js/internals/object-get-own-property-descriptor.js\");\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\");\n\nmodule.exports = function (target, source, exceptions) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {\n defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/copy-constructor-properties.js?"); /***/ }), /***/ "./node_modules/core-js/internals/create-non-enumerable-property.js": /*!**************************************************************************!*\ !*** ./node_modules/core-js/internals/create-non-enumerable-property.js ***! \**************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\");\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ \"./node_modules/core-js/internals/create-property-descriptor.js\");\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/create-non-enumerable-property.js?"); /***/ }), /***/ "./node_modules/core-js/internals/create-property-descriptor.js": /*!**********************************************************************!*\ !*** ./node_modules/core-js/internals/create-property-descriptor.js ***! \**********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nmodule.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/create-property-descriptor.js?"); /***/ }), /***/ "./node_modules/core-js/internals/define-built-in.js": /*!***********************************************************!*\ !*** ./node_modules/core-js/internals/define-built-in.js ***! \***********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\");\nvar makeBuiltIn = __webpack_require__(/*! ../internals/make-built-in */ \"./node_modules/core-js/internals/make-built-in.js\");\nvar defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ \"./node_modules/core-js/internals/define-global-property.js\");\n\nmodule.exports = function (O, key, value, options) {\n if (!options) options = {};\n var simple = options.enumerable;\n var name = options.name !== undefined ? options.name : key;\n if (isCallable(value)) makeBuiltIn(value, name, options);\n if (options.global) {\n if (simple) O[key] = value;\n else defineGlobalProperty(key, value);\n } else {\n try {\n if (!options.unsafe) delete O[key];\n else if (O[key]) simple = true;\n } catch (error) { /* empty */ }\n if (simple) O[key] = value;\n else definePropertyModule.f(O, key, {\n value: value,\n enumerable: false,\n configurable: !options.nonConfigurable,\n writable: !options.nonWritable\n });\n } return O;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/define-built-in.js?"); /***/ }), /***/ "./node_modules/core-js/internals/define-global-property.js": /*!******************************************************************!*\ !*** ./node_modules/core-js/internals/define-global-property.js ***! \******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\n\n// eslint-disable-next-line es/no-object-defineproperty -- safe\nvar defineProperty = Object.defineProperty;\n\nmodule.exports = function (key, value) {\n try {\n defineProperty(global, key, { value: value, configurable: true, writable: true });\n } catch (error) {\n global[key] = value;\n } return value;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/define-global-property.js?"); /***/ }), /***/ "./node_modules/core-js/internals/descriptors.js": /*!*******************************************************!*\ !*** ./node_modules/core-js/internals/descriptors.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\n// Detect IE8's incomplete defineProperty implementation\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/descriptors.js?"); /***/ }), /***/ "./node_modules/core-js/internals/document-all.js": /*!********************************************************!*\ !*** ./node_modules/core-js/internals/document-all.js ***! \********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar documentAll = typeof document == 'object' && document.all;\n\n// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot\n// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing\nvar IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;\n\nmodule.exports = {\n all: documentAll,\n IS_HTMLDDA: IS_HTMLDDA\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/document-all.js?"); /***/ }), /***/ "./node_modules/core-js/internals/document-create-element.js": /*!*******************************************************************!*\ !*** ./node_modules/core-js/internals/document-create-element.js ***! \*******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/document-create-element.js?"); /***/ }), /***/ "./node_modules/core-js/internals/does-not-exceed-safe-integer.js": /*!************************************************************************!*\ !*** ./node_modules/core-js/internals/does-not-exceed-safe-integer.js ***! \************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar $TypeError = TypeError;\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991\n\nmodule.exports = function (it) {\n if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');\n return it;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/does-not-exceed-safe-integer.js?"); /***/ }), /***/ "./node_modules/core-js/internals/engine-is-node.js": /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/engine-is-node.js ***! \**********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\n\nmodule.exports = classof(global.process) === 'process';\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/engine-is-node.js?"); /***/ }), /***/ "./node_modules/core-js/internals/engine-user-agent.js": /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/engine-user-agent.js ***! \*************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nmodule.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/engine-user-agent.js?"); /***/ }), /***/ "./node_modules/core-js/internals/engine-v8-version.js": /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/engine-v8-version.js ***! \*************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ \"./node_modules/core-js/internals/engine-user-agent.js\");\n\nvar process = global.process;\nvar Deno = global.Deno;\nvar versions = process && process.versions || Deno && Deno.version;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n // in old Chrome, versions of V8 isn't V8 = Chrome / 10\n // but their correct versions are not interesting for us\n version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);\n}\n\n// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`\n// so check `userAgent` even if `.v8` exists, but 0\nif (!version && userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = +match[1];\n }\n}\n\nmodule.exports = version;\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/engine-v8-version.js?"); /***/ }), /***/ "./node_modules/core-js/internals/enum-bug-keys.js": /*!*********************************************************!*\ !*** ./node_modules/core-js/internals/enum-bug-keys.js ***! \*********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/enum-bug-keys.js?"); /***/ }), /***/ "./node_modules/core-js/internals/error-stack-clear.js": /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/error-stack-clear.js ***! \*************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\n\nvar $Error = Error;\nvar replace = uncurryThis(''.replace);\n\nvar TEST = (function (arg) { return String(new $Error(arg).stack); })('zxcasd');\n// eslint-disable-next-line redos/no-vulnerable -- safe\nvar V8_OR_CHAKRA_STACK_ENTRY = /\\n\\s*at [^:]*:[^\\n]*/;\nvar IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);\n\nmodule.exports = function (stack, dropEntries) {\n if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {\n while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');\n } return stack;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/error-stack-clear.js?"); /***/ }), /***/ "./node_modules/core-js/internals/error-stack-install.js": /*!***************************************************************!*\ !*** ./node_modules/core-js/internals/error-stack-install.js ***! \***************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\nvar clearErrorStack = __webpack_require__(/*! ../internals/error-stack-clear */ \"./node_modules/core-js/internals/error-stack-clear.js\");\nvar ERROR_STACK_INSTALLABLE = __webpack_require__(/*! ../internals/error-stack-installable */ \"./node_modules/core-js/internals/error-stack-installable.js\");\n\n// non-standard V8\nvar captureStackTrace = Error.captureStackTrace;\n\nmodule.exports = function (error, C, stack, dropEntries) {\n if (ERROR_STACK_INSTALLABLE) {\n if (captureStackTrace) captureStackTrace(error, C);\n else createNonEnumerableProperty(error, 'stack', clearErrorStack(stack, dropEntries));\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/error-stack-install.js?"); /***/ }), /***/ "./node_modules/core-js/internals/error-stack-installable.js": /*!*******************************************************************!*\ !*** ./node_modules/core-js/internals/error-stack-installable.js ***! \*******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ \"./node_modules/core-js/internals/create-property-descriptor.js\");\n\nmodule.exports = !fails(function () {\n var error = new Error('a');\n if (!('stack' in error)) return true;\n // eslint-disable-next-line es/no-object-defineproperty -- safe\n Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));\n return error.stack !== 7;\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/error-stack-installable.js?"); /***/ }), /***/ "./node_modules/core-js/internals/export.js": /*!**************************************************!*\ !*** ./node_modules/core-js/internals/export.js ***! \**************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ \"./node_modules/core-js/internals/object-get-own-property-descriptor.js\").f;\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\nvar defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ \"./node_modules/core-js/internals/define-built-in.js\");\nvar defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ \"./node_modules/core-js/internals/define-global-property.js\");\nvar copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ \"./node_modules/core-js/internals/copy-constructor-properties.js\");\nvar isForced = __webpack_require__(/*! ../internals/is-forced */ \"./node_modules/core-js/internals/is-forced.js\");\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.dontCallGetSet - prevent calling a getter on target\n options.name - the .name of the function if it does not match the key\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || defineGlobalProperty(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.dontCallGetSet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty == typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n defineBuiltIn(target, key, sourceProperty, options);\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/export.js?"); /***/ }), /***/ "./node_modules/core-js/internals/fails.js": /*!*************************************************!*\ !*** ./node_modules/core-js/internals/fails.js ***! \*************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nmodule.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/fails.js?"); /***/ }), /***/ "./node_modules/core-js/internals/function-apply.js": /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/function-apply.js ***! \**********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ \"./node_modules/core-js/internals/function-bind-native.js\");\n\nvar FunctionPrototype = Function.prototype;\nvar apply = FunctionPrototype.apply;\nvar call = FunctionPrototype.call;\n\n// eslint-disable-next-line es/no-reflect -- safe\nmodule.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {\n return call.apply(apply, arguments);\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/function-apply.js?"); /***/ }), /***/ "./node_modules/core-js/internals/function-bind-native.js": /*!****************************************************************!*\ !*** ./node_modules/core-js/internals/function-bind-native.js ***! \****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es/no-function-prototype-bind -- safe\n var test = (function () { /* empty */ }).bind();\n // eslint-disable-next-line no-prototype-builtins -- safe\n return typeof test != 'function' || test.hasOwnProperty('prototype');\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/function-bind-native.js?"); /***/ }), /***/ "./node_modules/core-js/internals/function-call.js": /*!*********************************************************!*\ !*** ./node_modules/core-js/internals/function-call.js ***! \*********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ \"./node_modules/core-js/internals/function-bind-native.js\");\n\nvar call = Function.prototype.call;\n\nmodule.exports = NATIVE_BIND ? call.bind(call) : function () {\n return call.apply(call, arguments);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/function-call.js?"); /***/ }), /***/ "./node_modules/core-js/internals/function-name.js": /*!*********************************************************!*\ !*** ./node_modules/core-js/internals/function-name.js ***! \*********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\nvar hasOwn = __webpack_require__(/*! ../internals/has-own-property */ \"./node_modules/core-js/internals/has-own-property.js\");\n\nvar FunctionPrototype = Function.prototype;\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;\n\nvar EXISTS = hasOwn(FunctionPrototype, 'name');\n// additional protection from minified / mangled / dropped function names\nvar PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';\nvar CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));\n\nmodule.exports = {\n EXISTS: EXISTS,\n PROPER: PROPER,\n CONFIGURABLE: CONFIGURABLE\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/function-name.js?"); /***/ }), /***/ "./node_modules/core-js/internals/function-uncurry-this-accessor.js": /*!**************************************************************************!*\ !*** ./node_modules/core-js/internals/function-uncurry-this-accessor.js ***! \**************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\nvar aCallable = __webpack_require__(/*! ../internals/a-callable */ \"./node_modules/core-js/internals/a-callable.js\");\n\nmodule.exports = function (object, key, method) {\n try {\n // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\n return uncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));\n } catch (error) { /* empty */ }\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/function-uncurry-this-accessor.js?"); /***/ }), /***/ "./node_modules/core-js/internals/function-uncurry-this.js": /*!*****************************************************************!*\ !*** ./node_modules/core-js/internals/function-uncurry-this.js ***! \*****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ \"./node_modules/core-js/internals/function-bind-native.js\");\n\nvar FunctionPrototype = Function.prototype;\nvar call = FunctionPrototype.call;\nvar uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);\n\nmodule.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {\n return function () {\n return call.apply(fn, arguments);\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/function-uncurry-this.js?"); /***/ }), /***/ "./node_modules/core-js/internals/get-built-in.js": /*!********************************************************!*\ !*** ./node_modules/core-js/internals/get-built-in.js ***! \********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\n\nvar aFunction = function (argument) {\n return isCallable(argument) ? argument : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/get-built-in.js?"); /***/ }), /***/ "./node_modules/core-js/internals/get-method.js": /*!******************************************************!*\ !*** ./node_modules/core-js/internals/get-method.js ***! \******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar aCallable = __webpack_require__(/*! ../internals/a-callable */ \"./node_modules/core-js/internals/a-callable.js\");\nvar isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ \"./node_modules/core-js/internals/is-null-or-undefined.js\");\n\n// `GetMethod` abstract operation\n// https://tc39.es/ecma262/#sec-getmethod\nmodule.exports = function (V, P) {\n var func = V[P];\n return isNullOrUndefined(func) ? undefined : aCallable(func);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/get-method.js?"); /***/ }), /***/ "./node_modules/core-js/internals/global.js": /*!**************************************************!*\ !*** ./node_modules/core-js/internals/global.js ***! \**************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/* WEBPACK VAR INJECTION */(function(global) {\nvar check = function (it) {\n return it && it.Math === Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line es/no-global-this -- safe\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n // eslint-disable-next-line no-restricted-globals -- safe\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func -- fallback\n (function () { return this; })() || this || Function('return this')();\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/global.js?"); /***/ }), /***/ "./node_modules/core-js/internals/has-own-property.js": /*!************************************************************!*\ !*** ./node_modules/core-js/internals/has-own-property.js ***! \************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\nvar toObject = __webpack_require__(/*! ../internals/to-object */ \"./node_modules/core-js/internals/to-object.js\");\n\nvar hasOwnProperty = uncurryThis({}.hasOwnProperty);\n\n// `HasOwnProperty` abstract operation\n// https://tc39.es/ecma262/#sec-hasownproperty\n// eslint-disable-next-line es/no-object-hasown -- safe\nmodule.exports = Object.hasOwn || function hasOwn(it, key) {\n return hasOwnProperty(toObject(it), key);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/has-own-property.js?"); /***/ }), /***/ "./node_modules/core-js/internals/hidden-keys.js": /*!*******************************************************!*\ !*** ./node_modules/core-js/internals/hidden-keys.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nmodule.exports = {};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/hidden-keys.js?"); /***/ }), /***/ "./node_modules/core-js/internals/ie8-dom-define.js": /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/ie8-dom-define.js ***! \**********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\nvar createElement = __webpack_require__(/*! ../internals/document-create-element */ \"./node_modules/core-js/internals/document-create-element.js\");\n\n// Thanks to IE8 for its funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a !== 7;\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/ie8-dom-define.js?"); /***/ }), /***/ "./node_modules/core-js/internals/indexed-object.js": /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/indexed-object.js ***! \**********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\n\nvar $Object = Object;\nvar split = uncurryThis(''.split);\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins -- safe\n return !$Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) === 'String' ? split(it, '') : $Object(it);\n} : $Object;\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/indexed-object.js?"); /***/ }), /***/ "./node_modules/core-js/internals/inherit-if-required.js": /*!***************************************************************!*\ !*** ./node_modules/core-js/internals/inherit-if-required.js ***! \***************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\nvar setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ \"./node_modules/core-js/internals/object-set-prototype-of.js\");\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n isCallable(NewTarget = dummy.constructor) &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/inherit-if-required.js?"); /***/ }), /***/ "./node_modules/core-js/internals/inspect-source.js": /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/inspect-source.js ***! \**********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\nvar store = __webpack_require__(/*! ../internals/shared-store */ \"./node_modules/core-js/internals/shared-store.js\");\n\nvar functionToString = uncurryThis(Function.toString);\n\n// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper\nif (!isCallable(store.inspectSource)) {\n store.inspectSource = function (it) {\n return functionToString(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/inspect-source.js?"); /***/ }), /***/ "./node_modules/core-js/internals/install-error-cause.js": /*!***************************************************************!*\ !*** ./node_modules/core-js/internals/install-error-cause.js ***! \***************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\n\n// `InstallErrorCause` abstract operation\n// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause\nmodule.exports = function (O, options) {\n if (isObject(options) && 'cause' in options) {\n createNonEnumerableProperty(O, 'cause', options.cause);\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/install-error-cause.js?"); /***/ }), /***/ "./node_modules/core-js/internals/internal-state.js": /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/internal-state.js ***! \**********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/weak-map-basic-detection */ \"./node_modules/core-js/internals/weak-map-basic-detection.js\");\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\nvar hasOwn = __webpack_require__(/*! ../internals/has-own-property */ \"./node_modules/core-js/internals/has-own-property.js\");\nvar shared = __webpack_require__(/*! ../internals/shared-store */ \"./node_modules/core-js/internals/shared-store.js\");\nvar sharedKey = __webpack_require__(/*! ../internals/shared-key */ \"./node_modules/core-js/internals/shared-key.js\");\nvar hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ \"./node_modules/core-js/internals/hidden-keys.js\");\n\nvar OBJECT_ALREADY_INITIALIZED = 'Object already initialized';\nvar TypeError = global.TypeError;\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw new TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP || shared.state) {\n var store = shared.state || (shared.state = new WeakMap());\n /* eslint-disable no-self-assign -- prototype methods protection */\n store.get = store.get;\n store.has = store.has;\n store.set = store.set;\n /* eslint-enable no-self-assign -- prototype methods protection */\n set = function (it, metadata) {\n if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);\n metadata.facade = it;\n store.set(it, metadata);\n return metadata;\n };\n get = function (it) {\n return store.get(it) || {};\n };\n has = function (it) {\n return store.has(it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);\n metadata.facade = it;\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return hasOwn(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return hasOwn(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/internal-state.js?"); /***/ }), /***/ "./node_modules/core-js/internals/is-array.js": /*!****************************************************!*\ !*** ./node_modules/core-js/internals/is-array.js ***! \****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\n\n// `IsArray` abstract operation\n// https://tc39.es/ecma262/#sec-isarray\n// eslint-disable-next-line es/no-array-isarray -- safe\nmodule.exports = Array.isArray || function isArray(argument) {\n return classof(argument) === 'Array';\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-array.js?"); /***/ }), /***/ "./node_modules/core-js/internals/is-callable.js": /*!*******************************************************!*\ !*** ./node_modules/core-js/internals/is-callable.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar $documentAll = __webpack_require__(/*! ../internals/document-all */ \"./node_modules/core-js/internals/document-all.js\");\n\nvar documentAll = $documentAll.all;\n\n// `IsCallable` abstract operation\n// https://tc39.es/ecma262/#sec-iscallable\nmodule.exports = $documentAll.IS_HTMLDDA ? function (argument) {\n return typeof argument == 'function' || argument === documentAll;\n} : function (argument) {\n return typeof argument == 'function';\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-callable.js?"); /***/ }), /***/ "./node_modules/core-js/internals/is-forced.js": /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/is-forced.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value === POLYFILL ? true\n : value === NATIVE ? false\n : isCallable(detection) ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-forced.js?"); /***/ }), /***/ "./node_modules/core-js/internals/is-null-or-undefined.js": /*!****************************************************************!*\ !*** ./node_modules/core-js/internals/is-null-or-undefined.js ***! \****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// we can't use just `it == null` since of `document.all` special case\n// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec\nmodule.exports = function (it) {\n return it === null || it === undefined;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-null-or-undefined.js?"); /***/ }), /***/ "./node_modules/core-js/internals/is-object.js": /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/is-object.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\nvar $documentAll = __webpack_require__(/*! ../internals/document-all */ \"./node_modules/core-js/internals/document-all.js\");\n\nvar documentAll = $documentAll.all;\n\nmodule.exports = $documentAll.IS_HTMLDDA ? function (it) {\n return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;\n} : function (it) {\n return typeof it == 'object' ? it !== null : isCallable(it);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-object.js?"); /***/ }), /***/ "./node_modules/core-js/internals/is-pure.js": /*!***************************************************!*\ !*** ./node_modules/core-js/internals/is-pure.js ***! \***************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nmodule.exports = false;\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-pure.js?"); /***/ }), /***/ "./node_modules/core-js/internals/is-symbol.js": /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/is-symbol.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \"./node_modules/core-js/internals/get-built-in.js\");\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\nvar isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ \"./node_modules/core-js/internals/object-is-prototype-of.js\");\nvar USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ \"./node_modules/core-js/internals/use-symbol-as-uid.js\");\n\nvar $Object = Object;\n\nmodule.exports = USE_SYMBOL_AS_UID ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n var $Symbol = getBuiltIn('Symbol');\n return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-symbol.js?"); /***/ }), /***/ "./node_modules/core-js/internals/length-of-array-like.js": /*!****************************************************************!*\ !*** ./node_modules/core-js/internals/length-of-array-like.js ***! \****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar toLength = __webpack_require__(/*! ../internals/to-length */ \"./node_modules/core-js/internals/to-length.js\");\n\n// `LengthOfArrayLike` abstract operation\n// https://tc39.es/ecma262/#sec-lengthofarraylike\nmodule.exports = function (obj) {\n return toLength(obj.length);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/length-of-array-like.js?"); /***/ }), /***/ "./node_modules/core-js/internals/make-built-in.js": /*!*********************************************************!*\ !*** ./node_modules/core-js/internals/make-built-in.js ***! \*********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\nvar hasOwn = __webpack_require__(/*! ../internals/has-own-property */ \"./node_modules/core-js/internals/has-own-property.js\");\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\nvar CONFIGURABLE_FUNCTION_NAME = __webpack_require__(/*! ../internals/function-name */ \"./node_modules/core-js/internals/function-name.js\").CONFIGURABLE;\nvar inspectSource = __webpack_require__(/*! ../internals/inspect-source */ \"./node_modules/core-js/internals/inspect-source.js\");\nvar InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ \"./node_modules/core-js/internals/internal-state.js\");\n\nvar enforceInternalState = InternalStateModule.enforce;\nvar getInternalState = InternalStateModule.get;\nvar $String = String;\n// eslint-disable-next-line es/no-object-defineproperty -- safe\nvar defineProperty = Object.defineProperty;\nvar stringSlice = uncurryThis(''.slice);\nvar replace = uncurryThis(''.replace);\nvar join = uncurryThis([].join);\n\nvar CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {\n return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;\n});\n\nvar TEMPLATE = String(String).split('String');\n\nvar makeBuiltIn = module.exports = function (value, name, options) {\n if (stringSlice($String(name), 0, 7) === 'Symbol(') {\n name = '[' + replace($String(name), /^Symbol\\(([^)]*)\\)/, '$1') + ']';\n }\n if (options && options.getter) name = 'get ' + name;\n if (options && options.setter) name = 'set ' + name;\n if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {\n if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });\n else value.name = name;\n }\n if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {\n defineProperty(value, 'length', { value: options.arity });\n }\n try {\n if (options && hasOwn(options, 'constructor') && options.constructor) {\n if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });\n // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable\n } else if (value.prototype) value.prototype = undefined;\n } catch (error) { /* empty */ }\n var state = enforceInternalState(value);\n if (!hasOwn(state, 'source')) {\n state.source = join(TEMPLATE, typeof name == 'string' ? name : '');\n } return value;\n};\n\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n// eslint-disable-next-line no-extend-native -- required\nFunction.prototype.toString = makeBuiltIn(function toString() {\n return isCallable(this) && getInternalState(this).source || inspectSource(this);\n}, 'toString');\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/make-built-in.js?"); /***/ }), /***/ "./node_modules/core-js/internals/math-trunc.js": /*!******************************************************!*\ !*** ./node_modules/core-js/internals/math-trunc.js ***! \******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `Math.trunc` method\n// https://tc39.es/ecma262/#sec-math.trunc\n// eslint-disable-next-line es/no-math-trunc -- safe\nmodule.exports = Math.trunc || function trunc(x) {\n var n = +x;\n return (n > 0 ? floor : ceil)(n);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/math-trunc.js?"); /***/ }), /***/ "./node_modules/core-js/internals/normalize-string-argument.js": /*!*********************************************************************!*\ !*** ./node_modules/core-js/internals/normalize-string-argument.js ***! \*********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar toString = __webpack_require__(/*! ../internals/to-string */ \"./node_modules/core-js/internals/to-string.js\");\n\nmodule.exports = function (argument, $default) {\n return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/normalize-string-argument.js?"); /***/ }), /***/ "./node_modules/core-js/internals/object-define-property.js": /*!******************************************************************!*\ !*** ./node_modules/core-js/internals/object-define-property.js ***! \******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\nvar IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ \"./node_modules/core-js/internals/ie8-dom-define.js\");\nvar V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ \"./node_modules/core-js/internals/v8-prototype-define-bug.js\");\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\nvar toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ \"./node_modules/core-js/internals/to-property-key.js\");\n\nvar $TypeError = TypeError;\n// eslint-disable-next-line es/no-object-defineproperty -- safe\nvar $defineProperty = Object.defineProperty;\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar ENUMERABLE = 'enumerable';\nvar CONFIGURABLE = 'configurable';\nvar WRITABLE = 'writable';\n\n// `Object.defineProperty` method\n// https://tc39.es/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {\n var current = $getOwnPropertyDescriptor(O, P);\n if (current && current[WRITABLE]) {\n O[P] = Attributes.value;\n Attributes = {\n configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],\n enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],\n writable: false\n };\n }\n } return $defineProperty(O, P, Attributes);\n} : $defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return $defineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-define-property.js?"); /***/ }), /***/ "./node_modules/core-js/internals/object-get-own-property-descriptor.js": /*!******************************************************************************!*\ !*** ./node_modules/core-js/internals/object-get-own-property-descriptor.js ***! \******************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\nvar call = __webpack_require__(/*! ../internals/function-call */ \"./node_modules/core-js/internals/function-call.js\");\nvar propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ \"./node_modules/core-js/internals/object-property-is-enumerable.js\");\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ \"./node_modules/core-js/internals/create-property-descriptor.js\");\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \"./node_modules/core-js/internals/to-indexed-object.js\");\nvar toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ \"./node_modules/core-js/internals/to-property-key.js\");\nvar hasOwn = __webpack_require__(/*! ../internals/has-own-property */ \"./node_modules/core-js/internals/has-own-property.js\");\nvar IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ \"./node_modules/core-js/internals/ie8-dom-define.js\");\n\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPropertyKey(P);\n if (IE8_DOM_DEFINE) try {\n return $getOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-descriptor.js?"); /***/ }), /***/ "./node_modules/core-js/internals/object-get-own-property-names.js": /*!*************************************************************************!*\ !*** ./node_modules/core-js/internals/object-get-own-property-names.js ***! \*************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ \"./node_modules/core-js/internals/object-keys-internal.js\");\nvar enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ \"./node_modules/core-js/internals/enum-bug-keys.js\");\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.es/ecma262/#sec-object.getownpropertynames\n// eslint-disable-next-line es/no-object-getownpropertynames -- safe\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-names.js?"); /***/ }), /***/ "./node_modules/core-js/internals/object-get-own-property-symbols.js": /*!***************************************************************************!*\ !*** ./node_modules/core-js/internals/object-get-own-property-symbols.js ***! \***************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe\nexports.f = Object.getOwnPropertySymbols;\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-symbols.js?"); /***/ }), /***/ "./node_modules/core-js/internals/object-is-prototype-of.js": /*!******************************************************************!*\ !*** ./node_modules/core-js/internals/object-is-prototype-of.js ***! \******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\n\nmodule.exports = uncurryThis({}.isPrototypeOf);\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-is-prototype-of.js?"); /***/ }), /***/ "./node_modules/core-js/internals/object-keys-internal.js": /*!****************************************************************!*\ !*** ./node_modules/core-js/internals/object-keys-internal.js ***! \****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\nvar hasOwn = __webpack_require__(/*! ../internals/has-own-property */ \"./node_modules/core-js/internals/has-own-property.js\");\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \"./node_modules/core-js/internals/to-indexed-object.js\");\nvar indexOf = __webpack_require__(/*! ../internals/array-includes */ \"./node_modules/core-js/internals/array-includes.js\").indexOf;\nvar hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ \"./node_modules/core-js/internals/hidden-keys.js\");\n\nvar push = uncurryThis([].push);\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (hasOwn(O, key = names[i++])) {\n ~indexOf(result, key) || push(result, key);\n }\n return result;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-keys-internal.js?"); /***/ }), /***/ "./node_modules/core-js/internals/object-property-is-enumerable.js": /*!*************************************************************************!*\ !*** ./node_modules/core-js/internals/object-property-is-enumerable.js ***! \*************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar $propertyIsEnumerable = {}.propertyIsEnumerable;\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : $propertyIsEnumerable;\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-property-is-enumerable.js?"); /***/ }), /***/ "./node_modules/core-js/internals/object-set-prototype-of.js": /*!*******************************************************************!*\ !*** ./node_modules/core-js/internals/object-set-prototype-of.js ***! \*******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n/* eslint-disable no-proto -- safe */\nvar uncurryThisAccessor = __webpack_require__(/*! ../internals/function-uncurry-this-accessor */ \"./node_modules/core-js/internals/function-uncurry-this-accessor.js\");\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\nvar aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ \"./node_modules/core-js/internals/a-possible-prototype.js\");\n\n// `Object.setPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n// eslint-disable-next-line es/no-object-setprototypeof -- safe\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = uncurryThisAccessor(Object.prototype, '__proto__', 'set');\n setter(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-set-prototype-of.js?"); /***/ }), /***/ "./node_modules/core-js/internals/ordinary-to-primitive.js": /*!*****************************************************************!*\ !*** ./node_modules/core-js/internals/ordinary-to-primitive.js ***! \*****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar call = __webpack_require__(/*! ../internals/function-call */ \"./node_modules/core-js/internals/function-call.js\");\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\n\nvar $TypeError = TypeError;\n\n// `OrdinaryToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-ordinarytoprimitive\nmodule.exports = function (input, pref) {\n var fn, val;\n if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;\n if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n throw new $TypeError(\"Can't convert object to primitive value\");\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/ordinary-to-primitive.js?"); /***/ }), /***/ "./node_modules/core-js/internals/own-keys.js": /*!****************************************************!*\ !*** ./node_modules/core-js/internals/own-keys.js ***! \****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \"./node_modules/core-js/internals/get-built-in.js\");\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\nvar getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ \"./node_modules/core-js/internals/object-get-own-property-names.js\");\nvar getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ \"./node_modules/core-js/internals/object-get-own-property-symbols.js\");\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\n\nvar concat = uncurryThis([].concat);\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/own-keys.js?"); /***/ }), /***/ "./node_modules/core-js/internals/proxy-accessor.js": /*!**********************************************************!*\ !*** ./node_modules/core-js/internals/proxy-accessor.js ***! \**********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar defineProperty = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\").f;\n\nmodule.exports = function (Target, Source, key) {\n key in Target || defineProperty(Target, key, {\n configurable: true,\n get: function () { return Source[key]; },\n set: function (it) { Source[key] = it; }\n });\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/proxy-accessor.js?"); /***/ }), /***/ "./node_modules/core-js/internals/require-object-coercible.js": /*!********************************************************************!*\ !*** ./node_modules/core-js/internals/require-object-coercible.js ***! \********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ \"./node_modules/core-js/internals/is-null-or-undefined.js\");\n\nvar $TypeError = TypeError;\n\n// `RequireObjectCoercible` abstract operation\n// https://tc39.es/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (isNullOrUndefined(it)) throw new $TypeError(\"Can't call method on \" + it);\n return it;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/require-object-coercible.js?"); /***/ }), /***/ "./node_modules/core-js/internals/set-to-string-tag.js": /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/set-to-string-tag.js ***! \*************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar defineProperty = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\").f;\nvar hasOwn = __webpack_require__(/*! ../internals/has-own-property */ \"./node_modules/core-js/internals/has-own-property.js\");\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (target, TAG, STATIC) {\n if (target && !STATIC) target = target.prototype;\n if (target && !hasOwn(target, TO_STRING_TAG)) {\n defineProperty(target, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/set-to-string-tag.js?"); /***/ }), /***/ "./node_modules/core-js/internals/shared-key.js": /*!******************************************************!*\ !*** ./node_modules/core-js/internals/shared-key.js ***! \******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar shared = __webpack_require__(/*! ../internals/shared */ \"./node_modules/core-js/internals/shared.js\");\nvar uid = __webpack_require__(/*! ../internals/uid */ \"./node_modules/core-js/internals/uid.js\");\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/shared-key.js?"); /***/ }), /***/ "./node_modules/core-js/internals/shared-store.js": /*!********************************************************!*\ !*** ./node_modules/core-js/internals/shared-store.js ***! \********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ \"./node_modules/core-js/internals/define-global-property.js\");\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || defineGlobalProperty(SHARED, {});\n\nmodule.exports = store;\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/shared-store.js?"); /***/ }), /***/ "./node_modules/core-js/internals/shared.js": /*!**************************************************!*\ !*** ./node_modules/core-js/internals/shared.js ***! \**************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar IS_PURE = __webpack_require__(/*! ../internals/is-pure */ \"./node_modules/core-js/internals/is-pure.js\");\nvar store = __webpack_require__(/*! ../internals/shared-store */ \"./node_modules/core-js/internals/shared-store.js\");\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.33.2',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',\n license: 'https://github.com/zloirock/core-js/blob/v3.33.2/LICENSE',\n source: 'https://github.com/zloirock/core-js'\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/shared.js?"); /***/ }), /***/ "./node_modules/core-js/internals/symbol-constructor-detection.js": /*!************************************************************************!*\ !*** ./node_modules/core-js/internals/symbol-constructor-detection.js ***! \************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n/* eslint-disable es/no-symbol -- required for testing */\nvar V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ \"./node_modules/core-js/internals/engine-v8-version.js\");\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\n\nvar $String = global.String;\n\n// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n var symbol = Symbol('symbol detection');\n // Chrome 38 Symbol has incorrect toString conversion\n // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances\n // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,\n // of course, fail.\n return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||\n // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances\n !Symbol.sham && V8_VERSION && V8_VERSION < 41;\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/symbol-constructor-detection.js?"); /***/ }), /***/ "./node_modules/core-js/internals/to-absolute-index.js": /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/to-absolute-index.js ***! \*************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ \"./node_modules/core-js/internals/to-integer-or-infinity.js\");\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toIntegerOrInfinity(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-absolute-index.js?"); /***/ }), /***/ "./node_modules/core-js/internals/to-indexed-object.js": /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/to-indexed-object.js ***! \*************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ \"./node_modules/core-js/internals/indexed-object.js\");\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \"./node_modules/core-js/internals/require-object-coercible.js\");\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-indexed-object.js?"); /***/ }), /***/ "./node_modules/core-js/internals/to-integer-or-infinity.js": /*!******************************************************************!*\ !*** ./node_modules/core-js/internals/to-integer-or-infinity.js ***! \******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar trunc = __webpack_require__(/*! ../internals/math-trunc */ \"./node_modules/core-js/internals/math-trunc.js\");\n\n// `ToIntegerOrInfinity` abstract operation\n// https://tc39.es/ecma262/#sec-tointegerorinfinity\nmodule.exports = function (argument) {\n var number = +argument;\n // eslint-disable-next-line no-self-compare -- NaN check\n return number !== number || number === 0 ? 0 : trunc(number);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-integer-or-infinity.js?"); /***/ }), /***/ "./node_modules/core-js/internals/to-length.js": /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/to-length.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ \"./node_modules/core-js/internals/to-integer-or-infinity.js\");\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.es/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-length.js?"); /***/ }), /***/ "./node_modules/core-js/internals/to-object.js": /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/to-object.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \"./node_modules/core-js/internals/require-object-coercible.js\");\n\nvar $Object = Object;\n\n// `ToObject` abstract operation\n// https://tc39.es/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return $Object(requireObjectCoercible(argument));\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-object.js?"); /***/ }), /***/ "./node_modules/core-js/internals/to-primitive.js": /*!********************************************************!*\ !*** ./node_modules/core-js/internals/to-primitive.js ***! \********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar call = __webpack_require__(/*! ../internals/function-call */ \"./node_modules/core-js/internals/function-call.js\");\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\nvar isSymbol = __webpack_require__(/*! ../internals/is-symbol */ \"./node_modules/core-js/internals/is-symbol.js\");\nvar getMethod = __webpack_require__(/*! ../internals/get-method */ \"./node_modules/core-js/internals/get-method.js\");\nvar ordinaryToPrimitive = __webpack_require__(/*! ../internals/ordinary-to-primitive */ \"./node_modules/core-js/internals/ordinary-to-primitive.js\");\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\n\nvar $TypeError = TypeError;\nvar TO_PRIMITIVE = wellKnownSymbol('toPrimitive');\n\n// `ToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-toprimitive\nmodule.exports = function (input, pref) {\n if (!isObject(input) || isSymbol(input)) return input;\n var exoticToPrim = getMethod(input, TO_PRIMITIVE);\n var result;\n if (exoticToPrim) {\n if (pref === undefined) pref = 'default';\n result = call(exoticToPrim, input, pref);\n if (!isObject(result) || isSymbol(result)) return result;\n throw new $TypeError(\"Can't convert object to primitive value\");\n }\n if (pref === undefined) pref = 'number';\n return ordinaryToPrimitive(input, pref);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-primitive.js?"); /***/ }), /***/ "./node_modules/core-js/internals/to-property-key.js": /*!***********************************************************!*\ !*** ./node_modules/core-js/internals/to-property-key.js ***! \***********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ \"./node_modules/core-js/internals/to-primitive.js\");\nvar isSymbol = __webpack_require__(/*! ../internals/is-symbol */ \"./node_modules/core-js/internals/is-symbol.js\");\n\n// `ToPropertyKey` abstract operation\n// https://tc39.es/ecma262/#sec-topropertykey\nmodule.exports = function (argument) {\n var key = toPrimitive(argument, 'string');\n return isSymbol(key) ? key : key + '';\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-property-key.js?"); /***/ }), /***/ "./node_modules/core-js/internals/to-string-tag-support.js": /*!*****************************************************************!*\ !*** ./node_modules/core-js/internals/to-string-tag-support.js ***! \*****************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-string-tag-support.js?"); /***/ }), /***/ "./node_modules/core-js/internals/to-string.js": /*!*****************************************************!*\ !*** ./node_modules/core-js/internals/to-string.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar classof = __webpack_require__(/*! ../internals/classof */ \"./node_modules/core-js/internals/classof.js\");\n\nvar $String = String;\n\nmodule.exports = function (argument) {\n if (classof(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');\n return $String(argument);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-string.js?"); /***/ }), /***/ "./node_modules/core-js/internals/try-to-string.js": /*!*********************************************************!*\ !*** ./node_modules/core-js/internals/try-to-string.js ***! \*********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar $String = String;\n\nmodule.exports = function (argument) {\n try {\n return $String(argument);\n } catch (error) {\n return 'Object';\n }\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/try-to-string.js?"); /***/ }), /***/ "./node_modules/core-js/internals/uid.js": /*!***********************************************!*\ !*** ./node_modules/core-js/internals/uid.js ***! \***********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ \"./node_modules/core-js/internals/function-uncurry-this.js\");\n\nvar id = 0;\nvar postfix = Math.random();\nvar toString = uncurryThis(1.0.toString);\n\nmodule.exports = function (key) {\n return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/uid.js?"); /***/ }), /***/ "./node_modules/core-js/internals/use-symbol-as-uid.js": /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/use-symbol-as-uid.js ***! \*************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n/* eslint-disable es/no-symbol -- required for testing */\nvar NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ \"./node_modules/core-js/internals/symbol-constructor-detection.js\");\n\nmodule.exports = NATIVE_SYMBOL\n && !Symbol.sham\n && typeof Symbol.iterator == 'symbol';\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/use-symbol-as-uid.js?"); /***/ }), /***/ "./node_modules/core-js/internals/v8-prototype-define-bug.js": /*!*******************************************************************!*\ !*** ./node_modules/core-js/internals/v8-prototype-define-bug.js ***! \*******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\n// V8 ~ Chrome 36-\n// https://bugs.chromium.org/p/v8/issues/detail?id=3334\nmodule.exports = DESCRIPTORS && fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty(function () { /* empty */ }, 'prototype', {\n value: 42,\n writable: false\n }).prototype !== 42;\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/v8-prototype-define-bug.js?"); /***/ }), /***/ "./node_modules/core-js/internals/weak-map-basic-detection.js": /*!********************************************************************!*\ !*** ./node_modules/core-js/internals/weak-map-basic-detection.js ***! \********************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar isCallable = __webpack_require__(/*! ../internals/is-callable */ \"./node_modules/core-js/internals/is-callable.js\");\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/weak-map-basic-detection.js?"); /***/ }), /***/ "./node_modules/core-js/internals/well-known-symbol.js": /*!*************************************************************!*\ !*** ./node_modules/core-js/internals/well-known-symbol.js ***! \*************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar shared = __webpack_require__(/*! ../internals/shared */ \"./node_modules/core-js/internals/shared.js\");\nvar hasOwn = __webpack_require__(/*! ../internals/has-own-property */ \"./node_modules/core-js/internals/has-own-property.js\");\nvar uid = __webpack_require__(/*! ../internals/uid */ \"./node_modules/core-js/internals/uid.js\");\nvar NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ \"./node_modules/core-js/internals/symbol-constructor-detection.js\");\nvar USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ \"./node_modules/core-js/internals/use-symbol-as-uid.js\");\n\nvar Symbol = global.Symbol;\nvar WellKnownSymbolsStore = shared('wks');\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!hasOwn(WellKnownSymbolsStore, name)) {\n WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)\n ? Symbol[name]\n : createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/well-known-symbol.js?"); /***/ }), /***/ "./node_modules/core-js/internals/wrap-error-constructor-with-cause.js": /*!*****************************************************************************!*\ !*** ./node_modules/core-js/internals/wrap-error-constructor-with-cause.js ***! \*****************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \"./node_modules/core-js/internals/get-built-in.js\");\nvar hasOwn = __webpack_require__(/*! ../internals/has-own-property */ \"./node_modules/core-js/internals/has-own-property.js\");\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\nvar isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ \"./node_modules/core-js/internals/object-is-prototype-of.js\");\nvar setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ \"./node_modules/core-js/internals/object-set-prototype-of.js\");\nvar copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ \"./node_modules/core-js/internals/copy-constructor-properties.js\");\nvar proxyAccessor = __webpack_require__(/*! ../internals/proxy-accessor */ \"./node_modules/core-js/internals/proxy-accessor.js\");\nvar inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ \"./node_modules/core-js/internals/inherit-if-required.js\");\nvar normalizeStringArgument = __webpack_require__(/*! ../internals/normalize-string-argument */ \"./node_modules/core-js/internals/normalize-string-argument.js\");\nvar installErrorCause = __webpack_require__(/*! ../internals/install-error-cause */ \"./node_modules/core-js/internals/install-error-cause.js\");\nvar installErrorStack = __webpack_require__(/*! ../internals/error-stack-install */ \"./node_modules/core-js/internals/error-stack-install.js\");\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\nvar IS_PURE = __webpack_require__(/*! ../internals/is-pure */ \"./node_modules/core-js/internals/is-pure.js\");\n\nmodule.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {\n var STACK_TRACE_LIMIT = 'stackTraceLimit';\n var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;\n var path = FULL_NAME.split('.');\n var ERROR_NAME = path[path.length - 1];\n var OriginalError = getBuiltIn.apply(null, path);\n\n if (!OriginalError) return;\n\n var OriginalErrorPrototype = OriginalError.prototype;\n\n // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006\n if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;\n\n if (!FORCED) return OriginalError;\n\n var BaseError = getBuiltIn('Error');\n\n var WrappedError = wrapper(function (a, b) {\n var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);\n var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();\n if (message !== undefined) createNonEnumerableProperty(result, 'message', message);\n installErrorStack(result, WrappedError, result.stack, 2);\n if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);\n if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);\n return result;\n });\n\n WrappedError.prototype = OriginalErrorPrototype;\n\n if (ERROR_NAME !== 'Error') {\n if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);\n else copyConstructorProperties(WrappedError, BaseError, { name: true });\n } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {\n proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);\n proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');\n }\n\n copyConstructorProperties(WrappedError, OriginalError);\n\n if (!IS_PURE) try {\n // Safari 13- bug: WebAssembly errors does not have a proper `.name`\n if (OriginalErrorPrototype.name !== ERROR_NAME) {\n createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);\n }\n OriginalErrorPrototype.constructor = WrappedError;\n } catch (error) { /* empty */ }\n\n return WrappedError;\n};\n\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/wrap-error-constructor-with-cause.js?"); /***/ }), /***/ "./node_modules/core-js/modules/es.array.push.js": /*!*******************************************************!*\ !*** ./node_modules/core-js/modules/es.array.push.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\nvar toObject = __webpack_require__(/*! ../internals/to-object */ \"./node_modules/core-js/internals/to-object.js\");\nvar lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ \"./node_modules/core-js/internals/length-of-array-like.js\");\nvar setArrayLength = __webpack_require__(/*! ../internals/array-set-length */ \"./node_modules/core-js/internals/array-set-length.js\");\nvar doesNotExceedSafeInteger = __webpack_require__(/*! ../internals/does-not-exceed-safe-integer */ \"./node_modules/core-js/internals/does-not-exceed-safe-integer.js\");\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\nvar INCORRECT_TO_LENGTH = fails(function () {\n return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;\n});\n\n// V8 and Safari <= 15.4, FF < 23 throws InternalError\n// https://bugs.chromium.org/p/v8/issues/detail?id=12681\nvar properErrorOnNonWritableLength = function () {\n try {\n // eslint-disable-next-line es/no-object-defineproperty -- safe\n Object.defineProperty([], 'length', { writable: false }).push();\n } catch (error) {\n return error instanceof TypeError;\n }\n};\n\nvar FORCED = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();\n\n// `Array.prototype.push` method\n// https://tc39.es/ecma262/#sec-array.prototype.push\n$({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {\n // eslint-disable-next-line no-unused-vars -- required for `.length`\n push: function push(item) {\n var O = toObject(this);\n var len = lengthOfArrayLike(O);\n var argCount = arguments.length;\n doesNotExceedSafeInteger(len + argCount);\n for (var i = 0; i < argCount; i++) {\n O[len] = arguments[i];\n len++;\n }\n setArrayLength(O, len);\n return len;\n }\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.push.js?"); /***/ }), /***/ "./node_modules/core-js/modules/es.array.reduce.js": /*!*********************************************************!*\ !*** ./node_modules/core-js/modules/es.array.reduce.js ***! \*********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\nvar $reduce = __webpack_require__(/*! ../internals/array-reduce */ \"./node_modules/core-js/internals/array-reduce.js\").left;\nvar arrayMethodIsStrict = __webpack_require__(/*! ../internals/array-method-is-strict */ \"./node_modules/core-js/internals/array-method-is-strict.js\");\nvar CHROME_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ \"./node_modules/core-js/internals/engine-v8-version.js\");\nvar IS_NODE = __webpack_require__(/*! ../internals/engine-is-node */ \"./node_modules/core-js/internals/engine-is-node.js\");\n\n// Chrome 80-82 has a critical bug\n// https://bugs.chromium.org/p/chromium/issues/detail?id=1049982\nvar CHROME_BUG = !IS_NODE && CHROME_VERSION > 79 && CHROME_VERSION < 83;\nvar FORCED = CHROME_BUG || !arrayMethodIsStrict('reduce');\n\n// `Array.prototype.reduce` method\n// https://tc39.es/ecma262/#sec-array.prototype.reduce\n$({ target: 'Array', proto: true, forced: FORCED }, {\n reduce: function reduce(callbackfn /* , initialValue */) {\n var length = arguments.length;\n return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined);\n }\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.reduce.js?"); /***/ }), /***/ "./node_modules/core-js/modules/es.error.cause.js": /*!********************************************************!*\ !*** ./node_modules/core-js/modules/es.error.cause.js ***! \********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n/* eslint-disable no-unused-vars -- required for functions `.length` */\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar apply = __webpack_require__(/*! ../internals/function-apply */ \"./node_modules/core-js/internals/function-apply.js\");\nvar wrapErrorConstructorWithCause = __webpack_require__(/*! ../internals/wrap-error-constructor-with-cause */ \"./node_modules/core-js/internals/wrap-error-constructor-with-cause.js\");\n\nvar WEB_ASSEMBLY = 'WebAssembly';\nvar WebAssembly = global[WEB_ASSEMBLY];\n\n// eslint-disable-next-line es/no-error-cause -- feature detection\nvar FORCED = new Error('e', { cause: 7 }).cause !== 7;\n\nvar exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {\n var O = {};\n O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);\n $({ global: true, constructor: true, arity: 1, forced: FORCED }, O);\n};\n\nvar exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {\n if (WebAssembly && WebAssembly[ERROR_NAME]) {\n var O = {};\n O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);\n $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);\n }\n};\n\n// https://tc39.es/ecma262/#sec-nativeerror\nexportGlobalErrorCauseWrapper('Error', function (init) {\n return function Error(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('EvalError', function (init) {\n return function EvalError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('RangeError', function (init) {\n return function RangeError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('ReferenceError', function (init) {\n return function ReferenceError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('SyntaxError', function (init) {\n return function SyntaxError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('TypeError', function (init) {\n return function TypeError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('URIError', function (init) {\n return function URIError(message) { return apply(init, this, arguments); };\n});\nexportWebAssemblyErrorCauseWrapper('CompileError', function (init) {\n return function CompileError(message) { return apply(init, this, arguments); };\n});\nexportWebAssemblyErrorCauseWrapper('LinkError', function (init) {\n return function LinkError(message) { return apply(init, this, arguments); };\n});\nexportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {\n return function RuntimeError(message) { return apply(init, this, arguments); };\n});\n\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.error.cause.js?"); /***/ }), /***/ "./node_modules/core-js/modules/es.reflect.to-string-tag.js": /*!******************************************************************!*\ !*** ./node_modules/core-js/modules/es.reflect.to-string-tag.js ***! \******************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\nvar setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ \"./node_modules/core-js/internals/set-to-string-tag.js\");\n\n$({ global: true }, { Reflect: {} });\n\n// Reflect[@@toStringTag] property\n// https://tc39.es/ecma262/#sec-reflect-@@tostringtag\nsetToStringTag(global.Reflect, 'Reflect', true);\n\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.reflect.to-string-tag.js?"); /***/ }), /***/ "./node_modules/crypto-js/core.js": /*!****************************************!*\ !*** ./node_modules/crypto-js/core.js ***! \****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("/* WEBPACK VAR INJECTION */(function(global) {;(function (root, factory) {\n\tif (true) {\n\t\t// CommonJS\n\t\tmodule.exports = exports = factory();\n\t}\n\telse {}\n}(this, function () {\n\n\t/*globals window, global, require*/\n\n\t/**\n\t * CryptoJS core components.\n\t */\n\tvar CryptoJS = CryptoJS || (function (Math, undefined) {\n\n\t var crypto;\n\n\t // Native crypto from window (Browser)\n\t if (typeof window !== 'undefined' && window.crypto) {\n\t crypto = window.crypto;\n\t }\n\n\t // Native crypto in web worker (Browser)\n\t if (typeof self !== 'undefined' && self.crypto) {\n\t crypto = self.crypto;\n\t }\n\n\t // Native crypto from worker\n\t if (typeof globalThis !== 'undefined' && globalThis.crypto) {\n\t crypto = globalThis.crypto;\n\t }\n\n\t // Native (experimental IE 11) crypto from window (Browser)\n\t if (!crypto && typeof window !== 'undefined' && window.msCrypto) {\n\t crypto = window.msCrypto;\n\t }\n\n\t // Native crypto from global (NodeJS)\n\t if (!crypto && typeof global !== 'undefined' && global.crypto) {\n\t crypto = global.crypto;\n\t }\n\n\t // Native crypto import via require (NodeJS)\n\t if (!crypto && \"function\" === 'function') {\n\t try {\n\t crypto = __webpack_require__(/*! crypto */ 2);\n\t } catch (err) {}\n\t }\n\n\t /*\n\t * Cryptographically secure pseudorandom number generator\n\t *\n\t * As Math.random() is cryptographically not safe to use\n\t */\n\t var cryptoSecureRandomInt = function () {\n\t if (crypto) {\n\t // Use getRandomValues method (Browser)\n\t if (typeof crypto.getRandomValues === 'function') {\n\t try {\n\t return crypto.getRandomValues(new Uint32Array(1))[0];\n\t } catch (err) {}\n\t }\n\n\t // Use randomBytes method (NodeJS)\n\t if (typeof crypto.randomBytes === 'function') {\n\t try {\n\t return crypto.randomBytes(4).readInt32LE();\n\t } catch (err) {}\n\t }\n\t }\n\n\t throw new Error('Native crypto module could not be used to get secure random number.');\n\t };\n\n\t /*\n\t * Local polyfill of Object.create\n\n\t */\n\t var create = Object.create || (function () {\n\t function F() {}\n\n\t return function (obj) {\n\t var subtype;\n\n\t F.prototype = obj;\n\n\t subtype = new F();\n\n\t F.prototype = null;\n\n\t return subtype;\n\t };\n\t }());\n\n\t /**\n\t * CryptoJS namespace.\n\t */\n\t var C = {};\n\n\t /**\n\t * Library namespace.\n\t */\n\t var C_lib = C.lib = {};\n\n\t /**\n\t * Base object for prototypal inheritance.\n\t */\n\t var Base = C_lib.Base = (function () {\n\n\n\t return {\n\t /**\n\t * Creates a new object that inherits from this object.\n\t *\n\t * @param {Object} overrides Properties to copy into the new object.\n\t *\n\t * @return {Object} The new object.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var MyType = CryptoJS.lib.Base.extend({\n\t * field: 'value',\n\t *\n\t * method: function () {\n\t * }\n\t * });\n\t */\n\t extend: function (overrides) {\n\t // Spawn\n\t var subtype = create(this);\n\n\t // Augment\n\t if (overrides) {\n\t subtype.mixIn(overrides);\n\t }\n\n\t // Create default initializer\n\t if (!subtype.hasOwnProperty('init') || this.init === subtype.init) {\n\t subtype.init = function () {\n\t subtype.$super.init.apply(this, arguments);\n\t };\n\t }\n\n\t // Initializer's prototype is the subtype object\n\t subtype.init.prototype = subtype;\n\n\t // Reference supertype\n\t subtype.$super = this;\n\n\t return subtype;\n\t },\n\n\t /**\n\t * Extends this object and runs the init method.\n\t * Arguments to create() will be passed to init().\n\t *\n\t * @return {Object} The new object.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var instance = MyType.create();\n\t */\n\t create: function () {\n\t var instance = this.extend();\n\t instance.init.apply(instance, arguments);\n\n\t return instance;\n\t },\n\n\t /**\n\t * Initializes a newly created object.\n\t * Override this method to add some logic when your objects are created.\n\t *\n\t * @example\n\t *\n\t * var MyType = CryptoJS.lib.Base.extend({\n\t * init: function () {\n\t * // ...\n\t * }\n\t * });\n\t */\n\t init: function () {\n\t },\n\n\t /**\n\t * Copies properties into this object.\n\t *\n\t * @param {Object} properties The properties to mix in.\n\t *\n\t * @example\n\t *\n\t * MyType.mixIn({\n\t * field: 'value'\n\t * });\n\t */\n\t mixIn: function (properties) {\n\t for (var propertyName in properties) {\n\t if (properties.hasOwnProperty(propertyName)) {\n\t this[propertyName] = properties[propertyName];\n\t }\n\t }\n\n\t // IE won't copy toString using the loop above\n\t if (properties.hasOwnProperty('toString')) {\n\t this.toString = properties.toString;\n\t }\n\t },\n\n\t /**\n\t * Creates a copy of this object.\n\t *\n\t * @return {Object} The clone.\n\t *\n\t * @example\n\t *\n\t * var clone = instance.clone();\n\t */\n\t clone: function () {\n\t return this.init.prototype.extend(this);\n\t }\n\t };\n\t }());\n\n\t /**\n\t * An array of 32-bit words.\n\t *\n\t * @property {Array} words The array of 32-bit words.\n\t * @property {number} sigBytes The number of significant bytes in this word array.\n\t */\n\t var WordArray = C_lib.WordArray = Base.extend({\n\t /**\n\t * Initializes a newly created word array.\n\t *\n\t * @param {Array} words (Optional) An array of 32-bit words.\n\t * @param {number} sigBytes (Optional) The number of significant bytes in the words.\n\t *\n\t * @example\n\t *\n\t * var wordArray = CryptoJS.lib.WordArray.create();\n\t * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607]);\n\t * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607], 6);\n\t */\n\t init: function (words, sigBytes) {\n\t words = this.words = words || [];\n\n\t if (sigBytes != undefined) {\n\t this.sigBytes = sigBytes;\n\t } else {\n\t this.sigBytes = words.length * 4;\n\t }\n\t },\n\n\t /**\n\t * Converts this word array to a string.\n\t *\n\t * @param {Encoder} encoder (Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex\n\t *\n\t * @return {string} The stringified word array.\n\t *\n\t * @example\n\t *\n\t * var string = wordArray + '';\n\t * var string = wordArray.toString();\n\t * var string = wordArray.toString(CryptoJS.enc.Utf8);\n\t */\n\t toString: function (encoder) {\n\t return (encoder || Hex).stringify(this);\n\t },\n\n\t /**\n\t * Concatenates a word array to this word array.\n\t *\n\t * @param {WordArray} wordArray The word array to append.\n\t *\n\t * @return {WordArray} This word array.\n\t *\n\t * @example\n\t *\n\t * wordArray1.concat(wordArray2);\n\t */\n\t concat: function (wordArray) {\n\t // Shortcuts\n\t var thisWords = this.words;\n\t var thatWords = wordArray.words;\n\t var thisSigBytes = this.sigBytes;\n\t var thatSigBytes = wordArray.sigBytes;\n\n\t // Clamp excess bits\n\t this.clamp();\n\n\t // Concat\n\t if (thisSigBytes % 4) {\n\t // Copy one byte at a time\n\t for (var i = 0; i < thatSigBytes; i++) {\n\t var thatByte = (thatWords[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;\n\t thisWords[(thisSigBytes + i) >>> 2] |= thatByte << (24 - ((thisSigBytes + i) % 4) * 8);\n\t }\n\t } else {\n\t // Copy one word at a time\n\t for (var j = 0; j < thatSigBytes; j += 4) {\n\t thisWords[(thisSigBytes + j) >>> 2] = thatWords[j >>> 2];\n\t }\n\t }\n\t this.sigBytes += thatSigBytes;\n\n\t // Chainable\n\t return this;\n\t },\n\n\t /**\n\t * Removes insignificant bits.\n\t *\n\t * @example\n\t *\n\t * wordArray.clamp();\n\t */\n\t clamp: function () {\n\t // Shortcuts\n\t var words = this.words;\n\t var sigBytes = this.sigBytes;\n\n\t // Clamp\n\t words[sigBytes >>> 2] &= 0xffffffff << (32 - (sigBytes % 4) * 8);\n\t words.length = Math.ceil(sigBytes / 4);\n\t },\n\n\t /**\n\t * Creates a copy of this word array.\n\t *\n\t * @return {WordArray} The clone.\n\t *\n\t * @example\n\t *\n\t * var clone = wordArray.clone();\n\t */\n\t clone: function () {\n\t var clone = Base.clone.call(this);\n\t clone.words = this.words.slice(0);\n\n\t return clone;\n\t },\n\n\t /**\n\t * Creates a word array filled with random bytes.\n\t *\n\t * @param {number} nBytes The number of random bytes to generate.\n\t *\n\t * @return {WordArray} The random word array.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var wordArray = CryptoJS.lib.WordArray.random(16);\n\t */\n\t random: function (nBytes) {\n\t var words = [];\n\n\t for (var i = 0; i < nBytes; i += 4) {\n\t words.push(cryptoSecureRandomInt());\n\t }\n\n\t return new WordArray.init(words, nBytes);\n\t }\n\t });\n\n\t /**\n\t * Encoder namespace.\n\t */\n\t var C_enc = C.enc = {};\n\n\t /**\n\t * Hex encoding strategy.\n\t */\n\t var Hex = C_enc.Hex = {\n\t /**\n\t * Converts a word array to a hex string.\n\t *\n\t * @param {WordArray} wordArray The word array.\n\t *\n\t * @return {string} The hex string.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var hexString = CryptoJS.enc.Hex.stringify(wordArray);\n\t */\n\t stringify: function (wordArray) {\n\t // Shortcuts\n\t var words = wordArray.words;\n\t var sigBytes = wordArray.sigBytes;\n\n\t // Convert\n\t var hexChars = [];\n\t for (var i = 0; i < sigBytes; i++) {\n\t var bite = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;\n\t hexChars.push((bite >>> 4).toString(16));\n\t hexChars.push((bite & 0x0f).toString(16));\n\t }\n\n\t return hexChars.join('');\n\t },\n\n\t /**\n\t * Converts a hex string to a word array.\n\t *\n\t * @param {string} hexStr The hex string.\n\t *\n\t * @return {WordArray} The word array.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var wordArray = CryptoJS.enc.Hex.parse(hexString);\n\t */\n\t parse: function (hexStr) {\n\t // Shortcut\n\t var hexStrLength = hexStr.length;\n\n\t // Convert\n\t var words = [];\n\t for (var i = 0; i < hexStrLength; i += 2) {\n\t words[i >>> 3] |= parseInt(hexStr.substr(i, 2), 16) << (24 - (i % 8) * 4);\n\t }\n\n\t return new WordArray.init(words, hexStrLength / 2);\n\t }\n\t };\n\n\t /**\n\t * Latin1 encoding strategy.\n\t */\n\t var Latin1 = C_enc.Latin1 = {\n\t /**\n\t * Converts a word array to a Latin1 string.\n\t *\n\t * @param {WordArray} wordArray The word array.\n\t *\n\t * @return {string} The Latin1 string.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var latin1String = CryptoJS.enc.Latin1.stringify(wordArray);\n\t */\n\t stringify: function (wordArray) {\n\t // Shortcuts\n\t var words = wordArray.words;\n\t var sigBytes = wordArray.sigBytes;\n\n\t // Convert\n\t var latin1Chars = [];\n\t for (var i = 0; i < sigBytes; i++) {\n\t var bite = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;\n\t latin1Chars.push(String.fromCharCode(bite));\n\t }\n\n\t return latin1Chars.join('');\n\t },\n\n\t /**\n\t * Converts a Latin1 string to a word array.\n\t *\n\t * @param {string} latin1Str The Latin1 string.\n\t *\n\t * @return {WordArray} The word array.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var wordArray = CryptoJS.enc.Latin1.parse(latin1String);\n\t */\n\t parse: function (latin1Str) {\n\t // Shortcut\n\t var latin1StrLength = latin1Str.length;\n\n\t // Convert\n\t var words = [];\n\t for (var i = 0; i < latin1StrLength; i++) {\n\t words[i >>> 2] |= (latin1Str.charCodeAt(i) & 0xff) << (24 - (i % 4) * 8);\n\t }\n\n\t return new WordArray.init(words, latin1StrLength);\n\t }\n\t };\n\n\t /**\n\t * UTF-8 encoding strategy.\n\t */\n\t var Utf8 = C_enc.Utf8 = {\n\t /**\n\t * Converts a word array to a UTF-8 string.\n\t *\n\t * @param {WordArray} wordArray The word array.\n\t *\n\t * @return {string} The UTF-8 string.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var utf8String = CryptoJS.enc.Utf8.stringify(wordArray);\n\t */\n\t stringify: function (wordArray) {\n\t try {\n\t return decodeURIComponent(escape(Latin1.stringify(wordArray)));\n\t } catch (e) {\n\t throw new Error('Malformed UTF-8 data');\n\t }\n\t },\n\n\t /**\n\t * Converts a UTF-8 string to a word array.\n\t *\n\t * @param {string} utf8Str The UTF-8 string.\n\t *\n\t * @return {WordArray} The word array.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var wordArray = CryptoJS.enc.Utf8.parse(utf8String);\n\t */\n\t parse: function (utf8Str) {\n\t return Latin1.parse(unescape(encodeURIComponent(utf8Str)));\n\t }\n\t };\n\n\t /**\n\t * Abstract buffered block algorithm template.\n\t *\n\t * The property blockSize must be implemented in a concrete subtype.\n\t *\n\t * @property {number} _minBufferSize The number of blocks that should be kept unprocessed in the buffer. Default: 0\n\t */\n\t var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm = Base.extend({\n\t /**\n\t * Resets this block algorithm's data buffer to its initial state.\n\t *\n\t * @example\n\t *\n\t * bufferedBlockAlgorithm.reset();\n\t */\n\t reset: function () {\n\t // Initial values\n\t this._data = new WordArray.init();\n\t this._nDataBytes = 0;\n\t },\n\n\t /**\n\t * Adds new data to this block algorithm's buffer.\n\t *\n\t * @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8.\n\t *\n\t * @example\n\t *\n\t * bufferedBlockAlgorithm._append('data');\n\t * bufferedBlockAlgorithm._append(wordArray);\n\t */\n\t _append: function (data) {\n\t // Convert string to WordArray, else assume WordArray already\n\t if (typeof data == 'string') {\n\t data = Utf8.parse(data);\n\t }\n\n\t // Append\n\t this._data.concat(data);\n\t this._nDataBytes += data.sigBytes;\n\t },\n\n\t /**\n\t * Processes available data blocks.\n\t *\n\t * This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype.\n\t *\n\t * @param {boolean} doFlush Whether all blocks and partial blocks should be processed.\n\t *\n\t * @return {WordArray} The processed data.\n\t *\n\t * @example\n\t *\n\t * var processedData = bufferedBlockAlgorithm._process();\n\t * var processedData = bufferedBlockAlgorithm._process(!!'flush');\n\t */\n\t _process: function (doFlush) {\n\t var processedWords;\n\n\t // Shortcuts\n\t var data = this._data;\n\t var dataWords = data.words;\n\t var dataSigBytes = data.sigBytes;\n\t var blockSize = this.blockSize;\n\t var blockSizeBytes = blockSize * 4;\n\n\t // Count blocks ready\n\t var nBlocksReady = dataSigBytes / blockSizeBytes;\n\t if (doFlush) {\n\t // Round up to include partial blocks\n\t nBlocksReady = Math.ceil(nBlocksReady);\n\t } else {\n\t // Round down to include only full blocks,\n\t // less the number of blocks that must remain in the buffer\n\t nBlocksReady = Math.max((nBlocksReady | 0) - this._minBufferSize, 0);\n\t }\n\n\t // Count words ready\n\t var nWordsReady = nBlocksReady * blockSize;\n\n\t // Count bytes ready\n\t var nBytesReady = Math.min(nWordsReady * 4, dataSigBytes);\n\n\t // Process blocks\n\t if (nWordsReady) {\n\t for (var offset = 0; offset < nWordsReady; offset += blockSize) {\n\t // Perform concrete-algorithm logic\n\t this._doProcessBlock(dataWords, offset);\n\t }\n\n\t // Remove processed words\n\t processedWords = dataWords.splice(0, nWordsReady);\n\t data.sigBytes -= nBytesReady;\n\t }\n\n\t // Return processed words\n\t return new WordArray.init(processedWords, nBytesReady);\n\t },\n\n\t /**\n\t * Creates a copy of this object.\n\t *\n\t * @return {Object} The clone.\n\t *\n\t * @example\n\t *\n\t * var clone = bufferedBlockAlgorithm.clone();\n\t */\n\t clone: function () {\n\t var clone = Base.clone.call(this);\n\t clone._data = this._data.clone();\n\n\t return clone;\n\t },\n\n\t _minBufferSize: 0\n\t });\n\n\t /**\n\t * Abstract hasher template.\n\t *\n\t * @property {number} blockSize The number of 32-bit words this hasher operates on. Default: 16 (512 bits)\n\t */\n\t var Hasher = C_lib.Hasher = BufferedBlockAlgorithm.extend({\n\t /**\n\t * Configuration options.\n\t */\n\t cfg: Base.extend(),\n\n\t /**\n\t * Initializes a newly created hasher.\n\t *\n\t * @param {Object} cfg (Optional) The configuration options to use for this hash computation.\n\t *\n\t * @example\n\t *\n\t * var hasher = CryptoJS.algo.SHA256.create();\n\t */\n\t init: function (cfg) {\n\t // Apply config defaults\n\t this.cfg = this.cfg.extend(cfg);\n\n\t // Set initial values\n\t this.reset();\n\t },\n\n\t /**\n\t * Resets this hasher to its initial state.\n\t *\n\t * @example\n\t *\n\t * hasher.reset();\n\t */\n\t reset: function () {\n\t // Reset data buffer\n\t BufferedBlockAlgorithm.reset.call(this);\n\n\t // Perform concrete-hasher logic\n\t this._doReset();\n\t },\n\n\t /**\n\t * Updates this hasher with a message.\n\t *\n\t * @param {WordArray|string} messageUpdate The message to append.\n\t *\n\t * @return {Hasher} This hasher.\n\t *\n\t * @example\n\t *\n\t * hasher.update('message');\n\t * hasher.update(wordArray);\n\t */\n\t update: function (messageUpdate) {\n\t // Append\n\t this._append(messageUpdate);\n\n\t // Update the hash\n\t this._process();\n\n\t // Chainable\n\t return this;\n\t },\n\n\t /**\n\t * Finalizes the hash computation.\n\t * Note that the finalize operation is effectively a destructive, read-once operation.\n\t *\n\t * @param {WordArray|string} messageUpdate (Optional) A final message update.\n\t *\n\t * @return {WordArray} The hash.\n\t *\n\t * @example\n\t *\n\t * var hash = hasher.finalize();\n\t * var hash = hasher.finalize('message');\n\t * var hash = hasher.finalize(wordArray);\n\t */\n\t finalize: function (messageUpdate) {\n\t // Final message update\n\t if (messageUpdate) {\n\t this._append(messageUpdate);\n\t }\n\n\t // Perform concrete-hasher logic\n\t var hash = this._doFinalize();\n\n\t return hash;\n\t },\n\n\t blockSize: 512/32,\n\n\t /**\n\t * Creates a shortcut function to a hasher's object interface.\n\t *\n\t * @param {Hasher} hasher The hasher to create a helper for.\n\t *\n\t * @return {Function} The shortcut function.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256);\n\t */\n\t _createHelper: function (hasher) {\n\t return function (message, cfg) {\n\t return new hasher.init(cfg).finalize(message);\n\t };\n\t },\n\n\t /**\n\t * Creates a shortcut function to the HMAC's object interface.\n\t *\n\t * @param {Hasher} hasher The hasher to use in this HMAC helper.\n\t *\n\t * @return {Function} The shortcut function.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256);\n\t */\n\t _createHmacHelper: function (hasher) {\n\t return function (message, key) {\n\t return new C_algo.HMAC.init(hasher, key).finalize(message);\n\t };\n\t }\n\t });\n\n\t /**\n\t * Algorithm namespace.\n\t */\n\t var C_algo = C.algo = {};\n\n\t return C;\n\t}(Math));\n\n\n\treturn CryptoJS;\n\n}));\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/crypto-js/core.js?"); /***/ }), /***/ "./node_modules/crypto-js/enc-base64.js": /*!**********************************************!*\ !*** ./node_modules/crypto-js/enc-base64.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval(";(function (root, factory) {\n\tif (true) {\n\t\t// CommonJS\n\t\tmodule.exports = exports = factory(__webpack_require__(/*! ./core */ \"./node_modules/crypto-js/core.js\"));\n\t}\n\telse {}\n}(this, function (CryptoJS) {\n\n\t(function () {\n\t // Shortcuts\n\t var C = CryptoJS;\n\t var C_lib = C.lib;\n\t var WordArray = C_lib.WordArray;\n\t var C_enc = C.enc;\n\n\t /**\n\t * Base64 encoding strategy.\n\t */\n\t var Base64 = C_enc.Base64 = {\n\t /**\n\t * Converts a word array to a Base64 string.\n\t *\n\t * @param {WordArray} wordArray The word array.\n\t *\n\t * @return {string} The Base64 string.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var base64String = CryptoJS.enc.Base64.stringify(wordArray);\n\t */\n\t stringify: function (wordArray) {\n\t // Shortcuts\n\t var words = wordArray.words;\n\t var sigBytes = wordArray.sigBytes;\n\t var map = this._map;\n\n\t // Clamp excess bits\n\t wordArray.clamp();\n\n\t // Convert\n\t var base64Chars = [];\n\t for (var i = 0; i < sigBytes; i += 3) {\n\t var byte1 = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;\n\t var byte2 = (words[(i + 1) >>> 2] >>> (24 - ((i + 1) % 4) * 8)) & 0xff;\n\t var byte3 = (words[(i + 2) >>> 2] >>> (24 - ((i + 2) % 4) * 8)) & 0xff;\n\n\t var triplet = (byte1 << 16) | (byte2 << 8) | byte3;\n\n\t for (var j = 0; (j < 4) && (i + j * 0.75 < sigBytes); j++) {\n\t base64Chars.push(map.charAt((triplet >>> (6 * (3 - j))) & 0x3f));\n\t }\n\t }\n\n\t // Add padding\n\t var paddingChar = map.charAt(64);\n\t if (paddingChar) {\n\t while (base64Chars.length % 4) {\n\t base64Chars.push(paddingChar);\n\t }\n\t }\n\n\t return base64Chars.join('');\n\t },\n\n\t /**\n\t * Converts a Base64 string to a word array.\n\t *\n\t * @param {string} base64Str The Base64 string.\n\t *\n\t * @return {WordArray} The word array.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var wordArray = CryptoJS.enc.Base64.parse(base64String);\n\t */\n\t parse: function (base64Str) {\n\t // Shortcuts\n\t var base64StrLength = base64Str.length;\n\t var map = this._map;\n\t var reverseMap = this._reverseMap;\n\n\t if (!reverseMap) {\n\t reverseMap = this._reverseMap = [];\n\t for (var j = 0; j < map.length; j++) {\n\t reverseMap[map.charCodeAt(j)] = j;\n\t }\n\t }\n\n\t // Ignore padding\n\t var paddingChar = map.charAt(64);\n\t if (paddingChar) {\n\t var paddingIndex = base64Str.indexOf(paddingChar);\n\t if (paddingIndex !== -1) {\n\t base64StrLength = paddingIndex;\n\t }\n\t }\n\n\t // Convert\n\t return parseLoop(base64Str, base64StrLength, reverseMap);\n\n\t },\n\n\t _map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='\n\t };\n\n\t function parseLoop(base64Str, base64StrLength, reverseMap) {\n\t var words = [];\n\t var nBytes = 0;\n\t for (var i = 0; i < base64StrLength; i++) {\n\t if (i % 4) {\n\t var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << ((i % 4) * 2);\n\t var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> (6 - (i % 4) * 2);\n\t var bitsCombined = bits1 | bits2;\n\t words[nBytes >>> 2] |= bitsCombined << (24 - (nBytes % 4) * 8);\n\t nBytes++;\n\t }\n\t }\n\t return WordArray.create(words, nBytes);\n\t }\n\t}());\n\n\n\treturn CryptoJS.enc.Base64;\n\n}));\n\n//# sourceURL=webpack:///./node_modules/crypto-js/enc-base64.js?"); /***/ }), /***/ "./node_modules/crypto-js/hmac-sha256.js": /*!***********************************************!*\ !*** ./node_modules/crypto-js/hmac-sha256.js ***! \***********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval(";(function (root, factory, undef) {\n\tif (true) {\n\t\t// CommonJS\n\t\tmodule.exports = exports = factory(__webpack_require__(/*! ./core */ \"./node_modules/crypto-js/core.js\"), __webpack_require__(/*! ./sha256 */ \"./node_modules/crypto-js/sha256.js\"), __webpack_require__(/*! ./hmac */ \"./node_modules/crypto-js/hmac.js\"));\n\t}\n\telse {}\n}(this, function (CryptoJS) {\n\n\treturn CryptoJS.HmacSHA256;\n\n}));\n\n//# sourceURL=webpack:///./node_modules/crypto-js/hmac-sha256.js?"); /***/ }), /***/ "./node_modules/crypto-js/hmac.js": /*!****************************************!*\ !*** ./node_modules/crypto-js/hmac.js ***! \****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval(";(function (root, factory) {\n\tif (true) {\n\t\t// CommonJS\n\t\tmodule.exports = exports = factory(__webpack_require__(/*! ./core */ \"./node_modules/crypto-js/core.js\"));\n\t}\n\telse {}\n}(this, function (CryptoJS) {\n\n\t(function () {\n\t // Shortcuts\n\t var C = CryptoJS;\n\t var C_lib = C.lib;\n\t var Base = C_lib.Base;\n\t var C_enc = C.enc;\n\t var Utf8 = C_enc.Utf8;\n\t var C_algo = C.algo;\n\n\t /**\n\t * HMAC algorithm.\n\t */\n\t var HMAC = C_algo.HMAC = Base.extend({\n\t /**\n\t * Initializes a newly created HMAC.\n\t *\n\t * @param {Hasher} hasher The hash algorithm to use.\n\t * @param {WordArray|string} key The secret key.\n\t *\n\t * @example\n\t *\n\t * var hmacHasher = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, key);\n\t */\n\t init: function (hasher, key) {\n\t // Init hasher\n\t hasher = this._hasher = new hasher.init();\n\n\t // Convert string to WordArray, else assume WordArray already\n\t if (typeof key == 'string') {\n\t key = Utf8.parse(key);\n\t }\n\n\t // Shortcuts\n\t var hasherBlockSize = hasher.blockSize;\n\t var hasherBlockSizeBytes = hasherBlockSize * 4;\n\n\t // Allow arbitrary length keys\n\t if (key.sigBytes > hasherBlockSizeBytes) {\n\t key = hasher.finalize(key);\n\t }\n\n\t // Clamp excess bits\n\t key.clamp();\n\n\t // Clone key for inner and outer pads\n\t var oKey = this._oKey = key.clone();\n\t var iKey = this._iKey = key.clone();\n\n\t // Shortcuts\n\t var oKeyWords = oKey.words;\n\t var iKeyWords = iKey.words;\n\n\t // XOR keys with pad constants\n\t for (var i = 0; i < hasherBlockSize; i++) {\n\t oKeyWords[i] ^= 0x5c5c5c5c;\n\t iKeyWords[i] ^= 0x36363636;\n\t }\n\t oKey.sigBytes = iKey.sigBytes = hasherBlockSizeBytes;\n\n\t // Set initial values\n\t this.reset();\n\t },\n\n\t /**\n\t * Resets this HMAC to its initial state.\n\t *\n\t * @example\n\t *\n\t * hmacHasher.reset();\n\t */\n\t reset: function () {\n\t // Shortcut\n\t var hasher = this._hasher;\n\n\t // Reset\n\t hasher.reset();\n\t hasher.update(this._iKey);\n\t },\n\n\t /**\n\t * Updates this HMAC with a message.\n\t *\n\t * @param {WordArray|string} messageUpdate The message to append.\n\t *\n\t * @return {HMAC} This HMAC instance.\n\t *\n\t * @example\n\t *\n\t * hmacHasher.update('message');\n\t * hmacHasher.update(wordArray);\n\t */\n\t update: function (messageUpdate) {\n\t this._hasher.update(messageUpdate);\n\n\t // Chainable\n\t return this;\n\t },\n\n\t /**\n\t * Finalizes the HMAC computation.\n\t * Note that the finalize operation is effectively a destructive, read-once operation.\n\t *\n\t * @param {WordArray|string} messageUpdate (Optional) A final message update.\n\t *\n\t * @return {WordArray} The HMAC.\n\t *\n\t * @example\n\t *\n\t * var hmac = hmacHasher.finalize();\n\t * var hmac = hmacHasher.finalize('message');\n\t * var hmac = hmacHasher.finalize(wordArray);\n\t */\n\t finalize: function (messageUpdate) {\n\t // Shortcut\n\t var hasher = this._hasher;\n\n\t // Compute HMAC\n\t var innerHash = hasher.finalize(messageUpdate);\n\t hasher.reset();\n\t var hmac = hasher.finalize(this._oKey.clone().concat(innerHash));\n\n\t return hmac;\n\t }\n\t });\n\t}());\n\n\n}));\n\n//# sourceURL=webpack:///./node_modules/crypto-js/hmac.js?"); /***/ }), /***/ "./node_modules/crypto-js/lib-typedarrays.js": /*!***************************************************!*\ !*** ./node_modules/crypto-js/lib-typedarrays.js ***! \***************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval(";(function (root, factory) {\n\tif (true) {\n\t\t// CommonJS\n\t\tmodule.exports = exports = factory(__webpack_require__(/*! ./core */ \"./node_modules/crypto-js/core.js\"));\n\t}\n\telse {}\n}(this, function (CryptoJS) {\n\n\t(function () {\n\t // Check if typed arrays are supported\n\t if (typeof ArrayBuffer != 'function') {\n\t return;\n\t }\n\n\t // Shortcuts\n\t var C = CryptoJS;\n\t var C_lib = C.lib;\n\t var WordArray = C_lib.WordArray;\n\n\t // Reference original init\n\t var superInit = WordArray.init;\n\n\t // Augment WordArray.init to handle typed arrays\n\t var subInit = WordArray.init = function (typedArray) {\n\t // Convert buffers to uint8\n\t if (typedArray instanceof ArrayBuffer) {\n\t typedArray = new Uint8Array(typedArray);\n\t }\n\n\t // Convert other array views to uint8\n\t if (\n\t typedArray instanceof Int8Array ||\n\t (typeof Uint8ClampedArray !== \"undefined\" && typedArray instanceof Uint8ClampedArray) ||\n\t typedArray instanceof Int16Array ||\n\t typedArray instanceof Uint16Array ||\n\t typedArray instanceof Int32Array ||\n\t typedArray instanceof Uint32Array ||\n\t typedArray instanceof Float32Array ||\n\t typedArray instanceof Float64Array\n\t ) {\n\t typedArray = new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength);\n\t }\n\n\t // Handle Uint8Array\n\t if (typedArray instanceof Uint8Array) {\n\t // Shortcut\n\t var typedArrayByteLength = typedArray.byteLength;\n\n\t // Extract bytes\n\t var words = [];\n\t for (var i = 0; i < typedArrayByteLength; i++) {\n\t words[i >>> 2] |= typedArray[i] << (24 - (i % 4) * 8);\n\t }\n\n\t // Initialize this word array\n\t superInit.call(this, words, typedArrayByteLength);\n\t } else {\n\t // Else call normal init\n\t superInit.apply(this, arguments);\n\t }\n\t };\n\n\t subInit.prototype = WordArray;\n\t}());\n\n\n\treturn CryptoJS.lib.WordArray;\n\n}));\n\n//# sourceURL=webpack:///./node_modules/crypto-js/lib-typedarrays.js?"); /***/ }), /***/ "./node_modules/crypto-js/sha256.js": /*!******************************************!*\ !*** ./node_modules/crypto-js/sha256.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval(";(function (root, factory) {\n\tif (true) {\n\t\t// CommonJS\n\t\tmodule.exports = exports = factory(__webpack_require__(/*! ./core */ \"./node_modules/crypto-js/core.js\"));\n\t}\n\telse {}\n}(this, function (CryptoJS) {\n\n\t(function (Math) {\n\t // Shortcuts\n\t var C = CryptoJS;\n\t var C_lib = C.lib;\n\t var WordArray = C_lib.WordArray;\n\t var Hasher = C_lib.Hasher;\n\t var C_algo = C.algo;\n\n\t // Initialization and round constants tables\n\t var H = [];\n\t var K = [];\n\n\t // Compute constants\n\t (function () {\n\t function isPrime(n) {\n\t var sqrtN = Math.sqrt(n);\n\t for (var factor = 2; factor <= sqrtN; factor++) {\n\t if (!(n % factor)) {\n\t return false;\n\t }\n\t }\n\n\t return true;\n\t }\n\n\t function getFractionalBits(n) {\n\t return ((n - (n | 0)) * 0x100000000) | 0;\n\t }\n\n\t var n = 2;\n\t var nPrime = 0;\n\t while (nPrime < 64) {\n\t if (isPrime(n)) {\n\t if (nPrime < 8) {\n\t H[nPrime] = getFractionalBits(Math.pow(n, 1 / 2));\n\t }\n\t K[nPrime] = getFractionalBits(Math.pow(n, 1 / 3));\n\n\t nPrime++;\n\t }\n\n\t n++;\n\t }\n\t }());\n\n\t // Reusable object\n\t var W = [];\n\n\t /**\n\t * SHA-256 hash algorithm.\n\t */\n\t var SHA256 = C_algo.SHA256 = Hasher.extend({\n\t _doReset: function () {\n\t this._hash = new WordArray.init(H.slice(0));\n\t },\n\n\t _doProcessBlock: function (M, offset) {\n\t // Shortcut\n\t var H = this._hash.words;\n\n\t // Working variables\n\t var a = H[0];\n\t var b = H[1];\n\t var c = H[2];\n\t var d = H[3];\n\t var e = H[4];\n\t var f = H[5];\n\t var g = H[6];\n\t var h = H[7];\n\n\t // Computation\n\t for (var i = 0; i < 64; i++) {\n\t if (i < 16) {\n\t W[i] = M[offset + i] | 0;\n\t } else {\n\t var gamma0x = W[i - 15];\n\t var gamma0 = ((gamma0x << 25) | (gamma0x >>> 7)) ^\n\t ((gamma0x << 14) | (gamma0x >>> 18)) ^\n\t (gamma0x >>> 3);\n\n\t var gamma1x = W[i - 2];\n\t var gamma1 = ((gamma1x << 15) | (gamma1x >>> 17)) ^\n\t ((gamma1x << 13) | (gamma1x >>> 19)) ^\n\t (gamma1x >>> 10);\n\n\t W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16];\n\t }\n\n\t var ch = (e & f) ^ (~e & g);\n\t var maj = (a & b) ^ (a & c) ^ (b & c);\n\n\t var sigma0 = ((a << 30) | (a >>> 2)) ^ ((a << 19) | (a >>> 13)) ^ ((a << 10) | (a >>> 22));\n\t var sigma1 = ((e << 26) | (e >>> 6)) ^ ((e << 21) | (e >>> 11)) ^ ((e << 7) | (e >>> 25));\n\n\t var t1 = h + sigma1 + ch + K[i] + W[i];\n\t var t2 = sigma0 + maj;\n\n\t h = g;\n\t g = f;\n\t f = e;\n\t e = (d + t1) | 0;\n\t d = c;\n\t c = b;\n\t b = a;\n\t a = (t1 + t2) | 0;\n\t }\n\n\t // Intermediate hash value\n\t H[0] = (H[0] + a) | 0;\n\t H[1] = (H[1] + b) | 0;\n\t H[2] = (H[2] + c) | 0;\n\t H[3] = (H[3] + d) | 0;\n\t H[4] = (H[4] + e) | 0;\n\t H[5] = (H[5] + f) | 0;\n\t H[6] = (H[6] + g) | 0;\n\t H[7] = (H[7] + h) | 0;\n\t },\n\n\t _doFinalize: function () {\n\t // Shortcuts\n\t var data = this._data;\n\t var dataWords = data.words;\n\n\t var nBitsTotal = this._nDataBytes * 8;\n\t var nBitsLeft = data.sigBytes * 8;\n\n\t // Add padding\n\t dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32);\n\t dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = Math.floor(nBitsTotal / 0x100000000);\n\t dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = nBitsTotal;\n\t data.sigBytes = dataWords.length * 4;\n\n\t // Hash final blocks\n\t this._process();\n\n\t // Return final computed hash\n\t return this._hash;\n\t },\n\n\t clone: function () {\n\t var clone = Hasher.clone.call(this);\n\t clone._hash = this._hash.clone();\n\n\t return clone;\n\t }\n\t });\n\n\t /**\n\t * Shortcut function to the hasher's object interface.\n\t *\n\t * @param {WordArray|string} message The message to hash.\n\t *\n\t * @return {WordArray} The hash.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var hash = CryptoJS.SHA256('message');\n\t * var hash = CryptoJS.SHA256(wordArray);\n\t */\n\t C.SHA256 = Hasher._createHelper(SHA256);\n\n\t /**\n\t * Shortcut function to the HMAC's object interface.\n\t *\n\t * @param {WordArray|string} message The message to hash.\n\t * @param {WordArray|string} key The secret key.\n\t *\n\t * @return {WordArray} The HMAC.\n\t *\n\t * @static\n\t *\n\t * @example\n\t *\n\t * var hmac = CryptoJS.HmacSHA256(message, key);\n\t */\n\t C.HmacSHA256 = Hasher._createHmacHelper(SHA256);\n\t}(Math));\n\n\n\treturn CryptoJS.SHA256;\n\n}));\n\n//# sourceURL=webpack:///./node_modules/crypto-js/sha256.js?"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VAlert/VAlert.sass": /*!****************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VAlert/VAlert.sass ***! \****************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-alert .v-alert--prominent .v-alert__icon:after {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-alert .v-alert--prominent .v-alert__icon:after {\\n background: rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-sheet.v-alert {\\n border-radius: 4px;\\n}\\n.v-sheet.v-alert:not(.v-sheet--outlined) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-alert.v-sheet--shaped {\\n border-radius: 16px 4px;\\n}\\n\\n.v-alert {\\n display: block;\\n font-size: 16px;\\n margin-bottom: 16px;\\n padding: 16px;\\n position: relative;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-alert:not(.v-sheet--tile) {\\n border-radius: 4px;\\n}\\n.v-application--is-ltr .v-alert > .v-icon,\\n.v-application--is-ltr .v-alert > .v-alert__content {\\n margin-right: 16px;\\n}\\n.v-application--is-rtl .v-alert > .v-icon,\\n.v-application--is-rtl .v-alert > .v-alert__content {\\n margin-left: 16px;\\n}\\n.v-application--is-ltr .v-alert > .v-icon + .v-alert__content {\\n margin-right: 0;\\n}\\n.v-application--is-rtl .v-alert > .v-icon + .v-alert__content {\\n margin-left: 0;\\n}\\n.v-application--is-ltr .v-alert > .v-alert__content + .v-icon {\\n margin-right: 0;\\n}\\n.v-application--is-rtl .v-alert > .v-alert__content + .v-icon {\\n margin-left: 0;\\n}\\n\\n.v-alert__border {\\n border-style: solid;\\n border-width: 4px;\\n content: \\\"\\\";\\n position: absolute;\\n}\\n.v-alert__border:not(.v-alert__border--has-color) {\\n opacity: 0.26;\\n}\\n.v-alert__border--left, .v-alert__border--right {\\n bottom: 0;\\n top: 0;\\n}\\n.v-alert__border--bottom, .v-alert__border--top {\\n left: 0;\\n right: 0;\\n}\\n.v-alert__border--bottom {\\n border-bottom-left-radius: inherit;\\n border-bottom-right-radius: inherit;\\n bottom: 0;\\n}\\n.v-application--is-ltr .v-alert__border--left {\\n border-top-left-radius: inherit;\\n border-bottom-left-radius: inherit;\\n left: 0;\\n}\\n.v-application--is-rtl .v-alert__border--left {\\n border-top-right-radius: inherit;\\n border-bottom-right-radius: inherit;\\n right: 0;\\n}\\n.v-application--is-ltr .v-alert__border--right {\\n border-top-right-radius: inherit;\\n border-bottom-right-radius: inherit;\\n right: 0;\\n}\\n.v-application--is-rtl .v-alert__border--right {\\n border-top-left-radius: inherit;\\n border-bottom-left-radius: inherit;\\n left: 0;\\n}\\n.v-alert__border--top {\\n border-top-left-radius: inherit;\\n border-top-right-radius: inherit;\\n top: 0;\\n}\\n\\n.v-alert__content {\\n flex: 1 1 auto;\\n}\\n\\n.v-application--is-ltr .v-alert__dismissible {\\n margin: -16px -8px -16px 8px;\\n}\\n.v-application--is-rtl .v-alert__dismissible {\\n margin: -16px 8px -16px -8px;\\n}\\n\\n.v-alert__icon {\\n align-self: flex-start;\\n border-radius: 50%;\\n height: 24px;\\n min-width: 24px;\\n position: relative;\\n}\\n.v-application--is-ltr .v-alert__icon {\\n margin-right: 16px;\\n}\\n.v-application--is-rtl .v-alert__icon {\\n margin-left: 16px;\\n}\\n.v-alert__icon.v-icon {\\n font-size: 24px;\\n}\\n\\n.v-alert__wrapper {\\n align-items: center;\\n border-radius: inherit;\\n display: flex;\\n}\\n\\n.v-application--is-ltr .v-alert--border.v-alert--prominent .v-alert__icon {\\n margin-left: 8px;\\n}\\n.v-application--is-rtl .v-alert--border.v-alert--prominent .v-alert__icon {\\n margin-right: 8px;\\n}\\n\\n.v-alert--dense {\\n padding-top: 8px;\\n padding-bottom: 8px;\\n}\\n.v-alert--dense .v-alert__border {\\n border-width: medium;\\n}\\n\\n.v-alert--outlined {\\n background: transparent !important;\\n border: thin solid currentColor !important;\\n}\\n.v-alert--outlined .v-alert__icon {\\n color: inherit !important;\\n}\\n\\n.v-alert--prominent .v-alert__icon {\\n align-self: center;\\n height: 48px;\\n min-width: 48px;\\n}\\n.v-alert--prominent .v-alert__icon.v-icon {\\n font-size: 32px;\\n}\\n.v-alert--prominent .v-alert__icon.v-icon:after {\\n background: currentColor !important;\\n border-radius: 50%;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0.16;\\n position: absolute;\\n right: 0;\\n top: 0;\\n}\\n.v-alert--prominent.v-alert--dense .v-alert__icon.v-icon::after {\\n transform: scale(1);\\n}\\n\\n.v-alert--text {\\n background: transparent !important;\\n}\\n.v-alert--text:before {\\n background-color: currentColor;\\n border-radius: inherit;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0.12;\\n position: absolute;\\n pointer-events: none;\\n right: 0;\\n top: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VAlert/VAlert.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VApp/VApp.sass": /*!************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VApp/VApp.sass ***! \************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-application {\\n background: #FFFFFF;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-application .text--primary {\\n color: rgba(0, 0, 0, 0.87) !important;\\n}\\n.theme--light.v-application .text--secondary {\\n color: rgba(0, 0, 0, 0.6) !important;\\n}\\n.theme--light.v-application .text--disabled {\\n color: rgba(0, 0, 0, 0.38) !important;\\n}\\n\\n.theme--dark.v-application {\\n background: #121212;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-application .text--primary {\\n color: #FFFFFF !important;\\n}\\n.theme--dark.v-application .text--secondary {\\n color: rgba(255, 255, 255, 0.7) !important;\\n}\\n.theme--dark.v-application .text--disabled {\\n color: rgba(255, 255, 255, 0.5) !important;\\n}\\n\\n.v-application {\\n display: flex;\\n position: relative;\\n}\\n.v-application a {\\n cursor: pointer;\\n}\\n.v-application--is-rtl {\\n direction: rtl;\\n}\\n.v-application--wrap {\\n flex: 1 1 auto;\\n backface-visibility: hidden;\\n display: flex;\\n flex-direction: column;\\n min-height: 100vh;\\n max-width: 100%;\\n position: relative;\\n}\\n\\n@-moz-document url-prefix() {\\n @media print {\\n .v-application {\\n display: block;\\n }\\n .v-application--wrap {\\n display: block;\\n }\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VApp/VApp.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VAppBar/VAppBar.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VAppBar/VAppBar.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-app-bar.v-toolbar.v-sheet {\\n background-color: #f5f5f5;\\n}\\n\\n.theme--dark.v-app-bar.v-toolbar.v-sheet {\\n background-color: #272727;\\n}\\n\\n.v-sheet.v-app-bar.v-toolbar {\\n border-radius: 0;\\n}\\n.v-sheet.v-app-bar.v-toolbar:not(.v-sheet--outlined) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-app-bar.v-toolbar.v-sheet--shaped {\\n border-radius: 16px 0;\\n}\\n\\n.v-app-bar:not([data-booted=true]) {\\n transition: none !important;\\n}\\n\\n.v-app-bar.v-app-bar--fixed {\\n position: fixed;\\n top: 0;\\n z-index: 5;\\n}\\n\\n.v-app-bar.v-app-bar.v-app-bar--hide-shadow {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-app-bar--fade-img-on-scroll .v-toolbar__image .v-image__image {\\n transition: 0.4s opacity cubic-bezier(0.4, 0, 0.2, 1);\\n}\\n\\n.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll .v-toolbar__image {\\n will-change: opacity;\\n}\\n.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll.v-app-bar--collapse-on-scroll .v-toolbar__extension {\\n display: none;\\n}\\n.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll.v-app-bar--is-scrolled .v-toolbar__title {\\n padding-top: 9px;\\n}\\n.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll.v-app-bar--is-scrolled:not(.v-app-bar--bottom) .v-toolbar__title {\\n padding-bottom: 9px;\\n}\\n\\n.v-app-bar.v-app-bar--shrink-on-scroll .v-toolbar__title {\\n font-size: inherit;\\n}\\n\\n.v-app-bar-title__placeholder, .v-app-bar-title__content {\\n overflow: hidden;\\n text-overflow: ellipsis;\\n white-space: nowrap;\\n}\\n.v-app-bar-title__content {\\n position: absolute;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VAppBar/VAppBar.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VAutocomplete/VAutocomplete.sass": /*!******************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VAutocomplete/VAutocomplete.sass ***! \******************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-autocomplete.v-input > .v-input__control > .v-input__slot {\\n cursor: text;\\n}\\n.v-autocomplete input {\\n align-self: center;\\n}\\n.v-autocomplete.v-select.v-input--is-focused input {\\n min-width: 64px;\\n}\\n.v-autocomplete:not(.v-input--is-focused).v-select--chips input {\\n max-height: 0;\\n padding: 0;\\n}\\n.v-autocomplete--is-selecting-index input {\\n opacity: 0;\\n}\\n.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo):not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__slot > input {\\n margin-top: 24px;\\n}\\n.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo):not(.v-text-field--single-line):not(.v-text-field--outlined).v-input--dense .v-select__slot > input {\\n margin-top: 20px;\\n}\\n.v-autocomplete__content.v-menu__content {\\n border-radius: 0;\\n}\\n.v-autocomplete__content.v-menu__content .v-card {\\n border-radius: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VAutocomplete/VAutocomplete.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VAvatar/VAvatar.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VAvatar/VAvatar.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-avatar {\\n align-items: center;\\n border-radius: 50%;\\n display: inline-flex;\\n justify-content: center;\\n line-height: normal;\\n position: relative;\\n text-align: center;\\n vertical-align: middle;\\n overflow: hidden;\\n}\\n.v-avatar img,\\n.v-avatar svg,\\n.v-avatar .v-icon,\\n.v-avatar .v-image,\\n.v-avatar .v-responsive__content {\\n border-radius: inherit;\\n display: inline-flex;\\n height: inherit;\\n width: inherit;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VAvatar/VAvatar.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VBadge/VBadge.sass": /*!****************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VBadge/VBadge.sass ***! \****************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-badge .v-badge__badge::after {\\n border-color: #FFFFFF;\\n}\\n\\n.theme--dark.v-badge .v-badge__badge::after {\\n border-color: #1E1E1E;\\n}\\n\\n.v-badge {\\n display: inline-block;\\n line-height: 1;\\n position: relative;\\n}\\n.v-badge__badge {\\n border-radius: 10px;\\n color: #FFFFFF;\\n display: inline-block;\\n font-size: 12px;\\n height: 20px;\\n letter-spacing: 0;\\n line-height: 1;\\n min-width: 20px;\\n padding: 4px 6px;\\n pointer-events: auto;\\n position: absolute;\\n text-align: center;\\n text-indent: 0;\\n top: auto;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n white-space: nowrap;\\n}\\n.v-application--is-ltr .v-badge__badge {\\n right: auto;\\n}\\n.v-application--is-rtl .v-badge__badge {\\n left: auto;\\n}\\n.v-badge__badge .v-icon {\\n color: inherit;\\n font-size: 12px;\\n height: 12px;\\n margin: 0 -2px;\\n width: 12px;\\n}\\n.v-badge__badge .v-img {\\n height: 12px;\\n width: 12px;\\n}\\n.v-badge__wrapper {\\n flex: 0 1;\\n height: 100%;\\n left: 0;\\n pointer-events: none;\\n position: absolute;\\n top: 0;\\n width: 100%;\\n}\\n.v-badge--avatar .v-badge__badge {\\n padding: 0;\\n}\\n.v-badge--avatar .v-badge__badge .v-avatar {\\n height: 20px !important;\\n min-width: 0 !important;\\n max-width: 20px !important;\\n}\\n.v-badge--bordered .v-badge__badge::after {\\n border-radius: inherit;\\n border-width: 2px;\\n border-style: solid;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transform: scale(1.15);\\n}\\n.v-badge--dot .v-badge__badge {\\n border-radius: 4.5px;\\n height: 9px;\\n min-width: 0;\\n padding: 0;\\n width: 9px;\\n}\\n.v-badge--dot .v-badge__badge::after {\\n border-width: 1.5px;\\n}\\n.v-badge--icon .v-badge__badge {\\n padding: 4px 6px;\\n}\\n.v-badge--inline {\\n align-items: center;\\n display: inline-flex;\\n justify-content: center;\\n}\\n.v-badge--inline .v-badge__badge,\\n.v-badge--inline .v-badge__wrapper {\\n position: relative;\\n}\\n.v-badge--inline .v-badge__wrapper {\\n margin: 0 4px;\\n}\\n.v-badge--tile .v-badge__badge {\\n border-radius: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VBadge/VBadge.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VBanner/VBanner.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VBanner/VBanner.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-banner.v-sheet {\\n background-color: transparent;\\n}\\n.theme--light.v-banner.v-sheet:not(.v-sheet--outlined):not(.v-sheet--shaped) .v-banner__wrapper {\\n border-bottom: thin solid rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-banner.v-sheet {\\n background-color: transparent;\\n}\\n.theme--dark.v-banner.v-sheet:not(.v-sheet--outlined):not(.v-sheet--shaped) .v-banner__wrapper {\\n border-bottom: thin solid rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-sheet.v-banner {\\n border-radius: 0;\\n}\\n.v-sheet.v-banner:not(.v-sheet--outlined) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-banner.v-sheet--shaped {\\n border-radius: 16px 0;\\n}\\n\\n.v-banner {\\n position: relative;\\n transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);\\n}\\n\\n.v-banner__actions {\\n align-items: center;\\n align-self: flex-end;\\n display: flex;\\n flex: 1 0 auto;\\n justify-content: flex-end;\\n margin-bottom: -8px;\\n}\\n.v-application--is-ltr .v-banner__actions {\\n margin-left: 90px;\\n}\\n.v-application--is-rtl .v-banner__actions {\\n margin-right: 90px;\\n}\\n.v-application--is-ltr .v-banner__actions > * {\\n margin-left: 8px;\\n}\\n.v-application--is-rtl .v-banner__actions > * {\\n margin-right: 8px;\\n}\\n\\n.v-banner__content {\\n align-items: center;\\n display: flex;\\n flex: 1 1 auto;\\n overflow: hidden;\\n}\\n\\n.v-banner__text {\\n flex: 1 1 auto;\\n line-height: 20px;\\n max-width: 100%;\\n}\\n\\n.v-banner__icon {\\n display: inline-flex;\\n flex: 0 0 auto;\\n}\\n.v-application--is-ltr .v-banner__icon {\\n margin-right: 24px;\\n}\\n.v-application--is-rtl .v-banner__icon {\\n margin-left: 24px;\\n}\\n\\n.v-banner__wrapper {\\n align-items: center;\\n display: flex;\\n flex: 1 1 auto;\\n}\\n.v-application--is-ltr .v-banner__wrapper {\\n padding: 16px 8px 16px 24px;\\n}\\n.v-application--is-rtl .v-banner__wrapper {\\n padding: 16px 24px 16px 8px;\\n}\\n\\n.v-banner--single-line .v-banner__actions {\\n margin-bottom: 0;\\n align-self: center;\\n}\\n.v-banner--single-line .v-banner__text {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n}\\n.v-banner--single-line .v-banner__wrapper {\\n padding-top: 8px;\\n padding-bottom: 8px;\\n}\\n\\n.v-application--is-ltr .v-banner--has-icon .v-banner__wrapper {\\n padding-left: 16px;\\n}\\n.v-application--is-rtl .v-banner--has-icon .v-banner__wrapper {\\n padding-right: 16px;\\n}\\n\\n.v-banner--is-mobile .v-banner__actions {\\n flex: 1 0 100%;\\n margin-left: 0;\\n margin-right: 0;\\n padding-top: 12px;\\n}\\n.v-banner--is-mobile .v-banner__wrapper {\\n flex-wrap: wrap;\\n padding-top: 16px;\\n}\\n.v-application--is-ltr .v-banner--is-mobile .v-banner__wrapper {\\n padding-left: 16px;\\n}\\n.v-application--is-rtl .v-banner--is-mobile .v-banner__wrapper {\\n padding-right: 16px;\\n}\\n.v-banner--is-mobile.v-banner--has-icon .v-banner__wrapper {\\n padding-top: 24px;\\n}\\n.v-banner--is-mobile.v-banner--single-line .v-banner__actions {\\n flex: initial;\\n padding-top: 0;\\n}\\n.v-application--is-ltr .v-banner--is-mobile.v-banner--single-line .v-banner__actions {\\n margin-left: 36px;\\n}\\n.v-application--is-rtl .v-banner--is-mobile.v-banner--single-line .v-banner__actions {\\n margin-right: 36px;\\n}\\n.v-banner--is-mobile.v-banner--single-line .v-banner__wrapper {\\n flex-wrap: nowrap;\\n padding-top: 10px;\\n}\\n.v-application--is-ltr .v-banner--is-mobile .v-banner__icon {\\n margin-right: 16px;\\n}\\n.v-application--is-rtl .v-banner--is-mobile .v-banner__icon {\\n margin-left: 16px;\\n}\\n.v-application--is-ltr .v-banner--is-mobile .v-banner__content {\\n padding-right: 8px;\\n}\\n.v-application--is-rtl .v-banner--is-mobile .v-banner__content {\\n padding-left: 8px;\\n}\\n.v-banner--is-mobile .v-banner__content .v-banner__wrapper {\\n flex-wrap: nowrap;\\n padding-top: 10px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VBanner/VBanner.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VBottomNavigation/VBottomNavigation.sass": /*!**************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VBottomNavigation/VBottomNavigation.sass ***! \**************************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-bottom-navigation {\\n background-color: #FFFFFF;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-bottom-navigation .v-btn:not(.v-btn--active) {\\n color: rgba(0, 0, 0, 0.6) !important;\\n}\\n\\n.theme--dark.v-bottom-navigation {\\n background-color: #2E2E2E;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-bottom-navigation .v-btn:not(.v-btn--active) {\\n color: rgba(255, 255, 255, 0.7) !important;\\n}\\n\\n.v-item-group.v-bottom-navigation {\\n bottom: 0;\\n display: flex;\\n left: 0;\\n justify-content: center;\\n width: 100%;\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-item-group.v-bottom-navigation .v-btn {\\n background-color: transparent;\\n border-radius: 0;\\n box-shadow: none;\\n flex: 0 1 auto;\\n font-size: 0.75rem;\\n height: inherit;\\n max-width: 168px;\\n min-width: 80px;\\n position: relative;\\n text-transform: none;\\n}\\n.v-item-group.v-bottom-navigation .v-btn:after {\\n content: none;\\n}\\n.v-item-group.v-bottom-navigation .v-btn .v-btn__content {\\n flex-direction: column-reverse;\\n height: inherit;\\n}\\n.v-item-group.v-bottom-navigation .v-btn .v-btn__content > *:not(.v-icon) {\\n line-height: 1.2;\\n}\\n.v-item-group.v-bottom-navigation .v-btn.v-btn--active {\\n color: inherit;\\n}\\n.v-item-group.v-bottom-navigation .v-btn.v-btn--active:not(:hover):before {\\n opacity: 0;\\n}\\n\\n.v-item-group.v-bottom-navigation--absolute,\\n.v-item-group.v-bottom-navigation--fixed {\\n z-index: 4;\\n}\\n\\n.v-item-group.v-bottom-navigation--absolute {\\n position: absolute;\\n}\\n\\n.v-item-group.v-bottom-navigation--active {\\n transform: translate(0, 0);\\n}\\n\\n.v-item-group.v-bottom-navigation--fixed {\\n position: fixed;\\n}\\n\\n.v-item-group.v-bottom-navigation--grow .v-btn {\\n width: 100%;\\n}\\n\\n.v-item-group.v-bottom-navigation--horizontal .v-btn > .v-btn__content {\\n flex-direction: row-reverse;\\n}\\n.v-item-group.v-bottom-navigation--horizontal .v-btn > .v-btn__content > .v-icon {\\n margin-bottom: 0;\\n margin-right: 16px;\\n}\\n\\n.v-item-group.v-bottom-navigation--shift .v-btn .v-btn__content > *:not(.v-icon) {\\n opacity: 0;\\n position: absolute;\\n top: calc(100% - 12px);\\n transform: scale(0.9);\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-item-group.v-bottom-navigation--shift .v-btn--active .v-btn__content > .v-icon {\\n transform: translateY(-8px);\\n}\\n.v-item-group.v-bottom-navigation--shift .v-btn--active .v-btn__content > *:not(.v-icon) {\\n opacity: 1;\\n top: calc(100% - 22px);\\n transform: scale(1);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VBottomNavigation/VBottomNavigation.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VBottomSheet/VBottomSheet.sass": /*!****************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VBottomSheet/VBottomSheet.sass ***! \****************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".bottom-sheet-transition-enter {\\n transform: translateY(100%);\\n}\\n.bottom-sheet-transition-leave-to {\\n transform: translateY(100%);\\n}\\n\\n.v-bottom-sheet.v-dialog {\\n align-self: flex-end;\\n border-radius: 0;\\n flex: 0 1 auto;\\n margin: 0;\\n overflow: visible;\\n}\\n.v-bottom-sheet.v-dialog.v-bottom-sheet--inset {\\n max-width: 70%;\\n}\\n@media only screen and (max-width: 599.98px) {\\n .v-bottom-sheet.v-dialog.v-bottom-sheet--inset {\\n max-width: none;\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VBottomSheet/VBottomSheet.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VBreadcrumbs/VBreadcrumbs.sass": /*!****************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VBreadcrumbs/VBreadcrumbs.sass ***! \****************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-breadcrumbs .v-breadcrumbs__divider, .theme--light.v-breadcrumbs .v-breadcrumbs__item--disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.theme--dark.v-breadcrumbs .v-breadcrumbs__divider, .theme--dark.v-breadcrumbs .v-breadcrumbs__item--disabled {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n\\n.v-breadcrumbs {\\n align-items: center;\\n display: flex;\\n flex-wrap: wrap;\\n flex: 0 1 auto;\\n list-style-type: none;\\n margin: 0;\\n padding: 18px 12px;\\n}\\n.v-breadcrumbs li {\\n align-items: center;\\n display: inline-flex;\\n font-size: 14px;\\n}\\n.v-breadcrumbs li .v-icon {\\n font-size: 16px;\\n}\\n.v-breadcrumbs li:nth-child(even) {\\n padding: 0 12px;\\n}\\n\\n.v-breadcrumbs__item {\\n align-items: center;\\n display: inline-flex;\\n text-decoration: none;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-breadcrumbs__item--disabled {\\n pointer-events: none;\\n}\\n\\n.v-breadcrumbs--large li {\\n font-size: 16px;\\n}\\n.v-breadcrumbs--large li .v-icon {\\n font-size: 16px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VBreadcrumbs/VBreadcrumbs.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VBtn/VBtn.sass": /*!************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VBtn/VBtn.sass ***! \************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-btn:not(.v-btn--outlined).primary, .v-btn:not(.v-btn--outlined).secondary, .v-btn:not(.v-btn--outlined).accent, .v-btn:not(.v-btn--outlined).success, .v-btn:not(.v-btn--outlined).error, .v-btn:not(.v-btn--outlined).warning, .v-btn:not(.v-btn--outlined).info {\\n color: #FFFFFF;\\n}\\n\\n.theme--light.v-btn {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-btn.v-btn--disabled {\\n color: rgba(0, 0, 0, 0.26) !important;\\n}\\n.theme--light.v-btn.v-btn--disabled .v-icon,\\n.theme--light.v-btn.v-btn--disabled .v-btn__loading {\\n color: rgba(0, 0, 0, 0.26) !important;\\n}\\n.theme--light.v-btn.v-btn--disabled.v-btn--has-bg {\\n background-color: rgba(0, 0, 0, 0.12) !important;\\n}\\n.theme--light.v-btn.v-btn--has-bg {\\n background-color: #f5f5f5;\\n}\\n.theme--light.v-btn.v-btn--outlined.v-btn--text {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-btn.v-btn--icon {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.theme--light.v-btn:hover::before {\\n opacity: 0.08;\\n}\\n.theme--light.v-btn:focus::before {\\n opacity: 0.24;\\n}\\n.theme--light.v-btn--active:hover::before, .theme--light.v-btn--active::before {\\n opacity: 0.18;\\n}\\n.theme--light.v-btn--active:focus::before {\\n opacity: 0.16;\\n}\\n\\n.theme--dark.v-btn {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-btn.v-btn--disabled {\\n color: rgba(255, 255, 255, 0.3) !important;\\n}\\n.theme--dark.v-btn.v-btn--disabled .v-icon,\\n.theme--dark.v-btn.v-btn--disabled .v-btn__loading {\\n color: rgba(255, 255, 255, 0.3) !important;\\n}\\n.theme--dark.v-btn.v-btn--disabled.v-btn--has-bg {\\n background-color: rgba(255, 255, 255, 0.12) !important;\\n}\\n.theme--dark.v-btn.v-btn--has-bg {\\n background-color: #272727;\\n}\\n.theme--dark.v-btn.v-btn--outlined.v-btn--text {\\n border-color: rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-btn.v-btn--icon {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-btn:hover::before {\\n opacity: 0.08;\\n}\\n.theme--dark.v-btn:focus::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-btn--active:hover::before, .theme--dark.v-btn--active::before {\\n opacity: 0.18;\\n}\\n.theme--dark.v-btn--active:focus::before {\\n opacity: 0.32;\\n}\\n\\n.v-btn {\\n align-items: center;\\n border-radius: 4px;\\n display: inline-flex;\\n flex: 0 0 auto;\\n font-weight: 500;\\n letter-spacing: 0.0892857143em;\\n justify-content: center;\\n outline: 0;\\n position: relative;\\n text-decoration: none;\\n text-indent: 0.0892857143em;\\n text-transform: uppercase;\\n transition-duration: 0.28s;\\n transition-property: box-shadow, transform, opacity;\\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n vertical-align: middle;\\n white-space: nowrap;\\n}\\n.v-btn.v-size--x-small {\\n font-size: 0.625rem;\\n}\\n.v-btn.v-size--small {\\n font-size: 0.75rem;\\n}\\n.v-btn.v-size--default {\\n font-size: 0.875rem;\\n}\\n.v-btn.v-size--large {\\n font-size: 0.875rem;\\n}\\n.v-btn.v-size--x-large {\\n font-size: 1rem;\\n}\\n.v-btn:before {\\n background-color: currentColor;\\n border-radius: inherit;\\n bottom: 0;\\n color: inherit;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0;\\n pointer-events: none;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);\\n}\\n.v-btn:not(.v-btn--round).v-size--x-small {\\n height: 20px;\\n min-width: 36px;\\n padding: 0 8.8888888889px;\\n}\\n.v-btn:not(.v-btn--round).v-size--small {\\n height: 28px;\\n min-width: 50px;\\n padding: 0 12.4444444444px;\\n}\\n.v-btn:not(.v-btn--round).v-size--default {\\n height: 36px;\\n min-width: 64px;\\n padding: 0 16px;\\n}\\n.v-btn:not(.v-btn--round).v-size--large {\\n height: 44px;\\n min-width: 78px;\\n padding: 0 19.5555555556px;\\n}\\n.v-btn:not(.v-btn--round).v-size--x-large {\\n height: 52px;\\n min-width: 92px;\\n padding: 0 23.1111111111px;\\n}\\n.v-btn > .v-btn__content .v-icon {\\n color: inherit;\\n}\\n\\n.v-btn__content {\\n align-items: center;\\n color: inherit;\\n display: flex;\\n flex: 1 0 auto;\\n justify-content: inherit;\\n line-height: normal;\\n position: relative;\\n transition: inherit;\\n transition-property: opacity;\\n}\\n.v-btn__content .v-icon.v-icon--left,\\n.v-btn__content .v-icon.v-icon--right {\\n font-size: 18px;\\n height: 18px;\\n width: 18px;\\n}\\n.v-application--is-ltr .v-btn__content .v-icon--left {\\n margin-left: -4px;\\n margin-right: 8px;\\n}\\n.v-application--is-rtl .v-btn__content .v-icon--left {\\n margin-left: 8px;\\n margin-right: -4px;\\n}\\n.v-application--is-ltr .v-btn__content .v-icon--right {\\n margin-left: 8px;\\n margin-right: -4px;\\n}\\n.v-application--is-rtl .v-btn__content .v-icon--right {\\n margin-left: -4px;\\n margin-right: 8px;\\n}\\n\\n.v-btn__loader {\\n align-items: center;\\n display: flex;\\n height: 100%;\\n justify-content: center;\\n left: 0;\\n position: absolute;\\n top: 0;\\n width: 100%;\\n}\\n\\n.v-btn--absolute.v-btn--right,\\n.v-btn--fixed.v-btn--right {\\n right: 16px;\\n}\\n.v-btn--absolute.v-btn--left,\\n.v-btn--fixed.v-btn--left {\\n left: 16px;\\n}\\n.v-btn--absolute.v-btn--top,\\n.v-btn--fixed.v-btn--top {\\n top: 16px;\\n}\\n.v-btn--absolute.v-btn--bottom,\\n.v-btn--fixed.v-btn--bottom {\\n bottom: 16px;\\n}\\n\\n.v-btn--absolute {\\n position: absolute;\\n}\\n\\n.v-btn--fixed {\\n position: fixed;\\n}\\n\\n.v-btn--block {\\n display: flex;\\n flex: 1 0 auto;\\n min-width: 100% !important;\\n max-width: none;\\n}\\n\\n.v-btn--is-elevated {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-btn--is-elevated:after {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-btn--is-elevated:active {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.v-btn--is-elevated.v-btn--fab {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-btn--is-elevated.v-btn--fab:after {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.v-btn--is-elevated.v-btn--fab:active {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n\\n.v-btn--disabled {\\n pointer-events: none;\\n}\\n\\n.v-btn--icon,\\n.v-btn--fab {\\n min-height: 0;\\n min-width: 0;\\n padding: 0;\\n}\\n.v-btn--icon.v-size--x-small .v-icon,\\n.v-btn--fab.v-size--x-small .v-icon {\\n height: 18px;\\n font-size: 18px;\\n width: 18px;\\n}\\n.v-btn--icon.v-size--small .v-icon,\\n.v-btn--fab.v-size--small .v-icon {\\n height: 24px;\\n font-size: 24px;\\n width: 24px;\\n}\\n.v-btn--icon.v-size--default .v-icon,\\n.v-btn--fab.v-size--default .v-icon {\\n height: 24px;\\n font-size: 24px;\\n width: 24px;\\n}\\n.v-btn--icon.v-size--large .v-icon,\\n.v-btn--fab.v-size--large .v-icon {\\n height: 28px;\\n font-size: 28px;\\n width: 28px;\\n}\\n.v-btn--icon.v-size--x-large .v-icon,\\n.v-btn--fab.v-size--x-large .v-icon {\\n height: 32px;\\n font-size: 32px;\\n width: 32px;\\n}\\n\\n.v-btn--icon.v-size--x-small {\\n height: 20px;\\n width: 20px;\\n}\\n.v-btn--icon.v-size--small {\\n height: 28px;\\n width: 28px;\\n}\\n.v-btn--icon.v-size--default {\\n height: 36px;\\n width: 36px;\\n}\\n.v-btn--icon.v-size--large {\\n height: 44px;\\n width: 44px;\\n}\\n.v-btn--icon.v-size--x-large {\\n height: 52px;\\n width: 52px;\\n}\\n\\n.v-btn--fab.v-btn--absolute, .v-btn--fab.v-btn--fixed {\\n z-index: 4;\\n}\\n.v-btn--fab.v-size--x-small {\\n height: 32px;\\n width: 32px;\\n}\\n.v-btn--fab.v-size--x-small.v-btn--absolute.v-btn--bottom {\\n bottom: -16px;\\n}\\n.v-btn--fab.v-size--x-small.v-btn--absolute.v-btn--top {\\n top: -16px;\\n}\\n.v-btn--fab.v-size--small {\\n height: 40px;\\n width: 40px;\\n}\\n.v-btn--fab.v-size--small.v-btn--absolute.v-btn--bottom {\\n bottom: -20px;\\n}\\n.v-btn--fab.v-size--small.v-btn--absolute.v-btn--top {\\n top: -20px;\\n}\\n.v-btn--fab.v-size--default {\\n height: 56px;\\n width: 56px;\\n}\\n.v-btn--fab.v-size--default.v-btn--absolute.v-btn--bottom {\\n bottom: -28px;\\n}\\n.v-btn--fab.v-size--default.v-btn--absolute.v-btn--top {\\n top: -28px;\\n}\\n.v-btn--fab.v-size--large {\\n height: 64px;\\n width: 64px;\\n}\\n.v-btn--fab.v-size--large.v-btn--absolute.v-btn--bottom {\\n bottom: -32px;\\n}\\n.v-btn--fab.v-size--large.v-btn--absolute.v-btn--top {\\n top: -32px;\\n}\\n.v-btn--fab.v-size--x-large {\\n height: 72px;\\n width: 72px;\\n}\\n.v-btn--fab.v-size--x-large.v-btn--absolute.v-btn--bottom {\\n bottom: -36px;\\n}\\n.v-btn--fab.v-size--x-large.v-btn--absolute.v-btn--top {\\n top: -36px;\\n}\\n\\n.v-btn--loading {\\n pointer-events: none;\\n transition: none;\\n}\\n.v-btn--loading .v-btn__content {\\n opacity: 0;\\n}\\n\\n.v-btn--outlined {\\n border: thin solid currentColor;\\n}\\n\\n.v-btn--plain::before {\\n display: none;\\n}\\n.v-btn--plain:not(.v-btn--active):not(.v-btn--loading):not(:focus):not(:hover) .v-btn__content {\\n opacity: 0.62;\\n}\\n\\n.v-btn--round {\\n border-radius: 50%;\\n}\\n\\n.v-btn--rounded {\\n border-radius: 28px;\\n}\\n\\n.v-btn--tile {\\n border-radius: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VBtn/VBtn.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VBtnToggle/VBtnToggle.sass": /*!************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VBtnToggle/VBtnToggle.sass ***! \************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-btn-toggle:not(.v-btn-toggle--group) {\\n background: #FFFFFF;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-btn-toggle:not(.v-btn-toggle--group) .v-btn.v-btn {\\n border-color: rgba(0, 0, 0, 0.12) !important;\\n}\\n.theme--light.v-btn-toggle:not(.v-btn-toggle--group) .v-btn.v-btn:focus:not(:active) {\\n border-color: rgba(0, 0, 0, 0.26);\\n}\\n.theme--light.v-btn-toggle:not(.v-btn-toggle--group) .v-btn.v-btn .v-icon {\\n color: #000000;\\n}\\n\\n.theme--dark.v-btn-toggle:not(.v-btn-toggle--group) {\\n background: #1E1E1E;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-btn-toggle:not(.v-btn-toggle--group) .v-btn.v-btn {\\n border-color: rgba(255, 255, 255, 0.12) !important;\\n}\\n.theme--dark.v-btn-toggle:not(.v-btn-toggle--group) .v-btn.v-btn:focus:not(:active) {\\n border-color: rgba(255, 255, 255, 0.3);\\n}\\n.theme--dark.v-btn-toggle:not(.v-btn-toggle--group) .v-btn.v-btn .v-icon {\\n color: #FFFFFF;\\n}\\n\\n.v-btn-toggle {\\n border-radius: 4px;\\n display: inline-flex;\\n max-width: 100%;\\n}\\n.v-btn-toggle > .v-btn.v-btn {\\n border-radius: 0;\\n border-style: solid;\\n border-width: thin;\\n box-shadow: none;\\n box-shadow: none;\\n opacity: 0.8;\\n padding: 0 12px;\\n}\\n.v-application--is-ltr .v-btn-toggle > .v-btn.v-btn:first-child {\\n border-top-left-radius: inherit;\\n border-bottom-left-radius: inherit;\\n}\\n.v-application--is-rtl .v-btn-toggle > .v-btn.v-btn:first-child {\\n border-top-right-radius: inherit;\\n border-bottom-right-radius: inherit;\\n}\\n.v-application--is-ltr .v-btn-toggle > .v-btn.v-btn:last-child {\\n border-top-right-radius: inherit;\\n border-bottom-right-radius: inherit;\\n}\\n.v-application--is-rtl .v-btn-toggle > .v-btn.v-btn:last-child {\\n border-top-left-radius: inherit;\\n border-bottom-left-radius: inherit;\\n}\\n.v-btn-toggle > .v-btn.v-btn--active {\\n color: inherit;\\n opacity: 1;\\n}\\n.v-btn-toggle > .v-btn.v-btn:after {\\n display: none;\\n}\\n.v-application--is-ltr .v-btn-toggle > .v-btn.v-btn:not(:first-child) {\\n border-left-width: 0;\\n}\\n.v-application--is-rtl .v-btn-toggle > .v-btn.v-btn:not(:last-child) {\\n border-left-width: 0;\\n}\\n.v-btn-toggle .v-btn.v-btn.v-size--default {\\n min-width: 48px;\\n min-height: 0;\\n}\\n.v-btn-toggle:not(.v-btn-toggle--dense) .v-btn.v-btn.v-size--default {\\n height: 48px;\\n}\\n\\n.v-btn-toggle--borderless > .v-btn.v-btn {\\n border-width: 0;\\n}\\n\\n.v-btn-toggle--dense > .v-btn.v-btn {\\n padding: 0 8px;\\n}\\n\\n.v-btn-toggle--group {\\n border-radius: 0;\\n}\\n.v-btn-toggle--group > .v-btn.v-btn {\\n background-color: transparent !important;\\n border-color: transparent;\\n margin: 4px;\\n min-width: auto;\\n}\\n\\n.v-btn-toggle--rounded {\\n border-radius: 24px;\\n}\\n\\n.v-btn-toggle--shaped {\\n border-radius: 24px 4px;\\n}\\n\\n.v-btn-toggle--tile {\\n border-radius: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VBtnToggle/VBtnToggle.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VCalendar/VCalendarCategory.sass": /*!******************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VCalendar/VCalendarCategory.sass ***! \******************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-calendar-category .v-calendar-category__column,\\n.theme--light.v-calendar-category .v-calendar-category__column-header {\\n border-right: #e0e0e0 1px solid;\\n}\\n.theme--light.v-calendar-category .v-calendar-daily__head {\\n background: #FFFFFF;\\n}\\n.theme--light.v-calendar-category .v-calendar-daily__intervals-head {\\n background: #FFFFFF;\\n}\\n.theme--light.v-calendar-category .v-calendar-daily__intervals-body {\\n background: #FFFFFF;\\n}\\n\\n.theme--dark.v-calendar-category .v-calendar-category__column,\\n.theme--dark.v-calendar-category .v-calendar-category__column-header {\\n border-right: #9e9e9e 1px solid;\\n}\\n.theme--dark.v-calendar-category .v-calendar-daily__head {\\n background: #303030;\\n}\\n.theme--dark.v-calendar-category .v-calendar-daily__intervals-head {\\n background: #303030;\\n}\\n.theme--dark.v-calendar-category .v-calendar-daily__intervals-body {\\n background: #303030;\\n}\\n\\n.v-calendar-category {\\n overflow: auto;\\n position: relative;\\n}\\n.v-calendar-category .v-calendar-category__category {\\n text-align: center;\\n}\\n.v-calendar-category .v-calendar-daily__day-container {\\n width: -moz-min-content;\\n width: min-content;\\n}\\n.v-calendar-category .v-calendar-daily__day-container .v-calendar-category__columns {\\n position: absolute;\\n height: 100%;\\n width: 100%;\\n top: 0;\\n}\\n.v-calendar-category .v-calendar-daily__day-body {\\n display: flex;\\n flex: 1;\\n width: 100%;\\n height: 100%;\\n}\\n.v-calendar-category .v-calendar-daily__head {\\n flex-direction: row;\\n width: -moz-min-content;\\n width: min-content;\\n min-width: 100%;\\n position: sticky;\\n top: 0;\\n z-index: 2;\\n}\\n.v-calendar-category .v-calendar-daily_head-day {\\n width: auto;\\n position: unset;\\n}\\n.v-calendar-category .v-calendar-daily__intervals-head {\\n position: sticky;\\n left: 0;\\n top: 0;\\n z-index: 2;\\n}\\n.v-calendar-category .v-calendar-daily_head-weekday {\\n position: sticky;\\n left: 50%;\\n width: 50px;\\n}\\n.v-calendar-category .v-calendar-daily_head-day-label {\\n width: 56px;\\n position: sticky;\\n left: 50%;\\n}\\n.v-calendar-category .v-calendar-daily__day {\\n min-width: 200px;\\n}\\n.v-calendar-category .v-calendar-daily__intervals-body {\\n position: sticky;\\n left: 0;\\n z-index: 1;\\n}\\n.v-calendar-category .v-calendar-daily__interval:last-of-type::after {\\n display: none;\\n}\\n.v-calendar-category .v-calendar-daily__body {\\n overflow: visible;\\n}\\n.v-calendar-category .v-calendar-daily__body .v-calendar-daily__scroll-area {\\n overflow-y: visible;\\n flex: none;\\n}\\n.v-calendar-category .v-calendar-daily__pane {\\n overflow-y: visible;\\n}\\n.v-calendar-category .v-calendar-category__columns {\\n display: flex;\\n width: -moz-min-content;\\n width: min-content;\\n min-width: 100%;\\n}\\n.v-calendar-category .v-calendar-category__columns .v-calendar-category__column,\\n.v-calendar-category .v-calendar-category__columns .v-calendar-category__column-header {\\n flex: 1 1 auto;\\n width: 0;\\n position: relative;\\n}\\n.v-calendar-category .v-calendar-category__columns .v-calendar-category__column-header {\\n min-width: 200px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VCalendar/VCalendarCategory.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VCalendar/VCalendarDaily.sass": /*!***************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VCalendar/VCalendarDaily.sass ***! \***************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-calendar-daily {\\n background-color: #FFFFFF;\\n border-left: #e0e0e0 1px solid;\\n border-top: #e0e0e0 1px solid;\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily__intervals-head {\\n border-right: #e0e0e0 1px solid;\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily__intervals-head::after {\\n background: #e0e0e0;\\n background: linear-gradient(90deg, transparent, #e0e0e0);\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily_head-day {\\n border-right: #e0e0e0 1px solid;\\n border-bottom: #e0e0e0 1px solid;\\n color: #000000;\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily_head-day.v-past .v-calendar-daily_head-weekday,\\n.theme--light.v-calendar-daily .v-calendar-daily_head-day.v-past .v-calendar-daily_head-day-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily__intervals-body {\\n border-right: #e0e0e0 1px solid;\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily__intervals-body .v-calendar-daily__interval-text {\\n color: #424242;\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily__day {\\n border-right: #e0e0e0 1px solid;\\n border-bottom: #e0e0e0 1px solid;\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily__day-interval {\\n border-top: #e0e0e0 1px solid;\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily__day-interval:first-child {\\n border-top: none !important;\\n}\\n.theme--light.v-calendar-daily .v-calendar-daily__interval::after {\\n border-top: #e0e0e0 1px solid;\\n}\\n\\n.theme--dark.v-calendar-daily {\\n background-color: #303030;\\n border-left: #9e9e9e 1px solid;\\n border-top: #9e9e9e 1px solid;\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily__intervals-head {\\n border-right: #9e9e9e 1px solid;\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily__intervals-head::after {\\n background: #9e9e9e;\\n background: linear-gradient(90deg, transparent, #9e9e9e);\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily_head-day {\\n border-right: #9e9e9e 1px solid;\\n border-bottom: #9e9e9e 1px solid;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily_head-day.v-past .v-calendar-daily_head-weekday,\\n.theme--dark.v-calendar-daily .v-calendar-daily_head-day.v-past .v-calendar-daily_head-day-label {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily__intervals-body {\\n border-right: #9e9e9e 1px solid;\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily__intervals-body .v-calendar-daily__interval-text {\\n color: #eeeeee;\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily__day {\\n border-right: #9e9e9e 1px solid;\\n border-bottom: #9e9e9e 1px solid;\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily__day-interval {\\n border-top: #9e9e9e 1px solid;\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily__day-interval:first-child {\\n border-top: none !important;\\n}\\n.theme--dark.v-calendar-daily .v-calendar-daily__interval::after {\\n border-top: #9e9e9e 1px solid;\\n}\\n\\n.v-calendar-daily {\\n display: flex;\\n flex-direction: column;\\n overflow: hidden;\\n height: 100%;\\n}\\n\\n.v-calendar-daily__head {\\n flex: none;\\n display: flex;\\n}\\n\\n.v-calendar-daily__intervals-head {\\n flex: none;\\n position: relative;\\n}\\n.v-calendar-daily__intervals-head::after {\\n position: absolute;\\n bottom: 0px;\\n height: 1px;\\n left: 0;\\n right: 0;\\n content: \\\"\\\";\\n}\\n\\n.v-calendar-daily_head-day {\\n flex: 1 1 auto;\\n width: 0;\\n position: relative;\\n}\\n\\n.v-calendar-daily_head-weekday {\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n padding: 3px 0px 0px 0px;\\n font-size: 11px;\\n text-align: center;\\n text-transform: uppercase;\\n}\\n\\n.v-calendar-daily_head-day-label {\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n padding: 0px 0px 3px 0px;\\n cursor: pointer;\\n text-align: center;\\n}\\n\\n.v-calendar-daily__body {\\n flex: 1 1 60%;\\n overflow: hidden;\\n display: flex;\\n position: relative;\\n flex-direction: column;\\n}\\n\\n.v-calendar-daily__scroll-area {\\n overflow-y: scroll;\\n flex: 1 1 auto;\\n display: flex;\\n align-items: flex-start;\\n}\\n\\n.v-calendar-daily__pane {\\n width: 100%;\\n overflow-y: hidden;\\n flex: none;\\n display: flex;\\n align-items: flex-start;\\n}\\n\\n.v-calendar-daily__day-container {\\n display: flex;\\n flex: 1;\\n width: 100%;\\n height: 100%;\\n}\\n\\n.v-calendar-daily__intervals-body {\\n flex: none;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n\\n.v-calendar-daily__interval {\\n text-align: right;\\n padding-right: 8px;\\n border-bottom: none;\\n position: relative;\\n}\\n.v-calendar-daily__interval::after {\\n width: 8px;\\n position: absolute;\\n height: 1px;\\n display: block;\\n content: \\\"\\\";\\n right: 0;\\n bottom: -1px;\\n}\\n\\n.v-calendar-daily__interval-text {\\n display: block;\\n position: relative;\\n top: -6px;\\n font-size: 10px;\\n padding-right: 4px;\\n}\\n\\n.v-calendar-daily__day {\\n flex: 1;\\n width: 0;\\n position: relative;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VCalendar/VCalendarDaily.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VCalendar/VCalendarWeekly.sass": /*!****************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VCalendar/VCalendarWeekly.sass ***! \****************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-calendar-weekly {\\n background-color: #FFFFFF;\\n border-top: #e0e0e0 1px solid;\\n border-left: #e0e0e0 1px solid;\\n}\\n.theme--light.v-calendar-weekly .v-calendar-weekly__head-weekday {\\n border-right: #e0e0e0 1px solid;\\n color: #000000;\\n}\\n.theme--light.v-calendar-weekly .v-calendar-weekly__head-weekday.v-past {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-calendar-weekly .v-calendar-weekly__head-weekday.v-outside {\\n background-color: #f7f7f7;\\n}\\n.theme--light.v-calendar-weekly .v-calendar-weekly__head-weeknumber {\\n background-color: #f1f3f4;\\n border-right: #e0e0e0 1px solid;\\n}\\n.theme--light.v-calendar-weekly .v-calendar-weekly__day {\\n border-right: #e0e0e0 1px solid;\\n border-bottom: #e0e0e0 1px solid;\\n color: #000000;\\n}\\n.theme--light.v-calendar-weekly .v-calendar-weekly__day.v-outside {\\n background-color: #f7f7f7;\\n}\\n.theme--light.v-calendar-weekly .v-calendar-weekly__weeknumber {\\n background-color: #f1f3f4;\\n border-right: #e0e0e0 1px solid;\\n border-bottom: #e0e0e0 1px solid;\\n color: #000000;\\n}\\n\\n.theme--dark.v-calendar-weekly {\\n background-color: #303030;\\n border-top: #9e9e9e 1px solid;\\n border-left: #9e9e9e 1px solid;\\n}\\n.theme--dark.v-calendar-weekly .v-calendar-weekly__head-weekday {\\n border-right: #9e9e9e 1px solid;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-calendar-weekly .v-calendar-weekly__head-weekday.v-past {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-calendar-weekly .v-calendar-weekly__head-weekday.v-outside {\\n background-color: #202020;\\n}\\n.theme--dark.v-calendar-weekly .v-calendar-weekly__head-weeknumber {\\n background-color: #202020;\\n border-right: #9e9e9e 1px solid;\\n}\\n.theme--dark.v-calendar-weekly .v-calendar-weekly__day {\\n border-right: #9e9e9e 1px solid;\\n border-bottom: #9e9e9e 1px solid;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-calendar-weekly .v-calendar-weekly__day.v-outside {\\n background-color: #202020;\\n}\\n.theme--dark.v-calendar-weekly .v-calendar-weekly__weeknumber {\\n background-color: #202020;\\n border-right: #9e9e9e 1px solid;\\n border-bottom: #9e9e9e 1px solid;\\n color: #FFFFFF;\\n}\\n\\n.v-calendar-weekly {\\n width: 100%;\\n height: 100%;\\n display: flex;\\n flex-direction: column;\\n min-height: 0;\\n}\\n\\n.v-calendar-weekly__head {\\n display: flex;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n\\n.v-calendar-weekly__head-weekday {\\n flex: 1 0 20px;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n padding: 0px 4px 0px 4px;\\n font-size: 11px;\\n overflow: hidden;\\n text-align: center;\\n text-overflow: ellipsis;\\n text-transform: uppercase;\\n white-space: nowrap;\\n}\\n\\n.v-calendar-weekly__head-weeknumber {\\n position: relative;\\n flex: 0 0 24px;\\n}\\n\\n.v-calendar-weekly__week {\\n display: flex;\\n flex: 1;\\n height: unset;\\n min-height: 0;\\n}\\n\\n.v-calendar-weekly__weeknumber {\\n display: flex;\\n flex: 0 0 24px;\\n height: unset;\\n min-height: 0;\\n padding-top: 14.5px;\\n text-align: center;\\n}\\n.v-calendar-weekly__weeknumber > small {\\n width: 100% !important;\\n}\\n\\n.v-calendar-weekly__day {\\n flex: 1;\\n width: 0;\\n overflow: hidden;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n position: relative;\\n padding: 0px 0px 0px 0px;\\n min-width: 0;\\n}\\n.v-calendar-weekly__day.v-present .v-calendar-weekly__day-month {\\n color: currentColor;\\n}\\n\\n.v-calendar-weekly__day-label {\\n text-decoration: none;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n cursor: pointer;\\n box-shadow: none;\\n text-align: center;\\n margin: 4px 0 0 0;\\n}\\n.v-calendar-weekly__day-label .v-btn {\\n font-size: 12px;\\n text-transform: none;\\n}\\n\\n.v-calendar-weekly__day-month {\\n position: absolute;\\n text-decoration: none;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n box-shadow: none;\\n top: 0;\\n left: 36px;\\n height: 32px;\\n line-height: 32px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VCalendar/VCalendarWeekly.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VCalendar/mixins/calendar-with-events.sass": /*!****************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VCalendar/mixins/calendar-with-events.sass ***! \****************************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-calendar-events .v-event-timed {\\n border: 1px solid !important;\\n}\\n.theme--light.v-calendar-events .v-event-more {\\n background-color: #FFFFFF;\\n}\\n.theme--light.v-calendar-events .v-event-more.v-outside {\\n background-color: #f7f7f7;\\n}\\n\\n.theme--dark.v-calendar-events .v-event-timed {\\n border: 1px solid !important;\\n}\\n.theme--dark.v-calendar-events .v-event-more {\\n background-color: #303030;\\n}\\n.theme--dark.v-calendar-events .v-event-more.v-outside {\\n background-color: #202020;\\n}\\n\\n.v-calendar .v-event {\\n position: relative;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n white-space: nowrap;\\n font-size: 12px;\\n cursor: pointer;\\n line-height: 20px;\\n margin-right: -1px;\\n z-index: 1;\\n border-radius: 4px;\\n}\\n.v-calendar .v-event-more {\\n overflow: hidden;\\n text-overflow: ellipsis;\\n white-space: nowrap;\\n font-size: 12px;\\n cursor: pointer;\\n font-weight: bold;\\n z-index: 1;\\n position: relative;\\n}\\n.v-calendar .v-event-timed-container {\\n position: absolute;\\n top: 0;\\n bottom: 0;\\n left: 0;\\n right: 0;\\n margin-right: 10px;\\n pointer-events: none;\\n}\\n.v-calendar .v-event-timed {\\n position: absolute;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n font-size: 12px;\\n cursor: pointer;\\n border-radius: 4px;\\n pointer-events: all;\\n}\\n.v-calendar .v-event-summary {\\n display: inline-block;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n width: 100%;\\n white-space: nowrap;\\n}\\n.v-calendar.v-calendar-events .v-calendar-weekly__head-weekday {\\n margin-right: -1px;\\n}\\n.v-calendar.v-calendar-events .v-calendar-weekly__day {\\n overflow: visible;\\n margin-right: -1px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VCalendar/mixins/calendar-with-events.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VCard/VCard.sass": /*!**************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VCard/VCard.sass ***! \**************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-card {\\n background-color: #FFFFFF;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-card > .v-card__text,\\n.theme--light.v-card > .v-card__subtitle {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.theme--dark.v-card {\\n background-color: #1E1E1E;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-card > .v-card__text,\\n.theme--dark.v-card > .v-card__subtitle {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n\\n.v-sheet.v-card {\\n border-radius: 4px;\\n}\\n.v-sheet.v-card:not(.v-sheet--outlined) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-card.v-sheet--shaped {\\n border-radius: 16px 4px;\\n}\\n\\n.v-card {\\n border-width: thin;\\n display: block;\\n max-width: 100%;\\n outline: none;\\n text-decoration: none;\\n transition-property: box-shadow, opacity;\\n overflow-wrap: break-word;\\n position: relative;\\n white-space: normal;\\n}\\n.v-card > *:first-child:not(.v-btn):not(.v-chip):not(.v-avatar),\\n.v-card > .v-card__progress + *:not(.v-btn):not(.v-chip):not(.v-avatar) {\\n border-top-left-radius: inherit;\\n border-top-right-radius: inherit;\\n}\\n.v-card > *:last-child:not(.v-btn):not(.v-chip):not(.v-avatar) {\\n border-bottom-left-radius: inherit;\\n border-bottom-right-radius: inherit;\\n}\\n\\n.v-card__progress {\\n top: 0;\\n left: 0;\\n right: 0;\\n overflow: hidden;\\n}\\n\\n.v-card__subtitle + .v-card__text {\\n padding-top: 0;\\n}\\n\\n.v-card__subtitle,\\n.v-card__text {\\n font-size: 0.875rem;\\n font-weight: 400;\\n line-height: 1.375rem;\\n letter-spacing: 0.0071428571em;\\n}\\n\\n.v-card__subtitle,\\n.v-card__text,\\n.v-card__title {\\n padding: 16px;\\n}\\n\\n.v-card__title {\\n align-items: center;\\n display: flex;\\n flex-wrap: wrap;\\n font-size: 1.25rem;\\n font-weight: 500;\\n letter-spacing: 0.0125em;\\n line-height: 2rem;\\n word-break: break-all;\\n}\\n.v-card__title + .v-card__subtitle,\\n.v-card__title + .v-card__text {\\n padding-top: 0;\\n}\\n.v-card__title + .v-card__subtitle {\\n margin-top: -16px;\\n}\\n\\n.v-card__text {\\n width: 100%;\\n}\\n\\n.v-card__actions {\\n align-items: center;\\n display: flex;\\n padding: 8px;\\n}\\n.v-card__actions > .v-btn.v-btn {\\n padding: 0 8px;\\n}\\n.v-application--is-ltr .v-card__actions > .v-btn.v-btn + .v-btn {\\n margin-left: 8px;\\n}\\n.v-application--is-ltr .v-card__actions > .v-btn.v-btn .v-icon--left {\\n margin-left: 4px;\\n}\\n.v-application--is-ltr .v-card__actions > .v-btn.v-btn .v-icon--right {\\n margin-right: 4px;\\n}\\n.v-application--is-rtl .v-card__actions > .v-btn.v-btn + .v-btn {\\n margin-right: 8px;\\n}\\n.v-application--is-rtl .v-card__actions > .v-btn.v-btn .v-icon--left {\\n margin-right: 4px;\\n}\\n.v-application--is-rtl .v-card__actions > .v-btn.v-btn .v-icon--right {\\n margin-left: 4px;\\n}\\n\\n.v-card--flat {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-sheet.v-card--hover {\\n cursor: pointer;\\n transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);\\n}\\n.v-sheet.v-card--hover:hover, .v-sheet.v-card--hover:focus {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n\\n.v-card--link {\\n cursor: pointer;\\n}\\n.v-card--link .v-chip {\\n cursor: pointer;\\n}\\n.v-card--link:focus:before {\\n opacity: 0.08;\\n}\\n.v-card--link:before {\\n background: currentColor;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0;\\n pointer-events: none;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transition: 0.2s opacity;\\n}\\n\\n.v-card--disabled {\\n pointer-events: none;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-card--disabled > *:not(.v-card__progress) {\\n opacity: 0.6;\\n transition: inherit;\\n}\\n\\n.v-card--loading {\\n overflow: hidden;\\n}\\n\\n.v-card--raised {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VCard/VCard.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VCarousel/VCarousel.sass": /*!**********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VCarousel/VCarousel.sass ***! \**********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-carousel {\\n overflow: hidden;\\n position: relative;\\n width: 100%;\\n}\\n.v-carousel__controls {\\n align-items: center;\\n background: rgba(0, 0, 0, 0.3);\\n bottom: 0;\\n display: flex;\\n height: 50px;\\n justify-content: center;\\n list-style-type: none;\\n position: absolute;\\n width: 100%;\\n z-index: 1;\\n}\\n.v-carousel__controls > .v-item-group {\\n flex: 0 1 auto;\\n}\\n.v-carousel__controls__item {\\n margin: 0 8px;\\n}\\n.v-carousel__controls__item .v-icon {\\n opacity: 0.5;\\n}\\n.v-carousel__controls__item--active .v-icon {\\n opacity: 1;\\n vertical-align: middle;\\n}\\n.v-carousel__controls__item:hover {\\n background: none;\\n}\\n.v-carousel__controls__item:hover .v-icon {\\n opacity: 0.8;\\n}\\n\\n.v-carousel__progress {\\n margin: 0;\\n position: absolute;\\n bottom: 0;\\n left: 0;\\n right: 0;\\n}\\n\\n.v-carousel .v-window-item {\\n display: block;\\n height: inherit;\\n text-decoration: none;\\n}\\n\\n.v-carousel--hide-delimiter-background .v-carousel__controls {\\n background: transparent;\\n}\\n\\n.v-carousel--vertical-delimiters .v-carousel__controls {\\n height: 100% !important;\\n width: 50px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VCarousel/VCarousel.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VCheckbox/VCheckbox.sass": /*!**********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VCheckbox/VCheckbox.sass ***! \**********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-input--checkbox.v-input--indeterminate.v-input--is-disabled {\\n opacity: 0.6;\\n}\\n.v-input--checkbox.v-input--dense {\\n margin-top: 4px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VCheckbox/VCheckbox.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VCheckbox/VSimpleCheckbox.sass": /*!****************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VCheckbox/VSimpleCheckbox.sass ***! \****************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-simple-checkbox {\\n align-self: center;\\n line-height: normal;\\n position: relative;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-simple-checkbox .v-icon {\\n cursor: pointer;\\n}\\n\\n.v-simple-checkbox--disabled {\\n cursor: default;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VCheckbox/VSimpleCheckbox.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VChip/VChip.sass": /*!**************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VChip/VChip.sass ***! \**************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-chip:not(.v-chip--outlined).primary, .v-chip:not(.v-chip--outlined).secondary, .v-chip:not(.v-chip--outlined).accent, .v-chip:not(.v-chip--outlined).success, .v-chip:not(.v-chip--outlined).error, .v-chip:not(.v-chip--outlined).warning, .v-chip:not(.v-chip--outlined).info {\\n color: #FFFFFF;\\n}\\n\\n.theme--light.v-chip {\\n border-color: rgba(0, 0, 0, 0.12);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-chip:not(.v-chip--active) {\\n background: #e0e0e0;\\n}\\n.theme--light.v-chip:hover::before {\\n opacity: 0.04;\\n}\\n.theme--light.v-chip:focus::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-chip--active:hover::before, .theme--light.v-chip--active::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-chip--active:focus::before {\\n opacity: 0.16;\\n}\\n\\n.theme--dark.v-chip {\\n border-color: rgba(255, 255, 255, 0.12);\\n color: #FFFFFF;\\n}\\n.theme--dark.v-chip:not(.v-chip--active) {\\n background: #555;\\n}\\n.theme--dark.v-chip:hover::before {\\n opacity: 0.08;\\n}\\n.theme--dark.v-chip:focus::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-chip--active:hover::before, .theme--dark.v-chip--active::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-chip--active:focus::before {\\n opacity: 0.32;\\n}\\n\\n.v-chip {\\n align-items: center;\\n cursor: default;\\n display: inline-flex;\\n line-height: 20px;\\n max-width: 100%;\\n outline: none;\\n overflow: hidden;\\n padding: 0 12px;\\n position: relative;\\n text-decoration: none;\\n transition-duration: 0.28s;\\n transition-property: box-shadow, opacity;\\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\\n vertical-align: middle;\\n white-space: nowrap;\\n}\\n.v-chip:before {\\n background-color: currentColor;\\n bottom: 0;\\n border-radius: inherit;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0;\\n position: absolute;\\n pointer-events: none;\\n right: 0;\\n top: 0;\\n}\\n.v-chip .v-avatar {\\n height: 24px !important;\\n min-width: 24px !important;\\n width: 24px !important;\\n}\\n.v-chip .v-icon {\\n font-size: 24px;\\n}\\n.v-application--is-ltr .v-chip .v-avatar--left,\\n.v-application--is-ltr .v-chip .v-icon--left {\\n margin-left: -6px;\\n margin-right: 6px;\\n}\\n.v-application--is-ltr .v-chip .v-avatar--right,\\n.v-application--is-ltr .v-chip .v-icon--right {\\n margin-left: 6px;\\n margin-right: -6px;\\n}\\n.v-application--is-rtl .v-chip .v-avatar--left,\\n.v-application--is-rtl .v-chip .v-icon--left {\\n margin-left: 6px;\\n margin-right: -6px;\\n}\\n.v-application--is-rtl .v-chip .v-avatar--right,\\n.v-application--is-rtl .v-chip .v-icon--right {\\n margin-left: -6px;\\n margin-right: 6px;\\n}\\n.v-chip:not(.v-chip--no-color) .v-icon {\\n color: inherit;\\n}\\n\\n.v-chip .v-chip__close.v-icon {\\n font-size: 18px;\\n max-height: 18px;\\n max-width: 18px;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-application--is-ltr .v-chip .v-chip__close.v-icon.v-icon--right {\\n margin-right: -4px;\\n}\\n.v-application--is-rtl .v-chip .v-chip__close.v-icon.v-icon--right {\\n margin-left: -4px;\\n}\\n.v-chip .v-chip__close.v-icon:hover, .v-chip .v-chip__close.v-icon:focus, .v-chip .v-chip__close.v-icon:active {\\n opacity: 0.72;\\n}\\n.v-chip .v-chip__content {\\n align-items: center;\\n display: inline-flex;\\n height: 100%;\\n max-width: 100%;\\n}\\n\\n.v-chip--active .v-icon {\\n color: inherit;\\n}\\n\\n.v-chip--link::before {\\n transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-chip--link:focus::before {\\n opacity: 0.32;\\n}\\n\\n.v-chip--clickable {\\n cursor: pointer;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-chip--clickable:active {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.v-chip--disabled {\\n opacity: 0.4;\\n pointer-events: none;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n\\n.v-chip__filter {\\n max-width: 24px;\\n}\\n.v-chip__filter.v-icon {\\n color: inherit;\\n}\\n.v-chip__filter.expand-x-transition-leave-active, .v-chip__filter.expand-x-transition-enter {\\n margin: 0;\\n}\\n\\n.v-chip--pill .v-chip__filter {\\n margin: 0 16px 0 0;\\n}\\n.v-chip--pill .v-avatar {\\n height: 32px !important;\\n width: 32px !important;\\n}\\n.v-application--is-ltr .v-chip--pill .v-avatar--left {\\n margin-left: -12px;\\n}\\n.v-application--is-ltr .v-chip--pill .v-avatar--right {\\n margin-right: -12px;\\n}\\n.v-application--is-rtl .v-chip--pill .v-avatar--left {\\n margin-right: -12px;\\n}\\n.v-application--is-rtl .v-chip--pill .v-avatar--right {\\n margin-left: -12px;\\n}\\n\\n.v-chip--label {\\n border-radius: 4px !important;\\n}\\n\\n.v-chip.v-chip--outlined {\\n border-width: thin;\\n border-style: solid;\\n}\\n.v-chip.v-chip--outlined.v-chip--active:before {\\n opacity: 0.08;\\n}\\n.v-chip.v-chip--outlined .v-icon {\\n color: inherit;\\n}\\n.v-chip.v-chip--outlined.v-chip.v-chip {\\n background-color: transparent !important;\\n}\\n\\n.v-chip.v-chip--selected {\\n background: transparent;\\n}\\n.v-chip.v-chip--selected:after {\\n opacity: 0.28;\\n}\\n\\n.v-chip.v-size--x-small {\\n border-radius: 8px;\\n font-size: 10px;\\n height: 16px;\\n}\\n.v-chip.v-size--small {\\n border-radius: 12px;\\n font-size: 12px;\\n height: 24px;\\n}\\n.v-chip.v-size--default {\\n border-radius: 16px;\\n font-size: 14px;\\n height: 32px;\\n}\\n.v-chip.v-size--large {\\n border-radius: 27px;\\n font-size: 16px;\\n height: 54px;\\n}\\n.v-chip.v-size--x-large {\\n border-radius: 33px;\\n font-size: 18px;\\n height: 66px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VChip/VChip.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VChipGroup/VChipGroup.sass": /*!************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VChipGroup/VChipGroup.sass ***! \************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-chip-group .v-chip {\\n margin: 4px 8px 4px 0;\\n}\\n.v-chip-group .v-chip--active {\\n color: inherit;\\n}\\n.v-chip-group .v-chip--active.v-chip--no-color:after {\\n opacity: 0.22;\\n}\\n.v-chip-group .v-chip--active.v-chip--no-color:focus:after {\\n opacity: 0.32;\\n}\\n\\n.v-chip-group .v-slide-group__content {\\n padding: 4px 0;\\n}\\n\\n.v-chip-group--column .v-slide-group__content {\\n white-space: normal;\\n flex-wrap: wrap;\\n max-width: 100%;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VChipGroup/VChipGroup.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VColorPicker/VColorPicker.sass": /*!****************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VColorPicker/VColorPicker.sass ***! \****************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-color-picker .v-color-picker__input input {\\n border: thin solid rgba(0, 0, 0, 0.12);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-color-picker span {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.theme--light.v-color-picker .v-color-picker__dot, .theme--light.v-color-picker .v-color-picker__color {\\n background-color: rgba(255, 255, 255, 0);\\n}\\n\\n.theme--dark.v-color-picker .v-color-picker__input input {\\n border: thin solid rgba(255, 255, 255, 0.12);\\n color: #FFFFFF;\\n}\\n.theme--dark.v-color-picker span {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--dark.v-color-picker .v-color-picker__dot, .theme--dark.v-color-picker .v-color-picker__color {\\n background-color: rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-color-picker {\\n align-self: flex-start;\\n border-radius: 4px;\\n contain: content;\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.v-color-picker__controls {\\n display: flex;\\n flex-direction: column;\\n padding: 16px;\\n}\\n\\n.v-color-picker--flat {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VColorPicker/VColorPicker.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VColorPicker/VColorPickerCanvas.sass": /*!**********************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VColorPicker/VColorPickerCanvas.sass ***! \**********************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-color-picker__canvas {\\n position: relative;\\n overflow: hidden;\\n contain: strict;\\n}\\n.v-color-picker__canvas-dot {\\n position: absolute;\\n top: 0;\\n left: 0;\\n width: 15px;\\n height: 15px;\\n background: transparent;\\n border-radius: 50%;\\n box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);\\n}\\n.v-color-picker__canvas-dot--disabled {\\n box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);\\n}\\n.v-color-picker__canvas:hover .v-color-picker__canvas-dot {\\n will-change: transform;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VColorPicker/VColorPickerCanvas.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VColorPicker/VColorPickerEdit.sass": /*!********************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VColorPicker/VColorPickerEdit.sass ***! \********************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-color-picker__edit {\\n margin-top: 24px;\\n display: flex;\\n}\\n\\n.v-color-picker__input {\\n width: 100%;\\n display: flex;\\n flex-wrap: wrap;\\n justify-content: center;\\n text-align: center;\\n}\\n.v-application--is-ltr .v-color-picker__input:not(:last-child) {\\n margin-right: 8px;\\n}\\n.v-application--is-rtl .v-color-picker__input:not(:last-child) {\\n margin-left: 8px;\\n}\\n.v-color-picker__input input {\\n border-radius: 4px;\\n margin-bottom: 8px;\\n min-width: 0;\\n outline: none;\\n text-align: center;\\n width: 100%;\\n height: 28px;\\n}\\n.v-color-picker__input span {\\n font-size: 0.75rem;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VColorPicker/VColorPickerEdit.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VColorPicker/VColorPickerPreview.sass": /*!***********************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VColorPicker/VColorPickerPreview.sass ***! \***********************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-color-picker .v-input__slider {\\n border-radius: 5px;\\n}\\n.v-color-picker .v-input__slider .v-slider {\\n margin: 0;\\n}\\n\\n.v-color-picker__alpha:not(.v-input--is-disabled) .v-slider {\\n border-radius: 5px;\\n background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWNgYGCQwoKxgqGgcJA5h3yFAAs8BRWVSwooAAAAAElFTkSuQmCC) repeat;\\n}\\n\\n.v-color-picker__sliders {\\n display: flex;\\n flex: 1 0 auto;\\n flex-direction: column;\\n}\\n\\n.v-color-picker__dot {\\n position: relative;\\n height: 30px;\\n width: 30px;\\n background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWNgYGCQwoKxgqGgcJA5h3yFAAs8BRWVSwooAAAAAElFTkSuQmCC) repeat;\\n border-radius: 50%;\\n overflow: hidden;\\n}\\n.v-application--is-ltr .v-color-picker__dot {\\n margin-right: 24px;\\n}\\n.v-application--is-rtl .v-color-picker__dot {\\n margin-left: 24px;\\n}\\n.v-color-picker__dot > div {\\n width: 100%;\\n height: 100%;\\n}\\n\\n.v-application--is-ltr .v-color-picker__hue:not(.v-input--is-disabled) {\\n background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);\\n}\\n.v-application--is-rtl .v-color-picker__hue:not(.v-input--is-disabled) {\\n background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);\\n}\\n\\n.v-color-picker__track {\\n position: relative;\\n width: 100%;\\n}\\n\\n.v-color-picker__preview {\\n align-items: center;\\n display: flex;\\n}\\n.v-color-picker__preview .v-slider {\\n min-height: 10px;\\n}\\n.v-color-picker__preview .v-slider:not(.v-slider--disabled) .v-slider__thumb {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-color-picker__preview .v-slider:not(.v-slider--disabled) .v-slider__track-container {\\n opacity: 0;\\n}\\n.v-color-picker__preview:not(.v-color-picker__preview--hide-alpha) .v-color-picker__hue {\\n margin-bottom: 24px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VColorPicker/VColorPickerPreview.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VColorPicker/VColorPickerSwatches.sass": /*!************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VColorPicker/VColorPickerSwatches.sass ***! \************************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-color-picker__swatches {\\n overflow-y: auto;\\n}\\n.v-color-picker__swatches > div {\\n display: flex;\\n flex-wrap: wrap;\\n justify-content: center;\\n padding: 8px;\\n}\\n\\n.v-color-picker__swatch {\\n display: flex;\\n flex-direction: column;\\n margin-bottom: 10px;\\n}\\n\\n.v-color-picker__color {\\n position: relative;\\n height: 18px;\\n max-height: 18px;\\n width: 45px;\\n margin: 2px 4px;\\n border-radius: 2px;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n overflow: hidden;\\n background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWNgYGCQwoKxgqGgcJA5h3yFAAs8BRWVSwooAAAAAElFTkSuQmCC) repeat;\\n cursor: pointer;\\n}\\n.v-color-picker__color > div {\\n display: flex;\\n align-items: center;\\n justify-content: center;\\n width: 100%;\\n height: 100%;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VColorPicker/VColorPickerSwatches.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VCounter/VCounter.sass": /*!********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VCounter/VCounter.sass ***! \********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \"/* Theme */\\n.theme--light.v-counter {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.theme--dark.v-counter {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n\\n.v-counter {\\n flex: 0 1 auto;\\n font-size: 12px;\\n min-height: 12px;\\n line-height: 12px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VCounter/VCounter.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDataIterator/VDataFooter.sass": /*!****************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDataIterator/VDataFooter.sass ***! \****************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-data-footer {\\n display: flex;\\n flex-wrap: wrap;\\n align-items: center;\\n font-size: 0.75rem;\\n padding: 0 8px;\\n}\\n.v-data-footer .v-btn {\\n color: inherit;\\n}\\n\\n.v-application--is-ltr .v-data-footer__icons-before .v-btn:last-child {\\n margin-right: 7px;\\n}\\n.v-application--is-rtl .v-data-footer__icons-before .v-btn:last-child {\\n margin-left: 7px;\\n}\\n\\n.v-application--is-ltr .v-data-footer__icons-after .v-btn:first-child {\\n margin-left: 7px;\\n}\\n.v-application--is-rtl .v-data-footer__icons-after .v-btn:first-child {\\n margin-right: 7px;\\n}\\n\\n.v-data-footer__pagination {\\n display: block;\\n text-align: center;\\n}\\n.v-application--is-ltr .v-data-footer__pagination {\\n margin: 0 32px 0 24px;\\n}\\n.v-application--is-rtl .v-data-footer__pagination {\\n margin: 0 24px 0 32px;\\n}\\n\\n.v-data-footer__select {\\n display: flex;\\n align-items: center;\\n flex: 0 0 0;\\n justify-content: flex-end;\\n white-space: nowrap;\\n}\\n.v-application--is-ltr .v-data-footer__select {\\n margin-left: auto;\\n margin-right: 14px;\\n}\\n.v-application--is-rtl .v-data-footer__select {\\n margin-left: 14px;\\n margin-right: auto;\\n}\\n.v-data-footer__select .v-select {\\n flex: 0 1 0;\\n padding: 0;\\n position: initial;\\n}\\n.v-application--is-ltr .v-data-footer__select .v-select {\\n margin: 13px 0 13px 34px;\\n}\\n.v-application--is-rtl .v-data-footer__select .v-select {\\n margin: 13px 34px 13px 0;\\n}\\n.v-data-footer__select .v-select__selections {\\n flex-wrap: nowrap;\\n}\\n.v-data-footer__select .v-select__selections .v-select__selection--comma {\\n font-size: 0.75rem;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDataIterator/VDataFooter.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDataTable/VDataTable.sass": /*!************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDataTable/VDataTable.sass ***! \************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-data-table tbody tr.v-data-table__selected {\\n background: #f5f5f5;\\n}\\n.theme--light.v-data-table .v-row-group__header, .theme--light.v-data-table .v-row-group__summary {\\n background: #eeeeee;\\n}\\n.theme--light.v-data-table .v-data-footer {\\n border-top: thin solid rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-data-table .v-data-table__empty-wrapper {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.theme--dark.v-data-table tbody tr.v-data-table__selected {\\n background: #505050;\\n}\\n.theme--dark.v-data-table .v-row-group__header, .theme--dark.v-data-table .v-row-group__summary {\\n background: #616161;\\n}\\n.theme--dark.v-data-table .v-data-footer {\\n border-top: thin solid rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-data-table .v-data-table__empty-wrapper {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n\\n.v-data-table {\\n border-radius: 4px;\\n}\\n.v-data-table--mobile > .v-data-table__wrapper tbody {\\n display: flex;\\n flex-direction: column;\\n}\\n.v-data-table > .v-data-table__wrapper tbody tr.v-data-table__expanded {\\n border-bottom: 0;\\n}\\n.v-data-table > .v-data-table__wrapper tbody tr.v-data-table__expanded__content {\\n box-shadow: inset 0px 4px 8px -5px rgba(50, 50, 50, 0.75), inset 0px -4px 8px -5px rgba(50, 50, 50, 0.75);\\n}\\n.v-data-table > .v-data-table__wrapper tbody tr:first-child:hover td:first-child {\\n border-top-left-radius: 4px;\\n}\\n.v-data-table > .v-data-table__wrapper tbody tr:first-child:hover td:last-child {\\n border-top-right-radius: 4px;\\n}\\n.v-data-table > .v-data-table__wrapper tbody tr:last-child:hover td:first-child {\\n border-bottom-left-radius: 4px;\\n}\\n.v-data-table > .v-data-table__wrapper tbody tr:last-child:hover td:last-child {\\n border-bottom-right-radius: 4px;\\n}\\n.v-data-table > .v-data-table__wrapper .v-data-table__mobile-table-row {\\n display: initial;\\n}\\n.v-data-table > .v-data-table__wrapper .v-data-table__mobile-row {\\n height: initial;\\n min-height: 48px;\\n}\\n\\n.v-data-table__empty-wrapper {\\n text-align: center;\\n}\\n\\n.v-data-table__mobile-row {\\n align-items: center;\\n display: flex;\\n justify-content: space-between;\\n}\\n.v-data-table__mobile-row__header {\\n font-weight: 600;\\n}\\n.v-application--is-ltr .v-data-table__mobile-row__header {\\n padding-right: 16px;\\n}\\n.v-application--is-rtl .v-data-table__mobile-row__header {\\n padding-left: 16px;\\n}\\n.v-application--is-ltr .v-data-table__mobile-row__cell {\\n text-align: right;\\n}\\n.v-application--is-rtl .v-data-table__mobile-row__cell {\\n text-align: left;\\n}\\n\\n.v-row-group__header td, .v-row-group__summary td {\\n height: 35px;\\n}\\n\\n.v-data-table__expand-icon {\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n cursor: pointer;\\n}\\n.v-data-table__expand-icon--active {\\n transform: rotate(-180deg);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDataTable/VDataTable.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDataTable/VDataTableHeader.sass": /*!******************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDataTable/VDataTableHeader.sass ***! \******************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-data-table .v-data-table-header th.sortable .v-data-table-header__icon {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-data-table .v-data-table-header th.sortable:hover, .theme--light.v-data-table .v-data-table-header th.sortable.active {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-data-table .v-data-table-header th.sortable.active .v-data-table-header__icon {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-data-table .v-data-table-header__sort-badge {\\n background-color: rgba(0, 0, 0, 0.12);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.theme--dark.v-data-table .v-data-table-header th.sortable .v-data-table-header__icon {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-data-table .v-data-table-header th.sortable:hover, .theme--dark.v-data-table .v-data-table-header th.sortable.active {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-data-table .v-data-table-header th.sortable.active .v-data-table-header__icon {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-data-table .v-data-table-header__sort-badge {\\n background-color: rgba(255, 255, 255, 0.12);\\n color: #FFFFFF;\\n}\\n\\n.v-data-table-header th.sortable {\\n pointer-events: auto;\\n cursor: pointer;\\n outline: 0;\\n}\\n.v-data-table-header th.sortable .v-data-table-header__icon {\\n line-height: 0.9;\\n}\\n.v-data-table-header th.active .v-data-table-header__icon, .v-data-table-header th:hover .v-data-table-header__icon {\\n transform: none;\\n opacity: 1;\\n}\\n.v-data-table-header th.desc .v-data-table-header__icon {\\n transform: rotate(-180deg);\\n}\\n\\n.v-data-table-header__icon {\\n display: inline-block;\\n opacity: 0;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n\\n.v-data-table-header__sort-badge {\\n display: inline-flex;\\n justify-content: center;\\n align-items: center;\\n border: 0px;\\n border-radius: 50%;\\n min-width: 18px;\\n min-height: 18px;\\n height: 18px;\\n width: 18px;\\n}\\n\\n.v-data-table-header-mobile th {\\n height: initial;\\n}\\n\\n.v-data-table-header-mobile__wrapper {\\n display: flex;\\n}\\n.v-data-table-header-mobile__wrapper .v-select {\\n margin-bottom: 8px;\\n}\\n.v-data-table-header-mobile__wrapper .v-select .v-chip {\\n height: 24px;\\n}\\n.v-data-table-header-mobile__wrapper .v-select .v-chip__close.desc .v-icon {\\n transform: rotate(-180deg);\\n}\\n\\n.v-data-table-header-mobile__select {\\n min-width: 56px;\\n display: flex;\\n align-items: center;\\n justify-content: center;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDataTable/VDataTableHeader.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDataTable/VEditDialog.sass": /*!*************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDataTable/VEditDialog.sass ***! \*************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-small-dialog__menu-content, .theme--light.v-small-dialog__actions {\\n background: #FFFFFF;\\n}\\n\\n.theme--dark.v-small-dialog__menu-content, .theme--dark.v-small-dialog__actions {\\n background: #1E1E1E;\\n}\\n\\n.v-small-dialog {\\n display: block;\\n}\\n.v-small-dialog__activator {\\n cursor: pointer;\\n}\\n.v-small-dialog__activator__content {\\n display: inline-block;\\n}\\n.v-small-dialog__content {\\n padding: 0 16px;\\n}\\n.v-small-dialog__actions {\\n padding: 8px;\\n text-align: right;\\n white-space: pre;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDataTable/VEditDialog.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDataTable/VSimpleTable.sass": /*!**************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDataTable/VSimpleTable.sass ***! \**************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-data-table {\\n background-color: #FFFFFF;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-data-table .v-data-table__divider {\\n border-right: thin solid rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-data-table.v-data-table--fixed-header thead th {\\n background: #FFFFFF;\\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr:last-child > th {\\n border-bottom: thin solid rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:not(.v-data-table__mobile-row),\\n.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:not(.v-data-table__mobile-row) {\\n border-bottom: thin solid rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:last-child,\\n.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:last-child {\\n border-bottom: thin solid rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr.active {\\n background: #f5f5f5;\\n}\\n.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:hover:not(.v-data-table__expanded__content):not(.v-data-table__empty-wrapper) {\\n background: #eeeeee;\\n}\\n.theme--light.v-data-table > .v-data-table__wrapper > table > tfoot > tr > td:not(.v-data-table__mobile-row),\\n.theme--light.v-data-table > .v-data-table__wrapper > table > tfoot > tr > th:not(.v-data-table__mobile-row) {\\n border-top: thin solid rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-data-table {\\n background-color: #1E1E1E;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-data-table .v-data-table__divider {\\n border-right: thin solid rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-data-table.v-data-table--fixed-header thead th {\\n background: #1E1E1E;\\n box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > thead > tr > th {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > thead > tr:last-child > th {\\n border-bottom: thin solid rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:not(.v-data-table__mobile-row),\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:not(.v-data-table__mobile-row) {\\n border-bottom: thin solid rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:last-child,\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:last-child {\\n border-bottom: thin solid rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > tbody > tr.active {\\n background: #505050;\\n}\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > tbody > tr:hover:not(.v-data-table__expanded__content):not(.v-data-table__empty-wrapper) {\\n background: #616161;\\n}\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > tfoot > tr > td:not(.v-data-table__mobile-row),\\n.theme--dark.v-data-table > .v-data-table__wrapper > table > tfoot > tr > th:not(.v-data-table__mobile-row) {\\n border-top: thin solid rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-data-table {\\n line-height: 1.5;\\n max-width: 100%;\\n}\\n.v-data-table > .v-data-table__wrapper > table {\\n width: 100%;\\n border-spacing: 0;\\n}\\n.v-data-table > .v-data-table__wrapper > table > tbody > tr > td,\\n.v-data-table > .v-data-table__wrapper > table > tbody > tr > th,\\n.v-data-table > .v-data-table__wrapper > table > thead > tr > td,\\n.v-data-table > .v-data-table__wrapper > table > thead > tr > th,\\n.v-data-table > .v-data-table__wrapper > table > tfoot > tr > td,\\n.v-data-table > .v-data-table__wrapper > table > tfoot > tr > th {\\n padding: 0 16px;\\n transition: height 0.2s cubic-bezier(0.4, 0, 0.6, 1);\\n}\\n.v-data-table > .v-data-table__wrapper > table > tbody > tr > th,\\n.v-data-table > .v-data-table__wrapper > table > thead > tr > th,\\n.v-data-table > .v-data-table__wrapper > table > tfoot > tr > th {\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n font-size: 0.75rem;\\n height: 48px;\\n}\\n.v-application--is-ltr .v-data-table > .v-data-table__wrapper > table > tbody > tr > th,\\n.v-application--is-ltr .v-data-table > .v-data-table__wrapper > table > thead > tr > th,\\n.v-application--is-ltr .v-data-table > .v-data-table__wrapper > table > tfoot > tr > th {\\n text-align: left;\\n}\\n.v-application--is-rtl .v-data-table > .v-data-table__wrapper > table > tbody > tr > th,\\n.v-application--is-rtl .v-data-table > .v-data-table__wrapper > table > thead > tr > th,\\n.v-application--is-rtl .v-data-table > .v-data-table__wrapper > table > tfoot > tr > th {\\n text-align: right;\\n}\\n.v-data-table > .v-data-table__wrapper > table > tbody > tr > td,\\n.v-data-table > .v-data-table__wrapper > table > thead > tr > td,\\n.v-data-table > .v-data-table__wrapper > table > tfoot > tr > td {\\n font-size: 0.875rem;\\n height: 48px;\\n}\\n\\n.v-data-table__wrapper {\\n overflow-x: auto;\\n overflow-y: hidden;\\n}\\n\\n.v-data-table__progress {\\n height: auto !important;\\n}\\n.v-data-table__progress th {\\n height: auto !important;\\n border: none !important;\\n padding: 0;\\n position: relative;\\n}\\n\\n.v-data-table--dense > .v-data-table__wrapper > table > tbody > tr > td,\\n.v-data-table--dense > .v-data-table__wrapper > table > thead > tr > td,\\n.v-data-table--dense > .v-data-table__wrapper > table > tfoot > tr > td {\\n height: 32px;\\n}\\n.v-data-table--dense > .v-data-table__wrapper > table > tbody > tr > th,\\n.v-data-table--dense > .v-data-table__wrapper > table > thead > tr > th,\\n.v-data-table--dense > .v-data-table__wrapper > table > tfoot > tr > th {\\n height: 32px;\\n}\\n\\n.v-data-table--has-top > .v-data-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {\\n border-top-left-radius: 0;\\n}\\n.v-data-table--has-top > .v-data-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {\\n border-top-right-radius: 0;\\n}\\n\\n.v-data-table--has-bottom > .v-data-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {\\n border-bottom-left-radius: 0;\\n}\\n.v-data-table--has-bottom > .v-data-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {\\n border-bottom-right-radius: 0;\\n}\\n\\n.v-data-table--fixed-height .v-data-table__wrapper {\\n overflow-y: auto;\\n}\\n\\n.v-data-table--fixed-header > .v-data-table__wrapper {\\n overflow-y: auto;\\n}\\n.v-data-table--fixed-header > .v-data-table__wrapper > table > thead > tr > th {\\n border-bottom: 0px !important;\\n position: sticky;\\n top: 0;\\n z-index: 2;\\n}\\n.v-data-table--fixed-header > .v-data-table__wrapper > table > thead > tr:nth-child(2) > th {\\n top: 48px;\\n}\\n.v-application--is-ltr .v-data-table--fixed-header .v-data-footer {\\n margin-right: 17px;\\n}\\n.v-application--is-rtl .v-data-table--fixed-header .v-data-footer {\\n margin-left: 17px;\\n}\\n\\n.v-data-table--fixed-header.v-data-table--dense > .v-data-table__wrapper > table > thead > tr:nth-child(2) > th {\\n top: 32px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDataTable/VSimpleTable.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDataTable/VVirtualTable.sass": /*!***************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDataTable/VVirtualTable.sass ***! \***************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-virtual-table {\\n position: relative;\\n}\\n\\n.v-virtual-table__wrapper {\\n display: flex;\\n}\\n\\n.v-virtual-table__table {\\n width: 100%;\\n height: 100%;\\n overflow-x: auto;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDataTable/VVirtualTable.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDatePicker/VDatePickerHeader.sass": /*!********************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDatePicker/VDatePickerHeader.sass ***! \********************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) button:not(:hover):not(:focus) {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-date-picker-header .v-date-picker-header__value--disabled button {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.theme--dark.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) button:not(:hover):not(:focus) {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-date-picker-header .v-date-picker-header__value--disabled button {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n\\n.v-date-picker-header {\\n padding: 4px 16px;\\n align-items: center;\\n display: flex;\\n justify-content: space-between;\\n position: relative;\\n}\\n.v-date-picker-header .v-btn {\\n margin: 0;\\n z-index: auto;\\n}\\n.v-date-picker-header .v-icon {\\n cursor: pointer;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n\\n.v-date-picker-header__value {\\n flex: 1;\\n text-align: center;\\n position: relative;\\n overflow: hidden;\\n}\\n.v-date-picker-header__value div {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n width: 100%;\\n}\\n.v-date-picker-header__value button {\\n cursor: pointer;\\n font-weight: bold;\\n outline: none;\\n padding: 0.5rem;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n\\n.v-date-picker-header--disabled {\\n pointer-events: none;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDatePicker/VDatePickerHeader.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDatePicker/VDatePickerTable.sass": /*!*******************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDatePicker/VDatePickerTable.sass ***! \*******************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-date-picker-table th,\\n.theme--light.v-date-picker-table .v-date-picker-table--date__week {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.theme--dark.v-date-picker-table th,\\n.theme--dark.v-date-picker-table .v-date-picker-table--date__week {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n\\n.v-date-picker-table {\\n position: relative;\\n padding: 0 12px;\\n height: 242px;\\n}\\n.v-date-picker-table table {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n top: 0;\\n table-layout: fixed;\\n width: 100%;\\n}\\n.v-date-picker-table td, .v-date-picker-table th {\\n text-align: center;\\n position: relative;\\n}\\n.v-date-picker-table th {\\n font-size: 12px;\\n}\\n.v-date-picker-table--date .v-btn {\\n height: 32px;\\n width: 32px;\\n}\\n.v-date-picker-table .v-btn {\\n z-index: auto;\\n margin: 0;\\n font-size: 12px;\\n}\\n.v-date-picker-table .v-btn.v-btn--active {\\n color: #FFFFFF;\\n}\\n\\n.v-date-picker-table--month td {\\n width: 33.333333%;\\n height: 56px;\\n vertical-align: middle;\\n text-align: center;\\n}\\n.v-date-picker-table--month td .v-btn {\\n margin: 0 auto;\\n max-width: 140px;\\n min-width: 40px;\\n width: 100%;\\n}\\n\\n.v-date-picker-table--date th {\\n padding: 8px 0;\\n font-weight: 600;\\n}\\n.v-date-picker-table--date td {\\n width: 45px;\\n}\\n\\n.v-date-picker-table__events {\\n height: 8px;\\n left: 0;\\n position: absolute;\\n text-align: center;\\n white-space: pre;\\n width: 100%;\\n}\\n.v-date-picker-table__events > div {\\n border-radius: 50%;\\n display: inline-block;\\n height: 8px;\\n margin: 0 1px;\\n width: 8px;\\n}\\n\\n.v-date-picker-table--date .v-date-picker-table__events {\\n bottom: 6px;\\n}\\n\\n.v-date-picker-table--month .v-date-picker-table__events {\\n bottom: 8px;\\n}\\n\\n.v-date-picker-table__current .v-date-picker-table__events {\\n margin-bottom: -1px;\\n}\\n\\n.v-date-picker-table--disabled {\\n pointer-events: none;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDatePicker/VDatePickerTable.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDatePicker/VDatePickerTitle.sass": /*!*******************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDatePicker/VDatePickerTitle.sass ***! \*******************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-date-picker-title {\\n display: flex;\\n justify-content: space-between;\\n flex-direction: column;\\n flex-wrap: wrap;\\n line-height: 1;\\n}\\n.v-application--is-ltr .v-date-picker-title .v-picker__title__btn {\\n text-align: left;\\n}\\n.v-application--is-rtl .v-date-picker-title .v-picker__title__btn {\\n text-align: right;\\n}\\n.v-date-picker-title__year {\\n align-items: center;\\n display: inline-flex;\\n font-size: 14px;\\n font-weight: 500;\\n margin-bottom: 8px;\\n}\\n.v-date-picker-title__date {\\n font-size: 34px;\\n text-align: left;\\n font-weight: 500;\\n position: relative;\\n overflow: hidden;\\n padding-bottom: 8px;\\n margin-bottom: -8px;\\n}\\n.v-date-picker-title__date > div {\\n position: relative;\\n}\\n.v-date-picker-title--disabled {\\n pointer-events: none;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDatePicker/VDatePickerTitle.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDatePicker/VDatePickerYears.sass": /*!*******************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDatePicker/VDatePickerYears.sass ***! \*******************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-date-picker-years {\\n font-size: 16px;\\n font-weight: 400;\\n height: 290px;\\n list-style-type: none;\\n overflow: auto;\\n text-align: center;\\n}\\n.v-date-picker-years.v-date-picker-years {\\n padding: 0;\\n}\\n.v-date-picker-years li {\\n cursor: pointer;\\n padding: 8px 0;\\n transition: none;\\n}\\n.v-date-picker-years li.active {\\n font-size: 26px;\\n font-weight: 500;\\n padding: 10px 0;\\n}\\n.v-date-picker-years li:hover {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n\\n.v-picker--landscape .v-date-picker-years {\\n padding: 0;\\n height: 290px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDatePicker/VDatePickerYears.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDialog/VDialog.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDialog/VDialog.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-dialog {\\n border-radius: 4px;\\n margin: 24px;\\n overflow-y: auto;\\n pointer-events: auto;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\\n width: 100%;\\n z-index: inherit;\\n outline: none;\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n}\\n.v-dialog:not(.v-dialog--fullscreen) {\\n max-height: 90%;\\n}\\n.v-dialog > * {\\n width: 100%;\\n}\\n.v-dialog > .v-card > .v-card__title {\\n font-size: 1.25rem;\\n font-weight: 500;\\n letter-spacing: 0.0125em;\\n padding: 16px 24px 10px;\\n}\\n.v-dialog > .v-card > .v-card__text {\\n padding: 0 24px 20px;\\n}\\n.v-dialog > .v-card > .v-card__subtitle {\\n padding: 0 24px 20px;\\n}\\n.v-dialog > .v-card > .v-card__actions {\\n padding: 8px 16px;\\n}\\n\\n.v-dialog__content {\\n align-items: center;\\n display: flex;\\n height: 100%;\\n justify-content: center;\\n left: 0;\\n pointer-events: none;\\n position: fixed;\\n top: 0;\\n transition: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), z-index 1ms;\\n width: 100%;\\n z-index: 6;\\n}\\n\\n.v-dialog__container {\\n display: none;\\n}\\n.v-dialog__container--attached {\\n display: inline;\\n}\\n\\n.v-dialog--animated {\\n animation-duration: 0.15s;\\n animation-name: animate-dialog;\\n animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);\\n}\\n\\n.v-dialog--fullscreen {\\n border-radius: 0;\\n margin: 0;\\n height: 100%;\\n position: fixed;\\n overflow-y: auto;\\n top: 0;\\n left: 0;\\n}\\n.v-dialog--fullscreen > .v-card {\\n min-height: 100%;\\n min-width: 100%;\\n margin: 0 !important;\\n padding: 0 !important;\\n}\\n\\n.v-dialog--scrollable,\\n.v-dialog--scrollable > form {\\n display: flex;\\n}\\n.v-dialog--scrollable > .v-card,\\n.v-dialog--scrollable > form > .v-card {\\n display: flex;\\n flex: 1 1 100%;\\n flex-direction: column;\\n max-height: 100%;\\n max-width: 100%;\\n}\\n.v-dialog--scrollable > .v-card > .v-card__title,\\n.v-dialog--scrollable > .v-card > .v-card__actions,\\n.v-dialog--scrollable > form > .v-card > .v-card__title,\\n.v-dialog--scrollable > form > .v-card > .v-card__actions {\\n flex: 0 0 auto;\\n}\\n.v-dialog--scrollable > .v-card > .v-card__text,\\n.v-dialog--scrollable > form > .v-card > .v-card__text {\\n backface-visibility: hidden;\\n flex: 1 1 auto;\\n overflow-y: auto;\\n}\\n\\n@keyframes animate-dialog {\\n 0% {\\n transform: scale(1);\\n }\\n 50% {\\n transform: scale(1.03);\\n }\\n 100% {\\n transform: scale(1);\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDialog/VDialog.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VDivider/VDivider.sass": /*!********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VDivider/VDivider.sass ***! \********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-divider {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-divider {\\n border-color: rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-divider {\\n display: block;\\n flex: 1 1 0px;\\n max-width: 100%;\\n height: 0px;\\n max-height: 0px;\\n border: solid;\\n border-width: thin 0 0 0;\\n transition: inherit;\\n}\\n.v-divider--inset:not(.v-divider--vertical) {\\n max-width: calc(100% - 72px);\\n}\\n.v-application--is-ltr .v-divider--inset:not(.v-divider--vertical) {\\n margin-left: 72px;\\n}\\n.v-application--is-rtl .v-divider--inset:not(.v-divider--vertical) {\\n margin-right: 72px;\\n}\\n.v-divider--vertical {\\n align-self: stretch;\\n border: solid;\\n border-width: 0 thin 0 0;\\n display: inline-flex;\\n height: inherit;\\n min-height: 100%;\\n max-height: 100%;\\n max-width: 0px;\\n width: 0px;\\n vertical-align: text-bottom;\\n margin: 0 -1px;\\n}\\n.v-divider--vertical.v-divider--inset {\\n margin-top: 8px;\\n min-height: 0;\\n max-height: calc(100% - 16px);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VDivider/VDivider.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VExpansionPanel/VExpansionPanel.sass": /*!**********************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VExpansionPanel/VExpansionPanel.sass ***! \**********************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-expansion-panels .v-expansion-panel {\\n background-color: #FFFFFF;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-expansion-panels .v-expansion-panel--disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-expansion-panels .v-expansion-panel:not(:first-child)::after {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-expansion-panels .v-expansion-panel-header .v-expansion-panel-header__icon .v-icon {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header:hover::before {\\n opacity: 0.04;\\n}\\n.theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header:focus::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:hover::before, .theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:focus::before {\\n opacity: 0.16;\\n}\\n.theme--light.v-expansion-panels.v-expansion-panels--hover > .v-expansion-panel > .v-expansion-panel-header:hover::before {\\n opacity: 0.04;\\n}\\n\\n.theme--dark.v-expansion-panels .v-expansion-panel {\\n background-color: #1E1E1E;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-expansion-panels .v-expansion-panel--disabled {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-expansion-panels .v-expansion-panel:not(:first-child)::after {\\n border-color: rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-expansion-panels .v-expansion-panel-header .v-expansion-panel-header__icon .v-icon {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header:hover::before {\\n opacity: 0.08;\\n}\\n.theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header:focus::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:hover::before, .theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:focus::before {\\n opacity: 0.32;\\n}\\n.theme--dark.v-expansion-panels.v-expansion-panels--hover > .v-expansion-panel > .v-expansion-panel-header:hover::before {\\n opacity: 0.08;\\n}\\n\\n.v-expansion-panels {\\n border-radius: 4px;\\n display: flex;\\n flex-wrap: wrap;\\n justify-content: center;\\n list-style-type: none;\\n padding: 0;\\n width: 100%;\\n z-index: 1;\\n}\\n.v-expansion-panels > * {\\n cursor: auto;\\n}\\n.v-expansion-panels > *:first-child {\\n border-top-left-radius: inherit;\\n border-top-right-radius: inherit;\\n}\\n.v-expansion-panels > *:last-child {\\n border-bottom-left-radius: inherit;\\n border-bottom-right-radius: inherit;\\n}\\n.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile) > .v-expansion-panel--active {\\n border-radius: 4px;\\n}\\n.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile) > .v-expansion-panel--active + .v-expansion-panel {\\n border-top-left-radius: 4px;\\n border-top-right-radius: 4px;\\n}\\n.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile) > .v-expansion-panel--next-active {\\n border-bottom-left-radius: 4px;\\n border-bottom-right-radius: 4px;\\n}\\n.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile) > .v-expansion-panel--next-active .v-expansion-panel-header {\\n border-bottom-left-radius: inherit;\\n border-bottom-right-radius: inherit;\\n}\\n\\n.v-expansion-panel {\\n flex: 1 0 100%;\\n max-width: 100%;\\n position: relative;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-expansion-panel::before {\\n border-radius: inherit;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n position: absolute;\\n right: 0;\\n top: 0;\\n z-index: -1;\\n transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-expansion-panel:not(:first-child)::after {\\n border-top: thin solid;\\n content: \\\"\\\";\\n left: 0;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transition: 0.2s border-color cubic-bezier(0.4, 0, 0.2, 1), 0.2s opacity cubic-bezier(0.4, 0, 0.2, 1);\\n}\\n.v-expansion-panel--disabled .v-expansion-panel-header {\\n pointer-events: none;\\n}\\n.v-expansion-panel--active:not(:first-child),\\n.v-expansion-panel--active + .v-expansion-panel {\\n margin-top: 16px;\\n}\\n.v-expansion-panel--active:not(:first-child)::after,\\n.v-expansion-panel--active + .v-expansion-panel::after {\\n opacity: 0;\\n}\\n.v-expansion-panel--active > .v-expansion-panel-header {\\n min-height: 64px;\\n}\\n.v-expansion-panel--active > .v-expansion-panel-header--active .v-expansion-panel-header__icon:not(.v-expansion-panel-header__icon--disable-rotate) .v-icon {\\n transform: rotate(-180deg);\\n}\\n\\n.v-expansion-panel-header__icon {\\n display: inline-flex;\\n margin-bottom: -4px;\\n margin-top: -4px;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-application--is-ltr .v-expansion-panel-header__icon {\\n margin-left: auto;\\n}\\n.v-application--is-rtl .v-expansion-panel-header__icon {\\n margin-right: auto;\\n}\\n\\n.v-expansion-panel-header {\\n align-items: center;\\n border-top-left-radius: inherit;\\n border-top-right-radius: inherit;\\n display: flex;\\n font-size: 0.9375rem;\\n line-height: 1;\\n min-height: 48px;\\n outline: none;\\n padding: 16px 24px;\\n position: relative;\\n transition: 0.3s min-height cubic-bezier(0.25, 0.8, 0.5, 1);\\n width: 100%;\\n}\\n.v-application--is-ltr .v-expansion-panel-header {\\n text-align: left;\\n}\\n.v-application--is-rtl .v-expansion-panel-header {\\n text-align: right;\\n}\\n.v-expansion-panel-header:not(.v-expansion-panel-header--mousedown):focus::before {\\n opacity: 0.12;\\n}\\n.v-expansion-panel-header:before {\\n background-color: currentColor;\\n border-radius: inherit;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0;\\n pointer-events: none;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transition: 0.3s opacity cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-expansion-panel-header > *:not(.v-expansion-panel-header__icon) {\\n flex: 1 1 auto;\\n}\\n\\n.v-expansion-panel-content {\\n display: flex;\\n}\\n.v-expansion-panel-content__wrap {\\n padding: 0 24px 16px;\\n flex: 1 1 auto;\\n max-width: 100%;\\n}\\n\\n.v-expansion-panels--accordion > .v-expansion-panel {\\n margin-top: 0;\\n}\\n.v-expansion-panels--accordion > .v-expansion-panel::after {\\n opacity: 1;\\n}\\n\\n.v-expansion-panels--popout > .v-expansion-panel {\\n max-width: calc(100% - 32px);\\n}\\n.v-expansion-panels--popout > .v-expansion-panel--active {\\n max-width: calc(100% + 16px);\\n}\\n\\n.v-expansion-panels--inset > .v-expansion-panel {\\n max-width: 100%;\\n}\\n.v-expansion-panels--inset > .v-expansion-panel--active {\\n max-width: calc(100% - 32px);\\n}\\n\\n.v-expansion-panels--flat > .v-expansion-panel::after {\\n border-top: none;\\n}\\n.v-expansion-panels--flat > .v-expansion-panel::before {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.v-expansion-panels--tile {\\n border-radius: 0;\\n}\\n.v-expansion-panels--tile > .v-expansion-panel::before {\\n border-radius: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VExpansionPanel/VExpansionPanel.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VFileInput/VFileInput.sass": /*!************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VFileInput/VFileInput.sass ***! \************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-file-input .v-file-input__text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-file-input .v-file-input__text--placeholder {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.theme--light.v-file-input.v-input--is-disabled .v-file-input__text {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-file-input.v-input--is-disabled .v-file-input__text .v-file-input__text--placeholder {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.theme--dark.v-file-input .v-file-input__text {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-file-input .v-file-input__text--placeholder {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--dark.v-file-input.v-input--is-disabled .v-file-input__text {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-file-input.v-input--is-disabled .v-file-input__text .v-file-input__text--placeholder {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n\\n.v-file-input input[type=file] {\\n left: 0;\\n opacity: 0;\\n pointer-events: none;\\n position: absolute;\\n max-width: 0;\\n width: 0;\\n}\\n\\n.v-file-input .v-file-input__text {\\n align-items: center;\\n align-self: stretch;\\n display: flex;\\n flex-wrap: wrap;\\n width: 100%;\\n}\\n.v-file-input .v-file-input__text.v-file-input__text--chips {\\n flex-wrap: wrap;\\n}\\n.v-file-input .v-file-input__text .v-chip {\\n margin: 4px;\\n}\\n\\n.v-file-input .v-text-field__slot {\\n min-height: 32px;\\n}\\n\\n.v-file-input.v-input--dense .v-text-field__slot {\\n min-height: 26px;\\n}\\n\\n.v-file-input.v-text-field--filled:not(.v-text-field--single-line) .v-file-input__text {\\n padding-top: 22px;\\n}\\n\\n.v-file-input.v-text-field--outlined .v-text-field__slot {\\n padding: 6px 0;\\n}\\n.v-file-input.v-text-field--outlined.v-input--dense .v-text-field__slot {\\n padding: 3px 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VFileInput/VFileInput.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VFooter/VFooter.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VFooter/VFooter.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-footer {\\n background-color: #f5f5f5;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.theme--dark.v-footer {\\n background-color: #272727;\\n color: #FFFFFF;\\n}\\n\\n.v-sheet.v-footer {\\n border-radius: 0;\\n}\\n.v-sheet.v-footer:not(.v-sheet--outlined) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-footer.v-sheet--shaped {\\n border-radius: 16px 0;\\n}\\n\\n.v-footer {\\n align-items: center;\\n display: flex;\\n flex: 0 1 auto !important;\\n flex-wrap: wrap;\\n padding: 6px 16px;\\n position: relative;\\n transition-duration: 0.2s;\\n transition-property: background-color, left, right;\\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\\n}\\n.v-footer:not([data-booted=true]) {\\n transition: none !important;\\n}\\n\\n.v-footer--absolute,\\n.v-footer--fixed {\\n z-index: 3;\\n}\\n\\n.v-footer--absolute {\\n position: absolute;\\n}\\n.v-footer--absolute:not(.v-footer--inset) {\\n width: 100%;\\n}\\n\\n.v-footer--fixed {\\n position: fixed;\\n}\\n\\n.v-footer--padless {\\n padding: 0px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VFooter/VFooter.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VGrid/VGrid.sass": /*!**************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VGrid/VGrid.sass ***! \**************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".container {\\n width: 100%;\\n padding: 12px;\\n margin-right: auto;\\n margin-left: auto;\\n}\\n@media (min-width: 960px) {\\n .container {\\n max-width: 900px;\\n }\\n}\\n@media (min-width: 1264px) {\\n .container {\\n max-width: 1185px;\\n }\\n}\\n@media (min-width: 1904px) {\\n .container {\\n max-width: 1785px;\\n }\\n}\\n.container--fluid {\\n max-width: 100%;\\n}\\n\\n.row {\\n display: flex;\\n flex-wrap: wrap;\\n flex: 1 1 auto;\\n margin: -12px;\\n}\\n.row + .row {\\n margin-top: 12px;\\n}\\n.row + .row--dense {\\n margin-top: 4px;\\n}\\n.row--dense {\\n margin: -4px;\\n}\\n.row--dense > .col,\\n.row--dense > [class*=col-] {\\n padding: 4px;\\n}\\n.row.no-gutters {\\n margin: 0;\\n}\\n.row.no-gutters > .col,\\n.row.no-gutters > [class*=col-] {\\n padding: 0;\\n}\\n\\n.col-xl,\\n.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,\\n.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,\\n.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,\\n.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,\\n.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {\\n width: 100%;\\n padding: 12px;\\n}\\n\\n.col {\\n flex-basis: 0;\\n flex-grow: 1;\\n max-width: 100%;\\n}\\n\\n.col-auto {\\n flex: 0 0 auto;\\n width: auto;\\n max-width: 100%;\\n}\\n\\n.col-1 {\\n flex: 0 0 8.3333333333%;\\n max-width: 8.3333333333%;\\n}\\n\\n.col-2 {\\n flex: 0 0 16.6666666667%;\\n max-width: 16.6666666667%;\\n}\\n\\n.col-3 {\\n flex: 0 0 25%;\\n max-width: 25%;\\n}\\n\\n.col-4 {\\n flex: 0 0 33.3333333333%;\\n max-width: 33.3333333333%;\\n}\\n\\n.col-5 {\\n flex: 0 0 41.6666666667%;\\n max-width: 41.6666666667%;\\n}\\n\\n.col-6 {\\n flex: 0 0 50%;\\n max-width: 50%;\\n}\\n\\n.col-7 {\\n flex: 0 0 58.3333333333%;\\n max-width: 58.3333333333%;\\n}\\n\\n.col-8 {\\n flex: 0 0 66.6666666667%;\\n max-width: 66.6666666667%;\\n}\\n\\n.col-9 {\\n flex: 0 0 75%;\\n max-width: 75%;\\n}\\n\\n.col-10 {\\n flex: 0 0 83.3333333333%;\\n max-width: 83.3333333333%;\\n}\\n\\n.col-11 {\\n flex: 0 0 91.6666666667%;\\n max-width: 91.6666666667%;\\n}\\n\\n.col-12 {\\n flex: 0 0 100%;\\n max-width: 100%;\\n}\\n\\n.v-application--is-ltr .offset-1 {\\n margin-left: 8.3333333333%;\\n}\\n.v-application--is-rtl .offset-1 {\\n margin-right: 8.3333333333%;\\n}\\n\\n.v-application--is-ltr .offset-2 {\\n margin-left: 16.6666666667%;\\n}\\n.v-application--is-rtl .offset-2 {\\n margin-right: 16.6666666667%;\\n}\\n\\n.v-application--is-ltr .offset-3 {\\n margin-left: 25%;\\n}\\n.v-application--is-rtl .offset-3 {\\n margin-right: 25%;\\n}\\n\\n.v-application--is-ltr .offset-4 {\\n margin-left: 33.3333333333%;\\n}\\n.v-application--is-rtl .offset-4 {\\n margin-right: 33.3333333333%;\\n}\\n\\n.v-application--is-ltr .offset-5 {\\n margin-left: 41.6666666667%;\\n}\\n.v-application--is-rtl .offset-5 {\\n margin-right: 41.6666666667%;\\n}\\n\\n.v-application--is-ltr .offset-6 {\\n margin-left: 50%;\\n}\\n.v-application--is-rtl .offset-6 {\\n margin-right: 50%;\\n}\\n\\n.v-application--is-ltr .offset-7 {\\n margin-left: 58.3333333333%;\\n}\\n.v-application--is-rtl .offset-7 {\\n margin-right: 58.3333333333%;\\n}\\n\\n.v-application--is-ltr .offset-8 {\\n margin-left: 66.6666666667%;\\n}\\n.v-application--is-rtl .offset-8 {\\n margin-right: 66.6666666667%;\\n}\\n\\n.v-application--is-ltr .offset-9 {\\n margin-left: 75%;\\n}\\n.v-application--is-rtl .offset-9 {\\n margin-right: 75%;\\n}\\n\\n.v-application--is-ltr .offset-10 {\\n margin-left: 83.3333333333%;\\n}\\n.v-application--is-rtl .offset-10 {\\n margin-right: 83.3333333333%;\\n}\\n\\n.v-application--is-ltr .offset-11 {\\n margin-left: 91.6666666667%;\\n}\\n.v-application--is-rtl .offset-11 {\\n margin-right: 91.6666666667%;\\n}\\n\\n@media (min-width: 600px) {\\n .col-sm {\\n flex-basis: 0;\\n flex-grow: 1;\\n max-width: 100%;\\n }\\n .col-sm-auto {\\n flex: 0 0 auto;\\n width: auto;\\n max-width: 100%;\\n }\\n .col-sm-1 {\\n flex: 0 0 8.3333333333%;\\n max-width: 8.3333333333%;\\n }\\n .col-sm-2 {\\n flex: 0 0 16.6666666667%;\\n max-width: 16.6666666667%;\\n }\\n .col-sm-3 {\\n flex: 0 0 25%;\\n max-width: 25%;\\n }\\n .col-sm-4 {\\n flex: 0 0 33.3333333333%;\\n max-width: 33.3333333333%;\\n }\\n .col-sm-5 {\\n flex: 0 0 41.6666666667%;\\n max-width: 41.6666666667%;\\n }\\n .col-sm-6 {\\n flex: 0 0 50%;\\n max-width: 50%;\\n }\\n .col-sm-7 {\\n flex: 0 0 58.3333333333%;\\n max-width: 58.3333333333%;\\n }\\n .col-sm-8 {\\n flex: 0 0 66.6666666667%;\\n max-width: 66.6666666667%;\\n }\\n .col-sm-9 {\\n flex: 0 0 75%;\\n max-width: 75%;\\n }\\n .col-sm-10 {\\n flex: 0 0 83.3333333333%;\\n max-width: 83.3333333333%;\\n }\\n .col-sm-11 {\\n flex: 0 0 91.6666666667%;\\n max-width: 91.6666666667%;\\n }\\n .col-sm-12 {\\n flex: 0 0 100%;\\n max-width: 100%;\\n }\\n .v-application--is-ltr .offset-sm-0 {\\n margin-left: 0;\\n }\\n .v-application--is-rtl .offset-sm-0 {\\n margin-right: 0;\\n }\\n .v-application--is-ltr .offset-sm-1 {\\n margin-left: 8.3333333333%;\\n }\\n .v-application--is-rtl .offset-sm-1 {\\n margin-right: 8.3333333333%;\\n }\\n .v-application--is-ltr .offset-sm-2 {\\n margin-left: 16.6666666667%;\\n }\\n .v-application--is-rtl .offset-sm-2 {\\n margin-right: 16.6666666667%;\\n }\\n .v-application--is-ltr .offset-sm-3 {\\n margin-left: 25%;\\n }\\n .v-application--is-rtl .offset-sm-3 {\\n margin-right: 25%;\\n }\\n .v-application--is-ltr .offset-sm-4 {\\n margin-left: 33.3333333333%;\\n }\\n .v-application--is-rtl .offset-sm-4 {\\n margin-right: 33.3333333333%;\\n }\\n .v-application--is-ltr .offset-sm-5 {\\n margin-left: 41.6666666667%;\\n }\\n .v-application--is-rtl .offset-sm-5 {\\n margin-right: 41.6666666667%;\\n }\\n .v-application--is-ltr .offset-sm-6 {\\n margin-left: 50%;\\n }\\n .v-application--is-rtl .offset-sm-6 {\\n margin-right: 50%;\\n }\\n .v-application--is-ltr .offset-sm-7 {\\n margin-left: 58.3333333333%;\\n }\\n .v-application--is-rtl .offset-sm-7 {\\n margin-right: 58.3333333333%;\\n }\\n .v-application--is-ltr .offset-sm-8 {\\n margin-left: 66.6666666667%;\\n }\\n .v-application--is-rtl .offset-sm-8 {\\n margin-right: 66.6666666667%;\\n }\\n .v-application--is-ltr .offset-sm-9 {\\n margin-left: 75%;\\n }\\n .v-application--is-rtl .offset-sm-9 {\\n margin-right: 75%;\\n }\\n .v-application--is-ltr .offset-sm-10 {\\n margin-left: 83.3333333333%;\\n }\\n .v-application--is-rtl .offset-sm-10 {\\n margin-right: 83.3333333333%;\\n }\\n .v-application--is-ltr .offset-sm-11 {\\n margin-left: 91.6666666667%;\\n }\\n .v-application--is-rtl .offset-sm-11 {\\n margin-right: 91.6666666667%;\\n }\\n}\\n@media (min-width: 960px) {\\n .col-md {\\n flex-basis: 0;\\n flex-grow: 1;\\n max-width: 100%;\\n }\\n .col-md-auto {\\n flex: 0 0 auto;\\n width: auto;\\n max-width: 100%;\\n }\\n .col-md-1 {\\n flex: 0 0 8.3333333333%;\\n max-width: 8.3333333333%;\\n }\\n .col-md-2 {\\n flex: 0 0 16.6666666667%;\\n max-width: 16.6666666667%;\\n }\\n .col-md-3 {\\n flex: 0 0 25%;\\n max-width: 25%;\\n }\\n .col-md-4 {\\n flex: 0 0 33.3333333333%;\\n max-width: 33.3333333333%;\\n }\\n .col-md-5 {\\n flex: 0 0 41.6666666667%;\\n max-width: 41.6666666667%;\\n }\\n .col-md-6 {\\n flex: 0 0 50%;\\n max-width: 50%;\\n }\\n .col-md-7 {\\n flex: 0 0 58.3333333333%;\\n max-width: 58.3333333333%;\\n }\\n .col-md-8 {\\n flex: 0 0 66.6666666667%;\\n max-width: 66.6666666667%;\\n }\\n .col-md-9 {\\n flex: 0 0 75%;\\n max-width: 75%;\\n }\\n .col-md-10 {\\n flex: 0 0 83.3333333333%;\\n max-width: 83.3333333333%;\\n }\\n .col-md-11 {\\n flex: 0 0 91.6666666667%;\\n max-width: 91.6666666667%;\\n }\\n .col-md-12 {\\n flex: 0 0 100%;\\n max-width: 100%;\\n }\\n .v-application--is-ltr .offset-md-0 {\\n margin-left: 0;\\n }\\n .v-application--is-rtl .offset-md-0 {\\n margin-right: 0;\\n }\\n .v-application--is-ltr .offset-md-1 {\\n margin-left: 8.3333333333%;\\n }\\n .v-application--is-rtl .offset-md-1 {\\n margin-right: 8.3333333333%;\\n }\\n .v-application--is-ltr .offset-md-2 {\\n margin-left: 16.6666666667%;\\n }\\n .v-application--is-rtl .offset-md-2 {\\n margin-right: 16.6666666667%;\\n }\\n .v-application--is-ltr .offset-md-3 {\\n margin-left: 25%;\\n }\\n .v-application--is-rtl .offset-md-3 {\\n margin-right: 25%;\\n }\\n .v-application--is-ltr .offset-md-4 {\\n margin-left: 33.3333333333%;\\n }\\n .v-application--is-rtl .offset-md-4 {\\n margin-right: 33.3333333333%;\\n }\\n .v-application--is-ltr .offset-md-5 {\\n margin-left: 41.6666666667%;\\n }\\n .v-application--is-rtl .offset-md-5 {\\n margin-right: 41.6666666667%;\\n }\\n .v-application--is-ltr .offset-md-6 {\\n margin-left: 50%;\\n }\\n .v-application--is-rtl .offset-md-6 {\\n margin-right: 50%;\\n }\\n .v-application--is-ltr .offset-md-7 {\\n margin-left: 58.3333333333%;\\n }\\n .v-application--is-rtl .offset-md-7 {\\n margin-right: 58.3333333333%;\\n }\\n .v-application--is-ltr .offset-md-8 {\\n margin-left: 66.6666666667%;\\n }\\n .v-application--is-rtl .offset-md-8 {\\n margin-right: 66.6666666667%;\\n }\\n .v-application--is-ltr .offset-md-9 {\\n margin-left: 75%;\\n }\\n .v-application--is-rtl .offset-md-9 {\\n margin-right: 75%;\\n }\\n .v-application--is-ltr .offset-md-10 {\\n margin-left: 83.3333333333%;\\n }\\n .v-application--is-rtl .offset-md-10 {\\n margin-right: 83.3333333333%;\\n }\\n .v-application--is-ltr .offset-md-11 {\\n margin-left: 91.6666666667%;\\n }\\n .v-application--is-rtl .offset-md-11 {\\n margin-right: 91.6666666667%;\\n }\\n}\\n@media (min-width: 1264px) {\\n .col-lg {\\n flex-basis: 0;\\n flex-grow: 1;\\n max-width: 100%;\\n }\\n .col-lg-auto {\\n flex: 0 0 auto;\\n width: auto;\\n max-width: 100%;\\n }\\n .col-lg-1 {\\n flex: 0 0 8.3333333333%;\\n max-width: 8.3333333333%;\\n }\\n .col-lg-2 {\\n flex: 0 0 16.6666666667%;\\n max-width: 16.6666666667%;\\n }\\n .col-lg-3 {\\n flex: 0 0 25%;\\n max-width: 25%;\\n }\\n .col-lg-4 {\\n flex: 0 0 33.3333333333%;\\n max-width: 33.3333333333%;\\n }\\n .col-lg-5 {\\n flex: 0 0 41.6666666667%;\\n max-width: 41.6666666667%;\\n }\\n .col-lg-6 {\\n flex: 0 0 50%;\\n max-width: 50%;\\n }\\n .col-lg-7 {\\n flex: 0 0 58.3333333333%;\\n max-width: 58.3333333333%;\\n }\\n .col-lg-8 {\\n flex: 0 0 66.6666666667%;\\n max-width: 66.6666666667%;\\n }\\n .col-lg-9 {\\n flex: 0 0 75%;\\n max-width: 75%;\\n }\\n .col-lg-10 {\\n flex: 0 0 83.3333333333%;\\n max-width: 83.3333333333%;\\n }\\n .col-lg-11 {\\n flex: 0 0 91.6666666667%;\\n max-width: 91.6666666667%;\\n }\\n .col-lg-12 {\\n flex: 0 0 100%;\\n max-width: 100%;\\n }\\n .v-application--is-ltr .offset-lg-0 {\\n margin-left: 0;\\n }\\n .v-application--is-rtl .offset-lg-0 {\\n margin-right: 0;\\n }\\n .v-application--is-ltr .offset-lg-1 {\\n margin-left: 8.3333333333%;\\n }\\n .v-application--is-rtl .offset-lg-1 {\\n margin-right: 8.3333333333%;\\n }\\n .v-application--is-ltr .offset-lg-2 {\\n margin-left: 16.6666666667%;\\n }\\n .v-application--is-rtl .offset-lg-2 {\\n margin-right: 16.6666666667%;\\n }\\n .v-application--is-ltr .offset-lg-3 {\\n margin-left: 25%;\\n }\\n .v-application--is-rtl .offset-lg-3 {\\n margin-right: 25%;\\n }\\n .v-application--is-ltr .offset-lg-4 {\\n margin-left: 33.3333333333%;\\n }\\n .v-application--is-rtl .offset-lg-4 {\\n margin-right: 33.3333333333%;\\n }\\n .v-application--is-ltr .offset-lg-5 {\\n margin-left: 41.6666666667%;\\n }\\n .v-application--is-rtl .offset-lg-5 {\\n margin-right: 41.6666666667%;\\n }\\n .v-application--is-ltr .offset-lg-6 {\\n margin-left: 50%;\\n }\\n .v-application--is-rtl .offset-lg-6 {\\n margin-right: 50%;\\n }\\n .v-application--is-ltr .offset-lg-7 {\\n margin-left: 58.3333333333%;\\n }\\n .v-application--is-rtl .offset-lg-7 {\\n margin-right: 58.3333333333%;\\n }\\n .v-application--is-ltr .offset-lg-8 {\\n margin-left: 66.6666666667%;\\n }\\n .v-application--is-rtl .offset-lg-8 {\\n margin-right: 66.6666666667%;\\n }\\n .v-application--is-ltr .offset-lg-9 {\\n margin-left: 75%;\\n }\\n .v-application--is-rtl .offset-lg-9 {\\n margin-right: 75%;\\n }\\n .v-application--is-ltr .offset-lg-10 {\\n margin-left: 83.3333333333%;\\n }\\n .v-application--is-rtl .offset-lg-10 {\\n margin-right: 83.3333333333%;\\n }\\n .v-application--is-ltr .offset-lg-11 {\\n margin-left: 91.6666666667%;\\n }\\n .v-application--is-rtl .offset-lg-11 {\\n margin-right: 91.6666666667%;\\n }\\n}\\n@media (min-width: 1904px) {\\n .col-xl {\\n flex-basis: 0;\\n flex-grow: 1;\\n max-width: 100%;\\n }\\n .col-xl-auto {\\n flex: 0 0 auto;\\n width: auto;\\n max-width: 100%;\\n }\\n .col-xl-1 {\\n flex: 0 0 8.3333333333%;\\n max-width: 8.3333333333%;\\n }\\n .col-xl-2 {\\n flex: 0 0 16.6666666667%;\\n max-width: 16.6666666667%;\\n }\\n .col-xl-3 {\\n flex: 0 0 25%;\\n max-width: 25%;\\n }\\n .col-xl-4 {\\n flex: 0 0 33.3333333333%;\\n max-width: 33.3333333333%;\\n }\\n .col-xl-5 {\\n flex: 0 0 41.6666666667%;\\n max-width: 41.6666666667%;\\n }\\n .col-xl-6 {\\n flex: 0 0 50%;\\n max-width: 50%;\\n }\\n .col-xl-7 {\\n flex: 0 0 58.3333333333%;\\n max-width: 58.3333333333%;\\n }\\n .col-xl-8 {\\n flex: 0 0 66.6666666667%;\\n max-width: 66.6666666667%;\\n }\\n .col-xl-9 {\\n flex: 0 0 75%;\\n max-width: 75%;\\n }\\n .col-xl-10 {\\n flex: 0 0 83.3333333333%;\\n max-width: 83.3333333333%;\\n }\\n .col-xl-11 {\\n flex: 0 0 91.6666666667%;\\n max-width: 91.6666666667%;\\n }\\n .col-xl-12 {\\n flex: 0 0 100%;\\n max-width: 100%;\\n }\\n .v-application--is-ltr .offset-xl-0 {\\n margin-left: 0;\\n }\\n .v-application--is-rtl .offset-xl-0 {\\n margin-right: 0;\\n }\\n .v-application--is-ltr .offset-xl-1 {\\n margin-left: 8.3333333333%;\\n }\\n .v-application--is-rtl .offset-xl-1 {\\n margin-right: 8.3333333333%;\\n }\\n .v-application--is-ltr .offset-xl-2 {\\n margin-left: 16.6666666667%;\\n }\\n .v-application--is-rtl .offset-xl-2 {\\n margin-right: 16.6666666667%;\\n }\\n .v-application--is-ltr .offset-xl-3 {\\n margin-left: 25%;\\n }\\n .v-application--is-rtl .offset-xl-3 {\\n margin-right: 25%;\\n }\\n .v-application--is-ltr .offset-xl-4 {\\n margin-left: 33.3333333333%;\\n }\\n .v-application--is-rtl .offset-xl-4 {\\n margin-right: 33.3333333333%;\\n }\\n .v-application--is-ltr .offset-xl-5 {\\n margin-left: 41.6666666667%;\\n }\\n .v-application--is-rtl .offset-xl-5 {\\n margin-right: 41.6666666667%;\\n }\\n .v-application--is-ltr .offset-xl-6 {\\n margin-left: 50%;\\n }\\n .v-application--is-rtl .offset-xl-6 {\\n margin-right: 50%;\\n }\\n .v-application--is-ltr .offset-xl-7 {\\n margin-left: 58.3333333333%;\\n }\\n .v-application--is-rtl .offset-xl-7 {\\n margin-right: 58.3333333333%;\\n }\\n .v-application--is-ltr .offset-xl-8 {\\n margin-left: 66.6666666667%;\\n }\\n .v-application--is-rtl .offset-xl-8 {\\n margin-right: 66.6666666667%;\\n }\\n .v-application--is-ltr .offset-xl-9 {\\n margin-left: 75%;\\n }\\n .v-application--is-rtl .offset-xl-9 {\\n margin-right: 75%;\\n }\\n .v-application--is-ltr .offset-xl-10 {\\n margin-left: 83.3333333333%;\\n }\\n .v-application--is-rtl .offset-xl-10 {\\n margin-right: 83.3333333333%;\\n }\\n .v-application--is-ltr .offset-xl-11 {\\n margin-left: 91.6666666667%;\\n }\\n .v-application--is-rtl .offset-xl-11 {\\n margin-right: 91.6666666667%;\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VGrid/VGrid.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VGrid/_grid.sass": /*!**************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VGrid/_grid.sass ***! \**************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".container.grow-shrink-0 {\\n flex-grow: 0;\\n flex-shrink: 0;\\n}\\n.container.fill-height {\\n align-items: center;\\n display: flex;\\n flex-wrap: wrap;\\n}\\n.container.fill-height > .row {\\n flex: 1 1 100%;\\n max-width: calc(100% + 24px);\\n}\\n.container.fill-height > .layout {\\n height: 100%;\\n flex: 1 1 auto;\\n}\\n.container.fill-height > .layout.grow-shrink-0 {\\n flex-grow: 0;\\n flex-shrink: 0;\\n}\\n.container.grid-list-xs .layout .flex {\\n padding: 1px;\\n}\\n.container.grid-list-xs .layout:only-child {\\n margin: -1px;\\n}\\n.container.grid-list-xs .layout:not(:only-child) {\\n margin: auto -1px;\\n}\\n.container.grid-list-xs *:not(:only-child) .layout:first-child {\\n margin-top: -1px;\\n}\\n.container.grid-list-xs *:not(:only-child) .layout:last-child {\\n margin-bottom: -1px;\\n}\\n.container.grid-list-sm .layout .flex {\\n padding: 2px;\\n}\\n.container.grid-list-sm .layout:only-child {\\n margin: -2px;\\n}\\n.container.grid-list-sm .layout:not(:only-child) {\\n margin: auto -2px;\\n}\\n.container.grid-list-sm *:not(:only-child) .layout:first-child {\\n margin-top: -2px;\\n}\\n.container.grid-list-sm *:not(:only-child) .layout:last-child {\\n margin-bottom: -2px;\\n}\\n.container.grid-list-md .layout .flex {\\n padding: 4px;\\n}\\n.container.grid-list-md .layout:only-child {\\n margin: -4px;\\n}\\n.container.grid-list-md .layout:not(:only-child) {\\n margin: auto -4px;\\n}\\n.container.grid-list-md *:not(:only-child) .layout:first-child {\\n margin-top: -4px;\\n}\\n.container.grid-list-md *:not(:only-child) .layout:last-child {\\n margin-bottom: -4px;\\n}\\n.container.grid-list-lg .layout .flex {\\n padding: 8px;\\n}\\n.container.grid-list-lg .layout:only-child {\\n margin: -8px;\\n}\\n.container.grid-list-lg .layout:not(:only-child) {\\n margin: auto -8px;\\n}\\n.container.grid-list-lg *:not(:only-child) .layout:first-child {\\n margin-top: -8px;\\n}\\n.container.grid-list-lg *:not(:only-child) .layout:last-child {\\n margin-bottom: -8px;\\n}\\n.container.grid-list-xl .layout .flex {\\n padding: 12px;\\n}\\n.container.grid-list-xl .layout:only-child {\\n margin: -12px;\\n}\\n.container.grid-list-xl .layout:not(:only-child) {\\n margin: auto -12px;\\n}\\n.container.grid-list-xl *:not(:only-child) .layout:first-child {\\n margin-top: -12px;\\n}\\n.container.grid-list-xl *:not(:only-child) .layout:last-child {\\n margin-bottom: -12px;\\n}\\n\\n.layout {\\n display: flex;\\n flex: 1 1 auto;\\n flex-wrap: nowrap;\\n min-width: 0;\\n}\\n.layout.reverse {\\n flex-direction: row-reverse;\\n}\\n.layout.column {\\n flex-direction: column;\\n}\\n.layout.column.reverse {\\n flex-direction: column-reverse;\\n}\\n.layout.column > .flex {\\n max-width: 100%;\\n}\\n.layout.wrap {\\n flex-wrap: wrap;\\n}\\n.layout.grow-shrink-0 {\\n flex-grow: 0;\\n flex-shrink: 0;\\n}\\n\\n@media all and (min-width: 0) {\\n .flex.xs12 {\\n flex-basis: 100%;\\n flex-grow: 0;\\n max-width: 100%;\\n }\\n .flex.order-xs12 {\\n order: 12;\\n }\\n .flex.xs11 {\\n flex-basis: 91.6666666667%;\\n flex-grow: 0;\\n max-width: 91.6666666667%;\\n }\\n .flex.order-xs11 {\\n order: 11;\\n }\\n .flex.xs10 {\\n flex-basis: 83.3333333333%;\\n flex-grow: 0;\\n max-width: 83.3333333333%;\\n }\\n .flex.order-xs10 {\\n order: 10;\\n }\\n .flex.xs9 {\\n flex-basis: 75%;\\n flex-grow: 0;\\n max-width: 75%;\\n }\\n .flex.order-xs9 {\\n order: 9;\\n }\\n .flex.xs8 {\\n flex-basis: 66.6666666667%;\\n flex-grow: 0;\\n max-width: 66.6666666667%;\\n }\\n .flex.order-xs8 {\\n order: 8;\\n }\\n .flex.xs7 {\\n flex-basis: 58.3333333333%;\\n flex-grow: 0;\\n max-width: 58.3333333333%;\\n }\\n .flex.order-xs7 {\\n order: 7;\\n }\\n .flex.xs6 {\\n flex-basis: 50%;\\n flex-grow: 0;\\n max-width: 50%;\\n }\\n .flex.order-xs6 {\\n order: 6;\\n }\\n .flex.xs5 {\\n flex-basis: 41.6666666667%;\\n flex-grow: 0;\\n max-width: 41.6666666667%;\\n }\\n .flex.order-xs5 {\\n order: 5;\\n }\\n .flex.xs4 {\\n flex-basis: 33.3333333333%;\\n flex-grow: 0;\\n max-width: 33.3333333333%;\\n }\\n .flex.order-xs4 {\\n order: 4;\\n }\\n .flex.xs3 {\\n flex-basis: 25%;\\n flex-grow: 0;\\n max-width: 25%;\\n }\\n .flex.order-xs3 {\\n order: 3;\\n }\\n .flex.xs2 {\\n flex-basis: 16.6666666667%;\\n flex-grow: 0;\\n max-width: 16.6666666667%;\\n }\\n .flex.order-xs2 {\\n order: 2;\\n }\\n .flex.xs1 {\\n flex-basis: 8.3333333333%;\\n flex-grow: 0;\\n max-width: 8.3333333333%;\\n }\\n .flex.order-xs1 {\\n order: 1;\\n }\\n .v-application--is-ltr .flex.offset-xs12 {\\n margin-left: 100%;\\n }\\n .v-application--is-rtl .flex.offset-xs12 {\\n margin-right: 100%;\\n }\\n .v-application--is-ltr .flex.offset-xs11 {\\n margin-left: 91.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-xs11 {\\n margin-right: 91.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-xs10 {\\n margin-left: 83.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-xs10 {\\n margin-right: 83.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-xs9 {\\n margin-left: 75%;\\n }\\n .v-application--is-rtl .flex.offset-xs9 {\\n margin-right: 75%;\\n }\\n .v-application--is-ltr .flex.offset-xs8 {\\n margin-left: 66.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-xs8 {\\n margin-right: 66.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-xs7 {\\n margin-left: 58.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-xs7 {\\n margin-right: 58.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-xs6 {\\n margin-left: 50%;\\n }\\n .v-application--is-rtl .flex.offset-xs6 {\\n margin-right: 50%;\\n }\\n .v-application--is-ltr .flex.offset-xs5 {\\n margin-left: 41.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-xs5 {\\n margin-right: 41.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-xs4 {\\n margin-left: 33.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-xs4 {\\n margin-right: 33.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-xs3 {\\n margin-left: 25%;\\n }\\n .v-application--is-rtl .flex.offset-xs3 {\\n margin-right: 25%;\\n }\\n .v-application--is-ltr .flex.offset-xs2 {\\n margin-left: 16.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-xs2 {\\n margin-right: 16.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-xs1 {\\n margin-left: 8.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-xs1 {\\n margin-right: 8.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-xs0 {\\n margin-left: 0%;\\n }\\n .v-application--is-rtl .flex.offset-xs0 {\\n margin-right: 0%;\\n }\\n}\\n@media all and (min-width: 600px) {\\n .flex.sm12 {\\n flex-basis: 100%;\\n flex-grow: 0;\\n max-width: 100%;\\n }\\n .flex.order-sm12 {\\n order: 12;\\n }\\n .flex.sm11 {\\n flex-basis: 91.6666666667%;\\n flex-grow: 0;\\n max-width: 91.6666666667%;\\n }\\n .flex.order-sm11 {\\n order: 11;\\n }\\n .flex.sm10 {\\n flex-basis: 83.3333333333%;\\n flex-grow: 0;\\n max-width: 83.3333333333%;\\n }\\n .flex.order-sm10 {\\n order: 10;\\n }\\n .flex.sm9 {\\n flex-basis: 75%;\\n flex-grow: 0;\\n max-width: 75%;\\n }\\n .flex.order-sm9 {\\n order: 9;\\n }\\n .flex.sm8 {\\n flex-basis: 66.6666666667%;\\n flex-grow: 0;\\n max-width: 66.6666666667%;\\n }\\n .flex.order-sm8 {\\n order: 8;\\n }\\n .flex.sm7 {\\n flex-basis: 58.3333333333%;\\n flex-grow: 0;\\n max-width: 58.3333333333%;\\n }\\n .flex.order-sm7 {\\n order: 7;\\n }\\n .flex.sm6 {\\n flex-basis: 50%;\\n flex-grow: 0;\\n max-width: 50%;\\n }\\n .flex.order-sm6 {\\n order: 6;\\n }\\n .flex.sm5 {\\n flex-basis: 41.6666666667%;\\n flex-grow: 0;\\n max-width: 41.6666666667%;\\n }\\n .flex.order-sm5 {\\n order: 5;\\n }\\n .flex.sm4 {\\n flex-basis: 33.3333333333%;\\n flex-grow: 0;\\n max-width: 33.3333333333%;\\n }\\n .flex.order-sm4 {\\n order: 4;\\n }\\n .flex.sm3 {\\n flex-basis: 25%;\\n flex-grow: 0;\\n max-width: 25%;\\n }\\n .flex.order-sm3 {\\n order: 3;\\n }\\n .flex.sm2 {\\n flex-basis: 16.6666666667%;\\n flex-grow: 0;\\n max-width: 16.6666666667%;\\n }\\n .flex.order-sm2 {\\n order: 2;\\n }\\n .flex.sm1 {\\n flex-basis: 8.3333333333%;\\n flex-grow: 0;\\n max-width: 8.3333333333%;\\n }\\n .flex.order-sm1 {\\n order: 1;\\n }\\n .v-application--is-ltr .flex.offset-sm12 {\\n margin-left: 100%;\\n }\\n .v-application--is-rtl .flex.offset-sm12 {\\n margin-right: 100%;\\n }\\n .v-application--is-ltr .flex.offset-sm11 {\\n margin-left: 91.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-sm11 {\\n margin-right: 91.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-sm10 {\\n margin-left: 83.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-sm10 {\\n margin-right: 83.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-sm9 {\\n margin-left: 75%;\\n }\\n .v-application--is-rtl .flex.offset-sm9 {\\n margin-right: 75%;\\n }\\n .v-application--is-ltr .flex.offset-sm8 {\\n margin-left: 66.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-sm8 {\\n margin-right: 66.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-sm7 {\\n margin-left: 58.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-sm7 {\\n margin-right: 58.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-sm6 {\\n margin-left: 50%;\\n }\\n .v-application--is-rtl .flex.offset-sm6 {\\n margin-right: 50%;\\n }\\n .v-application--is-ltr .flex.offset-sm5 {\\n margin-left: 41.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-sm5 {\\n margin-right: 41.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-sm4 {\\n margin-left: 33.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-sm4 {\\n margin-right: 33.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-sm3 {\\n margin-left: 25%;\\n }\\n .v-application--is-rtl .flex.offset-sm3 {\\n margin-right: 25%;\\n }\\n .v-application--is-ltr .flex.offset-sm2 {\\n margin-left: 16.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-sm2 {\\n margin-right: 16.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-sm1 {\\n margin-left: 8.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-sm1 {\\n margin-right: 8.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-sm0 {\\n margin-left: 0%;\\n }\\n .v-application--is-rtl .flex.offset-sm0 {\\n margin-right: 0%;\\n }\\n}\\n@media all and (min-width: 960px) {\\n .flex.md12 {\\n flex-basis: 100%;\\n flex-grow: 0;\\n max-width: 100%;\\n }\\n .flex.order-md12 {\\n order: 12;\\n }\\n .flex.md11 {\\n flex-basis: 91.6666666667%;\\n flex-grow: 0;\\n max-width: 91.6666666667%;\\n }\\n .flex.order-md11 {\\n order: 11;\\n }\\n .flex.md10 {\\n flex-basis: 83.3333333333%;\\n flex-grow: 0;\\n max-width: 83.3333333333%;\\n }\\n .flex.order-md10 {\\n order: 10;\\n }\\n .flex.md9 {\\n flex-basis: 75%;\\n flex-grow: 0;\\n max-width: 75%;\\n }\\n .flex.order-md9 {\\n order: 9;\\n }\\n .flex.md8 {\\n flex-basis: 66.6666666667%;\\n flex-grow: 0;\\n max-width: 66.6666666667%;\\n }\\n .flex.order-md8 {\\n order: 8;\\n }\\n .flex.md7 {\\n flex-basis: 58.3333333333%;\\n flex-grow: 0;\\n max-width: 58.3333333333%;\\n }\\n .flex.order-md7 {\\n order: 7;\\n }\\n .flex.md6 {\\n flex-basis: 50%;\\n flex-grow: 0;\\n max-width: 50%;\\n }\\n .flex.order-md6 {\\n order: 6;\\n }\\n .flex.md5 {\\n flex-basis: 41.6666666667%;\\n flex-grow: 0;\\n max-width: 41.6666666667%;\\n }\\n .flex.order-md5 {\\n order: 5;\\n }\\n .flex.md4 {\\n flex-basis: 33.3333333333%;\\n flex-grow: 0;\\n max-width: 33.3333333333%;\\n }\\n .flex.order-md4 {\\n order: 4;\\n }\\n .flex.md3 {\\n flex-basis: 25%;\\n flex-grow: 0;\\n max-width: 25%;\\n }\\n .flex.order-md3 {\\n order: 3;\\n }\\n .flex.md2 {\\n flex-basis: 16.6666666667%;\\n flex-grow: 0;\\n max-width: 16.6666666667%;\\n }\\n .flex.order-md2 {\\n order: 2;\\n }\\n .flex.md1 {\\n flex-basis: 8.3333333333%;\\n flex-grow: 0;\\n max-width: 8.3333333333%;\\n }\\n .flex.order-md1 {\\n order: 1;\\n }\\n .v-application--is-ltr .flex.offset-md12 {\\n margin-left: 100%;\\n }\\n .v-application--is-rtl .flex.offset-md12 {\\n margin-right: 100%;\\n }\\n .v-application--is-ltr .flex.offset-md11 {\\n margin-left: 91.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-md11 {\\n margin-right: 91.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-md10 {\\n margin-left: 83.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-md10 {\\n margin-right: 83.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-md9 {\\n margin-left: 75%;\\n }\\n .v-application--is-rtl .flex.offset-md9 {\\n margin-right: 75%;\\n }\\n .v-application--is-ltr .flex.offset-md8 {\\n margin-left: 66.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-md8 {\\n margin-right: 66.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-md7 {\\n margin-left: 58.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-md7 {\\n margin-right: 58.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-md6 {\\n margin-left: 50%;\\n }\\n .v-application--is-rtl .flex.offset-md6 {\\n margin-right: 50%;\\n }\\n .v-application--is-ltr .flex.offset-md5 {\\n margin-left: 41.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-md5 {\\n margin-right: 41.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-md4 {\\n margin-left: 33.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-md4 {\\n margin-right: 33.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-md3 {\\n margin-left: 25%;\\n }\\n .v-application--is-rtl .flex.offset-md3 {\\n margin-right: 25%;\\n }\\n .v-application--is-ltr .flex.offset-md2 {\\n margin-left: 16.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-md2 {\\n margin-right: 16.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-md1 {\\n margin-left: 8.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-md1 {\\n margin-right: 8.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-md0 {\\n margin-left: 0%;\\n }\\n .v-application--is-rtl .flex.offset-md0 {\\n margin-right: 0%;\\n }\\n}\\n@media all and (min-width: 1264px) {\\n .flex.lg12 {\\n flex-basis: 100%;\\n flex-grow: 0;\\n max-width: 100%;\\n }\\n .flex.order-lg12 {\\n order: 12;\\n }\\n .flex.lg11 {\\n flex-basis: 91.6666666667%;\\n flex-grow: 0;\\n max-width: 91.6666666667%;\\n }\\n .flex.order-lg11 {\\n order: 11;\\n }\\n .flex.lg10 {\\n flex-basis: 83.3333333333%;\\n flex-grow: 0;\\n max-width: 83.3333333333%;\\n }\\n .flex.order-lg10 {\\n order: 10;\\n }\\n .flex.lg9 {\\n flex-basis: 75%;\\n flex-grow: 0;\\n max-width: 75%;\\n }\\n .flex.order-lg9 {\\n order: 9;\\n }\\n .flex.lg8 {\\n flex-basis: 66.6666666667%;\\n flex-grow: 0;\\n max-width: 66.6666666667%;\\n }\\n .flex.order-lg8 {\\n order: 8;\\n }\\n .flex.lg7 {\\n flex-basis: 58.3333333333%;\\n flex-grow: 0;\\n max-width: 58.3333333333%;\\n }\\n .flex.order-lg7 {\\n order: 7;\\n }\\n .flex.lg6 {\\n flex-basis: 50%;\\n flex-grow: 0;\\n max-width: 50%;\\n }\\n .flex.order-lg6 {\\n order: 6;\\n }\\n .flex.lg5 {\\n flex-basis: 41.6666666667%;\\n flex-grow: 0;\\n max-width: 41.6666666667%;\\n }\\n .flex.order-lg5 {\\n order: 5;\\n }\\n .flex.lg4 {\\n flex-basis: 33.3333333333%;\\n flex-grow: 0;\\n max-width: 33.3333333333%;\\n }\\n .flex.order-lg4 {\\n order: 4;\\n }\\n .flex.lg3 {\\n flex-basis: 25%;\\n flex-grow: 0;\\n max-width: 25%;\\n }\\n .flex.order-lg3 {\\n order: 3;\\n }\\n .flex.lg2 {\\n flex-basis: 16.6666666667%;\\n flex-grow: 0;\\n max-width: 16.6666666667%;\\n }\\n .flex.order-lg2 {\\n order: 2;\\n }\\n .flex.lg1 {\\n flex-basis: 8.3333333333%;\\n flex-grow: 0;\\n max-width: 8.3333333333%;\\n }\\n .flex.order-lg1 {\\n order: 1;\\n }\\n .v-application--is-ltr .flex.offset-lg12 {\\n margin-left: 100%;\\n }\\n .v-application--is-rtl .flex.offset-lg12 {\\n margin-right: 100%;\\n }\\n .v-application--is-ltr .flex.offset-lg11 {\\n margin-left: 91.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-lg11 {\\n margin-right: 91.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-lg10 {\\n margin-left: 83.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-lg10 {\\n margin-right: 83.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-lg9 {\\n margin-left: 75%;\\n }\\n .v-application--is-rtl .flex.offset-lg9 {\\n margin-right: 75%;\\n }\\n .v-application--is-ltr .flex.offset-lg8 {\\n margin-left: 66.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-lg8 {\\n margin-right: 66.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-lg7 {\\n margin-left: 58.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-lg7 {\\n margin-right: 58.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-lg6 {\\n margin-left: 50%;\\n }\\n .v-application--is-rtl .flex.offset-lg6 {\\n margin-right: 50%;\\n }\\n .v-application--is-ltr .flex.offset-lg5 {\\n margin-left: 41.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-lg5 {\\n margin-right: 41.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-lg4 {\\n margin-left: 33.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-lg4 {\\n margin-right: 33.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-lg3 {\\n margin-left: 25%;\\n }\\n .v-application--is-rtl .flex.offset-lg3 {\\n margin-right: 25%;\\n }\\n .v-application--is-ltr .flex.offset-lg2 {\\n margin-left: 16.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-lg2 {\\n margin-right: 16.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-lg1 {\\n margin-left: 8.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-lg1 {\\n margin-right: 8.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-lg0 {\\n margin-left: 0%;\\n }\\n .v-application--is-rtl .flex.offset-lg0 {\\n margin-right: 0%;\\n }\\n}\\n@media all and (min-width: 1904px) {\\n .flex.xl12 {\\n flex-basis: 100%;\\n flex-grow: 0;\\n max-width: 100%;\\n }\\n .flex.order-xl12 {\\n order: 12;\\n }\\n .flex.xl11 {\\n flex-basis: 91.6666666667%;\\n flex-grow: 0;\\n max-width: 91.6666666667%;\\n }\\n .flex.order-xl11 {\\n order: 11;\\n }\\n .flex.xl10 {\\n flex-basis: 83.3333333333%;\\n flex-grow: 0;\\n max-width: 83.3333333333%;\\n }\\n .flex.order-xl10 {\\n order: 10;\\n }\\n .flex.xl9 {\\n flex-basis: 75%;\\n flex-grow: 0;\\n max-width: 75%;\\n }\\n .flex.order-xl9 {\\n order: 9;\\n }\\n .flex.xl8 {\\n flex-basis: 66.6666666667%;\\n flex-grow: 0;\\n max-width: 66.6666666667%;\\n }\\n .flex.order-xl8 {\\n order: 8;\\n }\\n .flex.xl7 {\\n flex-basis: 58.3333333333%;\\n flex-grow: 0;\\n max-width: 58.3333333333%;\\n }\\n .flex.order-xl7 {\\n order: 7;\\n }\\n .flex.xl6 {\\n flex-basis: 50%;\\n flex-grow: 0;\\n max-width: 50%;\\n }\\n .flex.order-xl6 {\\n order: 6;\\n }\\n .flex.xl5 {\\n flex-basis: 41.6666666667%;\\n flex-grow: 0;\\n max-width: 41.6666666667%;\\n }\\n .flex.order-xl5 {\\n order: 5;\\n }\\n .flex.xl4 {\\n flex-basis: 33.3333333333%;\\n flex-grow: 0;\\n max-width: 33.3333333333%;\\n }\\n .flex.order-xl4 {\\n order: 4;\\n }\\n .flex.xl3 {\\n flex-basis: 25%;\\n flex-grow: 0;\\n max-width: 25%;\\n }\\n .flex.order-xl3 {\\n order: 3;\\n }\\n .flex.xl2 {\\n flex-basis: 16.6666666667%;\\n flex-grow: 0;\\n max-width: 16.6666666667%;\\n }\\n .flex.order-xl2 {\\n order: 2;\\n }\\n .flex.xl1 {\\n flex-basis: 8.3333333333%;\\n flex-grow: 0;\\n max-width: 8.3333333333%;\\n }\\n .flex.order-xl1 {\\n order: 1;\\n }\\n .v-application--is-ltr .flex.offset-xl12 {\\n margin-left: 100%;\\n }\\n .v-application--is-rtl .flex.offset-xl12 {\\n margin-right: 100%;\\n }\\n .v-application--is-ltr .flex.offset-xl11 {\\n margin-left: 91.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-xl11 {\\n margin-right: 91.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-xl10 {\\n margin-left: 83.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-xl10 {\\n margin-right: 83.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-xl9 {\\n margin-left: 75%;\\n }\\n .v-application--is-rtl .flex.offset-xl9 {\\n margin-right: 75%;\\n }\\n .v-application--is-ltr .flex.offset-xl8 {\\n margin-left: 66.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-xl8 {\\n margin-right: 66.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-xl7 {\\n margin-left: 58.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-xl7 {\\n margin-right: 58.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-xl6 {\\n margin-left: 50%;\\n }\\n .v-application--is-rtl .flex.offset-xl6 {\\n margin-right: 50%;\\n }\\n .v-application--is-ltr .flex.offset-xl5 {\\n margin-left: 41.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-xl5 {\\n margin-right: 41.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-xl4 {\\n margin-left: 33.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-xl4 {\\n margin-right: 33.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-xl3 {\\n margin-left: 25%;\\n }\\n .v-application--is-rtl .flex.offset-xl3 {\\n margin-right: 25%;\\n }\\n .v-application--is-ltr .flex.offset-xl2 {\\n margin-left: 16.6666666667%;\\n }\\n .v-application--is-rtl .flex.offset-xl2 {\\n margin-right: 16.6666666667%;\\n }\\n .v-application--is-ltr .flex.offset-xl1 {\\n margin-left: 8.3333333333%;\\n }\\n .v-application--is-rtl .flex.offset-xl1 {\\n margin-right: 8.3333333333%;\\n }\\n .v-application--is-ltr .flex.offset-xl0 {\\n margin-left: 0%;\\n }\\n .v-application--is-rtl .flex.offset-xl0 {\\n margin-right: 0%;\\n }\\n}\\n.flex,\\n.child-flex > * {\\n flex: 1 1 auto;\\n max-width: 100%;\\n}\\n.flex.grow-shrink-0,\\n.child-flex > *.grow-shrink-0 {\\n flex-grow: 0;\\n flex-shrink: 0;\\n}\\n\\n.spacer {\\n flex-grow: 1 !important;\\n}\\n\\n.grow {\\n flex-grow: 1 !important;\\n flex-shrink: 0 !important;\\n}\\n\\n.shrink {\\n flex-grow: 0 !important;\\n flex-shrink: 1 !important;\\n}\\n\\n.fill-height {\\n height: 100%;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VGrid/_grid.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VIcon/VIcon.sass": /*!**************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VIcon/VIcon.sass ***! \**************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-icon {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.theme--light.v-icon:focus::after {\\n opacity: 0.12;\\n}\\n.theme--light.v-icon.v-icon.v-icon--disabled {\\n color: rgba(0, 0, 0, 0.38) !important;\\n}\\n\\n.theme--dark.v-icon {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-icon:focus::after {\\n opacity: 0.24;\\n}\\n.theme--dark.v-icon.v-icon.v-icon--disabled {\\n color: rgba(255, 255, 255, 0.5) !important;\\n}\\n\\n.v-icon.v-icon {\\n align-items: center;\\n display: inline-flex;\\n font-feature-settings: \\\"liga\\\";\\n font-size: 24px;\\n justify-content: center;\\n letter-spacing: normal;\\n line-height: 1;\\n position: relative;\\n text-indent: 0;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\\n vertical-align: middle;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-icon.v-icon::after {\\n background-color: currentColor;\\n border-radius: 50%;\\n content: \\\"\\\";\\n display: inline-block;\\n height: 100%;\\n left: 0;\\n opacity: 0;\\n pointer-events: none;\\n position: absolute;\\n top: 0;\\n transform: scale(1.3);\\n width: 100%;\\n transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);\\n}\\n.v-icon.v-icon--dense {\\n font-size: 20px;\\n}\\n\\n.v-icon--right {\\n margin-left: 8px;\\n}\\n.v-icon--left {\\n margin-right: 8px;\\n}\\n.v-icon.v-icon.v-icon--link {\\n cursor: pointer;\\n outline: none;\\n}\\n.v-icon--disabled {\\n pointer-events: none;\\n}\\n.v-icon--dense .v-icon__component,\\n.v-icon--dense .v-icon__svg {\\n height: 20px;\\n}\\n.v-icon__component {\\n height: 24px;\\n width: 24px;\\n}\\n.v-icon__svg {\\n height: 24px;\\n width: 24px;\\n fill: currentColor;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VIcon/VIcon.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VImg/VImg.sass": /*!************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VImg/VImg.sass ***! \************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-image {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.theme--dark.v-image {\\n color: #FFFFFF;\\n}\\n\\n.v-image {\\n z-index: 0;\\n}\\n\\n.v-image__image,\\n.v-image__placeholder {\\n z-index: -1;\\n position: absolute;\\n top: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n}\\n\\n.v-image__image {\\n background-repeat: no-repeat;\\n}\\n.v-image__image--preload {\\n filter: blur(2px);\\n}\\n.v-image__image--contain {\\n background-size: contain;\\n}\\n.v-image__image--cover {\\n background-size: cover;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VImg/VImg.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VInput/VInput.sass": /*!****************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VInput/VInput.sass ***! \****************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \"/* Theme */\\n.theme--light.v-input {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-input input,\\n.theme--light.v-input textarea {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-input input::-moz-placeholder, .theme--light.v-input textarea::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-input input::placeholder,\\n.theme--light.v-input textarea::placeholder {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-input--is-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-input--is-disabled input,\\n.theme--light.v-input--is-disabled textarea {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.theme--dark.v-input {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-input input,\\n.theme--dark.v-input textarea {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-input input::-moz-placeholder, .theme--dark.v-input textarea::-moz-placeholder {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-input input::placeholder,\\n.theme--dark.v-input textarea::placeholder {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-input--is-disabled {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-input--is-disabled input,\\n.theme--dark.v-input--is-disabled textarea {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n\\n.v-input {\\n align-items: flex-start;\\n display: flex;\\n flex: 1 1 auto;\\n font-size: 16px;\\n letter-spacing: normal;\\n max-width: 100%;\\n text-align: left;\\n}\\n.v-input .v-progress-linear {\\n top: calc(100% - 1px);\\n left: 0;\\n}\\n.v-input input {\\n max-height: 32px;\\n}\\n.v-input input:invalid,\\n.v-input textarea:invalid {\\n box-shadow: none;\\n}\\n.v-input input:focus, .v-input input:active,\\n.v-input textarea:focus,\\n.v-input textarea:active {\\n outline: none;\\n}\\n.v-input .v-label {\\n height: 20px;\\n line-height: 20px;\\n letter-spacing: normal;\\n}\\n.v-input__append-outer, .v-input__prepend-outer {\\n display: inline-flex;\\n margin-bottom: 4px;\\n margin-top: 4px;\\n line-height: 1;\\n}\\n.v-input__append-outer .v-icon, .v-input__prepend-outer .v-icon {\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-application--is-ltr .v-input__append-outer {\\n margin-left: 9px;\\n}\\n.v-application--is-rtl .v-input__append-outer {\\n margin-right: 9px;\\n}\\n.v-application--is-ltr .v-input__prepend-outer {\\n margin-right: 9px;\\n}\\n.v-application--is-rtl .v-input__prepend-outer {\\n margin-left: 9px;\\n}\\n.v-input__control {\\n display: flex;\\n flex-direction: column;\\n height: auto;\\n flex-grow: 1;\\n flex-wrap: wrap;\\n min-width: 0;\\n width: 100%;\\n}\\n.v-input__icon {\\n align-items: center;\\n display: inline-flex;\\n height: 24px;\\n flex: 1 0 auto;\\n justify-content: center;\\n min-width: 24px;\\n width: 24px;\\n}\\n.v-input__icon--clear {\\n border-radius: 50%;\\n}\\n.v-input__icon--clear .v-icon--disabled {\\n visibility: hidden;\\n}\\n.v-input__slot {\\n align-items: center;\\n display: flex;\\n margin-bottom: 8px;\\n min-height: inherit;\\n position: relative;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n transition-property: height, min-height;\\n width: 100%;\\n}\\n.v-input--dense > .v-input__control > .v-input__slot {\\n margin-bottom: 4px;\\n}\\n.v-input--is-loading > .v-input__control > .v-input__slot:before, .v-input--is-loading > .v-input__control > .v-input__slot:after {\\n display: none;\\n}\\n.v-input--hide-details > .v-input__control > .v-input__slot {\\n margin-bottom: 0;\\n}\\n.v-input--has-state.error--text .v-label {\\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-input--hide-spin-buttons input::-webkit-outer-spin-button,\\n.v-input--hide-spin-buttons input::-webkit-inner-spin-button {\\n -webkit-appearance: none;\\n margin: 0;\\n}\\n.v-input--hide-spin-buttons input[type=number] {\\n -moz-appearance: textfield;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VInput/VInput.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VItemGroup/VItem.sass": /*!*******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VItemGroup/VItem.sass ***! \*******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-item--disabled, .v-item--disabled * {\\n pointer-events: none;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VItemGroup/VItem.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VItemGroup/VItemGroup.sass": /*!************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VItemGroup/VItemGroup.sass ***! \************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-item-group {\\n flex: 0 1 auto;\\n position: relative;\\n max-width: 100%;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VItemGroup/VItemGroup.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VLabel/VLabel.sass": /*!****************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VLabel/VLabel.sass ***! \****************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-label {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.theme--light.v-label--is-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.theme--dark.v-label {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--dark.v-label--is-disabled {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n\\n.v-label {\\n font-size: 16px;\\n line-height: 1;\\n min-height: 8px;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VLabel/VLabel.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VList/VList.sass": /*!**************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VList/VList.sass ***! \**************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-list.primary > .v-list-item, .v-list.secondary > .v-list-item, .v-list.accent > .v-list-item, .v-list.success > .v-list-item, .v-list.error > .v-list-item, .v-list.warning > .v-list-item, .v-list.info > .v-list-item {\\n color: #FFFFFF;\\n}\\n\\n.theme--light.v-list {\\n background: #FFFFFF;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-list .v-list--disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-list .v-list-group--active:before,\\n.theme--light.v-list .v-list-group--active:after {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-list {\\n background: #1E1E1E;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-list .v-list--disabled {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-list .v-list-group--active:before,\\n.theme--dark.v-list .v-list-group--active:after {\\n background: rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-sheet.v-list {\\n border-radius: 0;\\n}\\n.v-sheet.v-list:not(.v-sheet--outlined) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-list.v-sheet--shaped {\\n border-radius: 0;\\n}\\n\\n.v-list {\\n display: block;\\n padding: 8px 0;\\n position: static;\\n transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);\\n}\\n\\n.v-list--disabled {\\n pointer-events: none;\\n}\\n\\n.v-list--flat .v-list-item:before {\\n display: none;\\n}\\n\\n.v-list--dense .v-subheader {\\n font-size: 0.75rem;\\n height: 40px;\\n padding: 0 8px;\\n}\\n\\n.v-list--nav .v-list-item:not(:last-child):not(:only-child),\\n.v-list--rounded .v-list-item:not(:last-child):not(:only-child) {\\n margin-bottom: 8px;\\n}\\n.v-list--nav.v-list--dense .v-list-item:not(:last-child):not(:only-child),\\n.v-list--nav .v-list-item--dense:not(:last-child):not(:only-child),\\n.v-list--rounded.v-list--dense .v-list-item:not(:last-child):not(:only-child),\\n.v-list--rounded .v-list-item--dense:not(:last-child):not(:only-child) {\\n margin-bottom: 4px;\\n}\\n\\n.v-list--nav {\\n padding-left: 8px;\\n padding-right: 8px;\\n}\\n.v-list--nav .v-list-item {\\n padding: 0 8px;\\n}\\n.v-list--nav .v-list-item,\\n.v-list--nav .v-list-item:before {\\n border-radius: 4px;\\n}\\n\\n.v-application--is-ltr .v-list.v-sheet--shaped .v-list-item, .v-application--is-ltr .v-list.v-sheet--shaped .v-list-item::before,\\n.v-application--is-ltr .v-list.v-sheet--shaped .v-list-item > .v-ripple__container {\\n border-bottom-right-radius: 32px !important;\\n border-top-right-radius: 32px !important;\\n}\\n.v-application--is-rtl .v-list.v-sheet--shaped .v-list-item, .v-application--is-rtl .v-list.v-sheet--shaped .v-list-item::before,\\n.v-application--is-rtl .v-list.v-sheet--shaped .v-list-item > .v-ripple__container {\\n border-bottom-left-radius: 32px !important;\\n border-top-left-radius: 32px !important;\\n}\\n.v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item, .v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item::before,\\n.v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item > .v-ripple__container {\\n border-bottom-right-radius: 42.6666666667px !important;\\n border-top-right-radius: 42.6666666667px !important;\\n}\\n.v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item, .v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item::before,\\n.v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item > .v-ripple__container {\\n border-bottom-left-radius: 42.6666666667px !important;\\n border-top-left-radius: 42.6666666667px !important;\\n}\\n.v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item, .v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item::before,\\n.v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item > .v-ripple__container {\\n border-bottom-right-radius: 58.6666666667px !important;\\n border-top-right-radius: 58.6666666667px !important;\\n}\\n.v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item, .v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item::before,\\n.v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item > .v-ripple__container {\\n border-bottom-left-radius: 58.6666666667px !important;\\n border-top-left-radius: 58.6666666667px !important;\\n}\\n.v-application--is-ltr .v-list.v-sheet--shaped {\\n padding-right: 8px;\\n}\\n.v-application--is-rtl .v-list.v-sheet--shaped {\\n padding-left: 8px;\\n}\\n\\n.v-list--rounded {\\n padding: 8px;\\n}\\n.v-list--rounded .v-list-item, .v-list--rounded .v-list-item::before,\\n.v-list--rounded .v-list-item > .v-ripple__container {\\n border-radius: 32px !important;\\n}\\n.v-list--rounded.v-list--two-line .v-list-item, .v-list--rounded.v-list--two-line .v-list-item::before,\\n.v-list--rounded.v-list--two-line .v-list-item > .v-ripple__container {\\n border-radius: 42.6666666667px !important;\\n}\\n.v-list--rounded.v-list--three-line .v-list-item, .v-list--rounded.v-list--three-line .v-list-item::before,\\n.v-list--rounded.v-list--three-line .v-list-item > .v-ripple__container {\\n border-radius: 58.6666666667px !important;\\n}\\n\\n.v-list--subheader {\\n padding-top: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VList/VList.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VList/VListGroup.sass": /*!*******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VList/VListGroup.sass ***! \*******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-list-group .v-list-group__header .v-list-item__icon.v-list-group__header__append-icon {\\n align-self: center;\\n margin: 0;\\n min-width: 48px;\\n justify-content: flex-end;\\n}\\n\\n.v-list-group--sub-group {\\n align-items: center;\\n display: flex;\\n flex-wrap: wrap;\\n}\\n\\n.v-list-group__header.v-list-item--active:not(:hover):not(:focus):before {\\n opacity: 0;\\n}\\n\\n.v-list-group__items {\\n flex: 1 1 auto;\\n}\\n.v-list-group__items .v-list-item,\\n.v-list-group__items .v-list-group__items {\\n overflow: hidden;\\n}\\n\\n.v-list-group--active > .v-list-group__header > .v-list-group__header__append-icon .v-icon {\\n transform: rotate(-180deg);\\n}\\n.v-list-group--active > .v-list-group__header.v-list-group__header--sub-group > .v-list-group__header__prepend-icon .v-icon {\\n transform: rotate(-180deg);\\n}\\n.v-list-group--active > .v-list-group__header .v-list-item,\\n.v-list-group--active > .v-list-group__header .v-list-item__content,\\n.v-list-group--active > .v-list-group__header .v-list-group__header__prepend-icon .v-icon {\\n color: inherit;\\n}\\n\\n.v-application--is-ltr .v-list-group--sub-group .v-list-item__action:first-child,\\n.v-application--is-ltr .v-list-group--sub-group .v-list-item__avatar:first-child,\\n.v-application--is-ltr .v-list-group--sub-group .v-list-item__icon:first-child {\\n margin-right: 16px;\\n}\\n.v-application--is-rtl .v-list-group--sub-group .v-list-item__action:first-child,\\n.v-application--is-rtl .v-list-group--sub-group .v-list-item__avatar:first-child,\\n.v-application--is-rtl .v-list-group--sub-group .v-list-item__icon:first-child {\\n margin-left: 16px;\\n}\\n.v-application--is-ltr .v-list-group--sub-group .v-list-group__header {\\n padding-left: 32px;\\n}\\n.v-application--is-rtl .v-list-group--sub-group .v-list-group__header {\\n padding-right: 32px;\\n}\\n.v-application--is-ltr .v-list-group--sub-group .v-list-group__items .v-list-item {\\n padding-left: 40px;\\n}\\n.v-application--is-rtl .v-list-group--sub-group .v-list-group__items .v-list-item {\\n padding-right: 40px;\\n}\\n.v-list-group--sub-group.v-list-group--active .v-list-item__icon.v-list-group__header__prepend-icon .v-icon {\\n transform: rotate(-180deg);\\n}\\n\\n.v-application--is-ltr .v-list-group--no-action > .v-list-group__items > .v-list-item {\\n padding-left: 72px;\\n}\\n.v-application--is-rtl .v-list-group--no-action > .v-list-group__items > .v-list-item {\\n padding-right: 72px;\\n}\\n.v-application--is-ltr .v-list-group--no-action.v-list-group--sub-group > .v-list-group__items > .v-list-item {\\n padding-left: 88px;\\n}\\n.v-application--is-rtl .v-list-group--no-action.v-list-group--sub-group > .v-list-group__items > .v-list-item {\\n padding-right: 88px;\\n}\\n\\n.v-application--is-ltr .v-list--dense .v-list-group--sub-group .v-list-group__header {\\n padding-left: 24px;\\n}\\n.v-application--is-rtl .v-list--dense .v-list-group--sub-group .v-list-group__header {\\n padding-right: 24px;\\n}\\n.v-application--is-ltr .v-list--dense.v-list--nav .v-list-group--no-action > .v-list-group__items > .v-list-item {\\n padding-left: 64px;\\n}\\n.v-application--is-rtl .v-list--dense.v-list--nav .v-list-group--no-action > .v-list-group__items > .v-list-item {\\n padding-right: 64px;\\n}\\n.v-application--is-ltr .v-list--dense.v-list--nav .v-list-group--no-action.v-list-group--sub-group > .v-list-group__items > .v-list-item {\\n padding-left: 80px;\\n}\\n.v-application--is-rtl .v-list--dense.v-list--nav .v-list-group--no-action.v-list-group--sub-group > .v-list-group__items > .v-list-item {\\n padding-right: 80px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VList/VListGroup.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VList/VListItem.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VList/VListItem.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-list-item--disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled) {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-list-item .v-list-item__mask {\\n color: rgba(0, 0, 0, 0.38);\\n background: #eeeeee;\\n}\\n.theme--light.v-list-item:not(.v-list-item--disabled) .v-list-item__subtitle,\\n.theme--light.v-list-item:not(.v-list-item--disabled) .v-list-item__action-text {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.theme--light.v-list-item:hover::before {\\n opacity: 0.04;\\n}\\n.theme--light.v-list-item:focus::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-list-item--active:hover::before, .theme--light.v-list-item--active::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-list-item--active:focus::before {\\n opacity: 0.16;\\n}\\n.theme--light.v-list-item.v-list-item--highlighted::before {\\n opacity: 0.16;\\n}\\n\\n.theme--dark.v-list-item--disabled {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled) {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-list-item .v-list-item__mask {\\n color: rgba(255, 255, 255, 0.5);\\n background: #494949;\\n}\\n.theme--dark.v-list-item:not(.v-list-item--disabled) .v-list-item__subtitle,\\n.theme--dark.v-list-item:not(.v-list-item--disabled) .v-list-item__action-text {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--dark.v-list-item:hover::before {\\n opacity: 0.08;\\n}\\n.theme--dark.v-list-item:focus::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-list-item--active:hover::before, .theme--dark.v-list-item--active::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-list-item--active:focus::before {\\n opacity: 0.32;\\n}\\n.theme--dark.v-list-item.v-list-item--highlighted::before {\\n opacity: 0.32;\\n}\\n\\n.v-list-item {\\n align-items: center;\\n display: flex;\\n flex: 1 1 100%;\\n letter-spacing: normal;\\n min-height: 48px;\\n outline: none;\\n padding: 0 16px;\\n position: relative;\\n text-decoration: none;\\n}\\n.v-list-item--disabled {\\n pointer-events: none;\\n}\\n.v-list-item--selectable {\\n -webkit-user-select: auto;\\n -moz-user-select: auto;\\n user-select: auto;\\n}\\n.v-list-item::after {\\n content: \\\"\\\";\\n min-height: inherit;\\n font-size: 0;\\n}\\n\\n.v-list-item__action {\\n align-self: center;\\n margin: 12px 0;\\n}\\n.v-list-item__action .v-input,\\n.v-list-item__action .v-input__control,\\n.v-list-item__action .v-input__slot,\\n.v-list-item__action .v-input--selection-controls__input {\\n margin: 0 !important;\\n}\\n.v-list-item__action .v-input {\\n padding: 0;\\n}\\n.v-list-item__action .v-input .v-messages {\\n display: none;\\n}\\n\\n.v-list-item__action-text {\\n font-size: 0.75rem;\\n}\\n\\n.v-list-item__avatar {\\n align-self: center;\\n justify-content: flex-start;\\n margin-bottom: 8px;\\n margin-top: 8px;\\n}\\n.v-list-item__avatar.v-list-item__avatar--horizontal {\\n margin-bottom: 8px;\\n margin-top: 8px;\\n}\\n.v-application--is-ltr .v-list-item__avatar.v-list-item__avatar--horizontal:first-child {\\n margin-left: -16px;\\n}\\n.v-application--is-rtl .v-list-item__avatar.v-list-item__avatar--horizontal:first-child {\\n margin-right: -16px;\\n}\\n.v-application--is-ltr .v-list-item__avatar.v-list-item__avatar--horizontal:last-child {\\n margin-left: -16px;\\n}\\n.v-application--is-rtl .v-list-item__avatar.v-list-item__avatar--horizontal:last-child {\\n margin-right: -16px;\\n}\\n\\n.v-list-item__content {\\n align-items: center;\\n align-self: center;\\n display: flex;\\n flex-wrap: wrap;\\n flex: 1 1;\\n overflow: hidden;\\n padding: 12px 0;\\n}\\n.v-list-item__content > * {\\n line-height: 1.1;\\n flex: 1 0 100%;\\n}\\n.v-list-item__content > *:not(:last-child) {\\n margin-bottom: 2px;\\n}\\n\\n.v-list-item__icon {\\n align-self: flex-start;\\n margin: 16px 0;\\n}\\n\\n.v-application--is-ltr .v-list-item__action:last-of-type:not(:only-child),\\n.v-application--is-ltr .v-list-item__avatar:last-of-type:not(:only-child),\\n.v-application--is-ltr .v-list-item__icon:last-of-type:not(:only-child) {\\n margin-left: 16px;\\n}\\n.v-application--is-rtl .v-list-item__action:last-of-type:not(:only-child),\\n.v-application--is-rtl .v-list-item__avatar:last-of-type:not(:only-child),\\n.v-application--is-rtl .v-list-item__icon:last-of-type:not(:only-child) {\\n margin-right: 16px;\\n}\\n\\n.v-application--is-ltr .v-list-item__avatar:first-child {\\n margin-right: 16px;\\n}\\n.v-application--is-rtl .v-list-item__avatar:first-child {\\n margin-left: 16px;\\n}\\n\\n.v-application--is-ltr .v-list-item__action:first-child,\\n.v-application--is-ltr .v-list-item__icon:first-child {\\n margin-right: 32px;\\n}\\n.v-application--is-rtl .v-list-item__action:first-child,\\n.v-application--is-rtl .v-list-item__icon:first-child {\\n margin-left: 32px;\\n}\\n\\n.v-list-item__action,\\n.v-list-item__avatar,\\n.v-list-item__icon {\\n display: inline-flex;\\n min-width: 24px;\\n}\\n\\n.v-list-item .v-list-item__title,\\n.v-list-item .v-list-item__subtitle {\\n line-height: 1.2;\\n}\\n\\n.v-list-item__title,\\n.v-list-item__subtitle {\\n flex: 1 1 100%;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n white-space: nowrap;\\n}\\n\\n.v-list-item__title {\\n align-self: center;\\n font-size: 1rem;\\n}\\n.v-list-item__title > .v-badge {\\n margin-top: 16px;\\n}\\n\\n.v-list-item__subtitle {\\n font-size: 0.875rem;\\n}\\n\\n.v-list-item--dense,\\n.v-list--dense .v-list-item {\\n min-height: 40px;\\n}\\n.v-list-item--dense .v-list-item__icon,\\n.v-list--dense .v-list-item .v-list-item__icon {\\n height: 24px;\\n margin-top: 8px;\\n margin-bottom: 8px;\\n}\\n.v-list-item--dense .v-list-item__content,\\n.v-list--dense .v-list-item .v-list-item__content {\\n padding: 8px 0;\\n}\\n.v-list-item--dense .v-list-item__title,\\n.v-list-item--dense .v-list-item__subtitle,\\n.v-list--dense .v-list-item .v-list-item__title,\\n.v-list--dense .v-list-item .v-list-item__subtitle {\\n font-size: 0.8125rem;\\n font-weight: 500;\\n line-height: 1rem;\\n}\\n.v-list-item--dense.v-list-item--two-line,\\n.v-list--dense .v-list-item.v-list-item--two-line {\\n min-height: 60px;\\n}\\n.v-list-item--dense.v-list-item--three-line,\\n.v-list--dense .v-list-item.v-list-item--three-line {\\n min-height: 76px;\\n}\\n\\n.v-list-item--link {\\n cursor: pointer;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-list-item--link:before {\\n background-color: currentColor;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0;\\n pointer-events: none;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n\\n.v-list .v-list-item--active {\\n color: inherit;\\n}\\n.v-list .v-list-item--active .v-icon {\\n color: inherit;\\n}\\n\\n.v-list-item__action--stack {\\n align-items: flex-end;\\n align-self: stretch;\\n justify-content: space-between;\\n white-space: nowrap;\\n flex-direction: column;\\n}\\n\\n.v-list--two-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal),\\n.v-list--two-line .v-list-item .v-list-item__icon,\\n.v-list--three-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal),\\n.v-list--three-line .v-list-item .v-list-item__icon,\\n.v-list-item--two-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal),\\n.v-list-item--two-line .v-list-item__icon,\\n.v-list-item--three-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal),\\n.v-list-item--three-line .v-list-item__icon {\\n margin-bottom: 16px;\\n margin-top: 16px;\\n}\\n\\n.v-list--two-line .v-list-item,\\n.v-list-item--two-line {\\n min-height: 64px;\\n}\\n.v-list--two-line .v-list-item .v-list-item__icon,\\n.v-list-item--two-line .v-list-item__icon {\\n margin-bottom: 32px;\\n}\\n\\n.v-list--three-line .v-list-item,\\n.v-list-item--three-line {\\n min-height: 88px;\\n}\\n.v-list--three-line .v-list-item .v-list-item__avatar,\\n.v-list--three-line .v-list-item .v-list-item__action,\\n.v-list-item--three-line .v-list-item__avatar,\\n.v-list-item--three-line .v-list-item__action {\\n align-self: flex-start;\\n margin-top: 16px;\\n margin-bottom: 16px;\\n}\\n.v-list--three-line .v-list-item .v-list-item__content,\\n.v-list-item--three-line .v-list-item__content {\\n align-self: stretch;\\n}\\n.v-list--three-line .v-list-item .v-list-item__subtitle,\\n.v-list-item--three-line .v-list-item__subtitle {\\n white-space: initial;\\n -webkit-line-clamp: 2;\\n -webkit-box-orient: vertical;\\n display: -webkit-box;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VList/VListItem.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VList/VListItemGroup.sass": /*!***********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VList/VListItemGroup.sass ***! \***********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-list-item-group .v-list-item--active {\\n color: inherit;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VList/VListItemGroup.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VMain/VMain.sass": /*!**************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VMain/VMain.sass ***! \**************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-main {\\n display: flex;\\n flex: 1 0 auto;\\n max-width: 100%;\\n transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);\\n}\\n.v-main:not([data-booted=true]) {\\n transition: none !important;\\n}\\n.v-main__wrap {\\n flex: 1 1 auto;\\n max-width: 100%;\\n position: relative;\\n}\\n@-moz-document url-prefix() {\\n @media print {\\n .v-main {\\n display: block;\\n }\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VMain/VMain.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VMenu/VMenu.sass": /*!**************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VMenu/VMenu.sass ***! \**************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-menu {\\n display: none;\\n}\\n.v-menu--attached {\\n display: inline;\\n}\\n.v-menu__content {\\n position: absolute;\\n display: inline-block;\\n max-width: 80%;\\n overflow-y: auto;\\n overflow-x: hidden;\\n contain: content;\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n border-radius: 4px;\\n}\\n.v-menu__content--active {\\n pointer-events: none;\\n}\\n.v-menu__content--auto .v-list-item {\\n transition-property: transform, opacity;\\n transition-duration: 0.3s;\\n transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);\\n}\\n.v-menu__content--fixed {\\n position: fixed;\\n}\\n.v-menu__content > .card {\\n contain: content;\\n backface-visibility: hidden;\\n}\\n.v-menu > .v-menu__content {\\n max-width: none;\\n}\\n.v-menu-transition-enter .v-list-item {\\n min-width: 0;\\n pointer-events: none;\\n}\\n.v-menu-transition-enter-to .v-list-item {\\n transition-delay: 0.1s;\\n}\\n.v-menu-transition-leave-active, .v-menu-transition-leave-to {\\n pointer-events: none;\\n}\\n.v-menu-transition-enter, .v-menu-transition-leave-to {\\n opacity: 0;\\n}\\n.v-menu-transition-enter-active, .v-menu-transition-leave-active {\\n transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\\n}\\n\\n.v-menu-transition-enter.v-menu__content--auto {\\n transition: none !important;\\n}\\n.v-menu-transition-enter.v-menu__content--auto .v-list-item {\\n opacity: 0;\\n transform: translateY(-15px);\\n}\\n.v-menu-transition-enter.v-menu__content--auto .v-list-item--active {\\n opacity: 1;\\n transform: none !important;\\n pointer-events: auto;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VMenu/VMenu.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VMessages/VMessages.sass": /*!**********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VMessages/VMessages.sass ***! \**********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \"/* Theme */\\n.theme--light.v-messages {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.theme--dark.v-messages {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n\\n.v-messages {\\n flex: 1 1 auto;\\n font-size: 12px;\\n min-height: 14px;\\n min-width: 1px;\\n position: relative;\\n}\\n.v-application--is-ltr .v-messages {\\n text-align: left;\\n}\\n.v-application--is-rtl .v-messages {\\n text-align: right;\\n}\\n.v-messages__message {\\n line-height: 12px;\\n word-break: break-word;\\n overflow-wrap: break-word;\\n word-wrap: break-word;\\n -webkit-hyphens: auto;\\n hyphens: auto;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VMessages/VMessages.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VNavigationDrawer/VNavigationDrawer.sass": /*!**************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VNavigationDrawer/VNavigationDrawer.sass ***! \**************************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-navigation-drawer {\\n background-color: #FFFFFF;\\n}\\n.theme--light.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-navigation-drawer .v-divider {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-navigation-drawer {\\n background-color: #363636;\\n}\\n.theme--dark.v-navigation-drawer:not(.v-navigation-drawer--floating) .v-navigation-drawer__border {\\n background-color: rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-navigation-drawer .v-divider {\\n border-color: rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-navigation-drawer {\\n -webkit-overflow-scrolling: touch;\\n display: flex;\\n flex-direction: column;\\n left: 0;\\n max-width: 100%;\\n overflow: hidden;\\n pointer-events: auto;\\n top: 0;\\n transition-duration: 0.2s;\\n transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\\n transition-property: transform, visibility, width;\\n}\\n.v-navigation-drawer:not([data-booted=true]) {\\n transition: none !important;\\n}\\n.v-navigation-drawer.v-navigation-drawer--right:after {\\n left: 0;\\n right: initial;\\n}\\n.v-navigation-drawer .v-list:not(.v-select-list) {\\n background: inherit;\\n}\\n\\n.v-navigation-drawer__border {\\n position: absolute;\\n right: 0;\\n top: 0;\\n height: 100%;\\n width: 1px;\\n}\\n\\n.v-navigation-drawer__content {\\n height: 100%;\\n overflow-y: auto;\\n overflow-x: hidden;\\n}\\n\\n.v-navigation-drawer__image {\\n border-radius: inherit;\\n height: 100%;\\n position: absolute;\\n top: 0;\\n bottom: 0;\\n z-index: -1;\\n contain: strict;\\n width: 100%;\\n}\\n.v-navigation-drawer__image .v-image {\\n border-radius: inherit;\\n}\\n\\n.v-navigation-drawer--bottom.v-navigation-drawer--is-mobile {\\n max-height: 50%;\\n top: auto;\\n bottom: 0;\\n min-width: 100%;\\n}\\n\\n.v-navigation-drawer--right {\\n left: auto;\\n right: 0;\\n}\\n.v-navigation-drawer--right > .v-navigation-drawer__border {\\n right: auto;\\n left: 0;\\n}\\n\\n.v-navigation-drawer--absolute {\\n z-index: 1;\\n}\\n\\n.v-navigation-drawer--fixed {\\n z-index: 6;\\n}\\n\\n.v-navigation-drawer--absolute {\\n position: absolute;\\n}\\n\\n.v-navigation-drawer--clipped:not(.v-navigation-drawer--temporary):not(.v-navigation-drawer--is-mobile) {\\n z-index: 4;\\n}\\n\\n.v-navigation-drawer--fixed {\\n position: fixed;\\n}\\n\\n.v-navigation-drawer--floating:after {\\n display: none;\\n}\\n\\n.v-navigation-drawer--mini-variant {\\n overflow: hidden;\\n}\\n.v-navigation-drawer--mini-variant .v-list-item > *:first-child {\\n margin-left: 0;\\n margin-right: 0;\\n}\\n.v-navigation-drawer--mini-variant .v-list-item > *:not(:first-child) {\\n position: absolute !important;\\n height: 1px;\\n width: 1px;\\n overflow: hidden;\\n clip: rect(1px, 1px, 1px, 1px);\\n white-space: nowrap;\\n display: initial;\\n}\\n.v-navigation-drawer--mini-variant .v-list-group--no-action .v-list-group__items,\\n.v-navigation-drawer--mini-variant .v-list-group--sub-group {\\n display: none;\\n}\\n.v-navigation-drawer--mini-variant.v-navigation-drawer--custom-mini-variant .v-list-item {\\n justify-content: center;\\n}\\n\\n.v-navigation-drawer--temporary {\\n z-index: 7;\\n}\\n\\n.v-navigation-drawer--mobile {\\n z-index: 6;\\n}\\n\\n.v-navigation-drawer--close {\\n visibility: hidden;\\n}\\n\\n.v-navigation-drawer--is-mobile:not(.v-navigation-drawer--close),\\n.v-navigation-drawer--temporary:not(.v-navigation-drawer--close) {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VNavigationDrawer/VNavigationDrawer.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VOtpInput/VOtpInput.sass": /*!**********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VOtpInput/VOtpInput.sass ***! \**********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-otp-input .v-input .v-input__control .v-input__slot {\\n background: #FFFFFF;\\n}\\n\\n.theme--dark.v-otp-input .v-input .v-input__control .v-input__slot {\\n background: #303030;\\n}\\n\\n.v-otp-input {\\n display: flex;\\n flex-wrap: wrap;\\n flex: 1 1 auto;\\n margin-right: -4px;\\n margin-left: -4px;\\n}\\n.v-otp-input input {\\n text-align: center;\\n}\\n.v-otp-input .v-input {\\n margin: 0;\\n flex: 1 0 32px;\\n max-width: 100%;\\n width: 100%;\\n padding: 4px;\\n}\\n.v-otp-input .v-input.v-otp-input--plain fieldset {\\n display: none;\\n}\\n.v-otp-input .v-input input[type=number]::-webkit-outer-spin-button,\\n.v-otp-input .v-input input[type=number]::-webkit-inner-spin-button {\\n -webkit-appearance: none;\\n margin: 0;\\n}\\n.v-otp-input .v-input input[type=number] {\\n -moz-appearance: textfield;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VOtpInput/VOtpInput.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VOverflowBtn/VOverflowBtn.sass": /*!****************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VOverflowBtn/VOverflowBtn.sass ***! \****************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-overflow-btn.theme--light.v-overflow-btn > .v-input__control > .v-input__slot {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-overflow-btn:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot:hover {\\n background: #FFFFFF;\\n}\\n.theme--light.v-overflow-btn.v-overflow-btn--segmented .v-input__append-inner {\\n border-left: thin solid rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-overflow-btn.theme--dark.v-overflow-btn > .v-input__control > .v-input__slot {\\n border-color: rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-overflow-btn:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot:hover {\\n background: #1E1E1E;\\n}\\n.theme--dark.v-overflow-btn.v-overflow-btn--segmented .v-input__append-inner {\\n border-left: thin solid rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-autocomplete__content.v-menu__content {\\n box-shadow: 0 4px 6px 0 rgba(32, 33, 36, 0.28);\\n}\\n.v-autocomplete__content.v-menu__content .v-select-list {\\n border-radius: 0 0 4px 4px;\\n}\\n\\n.v-overflow-btn {\\n margin-top: 12px;\\n padding-top: 0;\\n}\\n.v-overflow-btn:not(.v-overflow-btn--editable) > .v-input__control > .v-input__slot {\\n cursor: pointer;\\n}\\n.v-overflow-btn .v-input__slot {\\n border-width: 2px 0;\\n border-style: solid;\\n}\\n.v-overflow-btn .v-input__slot:before {\\n display: none;\\n}\\n.v-overflow-btn .v-select__slot {\\n height: 48px;\\n}\\n.v-overflow-btn.v-input--dense .v-select__slot {\\n height: 38px;\\n}\\n.v-overflow-btn.v-input--dense input {\\n cursor: pointer;\\n}\\n.v-application--is-ltr .v-overflow-btn.v-input--dense input {\\n margin-left: 16px;\\n}\\n.v-application--is-rtl .v-overflow-btn.v-input--dense input {\\n margin-right: 16px;\\n}\\n.v-application--is-ltr .v-overflow-btn .v-select__selection--comma:first-child {\\n margin-left: 16px;\\n}\\n.v-application--is-rtl .v-overflow-btn .v-select__selection--comma:first-child {\\n margin-right: 16px;\\n}\\n.v-overflow-btn .v-input__slot {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-overflow-btn .v-input__slot::before, .v-overflow-btn .v-input__slot::after {\\n display: none;\\n}\\n.v-overflow-btn .v-label {\\n top: calc(50% - 10px);\\n}\\n.v-application--is-ltr .v-overflow-btn .v-label {\\n margin-left: 16px;\\n}\\n.v-application--is-rtl .v-overflow-btn .v-label {\\n margin-right: 16px;\\n}\\n.v-overflow-btn .v-input__append-inner {\\n align-items: center;\\n align-self: auto;\\n flex-shrink: 0;\\n height: 48px;\\n margin-top: 0;\\n padding: 0 4px;\\n width: 42px;\\n}\\n.v-overflow-btn .v-input__append-outer,\\n.v-overflow-btn .v-input__prepend-outer {\\n margin-bottom: 12px;\\n margin-top: 12px;\\n}\\n.v-overflow-btn .v-input__control::before {\\n height: 1px;\\n top: -1px;\\n content: \\\"\\\";\\n left: 0;\\n position: absolute;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n width: 100%;\\n}\\n.v-overflow-btn.v-input--is-focused .v-input__slot, .v-overflow-btn.v-select--is-menu-active .v-input__slot {\\n border-color: transparent !important;\\n box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);\\n}\\n.v-overflow-btn.v-input--is-focused .v-input__slot {\\n border-radius: 4px;\\n}\\n.v-overflow-btn.v-select--is-menu-active .v-input__slot {\\n border-radius: 4px 4px 0 0;\\n}\\n.v-overflow-btn .v-select__selections {\\n width: 0px;\\n}\\n.v-overflow-btn--segmented .v-input__slot {\\n border-width: thin 0;\\n}\\n.v-overflow-btn--segmented .v-select__selections {\\n flex-wrap: nowrap;\\n}\\n.v-overflow-btn--segmented .v-select__selections .v-btn {\\n border-radius: 0;\\n margin: 0;\\n height: 48px;\\n width: 100%;\\n}\\n.v-application--is-ltr .v-overflow-btn--segmented .v-select__selections .v-btn {\\n margin-right: -16px;\\n}\\n.v-application--is-rtl .v-overflow-btn--segmented .v-select__selections .v-btn {\\n margin-left: -16px;\\n}\\n.v-overflow-btn--segmented .v-select__selections .v-btn__content {\\n justify-content: start;\\n}\\n.v-overflow-btn--segmented .v-select__selections .v-btn__content::before {\\n background-color: transparent;\\n}\\n.v-overflow-btn--editable .v-select__slot input {\\n cursor: text;\\n padding: 8px 16px;\\n}\\n.v-overflow-btn--editable .v-input__append-inner,\\n.v-overflow-btn--editable .v-input__append-inner * {\\n cursor: pointer;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VOverflowBtn/VOverflowBtn.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VOverlay/VOverlay.sass": /*!********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VOverlay/VOverlay.sass ***! \********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-overlay {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.theme--dark.v-overlay {\\n color: #FFFFFF;\\n}\\n\\n.v-overlay {\\n align-items: center;\\n border-radius: inherit;\\n display: flex;\\n justify-content: center;\\n position: fixed;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n pointer-events: none;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), z-index 1ms;\\n}\\n\\n.v-overlay__content {\\n position: relative;\\n}\\n\\n.v-overlay__scrim {\\n border-radius: inherit;\\n bottom: 0;\\n height: 100%;\\n left: 0;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transition: inherit;\\n width: 100%;\\n will-change: opacity;\\n}\\n\\n.v-overlay--absolute {\\n position: absolute;\\n}\\n\\n.v-overlay--active {\\n pointer-events: auto;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VOverlay/VOverlay.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VPagination/VPagination.sass": /*!**************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VPagination/VPagination.sass ***! \**************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-pagination .v-pagination__item {\\n background: #FFFFFF;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-pagination .v-pagination__item--active {\\n color: #FFFFFF;\\n}\\n.theme--light.v-pagination .v-pagination__navigation {\\n background: #FFFFFF;\\n}\\n\\n.theme--dark.v-pagination .v-pagination__item {\\n background: #1E1E1E;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-pagination .v-pagination__item--active {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-pagination .v-pagination__navigation {\\n background: #1E1E1E;\\n}\\n\\n.v-pagination {\\n align-items: center;\\n display: inline-flex;\\n list-style-type: none;\\n justify-content: center;\\n margin: 0;\\n max-width: 100%;\\n width: 100%;\\n}\\n.v-pagination.v-pagination {\\n padding-left: 0;\\n}\\n.v-pagination > li {\\n align-items: center;\\n display: flex;\\n}\\n.v-pagination--circle .v-pagination__item,\\n.v-pagination--circle .v-pagination__more,\\n.v-pagination--circle .v-pagination__navigation {\\n border-radius: 50%;\\n}\\n.v-pagination--disabled {\\n pointer-events: none;\\n opacity: 0.6;\\n}\\n.v-pagination__item {\\n background: transparent;\\n border-radius: 4px;\\n font-size: 1rem;\\n height: 34px;\\n margin: 0.3rem;\\n min-width: 34px;\\n padding: 0 5px;\\n text-decoration: none;\\n transition: 0.3s cubic-bezier(0, 0, 0.2, 1);\\n width: auto;\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-pagination__item--active {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-pagination__navigation {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n border-radius: 4px;\\n display: inline-flex;\\n justify-content: center;\\n align-items: center;\\n text-decoration: none;\\n height: 32px;\\n width: 32px;\\n margin: 0.3rem 10px;\\n}\\n.v-pagination__navigation .v-icon {\\n transition: 0.2s cubic-bezier(0.4, 0, 0.6, 1);\\n vertical-align: middle;\\n}\\n.v-pagination__navigation--disabled {\\n opacity: 0.6;\\n pointer-events: none;\\n}\\n.v-pagination__more {\\n margin: 0.3rem;\\n display: inline-flex;\\n align-items: flex-end;\\n justify-content: center;\\n height: 32px;\\n width: 32px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VPagination/VPagination.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VParallax/VParallax.sass": /*!**********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VParallax/VParallax.sass ***! \**********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-parallax {\\n position: relative;\\n overflow: hidden;\\n z-index: 0;\\n}\\n.v-parallax__image-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n z-index: 1;\\n contain: strict;\\n}\\n.v-parallax__image {\\n position: absolute;\\n bottom: 0;\\n left: 50%;\\n min-width: 100%;\\n min-height: 100%;\\n display: none;\\n transform: translate(-50%, 0);\\n will-change: transform;\\n transition: 0.3s opacity cubic-bezier(0.25, 0.8, 0.5, 1);\\n z-index: 1;\\n}\\n.v-parallax__content {\\n color: #FFFFFF;\\n height: 100%;\\n z-index: 2;\\n position: relative;\\n display: flex;\\n flex-direction: column;\\n justify-content: center;\\n padding: 0 1rem;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VParallax/VParallax.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VPicker/VPicker.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VPicker/VPicker.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-picker__title {\\n background: #e0e0e0;\\n}\\n\\n.theme--dark.v-picker__title {\\n background: #616161;\\n}\\n\\n.theme--light.v-picker__body {\\n background: #FFFFFF;\\n}\\n\\n.theme--dark.v-picker__body {\\n background: #424242;\\n}\\n\\n.v-picker {\\n border-radius: 4px;\\n contain: layout style;\\n display: inline-flex;\\n flex-direction: column;\\n font-size: 1rem;\\n vertical-align: top;\\n position: relative;\\n}\\n\\n.v-picker--full-width {\\n display: flex;\\n width: 100%;\\n}\\n.v-picker--full-width > .v-picker__body {\\n margin: initial;\\n}\\n\\n.v-picker__title {\\n color: #FFFFFF;\\n border-top-left-radius: 4px;\\n border-top-right-radius: 4px;\\n padding: 16px;\\n}\\n\\n.v-picker__title__btn {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-picker__title__btn:not(.v-picker__title__btn--active) {\\n opacity: 0.6;\\n cursor: pointer;\\n}\\n.v-picker__title__btn:not(.v-picker__title__btn--active):hover:not(:focus) {\\n opacity: 1;\\n}\\n\\n.v-picker__title__btn--readonly {\\n pointer-events: none;\\n}\\n\\n.v-picker__title__btn--active {\\n opacity: 1;\\n}\\n\\n.v-picker__body {\\n height: auto;\\n overflow: hidden;\\n position: relative;\\n z-index: 0;\\n flex: 1 0 auto;\\n display: flex;\\n flex-direction: column;\\n align-items: center;\\n margin: 0 auto;\\n}\\n.v-picker__body > div {\\n width: 100%;\\n}\\n.v-picker__body > div.fade-transition-leave-active {\\n position: absolute;\\n}\\n\\n.v-picker--landscape .v-picker__title {\\n border-top-right-radius: 0;\\n border-bottom-right-radius: 0;\\n width: 170px;\\n position: absolute;\\n top: 0;\\n height: 100%;\\n z-index: 1;\\n}\\n.v-application--is-ltr .v-picker--landscape .v-picker__title {\\n left: 0;\\n}\\n.v-application--is-rtl .v-picker--landscape .v-picker__title {\\n right: 0;\\n}\\n.v-application--is-ltr .v-picker--landscape .v-picker__body:not(.v-picker__body--no-title),\\n.v-application--is-ltr .v-picker--landscape .v-picker__actions:not(.v-picker__actions--no-title) {\\n margin-left: 170px;\\n margin-right: 0;\\n}\\n.v-application--is-rtl .v-picker--landscape .v-picker__body:not(.v-picker__body--no-title),\\n.v-application--is-rtl .v-picker--landscape .v-picker__actions:not(.v-picker__actions--no-title) {\\n margin-right: 170px;\\n margin-left: 0;\\n}\\n\\n.v-picker--flat {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VPicker/VPicker.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VProgressCircular/VProgressCircular.sass": /*!**************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VProgressCircular/VProgressCircular.sass ***! \**************************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-progress-circular {\\n position: relative;\\n display: inline-flex;\\n vertical-align: middle;\\n justify-content: center;\\n align-items: center;\\n}\\n.v-progress-circular > svg {\\n width: 100%;\\n height: 100%;\\n margin: auto;\\n position: absolute;\\n top: 0;\\n bottom: 0;\\n left: 0;\\n right: 0;\\n z-index: 0;\\n}\\n.v-progress-circular--indeterminate > svg {\\n animation: progress-circular-rotate 1.4s linear infinite;\\n transform-origin: center center;\\n transition: all 0.2s ease-in-out;\\n}\\n.v-progress-circular--indeterminate .v-progress-circular__overlay {\\n animation: progress-circular-dash 1.4s ease-in-out infinite;\\n stroke-linecap: round;\\n stroke-dasharray: 80, 200;\\n stroke-dashoffset: 0px;\\n}\\n.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,\\n.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {\\n animation-play-state: paused !important;\\n}\\n.v-progress-circular__info {\\n align-items: center;\\n display: flex;\\n justify-content: center;\\n}\\n.v-progress-circular__underlay {\\n stroke: rgba(158, 158, 158, 0.4);\\n z-index: 1;\\n}\\n.v-progress-circular__overlay {\\n stroke: currentColor;\\n z-index: 2;\\n transition: all 0.6s ease-in-out;\\n}\\n\\n@keyframes progress-circular-dash {\\n 0% {\\n stroke-dasharray: 1, 200;\\n stroke-dashoffset: 0px;\\n }\\n 50% {\\n stroke-dasharray: 100, 200;\\n stroke-dashoffset: -15px;\\n }\\n 100% {\\n stroke-dasharray: 100, 200;\\n stroke-dashoffset: -124px;\\n }\\n}\\n@keyframes progress-circular-rotate {\\n 100% {\\n transform: rotate(360deg);\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VProgressCircular/VProgressCircular.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VProgressLinear/VProgressLinear.sass": /*!**********************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VProgressLinear/VProgressLinear.sass ***! \**********************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-progress-linear {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.theme--dark.v-progress-linear {\\n color: #FFFFFF;\\n}\\n\\n.v-progress-linear {\\n background: transparent;\\n overflow: hidden;\\n position: relative;\\n transition: 0.2s cubic-bezier(0.4, 0, 0.6, 1);\\n width: 100%;\\n}\\n\\n.v-progress-linear__buffer {\\n height: inherit;\\n left: 0;\\n position: absolute;\\n top: 0;\\n transition: inherit;\\n width: 100%;\\n}\\n\\n.v-progress-linear--reverse .v-progress-linear__buffer {\\n left: auto;\\n right: 0;\\n}\\n\\n.v-progress-linear__background {\\n bottom: 0;\\n left: 0;\\n position: absolute;\\n top: 0;\\n transition: inherit;\\n}\\n\\n.v-progress-linear--reverse .v-progress-linear__background {\\n left: auto;\\n right: 0;\\n}\\n\\n.v-progress-linear__content {\\n align-items: center;\\n display: flex;\\n height: 100%;\\n left: 0;\\n justify-content: center;\\n position: absolute;\\n top: 0;\\n width: 100%;\\n}\\n\\n.v-progress-linear--reverse .v-progress-linear__content {\\n left: auto;\\n right: 0;\\n}\\n\\n.v-progress-linear__determinate {\\n height: inherit;\\n left: 0;\\n position: absolute;\\n transition: inherit;\\n}\\n\\n.v-progress-linear--reverse .v-progress-linear__determinate {\\n left: auto;\\n right: 0;\\n}\\n\\n.v-progress-linear .v-progress-linear__indeterminate .long, .v-progress-linear .v-progress-linear__indeterminate .short {\\n animation-play-state: paused;\\n background-color: inherit;\\n bottom: 0;\\n height: inherit;\\n left: 0;\\n position: absolute;\\n right: auto;\\n top: 0;\\n width: auto;\\n will-change: left, right;\\n}\\n.v-progress-linear .v-progress-linear__indeterminate--active .long {\\n animation-name: indeterminate-ltr;\\n animation-duration: 2.2s;\\n animation-iteration-count: infinite;\\n}\\n.v-progress-linear .v-progress-linear__indeterminate--active .short {\\n animation-name: indeterminate-short-ltr;\\n animation-duration: 2.2s;\\n animation-iteration-count: infinite;\\n}\\n\\n.v-progress-linear--reverse .v-progress-linear__indeterminate .long, .v-progress-linear--reverse .v-progress-linear__indeterminate .short {\\n left: auto;\\n right: 0;\\n}\\n.v-progress-linear--reverse .v-progress-linear__indeterminate--active .long {\\n animation-name: indeterminate-rtl;\\n}\\n.v-progress-linear--reverse .v-progress-linear__indeterminate--active .short {\\n animation-name: indeterminate-short-rtl;\\n}\\n\\n.v-progress-linear__stream {\\n animation: stream-ltr 0.25s infinite linear;\\n animation-play-state: paused;\\n border-color: currentColor;\\n border-top: 4px dotted;\\n bottom: 0;\\n left: auto;\\n right: -8px;\\n opacity: 0.3;\\n pointer-events: none;\\n position: absolute;\\n top: calc(50% - 2px);\\n transition: inherit;\\n}\\n\\n.v-progress-linear--reverse .v-progress-linear__stream {\\n animation: stream-rtl 0.25s infinite linear;\\n left: -8px;\\n right: auto;\\n}\\n\\n.v-progress-linear__wrapper {\\n overflow: hidden;\\n position: relative;\\n transition: inherit;\\n}\\n\\n.v-progress-linear--absolute,\\n.v-progress-linear--fixed {\\n left: 0;\\n z-index: 1;\\n}\\n\\n.v-progress-linear--absolute {\\n position: absolute;\\n}\\n\\n.v-progress-linear--fixed {\\n position: fixed;\\n}\\n\\n.v-progress-linear--reactive .v-progress-linear__content {\\n pointer-events: none;\\n}\\n\\n.v-progress-linear--rounded {\\n border-radius: 4px;\\n}\\n\\n.v-progress-linear--striped .v-progress-linear__determinate {\\n background-image: linear-gradient(135deg, hsla(0, 0%, 100%, 0.25) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, 0.25) 0, hsla(0, 0%, 100%, 0.25) 75%, transparent 0, transparent);\\n background-size: 40px 40px;\\n background-repeat: repeat;\\n}\\n\\n.v-progress-linear--query .v-progress-linear__indeterminate--active .long {\\n animation-name: query-ltr;\\n animation-duration: 2s;\\n animation-iteration-count: infinite;\\n}\\n.v-progress-linear--query .v-progress-linear__indeterminate--active .short {\\n animation-name: query-short-ltr;\\n animation-duration: 2s;\\n animation-iteration-count: infinite;\\n}\\n.v-progress-linear--query.v-progress-linear--reverse .v-progress-linear__indeterminate--active .long {\\n animation-name: query-rtl;\\n}\\n.v-progress-linear--query.v-progress-linear--reverse .v-progress-linear__indeterminate--active .short {\\n animation-name: query-short-rtl;\\n}\\n\\n.v-progress-linear--visible .v-progress-linear__indeterminate--active .long, .v-progress-linear--visible .v-progress-linear__indeterminate--active .short {\\n animation-play-state: running;\\n}\\n.v-progress-linear--visible .v-progress-linear__stream {\\n animation-play-state: running;\\n}\\n\\n@keyframes indeterminate-ltr {\\n 0% {\\n left: -90%;\\n right: 100%;\\n }\\n 60% {\\n left: -90%;\\n right: 100%;\\n }\\n 100% {\\n left: 100%;\\n right: -35%;\\n }\\n}\\n@keyframes indeterminate-rtl {\\n 0% {\\n left: 100%;\\n right: -90%;\\n }\\n 60% {\\n left: 100%;\\n right: -90%;\\n }\\n 100% {\\n left: -35%;\\n right: 100%;\\n }\\n}\\n@keyframes indeterminate-short-ltr {\\n 0% {\\n left: -200%;\\n right: 100%;\\n }\\n 60% {\\n left: 107%;\\n right: -8%;\\n }\\n 100% {\\n left: 107%;\\n right: -8%;\\n }\\n}\\n@keyframes indeterminate-short-rtl {\\n 0% {\\n left: 100%;\\n right: -200%;\\n }\\n 60% {\\n left: -8%;\\n right: 107%;\\n }\\n 100% {\\n left: -8%;\\n right: 107%;\\n }\\n}\\n@keyframes query-ltr {\\n 0% {\\n right: -90%;\\n left: 100%;\\n }\\n 60% {\\n right: -90%;\\n left: 100%;\\n }\\n 100% {\\n right: 100%;\\n left: -35%;\\n }\\n}\\n@keyframes query-rtl {\\n 0% {\\n right: 100%;\\n left: -90%;\\n }\\n 60% {\\n right: 100%;\\n left: -90%;\\n }\\n 100% {\\n right: -35%;\\n left: 100%;\\n }\\n}\\n@keyframes query-short-ltr {\\n 0% {\\n right: -200%;\\n left: 100%;\\n }\\n 60% {\\n right: 107%;\\n left: -8%;\\n }\\n 100% {\\n right: 107%;\\n left: -8%;\\n }\\n}\\n@keyframes query-short-rtl {\\n 0% {\\n right: 100%;\\n left: -200%;\\n }\\n 60% {\\n right: -8%;\\n left: 107%;\\n }\\n 100% {\\n right: -8%;\\n left: 107%;\\n }\\n}\\n@keyframes stream-ltr {\\n to {\\n transform: translateX(-8px);\\n }\\n}\\n@keyframes stream-rtl {\\n to {\\n transform: translateX(8px);\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VProgressLinear/VProgressLinear.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VRadioGroup/VRadio.sass": /*!*********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VRadioGroup/VRadio.sass ***! \*********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-radio--is-disabled label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.theme--dark.v-radio--is-disabled label {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n\\n.v-radio {\\n align-items: center;\\n display: flex;\\n height: auto;\\n outline: none;\\n}\\n.v-radio--is-disabled {\\n pointer-events: none;\\n cursor: default;\\n}\\n\\n.v-input--radio-group.v-input--radio-group--row .v-radio {\\n margin-right: 16px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VRadioGroup/VRadio.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VRadioGroup/VRadioGroup.sass": /*!**************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VRadioGroup/VRadioGroup.sass ***! \**************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-input--radio-group legend.v-label {\\n cursor: text;\\n font-size: 14px;\\n height: auto;\\n}\\n.v-input--radio-group__input {\\n border: none;\\n cursor: default;\\n display: flex;\\n width: 100%;\\n}\\n.v-input--radio-group--column .v-input--radio-group__input > .v-label {\\n padding-bottom: 8px;\\n}\\n.v-input--radio-group--row .v-input--radio-group__input > .v-label {\\n padding-right: 8px;\\n}\\n.v-input--radio-group--row legend {\\n align-self: center;\\n display: inline-block;\\n}\\n.v-input--radio-group--row .v-input--radio-group__input {\\n flex-direction: row;\\n flex-wrap: wrap;\\n}\\n.v-input--radio-group--column legend {\\n padding-bottom: 8px;\\n}\\n.v-input--radio-group--column .v-radio:not(:last-child):not(:only-child) {\\n margin-bottom: 8px;\\n}\\n.v-input--radio-group--column .v-input--radio-group__input {\\n flex-direction: column;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VRadioGroup/VRadioGroup.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VRangeSlider/VRangeSlider.sass": /*!****************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VRangeSlider/VRangeSlider.sass ***! \****************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb {\\n background: #fafafa;\\n}\\n\\n.theme--dark.v-input--range-slider.v-input--slider.v-input--is-disabled .v-slider.v-slider .v-slider__thumb {\\n background: #424242;\\n}\\n\\n/** Input Group */\\n.v-input--range-slider.v-input--is-disabled .v-slider__track-fill {\\n display: none;\\n}\\n.v-input--range-slider.v-input--is-disabled.v-input--slider .v-slider.v-slider .v-slider__thumb {\\n border-color: transparent;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VRangeSlider/VRangeSlider.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VRating/VRating.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VRating/VRating.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-rating {\\n max-width: 100%;\\n white-space: nowrap;\\n}\\n.v-rating .v-icon {\\n padding: 0.5rem;\\n border-radius: 50%;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n outline: none;\\n}\\n.v-rating .v-icon::after {\\n display: none;\\n}\\n.v-application--is-ltr .v-rating .v-icon {\\n transform: scaleX(1);\\n}\\n.v-application--is-rtl .v-rating .v-icon {\\n transform: scaleX(-1);\\n}\\n.v-rating--readonly .v-icon {\\n pointer-events: none;\\n}\\n.v-rating--dense .v-icon {\\n padding: 0.1rem;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VRating/VRating.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VResponsive/VResponsive.sass": /*!**************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VResponsive/VResponsive.sass ***! \**************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-responsive {\\n position: relative;\\n overflow: hidden;\\n flex: 1 0 auto;\\n max-width: 100%;\\n display: flex;\\n}\\n.v-responsive__content {\\n flex: 1 0 0px;\\n max-width: 100%;\\n}\\n.v-application--is-ltr .v-responsive__sizer ~ .v-responsive__content {\\n margin-left: -100%;\\n}\\n.v-application--is-rtl .v-responsive__sizer ~ .v-responsive__content {\\n margin-right: -100%;\\n}\\n.v-responsive__sizer {\\n transition: padding-bottom 0.2s cubic-bezier(0.25, 0.8, 0.5, 1);\\n flex: 1 0 0px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VResponsive/VResponsive.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSelect/VSelect.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSelect/VSelect.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-select .v-select__selections {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-select.v-input--is-disabled .v-select__selections {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-select .v-select__selection--disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections {\\n color: #FFFFFF;\\n}\\n\\n.theme--dark.v-select .v-select__selections {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-select.v-input--is-disabled .v-select__selections {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-select .v-select__selection--disabled {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.v-select {\\n position: relative;\\n}\\n.v-select:not(.v-select--is-multi).v-text-field--single-line .v-select__selections {\\n flex-wrap: nowrap;\\n}\\n.v-select > .v-input__control > .v-input__slot {\\n cursor: pointer;\\n}\\n.v-select .v-chip {\\n flex: 0 1 auto;\\n margin: 4px;\\n}\\n.v-select .v-chip--selected:after {\\n opacity: 0.22;\\n}\\n.v-select .fade-transition-leave-active {\\n position: absolute;\\n left: 0;\\n}\\n.v-select.v-input--is-dirty ::-moz-placeholder {\\n color: transparent !important;\\n}\\n.v-select.v-input--is-dirty ::placeholder {\\n color: transparent !important;\\n}\\n.v-select:not(.v-input--is-dirty):not(.v-input--is-focused) .v-text-field__prefix {\\n line-height: 20px;\\n top: 7px;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-select.v-text-field--enclosed:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__selections {\\n padding-top: 20px;\\n}\\n.v-select.v-text-field--outlined:not(.v-text-field--single-line) .v-select__selections {\\n padding: 8px 0;\\n}\\n.v-select.v-text-field--outlined:not(.v-text-field--single-line).v-input--dense .v-select__selections {\\n padding: 4px 0;\\n}\\n.v-select.v-text-field input {\\n flex: 1 1;\\n min-width: 0;\\n position: relative;\\n}\\n.v-select.v-text-field:not(.v-text-field--single-line) input {\\n margin-top: 0;\\n}\\n.v-select.v-select--is-menu-active .v-input__icon--append .v-icon {\\n transform: rotate(180deg);\\n}\\n.v-select.v-select--chips input {\\n margin: 0;\\n}\\n.v-select.v-select--chips .v-select__selections {\\n min-height: 42px;\\n}\\n.v-select.v-select--chips.v-input--dense .v-select__selections {\\n min-height: 40px;\\n}\\n.v-select.v-select--chips .v-chip--select.v-chip--active::before {\\n opacity: 0.2;\\n}\\n.v-select.v-select--chips.v-select--chips--small .v-select__selections {\\n min-height: 26px;\\n}\\n.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections, .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections {\\n min-height: 68px;\\n}\\n.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-input--dense .v-select__selections, .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-input--dense .v-select__selections {\\n min-height: 40px;\\n}\\n.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections, .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections {\\n min-height: 26px;\\n}\\n.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small.v-input--dense .v-select__selections, .v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small.v-input--dense .v-select__selections {\\n min-height: 38px;\\n}\\n.v-select.v-text-field--reverse .v-select__slot,\\n.v-select.v-text-field--reverse .v-select__selections {\\n flex-direction: row-reverse;\\n}\\n.v-select.v-input--is-disabled:not(.v-input--is-readonly):not(.v-autocomplete) {\\n pointer-events: none;\\n}\\n.v-select__selections {\\n align-items: center;\\n display: flex;\\n flex: 1 1;\\n flex-wrap: wrap;\\n line-height: 18px;\\n max-width: 100%;\\n min-width: 0;\\n}\\n.v-select__selection {\\n max-width: 90%;\\n}\\n.v-select__selection--comma {\\n margin: 7px 4px 7px 0;\\n min-height: 10px;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n white-space: nowrap;\\n}\\n.v-select.v-input--dense .v-select__selection--comma {\\n margin: 5px 4px 3px 0;\\n}\\n.v-select.v-input--dense .v-chip {\\n margin: 0 4px 0 4px;\\n}\\n.v-select__slot {\\n position: relative;\\n align-items: center;\\n display: flex;\\n max-width: 100%;\\n min-width: 0;\\n width: 100%;\\n}\\n.v-select:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__slot > input {\\n align-self: flex-end;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSelect/VSelect.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSheet/VSheet.sass": /*!****************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSheet/VSheet.sass ***! \****************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-sheet {\\n background-color: #FFFFFF;\\n border-color: #FFFFFF;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-sheet--outlined {\\n border: thin solid rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-sheet {\\n background-color: #1E1E1E;\\n border-color: #1E1E1E;\\n color: #FFFFFF;\\n}\\n.theme--dark.v-sheet--outlined {\\n border: thin solid rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-sheet {\\n border-radius: 0;\\n}\\n.v-sheet:not(.v-sheet--outlined) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-sheet--shaped {\\n border-radius: 16px 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSheet/VSheet.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSkeletonLoader/VSkeletonLoader.sass": /*!**********************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSkeletonLoader/VSkeletonLoader.sass ***! \**********************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-skeleton-loader .v-skeleton-loader__bone::after {\\n background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));\\n}\\n.theme--light.v-skeleton-loader .v-skeleton-loader__avatar,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__button,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__chip,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__divider,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__heading,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__image,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__text {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-skeleton-loader .v-skeleton-loader__actions,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__article,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__card-heading,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__card-text,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__date-picker,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__list-item,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__list-item-avatar,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__list-item-text,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__list-item-two-line,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__list-item-three-line,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__table-heading,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__table-thead,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__table-tbody,\\n.theme--light.v-skeleton-loader .v-skeleton-loader__table-tfoot {\\n background: #FFFFFF;\\n}\\n\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__bone::after {\\n background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\\n}\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__avatar,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__button,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__chip,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__divider,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__heading,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__image,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__text {\\n background: rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__actions,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__article,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__card-heading,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__card-text,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__date-picker,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-avatar,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-text,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-two-line,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-three-line,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__table-heading,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__table-thead,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__table-tbody,\\n.theme--dark.v-skeleton-loader .v-skeleton-loader__table-tfoot {\\n background: #1E1E1E;\\n}\\n\\n.v-skeleton-loader {\\n border-radius: 4px;\\n position: relative;\\n vertical-align: top;\\n}\\n.v-skeleton-loader__actions {\\n padding: 16px 16px 8px;\\n text-align: right;\\n}\\n.v-skeleton-loader__actions .v-skeleton-loader__button {\\n display: inline-block;\\n}\\n.v-application--is-ltr .v-skeleton-loader__actions .v-skeleton-loader__button:first-child {\\n margin-right: 12px;\\n}\\n.v-application--is-rtl .v-skeleton-loader__actions .v-skeleton-loader__button:first-child {\\n margin-left: 12px;\\n}\\n.v-skeleton-loader .v-skeleton-loader__list-item,\\n.v-skeleton-loader .v-skeleton-loader__list-item-avatar,\\n.v-skeleton-loader .v-skeleton-loader__list-item-text,\\n.v-skeleton-loader .v-skeleton-loader__list-item-two-line,\\n.v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,\\n.v-skeleton-loader .v-skeleton-loader__list-item-three-line,\\n.v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line {\\n border-radius: 4px;\\n}\\n.v-skeleton-loader .v-skeleton-loader__actions::after,\\n.v-skeleton-loader .v-skeleton-loader__article::after,\\n.v-skeleton-loader .v-skeleton-loader__card::after,\\n.v-skeleton-loader .v-skeleton-loader__card-avatar::after,\\n.v-skeleton-loader .v-skeleton-loader__card-heading::after,\\n.v-skeleton-loader .v-skeleton-loader__card-text::after,\\n.v-skeleton-loader .v-skeleton-loader__date-picker::after,\\n.v-skeleton-loader .v-skeleton-loader__date-picker-options::after,\\n.v-skeleton-loader .v-skeleton-loader__date-picker-days::after,\\n.v-skeleton-loader .v-skeleton-loader__list-item::after,\\n.v-skeleton-loader .v-skeleton-loader__list-item-avatar::after,\\n.v-skeleton-loader .v-skeleton-loader__list-item-text::after,\\n.v-skeleton-loader .v-skeleton-loader__list-item-two-line::after,\\n.v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line::after,\\n.v-skeleton-loader .v-skeleton-loader__list-item-three-line::after,\\n.v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line::after,\\n.v-skeleton-loader .v-skeleton-loader__paragraph::after,\\n.v-skeleton-loader .v-skeleton-loader__sentences::after,\\n.v-skeleton-loader .v-skeleton-loader__table::after,\\n.v-skeleton-loader .v-skeleton-loader__table-cell::after,\\n.v-skeleton-loader .v-skeleton-loader__table-heading::after,\\n.v-skeleton-loader .v-skeleton-loader__table-thead::after,\\n.v-skeleton-loader .v-skeleton-loader__table-tbody::after,\\n.v-skeleton-loader .v-skeleton-loader__table-tfoot::after,\\n.v-skeleton-loader .v-skeleton-loader__table-row::after,\\n.v-skeleton-loader .v-skeleton-loader__table-row-divider::after {\\n display: none;\\n}\\n.v-application--is-ltr .v-skeleton-loader__article .v-skeleton-loader__heading {\\n margin: 16px 0 16px 16px;\\n}\\n.v-application--is-rtl .v-skeleton-loader__article .v-skeleton-loader__heading {\\n margin: 16px 16px 0 16px;\\n}\\n.v-skeleton-loader__article .v-skeleton-loader__paragraph {\\n padding: 16px;\\n}\\n.v-skeleton-loader__bone {\\n border-radius: inherit;\\n overflow: hidden;\\n position: relative;\\n}\\n.v-skeleton-loader__bone::after {\\n animation: loading 1.5s infinite;\\n content: \\\"\\\";\\n height: 100%;\\n left: 0;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transform: translateX(-100%);\\n z-index: 1;\\n}\\n.v-skeleton-loader__avatar {\\n border-radius: 50%;\\n height: 48px;\\n width: 48px;\\n}\\n.v-skeleton-loader__button {\\n border-radius: 4px;\\n height: 36px;\\n width: 64px;\\n}\\n.v-skeleton-loader__card .v-skeleton-loader__image {\\n border-radius: 0;\\n}\\n.v-skeleton-loader__card-heading .v-skeleton-loader__heading {\\n margin: 16px;\\n}\\n.v-skeleton-loader__card-text {\\n padding: 16px;\\n}\\n.v-skeleton-loader__chip {\\n border-radius: 16px;\\n height: 32px;\\n width: 96px;\\n}\\n.v-skeleton-loader__date-picker {\\n border-radius: inherit;\\n}\\n.v-skeleton-loader__date-picker .v-skeleton-loader__list-item:first-child .v-skeleton-loader__text {\\n max-width: 88px;\\n width: 20%;\\n}\\n.v-skeleton-loader__date-picker .v-skeleton-loader__heading {\\n max-width: 256px;\\n width: 40%;\\n}\\n.v-skeleton-loader__date-picker-days {\\n display: flex;\\n flex-wrap: wrap;\\n padding: 0 12px;\\n margin: 0 auto;\\n}\\n.v-skeleton-loader__date-picker-days .v-skeleton-loader__avatar {\\n border-radius: 4px;\\n flex: 1 1 auto;\\n margin: 4px;\\n height: 40px;\\n width: 40px;\\n}\\n.v-skeleton-loader__date-picker-options {\\n align-items: center;\\n display: flex;\\n padding: 16px;\\n}\\n.v-skeleton-loader__date-picker-options .v-skeleton-loader__avatar {\\n height: 40px;\\n width: 40px;\\n}\\n.v-skeleton-loader__date-picker-options .v-skeleton-loader__avatar:nth-child(2) {\\n margin-left: auto;\\n}\\n.v-application--is-ltr .v-skeleton-loader__date-picker-options .v-skeleton-loader__avatar:nth-child(2) {\\n margin-right: 8px;\\n}\\n.v-application--is-rtl .v-skeleton-loader__date-picker-options .v-skeleton-loader__avatar:nth-child(2) {\\n margin-left: 8px;\\n}\\n.v-skeleton-loader__date-picker-options .v-skeleton-loader__text.v-skeleton-loader__bone:first-child {\\n margin-bottom: 0px;\\n max-width: 50%;\\n width: 456px;\\n}\\n.v-skeleton-loader__divider {\\n border-radius: 1px;\\n height: 2px;\\n}\\n.v-skeleton-loader__heading {\\n border-radius: 12px;\\n height: 24px;\\n width: 45%;\\n}\\n.v-skeleton-loader__image {\\n height: 200px;\\n border-radius: 0;\\n}\\n.v-skeleton-loader__image ~ .v-skeleton-loader__card-heading {\\n border-radius: 0;\\n}\\n.v-skeleton-loader__image:first-child, .v-skeleton-loader__image:last-child {\\n border-radius: inherit;\\n}\\n.v-skeleton-loader__list-item {\\n height: 48px;\\n}\\n.v-skeleton-loader__list-item-three-line {\\n flex-wrap: wrap;\\n}\\n.v-skeleton-loader__list-item-three-line > * {\\n flex: 1 0 100%;\\n width: 100%;\\n}\\n.v-skeleton-loader__list-item-avatar .v-skeleton-loader__avatar, .v-skeleton-loader__list-item-avatar-two-line .v-skeleton-loader__avatar, .v-skeleton-loader__list-item-avatar-three-line .v-skeleton-loader__avatar {\\n height: 40px;\\n width: 40px;\\n}\\n.v-skeleton-loader__list-item-avatar {\\n height: 48px;\\n}\\n.v-skeleton-loader__list-item-two-line, .v-skeleton-loader__list-item-avatar-two-line {\\n height: 72px;\\n}\\n.v-skeleton-loader__list-item-three-line, .v-skeleton-loader__list-item-avatar-three-line {\\n height: 88px;\\n}\\n.v-skeleton-loader__list-item-avatar-three-line .v-skeleton-loader__avatar {\\n align-self: flex-start;\\n}\\n.v-skeleton-loader__list-item, .v-skeleton-loader__list-item-avatar, .v-skeleton-loader__list-item-two-line, .v-skeleton-loader__list-item-three-line, .v-skeleton-loader__list-item-avatar-two-line, .v-skeleton-loader__list-item-avatar-three-line {\\n align-content: center;\\n align-items: center;\\n display: flex;\\n flex-wrap: wrap;\\n padding: 0 16px;\\n}\\n.v-application--is-ltr .v-skeleton-loader__list-item .v-skeleton-loader__avatar, .v-application--is-ltr .v-skeleton-loader__list-item-avatar .v-skeleton-loader__avatar, .v-application--is-ltr .v-skeleton-loader__list-item-two-line .v-skeleton-loader__avatar, .v-application--is-ltr .v-skeleton-loader__list-item-three-line .v-skeleton-loader__avatar, .v-application--is-ltr .v-skeleton-loader__list-item-avatar-two-line .v-skeleton-loader__avatar, .v-application--is-ltr .v-skeleton-loader__list-item-avatar-three-line .v-skeleton-loader__avatar {\\n margin-right: 16px;\\n}\\n.v-application--is-rtl .v-skeleton-loader__list-item .v-skeleton-loader__avatar, .v-application--is-rtl .v-skeleton-loader__list-item-avatar .v-skeleton-loader__avatar, .v-application--is-rtl .v-skeleton-loader__list-item-two-line .v-skeleton-loader__avatar, .v-application--is-rtl .v-skeleton-loader__list-item-three-line .v-skeleton-loader__avatar, .v-application--is-rtl .v-skeleton-loader__list-item-avatar-two-line .v-skeleton-loader__avatar, .v-application--is-rtl .v-skeleton-loader__list-item-avatar-three-line .v-skeleton-loader__avatar {\\n margin-left: 16px;\\n}\\n.v-skeleton-loader__list-item .v-skeleton-loader__text:last-child,\\n.v-skeleton-loader__list-item .v-skeleton-loader__text:only-child, .v-skeleton-loader__list-item-avatar .v-skeleton-loader__text:last-child,\\n.v-skeleton-loader__list-item-avatar .v-skeleton-loader__text:only-child, .v-skeleton-loader__list-item-two-line .v-skeleton-loader__text:last-child,\\n.v-skeleton-loader__list-item-two-line .v-skeleton-loader__text:only-child, .v-skeleton-loader__list-item-three-line .v-skeleton-loader__text:last-child,\\n.v-skeleton-loader__list-item-three-line .v-skeleton-loader__text:only-child, .v-skeleton-loader__list-item-avatar-two-line .v-skeleton-loader__text:last-child,\\n.v-skeleton-loader__list-item-avatar-two-line .v-skeleton-loader__text:only-child, .v-skeleton-loader__list-item-avatar-three-line .v-skeleton-loader__text:last-child,\\n.v-skeleton-loader__list-item-avatar-three-line .v-skeleton-loader__text:only-child {\\n margin-bottom: 0;\\n}\\n.v-skeleton-loader__paragraph, .v-skeleton-loader__sentences {\\n flex: 1 0 auto;\\n}\\n.v-skeleton-loader__paragraph:not(:last-child) {\\n margin-bottom: 6px;\\n}\\n.v-skeleton-loader__paragraph .v-skeleton-loader__text:nth-child(1) {\\n max-width: 100%;\\n}\\n.v-skeleton-loader__paragraph .v-skeleton-loader__text:nth-child(2) {\\n max-width: 50%;\\n}\\n.v-skeleton-loader__paragraph .v-skeleton-loader__text:nth-child(3) {\\n max-width: 70%;\\n}\\n.v-skeleton-loader__sentences .v-skeleton-loader__text:nth-child(2) {\\n max-width: 70%;\\n}\\n.v-skeleton-loader__sentences:not(:last-child) {\\n margin-bottom: 6px;\\n}\\n.v-skeleton-loader__table-heading {\\n align-items: center;\\n display: flex;\\n justify-content: space-between;\\n padding: 16px;\\n}\\n.v-skeleton-loader__table-heading .v-skeleton-loader__heading {\\n max-width: 15%;\\n}\\n.v-skeleton-loader__table-heading .v-skeleton-loader__text {\\n max-width: 40%;\\n}\\n.v-skeleton-loader__table-thead {\\n display: flex;\\n justify-content: space-between;\\n padding: 16px;\\n}\\n.v-skeleton-loader__table-thead .v-skeleton-loader__heading {\\n max-width: 5%;\\n}\\n.v-skeleton-loader__table-tbody {\\n padding: 16px 16px 0;\\n}\\n.v-skeleton-loader__table-tfoot {\\n align-items: center;\\n display: flex;\\n justify-content: flex-end;\\n padding: 16px;\\n}\\n.v-application--is-ltr .v-skeleton-loader__table-tfoot > * {\\n margin-left: 8px;\\n}\\n.v-application--is-rtl .v-skeleton-loader__table-tfoot > * {\\n margin-right: 8px;\\n}\\n.v-skeleton-loader__table-tfoot .v-skeleton-loader__avatar {\\n height: 40px;\\n width: 40px;\\n}\\n.v-skeleton-loader__table-tfoot .v-skeleton-loader__text {\\n margin-bottom: 0;\\n}\\n.v-skeleton-loader__table-tfoot .v-skeleton-loader__text:nth-child(1) {\\n max-width: 128px;\\n}\\n.v-skeleton-loader__table-tfoot .v-skeleton-loader__text:nth-child(2) {\\n max-width: 64px;\\n}\\n.v-skeleton-loader__table-row {\\n display: flex;\\n justify-content: space-between;\\n}\\n.v-skeleton-loader__table-cell {\\n align-items: center;\\n display: flex;\\n height: 48px;\\n width: 88px;\\n}\\n.v-skeleton-loader__table-cell .v-skeleton-loader__text {\\n margin-bottom: 0;\\n}\\n.v-skeleton-loader__text {\\n border-radius: 6px;\\n flex: 1 0 auto;\\n height: 12px;\\n margin-bottom: 6px;\\n}\\n.v-skeleton-loader--boilerplate .v-skeleton-loader__bone:after {\\n display: none;\\n}\\n.v-skeleton-loader--is-loading {\\n overflow: hidden;\\n}\\n.v-skeleton-loader--tile {\\n border-radius: 0;\\n}\\n.v-skeleton-loader--tile .v-skeleton-loader__bone {\\n border-radius: 0;\\n}\\n\\n@keyframes loading {\\n 100% {\\n transform: translateX(100%);\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSkeletonLoader/VSkeletonLoader.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSlideGroup/VSlideGroup.sass": /*!**************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSlideGroup/VSlideGroup.sass ***! \**************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-slide-group {\\n display: flex;\\n}\\n.v-slide-group:not(.v-slide-group--has-affixes) > .v-slide-group__prev,\\n.v-slide-group:not(.v-slide-group--has-affixes) > .v-slide-group__next {\\n display: none;\\n}\\n.v-slide-group.v-item-group > .v-slide-group__next,\\n.v-slide-group.v-item-group > .v-slide-group__prev {\\n cursor: pointer;\\n}\\n\\n.v-slide-item {\\n display: inline-flex;\\n flex: 0 1 auto;\\n}\\n\\n.v-slide-group__next,\\n.v-slide-group__prev {\\n align-items: center;\\n display: flex;\\n flex: 0 1 52px;\\n justify-content: center;\\n min-width: 52px;\\n}\\n\\n.v-slide-group__content {\\n display: flex;\\n flex: 1 0 auto;\\n position: relative;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n white-space: nowrap;\\n}\\n\\n.v-slide-group__wrapper {\\n contain: content;\\n display: flex;\\n flex: 1 1 auto;\\n overflow: hidden;\\n}\\n\\n.v-slide-group__next--disabled,\\n.v-slide-group__prev--disabled {\\n pointer-events: none;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSlideGroup/VSlideGroup.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSlider/VSlider.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSlider/VSlider.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-slider .v-slider__track-background,\\n.theme--light.v-slider .v-slider__track-fill,\\n.theme--light.v-slider .v-slider__thumb {\\n background: rgba(0, 0, 0, 0.26);\\n}\\n\\n.theme--dark.v-slider .v-slider__track-background,\\n.theme--dark.v-slider .v-slider__track-fill,\\n.theme--dark.v-slider .v-slider__thumb {\\n background: rgba(255, 255, 255, 0.2);\\n}\\n\\n.v-slider {\\n cursor: default;\\n display: flex;\\n align-items: center;\\n position: relative;\\n flex: 1;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-slider input {\\n cursor: default;\\n padding: 0;\\n width: 100%;\\n display: none;\\n}\\n\\n.v-slider__track-container {\\n position: absolute;\\n border-radius: 0;\\n}\\n\\n.v-slider__track-background, .v-slider__track-fill {\\n position: absolute;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n\\n.v-slider__thumb-container {\\n outline: none;\\n position: absolute;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n top: 50%;\\n}\\n.v-slider__thumb-container:hover .v-slider__thumb:before {\\n transform: scale(1);\\n}\\n\\n.v-slider__thumb {\\n position: absolute;\\n width: 12px;\\n height: 12px;\\n left: -6px;\\n top: 50%;\\n border-radius: 50%;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n transform: translateY(-50%);\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-slider__thumb:before {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n content: \\\"\\\";\\n color: inherit;\\n width: 36px;\\n height: 36px;\\n border-radius: 50%;\\n background: currentColor;\\n opacity: 0.3;\\n position: absolute;\\n left: -12px;\\n top: -12px;\\n transform: scale(0.1);\\n pointer-events: none;\\n}\\n.v-slider__thumb::after {\\n content: \\\"\\\";\\n width: 42px;\\n height: 42px;\\n position: absolute;\\n top: 50%;\\n left: 50%;\\n transform: translate(-50%, -50%);\\n}\\n\\n.v-slider__ticks-container {\\n position: absolute;\\n}\\n\\n.v-slider__tick {\\n position: absolute;\\n opacity: 0;\\n background-color: rgba(0, 0, 0, 0.5);\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n border-radius: 0;\\n}\\n.v-slider__tick--filled {\\n background-color: rgba(255, 255, 255, 0.5);\\n}\\n.v-application--is-ltr .v-slider__tick:first-child .v-slider__tick-label {\\n transform: none;\\n}\\n.v-application--is-rtl .v-slider__tick:first-child .v-slider__tick-label {\\n transform: translateX(100%);\\n}\\n.v-application--is-ltr .v-slider__tick:last-child .v-slider__tick-label {\\n transform: translateX(-100%);\\n}\\n.v-application--is-rtl .v-slider__tick:last-child .v-slider__tick-label {\\n transform: none;\\n}\\n\\n.v-slider__tick-label {\\n position: absolute;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n white-space: nowrap;\\n}\\n\\n.v-slider__thumb-label-container {\\n position: absolute;\\n left: 0;\\n top: 0;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\\n}\\n\\n.v-slider__thumb-label {\\n display: flex;\\n align-items: center;\\n justify-content: center;\\n font-size: 0.75rem;\\n color: #fff;\\n width: 32px;\\n height: 32px;\\n border-radius: 50% 50% 0;\\n position: absolute;\\n left: 0;\\n bottom: 100%;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\\n}\\n\\n.v-slider--horizontal {\\n min-height: 32px;\\n margin-left: 8px;\\n margin-right: 8px;\\n}\\n.v-slider--horizontal .v-slider__track-container {\\n width: 100%;\\n height: 2px;\\n left: 0;\\n top: 50%;\\n transform: translateY(-50%);\\n}\\n.v-slider--horizontal .v-slider__track-background, .v-slider--horizontal .v-slider__track-fill {\\n height: 100%;\\n}\\n.v-slider--horizontal .v-slider__ticks-container {\\n left: 0;\\n height: 2px;\\n width: 100%;\\n}\\n.v-application--is-ltr .v-slider--horizontal .v-slider__tick:first-child .v-slider__tick-label {\\n transform: translateX(0%);\\n}\\n.v-application--is-rtl .v-slider--horizontal .v-slider__tick:first-child .v-slider__tick-label {\\n transform: translateX(0%);\\n}\\n.v-application--is-ltr .v-slider--horizontal .v-slider__tick:last-child .v-slider__tick-label {\\n transform: translateX(-100%);\\n}\\n.v-application--is-rtl .v-slider--horizontal .v-slider__tick:last-child .v-slider__tick-label {\\n transform: translateX(100%);\\n}\\n.v-slider--horizontal .v-slider__tick .v-slider__tick-label {\\n top: 8px;\\n}\\n.v-application--is-ltr .v-slider--horizontal .v-slider__tick .v-slider__tick-label {\\n transform: translateX(-50%);\\n}\\n.v-application--is-rtl .v-slider--horizontal .v-slider__tick .v-slider__tick-label {\\n transform: translateX(50%);\\n}\\n.v-slider--horizontal .v-slider__thumb-label {\\n transform: translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg);\\n}\\n.v-slider--horizontal .v-slider__thumb-label > * {\\n transform: rotate(-45deg);\\n}\\n\\n.v-slider--vertical {\\n min-height: 150px;\\n margin-top: 12px;\\n margin-bottom: 12px;\\n}\\n.v-slider--vertical .v-slider__track-container {\\n height: 100%;\\n width: 2px;\\n left: 50%;\\n top: 0;\\n transform: translateX(-50%);\\n}\\n.v-slider--vertical .v-slider__track-background, .v-slider--vertical .v-slider__track-fill {\\n width: 100%;\\n}\\n.v-slider--vertical .v-slider__thumb-container {\\n left: 50%;\\n}\\n.v-slider--vertical .v-slider__ticks-container {\\n top: 0;\\n width: 2px;\\n height: 100%;\\n left: 50%;\\n transform: translateX(-50%);\\n}\\n.v-application--is-ltr .v-slider--vertical .v-slider__tick .v-slider__tick-label, .v-application--is-ltr .v-slider--vertical .v-slider__tick:first-child .v-slider__tick-label, .v-application--is-ltr .v-slider--vertical .v-slider__tick:last-child .v-slider__tick-label {\\n transform: translateY(-50%);\\n left: 12px;\\n}\\n.v-application--is-rtl .v-slider--vertical .v-slider__tick .v-slider__tick-label, .v-application--is-rtl .v-slider--vertical .v-slider__tick:first-child .v-slider__tick-label, .v-application--is-rtl .v-slider--vertical .v-slider__tick:last-child .v-slider__tick-label {\\n transform: translateY(-50%);\\n right: 12px;\\n}\\n.v-slider--vertical .v-slider__thumb-label > * {\\n transform: rotate(-135deg);\\n}\\n\\n.v-slider__thumb-container--focused .v-slider__thumb:before {\\n transform: scale(1);\\n}\\n\\n.v-slider--active .v-slider__tick {\\n opacity: 1;\\n}\\n\\n.v-slider__thumb-container--active .v-slider__thumb:before {\\n transform: scale(1.5) !important;\\n}\\n\\n.v-slider--disabled {\\n pointer-events: none;\\n}\\n.v-slider--disabled .v-slider__thumb {\\n width: 8px;\\n height: 8px;\\n left: -4px;\\n}\\n.v-slider--disabled .v-slider__thumb:before {\\n display: none;\\n}\\n\\n.v-slider__ticks-container--always-show .v-slider__tick {\\n opacity: 1;\\n}\\n\\n.v-input__slider.v-input--is-readonly > .v-input__control {\\n pointer-events: none;\\n}\\n.v-application--is-ltr .v-input__slider .v-input__slot .v-label {\\n margin-left: 0;\\n margin-right: 12px;\\n}\\n.v-application--is-rtl .v-input__slider .v-input__slot .v-label {\\n margin-right: 0;\\n margin-left: 12px;\\n}\\n\\n.v-application--is-ltr .v-input__slider--inverse-label .v-input__slot .v-label {\\n margin-right: 0;\\n margin-left: 12px;\\n}\\n.v-application--is-rtl .v-input__slider--inverse-label .v-input__slot .v-label {\\n margin-left: 0;\\n margin-right: 12px;\\n}\\n\\n.v-input__slider--vertical {\\n align-items: center;\\n}\\n.v-application--is-ltr .v-input__slider--vertical {\\n flex-direction: column-reverse;\\n}\\n.v-application--is-rtl .v-input__slider--vertical {\\n flex-direction: column;\\n}\\n.v-input__slider--vertical .v-input__slot, .v-input__slider--vertical .v-input__prepend-outer, .v-input__slider--vertical .v-input__append-outer {\\n margin: 0;\\n}\\n.v-input__slider--vertical .v-messages {\\n display: none;\\n}\\n\\n.v-input--has-state .v-slider__track-background {\\n opacity: 0.4;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSlider/VSlider.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSnackbar/VSnackbar.sass": /*!**********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSnackbar/VSnackbar.sass ***! \**********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-snack__wrapper {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.theme--dark.v-snack__wrapper {\\n color: #FFFFFF;\\n}\\n\\n.v-sheet.v-snack__wrapper {\\n border-radius: 4px;\\n}\\n.v-sheet.v-snack__wrapper:not(.v-sheet--outlined) {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-snack__wrapper.v-sheet--shaped {\\n border-radius: 16px 4px;\\n}\\n\\n.v-snack {\\n bottom: 0;\\n display: flex;\\n font-size: 0.875rem;\\n justify-content: center;\\n left: 0;\\n pointer-events: none;\\n right: 0;\\n top: 0;\\n width: 100%;\\n}\\n.v-snack:not(.v-snack--absolute) {\\n height: 100vh;\\n position: fixed;\\n z-index: 1000;\\n}\\n.v-snack:not(.v-snack--centered):not(.v-snack--top) {\\n align-items: flex-end;\\n}\\n.v-snack__wrapper {\\n align-items: center;\\n border-color: currentColor !important;\\n display: flex;\\n margin: 8px;\\n max-width: 672px;\\n min-height: 48px;\\n min-width: 344px;\\n padding: 0;\\n pointer-events: auto;\\n position: relative;\\n transition-duration: 0.15s;\\n transition-property: opacity, transform;\\n transition-timing-function: cubic-bezier(0, 0, 0.2, 1);\\n z-index: 1;\\n}\\n.v-snack__wrapper.theme--dark {\\n background-color: #333333;\\n color: hsla(0, 0%, 100%, 0.87);\\n}\\n.v-snack__content {\\n flex-grow: 1;\\n font-size: 0.875rem;\\n font-weight: 400;\\n letter-spacing: 0.0178571429em;\\n line-height: 1.25rem;\\n margin-right: auto;\\n padding: 14px 16px;\\n text-align: initial;\\n}\\n.v-snack__action {\\n align-items: center;\\n align-self: center;\\n display: flex;\\n}\\n.v-snack__action .v-ripple__container {\\n display: none;\\n}\\n.v-application--is-ltr .v-snack__action {\\n margin-right: 8px;\\n}\\n.v-application--is-rtl .v-snack__action {\\n margin-left: 8px;\\n}\\n.v-snack__action > .v-snack__btn.v-btn {\\n padding: 0 8px;\\n}\\n.v-snack__btn {\\n margin-left: 0;\\n margin-right: 0;\\n margin: 0;\\n min-width: auto;\\n}\\n.v-snack--absolute {\\n height: 100%;\\n position: absolute;\\n z-index: 1;\\n}\\n.v-snack--centered {\\n align-items: center;\\n}\\n.v-snack--left {\\n justify-content: flex-start;\\n right: auto;\\n}\\n.v-snack--multi-line .v-snack__wrapper {\\n min-height: 68px;\\n}\\n.v-snack--right {\\n justify-content: flex-end;\\n left: auto;\\n}\\n.v-snack:not(.v-snack--has-background) .v-snack__wrapper {\\n box-shadow: none;\\n}\\n.v-snack--bottom {\\n top: auto;\\n}\\n.v-snack--text .v-snack__wrapper:before {\\n background-color: currentColor;\\n border-radius: inherit;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0.12;\\n pointer-events: none;\\n position: absolute;\\n right: 0;\\n top: 0;\\n z-index: -1;\\n}\\n.v-snack--top {\\n align-items: flex-start;\\n bottom: auto;\\n}\\n.v-snack--vertical .v-snack__wrapper {\\n flex-direction: column;\\n}\\n.v-snack--vertical .v-snack__wrapper .v-snack__action {\\n align-self: flex-end;\\n margin-bottom: 8px;\\n}\\n\\n.v-snack-transition-enter.v-snack__wrapper {\\n transform: scale(0.8);\\n}\\n.v-snack-transition-enter.v-snack__wrapper, .v-snack-transition-leave-to.v-snack__wrapper {\\n opacity: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSnackbar/VSnackbar.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSpeedDial/VSpeedDial.sass": /*!************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSpeedDial/VSpeedDial.sass ***! \************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-speed-dial {\\n position: relative;\\n z-index: 1;\\n}\\n.v-speed-dial--absolute {\\n position: absolute;\\n}\\n.v-speed-dial--fixed {\\n position: fixed;\\n}\\n.v-speed-dial--fixed, .v-speed-dial--absolute {\\n z-index: 4;\\n}\\n.v-speed-dial--fixed > .v-btn--floating, .v-speed-dial--absolute > .v-btn--floating {\\n margin: 0;\\n}\\n.v-speed-dial--top {\\n top: 16px;\\n}\\n.v-speed-dial--bottom {\\n bottom: 16px;\\n}\\n.v-speed-dial--left {\\n left: 16px;\\n}\\n.v-speed-dial--right {\\n right: 16px;\\n}\\n.v-speed-dial--direction-left .v-speed-dial__list, .v-speed-dial--direction-right .v-speed-dial__list {\\n height: 100%;\\n top: 0;\\n padding: 0 16px;\\n}\\n.v-speed-dial--direction-top .v-speed-dial__list, .v-speed-dial--direction-bottom .v-speed-dial__list {\\n left: 0;\\n width: 100%;\\n}\\n.v-speed-dial--direction-top .v-speed-dial__list {\\n flex-direction: column-reverse;\\n bottom: 100%;\\n}\\n.v-speed-dial--direction-right .v-speed-dial__list {\\n flex-direction: row;\\n left: 100%;\\n}\\n.v-speed-dial--direction-bottom .v-speed-dial__list {\\n flex-direction: column;\\n top: 100%;\\n}\\n.v-speed-dial--direction-left .v-speed-dial__list {\\n flex-direction: row-reverse;\\n right: 100%;\\n}\\n\\n/** Elements */\\n.v-speed-dial__list {\\n align-items: center;\\n display: flex;\\n justify-content: center;\\n padding: 16px 0;\\n position: absolute;\\n}\\n.v-speed-dial__list .v-btn {\\n margin: 6px;\\n}\\n\\n/** Modifiers */\\n.v-speed-dial:not(.v-speed-dial--is-active) .v-speed-dial__list {\\n pointer-events: none;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSpeedDial/VSpeedDial.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VStepper/VStepper.sass": /*!********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VStepper/VStepper.sass ***! \********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-stepper {\\n background: #FFFFFF;\\n}\\n.theme--light.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step {\\n background: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-stepper .v-stepper__step__step {\\n color: white;\\n}\\n.theme--light.v-stepper .v-stepper__step__step .v-icon {\\n color: white;\\n}\\n.theme--light.v-stepper .v-stepper__header .v-divider {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-stepper .v-stepper__step--active .v-stepper__label {\\n text-shadow: 0px 0px 0px black;\\n}\\n.theme--light.v-stepper .v-stepper__step--editable:hover {\\n background: rgba(0, 0, 0, 0.06);\\n}\\n.theme--light.v-stepper .v-stepper__step--editable:hover .v-stepper__label {\\n text-shadow: 0px 0px 0px black;\\n}\\n.theme--light.v-stepper .v-stepper__step--complete .v-stepper__label {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step {\\n background: rgba(0, 0, 0, 0.54);\\n}\\n.theme--light.v-stepper .v-stepper__label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-stepper .v-stepper__label small {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.theme--light.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.v-application--is-ltr .theme--light.v-stepper--vertical .v-stepper__content:not(:last-child) {\\n border-left: 1px solid rgba(0, 0, 0, 0.12);\\n}\\n.v-application--is-rtl .theme--light.v-stepper--vertical .v-stepper__content:not(:last-child) {\\n border-right: 1px solid rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-stepper {\\n background: #303030;\\n}\\n.theme--dark.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step {\\n background: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-stepper .v-stepper__step__step {\\n color: white;\\n}\\n.theme--dark.v-stepper .v-stepper__step__step .v-icon {\\n color: white;\\n}\\n.theme--dark.v-stepper .v-stepper__header .v-divider {\\n border-color: rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-stepper .v-stepper__step--active .v-stepper__label {\\n text-shadow: 0px 0px 0px white;\\n}\\n.theme--dark.v-stepper .v-stepper__step--editable:hover {\\n background: rgba(255, 255, 255, 0.06);\\n}\\n.theme--dark.v-stepper .v-stepper__step--editable:hover .v-stepper__label {\\n text-shadow: 0px 0px 0px white;\\n}\\n.theme--dark.v-stepper .v-stepper__step--complete .v-stepper__label {\\n color: rgba(255, 255, 255, 0.87);\\n}\\n.theme--dark.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step {\\n background: rgba(255, 255, 255, 0.75);\\n}\\n.theme--dark.v-stepper .v-stepper__label {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--dark.v-stepper .v-stepper__label small {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--dark.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.v-application--is-ltr .theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child) {\\n border-left: 1px solid rgba(255, 255, 255, 0.12);\\n}\\n.v-application--is-rtl .theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child) {\\n border-right: 1px solid rgba(255, 255, 255, 0.12);\\n}\\n\\n.v-sheet.v-stepper {\\n border-radius: 4px;\\n}\\n.v-sheet.v-stepper:not(.v-sheet--outlined) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-stepper.v-sheet--shaped {\\n border-radius: 16px 4px;\\n}\\n\\n.v-stepper {\\n border-radius: 4px;\\n overflow: hidden;\\n position: relative;\\n}\\n.v-stepper__header {\\n height: 72px;\\n align-items: stretch;\\n display: flex;\\n flex-wrap: wrap;\\n justify-content: space-between;\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-stepper__header .v-divider {\\n align-self: center;\\n margin: 0 -16px;\\n}\\n.v-stepper__items {\\n position: relative;\\n overflow: hidden;\\n}\\n.v-stepper__step__step {\\n align-items: center;\\n border-radius: 50%;\\n display: inline-flex;\\n font-size: 0.75rem;\\n justify-content: center;\\n height: 24px;\\n min-width: 24px;\\n width: 24px;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\\n}\\n.v-application--is-ltr .v-stepper__step__step {\\n margin-right: 8px;\\n}\\n.v-application--is-rtl .v-stepper__step__step {\\n margin-left: 8px;\\n}\\n.v-stepper__step__step .v-icon.v-icon {\\n font-size: 1.25rem;\\n}\\n.v-stepper__step__step .v-icon.v-icon.v-icon--svg {\\n height: 1.25rem;\\n width: 1.25rem;\\n}\\n.v-stepper__step {\\n align-items: center;\\n display: flex;\\n flex-direction: row;\\n padding: 24px;\\n position: relative;\\n}\\n.v-stepper__step--active .v-stepper__label {\\n transition: 0.3s cubic-bezier(0.4, 0, 0.6, 1);\\n}\\n.v-stepper__step--editable {\\n cursor: pointer;\\n}\\n.v-stepper__step.v-stepper__step--error .v-stepper__step__step {\\n background: transparent;\\n color: inherit;\\n}\\n.v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon {\\n font-size: 1.5rem;\\n color: inherit;\\n}\\n.v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label {\\n color: inherit;\\n text-shadow: none;\\n font-weight: 500;\\n}\\n.v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label small {\\n color: inherit;\\n}\\n.v-stepper__label {\\n display: block;\\n flex-grow: 1;\\n line-height: 1;\\n}\\n.v-application--is-ltr .v-stepper__label {\\n text-align: left;\\n}\\n.v-application--is-rtl .v-stepper__label {\\n text-align: right;\\n}\\n.v-stepper__label small {\\n display: block;\\n font-size: 0.75rem;\\n font-weight: 300;\\n text-shadow: none;\\n}\\n.v-stepper__wrapper {\\n overflow: hidden;\\n transition: none;\\n}\\n.v-stepper__content {\\n top: 0;\\n padding: 24px 24px 16px 24px;\\n flex: 1 0 auto;\\n width: 100%;\\n}\\n.v-stepper__content > .v-btn {\\n margin: 24px 8px 8px 0;\\n}\\n.v-stepper--flat {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n.v-stepper--is-booted .v-stepper__content, .v-stepper--is-booted .v-stepper__wrapper {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-stepper--vertical {\\n padding-bottom: 36px;\\n}\\n.v-stepper--vertical .v-stepper__content {\\n width: auto;\\n}\\n.v-application--is-ltr .v-stepper--vertical .v-stepper__content {\\n padding: 16px 60px 16px 23px;\\n}\\n.v-application--is-rtl .v-stepper--vertical .v-stepper__content {\\n padding: 16px 23px 16px 60px;\\n}\\n.v-application--is-ltr .v-stepper--vertical .v-stepper__content {\\n margin: -8px -36px -16px 36px;\\n}\\n.v-application--is-rtl .v-stepper--vertical .v-stepper__content {\\n margin: -8px 36px -16px -36px;\\n}\\n.v-stepper--vertical .v-stepper__step {\\n padding: 24px 24px 16px;\\n}\\n.v-application--is-ltr .v-stepper--vertical .v-stepper__step__step {\\n margin-right: 12px;\\n}\\n.v-application--is-rtl .v-stepper--vertical .v-stepper__step__step {\\n margin-left: 12px;\\n}\\n.v-stepper--alt-labels .v-stepper__header {\\n height: auto;\\n}\\n.v-stepper--alt-labels .v-stepper__header .v-divider {\\n margin: 35px -67px 0;\\n align-self: flex-start;\\n}\\n.v-stepper--alt-labels .v-stepper__step {\\n flex-direction: column;\\n justify-content: flex-start;\\n align-items: center;\\n flex-basis: 175px;\\n}\\n.v-stepper--alt-labels .v-stepper__step small {\\n text-align: center;\\n}\\n.v-stepper--alt-labels .v-stepper__step__step {\\n margin-bottom: 11px;\\n margin-left: 0;\\n margin-right: 0;\\n}\\n\\n@media only screen and (max-width: 959.98px) {\\n .v-stepper:not(.v-stepper--vertical) .v-stepper__label {\\n display: none;\\n }\\n .v-stepper:not(.v-stepper--vertical) .v-stepper__step__step {\\n margin-left: 0;\\n margin-right: 0;\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VStepper/VStepper.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSubheader/VSubheader.sass": /*!************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSubheader/VSubheader.sass ***! \************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-subheader {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.theme--dark.v-subheader {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n\\n.v-subheader {\\n align-items: center;\\n display: flex;\\n height: 48px;\\n font-size: 0.875rem;\\n font-weight: 400;\\n padding: 0 16px 0 16px;\\n}\\n.v-subheader--inset {\\n margin-left: 56px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSubheader/VSubheader.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSwitch/VSwitch.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSwitch/VSwitch.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-input--switch .v-input--switch__thumb {\\n color: #FFFFFF;\\n}\\n.theme--light.v-input--switch .v-input--switch__track {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-input--switch.v-input--is-disabled:not(.v-input--is-dirty) .v-input--switch__thumb {\\n color: #fafafa !important;\\n}\\n.theme--light.v-input--switch.v-input--is-disabled:not(.v-input--is-dirty) .v-input--switch__track {\\n color: rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.theme--dark.v-input--switch .v-input--switch__thumb {\\n color: #bdbdbd;\\n}\\n.theme--dark.v-input--switch .v-input--switch__track {\\n color: rgba(255, 255, 255, 0.3);\\n}\\n.theme--dark.v-input--switch.v-input--is-disabled:not(.v-input--is-dirty) .v-input--switch__thumb {\\n color: #424242 !important;\\n}\\n.theme--dark.v-input--switch.v-input--is-disabled:not(.v-input--is-dirty) .v-input--switch__track {\\n color: rgba(255, 255, 255, 0.1) !important;\\n}\\n\\n.v-input--switch__track, .v-input--switch__thumb {\\n background-color: currentColor;\\n pointer-events: none;\\n transition: inherit;\\n}\\n.v-input--switch__track {\\n border-radius: 8px;\\n width: 36px;\\n height: 14px;\\n left: 2px;\\n position: absolute;\\n opacity: 0.6;\\n right: 2px;\\n top: calc(50% - 7px);\\n}\\n.v-input--switch__thumb {\\n border-radius: 50%;\\n top: calc(50% - 10px);\\n height: 20px;\\n position: relative;\\n width: 20px;\\n display: flex;\\n justify-content: center;\\n align-items: center;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-input--switch .v-input--selection-controls__input {\\n width: 38px;\\n transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-input--switch .v-input--selection-controls__ripple {\\n top: calc(50% - 24px);\\n}\\n.v-input--switch.v-input--dense .v-input--switch__thumb {\\n width: 18px;\\n height: 18px;\\n}\\n.v-input--switch.v-input--dense .v-input--switch__track {\\n height: 12px;\\n width: 32px;\\n}\\n.v-input--switch.v-input--dense.v-input--switch--inset .v-input--switch__track {\\n height: 22px;\\n width: 44px;\\n top: calc(50% - 12px);\\n left: -3px;\\n}\\n.v-input--switch.v-input--dense .v-input--selection-controls__ripple {\\n top: calc(50% - 22px);\\n}\\n.v-input--switch.v-input--is-dirty.v-input--is-disabled .v-input--selection-controls__input {\\n opacity: 0.6;\\n}\\n.v-application--is-ltr .v-input--switch .v-input--selection-controls__ripple {\\n left: -14px;\\n}\\n.v-application--is-ltr .v-input--switch.v-input--dense .v-input--selection-controls__ripple {\\n left: -12px;\\n}\\n.v-application--is-ltr .v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,\\n.v-application--is-ltr .v-input--switch.v-input--is-dirty .v-input--switch__thumb {\\n transform: translate(20px, 0);\\n}\\n.v-application--is-rtl .v-input--switch .v-input--selection-controls__ripple {\\n right: -14px;\\n}\\n.v-application--is-rtl .v-input--switch.v-input--dense .v-input--selection-controls__ripple {\\n right: -12px;\\n}\\n.v-application--is-rtl .v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,\\n.v-application--is-rtl .v-input--switch.v-input--is-dirty .v-input--switch__thumb {\\n transform: translate(-20px, 0);\\n}\\n.v-input--switch:not(.v-input--switch--flat):not(.v-input--switch--inset) .v-input--switch__thumb {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-input--switch--inset .v-input--switch__track,\\n.v-input--switch--inset .v-input--selection-controls__input {\\n width: 48px;\\n}\\n.v-input--switch--inset .v-input--switch__track {\\n border-radius: 14px;\\n height: 28px;\\n left: -4px;\\n opacity: 0.32;\\n top: calc(50% - 14px);\\n}\\n.v-application--is-ltr .v-input--switch--inset .v-input--selection-controls__ripple,\\n.v-application--is-ltr .v-input--switch--inset .v-input--switch__thumb {\\n transform: translate(0, 0) !important;\\n}\\n.v-application--is-rtl .v-input--switch--inset .v-input--selection-controls__ripple,\\n.v-application--is-rtl .v-input--switch--inset .v-input--switch__thumb {\\n transform: translate(-6px, 0) !important;\\n}\\n.v-application--is-ltr .v-input--switch--inset.v-input--is-dirty .v-input--selection-controls__ripple,\\n.v-application--is-ltr .v-input--switch--inset.v-input--is-dirty .v-input--switch__thumb {\\n transform: translate(20px, 0) !important;\\n}\\n.v-application--is-rtl .v-input--switch--inset.v-input--is-dirty .v-input--selection-controls__ripple,\\n.v-application--is-rtl .v-input--switch--inset.v-input--is-dirty .v-input--switch__thumb {\\n transform: translate(-26px, 0) !important;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSwitch/VSwitch.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VSystemBar/VSystemBar.sass": /*!************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VSystemBar/VSystemBar.sass ***! \************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \"/* Theme */\\n.theme--light.v-system-bar {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.theme--light.v-system-bar .v-icon {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.theme--light.v-system-bar--lights-out {\\n background-color: rgba(255, 255, 255, 0.7) !important;\\n}\\n\\n.theme--dark.v-system-bar {\\n background-color: #000000;\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--dark.v-system-bar .v-icon {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--dark.v-system-bar--lights-out {\\n background-color: rgba(0, 0, 0, 0.2) !important;\\n}\\n\\n.v-system-bar {\\n align-items: center;\\n display: flex;\\n font-size: 0.875rem;\\n font-weight: 400;\\n padding: 0 8px;\\n}\\n.v-system-bar .v-icon {\\n font-size: 1rem;\\n margin-right: 4px;\\n}\\n.v-system-bar .v-btn .v-icon {\\n margin-right: 0;\\n}\\n.v-system-bar--fixed, .v-system-bar--absolute {\\n left: 0;\\n top: 0;\\n width: 100%;\\n z-index: 3;\\n}\\n.v-system-bar--fixed {\\n position: fixed;\\n}\\n.v-system-bar--absolute {\\n position: absolute;\\n}\\n.v-system-bar--window .v-icon {\\n font-size: 1.25rem;\\n margin-right: 8px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VSystemBar/VSystemBar.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VTabs/VTabs.sass": /*!**************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VTabs/VTabs.sass ***! \**************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-tabs > .v-tabs-bar {\\n background-color: #FFFFFF;\\n}\\n.theme--light.v-tabs > .v-tabs-bar .v-tab:not(.v-tab--active),\\n.theme--light.v-tabs > .v-tabs-bar .v-tab:not(.v-tab--active) > .v-icon,\\n.theme--light.v-tabs > .v-tabs-bar .v-tab:not(.v-tab--active) > .v-btn,\\n.theme--light.v-tabs > .v-tabs-bar .v-tab--disabled {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.theme--light.v-tabs .v-tab:hover::before {\\n opacity: 0.04;\\n}\\n.theme--light.v-tabs .v-tab:focus::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-tabs .v-tab--active:hover::before, .theme--light.v-tabs .v-tab--active::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-tabs .v-tab--active:focus::before {\\n opacity: 0.16;\\n}\\n\\n.theme--dark.v-tabs > .v-tabs-bar {\\n background-color: #1E1E1E;\\n}\\n.theme--dark.v-tabs > .v-tabs-bar .v-tab:not(.v-tab--active),\\n.theme--dark.v-tabs > .v-tabs-bar .v-tab:not(.v-tab--active) > .v-icon,\\n.theme--dark.v-tabs > .v-tabs-bar .v-tab:not(.v-tab--active) > .v-btn,\\n.theme--dark.v-tabs > .v-tabs-bar .v-tab--disabled {\\n color: rgba(255, 255, 255, 0.6);\\n}\\n.theme--dark.v-tabs .v-tab:hover::before {\\n opacity: 0.08;\\n}\\n.theme--dark.v-tabs .v-tab:focus::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-tabs .v-tab--active:hover::before, .theme--dark.v-tabs .v-tab--active::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-tabs .v-tab--active:focus::before {\\n opacity: 0.32;\\n}\\n\\n.theme--light.v-tabs-items {\\n background-color: #FFFFFF;\\n}\\n\\n.theme--dark.v-tabs-items {\\n background-color: #1E1E1E;\\n}\\n\\n.v-tabs-bar.primary .v-tab,\\n.v-tabs-bar.primary .v-tabs-slider, .v-tabs-bar.secondary .v-tab,\\n.v-tabs-bar.secondary .v-tabs-slider, .v-tabs-bar.accent .v-tab,\\n.v-tabs-bar.accent .v-tabs-slider, .v-tabs-bar.success .v-tab,\\n.v-tabs-bar.success .v-tabs-slider, .v-tabs-bar.error .v-tab,\\n.v-tabs-bar.error .v-tabs-slider, .v-tabs-bar.warning .v-tab,\\n.v-tabs-bar.warning .v-tabs-slider, .v-tabs-bar.info .v-tab,\\n.v-tabs-bar.info .v-tabs-slider {\\n color: #FFFFFF;\\n}\\n\\n.v-tabs {\\n flex: 1 1 auto;\\n width: 100%;\\n}\\n.v-tabs .v-menu__activator {\\n height: 100%;\\n}\\n.v-tabs.v.tabs--vertical.v-tabs--right {\\n flex-direction: row-reverse;\\n}\\n.v-tabs:not(.v-tabs--vertical) .v-tab {\\n white-space: normal;\\n}\\n.v-tabs:not(.v-tabs--vertical).v-tabs--right > .v-slide-group--is-overflowing.v-tabs-bar--is-mobile:not(.v-slide-group--has-affixes) .v-slide-group__next {\\n display: initial;\\n visibility: hidden;\\n}\\n.v-tabs:not(.v-tabs--vertical):not(.v-tabs--right) > .v-slide-group--is-overflowing.v-tabs-bar--is-mobile:not(.v-slide-group--has-affixes) .v-slide-group__prev {\\n display: initial;\\n visibility: hidden;\\n}\\n\\n.v-tabs-bar {\\n border-radius: inherit;\\n height: 48px;\\n}\\n.v-tabs-bar.v-item-group > * {\\n cursor: initial;\\n}\\n\\n.v-tab {\\n align-items: center;\\n cursor: pointer;\\n display: flex;\\n flex: 0 1 auto;\\n font-size: 0.875rem;\\n font-weight: 500;\\n justify-content: center;\\n letter-spacing: 0.0892857143em;\\n line-height: normal;\\n min-width: 90px;\\n max-width: 360px;\\n outline: none;\\n padding: 0 16px;\\n position: relative;\\n text-align: center;\\n text-decoration: none;\\n text-transform: uppercase;\\n transition: none;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-tab.v-tab {\\n color: inherit;\\n}\\n.v-tab:before {\\n background-color: currentColor;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0;\\n pointer-events: none;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n\\n.v-tabs-slider {\\n background-color: currentColor;\\n height: 100%;\\n width: 100%;\\n}\\n.v-tabs-slider-wrapper {\\n bottom: 0;\\n margin: 0 !important;\\n position: absolute;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n z-index: 1;\\n}\\n\\n.v-application--is-ltr .v-tabs--align-with-title > .v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing) > .v-slide-group__wrapper > .v-tabs-bar__content > .v-tab:first-child, .v-application--is-ltr .v-tabs--align-with-title > .v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing) > .v-slide-group__wrapper > .v-tabs-bar__content > .v-tabs-slider-wrapper + .v-tab {\\n margin-left: 42px;\\n}\\n.v-application--is-rtl .v-tabs--align-with-title > .v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing) > .v-slide-group__wrapper > .v-tabs-bar__content > .v-tab:first-child, .v-application--is-rtl .v-tabs--align-with-title > .v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing) > .v-slide-group__wrapper > .v-tabs-bar__content > .v-tabs-slider-wrapper + .v-tab {\\n margin-right: 42px;\\n}\\n\\n.v-application--is-ltr .v-tabs--fixed-tabs > .v-tabs-bar .v-tabs-bar__content > *:last-child,\\n.v-application--is-ltr .v-tabs--centered > .v-tabs-bar .v-tabs-bar__content > *:last-child {\\n margin-right: auto;\\n}\\n.v-application--is-rtl .v-tabs--fixed-tabs > .v-tabs-bar .v-tabs-bar__content > *:last-child,\\n.v-application--is-rtl .v-tabs--centered > .v-tabs-bar .v-tabs-bar__content > *:last-child {\\n margin-left: auto;\\n}\\n.v-application--is-ltr .v-tabs--fixed-tabs > .v-tabs-bar .v-tabs-bar__content > *:first-child:not(.v-tabs-slider-wrapper),\\n.v-application--is-ltr .v-tabs--fixed-tabs > .v-tabs-bar .v-tabs-slider-wrapper + *,\\n.v-application--is-ltr .v-tabs--centered > .v-tabs-bar .v-tabs-bar__content > *:first-child:not(.v-tabs-slider-wrapper),\\n.v-application--is-ltr .v-tabs--centered > .v-tabs-bar .v-tabs-slider-wrapper + * {\\n margin-left: auto;\\n}\\n.v-application--is-rtl .v-tabs--fixed-tabs > .v-tabs-bar .v-tabs-bar__content > *:first-child:not(.v-tabs-slider-wrapper),\\n.v-application--is-rtl .v-tabs--fixed-tabs > .v-tabs-bar .v-tabs-slider-wrapper + *,\\n.v-application--is-rtl .v-tabs--centered > .v-tabs-bar .v-tabs-bar__content > *:first-child:not(.v-tabs-slider-wrapper),\\n.v-application--is-rtl .v-tabs--centered > .v-tabs-bar .v-tabs-slider-wrapper + * {\\n margin-right: auto;\\n}\\n\\n.v-tabs--fixed-tabs > .v-tabs-bar .v-tab {\\n flex: 1 1 auto;\\n width: 100%;\\n}\\n\\n.v-tabs--grow > .v-tabs-bar .v-tab {\\n flex: 1 0 auto;\\n max-width: none;\\n}\\n\\n.v-tabs--icons-and-text > .v-tabs-bar {\\n height: 72px;\\n}\\n.v-tabs--icons-and-text > .v-tabs-bar .v-tab {\\n flex-direction: column-reverse;\\n}\\n.v-tabs--icons-and-text > .v-tabs-bar .v-tab > *:first-child {\\n margin-bottom: 6px;\\n}\\n\\n.v-tabs--overflow > .v-tabs-bar .v-tab {\\n flex: 1 0 auto;\\n}\\n\\n.v-application--is-ltr .v-tabs--right > .v-tabs-bar .v-tab:first-child,\\n.v-application--is-ltr .v-tabs--right > .v-tabs-bar .v-tabs-slider-wrapper + .v-tab {\\n margin-left: auto;\\n}\\n.v-application--is-rtl .v-tabs--right > .v-tabs-bar .v-tab:first-child,\\n.v-application--is-rtl .v-tabs--right > .v-tabs-bar .v-tabs-slider-wrapper + .v-tab {\\n margin-right: auto;\\n}\\n.v-application--is-ltr .v-tabs--right > .v-tabs-bar .v-tab:last-child {\\n margin-right: 0;\\n}\\n.v-application--is-rtl .v-tabs--right > .v-tabs-bar .v-tab:last-child {\\n margin-left: 0;\\n}\\n\\n.v-tabs--vertical {\\n display: flex;\\n}\\n.v-tabs--vertical > .v-tabs-bar {\\n flex: 1 0 auto;\\n height: auto;\\n}\\n.v-tabs--vertical > .v-tabs-bar .v-slide-group__next,\\n.v-tabs--vertical > .v-tabs-bar .v-slide-group__prev {\\n display: none;\\n}\\n.v-tabs--vertical > .v-tabs-bar .v-tabs-bar__content {\\n flex-direction: column;\\n}\\n.v-tabs--vertical > .v-tabs-bar .v-tab {\\n height: 48px;\\n}\\n.v-tabs--vertical > .v-tabs-bar .v-tabs-slider {\\n height: 100%;\\n}\\n.v-tabs--vertical > .v-window {\\n flex: 0 1 100%;\\n}\\n.v-tabs--vertical.v-tabs--icons-and-text > .v-tabs-bar .v-tab {\\n height: 72px;\\n}\\n\\n.v-tab--active {\\n color: inherit;\\n}\\n.v-tab--active.v-tab:not(:focus)::before {\\n opacity: 0;\\n}\\n.v-tab--active .v-icon,\\n.v-tab--active .v-btn.v-btn--flat {\\n color: inherit;\\n}\\n\\n.v-tab--disabled {\\n opacity: 0.5;\\n}\\n.v-tab--disabled, .v-tab--disabled * {\\n pointer-events: none;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VTabs/VTabs.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VTextField/VTextField.sass": /*!************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VTextField/VTextField.sass ***! \************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-text-field > .v-input__control > .v-input__slot:before {\\n border-color: rgba(0, 0, 0, 0.42);\\n}\\n.theme--light.v-text-field:not(.v-input--has-state):hover > .v-input__control > .v-input__slot:before {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-text-field.v-input--is-disabled .v-input__slot::before {\\n -o-border-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.38) 0px, rgba(0, 0, 0, 0.38) 2px, transparent 2px, transparent 4px) 1 repeat;\\n border-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.38) 0px, rgba(0, 0, 0, 0.38) 2px, transparent 2px, transparent 4px) 1 repeat;\\n}\\n.theme--light.v-text-field--filled > .v-input__control > .v-input__slot {\\n background: rgba(0, 0, 0, 0.06);\\n}\\n.theme--light.v-text-field--filled:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot:hover {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-text-field--solo > .v-input__control > .v-input__slot {\\n background: #FFFFFF;\\n}\\n.theme--light.v-text-field--solo-inverted > .v-input__control > .v-input__slot {\\n background: rgba(0, 0, 0, 0.06);\\n}\\n.theme--light.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot {\\n background: #424242;\\n}\\n.theme--light.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot input {\\n color: #FFFFFF;\\n}\\n.theme--light.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot input::-moz-placeholder {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--light.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot input::placeholder {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--light.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot .v-label {\\n color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--light.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot fieldset {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--light.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state):not(.v-input--is-disabled) > .v-input__control > .v-input__slot:hover fieldset {\\n color: rgba(0, 0, 0, 0.86);\\n}\\n.theme--light.v-text-field--outlined:not(.v-input--is-focused).v-input--is-disabled > .v-input__control > .v-input__slot fieldset {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n\\n.theme--dark.v-text-field > .v-input__control > .v-input__slot:before {\\n border-color: rgba(255, 255, 255, 0.7);\\n}\\n.theme--dark.v-text-field:not(.v-input--has-state):hover > .v-input__control > .v-input__slot:before {\\n border-color: #FFFFFF;\\n}\\n.theme--dark.v-text-field.v-input--is-disabled .v-input__slot::before {\\n -o-border-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.5) 0px, rgba(255, 255, 255, 0.5) 2px, transparent 2px, transparent 4px) 1 repeat;\\n border-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.5) 0px, rgba(255, 255, 255, 0.5) 2px, transparent 2px, transparent 4px) 1 repeat;\\n}\\n.theme--dark.v-text-field--filled > .v-input__control > .v-input__slot {\\n background: rgba(255, 255, 255, 0.08);\\n}\\n.theme--dark.v-text-field--filled:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot:hover {\\n background: rgba(255, 255, 255, 0.16);\\n}\\n.theme--dark.v-text-field--solo > .v-input__control > .v-input__slot {\\n background: #1E1E1E;\\n}\\n.theme--dark.v-text-field--solo-inverted > .v-input__control > .v-input__slot {\\n background: rgba(255, 255, 255, 0.16);\\n}\\n.theme--dark.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot {\\n background: #FFFFFF;\\n}\\n.theme--dark.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot input {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--dark.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot input::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--dark.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot input::placeholder {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--dark.v-text-field--solo-inverted.v-input--is-focused > .v-input__control > .v-input__slot .v-label {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.theme--dark.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot fieldset {\\n color: rgba(255, 255, 255, 0.24);\\n}\\n.theme--dark.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state):not(.v-input--is-disabled) > .v-input__control > .v-input__slot:hover fieldset {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-text-field--outlined:not(.v-input--is-focused).v-input--is-disabled > .v-input__control > .v-input__slot fieldset {\\n color: rgba(255, 255, 255, 0.16);\\n}\\n\\n.v-text-field {\\n padding-top: 12px;\\n margin-top: 4px;\\n}\\n.v-text-field__prefix, .v-text-field__suffix {\\n line-height: 20px;\\n}\\n.v-text-field input {\\n flex: 1 1 auto;\\n line-height: 20px;\\n padding: 8px 0 8px;\\n max-width: 100%;\\n min-width: 0px;\\n width: 100%;\\n}\\n.v-text-field fieldset,\\n.v-text-field .v-input__control,\\n.v-text-field .v-input__slot {\\n border-radius: inherit;\\n}\\n.v-text-field fieldset,\\n.v-text-field .v-input__control {\\n color: currentColor;\\n}\\n.v-text-field.v-input--has-state .v-input__control > .v-text-field__details > .v-counter {\\n color: currentColor;\\n}\\n.v-text-field.v-input--is-disabled .v-input__control > .v-text-field__details > .v-counter,\\n.v-text-field.v-input--is-disabled .v-input__control > .v-text-field__details > .v-messages {\\n color: currentColor;\\n}\\n.v-text-field.v-input--dense {\\n padding-top: 0;\\n}\\n.v-text-field.v-input--dense .v-label {\\n top: 4px;\\n}\\n.v-text-field.v-input--dense:not(.v-text-field--outlined) .v-text-field__prefix,\\n.v-text-field.v-input--dense:not(.v-text-field--outlined) .v-text-field__suffix,\\n.v-text-field.v-input--dense:not(.v-text-field--outlined) input {\\n padding: 4px 0 2px;\\n}\\n.v-text-field.v-input--dense:not(.v-text-field--outlined) .v-text-field__prefix {\\n padding-right: 4px;\\n}\\n.v-text-field.v-input--dense:not(.v-text-field--outlined) .v-text-field__suffix {\\n padding-left: 4px;\\n}\\n.v-text-field.v-input--dense[type=text]::-ms-clear {\\n display: none;\\n}\\n.v-text-field.v-input--dense .v-input__prepend-inner,\\n.v-text-field.v-input--dense .v-input__append-inner {\\n margin-top: 0px;\\n}\\n.v-text-field .v-input__prepend-inner,\\n.v-text-field .v-input__append-inner {\\n align-self: flex-start;\\n display: inline-flex;\\n margin-top: 4px;\\n line-height: 1;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-application--is-ltr .v-text-field .v-input__prepend-inner {\\n margin-right: auto;\\n padding-right: 4px;\\n}\\n.v-application--is-rtl .v-text-field .v-input__prepend-inner {\\n margin-left: auto;\\n padding-left: 4px;\\n}\\n.v-application--is-ltr .v-text-field .v-input__append-inner {\\n margin-left: auto;\\n padding-left: 4px;\\n}\\n.v-application--is-rtl .v-text-field .v-input__append-inner {\\n margin-right: auto;\\n padding-right: 4px;\\n}\\n.v-text-field .v-counter {\\n white-space: nowrap;\\n}\\n.v-application--is-ltr .v-text-field .v-counter {\\n margin-left: 8px;\\n}\\n.v-application--is-rtl .v-text-field .v-counter {\\n margin-right: 8px;\\n}\\n.v-text-field .v-label {\\n max-width: 90%;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n top: 6px;\\n white-space: nowrap;\\n pointer-events: none;\\n}\\n.v-application--is-ltr .v-text-field .v-label {\\n transform-origin: top left;\\n}\\n.v-application--is-rtl .v-text-field .v-label {\\n transform-origin: top right;\\n}\\n.v-text-field .v-label--active {\\n max-width: 133%;\\n transform: translateY(-18px) scale(0.75);\\n pointer-events: auto;\\n}\\n.v-text-field > .v-input__control > .v-input__slot {\\n cursor: text;\\n}\\n.v-text-field > .v-input__control > .v-input__slot:before, .v-text-field > .v-input__control > .v-input__slot:after {\\n bottom: -1px;\\n content: \\\"\\\";\\n left: 0;\\n position: absolute;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n width: 100%;\\n}\\n.v-text-field > .v-input__control > .v-input__slot:before {\\n border-color: inherit;\\n border-style: solid;\\n border-width: thin 0 0 0;\\n}\\n.v-text-field > .v-input__control > .v-input__slot:after {\\n background-color: currentColor;\\n border-color: currentColor;\\n border-style: solid;\\n border-width: thin 0 thin 0;\\n transform: scaleX(0);\\n}\\n.v-text-field__details {\\n display: flex;\\n flex: 1 0 auto;\\n max-width: 100%;\\n min-height: 14px;\\n overflow: hidden;\\n}\\n.v-text-field__prefix, .v-text-field__suffix {\\n align-self: center;\\n cursor: default;\\n transition: color 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n white-space: nowrap;\\n}\\n.v-application--is-ltr .v-text-field__prefix {\\n text-align: right;\\n padding-right: 4px;\\n}\\n.v-application--is-rtl .v-text-field__prefix {\\n text-align: left;\\n padding-left: 4px;\\n}\\n.v-text-field__suffix {\\n white-space: nowrap;\\n}\\n.v-application--is-ltr .v-text-field__suffix {\\n padding-left: 4px;\\n}\\n.v-application--is-rtl .v-text-field__suffix {\\n padding-right: 4px;\\n}\\n.v-application--is-ltr .v-text-field--reverse .v-text-field__prefix {\\n text-align: left;\\n padding-right: 0;\\n padding-left: 4px;\\n}\\n.v-application--is-rtl .v-text-field--reverse .v-text-field__prefix {\\n text-align: right;\\n padding-right: 4px;\\n padding-left: 0;\\n}\\n.v-application--is-ltr .v-text-field--reverse .v-text-field__suffix {\\n padding-left: 0;\\n padding-right: 4px;\\n}\\n.v-application--is-rtl .v-text-field--reverse .v-text-field__suffix {\\n padding-left: 4px;\\n padding-right: 0;\\n}\\n.v-text-field > .v-input__control > .v-input__slot > .v-text-field__slot {\\n display: flex;\\n flex: 1 1 auto;\\n position: relative;\\n}\\n.v-text-field:not(.v-text-field--is-booted) .v-label,\\n.v-text-field:not(.v-text-field--is-booted) legend {\\n transition: none;\\n}\\n.v-text-field--filled, .v-text-field--full-width, .v-text-field--outlined {\\n position: relative;\\n}\\n.v-text-field--filled > .v-input__control > .v-input__slot, .v-text-field--full-width > .v-input__control > .v-input__slot, .v-text-field--outlined > .v-input__control > .v-input__slot {\\n align-items: stretch;\\n min-height: 56px;\\n}\\n.v-text-field--filled.v-input--dense > .v-input__control > .v-input__slot, .v-text-field--full-width.v-input--dense > .v-input__control > .v-input__slot, .v-text-field--outlined.v-input--dense > .v-input__control > .v-input__slot {\\n min-height: 52px;\\n}\\n.v-text-field--filled.v-input--dense.v-text-field--single-line > .v-input__control > .v-input__slot, .v-text-field--filled.v-input--dense.v-text-field--outlined > .v-input__control > .v-input__slot, .v-text-field--filled.v-input--dense.v-text-field--outlined.v-text-field--filled > .v-input__control > .v-input__slot, .v-text-field--full-width.v-input--dense.v-text-field--single-line > .v-input__control > .v-input__slot, .v-text-field--full-width.v-input--dense.v-text-field--outlined > .v-input__control > .v-input__slot, .v-text-field--full-width.v-input--dense.v-text-field--outlined.v-text-field--filled > .v-input__control > .v-input__slot, .v-text-field--outlined.v-input--dense.v-text-field--single-line > .v-input__control > .v-input__slot, .v-text-field--outlined.v-input--dense.v-text-field--outlined > .v-input__control > .v-input__slot, .v-text-field--outlined.v-input--dense.v-text-field--outlined.v-text-field--filled > .v-input__control > .v-input__slot {\\n min-height: 40px;\\n}\\n.v-text-field--outlined {\\n border-radius: 4px;\\n}\\n.v-text-field--full-width .v-input__prepend-outer,\\n.v-text-field--full-width .v-input__prepend-inner,\\n.v-text-field--full-width .v-input__append-inner,\\n.v-text-field--full-width .v-input__append-outer, .v-text-field--enclosed .v-input__prepend-outer,\\n.v-text-field--enclosed .v-input__prepend-inner,\\n.v-text-field--enclosed .v-input__append-inner,\\n.v-text-field--enclosed .v-input__append-outer {\\n margin-top: 17px;\\n}\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) .v-input__prepend-outer,\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) .v-input__prepend-inner,\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) .v-input__append-inner,\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) .v-input__append-outer, .v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) .v-input__prepend-outer,\\n.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) .v-input__prepend-inner,\\n.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) .v-input__append-inner,\\n.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) .v-input__append-outer {\\n margin-top: 14px;\\n}\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__prepend-outer,\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__prepend-inner,\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__append-inner,\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__append-outer, .v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__prepend-outer,\\n.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__prepend-inner,\\n.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__append-inner,\\n.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__append-outer {\\n margin-top: 9px;\\n}\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__prepend-outer,\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__prepend-inner,\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__append-inner,\\n.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__append-outer, .v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__prepend-outer,\\n.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__prepend-inner,\\n.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__append-inner,\\n.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__append-outer {\\n margin-top: 8px;\\n}\\n.v-text-field--filled .v-label, .v-text-field--full-width .v-label {\\n top: 18px;\\n}\\n.v-text-field--filled .v-label--active, .v-text-field--full-width .v-label--active {\\n transform: translateY(-6px) scale(0.75);\\n}\\n.v-text-field--filled.v-input--dense .v-label, .v-text-field--full-width.v-input--dense .v-label {\\n top: 17px;\\n}\\n.v-text-field--filled.v-input--dense .v-label--active, .v-text-field--full-width.v-input--dense .v-label--active {\\n transform: translateY(-10px) scale(0.75);\\n}\\n.v-text-field--filled.v-input--dense.v-text-field--single-line .v-label, .v-text-field--full-width.v-input--dense.v-text-field--single-line .v-label {\\n top: 11px;\\n}\\n.v-text-field--filled {\\n border-radius: 4px 4px 0 0;\\n}\\n.v-text-field--filled:not(.v-text-field--single-line) input {\\n margin-top: 22px;\\n}\\n.v-text-field--filled.v-input--dense:not(.v-text-field--single-line).v-text-field--outlined input {\\n margin-top: 0;\\n}\\n.v-text-field--filled .v-text-field__prefix,\\n.v-text-field--filled .v-text-field__suffix {\\n max-height: 32px;\\n margin-top: 20px;\\n}\\n.v-text-field--full-width {\\n border-radius: 0;\\n}\\n.v-text-field--outlined .v-text-field__slot, .v-text-field--single-line .v-text-field__slot {\\n align-items: center;\\n}\\n.v-text-field.v-text-field--enclosed {\\n margin: 0;\\n padding: 0;\\n}\\n.v-text-field.v-text-field--enclosed.v-text-field--single-line .v-text-field__prefix,\\n.v-text-field.v-text-field--enclosed.v-text-field--single-line .v-text-field__suffix {\\n margin-top: 0;\\n}\\n.v-text-field.v-text-field--enclosed:not(.v-text-field--filled) .v-progress-linear__background {\\n display: none;\\n}\\n.v-text-field.v-text-field--enclosed:not(.v-text-field--rounded) > .v-input__control > .v-input__slot,\\n.v-text-field.v-text-field--enclosed .v-text-field__details {\\n padding: 0 12px;\\n}\\n.v-text-field.v-text-field--enclosed .v-text-field__details {\\n padding-top: 0px;\\n margin-bottom: 8px;\\n}\\n.v-application--is-ltr .v-text-field--reverse input, .v-application--is-ltr .v-text-field--reverse textarea {\\n text-align: right;\\n}\\n.v-application--is-rtl .v-text-field--reverse input, .v-application--is-rtl .v-text-field--reverse textarea {\\n text-align: left;\\n}\\n.v-application--is-ltr .v-text-field--reverse .v-label {\\n transform-origin: top right;\\n}\\n.v-application--is-rtl .v-text-field--reverse .v-label {\\n transform-origin: top left;\\n}\\n.v-text-field--reverse > .v-input__control > .v-input__slot,\\n.v-text-field--reverse .v-text-field__slot {\\n flex-direction: row-reverse;\\n}\\n.v-text-field--outlined > .v-input__control > .v-input__slot:before, .v-text-field--outlined > .v-input__control > .v-input__slot:after, .v-text-field--solo > .v-input__control > .v-input__slot:before, .v-text-field--solo > .v-input__control > .v-input__slot:after, .v-text-field--rounded > .v-input__control > .v-input__slot:before, .v-text-field--rounded > .v-input__control > .v-input__slot:after {\\n display: none;\\n}\\n.v-text-field--outlined, .v-text-field--solo {\\n border-radius: 4px;\\n}\\n.v-text-field--outlined {\\n margin-bottom: 16px;\\n transition: border 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-text-field--outlined .v-label {\\n top: 18px;\\n}\\n.v-text-field--outlined .v-label--active {\\n transform: translateY(-24px) scale(0.75);\\n}\\n.v-text-field--outlined.v-input--dense .v-label {\\n top: 10px;\\n}\\n.v-text-field--outlined.v-input--dense .v-label--active {\\n transform: translateY(-16px) scale(0.75);\\n}\\n.v-text-field--outlined fieldset {\\n border-collapse: collapse;\\n border-color: currentColor;\\n border-style: solid;\\n border-width: 1px;\\n bottom: 0;\\n left: 0;\\n pointer-events: none;\\n position: absolute;\\n right: 0;\\n top: -5px;\\n transition-duration: 0.15s;\\n transition-property: color;\\n transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);\\n}\\n.v-application--is-ltr .v-text-field--outlined fieldset {\\n padding-left: 8px;\\n}\\n.v-application--is-rtl .v-text-field--outlined fieldset {\\n padding-right: 8px;\\n}\\n.v-application--is-ltr .v-text-field--outlined.v-text-field--reverse fieldset {\\n padding-right: 8px;\\n}\\n.v-application--is-rtl .v-text-field--outlined.v-text-field--reverse fieldset {\\n padding-left: 8px;\\n}\\n.v-text-field--outlined legend {\\n line-height: 11px;\\n padding: 0;\\n transition: width 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-application--is-ltr .v-text-field--outlined legend {\\n text-align: left;\\n}\\n.v-application--is-rtl .v-text-field--outlined legend {\\n text-align: right;\\n}\\n.v-application--is-ltr .v-text-field--outlined.v-text-field--reverse legend {\\n margin-left: auto;\\n}\\n.v-application--is-rtl .v-text-field--outlined.v-text-field--reverse legend {\\n margin-right: auto;\\n}\\n.v-application--is-ltr .v-text-field--outlined.v-text-field--rounded legend {\\n margin-left: 12px;\\n}\\n.v-application--is-rtl .v-text-field--outlined.v-text-field--rounded legend {\\n margin-right: 12px;\\n}\\n.v-text-field--outlined > .v-input__control > .v-input__slot {\\n background: transparent;\\n}\\n.v-text-field--outlined .v-text-field__prefix {\\n max-height: 32px;\\n}\\n.v-text-field--outlined .v-input__prepend-outer,\\n.v-text-field--outlined .v-input__append-outer {\\n margin-top: 18px;\\n}\\n.v-text-field--outlined.v-input--is-focused fieldset, .v-text-field--outlined.v-input--has-state fieldset {\\n border: 2px solid currentColor;\\n}\\n.v-text-field--rounded {\\n border-radius: 28px;\\n}\\n.v-text-field--rounded > .v-input__control > .v-input__slot {\\n padding: 0 24px;\\n}\\n.v-text-field--shaped {\\n border-radius: 16px 16px 0 0;\\n}\\n.v-text-field.v-text-field--solo .v-label {\\n top: calc(50% - 9px);\\n}\\n.v-text-field.v-text-field--solo .v-input__control {\\n min-height: 48px;\\n padding: 0;\\n}\\n.v-text-field.v-text-field--solo .v-input__control input {\\n caret-color: auto;\\n}\\n.v-text-field.v-text-field--solo.v-input--dense > .v-input__control {\\n min-height: 38px;\\n}\\n.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat) > .v-input__control > .v-input__slot {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-text-field.v-text-field--solo .v-input__append-inner,\\n.v-text-field.v-text-field--solo .v-input__prepend-inner {\\n align-self: center;\\n margin-top: 0;\\n}\\n.v-text-field.v-text-field--solo .v-input__prepend-outer,\\n.v-text-field.v-text-field--solo .v-input__append-outer {\\n margin-top: 12px;\\n}\\n.v-text-field.v-text-field--solo.v-input--dense .v-input__prepend-outer,\\n.v-text-field.v-text-field--solo.v-input--dense .v-input__append-outer {\\n margin-top: 7px;\\n}\\n.v-text-field.v-input--is-focused > .v-input__control > .v-input__slot:after {\\n transform: scaleX(1);\\n}\\n.v-text-field.v-input--has-state > .v-input__control > .v-input__slot:before {\\n border-color: currentColor;\\n}\\n.v-text-field .v-input__icon--clear {\\n opacity: 0;\\n transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-text-field.v-input--is-focused .v-input__icon--clear, .v-text-field.v-input--is-dirty:hover .v-input__icon--clear {\\n opacity: 1;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VTextField/VTextField.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VTextarea/VTextarea.sass": /*!**********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VTextarea/VTextarea.sass ***! \**********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea {\\n color: #FFFFFF;\\n}\\n.theme--light.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea::-moz-placeholder {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n.theme--light.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea::placeholder {\\n color: rgba(255, 255, 255, 0.5);\\n}\\n\\n.theme--dark.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--dark.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.theme--dark.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea::placeholder {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.v-textarea textarea {\\n align-self: stretch;\\n flex: 1 1 auto;\\n line-height: 1.75rem;\\n max-width: 100%;\\n min-height: 32px;\\n outline: none;\\n padding: 0;\\n width: 100%;\\n}\\n.v-textarea .v-text-field__prefix,\\n.v-textarea .v-text-field__suffix {\\n padding-top: 2px;\\n align-self: start;\\n}\\n.v-textarea.v-text-field--box .v-text-field__prefix,\\n.v-textarea.v-text-field--box textarea, .v-textarea.v-text-field--enclosed .v-text-field__prefix,\\n.v-textarea.v-text-field--enclosed textarea {\\n margin-top: 24px;\\n}\\n.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) .v-text-field__prefix,\\n.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) .v-text-field__suffix,\\n.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) textarea, .v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) .v-text-field__prefix,\\n.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) .v-text-field__suffix,\\n.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) textarea, .v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) .v-text-field__prefix,\\n.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) .v-text-field__suffix,\\n.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) textarea, .v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) .v-text-field__prefix,\\n.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) .v-text-field__suffix,\\n.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) textarea {\\n margin-top: 10px;\\n}\\n.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) .v-label, .v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) .v-label, .v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) .v-label, .v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) .v-label {\\n top: 18px;\\n}\\n.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-text-field__prefix,\\n.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-text-field__suffix,\\n.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense textarea, .v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-text-field__prefix,\\n.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-text-field__suffix,\\n.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense textarea, .v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-text-field__prefix,\\n.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-text-field__suffix,\\n.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense textarea, .v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-text-field__prefix,\\n.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-text-field__suffix,\\n.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense textarea {\\n margin-top: 6px;\\n}\\n.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-input__prepend-inner,\\n.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-input__prepend-outer,\\n.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-input__append-inner,\\n.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-input__append-outer, .v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-input__prepend-inner,\\n.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-input__prepend-outer,\\n.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-input__append-inner,\\n.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-input__append-outer, .v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-input__prepend-inner,\\n.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-input__prepend-outer,\\n.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-input__append-inner,\\n.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-input__append-outer, .v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-input__prepend-inner,\\n.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-input__prepend-outer,\\n.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-input__append-inner,\\n.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-input__append-outer {\\n align-self: flex-start;\\n margin-top: 8px;\\n}\\n.v-textarea.v-text-field--solo {\\n align-items: flex-start;\\n}\\n.v-textarea.v-text-field--solo .v-input__control textarea {\\n caret-color: auto;\\n}\\n.v-textarea.v-text-field--solo .v-input__prepend-inner,\\n.v-textarea.v-text-field--solo .v-input__prepend-outer,\\n.v-textarea.v-text-field--solo .v-input__append-inner,\\n.v-textarea.v-text-field--solo .v-input__append-outer {\\n align-self: flex-start;\\n margin-top: 12px;\\n}\\n.v-application--is-ltr .v-textarea.v-text-field--solo .v-input__append-inner {\\n padding-left: 12px;\\n}\\n.v-application--is-rtl .v-textarea.v-text-field--solo .v-input__append-inner {\\n padding-right: 12px;\\n}\\n.v-textarea--auto-grow textarea {\\n overflow: hidden;\\n}\\n.v-textarea--no-resize textarea {\\n resize: none;\\n}\\n.v-textarea.v-text-field--enclosed .v-text-field__slot {\\n align-self: stretch;\\n}\\n.v-application--is-ltr .v-textarea.v-text-field--enclosed .v-text-field__slot {\\n margin-right: -12px;\\n}\\n.v-application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot {\\n margin-left: -12px;\\n}\\n.v-application--is-ltr .v-textarea.v-text-field--enclosed .v-text-field__slot textarea {\\n padding-right: 12px;\\n}\\n.v-application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot textarea {\\n padding-left: 12px;\\n}\\n.v-application--is-ltr .v-textarea.v-text-field--enclosed.v-text-field--reverse .v-text-field__slot .v-label {\\n margin-right: 12px;\\n}\\n.v-application--is-rtl .v-textarea.v-text-field--enclosed.v-text-field--reverse .v-text-field__slot .v-label {\\n margin-left: 12px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VTextarea/VTextarea.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VTimePicker/VTimePickerClock.sass": /*!*******************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VTimePicker/VTimePickerClock.sass ***! \*******************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-time-picker-clock {\\n background: #e0e0e0;\\n}\\n.theme--light.v-time-picker-clock .v-time-picker-clock__item--disabled {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.theme--light.v-time-picker-clock .v-time-picker-clock__item--disabled.v-time-picker-clock__item--active {\\n color: rgba(255, 255, 255, 0.3);\\n}\\n.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand {\\n background-color: #bdbdbd;\\n}\\n.theme--light.v-time-picker-clock--indeterminate:after {\\n color: #bdbdbd;\\n}\\n.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__item--active {\\n background-color: #bdbdbd;\\n}\\n\\n.theme--dark.v-time-picker-clock {\\n background: #616161;\\n}\\n.theme--dark.v-time-picker-clock .v-time-picker-clock__item--disabled {\\n color: rgba(255, 255, 255, 0.3);\\n}\\n.theme--dark.v-time-picker-clock .v-time-picker-clock__item--disabled.v-time-picker-clock__item--active {\\n color: rgba(255, 255, 255, 0.3);\\n}\\n.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand {\\n background-color: #757575;\\n}\\n.theme--dark.v-time-picker-clock--indeterminate:after {\\n color: #757575;\\n}\\n.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__item--active {\\n background-color: #757575;\\n}\\n\\n.v-time-picker-clock {\\n border-radius: 100%;\\n position: relative;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n width: 100%;\\n padding-top: 100%;\\n flex: 1 0 auto;\\n}\\n.v-time-picker-clock__container {\\n display: flex;\\n flex-direction: column;\\n flex-basis: 290px;\\n justify-content: center;\\n padding: 10px;\\n}\\n.v-time-picker-clock__ampm {\\n display: flex;\\n flex-direction: row;\\n justify-content: space-between;\\n align-items: flex-end;\\n position: absolute;\\n width: 100%;\\n height: 100%;\\n top: 0;\\n left: 0;\\n margin: 0;\\n padding: 10px;\\n}\\n.v-time-picker-clock__hand {\\n height: calc(50% - 4px);\\n width: 2px;\\n bottom: 50%;\\n left: calc(50% - 1px);\\n transform-origin: center bottom;\\n position: absolute;\\n will-change: transform;\\n z-index: 1;\\n}\\n.v-time-picker-clock__hand:before {\\n background: transparent;\\n border-width: 2px;\\n border-style: solid;\\n border-color: inherit;\\n border-radius: 100%;\\n width: 10px;\\n height: 10px;\\n content: \\\"\\\";\\n position: absolute;\\n top: -4px;\\n left: 50%;\\n transform: translate(-50%, -50%);\\n}\\n.v-time-picker-clock__hand:after {\\n content: \\\"\\\";\\n position: absolute;\\n height: 8px;\\n width: 8px;\\n top: 100%;\\n left: 50%;\\n border-radius: 100%;\\n border-style: solid;\\n border-color: inherit;\\n background-color: inherit;\\n transform: translate(-50%, -50%);\\n}\\n.v-time-picker-clock__hand--inner:after {\\n height: 14px;\\n}\\n\\n.v-picker--full-width .v-time-picker-clock__container {\\n max-width: 290px;\\n}\\n\\n.v-time-picker-clock__inner {\\n position: absolute;\\n bottom: 27px;\\n left: 27px;\\n right: 27px;\\n top: 27px;\\n}\\n\\n.v-time-picker-clock__item {\\n align-items: center;\\n border-radius: 100%;\\n cursor: default;\\n display: flex;\\n font-size: 16px;\\n justify-content: center;\\n height: 40px;\\n position: absolute;\\n text-align: center;\\n width: 40px;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n transform: translate(-50%, -50%);\\n}\\n.v-time-picker-clock__item > span {\\n z-index: 1;\\n}\\n.v-time-picker-clock__item:before, .v-time-picker-clock__item:after {\\n content: \\\"\\\";\\n border-radius: 100%;\\n position: absolute;\\n top: 50%;\\n left: 50%;\\n height: 14px;\\n width: 14px;\\n transform: translate(-50%, -50%);\\n}\\n.v-time-picker-clock__item:after, .v-time-picker-clock__item:before {\\n height: 40px;\\n width: 40px;\\n}\\n.v-time-picker-clock__item--active {\\n color: #FFFFFF;\\n cursor: default;\\n z-index: 2;\\n}\\n.v-time-picker-clock__item--disabled {\\n pointer-events: none;\\n}\\n\\n.v-picker--landscape .v-time-picker-clock__container {\\n flex-direction: row;\\n}\\n.v-picker--landscape .v-time-picker-clock__ampm {\\n flex-direction: column;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VTimePicker/VTimePickerClock.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VTimePicker/VTimePickerTitle.sass": /*!*******************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VTimePicker/VTimePickerTitle.sass ***! \*******************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-time-picker-title {\\n color: #FFFFFF;\\n display: flex;\\n line-height: 1;\\n justify-content: flex-end;\\n}\\n\\n.v-time-picker-title__time {\\n white-space: nowrap;\\n direction: ltr;\\n}\\n.v-time-picker-title__time .v-picker__title__btn,\\n.v-time-picker-title__time span {\\n align-items: center;\\n display: inline-flex;\\n height: 70px;\\n font-size: 70px;\\n justify-content: center;\\n}\\n\\n.v-time-picker-title__ampm {\\n align-self: flex-end;\\n display: flex;\\n flex-direction: column;\\n font-size: 16px;\\n text-transform: uppercase;\\n}\\n.v-application--is-ltr .v-time-picker-title__ampm {\\n margin: 0 0 6px 8px;\\n}\\n.v-application--is-rtl .v-time-picker-title__ampm {\\n margin: 0 8px 6px 0;\\n}\\n.v-time-picker-title__ampm div:only-child {\\n flex-direction: row;\\n}\\n.v-time-picker-title__ampm--readonly .v-picker__title__btn.v-picker__title__btn--active {\\n opacity: 0.6;\\n}\\n\\n.v-picker__title--landscape .v-time-picker-title {\\n flex-direction: column;\\n justify-content: center;\\n height: 100%;\\n}\\n.v-picker__title--landscape .v-time-picker-title__time {\\n text-align: right;\\n}\\n.v-picker__title--landscape .v-time-picker-title__time .v-picker__title__btn,\\n.v-picker__title--landscape .v-time-picker-title__time span {\\n height: 55px;\\n font-size: 55px;\\n}\\n.v-picker__title--landscape .v-time-picker-title__ampm {\\n margin: 16px 0 0;\\n align-self: initial;\\n text-align: center;\\n}\\n\\n.v-picker--time .v-picker__title--landscape {\\n padding: 0;\\n}\\n.v-picker--time .v-picker__title--landscape .v-time-picker-title__time {\\n text-align: center;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VTimePicker/VTimePickerTitle.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VTimeline/VTimeline.sass": /*!**********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VTimeline/VTimeline.sass ***! \**********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \"/**\\n * * .v-timeline::before - center divider\\n * * .v-card::before - arrow shadow (conflicts with active link overlay)\\n * * .v-card::after - arrow\\n * */\\n.theme--light.v-timeline::before {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.theme--light.v-timeline .v-timeline-item__dot {\\n background: #FFFFFF;\\n}\\n.theme--light.v-timeline .v-timeline-item .v-card:not(.v-card--link)::before {\\n border-right-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--dark.v-timeline::before {\\n background: rgba(255, 255, 255, 0.12);\\n}\\n.theme--dark.v-timeline .v-timeline-item__dot {\\n background: #1E1E1E;\\n}\\n.theme--dark.v-timeline .v-timeline-item .v-card:not(.v-card--link)::before {\\n border-right-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.v-timeline {\\n padding-top: 24px;\\n position: relative;\\n}\\n.v-timeline::before {\\n bottom: 0;\\n content: \\\"\\\";\\n height: 100%;\\n position: absolute;\\n top: 0;\\n width: 2px;\\n}\\n\\n.v-timeline-item {\\n display: flex;\\n padding-bottom: 24px;\\n}\\n\\n.v-timeline-item__body {\\n position: relative;\\n height: 100%;\\n flex: 1 1 auto;\\n}\\n\\n.v-timeline-item__divider {\\n position: relative;\\n min-width: 96px;\\n display: flex;\\n align-items: center;\\n justify-content: center;\\n}\\n\\n.v-timeline-item__dot {\\n z-index: 2;\\n border-radius: 50%;\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n height: 38px;\\n left: calc(50% - 19px);\\n width: 38px;\\n}\\n.v-timeline-item__dot .v-timeline-item__inner-dot {\\n height: 30px;\\n margin: 4px;\\n width: 30px;\\n}\\n.v-timeline-item__dot--small {\\n height: 24px;\\n left: calc(50% - 12px);\\n width: 24px;\\n}\\n.v-timeline-item__dot--small .v-timeline-item__inner-dot {\\n height: 18px;\\n margin: 3px;\\n width: 18px;\\n}\\n.v-timeline-item__dot--large {\\n height: 52px;\\n left: calc(50% - 26px);\\n width: 52px;\\n}\\n.v-timeline-item__dot--large .v-timeline-item__inner-dot {\\n height: 42px;\\n margin: 5px;\\n width: 42px;\\n}\\n\\n.v-timeline-item__inner-dot {\\n border-radius: 50%;\\n display: flex;\\n justify-content: center;\\n align-items: center;\\n}\\n\\n.v-timeline-item__opposite {\\n flex: 1 1 auto;\\n align-self: center;\\n max-width: calc(50% - 48px);\\n}\\n\\n.v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(odd):not(.v-timeline-item--before), .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--after {\\n flex-direction: row-reverse;\\n}\\n.v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(odd):not(.v-timeline-item--before) .v-timeline-item__opposite, .v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--after .v-timeline-item__opposite {\\n text-align: right;\\n}\\n.v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(odd):not(.v-timeline-item--before) .v-timeline-item__opposite, .v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--after .v-timeline-item__opposite {\\n text-align: left;\\n}\\n.v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(odd):not(.v-timeline-item--before) .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(odd):not(.v-timeline-item--before) .v-timeline-item__body > .v-card::after, .v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--after .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--after .v-timeline-item__body > .v-card::after {\\n transform: rotate(0);\\n left: -10px;\\n right: initial;\\n}\\n.v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(odd):not(.v-timeline-item--before) .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(odd):not(.v-timeline-item--before) .v-timeline-item__body > .v-card::after, .v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--after .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--after .v-timeline-item__body > .v-card::after {\\n transform: rotate(180deg);\\n left: initial;\\n right: -10px;\\n}\\n.v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(odd):not(.v-timeline-item--before) .v-timeline-item__body, .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--after .v-timeline-item__body {\\n max-width: calc(50% - 48px);\\n}\\n.v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(even):not(.v-timeline-item--after), .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--before {\\n flex-direction: row;\\n}\\n.v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(even):not(.v-timeline-item--after) .v-timeline-item__opposite, .v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--before .v-timeline-item__opposite {\\n text-align: left;\\n}\\n.v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(even):not(.v-timeline-item--after) .v-timeline-item__opposite, .v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--before .v-timeline-item__opposite {\\n text-align: right;\\n}\\n.v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(even):not(.v-timeline-item--after) .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(even):not(.v-timeline-item--after) .v-timeline-item__body > .v-card::after, .v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--before .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--before .v-timeline-item__body > .v-card::after {\\n transform: rotate(180deg);\\n right: -10px;\\n left: initial;\\n}\\n.v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(even):not(.v-timeline-item--after) .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(even):not(.v-timeline-item--after) .v-timeline-item__body > .v-card::after, .v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--before .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--before .v-timeline-item__body > .v-card::after {\\n transform: rotate(0);\\n right: initial;\\n left: -10px;\\n}\\n.v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item:nth-child(even):not(.v-timeline-item--after) .v-timeline-item__body, .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse) .v-timeline-item--before .v-timeline-item__body {\\n max-width: calc(50% - 48px);\\n}\\n\\n.v-timeline-item__body > .v-card:not(.v-card--flat):not(.v-card--link)::before, .v-timeline-item__body > .v-card:not(.v-card--flat)::after {\\n content: \\\"\\\";\\n position: absolute;\\n border-top: 10px solid transparent;\\n border-bottom: 10px solid transparent;\\n border-right: 10px solid black;\\n top: calc(50% - 10px);\\n}\\n.v-timeline-item__body > .v-card:not(.v-card--flat)::after {\\n border-right-color: inherit;\\n}\\n.v-timeline-item__body > .v-card:not(.v-card--flat):not(.v-card--link)::before {\\n top: calc(50% - 10px + 2px);\\n}\\n\\n.v-timeline--align-top .v-timeline-item__dot {\\n align-self: start;\\n}\\n.v-timeline--align-top .v-timeline-item__body > .v-card::after {\\n top: calc(0% + 10px);\\n}\\n.v-timeline--align-top .v-timeline-item__body > .v-card:not(.v-card--link)::before {\\n top: calc(0% + 10px + 2px);\\n}\\n\\n.v-application--is-ltr .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse)::before {\\n left: calc(50% - 1px);\\n right: initial;\\n}\\n.v-application--is-rtl .v-timeline:not(.v-timeline--dense):not(.v-timeline--reverse)::before {\\n left: initial;\\n right: calc(50% - 1px);\\n}\\n\\n.v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense)::before {\\n right: calc(50% - 1px);\\n left: initial;\\n}\\n.v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense)::before {\\n right: initial;\\n left: calc(50% - 1px);\\n}\\n.v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(odd):not(.v-timeline-item--after), .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--before {\\n flex-direction: row;\\n}\\n.v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(odd):not(.v-timeline-item--after) .v-timeline-item__opposite, .v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--before .v-timeline-item__opposite {\\n text-align: left;\\n}\\n.v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(odd):not(.v-timeline-item--after) .v-timeline-item__opposite, .v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--before .v-timeline-item__opposite {\\n text-align: right;\\n}\\n.v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(odd):not(.v-timeline-item--after) .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(odd):not(.v-timeline-item--after) .v-timeline-item__body > .v-card::after, .v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--before .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--before .v-timeline-item__body > .v-card::after {\\n transform: rotate(180deg);\\n right: -10px;\\n left: initial;\\n}\\n.v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(odd):not(.v-timeline-item--after) .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(odd):not(.v-timeline-item--after) .v-timeline-item__body > .v-card::after, .v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--before .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--before .v-timeline-item__body > .v-card::after {\\n transform: rotate(0);\\n right: initial;\\n left: -10px;\\n}\\n.v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(odd):not(.v-timeline-item--after) .v-timeline-item__body, .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--before .v-timeline-item__body {\\n max-width: calc(50% - 48px);\\n}\\n.v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(even):not(.v-timeline-item--before), .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--after {\\n flex-direction: row-reverse;\\n}\\n.v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(even):not(.v-timeline-item--before) .v-timeline-item__opposite, .v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--after .v-timeline-item__opposite {\\n text-align: right;\\n}\\n.v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(even):not(.v-timeline-item--before) .v-timeline-item__opposite, .v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--after .v-timeline-item__opposite {\\n text-align: left;\\n}\\n.v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(even):not(.v-timeline-item--before) .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(even):not(.v-timeline-item--before) .v-timeline-item__body > .v-card::after, .v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--after .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--after .v-timeline-item__body > .v-card::after {\\n transform: rotate(0);\\n left: -10px;\\n right: initial;\\n}\\n.v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(even):not(.v-timeline-item--before) .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(even):not(.v-timeline-item--before) .v-timeline-item__body > .v-card::after, .v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--after .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--after .v-timeline-item__body > .v-card::after {\\n transform: rotate(180deg);\\n left: initial;\\n right: -10px;\\n}\\n.v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item:nth-child(even):not(.v-timeline-item--before) .v-timeline-item__body, .v-timeline--reverse:not(.v-timeline--dense) .v-timeline-item--after .v-timeline-item__body {\\n max-width: calc(50% - 48px);\\n}\\n\\n.v-application--is-ltr .v-timeline--reverse.v-timeline--dense::before {\\n right: calc(48px - 1px);\\n left: initial;\\n}\\n.v-application--is-rtl .v-timeline--reverse.v-timeline--dense::before {\\n right: initial;\\n left: calc(48px - 1px);\\n}\\n\\n.v-application--is-ltr .v-timeline--dense:not(.v-timeline--reverse)::before {\\n left: calc(48px - 1px);\\n right: initial;\\n}\\n.v-application--is-rtl .v-timeline--dense:not(.v-timeline--reverse)::before {\\n left: initial;\\n right: calc(48px - 1px);\\n}\\n\\n.v-timeline--dense .v-timeline-item {\\n flex-direction: row-reverse !important;\\n}\\n.v-application--is-ltr .v-timeline--dense .v-timeline-item .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline--dense .v-timeline-item .v-timeline-item__body > .v-card::after {\\n transform: rotate(0);\\n left: -10px;\\n right: initial;\\n}\\n.v-application--is-rtl .v-timeline--dense .v-timeline-item .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline--dense .v-timeline-item .v-timeline-item__body > .v-card::after {\\n transform: rotate(180deg);\\n left: initial;\\n right: -10px;\\n}\\n.v-timeline--dense .v-timeline-item__body {\\n max-width: calc(100% - 96px);\\n}\\n.v-timeline--dense .v-timeline-item__opposite {\\n display: none;\\n}\\n\\n.v-timeline--reverse.v-timeline--dense .v-timeline-item {\\n flex-direction: row !important;\\n}\\n.v-application--is-ltr .v-timeline--reverse.v-timeline--dense .v-timeline-item .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-ltr .v-timeline--reverse.v-timeline--dense .v-timeline-item .v-timeline-item__body > .v-card::after {\\n transform: rotate(180deg);\\n right: -10px;\\n left: initial;\\n}\\n.v-application--is-rtl .v-timeline--reverse.v-timeline--dense .v-timeline-item .v-timeline-item__body > .v-card:not(.v-card--link)::before, .v-application--is-rtl .v-timeline--reverse.v-timeline--dense .v-timeline-item .v-timeline-item__body > .v-card::after {\\n transform: rotate(0);\\n right: initial;\\n left: -10px;\\n}\\n\\n.v-timeline-item--fill-dot .v-timeline-item__inner-dot {\\n height: inherit;\\n margin: 0;\\n width: inherit;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VTimeline/VTimeline.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VToolbar/VToolbar.sass": /*!********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VToolbar/VToolbar.sass ***! \********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-toolbar.v-sheet {\\n background-color: #FFFFFF;\\n}\\n\\n.theme--dark.v-toolbar.v-sheet {\\n background-color: #272727;\\n}\\n\\n.v-sheet.v-toolbar {\\n border-radius: 0;\\n}\\n.v-sheet.v-toolbar:not(.v-sheet--outlined) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-sheet.v-toolbar.v-sheet--shaped {\\n border-radius: 16px 0;\\n}\\n\\n.v-toolbar {\\n contain: layout;\\n display: block;\\n flex: 1 1 auto;\\n max-width: 100%;\\n transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1) transform, 0.2s cubic-bezier(0.4, 0, 0.2, 1) background-color, 0.2s cubic-bezier(0.4, 0, 0.2, 1) left, 0.2s cubic-bezier(0.4, 0, 0.2, 1) right, 280ms cubic-bezier(0.4, 0, 0.2, 1) box-shadow, 0.25s cubic-bezier(0.4, 0, 0.2, 1) max-width, 0.25s cubic-bezier(0.4, 0, 0.2, 1) width;\\n position: relative;\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.v-toolbar .v-input {\\n padding-top: 0;\\n margin-top: 0;\\n}\\n\\n.v-toolbar__content,\\n.v-toolbar__extension {\\n padding: 4px 16px;\\n}\\n.v-toolbar__content .v-btn.v-btn--icon.v-size--default,\\n.v-toolbar__extension .v-btn.v-btn--icon.v-size--default {\\n height: 48px;\\n width: 48px;\\n}\\n.v-application--is-ltr .v-toolbar__content > .v-btn.v-btn--icon:first-child,\\n.v-application--is-ltr .v-toolbar__extension > .v-btn.v-btn--icon:first-child {\\n margin-left: -12px;\\n}\\n.v-application--is-rtl .v-toolbar__content > .v-btn.v-btn--icon:first-child,\\n.v-application--is-rtl .v-toolbar__extension > .v-btn.v-btn--icon:first-child {\\n margin-right: -12px;\\n}\\n.v-application--is-ltr .v-toolbar__content > .v-btn.v-btn--icon:first-child + .v-toolbar__title,\\n.v-application--is-ltr .v-toolbar__extension > .v-btn.v-btn--icon:first-child + .v-toolbar__title {\\n padding-left: 20px;\\n}\\n.v-application--is-rtl .v-toolbar__content > .v-btn.v-btn--icon:first-child + .v-toolbar__title,\\n.v-application--is-rtl .v-toolbar__extension > .v-btn.v-btn--icon:first-child + .v-toolbar__title {\\n padding-right: 20px;\\n}\\n.v-application--is-ltr .v-toolbar__content > .v-btn.v-btn--icon:last-child,\\n.v-application--is-ltr .v-toolbar__extension > .v-btn.v-btn--icon:last-child {\\n margin-right: -12px;\\n}\\n.v-application--is-rtl .v-toolbar__content > .v-btn.v-btn--icon:last-child,\\n.v-application--is-rtl .v-toolbar__extension > .v-btn.v-btn--icon:last-child {\\n margin-left: -12px;\\n}\\n.v-toolbar__content > .v-tabs,\\n.v-toolbar__extension > .v-tabs {\\n height: inherit;\\n margin-top: -4px;\\n margin-bottom: -4px;\\n}\\n.v-toolbar__content > .v-tabs > .v-slide-group.v-tabs-bar,\\n.v-toolbar__extension > .v-tabs > .v-slide-group.v-tabs-bar {\\n background-color: inherit;\\n height: inherit;\\n}\\n.v-toolbar__content > .v-tabs:first-child,\\n.v-toolbar__extension > .v-tabs:first-child {\\n margin-left: -16px;\\n}\\n.v-toolbar__content > .v-tabs:last-child,\\n.v-toolbar__extension > .v-tabs:last-child {\\n margin-right: -16px;\\n}\\n\\n.v-toolbar__content,\\n.v-toolbar__extension {\\n align-items: center;\\n display: flex;\\n position: relative;\\n z-index: 0;\\n}\\n\\n.v-toolbar__image {\\n border-radius: inherit;\\n position: absolute;\\n top: 0;\\n bottom: 0;\\n width: 100%;\\n z-index: 0;\\n contain: strict;\\n}\\n.v-toolbar__image .v-image {\\n border-radius: inherit;\\n}\\n\\n.v-toolbar__items {\\n display: flex;\\n height: inherit;\\n}\\n.v-toolbar__items > .v-btn {\\n border-radius: 0;\\n height: 100% !important;\\n max-height: none;\\n}\\n\\n.v-toolbar__title {\\n font-size: 1.25rem;\\n line-height: 1.5;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n white-space: nowrap;\\n}\\n\\n.v-toolbar.v-toolbar--absolute {\\n position: absolute;\\n top: 0;\\n z-index: 1;\\n}\\n\\n.v-toolbar.v-toolbar--bottom {\\n top: initial;\\n bottom: 0;\\n}\\n\\n.v-toolbar.v-toolbar--collapse .v-toolbar__title {\\n white-space: nowrap;\\n}\\n\\n.v-toolbar.v-toolbar--collapsed {\\n max-width: 112px;\\n overflow: hidden;\\n}\\n.v-application--is-ltr .v-toolbar.v-toolbar--collapsed {\\n border-bottom-right-radius: 24px;\\n}\\n.v-application--is-rtl .v-toolbar.v-toolbar--collapsed {\\n border-bottom-left-radius: 24px;\\n}\\n.v-toolbar.v-toolbar--collapsed .v-toolbar__title,\\n.v-toolbar.v-toolbar--collapsed .v-toolbar__extension {\\n display: none;\\n}\\n\\n.v-toolbar--dense .v-toolbar__content,\\n.v-toolbar--dense .v-toolbar__extension {\\n padding-top: 0;\\n padding-bottom: 0;\\n}\\n\\n.v-toolbar--flat {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-toolbar--floating {\\n display: inline-flex;\\n}\\n\\n.v-toolbar--prominent .v-toolbar__content {\\n align-items: flex-start;\\n}\\n.v-toolbar--prominent .v-toolbar__title {\\n font-size: 1.5rem;\\n padding-top: 6px;\\n}\\n.v-toolbar--prominent:not(.v-toolbar--bottom) .v-toolbar__title {\\n align-self: flex-end;\\n padding-bottom: 6px;\\n padding-top: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VToolbar/VToolbar.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VTooltip/VTooltip.sass": /*!********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VTooltip/VTooltip.sass ***! \********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-tooltip {\\n display: none;\\n}\\n.v-tooltip--attached {\\n display: inline;\\n}\\n.v-tooltip__content {\\n background: rgba(97, 97, 97, 0.9);\\n color: #FFFFFF;\\n border-radius: 4px;\\n font-size: 14px;\\n line-height: 22px;\\n display: inline-block;\\n padding: 5px 16px;\\n position: absolute;\\n text-transform: initial;\\n width: auto;\\n opacity: 0;\\n pointer-events: none;\\n}\\n.v-tooltip__content.menuable__content__active {\\n opacity: 0.9;\\n}\\n.v-tooltip__content--fixed {\\n position: fixed;\\n}\\n.v-tooltip__content[class*=-active] {\\n transition-timing-function: cubic-bezier(0, 0, 0.2, 1);\\n}\\n.v-tooltip__content[class*=enter-active] {\\n transition-duration: 150ms;\\n}\\n.v-tooltip__content[class*=leave-active] {\\n transition-duration: 75ms;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VTooltip/VTooltip.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VTreeview/VTreeview.sass": /*!**********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VTreeview/VTreeview.sass ***! \**********************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".theme--light.v-treeview {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.theme--light.v-treeview--hoverable .v-treeview-node__root:hover::before,\\n.theme--light.v-treeview .v-treeview-node--click > .v-treeview-node__root:hover::before {\\n opacity: 0.04;\\n}\\n.theme--light.v-treeview--hoverable .v-treeview-node__root:focus::before,\\n.theme--light.v-treeview .v-treeview-node--click > .v-treeview-node__root:focus::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-treeview--hoverable .v-treeview-node__root--active:hover::before, .theme--light.v-treeview--hoverable .v-treeview-node__root--active::before,\\n.theme--light.v-treeview .v-treeview-node--click > .v-treeview-node__root--active:hover::before,\\n.theme--light.v-treeview .v-treeview-node--click > .v-treeview-node__root--active::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-treeview--hoverable .v-treeview-node__root--active:focus::before,\\n.theme--light.v-treeview .v-treeview-node--click > .v-treeview-node__root--active:focus::before {\\n opacity: 0.16;\\n}\\n.theme--light.v-treeview .v-treeview-node__root.v-treeview-node--active:hover::before, .theme--light.v-treeview .v-treeview-node__root.v-treeview-node--active::before {\\n opacity: 0.12;\\n}\\n.theme--light.v-treeview .v-treeview-node__root.v-treeview-node--active:focus::before {\\n opacity: 0.16;\\n}\\n.theme--light.v-treeview .v-treeview-node--disabled > .v-treeview-node__root > .v-treeview-node__content {\\n color: rgba(0, 0, 0, 0.38) !important;\\n}\\n\\n.theme--dark.v-treeview {\\n color: #FFFFFF;\\n}\\n.theme--dark.v-treeview--hoverable .v-treeview-node__root:hover::before,\\n.theme--dark.v-treeview .v-treeview-node--click > .v-treeview-node__root:hover::before {\\n opacity: 0.08;\\n}\\n.theme--dark.v-treeview--hoverable .v-treeview-node__root:focus::before,\\n.theme--dark.v-treeview .v-treeview-node--click > .v-treeview-node__root:focus::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-treeview--hoverable .v-treeview-node__root--active:hover::before, .theme--dark.v-treeview--hoverable .v-treeview-node__root--active::before,\\n.theme--dark.v-treeview .v-treeview-node--click > .v-treeview-node__root--active:hover::before,\\n.theme--dark.v-treeview .v-treeview-node--click > .v-treeview-node__root--active::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-treeview--hoverable .v-treeview-node__root--active:focus::before,\\n.theme--dark.v-treeview .v-treeview-node--click > .v-treeview-node__root--active:focus::before {\\n opacity: 0.32;\\n}\\n.theme--dark.v-treeview .v-treeview-node__root.v-treeview-node--active:hover::before, .theme--dark.v-treeview .v-treeview-node__root.v-treeview-node--active::before {\\n opacity: 0.24;\\n}\\n.theme--dark.v-treeview .v-treeview-node__root.v-treeview-node--active:focus::before {\\n opacity: 0.32;\\n}\\n.theme--dark.v-treeview .v-treeview-node--disabled > .v-treeview-node__root > .v-treeview-node__content {\\n color: rgba(255, 255, 255, 0.5) !important;\\n}\\n\\n.v-treeview-node.v-treeview-node--shaped .v-treeview-node__root,\\n.v-treeview-node.v-treeview-node--shaped .v-treeview-node__root:before {\\n border-bottom-right-radius: 24px !important;\\n border-top-right-radius: 24px !important;\\n}\\n.v-treeview-node.v-treeview-node--shaped .v-treeview-node__root {\\n margin-top: 8px;\\n margin-bottom: 8px;\\n}\\n.v-treeview-node.v-treeview-node--rounded .v-treeview-node__root,\\n.v-treeview-node.v-treeview-node--rounded .v-treeview-node__root:before {\\n border-radius: 24px !important;\\n}\\n.v-treeview-node.v-treeview-node--rounded .v-treeview-node__root {\\n margin-top: 8px;\\n margin-bottom: 8px;\\n}\\n.v-treeview-node--click > .v-treeview-node__root,\\n.v-treeview-node--click > .v-treeview-node__root > .v-treeview-node__content > * {\\n cursor: pointer;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-treeview-node.v-treeview-node--active .v-treeview-node__content .v-icon {\\n color: inherit;\\n}\\n\\n.v-treeview-node__root {\\n display: flex;\\n align-items: center;\\n min-height: 48px;\\n padding-left: 8px;\\n padding-right: 8px;\\n position: relative;\\n}\\n.v-treeview-node__root::before {\\n background-color: currentColor;\\n bottom: 0;\\n content: \\\"\\\";\\n left: 0;\\n opacity: 0;\\n pointer-events: none;\\n position: absolute;\\n right: 0;\\n top: 0;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-treeview-node__root::after {\\n content: \\\"\\\";\\n font-size: 0;\\n min-height: inherit;\\n}\\n\\n.v-treeview-node__children {\\n transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);\\n}\\n\\n.v-treeview--dense .v-treeview-node__root {\\n min-height: 40px;\\n}\\n.v-treeview--dense.v-treeview-node--shaped .v-treeview-node__root,\\n.v-treeview--dense.v-treeview-node--shaped .v-treeview-node__root:before {\\n border-bottom-right-radius: 20px !important;\\n border-top-right-radius: 20px !important;\\n}\\n.v-treeview--dense.v-treeview-node--shaped .v-treeview-node__root {\\n margin-top: 8px;\\n margin-bottom: 8px;\\n}\\n.v-treeview--dense.v-treeview-node--rounded .v-treeview-node__root,\\n.v-treeview--dense.v-treeview-node--rounded .v-treeview-node__root:before {\\n border-radius: 20px !important;\\n}\\n.v-treeview--dense.v-treeview-node--rounded .v-treeview-node__root {\\n margin-top: 8px;\\n margin-bottom: 8px;\\n}\\n\\n.v-treeview-node__checkbox {\\n width: 24px;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-application--is-ltr .v-treeview-node__checkbox {\\n margin-left: 6px;\\n}\\n.v-application--is-rtl .v-treeview-node__checkbox {\\n margin-right: 6px;\\n}\\n\\n.v-treeview-node__toggle {\\n width: 24px;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-treeview-node__toggle--loading {\\n animation: progress-circular-rotate 1s linear infinite;\\n}\\n.v-application--is-ltr .v-treeview-node__toggle {\\n transform: rotate(-90deg);\\n}\\n.v-application--is-ltr .v-treeview-node__toggle--open {\\n transform: none;\\n}\\n.v-application--is-rtl .v-treeview-node__toggle {\\n transform: rotate(90deg);\\n}\\n.v-application--is-rtl .v-treeview-node__toggle--open {\\n transform: none;\\n}\\n\\n.v-treeview-node__prepend {\\n min-width: 24px;\\n}\\n.v-application--is-ltr .v-treeview-node__prepend {\\n margin-right: 6px;\\n}\\n.v-application--is-rtl .v-treeview-node__prepend {\\n margin-left: 6px;\\n}\\n\\n.v-treeview-node__append {\\n min-width: 24px;\\n}\\n.v-application--is-ltr .v-treeview-node__append {\\n margin-left: 6px;\\n}\\n.v-application--is-rtl .v-treeview-node__append {\\n margin-right: 6px;\\n}\\n\\n.v-treeview-node__level {\\n width: 24px;\\n}\\n\\n.v-treeview-node__label {\\n flex: 1;\\n font-size: inherit;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n white-space: nowrap;\\n}\\n\\n.v-treeview-node__content {\\n align-items: center;\\n display: flex;\\n flex-basis: 0%;\\n flex-grow: 1;\\n flex-shrink: 0;\\n min-width: 0;\\n}\\n.v-treeview-node__content .v-btn {\\n flex-grow: 0 !important;\\n flex-shrink: 1 !important;\\n}\\n.v-application--is-ltr .v-treeview-node__content {\\n margin-left: 6px;\\n}\\n.v-application--is-rtl .v-treeview-node__content {\\n margin-right: 6px;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VTreeview/VTreeview.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VVirtualScroll/VVirtualScroll.sass": /*!********************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VVirtualScroll/VVirtualScroll.sass ***! \********************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-virtual-scroll {\\n display: block;\\n flex: 1 1 auto;\\n height: 100%;\\n max-width: 100%;\\n overflow: auto;\\n position: relative;\\n}\\n.v-virtual-scroll__container {\\n display: block;\\n}\\n.v-virtual-scroll__item {\\n left: 0;\\n position: absolute;\\n right: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VVirtualScroll/VVirtualScroll.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/components/VWindow/VWindow.sass": /*!******************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/components/VWindow/VWindow.sass ***! \******************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-window {\\n overflow: hidden;\\n}\\n.v-window__container {\\n display: flex;\\n flex-direction: column;\\n height: inherit;\\n position: relative;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-window__container--is-active {\\n overflow: hidden;\\n}\\n.v-window__prev, .v-window__next {\\n background: rgba(0, 0, 0, 0.3);\\n border-radius: 50%;\\n position: absolute;\\n margin: 0 16px;\\n top: calc(50% - 20px);\\n z-index: 1;\\n}\\n.v-window__prev .v-btn:hover, .v-window__next .v-btn:hover {\\n background: none;\\n}\\n.v-application--is-ltr .v-window__prev {\\n left: 0;\\n}\\n.v-application--is-rtl .v-window__prev {\\n right: 0;\\n}\\n.v-application--is-ltr .v-window__next {\\n right: 0;\\n}\\n.v-application--is-rtl .v-window__next {\\n left: 0;\\n}\\n.v-window--show-arrows-on-hover {\\n overflow: hidden;\\n}\\n.v-window--show-arrows-on-hover .v-window__next,\\n.v-window--show-arrows-on-hover .v-window__prev {\\n transition: 0.2s transform cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-application--is-ltr .v-window--show-arrows-on-hover .v-window__prev {\\n transform: translateX(-200%);\\n}\\n.v-application--is-rtl .v-window--show-arrows-on-hover .v-window__prev {\\n transform: translateX(200%);\\n}\\n.v-application--is-ltr .v-window--show-arrows-on-hover .v-window__next {\\n transform: translateX(200%);\\n}\\n.v-application--is-rtl .v-window--show-arrows-on-hover .v-window__next {\\n transform: translateX(-200%);\\n}\\n.v-window--show-arrows-on-hover:hover .v-window__next,\\n.v-window--show-arrows-on-hover:hover .v-window__prev {\\n transform: translateX(0);\\n}\\n.v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n}\\n.v-window-x-transition-leave, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave, .v-window-y-reverse-transition-leave-to {\\n position: absolute !important;\\n top: 0;\\n width: 100%;\\n}\\n.v-window-x-transition-enter {\\n transform: translateX(100%);\\n}\\n.v-window-x-transition-leave-to {\\n transform: translateX(-100%);\\n}\\n.v-window-x-reverse-transition-enter {\\n transform: translateX(-100%);\\n}\\n.v-window-x-reverse-transition-leave-to {\\n transform: translateX(100%);\\n}\\n.v-window-y-transition-enter {\\n transform: translateY(100%);\\n}\\n.v-window-y-transition-leave-to {\\n transform: translateY(-100%);\\n}\\n.v-window-y-reverse-transition-enter {\\n transform: translateY(-100%);\\n}\\n.v-window-y-reverse-transition-leave-to {\\n transform: translateY(100%);\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/components/VWindow/VWindow.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/directives/ripple/VRipple.sass": /*!*****************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/directives/ripple/VRipple.sass ***! \*****************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-ripple__container {\\n color: inherit;\\n border-radius: inherit;\\n position: absolute;\\n width: 100%;\\n height: 100%;\\n left: 0;\\n top: 0;\\n overflow: hidden;\\n z-index: 0;\\n pointer-events: none;\\n contain: strict;\\n}\\n.v-ripple__animation {\\n color: inherit;\\n position: absolute;\\n top: 0;\\n left: 0;\\n border-radius: 50%;\\n background: currentColor;\\n opacity: 0;\\n pointer-events: none;\\n overflow: hidden;\\n will-change: transform, opacity;\\n}\\n.v-ripple__animation--enter {\\n transition: none;\\n opacity: 0;\\n}\\n.v-ripple__animation--in {\\n transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1);\\n opacity: 0.25;\\n}\\n.v-ripple__animation--out {\\n transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);\\n opacity: 0;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/directives/ripple/VRipple.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/styles/components/_selection-controls.sass": /*!*****************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/styles/components/_selection-controls.sass ***! \*****************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \".v-input--selection-controls {\\n margin-top: 16px;\\n padding-top: 4px;\\n}\\n.v-input--selection-controls > .v-input__append-outer,\\n.v-input--selection-controls > .v-input__prepend-outer {\\n margin-top: 0;\\n margin-bottom: 0;\\n}\\n.v-input--selection-controls:not(.v-input--hide-details) > .v-input__slot {\\n margin-bottom: 12px;\\n}\\n.v-input--selection-controls .v-input__slot,\\n.v-input--selection-controls .v-radio {\\n cursor: pointer;\\n}\\n.v-input--selection-controls .v-input__slot > .v-label,\\n.v-input--selection-controls .v-radio > .v-label {\\n align-items: center;\\n display: inline-flex;\\n flex: 1 1 auto;\\n height: auto;\\n}\\n.v-input--selection-controls__input {\\n color: inherit;\\n display: inline-flex;\\n flex: 0 0 auto;\\n height: 24px;\\n position: relative;\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);\\n transition-property: transform;\\n width: 24px;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-input--selection-controls__input .v-icon {\\n width: 100%;\\n}\\n.v-application--is-ltr .v-input--selection-controls__input {\\n margin-right: 8px;\\n}\\n.v-application--is-rtl .v-input--selection-controls__input {\\n margin-left: 8px;\\n}\\n.v-input--selection-controls__input input[role=checkbox],\\n.v-input--selection-controls__input input[role=radio],\\n.v-input--selection-controls__input input[role=switch] {\\n position: absolute;\\n opacity: 0;\\n width: 100%;\\n height: 100%;\\n cursor: pointer;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-input--selection-controls__input + .v-label {\\n cursor: pointer;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n}\\n.v-input--selection-controls__ripple {\\n border-radius: 50%;\\n cursor: pointer;\\n height: 34px;\\n position: absolute;\\n transition: inherit;\\n width: 34px;\\n left: -12px;\\n top: calc(50% - 24px);\\n margin: 7px;\\n}\\n.v-input--selection-controls__ripple:before {\\n border-radius: inherit;\\n bottom: 0;\\n content: \\\"\\\";\\n position: absolute;\\n opacity: 0.2;\\n left: 0;\\n right: 0;\\n top: 0;\\n transform-origin: center center;\\n transform: scale(0.2);\\n transition: inherit;\\n}\\n.v-input--selection-controls__ripple > .v-ripple__container {\\n transform: scale(1.2);\\n}\\n.v-input--selection-controls.v-input--dense .v-input--selection-controls__ripple {\\n width: 28px;\\n height: 28px;\\n left: -9px;\\n}\\n.v-input--selection-controls.v-input--dense:not(.v-input--switch) .v-input--selection-controls__ripple {\\n top: calc(50% - 21px);\\n}\\n.v-input--selection-controls.v-input {\\n flex: 0 1 auto;\\n}\\n.v-input--selection-controls.v-input--is-focused .v-input--selection-controls__ripple:before,\\n.v-input--selection-controls .v-radio--is-focused .v-input--selection-controls__ripple:before {\\n background: currentColor;\\n transform: scale(1.2);\\n}\\n.v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) .v-icon {\\n color: inherit;\\n}\\n.v-input--selection-controls.v-input--is-disabled:not(.v-input--is-readonly) {\\n pointer-events: none;\\n}\\n\\n.v-input--selection-controls__input:hover .v-input--selection-controls__ripple:before {\\n background: currentColor;\\n transform: scale(1.2);\\n transition: none;\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/styles/components/_selection-controls.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/vuetify/src/styles/main.sass": /*!***************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3!./node_modules/vuetify/src/styles/main.sass ***! \***************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \"@charset \\\"UTF-8\\\";\\n@keyframes v-shake {\\n 59% {\\n margin-left: 0;\\n }\\n 60%, 80% {\\n margin-left: 2px;\\n }\\n 70%, 90% {\\n margin-left: -2px;\\n }\\n}\\n.v-application .black {\\n background-color: #000000 !important;\\n border-color: #000000 !important;\\n}\\n\\n.v-application .black--text {\\n color: #000000 !important;\\n caret-color: #000000 !important;\\n}\\n\\n.v-application .white {\\n background-color: #FFFFFF !important;\\n border-color: #FFFFFF !important;\\n}\\n\\n.v-application .white--text {\\n color: #FFFFFF !important;\\n caret-color: #FFFFFF !important;\\n}\\n\\n.v-application .transparent {\\n background-color: transparent !important;\\n border-color: transparent !important;\\n}\\n\\n.v-application .transparent--text {\\n color: transparent !important;\\n caret-color: transparent !important;\\n}\\n\\n.v-application .red {\\n background-color: #F44336 !important;\\n border-color: #F44336 !important;\\n}\\n\\n.v-application .red--text {\\n color: #F44336 !important;\\n caret-color: #F44336 !important;\\n}\\n\\n.v-application .red.lighten-5 {\\n background-color: #FFEBEE !important;\\n border-color: #FFEBEE !important;\\n}\\n\\n.v-application .red--text.text--lighten-5 {\\n color: #FFEBEE !important;\\n caret-color: #FFEBEE !important;\\n}\\n\\n.v-application .red.lighten-4 {\\n background-color: #FFCDD2 !important;\\n border-color: #FFCDD2 !important;\\n}\\n\\n.v-application .red--text.text--lighten-4 {\\n color: #FFCDD2 !important;\\n caret-color: #FFCDD2 !important;\\n}\\n\\n.v-application .red.lighten-3 {\\n background-color: #EF9A9A !important;\\n border-color: #EF9A9A !important;\\n}\\n\\n.v-application .red--text.text--lighten-3 {\\n color: #EF9A9A !important;\\n caret-color: #EF9A9A !important;\\n}\\n\\n.v-application .red.lighten-2 {\\n background-color: #E57373 !important;\\n border-color: #E57373 !important;\\n}\\n\\n.v-application .red--text.text--lighten-2 {\\n color: #E57373 !important;\\n caret-color: #E57373 !important;\\n}\\n\\n.v-application .red.lighten-1 {\\n background-color: #EF5350 !important;\\n border-color: #EF5350 !important;\\n}\\n\\n.v-application .red--text.text--lighten-1 {\\n color: #EF5350 !important;\\n caret-color: #EF5350 !important;\\n}\\n\\n.v-application .red.darken-1 {\\n background-color: #E53935 !important;\\n border-color: #E53935 !important;\\n}\\n\\n.v-application .red--text.text--darken-1 {\\n color: #E53935 !important;\\n caret-color: #E53935 !important;\\n}\\n\\n.v-application .red.darken-2 {\\n background-color: #D32F2F !important;\\n border-color: #D32F2F !important;\\n}\\n\\n.v-application .red--text.text--darken-2 {\\n color: #D32F2F !important;\\n caret-color: #D32F2F !important;\\n}\\n\\n.v-application .red.darken-3 {\\n background-color: #C62828 !important;\\n border-color: #C62828 !important;\\n}\\n\\n.v-application .red--text.text--darken-3 {\\n color: #C62828 !important;\\n caret-color: #C62828 !important;\\n}\\n\\n.v-application .red.darken-4 {\\n background-color: #B71C1C !important;\\n border-color: #B71C1C !important;\\n}\\n\\n.v-application .red--text.text--darken-4 {\\n color: #B71C1C !important;\\n caret-color: #B71C1C !important;\\n}\\n\\n.v-application .red.accent-1 {\\n background-color: #FF8A80 !important;\\n border-color: #FF8A80 !important;\\n}\\n\\n.v-application .red--text.text--accent-1 {\\n color: #FF8A80 !important;\\n caret-color: #FF8A80 !important;\\n}\\n\\n.v-application .red.accent-2 {\\n background-color: #FF5252 !important;\\n border-color: #FF5252 !important;\\n}\\n\\n.v-application .red--text.text--accent-2 {\\n color: #FF5252 !important;\\n caret-color: #FF5252 !important;\\n}\\n\\n.v-application .red.accent-3 {\\n background-color: #FF1744 !important;\\n border-color: #FF1744 !important;\\n}\\n\\n.v-application .red--text.text--accent-3 {\\n color: #FF1744 !important;\\n caret-color: #FF1744 !important;\\n}\\n\\n.v-application .red.accent-4 {\\n background-color: #D50000 !important;\\n border-color: #D50000 !important;\\n}\\n\\n.v-application .red--text.text--accent-4 {\\n color: #D50000 !important;\\n caret-color: #D50000 !important;\\n}\\n\\n.v-application .pink {\\n background-color: #e91e63 !important;\\n border-color: #e91e63 !important;\\n}\\n\\n.v-application .pink--text {\\n color: #e91e63 !important;\\n caret-color: #e91e63 !important;\\n}\\n\\n.v-application .pink.lighten-5 {\\n background-color: #fce4ec !important;\\n border-color: #fce4ec !important;\\n}\\n\\n.v-application .pink--text.text--lighten-5 {\\n color: #fce4ec !important;\\n caret-color: #fce4ec !important;\\n}\\n\\n.v-application .pink.lighten-4 {\\n background-color: #f8bbd0 !important;\\n border-color: #f8bbd0 !important;\\n}\\n\\n.v-application .pink--text.text--lighten-4 {\\n color: #f8bbd0 !important;\\n caret-color: #f8bbd0 !important;\\n}\\n\\n.v-application .pink.lighten-3 {\\n background-color: #f48fb1 !important;\\n border-color: #f48fb1 !important;\\n}\\n\\n.v-application .pink--text.text--lighten-3 {\\n color: #f48fb1 !important;\\n caret-color: #f48fb1 !important;\\n}\\n\\n.v-application .pink.lighten-2 {\\n background-color: #f06292 !important;\\n border-color: #f06292 !important;\\n}\\n\\n.v-application .pink--text.text--lighten-2 {\\n color: #f06292 !important;\\n caret-color: #f06292 !important;\\n}\\n\\n.v-application .pink.lighten-1 {\\n background-color: #ec407a !important;\\n border-color: #ec407a !important;\\n}\\n\\n.v-application .pink--text.text--lighten-1 {\\n color: #ec407a !important;\\n caret-color: #ec407a !important;\\n}\\n\\n.v-application .pink.darken-1 {\\n background-color: #d81b60 !important;\\n border-color: #d81b60 !important;\\n}\\n\\n.v-application .pink--text.text--darken-1 {\\n color: #d81b60 !important;\\n caret-color: #d81b60 !important;\\n}\\n\\n.v-application .pink.darken-2 {\\n background-color: #c2185b !important;\\n border-color: #c2185b !important;\\n}\\n\\n.v-application .pink--text.text--darken-2 {\\n color: #c2185b !important;\\n caret-color: #c2185b !important;\\n}\\n\\n.v-application .pink.darken-3 {\\n background-color: #ad1457 !important;\\n border-color: #ad1457 !important;\\n}\\n\\n.v-application .pink--text.text--darken-3 {\\n color: #ad1457 !important;\\n caret-color: #ad1457 !important;\\n}\\n\\n.v-application .pink.darken-4 {\\n background-color: #880e4f !important;\\n border-color: #880e4f !important;\\n}\\n\\n.v-application .pink--text.text--darken-4 {\\n color: #880e4f !important;\\n caret-color: #880e4f !important;\\n}\\n\\n.v-application .pink.accent-1 {\\n background-color: #ff80ab !important;\\n border-color: #ff80ab !important;\\n}\\n\\n.v-application .pink--text.text--accent-1 {\\n color: #ff80ab !important;\\n caret-color: #ff80ab !important;\\n}\\n\\n.v-application .pink.accent-2 {\\n background-color: #ff4081 !important;\\n border-color: #ff4081 !important;\\n}\\n\\n.v-application .pink--text.text--accent-2 {\\n color: #ff4081 !important;\\n caret-color: #ff4081 !important;\\n}\\n\\n.v-application .pink.accent-3 {\\n background-color: #f50057 !important;\\n border-color: #f50057 !important;\\n}\\n\\n.v-application .pink--text.text--accent-3 {\\n color: #f50057 !important;\\n caret-color: #f50057 !important;\\n}\\n\\n.v-application .pink.accent-4 {\\n background-color: #c51162 !important;\\n border-color: #c51162 !important;\\n}\\n\\n.v-application .pink--text.text--accent-4 {\\n color: #c51162 !important;\\n caret-color: #c51162 !important;\\n}\\n\\n.v-application .purple {\\n background-color: #9c27b0 !important;\\n border-color: #9c27b0 !important;\\n}\\n\\n.v-application .purple--text {\\n color: #9c27b0 !important;\\n caret-color: #9c27b0 !important;\\n}\\n\\n.v-application .purple.lighten-5 {\\n background-color: #f3e5f5 !important;\\n border-color: #f3e5f5 !important;\\n}\\n\\n.v-application .purple--text.text--lighten-5 {\\n color: #f3e5f5 !important;\\n caret-color: #f3e5f5 !important;\\n}\\n\\n.v-application .purple.lighten-4 {\\n background-color: #e1bee7 !important;\\n border-color: #e1bee7 !important;\\n}\\n\\n.v-application .purple--text.text--lighten-4 {\\n color: #e1bee7 !important;\\n caret-color: #e1bee7 !important;\\n}\\n\\n.v-application .purple.lighten-3 {\\n background-color: #ce93d8 !important;\\n border-color: #ce93d8 !important;\\n}\\n\\n.v-application .purple--text.text--lighten-3 {\\n color: #ce93d8 !important;\\n caret-color: #ce93d8 !important;\\n}\\n\\n.v-application .purple.lighten-2 {\\n background-color: #ba68c8 !important;\\n border-color: #ba68c8 !important;\\n}\\n\\n.v-application .purple--text.text--lighten-2 {\\n color: #ba68c8 !important;\\n caret-color: #ba68c8 !important;\\n}\\n\\n.v-application .purple.lighten-1 {\\n background-color: #ab47bc !important;\\n border-color: #ab47bc !important;\\n}\\n\\n.v-application .purple--text.text--lighten-1 {\\n color: #ab47bc !important;\\n caret-color: #ab47bc !important;\\n}\\n\\n.v-application .purple.darken-1 {\\n background-color: #8e24aa !important;\\n border-color: #8e24aa !important;\\n}\\n\\n.v-application .purple--text.text--darken-1 {\\n color: #8e24aa !important;\\n caret-color: #8e24aa !important;\\n}\\n\\n.v-application .purple.darken-2 {\\n background-color: #7b1fa2 !important;\\n border-color: #7b1fa2 !important;\\n}\\n\\n.v-application .purple--text.text--darken-2 {\\n color: #7b1fa2 !important;\\n caret-color: #7b1fa2 !important;\\n}\\n\\n.v-application .purple.darken-3 {\\n background-color: #6a1b9a !important;\\n border-color: #6a1b9a !important;\\n}\\n\\n.v-application .purple--text.text--darken-3 {\\n color: #6a1b9a !important;\\n caret-color: #6a1b9a !important;\\n}\\n\\n.v-application .purple.darken-4 {\\n background-color: #4a148c !important;\\n border-color: #4a148c !important;\\n}\\n\\n.v-application .purple--text.text--darken-4 {\\n color: #4a148c !important;\\n caret-color: #4a148c !important;\\n}\\n\\n.v-application .purple.accent-1 {\\n background-color: #ea80fc !important;\\n border-color: #ea80fc !important;\\n}\\n\\n.v-application .purple--text.text--accent-1 {\\n color: #ea80fc !important;\\n caret-color: #ea80fc !important;\\n}\\n\\n.v-application .purple.accent-2 {\\n background-color: #e040fb !important;\\n border-color: #e040fb !important;\\n}\\n\\n.v-application .purple--text.text--accent-2 {\\n color: #e040fb !important;\\n caret-color: #e040fb !important;\\n}\\n\\n.v-application .purple.accent-3 {\\n background-color: #d500f9 !important;\\n border-color: #d500f9 !important;\\n}\\n\\n.v-application .purple--text.text--accent-3 {\\n color: #d500f9 !important;\\n caret-color: #d500f9 !important;\\n}\\n\\n.v-application .purple.accent-4 {\\n background-color: #aa00ff !important;\\n border-color: #aa00ff !important;\\n}\\n\\n.v-application .purple--text.text--accent-4 {\\n color: #aa00ff !important;\\n caret-color: #aa00ff !important;\\n}\\n\\n.v-application .deep-purple {\\n background-color: #673ab7 !important;\\n border-color: #673ab7 !important;\\n}\\n\\n.v-application .deep-purple--text {\\n color: #673ab7 !important;\\n caret-color: #673ab7 !important;\\n}\\n\\n.v-application .deep-purple.lighten-5 {\\n background-color: #ede7f6 !important;\\n border-color: #ede7f6 !important;\\n}\\n\\n.v-application .deep-purple--text.text--lighten-5 {\\n color: #ede7f6 !important;\\n caret-color: #ede7f6 !important;\\n}\\n\\n.v-application .deep-purple.lighten-4 {\\n background-color: #d1c4e9 !important;\\n border-color: #d1c4e9 !important;\\n}\\n\\n.v-application .deep-purple--text.text--lighten-4 {\\n color: #d1c4e9 !important;\\n caret-color: #d1c4e9 !important;\\n}\\n\\n.v-application .deep-purple.lighten-3 {\\n background-color: #b39ddb !important;\\n border-color: #b39ddb !important;\\n}\\n\\n.v-application .deep-purple--text.text--lighten-3 {\\n color: #b39ddb !important;\\n caret-color: #b39ddb !important;\\n}\\n\\n.v-application .deep-purple.lighten-2 {\\n background-color: #9575cd !important;\\n border-color: #9575cd !important;\\n}\\n\\n.v-application .deep-purple--text.text--lighten-2 {\\n color: #9575cd !important;\\n caret-color: #9575cd !important;\\n}\\n\\n.v-application .deep-purple.lighten-1 {\\n background-color: #7e57c2 !important;\\n border-color: #7e57c2 !important;\\n}\\n\\n.v-application .deep-purple--text.text--lighten-1 {\\n color: #7e57c2 !important;\\n caret-color: #7e57c2 !important;\\n}\\n\\n.v-application .deep-purple.darken-1 {\\n background-color: #5e35b1 !important;\\n border-color: #5e35b1 !important;\\n}\\n\\n.v-application .deep-purple--text.text--darken-1 {\\n color: #5e35b1 !important;\\n caret-color: #5e35b1 !important;\\n}\\n\\n.v-application .deep-purple.darken-2 {\\n background-color: #512da8 !important;\\n border-color: #512da8 !important;\\n}\\n\\n.v-application .deep-purple--text.text--darken-2 {\\n color: #512da8 !important;\\n caret-color: #512da8 !important;\\n}\\n\\n.v-application .deep-purple.darken-3 {\\n background-color: #4527a0 !important;\\n border-color: #4527a0 !important;\\n}\\n\\n.v-application .deep-purple--text.text--darken-3 {\\n color: #4527a0 !important;\\n caret-color: #4527a0 !important;\\n}\\n\\n.v-application .deep-purple.darken-4 {\\n background-color: #311b92 !important;\\n border-color: #311b92 !important;\\n}\\n\\n.v-application .deep-purple--text.text--darken-4 {\\n color: #311b92 !important;\\n caret-color: #311b92 !important;\\n}\\n\\n.v-application .deep-purple.accent-1 {\\n background-color: #b388ff !important;\\n border-color: #b388ff !important;\\n}\\n\\n.v-application .deep-purple--text.text--accent-1 {\\n color: #b388ff !important;\\n caret-color: #b388ff !important;\\n}\\n\\n.v-application .deep-purple.accent-2 {\\n background-color: #7c4dff !important;\\n border-color: #7c4dff !important;\\n}\\n\\n.v-application .deep-purple--text.text--accent-2 {\\n color: #7c4dff !important;\\n caret-color: #7c4dff !important;\\n}\\n\\n.v-application .deep-purple.accent-3 {\\n background-color: #651fff !important;\\n border-color: #651fff !important;\\n}\\n\\n.v-application .deep-purple--text.text--accent-3 {\\n color: #651fff !important;\\n caret-color: #651fff !important;\\n}\\n\\n.v-application .deep-purple.accent-4 {\\n background-color: #6200ea !important;\\n border-color: #6200ea !important;\\n}\\n\\n.v-application .deep-purple--text.text--accent-4 {\\n color: #6200ea !important;\\n caret-color: #6200ea !important;\\n}\\n\\n.v-application .indigo {\\n background-color: #3f51b5 !important;\\n border-color: #3f51b5 !important;\\n}\\n\\n.v-application .indigo--text {\\n color: #3f51b5 !important;\\n caret-color: #3f51b5 !important;\\n}\\n\\n.v-application .indigo.lighten-5 {\\n background-color: #e8eaf6 !important;\\n border-color: #e8eaf6 !important;\\n}\\n\\n.v-application .indigo--text.text--lighten-5 {\\n color: #e8eaf6 !important;\\n caret-color: #e8eaf6 !important;\\n}\\n\\n.v-application .indigo.lighten-4 {\\n background-color: #c5cae9 !important;\\n border-color: #c5cae9 !important;\\n}\\n\\n.v-application .indigo--text.text--lighten-4 {\\n color: #c5cae9 !important;\\n caret-color: #c5cae9 !important;\\n}\\n\\n.v-application .indigo.lighten-3 {\\n background-color: #9fa8da !important;\\n border-color: #9fa8da !important;\\n}\\n\\n.v-application .indigo--text.text--lighten-3 {\\n color: #9fa8da !important;\\n caret-color: #9fa8da !important;\\n}\\n\\n.v-application .indigo.lighten-2 {\\n background-color: #7986cb !important;\\n border-color: #7986cb !important;\\n}\\n\\n.v-application .indigo--text.text--lighten-2 {\\n color: #7986cb !important;\\n caret-color: #7986cb !important;\\n}\\n\\n.v-application .indigo.lighten-1 {\\n background-color: #5c6bc0 !important;\\n border-color: #5c6bc0 !important;\\n}\\n\\n.v-application .indigo--text.text--lighten-1 {\\n color: #5c6bc0 !important;\\n caret-color: #5c6bc0 !important;\\n}\\n\\n.v-application .indigo.darken-1 {\\n background-color: #3949ab !important;\\n border-color: #3949ab !important;\\n}\\n\\n.v-application .indigo--text.text--darken-1 {\\n color: #3949ab !important;\\n caret-color: #3949ab !important;\\n}\\n\\n.v-application .indigo.darken-2 {\\n background-color: #303f9f !important;\\n border-color: #303f9f !important;\\n}\\n\\n.v-application .indigo--text.text--darken-2 {\\n color: #303f9f !important;\\n caret-color: #303f9f !important;\\n}\\n\\n.v-application .indigo.darken-3 {\\n background-color: #283593 !important;\\n border-color: #283593 !important;\\n}\\n\\n.v-application .indigo--text.text--darken-3 {\\n color: #283593 !important;\\n caret-color: #283593 !important;\\n}\\n\\n.v-application .indigo.darken-4 {\\n background-color: #1a237e !important;\\n border-color: #1a237e !important;\\n}\\n\\n.v-application .indigo--text.text--darken-4 {\\n color: #1a237e !important;\\n caret-color: #1a237e !important;\\n}\\n\\n.v-application .indigo.accent-1 {\\n background-color: #8c9eff !important;\\n border-color: #8c9eff !important;\\n}\\n\\n.v-application .indigo--text.text--accent-1 {\\n color: #8c9eff !important;\\n caret-color: #8c9eff !important;\\n}\\n\\n.v-application .indigo.accent-2 {\\n background-color: #536dfe !important;\\n border-color: #536dfe !important;\\n}\\n\\n.v-application .indigo--text.text--accent-2 {\\n color: #536dfe !important;\\n caret-color: #536dfe !important;\\n}\\n\\n.v-application .indigo.accent-3 {\\n background-color: #3d5afe !important;\\n border-color: #3d5afe !important;\\n}\\n\\n.v-application .indigo--text.text--accent-3 {\\n color: #3d5afe !important;\\n caret-color: #3d5afe !important;\\n}\\n\\n.v-application .indigo.accent-4 {\\n background-color: #304ffe !important;\\n border-color: #304ffe !important;\\n}\\n\\n.v-application .indigo--text.text--accent-4 {\\n color: #304ffe !important;\\n caret-color: #304ffe !important;\\n}\\n\\n.v-application .blue {\\n background-color: #2196F3 !important;\\n border-color: #2196F3 !important;\\n}\\n\\n.v-application .blue--text {\\n color: #2196F3 !important;\\n caret-color: #2196F3 !important;\\n}\\n\\n.v-application .blue.lighten-5 {\\n background-color: #E3F2FD !important;\\n border-color: #E3F2FD !important;\\n}\\n\\n.v-application .blue--text.text--lighten-5 {\\n color: #E3F2FD !important;\\n caret-color: #E3F2FD !important;\\n}\\n\\n.v-application .blue.lighten-4 {\\n background-color: #BBDEFB !important;\\n border-color: #BBDEFB !important;\\n}\\n\\n.v-application .blue--text.text--lighten-4 {\\n color: #BBDEFB !important;\\n caret-color: #BBDEFB !important;\\n}\\n\\n.v-application .blue.lighten-3 {\\n background-color: #90CAF9 !important;\\n border-color: #90CAF9 !important;\\n}\\n\\n.v-application .blue--text.text--lighten-3 {\\n color: #90CAF9 !important;\\n caret-color: #90CAF9 !important;\\n}\\n\\n.v-application .blue.lighten-2 {\\n background-color: #64B5F6 !important;\\n border-color: #64B5F6 !important;\\n}\\n\\n.v-application .blue--text.text--lighten-2 {\\n color: #64B5F6 !important;\\n caret-color: #64B5F6 !important;\\n}\\n\\n.v-application .blue.lighten-1 {\\n background-color: #42A5F5 !important;\\n border-color: #42A5F5 !important;\\n}\\n\\n.v-application .blue--text.text--lighten-1 {\\n color: #42A5F5 !important;\\n caret-color: #42A5F5 !important;\\n}\\n\\n.v-application .blue.darken-1 {\\n background-color: #1E88E5 !important;\\n border-color: #1E88E5 !important;\\n}\\n\\n.v-application .blue--text.text--darken-1 {\\n color: #1E88E5 !important;\\n caret-color: #1E88E5 !important;\\n}\\n\\n.v-application .blue.darken-2 {\\n background-color: #1976D2 !important;\\n border-color: #1976D2 !important;\\n}\\n\\n.v-application .blue--text.text--darken-2 {\\n color: #1976D2 !important;\\n caret-color: #1976D2 !important;\\n}\\n\\n.v-application .blue.darken-3 {\\n background-color: #1565C0 !important;\\n border-color: #1565C0 !important;\\n}\\n\\n.v-application .blue--text.text--darken-3 {\\n color: #1565C0 !important;\\n caret-color: #1565C0 !important;\\n}\\n\\n.v-application .blue.darken-4 {\\n background-color: #0D47A1 !important;\\n border-color: #0D47A1 !important;\\n}\\n\\n.v-application .blue--text.text--darken-4 {\\n color: #0D47A1 !important;\\n caret-color: #0D47A1 !important;\\n}\\n\\n.v-application .blue.accent-1 {\\n background-color: #82B1FF !important;\\n border-color: #82B1FF !important;\\n}\\n\\n.v-application .blue--text.text--accent-1 {\\n color: #82B1FF !important;\\n caret-color: #82B1FF !important;\\n}\\n\\n.v-application .blue.accent-2 {\\n background-color: #448AFF !important;\\n border-color: #448AFF !important;\\n}\\n\\n.v-application .blue--text.text--accent-2 {\\n color: #448AFF !important;\\n caret-color: #448AFF !important;\\n}\\n\\n.v-application .blue.accent-3 {\\n background-color: #2979FF !important;\\n border-color: #2979FF !important;\\n}\\n\\n.v-application .blue--text.text--accent-3 {\\n color: #2979FF !important;\\n caret-color: #2979FF !important;\\n}\\n\\n.v-application .blue.accent-4 {\\n background-color: #2962FF !important;\\n border-color: #2962FF !important;\\n}\\n\\n.v-application .blue--text.text--accent-4 {\\n color: #2962FF !important;\\n caret-color: #2962FF !important;\\n}\\n\\n.v-application .light-blue {\\n background-color: #03a9f4 !important;\\n border-color: #03a9f4 !important;\\n}\\n\\n.v-application .light-blue--text {\\n color: #03a9f4 !important;\\n caret-color: #03a9f4 !important;\\n}\\n\\n.v-application .light-blue.lighten-5 {\\n background-color: #e1f5fe !important;\\n border-color: #e1f5fe !important;\\n}\\n\\n.v-application .light-blue--text.text--lighten-5 {\\n color: #e1f5fe !important;\\n caret-color: #e1f5fe !important;\\n}\\n\\n.v-application .light-blue.lighten-4 {\\n background-color: #b3e5fc !important;\\n border-color: #b3e5fc !important;\\n}\\n\\n.v-application .light-blue--text.text--lighten-4 {\\n color: #b3e5fc !important;\\n caret-color: #b3e5fc !important;\\n}\\n\\n.v-application .light-blue.lighten-3 {\\n background-color: #81d4fa !important;\\n border-color: #81d4fa !important;\\n}\\n\\n.v-application .light-blue--text.text--lighten-3 {\\n color: #81d4fa !important;\\n caret-color: #81d4fa !important;\\n}\\n\\n.v-application .light-blue.lighten-2 {\\n background-color: #4fc3f7 !important;\\n border-color: #4fc3f7 !important;\\n}\\n\\n.v-application .light-blue--text.text--lighten-2 {\\n color: #4fc3f7 !important;\\n caret-color: #4fc3f7 !important;\\n}\\n\\n.v-application .light-blue.lighten-1 {\\n background-color: #29b6f6 !important;\\n border-color: #29b6f6 !important;\\n}\\n\\n.v-application .light-blue--text.text--lighten-1 {\\n color: #29b6f6 !important;\\n caret-color: #29b6f6 !important;\\n}\\n\\n.v-application .light-blue.darken-1 {\\n background-color: #039be5 !important;\\n border-color: #039be5 !important;\\n}\\n\\n.v-application .light-blue--text.text--darken-1 {\\n color: #039be5 !important;\\n caret-color: #039be5 !important;\\n}\\n\\n.v-application .light-blue.darken-2 {\\n background-color: #0288d1 !important;\\n border-color: #0288d1 !important;\\n}\\n\\n.v-application .light-blue--text.text--darken-2 {\\n color: #0288d1 !important;\\n caret-color: #0288d1 !important;\\n}\\n\\n.v-application .light-blue.darken-3 {\\n background-color: #0277bd !important;\\n border-color: #0277bd !important;\\n}\\n\\n.v-application .light-blue--text.text--darken-3 {\\n color: #0277bd !important;\\n caret-color: #0277bd !important;\\n}\\n\\n.v-application .light-blue.darken-4 {\\n background-color: #01579b !important;\\n border-color: #01579b !important;\\n}\\n\\n.v-application .light-blue--text.text--darken-4 {\\n color: #01579b !important;\\n caret-color: #01579b !important;\\n}\\n\\n.v-application .light-blue.accent-1 {\\n background-color: #80d8ff !important;\\n border-color: #80d8ff !important;\\n}\\n\\n.v-application .light-blue--text.text--accent-1 {\\n color: #80d8ff !important;\\n caret-color: #80d8ff !important;\\n}\\n\\n.v-application .light-blue.accent-2 {\\n background-color: #40c4ff !important;\\n border-color: #40c4ff !important;\\n}\\n\\n.v-application .light-blue--text.text--accent-2 {\\n color: #40c4ff !important;\\n caret-color: #40c4ff !important;\\n}\\n\\n.v-application .light-blue.accent-3 {\\n background-color: #00b0ff !important;\\n border-color: #00b0ff !important;\\n}\\n\\n.v-application .light-blue--text.text--accent-3 {\\n color: #00b0ff !important;\\n caret-color: #00b0ff !important;\\n}\\n\\n.v-application .light-blue.accent-4 {\\n background-color: #0091ea !important;\\n border-color: #0091ea !important;\\n}\\n\\n.v-application .light-blue--text.text--accent-4 {\\n color: #0091ea !important;\\n caret-color: #0091ea !important;\\n}\\n\\n.v-application .cyan {\\n background-color: #00bcd4 !important;\\n border-color: #00bcd4 !important;\\n}\\n\\n.v-application .cyan--text {\\n color: #00bcd4 !important;\\n caret-color: #00bcd4 !important;\\n}\\n\\n.v-application .cyan.lighten-5 {\\n background-color: #e0f7fa !important;\\n border-color: #e0f7fa !important;\\n}\\n\\n.v-application .cyan--text.text--lighten-5 {\\n color: #e0f7fa !important;\\n caret-color: #e0f7fa !important;\\n}\\n\\n.v-application .cyan.lighten-4 {\\n background-color: #b2ebf2 !important;\\n border-color: #b2ebf2 !important;\\n}\\n\\n.v-application .cyan--text.text--lighten-4 {\\n color: #b2ebf2 !important;\\n caret-color: #b2ebf2 !important;\\n}\\n\\n.v-application .cyan.lighten-3 {\\n background-color: #80deea !important;\\n border-color: #80deea !important;\\n}\\n\\n.v-application .cyan--text.text--lighten-3 {\\n color: #80deea !important;\\n caret-color: #80deea !important;\\n}\\n\\n.v-application .cyan.lighten-2 {\\n background-color: #4dd0e1 !important;\\n border-color: #4dd0e1 !important;\\n}\\n\\n.v-application .cyan--text.text--lighten-2 {\\n color: #4dd0e1 !important;\\n caret-color: #4dd0e1 !important;\\n}\\n\\n.v-application .cyan.lighten-1 {\\n background-color: #26c6da !important;\\n border-color: #26c6da !important;\\n}\\n\\n.v-application .cyan--text.text--lighten-1 {\\n color: #26c6da !important;\\n caret-color: #26c6da !important;\\n}\\n\\n.v-application .cyan.darken-1 {\\n background-color: #00acc1 !important;\\n border-color: #00acc1 !important;\\n}\\n\\n.v-application .cyan--text.text--darken-1 {\\n color: #00acc1 !important;\\n caret-color: #00acc1 !important;\\n}\\n\\n.v-application .cyan.darken-2 {\\n background-color: #0097a7 !important;\\n border-color: #0097a7 !important;\\n}\\n\\n.v-application .cyan--text.text--darken-2 {\\n color: #0097a7 !important;\\n caret-color: #0097a7 !important;\\n}\\n\\n.v-application .cyan.darken-3 {\\n background-color: #00838f !important;\\n border-color: #00838f !important;\\n}\\n\\n.v-application .cyan--text.text--darken-3 {\\n color: #00838f !important;\\n caret-color: #00838f !important;\\n}\\n\\n.v-application .cyan.darken-4 {\\n background-color: #006064 !important;\\n border-color: #006064 !important;\\n}\\n\\n.v-application .cyan--text.text--darken-4 {\\n color: #006064 !important;\\n caret-color: #006064 !important;\\n}\\n\\n.v-application .cyan.accent-1 {\\n background-color: #84ffff !important;\\n border-color: #84ffff !important;\\n}\\n\\n.v-application .cyan--text.text--accent-1 {\\n color: #84ffff !important;\\n caret-color: #84ffff !important;\\n}\\n\\n.v-application .cyan.accent-2 {\\n background-color: #18ffff !important;\\n border-color: #18ffff !important;\\n}\\n\\n.v-application .cyan--text.text--accent-2 {\\n color: #18ffff !important;\\n caret-color: #18ffff !important;\\n}\\n\\n.v-application .cyan.accent-3 {\\n background-color: #00e5ff !important;\\n border-color: #00e5ff !important;\\n}\\n\\n.v-application .cyan--text.text--accent-3 {\\n color: #00e5ff !important;\\n caret-color: #00e5ff !important;\\n}\\n\\n.v-application .cyan.accent-4 {\\n background-color: #00b8d4 !important;\\n border-color: #00b8d4 !important;\\n}\\n\\n.v-application .cyan--text.text--accent-4 {\\n color: #00b8d4 !important;\\n caret-color: #00b8d4 !important;\\n}\\n\\n.v-application .teal {\\n background-color: #009688 !important;\\n border-color: #009688 !important;\\n}\\n\\n.v-application .teal--text {\\n color: #009688 !important;\\n caret-color: #009688 !important;\\n}\\n\\n.v-application .teal.lighten-5 {\\n background-color: #e0f2f1 !important;\\n border-color: #e0f2f1 !important;\\n}\\n\\n.v-application .teal--text.text--lighten-5 {\\n color: #e0f2f1 !important;\\n caret-color: #e0f2f1 !important;\\n}\\n\\n.v-application .teal.lighten-4 {\\n background-color: #b2dfdb !important;\\n border-color: #b2dfdb !important;\\n}\\n\\n.v-application .teal--text.text--lighten-4 {\\n color: #b2dfdb !important;\\n caret-color: #b2dfdb !important;\\n}\\n\\n.v-application .teal.lighten-3 {\\n background-color: #80cbc4 !important;\\n border-color: #80cbc4 !important;\\n}\\n\\n.v-application .teal--text.text--lighten-3 {\\n color: #80cbc4 !important;\\n caret-color: #80cbc4 !important;\\n}\\n\\n.v-application .teal.lighten-2 {\\n background-color: #4db6ac !important;\\n border-color: #4db6ac !important;\\n}\\n\\n.v-application .teal--text.text--lighten-2 {\\n color: #4db6ac !important;\\n caret-color: #4db6ac !important;\\n}\\n\\n.v-application .teal.lighten-1 {\\n background-color: #26a69a !important;\\n border-color: #26a69a !important;\\n}\\n\\n.v-application .teal--text.text--lighten-1 {\\n color: #26a69a !important;\\n caret-color: #26a69a !important;\\n}\\n\\n.v-application .teal.darken-1 {\\n background-color: #00897b !important;\\n border-color: #00897b !important;\\n}\\n\\n.v-application .teal--text.text--darken-1 {\\n color: #00897b !important;\\n caret-color: #00897b !important;\\n}\\n\\n.v-application .teal.darken-2 {\\n background-color: #00796b !important;\\n border-color: #00796b !important;\\n}\\n\\n.v-application .teal--text.text--darken-2 {\\n color: #00796b !important;\\n caret-color: #00796b !important;\\n}\\n\\n.v-application .teal.darken-3 {\\n background-color: #00695c !important;\\n border-color: #00695c !important;\\n}\\n\\n.v-application .teal--text.text--darken-3 {\\n color: #00695c !important;\\n caret-color: #00695c !important;\\n}\\n\\n.v-application .teal.darken-4 {\\n background-color: #004d40 !important;\\n border-color: #004d40 !important;\\n}\\n\\n.v-application .teal--text.text--darken-4 {\\n color: #004d40 !important;\\n caret-color: #004d40 !important;\\n}\\n\\n.v-application .teal.accent-1 {\\n background-color: #a7ffeb !important;\\n border-color: #a7ffeb !important;\\n}\\n\\n.v-application .teal--text.text--accent-1 {\\n color: #a7ffeb !important;\\n caret-color: #a7ffeb !important;\\n}\\n\\n.v-application .teal.accent-2 {\\n background-color: #64ffda !important;\\n border-color: #64ffda !important;\\n}\\n\\n.v-application .teal--text.text--accent-2 {\\n color: #64ffda !important;\\n caret-color: #64ffda !important;\\n}\\n\\n.v-application .teal.accent-3 {\\n background-color: #1de9b6 !important;\\n border-color: #1de9b6 !important;\\n}\\n\\n.v-application .teal--text.text--accent-3 {\\n color: #1de9b6 !important;\\n caret-color: #1de9b6 !important;\\n}\\n\\n.v-application .teal.accent-4 {\\n background-color: #00bfa5 !important;\\n border-color: #00bfa5 !important;\\n}\\n\\n.v-application .teal--text.text--accent-4 {\\n color: #00bfa5 !important;\\n caret-color: #00bfa5 !important;\\n}\\n\\n.v-application .green {\\n background-color: #4CAF50 !important;\\n border-color: #4CAF50 !important;\\n}\\n\\n.v-application .green--text {\\n color: #4CAF50 !important;\\n caret-color: #4CAF50 !important;\\n}\\n\\n.v-application .green.lighten-5 {\\n background-color: #E8F5E9 !important;\\n border-color: #E8F5E9 !important;\\n}\\n\\n.v-application .green--text.text--lighten-5 {\\n color: #E8F5E9 !important;\\n caret-color: #E8F5E9 !important;\\n}\\n\\n.v-application .green.lighten-4 {\\n background-color: #C8E6C9 !important;\\n border-color: #C8E6C9 !important;\\n}\\n\\n.v-application .green--text.text--lighten-4 {\\n color: #C8E6C9 !important;\\n caret-color: #C8E6C9 !important;\\n}\\n\\n.v-application .green.lighten-3 {\\n background-color: #A5D6A7 !important;\\n border-color: #A5D6A7 !important;\\n}\\n\\n.v-application .green--text.text--lighten-3 {\\n color: #A5D6A7 !important;\\n caret-color: #A5D6A7 !important;\\n}\\n\\n.v-application .green.lighten-2 {\\n background-color: #81C784 !important;\\n border-color: #81C784 !important;\\n}\\n\\n.v-application .green--text.text--lighten-2 {\\n color: #81C784 !important;\\n caret-color: #81C784 !important;\\n}\\n\\n.v-application .green.lighten-1 {\\n background-color: #66BB6A !important;\\n border-color: #66BB6A !important;\\n}\\n\\n.v-application .green--text.text--lighten-1 {\\n color: #66BB6A !important;\\n caret-color: #66BB6A !important;\\n}\\n\\n.v-application .green.darken-1 {\\n background-color: #43A047 !important;\\n border-color: #43A047 !important;\\n}\\n\\n.v-application .green--text.text--darken-1 {\\n color: #43A047 !important;\\n caret-color: #43A047 !important;\\n}\\n\\n.v-application .green.darken-2 {\\n background-color: #388E3C !important;\\n border-color: #388E3C !important;\\n}\\n\\n.v-application .green--text.text--darken-2 {\\n color: #388E3C !important;\\n caret-color: #388E3C !important;\\n}\\n\\n.v-application .green.darken-3 {\\n background-color: #2E7D32 !important;\\n border-color: #2E7D32 !important;\\n}\\n\\n.v-application .green--text.text--darken-3 {\\n color: #2E7D32 !important;\\n caret-color: #2E7D32 !important;\\n}\\n\\n.v-application .green.darken-4 {\\n background-color: #1B5E20 !important;\\n border-color: #1B5E20 !important;\\n}\\n\\n.v-application .green--text.text--darken-4 {\\n color: #1B5E20 !important;\\n caret-color: #1B5E20 !important;\\n}\\n\\n.v-application .green.accent-1 {\\n background-color: #B9F6CA !important;\\n border-color: #B9F6CA !important;\\n}\\n\\n.v-application .green--text.text--accent-1 {\\n color: #B9F6CA !important;\\n caret-color: #B9F6CA !important;\\n}\\n\\n.v-application .green.accent-2 {\\n background-color: #69F0AE !important;\\n border-color: #69F0AE !important;\\n}\\n\\n.v-application .green--text.text--accent-2 {\\n color: #69F0AE !important;\\n caret-color: #69F0AE !important;\\n}\\n\\n.v-application .green.accent-3 {\\n background-color: #00E676 !important;\\n border-color: #00E676 !important;\\n}\\n\\n.v-application .green--text.text--accent-3 {\\n color: #00E676 !important;\\n caret-color: #00E676 !important;\\n}\\n\\n.v-application .green.accent-4 {\\n background-color: #00C853 !important;\\n border-color: #00C853 !important;\\n}\\n\\n.v-application .green--text.text--accent-4 {\\n color: #00C853 !important;\\n caret-color: #00C853 !important;\\n}\\n\\n.v-application .light-green {\\n background-color: #8bc34a !important;\\n border-color: #8bc34a !important;\\n}\\n\\n.v-application .light-green--text {\\n color: #8bc34a !important;\\n caret-color: #8bc34a !important;\\n}\\n\\n.v-application .light-green.lighten-5 {\\n background-color: #f1f8e9 !important;\\n border-color: #f1f8e9 !important;\\n}\\n\\n.v-application .light-green--text.text--lighten-5 {\\n color: #f1f8e9 !important;\\n caret-color: #f1f8e9 !important;\\n}\\n\\n.v-application .light-green.lighten-4 {\\n background-color: #dcedc8 !important;\\n border-color: #dcedc8 !important;\\n}\\n\\n.v-application .light-green--text.text--lighten-4 {\\n color: #dcedc8 !important;\\n caret-color: #dcedc8 !important;\\n}\\n\\n.v-application .light-green.lighten-3 {\\n background-color: #c5e1a5 !important;\\n border-color: #c5e1a5 !important;\\n}\\n\\n.v-application .light-green--text.text--lighten-3 {\\n color: #c5e1a5 !important;\\n caret-color: #c5e1a5 !important;\\n}\\n\\n.v-application .light-green.lighten-2 {\\n background-color: #aed581 !important;\\n border-color: #aed581 !important;\\n}\\n\\n.v-application .light-green--text.text--lighten-2 {\\n color: #aed581 !important;\\n caret-color: #aed581 !important;\\n}\\n\\n.v-application .light-green.lighten-1 {\\n background-color: #9ccc65 !important;\\n border-color: #9ccc65 !important;\\n}\\n\\n.v-application .light-green--text.text--lighten-1 {\\n color: #9ccc65 !important;\\n caret-color: #9ccc65 !important;\\n}\\n\\n.v-application .light-green.darken-1 {\\n background-color: #7cb342 !important;\\n border-color: #7cb342 !important;\\n}\\n\\n.v-application .light-green--text.text--darken-1 {\\n color: #7cb342 !important;\\n caret-color: #7cb342 !important;\\n}\\n\\n.v-application .light-green.darken-2 {\\n background-color: #689f38 !important;\\n border-color: #689f38 !important;\\n}\\n\\n.v-application .light-green--text.text--darken-2 {\\n color: #689f38 !important;\\n caret-color: #689f38 !important;\\n}\\n\\n.v-application .light-green.darken-3 {\\n background-color: #558b2f !important;\\n border-color: #558b2f !important;\\n}\\n\\n.v-application .light-green--text.text--darken-3 {\\n color: #558b2f !important;\\n caret-color: #558b2f !important;\\n}\\n\\n.v-application .light-green.darken-4 {\\n background-color: #33691e !important;\\n border-color: #33691e !important;\\n}\\n\\n.v-application .light-green--text.text--darken-4 {\\n color: #33691e !important;\\n caret-color: #33691e !important;\\n}\\n\\n.v-application .light-green.accent-1 {\\n background-color: #ccff90 !important;\\n border-color: #ccff90 !important;\\n}\\n\\n.v-application .light-green--text.text--accent-1 {\\n color: #ccff90 !important;\\n caret-color: #ccff90 !important;\\n}\\n\\n.v-application .light-green.accent-2 {\\n background-color: #b2ff59 !important;\\n border-color: #b2ff59 !important;\\n}\\n\\n.v-application .light-green--text.text--accent-2 {\\n color: #b2ff59 !important;\\n caret-color: #b2ff59 !important;\\n}\\n\\n.v-application .light-green.accent-3 {\\n background-color: #76ff03 !important;\\n border-color: #76ff03 !important;\\n}\\n\\n.v-application .light-green--text.text--accent-3 {\\n color: #76ff03 !important;\\n caret-color: #76ff03 !important;\\n}\\n\\n.v-application .light-green.accent-4 {\\n background-color: #64dd17 !important;\\n border-color: #64dd17 !important;\\n}\\n\\n.v-application .light-green--text.text--accent-4 {\\n color: #64dd17 !important;\\n caret-color: #64dd17 !important;\\n}\\n\\n.v-application .lime {\\n background-color: #cddc39 !important;\\n border-color: #cddc39 !important;\\n}\\n\\n.v-application .lime--text {\\n color: #cddc39 !important;\\n caret-color: #cddc39 !important;\\n}\\n\\n.v-application .lime.lighten-5 {\\n background-color: #f9fbe7 !important;\\n border-color: #f9fbe7 !important;\\n}\\n\\n.v-application .lime--text.text--lighten-5 {\\n color: #f9fbe7 !important;\\n caret-color: #f9fbe7 !important;\\n}\\n\\n.v-application .lime.lighten-4 {\\n background-color: #f0f4c3 !important;\\n border-color: #f0f4c3 !important;\\n}\\n\\n.v-application .lime--text.text--lighten-4 {\\n color: #f0f4c3 !important;\\n caret-color: #f0f4c3 !important;\\n}\\n\\n.v-application .lime.lighten-3 {\\n background-color: #e6ee9c !important;\\n border-color: #e6ee9c !important;\\n}\\n\\n.v-application .lime--text.text--lighten-3 {\\n color: #e6ee9c !important;\\n caret-color: #e6ee9c !important;\\n}\\n\\n.v-application .lime.lighten-2 {\\n background-color: #dce775 !important;\\n border-color: #dce775 !important;\\n}\\n\\n.v-application .lime--text.text--lighten-2 {\\n color: #dce775 !important;\\n caret-color: #dce775 !important;\\n}\\n\\n.v-application .lime.lighten-1 {\\n background-color: #d4e157 !important;\\n border-color: #d4e157 !important;\\n}\\n\\n.v-application .lime--text.text--lighten-1 {\\n color: #d4e157 !important;\\n caret-color: #d4e157 !important;\\n}\\n\\n.v-application .lime.darken-1 {\\n background-color: #c0ca33 !important;\\n border-color: #c0ca33 !important;\\n}\\n\\n.v-application .lime--text.text--darken-1 {\\n color: #c0ca33 !important;\\n caret-color: #c0ca33 !important;\\n}\\n\\n.v-application .lime.darken-2 {\\n background-color: #afb42b !important;\\n border-color: #afb42b !important;\\n}\\n\\n.v-application .lime--text.text--darken-2 {\\n color: #afb42b !important;\\n caret-color: #afb42b !important;\\n}\\n\\n.v-application .lime.darken-3 {\\n background-color: #9e9d24 !important;\\n border-color: #9e9d24 !important;\\n}\\n\\n.v-application .lime--text.text--darken-3 {\\n color: #9e9d24 !important;\\n caret-color: #9e9d24 !important;\\n}\\n\\n.v-application .lime.darken-4 {\\n background-color: #827717 !important;\\n border-color: #827717 !important;\\n}\\n\\n.v-application .lime--text.text--darken-4 {\\n color: #827717 !important;\\n caret-color: #827717 !important;\\n}\\n\\n.v-application .lime.accent-1 {\\n background-color: #f4ff81 !important;\\n border-color: #f4ff81 !important;\\n}\\n\\n.v-application .lime--text.text--accent-1 {\\n color: #f4ff81 !important;\\n caret-color: #f4ff81 !important;\\n}\\n\\n.v-application .lime.accent-2 {\\n background-color: #eeff41 !important;\\n border-color: #eeff41 !important;\\n}\\n\\n.v-application .lime--text.text--accent-2 {\\n color: #eeff41 !important;\\n caret-color: #eeff41 !important;\\n}\\n\\n.v-application .lime.accent-3 {\\n background-color: #c6ff00 !important;\\n border-color: #c6ff00 !important;\\n}\\n\\n.v-application .lime--text.text--accent-3 {\\n color: #c6ff00 !important;\\n caret-color: #c6ff00 !important;\\n}\\n\\n.v-application .lime.accent-4 {\\n background-color: #aeea00 !important;\\n border-color: #aeea00 !important;\\n}\\n\\n.v-application .lime--text.text--accent-4 {\\n color: #aeea00 !important;\\n caret-color: #aeea00 !important;\\n}\\n\\n.v-application .yellow {\\n background-color: #ffeb3b !important;\\n border-color: #ffeb3b !important;\\n}\\n\\n.v-application .yellow--text {\\n color: #ffeb3b !important;\\n caret-color: #ffeb3b !important;\\n}\\n\\n.v-application .yellow.lighten-5 {\\n background-color: #fffde7 !important;\\n border-color: #fffde7 !important;\\n}\\n\\n.v-application .yellow--text.text--lighten-5 {\\n color: #fffde7 !important;\\n caret-color: #fffde7 !important;\\n}\\n\\n.v-application .yellow.lighten-4 {\\n background-color: #fff9c4 !important;\\n border-color: #fff9c4 !important;\\n}\\n\\n.v-application .yellow--text.text--lighten-4 {\\n color: #fff9c4 !important;\\n caret-color: #fff9c4 !important;\\n}\\n\\n.v-application .yellow.lighten-3 {\\n background-color: #fff59d !important;\\n border-color: #fff59d !important;\\n}\\n\\n.v-application .yellow--text.text--lighten-3 {\\n color: #fff59d !important;\\n caret-color: #fff59d !important;\\n}\\n\\n.v-application .yellow.lighten-2 {\\n background-color: #fff176 !important;\\n border-color: #fff176 !important;\\n}\\n\\n.v-application .yellow--text.text--lighten-2 {\\n color: #fff176 !important;\\n caret-color: #fff176 !important;\\n}\\n\\n.v-application .yellow.lighten-1 {\\n background-color: #ffee58 !important;\\n border-color: #ffee58 !important;\\n}\\n\\n.v-application .yellow--text.text--lighten-1 {\\n color: #ffee58 !important;\\n caret-color: #ffee58 !important;\\n}\\n\\n.v-application .yellow.darken-1 {\\n background-color: #fdd835 !important;\\n border-color: #fdd835 !important;\\n}\\n\\n.v-application .yellow--text.text--darken-1 {\\n color: #fdd835 !important;\\n caret-color: #fdd835 !important;\\n}\\n\\n.v-application .yellow.darken-2 {\\n background-color: #fbc02d !important;\\n border-color: #fbc02d !important;\\n}\\n\\n.v-application .yellow--text.text--darken-2 {\\n color: #fbc02d !important;\\n caret-color: #fbc02d !important;\\n}\\n\\n.v-application .yellow.darken-3 {\\n background-color: #f9a825 !important;\\n border-color: #f9a825 !important;\\n}\\n\\n.v-application .yellow--text.text--darken-3 {\\n color: #f9a825 !important;\\n caret-color: #f9a825 !important;\\n}\\n\\n.v-application .yellow.darken-4 {\\n background-color: #f57f17 !important;\\n border-color: #f57f17 !important;\\n}\\n\\n.v-application .yellow--text.text--darken-4 {\\n color: #f57f17 !important;\\n caret-color: #f57f17 !important;\\n}\\n\\n.v-application .yellow.accent-1 {\\n background-color: #ffff8d !important;\\n border-color: #ffff8d !important;\\n}\\n\\n.v-application .yellow--text.text--accent-1 {\\n color: #ffff8d !important;\\n caret-color: #ffff8d !important;\\n}\\n\\n.v-application .yellow.accent-2 {\\n background-color: #ffff00 !important;\\n border-color: #ffff00 !important;\\n}\\n\\n.v-application .yellow--text.text--accent-2 {\\n color: #ffff00 !important;\\n caret-color: #ffff00 !important;\\n}\\n\\n.v-application .yellow.accent-3 {\\n background-color: #ffea00 !important;\\n border-color: #ffea00 !important;\\n}\\n\\n.v-application .yellow--text.text--accent-3 {\\n color: #ffea00 !important;\\n caret-color: #ffea00 !important;\\n}\\n\\n.v-application .yellow.accent-4 {\\n background-color: #ffd600 !important;\\n border-color: #ffd600 !important;\\n}\\n\\n.v-application .yellow--text.text--accent-4 {\\n color: #ffd600 !important;\\n caret-color: #ffd600 !important;\\n}\\n\\n.v-application .amber {\\n background-color: #ffc107 !important;\\n border-color: #ffc107 !important;\\n}\\n\\n.v-application .amber--text {\\n color: #ffc107 !important;\\n caret-color: #ffc107 !important;\\n}\\n\\n.v-application .amber.lighten-5 {\\n background-color: #fff8e1 !important;\\n border-color: #fff8e1 !important;\\n}\\n\\n.v-application .amber--text.text--lighten-5 {\\n color: #fff8e1 !important;\\n caret-color: #fff8e1 !important;\\n}\\n\\n.v-application .amber.lighten-4 {\\n background-color: #ffecb3 !important;\\n border-color: #ffecb3 !important;\\n}\\n\\n.v-application .amber--text.text--lighten-4 {\\n color: #ffecb3 !important;\\n caret-color: #ffecb3 !important;\\n}\\n\\n.v-application .amber.lighten-3 {\\n background-color: #ffe082 !important;\\n border-color: #ffe082 !important;\\n}\\n\\n.v-application .amber--text.text--lighten-3 {\\n color: #ffe082 !important;\\n caret-color: #ffe082 !important;\\n}\\n\\n.v-application .amber.lighten-2 {\\n background-color: #ffd54f !important;\\n border-color: #ffd54f !important;\\n}\\n\\n.v-application .amber--text.text--lighten-2 {\\n color: #ffd54f !important;\\n caret-color: #ffd54f !important;\\n}\\n\\n.v-application .amber.lighten-1 {\\n background-color: #ffca28 !important;\\n border-color: #ffca28 !important;\\n}\\n\\n.v-application .amber--text.text--lighten-1 {\\n color: #ffca28 !important;\\n caret-color: #ffca28 !important;\\n}\\n\\n.v-application .amber.darken-1 {\\n background-color: #ffb300 !important;\\n border-color: #ffb300 !important;\\n}\\n\\n.v-application .amber--text.text--darken-1 {\\n color: #ffb300 !important;\\n caret-color: #ffb300 !important;\\n}\\n\\n.v-application .amber.darken-2 {\\n background-color: #ffa000 !important;\\n border-color: #ffa000 !important;\\n}\\n\\n.v-application .amber--text.text--darken-2 {\\n color: #ffa000 !important;\\n caret-color: #ffa000 !important;\\n}\\n\\n.v-application .amber.darken-3 {\\n background-color: #ff8f00 !important;\\n border-color: #ff8f00 !important;\\n}\\n\\n.v-application .amber--text.text--darken-3 {\\n color: #ff8f00 !important;\\n caret-color: #ff8f00 !important;\\n}\\n\\n.v-application .amber.darken-4 {\\n background-color: #ff6f00 !important;\\n border-color: #ff6f00 !important;\\n}\\n\\n.v-application .amber--text.text--darken-4 {\\n color: #ff6f00 !important;\\n caret-color: #ff6f00 !important;\\n}\\n\\n.v-application .amber.accent-1 {\\n background-color: #ffe57f !important;\\n border-color: #ffe57f !important;\\n}\\n\\n.v-application .amber--text.text--accent-1 {\\n color: #ffe57f !important;\\n caret-color: #ffe57f !important;\\n}\\n\\n.v-application .amber.accent-2 {\\n background-color: #ffd740 !important;\\n border-color: #ffd740 !important;\\n}\\n\\n.v-application .amber--text.text--accent-2 {\\n color: #ffd740 !important;\\n caret-color: #ffd740 !important;\\n}\\n\\n.v-application .amber.accent-3 {\\n background-color: #ffc400 !important;\\n border-color: #ffc400 !important;\\n}\\n\\n.v-application .amber--text.text--accent-3 {\\n color: #ffc400 !important;\\n caret-color: #ffc400 !important;\\n}\\n\\n.v-application .amber.accent-4 {\\n background-color: #ffab00 !important;\\n border-color: #ffab00 !important;\\n}\\n\\n.v-application .amber--text.text--accent-4 {\\n color: #ffab00 !important;\\n caret-color: #ffab00 !important;\\n}\\n\\n.v-application .orange {\\n background-color: #ff9800 !important;\\n border-color: #ff9800 !important;\\n}\\n\\n.v-application .orange--text {\\n color: #ff9800 !important;\\n caret-color: #ff9800 !important;\\n}\\n\\n.v-application .orange.lighten-5 {\\n background-color: #fff3e0 !important;\\n border-color: #fff3e0 !important;\\n}\\n\\n.v-application .orange--text.text--lighten-5 {\\n color: #fff3e0 !important;\\n caret-color: #fff3e0 !important;\\n}\\n\\n.v-application .orange.lighten-4 {\\n background-color: #ffe0b2 !important;\\n border-color: #ffe0b2 !important;\\n}\\n\\n.v-application .orange--text.text--lighten-4 {\\n color: #ffe0b2 !important;\\n caret-color: #ffe0b2 !important;\\n}\\n\\n.v-application .orange.lighten-3 {\\n background-color: #ffcc80 !important;\\n border-color: #ffcc80 !important;\\n}\\n\\n.v-application .orange--text.text--lighten-3 {\\n color: #ffcc80 !important;\\n caret-color: #ffcc80 !important;\\n}\\n\\n.v-application .orange.lighten-2 {\\n background-color: #ffb74d !important;\\n border-color: #ffb74d !important;\\n}\\n\\n.v-application .orange--text.text--lighten-2 {\\n color: #ffb74d !important;\\n caret-color: #ffb74d !important;\\n}\\n\\n.v-application .orange.lighten-1 {\\n background-color: #ffa726 !important;\\n border-color: #ffa726 !important;\\n}\\n\\n.v-application .orange--text.text--lighten-1 {\\n color: #ffa726 !important;\\n caret-color: #ffa726 !important;\\n}\\n\\n.v-application .orange.darken-1 {\\n background-color: #fb8c00 !important;\\n border-color: #fb8c00 !important;\\n}\\n\\n.v-application .orange--text.text--darken-1 {\\n color: #fb8c00 !important;\\n caret-color: #fb8c00 !important;\\n}\\n\\n.v-application .orange.darken-2 {\\n background-color: #f57c00 !important;\\n border-color: #f57c00 !important;\\n}\\n\\n.v-application .orange--text.text--darken-2 {\\n color: #f57c00 !important;\\n caret-color: #f57c00 !important;\\n}\\n\\n.v-application .orange.darken-3 {\\n background-color: #ef6c00 !important;\\n border-color: #ef6c00 !important;\\n}\\n\\n.v-application .orange--text.text--darken-3 {\\n color: #ef6c00 !important;\\n caret-color: #ef6c00 !important;\\n}\\n\\n.v-application .orange.darken-4 {\\n background-color: #e65100 !important;\\n border-color: #e65100 !important;\\n}\\n\\n.v-application .orange--text.text--darken-4 {\\n color: #e65100 !important;\\n caret-color: #e65100 !important;\\n}\\n\\n.v-application .orange.accent-1 {\\n background-color: #ffd180 !important;\\n border-color: #ffd180 !important;\\n}\\n\\n.v-application .orange--text.text--accent-1 {\\n color: #ffd180 !important;\\n caret-color: #ffd180 !important;\\n}\\n\\n.v-application .orange.accent-2 {\\n background-color: #ffab40 !important;\\n border-color: #ffab40 !important;\\n}\\n\\n.v-application .orange--text.text--accent-2 {\\n color: #ffab40 !important;\\n caret-color: #ffab40 !important;\\n}\\n\\n.v-application .orange.accent-3 {\\n background-color: #ff9100 !important;\\n border-color: #ff9100 !important;\\n}\\n\\n.v-application .orange--text.text--accent-3 {\\n color: #ff9100 !important;\\n caret-color: #ff9100 !important;\\n}\\n\\n.v-application .orange.accent-4 {\\n background-color: #ff6d00 !important;\\n border-color: #ff6d00 !important;\\n}\\n\\n.v-application .orange--text.text--accent-4 {\\n color: #ff6d00 !important;\\n caret-color: #ff6d00 !important;\\n}\\n\\n.v-application .deep-orange {\\n background-color: #ff5722 !important;\\n border-color: #ff5722 !important;\\n}\\n\\n.v-application .deep-orange--text {\\n color: #ff5722 !important;\\n caret-color: #ff5722 !important;\\n}\\n\\n.v-application .deep-orange.lighten-5 {\\n background-color: #fbe9e7 !important;\\n border-color: #fbe9e7 !important;\\n}\\n\\n.v-application .deep-orange--text.text--lighten-5 {\\n color: #fbe9e7 !important;\\n caret-color: #fbe9e7 !important;\\n}\\n\\n.v-application .deep-orange.lighten-4 {\\n background-color: #ffccbc !important;\\n border-color: #ffccbc !important;\\n}\\n\\n.v-application .deep-orange--text.text--lighten-4 {\\n color: #ffccbc !important;\\n caret-color: #ffccbc !important;\\n}\\n\\n.v-application .deep-orange.lighten-3 {\\n background-color: #ffab91 !important;\\n border-color: #ffab91 !important;\\n}\\n\\n.v-application .deep-orange--text.text--lighten-3 {\\n color: #ffab91 !important;\\n caret-color: #ffab91 !important;\\n}\\n\\n.v-application .deep-orange.lighten-2 {\\n background-color: #ff8a65 !important;\\n border-color: #ff8a65 !important;\\n}\\n\\n.v-application .deep-orange--text.text--lighten-2 {\\n color: #ff8a65 !important;\\n caret-color: #ff8a65 !important;\\n}\\n\\n.v-application .deep-orange.lighten-1 {\\n background-color: #ff7043 !important;\\n border-color: #ff7043 !important;\\n}\\n\\n.v-application .deep-orange--text.text--lighten-1 {\\n color: #ff7043 !important;\\n caret-color: #ff7043 !important;\\n}\\n\\n.v-application .deep-orange.darken-1 {\\n background-color: #f4511e !important;\\n border-color: #f4511e !important;\\n}\\n\\n.v-application .deep-orange--text.text--darken-1 {\\n color: #f4511e !important;\\n caret-color: #f4511e !important;\\n}\\n\\n.v-application .deep-orange.darken-2 {\\n background-color: #e64a19 !important;\\n border-color: #e64a19 !important;\\n}\\n\\n.v-application .deep-orange--text.text--darken-2 {\\n color: #e64a19 !important;\\n caret-color: #e64a19 !important;\\n}\\n\\n.v-application .deep-orange.darken-3 {\\n background-color: #d84315 !important;\\n border-color: #d84315 !important;\\n}\\n\\n.v-application .deep-orange--text.text--darken-3 {\\n color: #d84315 !important;\\n caret-color: #d84315 !important;\\n}\\n\\n.v-application .deep-orange.darken-4 {\\n background-color: #bf360c !important;\\n border-color: #bf360c !important;\\n}\\n\\n.v-application .deep-orange--text.text--darken-4 {\\n color: #bf360c !important;\\n caret-color: #bf360c !important;\\n}\\n\\n.v-application .deep-orange.accent-1 {\\n background-color: #ff9e80 !important;\\n border-color: #ff9e80 !important;\\n}\\n\\n.v-application .deep-orange--text.text--accent-1 {\\n color: #ff9e80 !important;\\n caret-color: #ff9e80 !important;\\n}\\n\\n.v-application .deep-orange.accent-2 {\\n background-color: #ff6e40 !important;\\n border-color: #ff6e40 !important;\\n}\\n\\n.v-application .deep-orange--text.text--accent-2 {\\n color: #ff6e40 !important;\\n caret-color: #ff6e40 !important;\\n}\\n\\n.v-application .deep-orange.accent-3 {\\n background-color: #ff3d00 !important;\\n border-color: #ff3d00 !important;\\n}\\n\\n.v-application .deep-orange--text.text--accent-3 {\\n color: #ff3d00 !important;\\n caret-color: #ff3d00 !important;\\n}\\n\\n.v-application .deep-orange.accent-4 {\\n background-color: #dd2c00 !important;\\n border-color: #dd2c00 !important;\\n}\\n\\n.v-application .deep-orange--text.text--accent-4 {\\n color: #dd2c00 !important;\\n caret-color: #dd2c00 !important;\\n}\\n\\n.v-application .brown {\\n background-color: #795548 !important;\\n border-color: #795548 !important;\\n}\\n\\n.v-application .brown--text {\\n color: #795548 !important;\\n caret-color: #795548 !important;\\n}\\n\\n.v-application .brown.lighten-5 {\\n background-color: #efebe9 !important;\\n border-color: #efebe9 !important;\\n}\\n\\n.v-application .brown--text.text--lighten-5 {\\n color: #efebe9 !important;\\n caret-color: #efebe9 !important;\\n}\\n\\n.v-application .brown.lighten-4 {\\n background-color: #d7ccc8 !important;\\n border-color: #d7ccc8 !important;\\n}\\n\\n.v-application .brown--text.text--lighten-4 {\\n color: #d7ccc8 !important;\\n caret-color: #d7ccc8 !important;\\n}\\n\\n.v-application .brown.lighten-3 {\\n background-color: #bcaaa4 !important;\\n border-color: #bcaaa4 !important;\\n}\\n\\n.v-application .brown--text.text--lighten-3 {\\n color: #bcaaa4 !important;\\n caret-color: #bcaaa4 !important;\\n}\\n\\n.v-application .brown.lighten-2 {\\n background-color: #a1887f !important;\\n border-color: #a1887f !important;\\n}\\n\\n.v-application .brown--text.text--lighten-2 {\\n color: #a1887f !important;\\n caret-color: #a1887f !important;\\n}\\n\\n.v-application .brown.lighten-1 {\\n background-color: #8d6e63 !important;\\n border-color: #8d6e63 !important;\\n}\\n\\n.v-application .brown--text.text--lighten-1 {\\n color: #8d6e63 !important;\\n caret-color: #8d6e63 !important;\\n}\\n\\n.v-application .brown.darken-1 {\\n background-color: #6d4c41 !important;\\n border-color: #6d4c41 !important;\\n}\\n\\n.v-application .brown--text.text--darken-1 {\\n color: #6d4c41 !important;\\n caret-color: #6d4c41 !important;\\n}\\n\\n.v-application .brown.darken-2 {\\n background-color: #5d4037 !important;\\n border-color: #5d4037 !important;\\n}\\n\\n.v-application .brown--text.text--darken-2 {\\n color: #5d4037 !important;\\n caret-color: #5d4037 !important;\\n}\\n\\n.v-application .brown.darken-3 {\\n background-color: #4e342e !important;\\n border-color: #4e342e !important;\\n}\\n\\n.v-application .brown--text.text--darken-3 {\\n color: #4e342e !important;\\n caret-color: #4e342e !important;\\n}\\n\\n.v-application .brown.darken-4 {\\n background-color: #3e2723 !important;\\n border-color: #3e2723 !important;\\n}\\n\\n.v-application .brown--text.text--darken-4 {\\n color: #3e2723 !important;\\n caret-color: #3e2723 !important;\\n}\\n\\n.v-application .blue-grey {\\n background-color: #607d8b !important;\\n border-color: #607d8b !important;\\n}\\n\\n.v-application .blue-grey--text {\\n color: #607d8b !important;\\n caret-color: #607d8b !important;\\n}\\n\\n.v-application .blue-grey.lighten-5 {\\n background-color: #eceff1 !important;\\n border-color: #eceff1 !important;\\n}\\n\\n.v-application .blue-grey--text.text--lighten-5 {\\n color: #eceff1 !important;\\n caret-color: #eceff1 !important;\\n}\\n\\n.v-application .blue-grey.lighten-4 {\\n background-color: #cfd8dc !important;\\n border-color: #cfd8dc !important;\\n}\\n\\n.v-application .blue-grey--text.text--lighten-4 {\\n color: #cfd8dc !important;\\n caret-color: #cfd8dc !important;\\n}\\n\\n.v-application .blue-grey.lighten-3 {\\n background-color: #b0bec5 !important;\\n border-color: #b0bec5 !important;\\n}\\n\\n.v-application .blue-grey--text.text--lighten-3 {\\n color: #b0bec5 !important;\\n caret-color: #b0bec5 !important;\\n}\\n\\n.v-application .blue-grey.lighten-2 {\\n background-color: #90a4ae !important;\\n border-color: #90a4ae !important;\\n}\\n\\n.v-application .blue-grey--text.text--lighten-2 {\\n color: #90a4ae !important;\\n caret-color: #90a4ae !important;\\n}\\n\\n.v-application .blue-grey.lighten-1 {\\n background-color: #78909c !important;\\n border-color: #78909c !important;\\n}\\n\\n.v-application .blue-grey--text.text--lighten-1 {\\n color: #78909c !important;\\n caret-color: #78909c !important;\\n}\\n\\n.v-application .blue-grey.darken-1 {\\n background-color: #546e7a !important;\\n border-color: #546e7a !important;\\n}\\n\\n.v-application .blue-grey--text.text--darken-1 {\\n color: #546e7a !important;\\n caret-color: #546e7a !important;\\n}\\n\\n.v-application .blue-grey.darken-2 {\\n background-color: #455a64 !important;\\n border-color: #455a64 !important;\\n}\\n\\n.v-application .blue-grey--text.text--darken-2 {\\n color: #455a64 !important;\\n caret-color: #455a64 !important;\\n}\\n\\n.v-application .blue-grey.darken-3 {\\n background-color: #37474f !important;\\n border-color: #37474f !important;\\n}\\n\\n.v-application .blue-grey--text.text--darken-3 {\\n color: #37474f !important;\\n caret-color: #37474f !important;\\n}\\n\\n.v-application .blue-grey.darken-4 {\\n background-color: #263238 !important;\\n border-color: #263238 !important;\\n}\\n\\n.v-application .blue-grey--text.text--darken-4 {\\n color: #263238 !important;\\n caret-color: #263238 !important;\\n}\\n\\n.v-application .grey {\\n background-color: #9e9e9e !important;\\n border-color: #9e9e9e !important;\\n}\\n\\n.v-application .grey--text {\\n color: #9e9e9e !important;\\n caret-color: #9e9e9e !important;\\n}\\n\\n.v-application .grey.lighten-5 {\\n background-color: #fafafa !important;\\n border-color: #fafafa !important;\\n}\\n\\n.v-application .grey--text.text--lighten-5 {\\n color: #fafafa !important;\\n caret-color: #fafafa !important;\\n}\\n\\n.v-application .grey.lighten-4 {\\n background-color: #f5f5f5 !important;\\n border-color: #f5f5f5 !important;\\n}\\n\\n.v-application .grey--text.text--lighten-4 {\\n color: #f5f5f5 !important;\\n caret-color: #f5f5f5 !important;\\n}\\n\\n.v-application .grey.lighten-3 {\\n background-color: #eeeeee !important;\\n border-color: #eeeeee !important;\\n}\\n\\n.v-application .grey--text.text--lighten-3 {\\n color: #eeeeee !important;\\n caret-color: #eeeeee !important;\\n}\\n\\n.v-application .grey.lighten-2 {\\n background-color: #e0e0e0 !important;\\n border-color: #e0e0e0 !important;\\n}\\n\\n.v-application .grey--text.text--lighten-2 {\\n color: #e0e0e0 !important;\\n caret-color: #e0e0e0 !important;\\n}\\n\\n.v-application .grey.lighten-1 {\\n background-color: #bdbdbd !important;\\n border-color: #bdbdbd !important;\\n}\\n\\n.v-application .grey--text.text--lighten-1 {\\n color: #bdbdbd !important;\\n caret-color: #bdbdbd !important;\\n}\\n\\n.v-application .grey.darken-1 {\\n background-color: #757575 !important;\\n border-color: #757575 !important;\\n}\\n\\n.v-application .grey--text.text--darken-1 {\\n color: #757575 !important;\\n caret-color: #757575 !important;\\n}\\n\\n.v-application .grey.darken-2 {\\n background-color: #616161 !important;\\n border-color: #616161 !important;\\n}\\n\\n.v-application .grey--text.text--darken-2 {\\n color: #616161 !important;\\n caret-color: #616161 !important;\\n}\\n\\n.v-application .grey.darken-3 {\\n background-color: #424242 !important;\\n border-color: #424242 !important;\\n}\\n\\n.v-application .grey--text.text--darken-3 {\\n color: #424242 !important;\\n caret-color: #424242 !important;\\n}\\n\\n.v-application .grey.darken-4 {\\n background-color: #212121 !important;\\n border-color: #212121 !important;\\n}\\n\\n.v-application .grey--text.text--darken-4 {\\n color: #212121 !important;\\n caret-color: #212121 !important;\\n}\\n\\n.v-application .shades.black {\\n background-color: #000000 !important;\\n border-color: #000000 !important;\\n}\\n\\n.v-application .shades--text.text--black {\\n color: #000000 !important;\\n caret-color: #000000 !important;\\n}\\n\\n.v-application .shades.white {\\n background-color: #FFFFFF !important;\\n border-color: #FFFFFF !important;\\n}\\n\\n.v-application .shades--text.text--white {\\n color: #FFFFFF !important;\\n caret-color: #FFFFFF !important;\\n}\\n\\n.v-application .shades.transparent {\\n background-color: transparent !important;\\n border-color: transparent !important;\\n}\\n\\n.v-application .shades--text.text--transparent {\\n color: transparent !important;\\n caret-color: transparent !important;\\n}\\n\\n/*!\\n * ress.css • v2.0.4\\n * MIT License\\n * github.com/filipelinhares/ress\\n */\\n/* # =================================================================\\n # Global selectors\\n # ================================================================= */\\nhtml {\\n box-sizing: border-box;\\n overflow-y: scroll; /* All browsers without overlaying scrollbars */\\n -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */\\n word-break: normal;\\n -moz-tab-size: 4;\\n -o-tab-size: 4;\\n tab-size: 4;\\n}\\n\\n*,\\n::before,\\n::after {\\n background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */\\n box-sizing: inherit;\\n}\\n\\n::before,\\n::after {\\n text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */\\n vertical-align: inherit;\\n}\\n\\n* {\\n padding: 0; /* Reset `padding` and `margin` of all elements */\\n margin: 0;\\n}\\n\\n/* # =================================================================\\n # General elements\\n # ================================================================= */\\nhr {\\n overflow: visible; /* Show the overflow in Edge and IE */\\n height: 0; /* Add the correct box sizing in Firefox */\\n}\\n\\ndetails,\\nmain {\\n display: block; /* Render the `main` element consistently in IE. */\\n}\\n\\nsummary {\\n display: list-item; /* Add the correct display in all browsers */\\n}\\n\\nsmall {\\n font-size: 80%; /* Set font-size to 80% in `small` elements */\\n}\\n\\n[hidden] {\\n display: none; /* Add the correct display in IE */\\n}\\n\\nabbr[title] {\\n border-bottom: none; /* Remove the bottom border in Chrome 57 */\\n /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */\\n text-decoration: underline;\\n -webkit-text-decoration: underline dotted;\\n text-decoration: underline dotted;\\n}\\n\\na {\\n background-color: transparent; /* Remove the gray background on active links in IE 10 */\\n}\\n\\na:active,\\na:hover {\\n outline-width: 0; /* Remove the outline when hovering in all browsers */\\n}\\n\\ncode,\\nkbd,\\npre,\\nsamp {\\n font-family: monospace, monospace; /* Specify the font family of code elements */\\n}\\n\\npre {\\n font-size: 1em; /* Correct the odd `em` font sizing in all browsers */\\n}\\n\\nb,\\nstrong {\\n font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */\\n}\\n\\n/* https://gist.github.com/unruthless/413930 */\\nsub,\\nsup {\\n font-size: 75%;\\n line-height: 0;\\n position: relative;\\n vertical-align: baseline;\\n}\\n\\nsub {\\n bottom: -0.25em;\\n}\\n\\nsup {\\n top: -0.5em;\\n}\\n\\n/* # =================================================================\\n # Forms\\n # ================================================================= */\\ninput {\\n border-radius: 0;\\n}\\n\\n/* Replace pointer cursor in disabled elements */\\n[disabled] {\\n cursor: default;\\n}\\n\\n[type=number]::-webkit-inner-spin-button,\\n[type=number]::-webkit-outer-spin-button {\\n height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */\\n}\\n\\n[type=search] {\\n -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */\\n outline-offset: -2px; /* Correct the outline style in Safari */\\n}\\n\\n[type=search]::-webkit-search-cancel-button,\\n[type=search]::-webkit-search-decoration {\\n -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */\\n}\\n\\ntextarea {\\n overflow: auto; /* Internet Explorer 11+ */\\n resize: vertical; /* Specify textarea resizability */\\n}\\n\\nbutton,\\ninput,\\noptgroup,\\nselect,\\ntextarea {\\n font: inherit; /* Specify font inheritance of form elements */\\n}\\n\\noptgroup {\\n font-weight: bold; /* Restore the font weight unset by the previous rule */\\n}\\n\\nbutton {\\n overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */\\n}\\n\\nbutton,\\nselect {\\n text-transform: none; /* Firefox 40+, Internet Explorer 11- */\\n}\\n\\n/* Apply cursor pointer to button elements */\\nbutton,\\n[type=button],\\n[type=reset],\\n[type=submit],\\n[role=button] {\\n cursor: pointer;\\n color: inherit;\\n}\\n\\n/* Remove inner padding and border in Firefox 4+ */\\nbutton::-moz-focus-inner,\\n[type=button]::-moz-focus-inner,\\n[type=reset]::-moz-focus-inner,\\n[type=submit]::-moz-focus-inner {\\n border-style: none;\\n padding: 0;\\n}\\n\\n/* Replace focus style removed in the border reset above */\\nbutton:-moz-focusring,\\n[type=button]::-moz-focus-inner,\\n[type=reset]::-moz-focus-inner,\\n[type=submit]::-moz-focus-inner {\\n outline: 1px dotted ButtonText;\\n}\\n\\nbutton,\\nhtml [type=button],\\n[type=reset],\\n[type=submit] {\\n -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */\\n}\\n\\n/* Remove the default button styling in all browsers */\\nbutton,\\ninput,\\nselect,\\ntextarea {\\n background-color: transparent;\\n border-style: none;\\n}\\n\\n/* Style select like a standard input */\\nselect {\\n -moz-appearance: none; /* Firefox 36+ */\\n -webkit-appearance: none; /* Chrome 41+ */\\n}\\n\\nselect::-ms-expand {\\n display: none; /* Internet Explorer 11+ */\\n}\\n\\nselect::-ms-value {\\n color: currentColor; /* Internet Explorer 11+ */\\n}\\n\\nlegend {\\n border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */\\n color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */\\n display: table; /* Correct the text wrapping in Edge and IE */\\n max-width: 100%; /* Correct the text wrapping in Edge and IE */\\n white-space: normal; /* Correct the text wrapping in Edge and IE */\\n max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */\\n}\\n\\n::-webkit-file-upload-button {\\n /* Correct the inability to style clickable types in iOS and Safari */\\n -webkit-appearance: button;\\n color: inherit;\\n font: inherit; /* Change font properties to `inherit` in Chrome and Safari */\\n}\\n\\n/* # =================================================================\\n # Specify media element style\\n # ================================================================= */\\nimg {\\n border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */\\n}\\n\\n/* Add the correct vertical alignment in Chrome, Firefox, and Opera */\\nprogress {\\n vertical-align: baseline;\\n}\\n\\n/* # =================================================================\\n # Accessibility\\n # ================================================================= */\\n/* Hide content from screens but not screenreaders */\\n@media screen {\\n [hidden~=screen] {\\n display: inherit;\\n }\\n [hidden~=screen]:not(:active):not(:focus):not(:target) {\\n position: absolute !important;\\n clip: rect(0 0 0 0) !important;\\n }\\n}\\n/* Specify the progress cursor of updating elements */\\n[aria-busy=true] {\\n cursor: progress;\\n}\\n\\n/* Specify the pointer cursor of trigger elements */\\n[aria-controls] {\\n cursor: pointer;\\n}\\n\\n/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */\\n[aria-disabled=true] {\\n cursor: default;\\n}\\n\\n.v-application .elevation-24 {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-23 {\\n box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-22 {\\n box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-21 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-20 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-19 {\\n box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-18 {\\n box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-17 {\\n box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-16 {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-15 {\\n box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-14 {\\n box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-13 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-12 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-11 {\\n box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-10 {\\n box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-9 {\\n box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-8 {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-7 {\\n box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-6 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-5 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-4 {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-3 {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-2 {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-1 {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.v-application .elevation-0 {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12) !important;\\n}\\n\\n.carousel-transition-enter {\\n transform: translate(100%, 0);\\n}\\n.carousel-transition-leave, .carousel-transition-leave-to {\\n position: absolute;\\n top: 0;\\n transform: translate(-100%, 0);\\n}\\n\\n.carousel-reverse-transition-enter {\\n transform: translate(-100%, 0);\\n}\\n.carousel-reverse-transition-leave, .carousel-reverse-transition-leave-to {\\n position: absolute;\\n top: 0;\\n transform: translate(100%, 0);\\n}\\n\\n.dialog-transition-enter-active, .dialog-transition-leave-active {\\n pointer-events: none !important;\\n}\\n.dialog-transition-enter, .dialog-transition-leave-to {\\n transform: scale(0.5);\\n opacity: 0;\\n}\\n.dialog-transition-enter-to, .dialog-transition-leave {\\n opacity: 1;\\n}\\n\\n.dialog-bottom-transition-enter, .dialog-bottom-transition-leave-to {\\n transform: translateY(100%);\\n}\\n\\n.dialog-top-transition-enter, .dialog-top-transition-leave-to {\\n transform: translateY(-100%);\\n}\\n\\n.picker-transition-enter-active, .picker-transition-leave-active,\\n.picker-reverse-transition-enter-active,\\n.picker-reverse-transition-leave-active {\\n transition: 0.3s cubic-bezier(0, 0, 0.2, 1);\\n}\\n.picker-transition-enter, .picker-transition-leave-to,\\n.picker-reverse-transition-enter,\\n.picker-reverse-transition-leave-to {\\n opacity: 0;\\n}\\n.picker-transition-leave, .picker-transition-leave-active, .picker-transition-leave-to,\\n.picker-reverse-transition-leave,\\n.picker-reverse-transition-leave-active,\\n.picker-reverse-transition-leave-to {\\n position: absolute !important;\\n}\\n\\n.picker-transition-enter {\\n transform: translate(0, 100%);\\n}\\n.picker-transition-leave-to {\\n transform: translate(0, -100%);\\n}\\n\\n.picker-reverse-transition-enter {\\n transform: translate(0, -100%);\\n}\\n.picker-reverse-transition-leave-to {\\n transform: translate(0, 100%);\\n}\\n\\n.picker-title-transition-enter-to, .picker-title-transition-leave {\\n transform: translate(0, 0);\\n}\\n.picker-title-transition-enter {\\n transform: translate(-100%, 0);\\n}\\n.picker-title-transition-leave-to {\\n opacity: 0;\\n transform: translate(100%, 0);\\n}\\n.picker-title-transition-leave, .picker-title-transition-leave-to, .picker-title-transition-leave-active {\\n position: absolute !important;\\n}\\n\\n.tab-transition-enter {\\n transform: translate(100%, 0);\\n}\\n.tab-transition-leave, .tab-transition-leave-active {\\n position: absolute;\\n top: 0;\\n}\\n.tab-transition-leave-to {\\n position: absolute;\\n transform: translate(-100%, 0);\\n}\\n\\n.tab-reverse-transition-enter {\\n transform: translate(-100%, 0);\\n}\\n.tab-reverse-transition-leave, .tab-reverse-transition-leave-to {\\n top: 0;\\n position: absolute;\\n transform: translate(100%, 0);\\n}\\n\\n.expand-transition-enter-active, .expand-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.expand-transition-move {\\n transition: transform 0.6s;\\n}\\n\\n.expand-x-transition-enter-active, .expand-x-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.expand-x-transition-move {\\n transition: transform 0.6s;\\n}\\n\\n.scale-transition-enter-active, .scale-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.scale-transition-move {\\n transition: transform 0.6s;\\n}\\n.scale-transition-enter, .scale-transition-leave, .scale-transition-leave-to {\\n opacity: 0;\\n transform: scale(0);\\n}\\n\\n.scale-rotate-transition-enter-active, .scale-rotate-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.scale-rotate-transition-move {\\n transition: transform 0.6s;\\n}\\n.scale-rotate-transition-enter, .scale-rotate-transition-leave, .scale-rotate-transition-leave-to {\\n opacity: 0;\\n transform: scale(0) rotate(-45deg);\\n}\\n\\n.scale-rotate-reverse-transition-enter-active, .scale-rotate-reverse-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.scale-rotate-reverse-transition-move {\\n transition: transform 0.6s;\\n}\\n.scale-rotate-reverse-transition-enter, .scale-rotate-reverse-transition-leave, .scale-rotate-reverse-transition-leave-to {\\n opacity: 0;\\n transform: scale(0) rotate(45deg);\\n}\\n\\n.message-transition-enter-active, .message-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.message-transition-move {\\n transition: transform 0.6s;\\n}\\n.message-transition-enter, .message-transition-leave-to {\\n opacity: 0;\\n transform: translateY(-15px);\\n}\\n.message-transition-leave, .message-transition-leave-active {\\n position: absolute;\\n}\\n\\n.slide-y-transition-enter-active, .slide-y-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.slide-y-transition-move {\\n transition: transform 0.6s;\\n}\\n.slide-y-transition-enter, .slide-y-transition-leave-to {\\n opacity: 0;\\n transform: translateY(-15px);\\n}\\n\\n.slide-y-reverse-transition-enter-active, .slide-y-reverse-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.slide-y-reverse-transition-move {\\n transition: transform 0.6s;\\n}\\n.slide-y-reverse-transition-enter, .slide-y-reverse-transition-leave-to {\\n opacity: 0;\\n transform: translateY(15px);\\n}\\n\\n.scroll-y-transition-enter-active, .scroll-y-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.scroll-y-transition-move {\\n transition: transform 0.6s;\\n}\\n.scroll-y-transition-enter, .scroll-y-transition-leave-to {\\n opacity: 0;\\n}\\n.scroll-y-transition-enter {\\n transform: translateY(-15px);\\n}\\n.scroll-y-transition-leave-to {\\n transform: translateY(15px);\\n}\\n\\n.scroll-y-reverse-transition-enter-active, .scroll-y-reverse-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.scroll-y-reverse-transition-move {\\n transition: transform 0.6s;\\n}\\n.scroll-y-reverse-transition-enter, .scroll-y-reverse-transition-leave-to {\\n opacity: 0;\\n}\\n.scroll-y-reverse-transition-enter {\\n transform: translateY(15px);\\n}\\n.scroll-y-reverse-transition-leave-to {\\n transform: translateY(-15px);\\n}\\n\\n.scroll-x-transition-enter-active, .scroll-x-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.scroll-x-transition-move {\\n transition: transform 0.6s;\\n}\\n.scroll-x-transition-enter, .scroll-x-transition-leave-to {\\n opacity: 0;\\n}\\n.scroll-x-transition-enter {\\n transform: translateX(-15px);\\n}\\n.scroll-x-transition-leave-to {\\n transform: translateX(15px);\\n}\\n\\n.scroll-x-reverse-transition-enter-active, .scroll-x-reverse-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.scroll-x-reverse-transition-move {\\n transition: transform 0.6s;\\n}\\n.scroll-x-reverse-transition-enter, .scroll-x-reverse-transition-leave-to {\\n opacity: 0;\\n}\\n.scroll-x-reverse-transition-enter {\\n transform: translateX(15px);\\n}\\n.scroll-x-reverse-transition-leave-to {\\n transform: translateX(-15px);\\n}\\n\\n.slide-x-transition-enter-active, .slide-x-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.slide-x-transition-move {\\n transition: transform 0.6s;\\n}\\n.slide-x-transition-enter, .slide-x-transition-leave-to {\\n opacity: 0;\\n transform: translateX(-15px);\\n}\\n\\n.slide-x-reverse-transition-enter-active, .slide-x-reverse-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.slide-x-reverse-transition-move {\\n transition: transform 0.6s;\\n}\\n.slide-x-reverse-transition-enter, .slide-x-reverse-transition-leave-to {\\n opacity: 0;\\n transform: translateX(15px);\\n}\\n\\n.fade-transition-enter-active, .fade-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.fade-transition-move {\\n transition: transform 0.6s;\\n}\\n.fade-transition-enter, .fade-transition-leave-to {\\n opacity: 0 !important;\\n}\\n\\n.fab-transition-enter-active, .fab-transition-leave-active {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n.fab-transition-move {\\n transition: transform 0.6s;\\n}\\n.fab-transition-enter, .fab-transition-leave-to {\\n transform: scale(0) rotate(-45deg);\\n}\\n\\n.v-application .blockquote {\\n padding: 16px 0 16px 24px;\\n font-size: 18px;\\n font-weight: 300;\\n}\\n\\n.v-application code, .v-application kbd {\\n border-radius: 3px;\\n font-size: 85%;\\n font-weight: normal;\\n}\\n.v-application code {\\n padding: 0.2em 0.4em;\\n}\\n.v-application kbd {\\n padding: 0.2em 0.4rem;\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.theme--light.v-application code {\\n background-color: rgba(0, 0, 0, 0.05);\\n color: currentColor;\\n}\\n.theme--light.v-application kbd {\\n background: #212529;\\n color: #FFFFFF;\\n}\\n\\n.theme--dark.v-application code {\\n background-color: rgba(255, 255, 255, 0.1);\\n color: currentColor;\\n}\\n.theme--dark.v-application kbd {\\n background: #212529;\\n color: #FFFFFF;\\n}\\n\\nhtml {\\n font-size: 16px;\\n overflow-x: hidden;\\n text-rendering: optimizeLegibility;\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\\n}\\n\\nhtml.overflow-y-hidden {\\n overflow-y: hidden !important;\\n}\\n\\n.v-application {\\n font-family: \\\"Roboto\\\", Arial, sans-serif;\\n line-height: 1.5;\\n}\\n.v-application ::-ms-clear,\\n.v-application ::-ms-reveal {\\n display: none;\\n}\\n\\n@supports (-webkit-touch-callout: none) {\\n body {\\n cursor: pointer;\\n }\\n}\\n.v-application .theme--light.heading {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.v-application .theme--dark.heading {\\n color: #FFFFFF;\\n}\\n\\n.v-application ul, .v-application ol {\\n padding-left: 24px;\\n}\\n\\n.v-application .display-4 {\\n font-size: 6rem !important;\\n font-weight: 300;\\n line-height: 6rem;\\n letter-spacing: -0.015625em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .display-3 {\\n font-size: 3.75rem !important;\\n font-weight: 300;\\n line-height: 3.75rem;\\n letter-spacing: -0.0083333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .display-2 {\\n font-size: 3rem !important;\\n font-weight: 400;\\n line-height: 3.125rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .display-1 {\\n font-size: 2.125rem !important;\\n font-weight: 400;\\n line-height: 2.5rem;\\n letter-spacing: 0.0073529412em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .headline {\\n font-size: 1.5rem !important;\\n font-weight: 400;\\n line-height: 2rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .title {\\n font-size: 1.25rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.0125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .subtitle-2 {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n letter-spacing: 0.0071428571em !important;\\n line-height: 1.375rem;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .subtitle-1 {\\n font-size: 1rem !important;\\n font-weight: normal;\\n letter-spacing: 0.009375em !important;\\n line-height: 1.75rem;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .body-2 {\\n font-size: 0.875rem !important;\\n font-weight: 400;\\n letter-spacing: 0.0178571429em !important;\\n line-height: 1.25rem;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .body-1 {\\n font-size: 1rem !important;\\n font-weight: 400;\\n letter-spacing: 0.03125em !important;\\n line-height: 1.5rem;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .caption {\\n font-size: 0.75rem !important;\\n font-weight: 400;\\n letter-spacing: 0.0333333333em !important;\\n line-height: 1.25rem;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application .overline {\\n font-size: 0.75rem !important;\\n font-weight: 500;\\n letter-spacing: 0.1666666667em !important;\\n line-height: 2rem;\\n text-transform: uppercase;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n.v-application p {\\n margin-bottom: 16px;\\n}\\n\\n@media only print {\\n .v-application .hidden-print-only {\\n display: none !important;\\n }\\n}\\n@media only screen {\\n .v-application .hidden-screen-only {\\n display: none !important;\\n }\\n}\\n@media only screen and (max-width: 599.98px) {\\n .v-application .hidden-xs-only {\\n display: none !important;\\n }\\n}\\n@media only screen and (min-width: 600px) and (max-width: 959.98px) {\\n .v-application .hidden-sm-only {\\n display: none !important;\\n }\\n}\\n@media only screen and (max-width: 959.98px) {\\n .v-application .hidden-sm-and-down {\\n display: none !important;\\n }\\n}\\n@media only screen and (min-width: 600px) {\\n .v-application .hidden-sm-and-up {\\n display: none !important;\\n }\\n}\\n@media only screen and (min-width: 960px) and (max-width: 1263.98px) {\\n .v-application .hidden-md-only {\\n display: none !important;\\n }\\n}\\n@media only screen and (max-width: 1263.98px) {\\n .v-application .hidden-md-and-down {\\n display: none !important;\\n }\\n}\\n@media only screen and (min-width: 960px) {\\n .v-application .hidden-md-and-up {\\n display: none !important;\\n }\\n}\\n@media only screen and (min-width: 1264px) and (max-width: 1903.98px) {\\n .v-application .hidden-lg-only {\\n display: none !important;\\n }\\n}\\n@media only screen and (max-width: 1903.98px) {\\n .v-application .hidden-lg-and-down {\\n display: none !important;\\n }\\n}\\n@media only screen and (min-width: 1264px) {\\n .v-application .hidden-lg-and-up {\\n display: none !important;\\n }\\n}\\n@media only screen and (min-width: 1904px) {\\n .v-application .hidden-xl-only {\\n display: none !important;\\n }\\n}\\n\\n.d-sr-only,\\n.d-sr-only-focusable:not(:focus) {\\n border: 0 !important;\\n clip: rect(0, 0, 0, 0) !important;\\n height: 1px !important;\\n margin: -1px !important;\\n overflow: hidden !important;\\n padding: 0 !important;\\n position: absolute !important;\\n white-space: nowrap !important;\\n width: 1px !important;\\n}\\n\\n.v-application .font-weight-thin {\\n font-weight: 100 !important;\\n}\\n.v-application .font-weight-light {\\n font-weight: 300 !important;\\n}\\n.v-application .font-weight-regular {\\n font-weight: 400 !important;\\n}\\n.v-application .font-weight-medium {\\n font-weight: 500 !important;\\n}\\n.v-application .font-weight-bold {\\n font-weight: 700 !important;\\n}\\n.v-application .font-weight-black {\\n font-weight: 900 !important;\\n}\\n.v-application .font-italic {\\n font-style: italic !important;\\n}\\n\\n.v-application .transition-fast-out-slow-in {\\n transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;\\n}\\n.v-application .transition-linear-out-slow-in {\\n transition: 0.3s cubic-bezier(0, 0, 0.2, 1) !important;\\n}\\n.v-application .transition-fast-out-linear-in {\\n transition: 0.3s cubic-bezier(0.4, 0, 1, 1) !important;\\n}\\n.v-application .transition-ease-in-out {\\n transition: 0.3s cubic-bezier(0.4, 0, 0.6, 1) !important;\\n}\\n.v-application .transition-fast-in-fast-out {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;\\n}\\n.v-application .transition-swing {\\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;\\n}\\n\\n.v-application .overflow-auto {\\n overflow: auto !important;\\n}\\n\\n.v-application .overflow-hidden {\\n overflow: hidden !important;\\n}\\n\\n.v-application .overflow-visible {\\n overflow: visible !important;\\n}\\n\\n.v-application .overflow-x-auto {\\n overflow-x: auto !important;\\n}\\n\\n.v-application .overflow-x-hidden {\\n overflow-x: hidden !important;\\n}\\n\\n.v-application .overflow-y-auto {\\n overflow-y: auto !important;\\n}\\n\\n.v-application .overflow-y-hidden {\\n overflow-y: hidden !important;\\n}\\n\\n.v-application .d-none {\\n display: none !important;\\n}\\n\\n.v-application .d-inline {\\n display: inline !important;\\n}\\n\\n.v-application .d-inline-block {\\n display: inline-block !important;\\n}\\n\\n.v-application .d-block {\\n display: block !important;\\n}\\n\\n.v-application .d-table {\\n display: table !important;\\n}\\n\\n.v-application .d-table-row {\\n display: table-row !important;\\n}\\n\\n.v-application .d-table-cell {\\n display: table-cell !important;\\n}\\n\\n.v-application .d-flex {\\n display: flex !important;\\n}\\n\\n.v-application .d-inline-flex {\\n display: inline-flex !important;\\n}\\n\\n.v-application .float-none {\\n float: none !important;\\n}\\n\\n.v-application .float-left {\\n float: left !important;\\n}\\n\\n.v-application .float-right {\\n float: right !important;\\n}\\n\\n.v-application--is-rtl .float-end {\\n float: left !important;\\n}\\n\\n.v-application--is-rtl .float-start {\\n float: right !important;\\n}\\n\\n.v-application--is-ltr .float-end {\\n float: right !important;\\n}\\n\\n.v-application--is-ltr .float-start {\\n float: left !important;\\n}\\n\\n.v-application .flex-fill {\\n flex: 1 1 auto !important;\\n}\\n\\n.v-application .flex-row {\\n flex-direction: row !important;\\n}\\n\\n.v-application .flex-column {\\n flex-direction: column !important;\\n}\\n\\n.v-application .flex-row-reverse {\\n flex-direction: row-reverse !important;\\n}\\n\\n.v-application .flex-column-reverse {\\n flex-direction: column-reverse !important;\\n}\\n\\n.v-application .flex-grow-0 {\\n flex-grow: 0 !important;\\n}\\n\\n.v-application .flex-grow-1 {\\n flex-grow: 1 !important;\\n}\\n\\n.v-application .flex-shrink-0 {\\n flex-shrink: 0 !important;\\n}\\n\\n.v-application .flex-shrink-1 {\\n flex-shrink: 1 !important;\\n}\\n\\n.v-application .flex-wrap {\\n flex-wrap: wrap !important;\\n}\\n\\n.v-application .flex-nowrap {\\n flex-wrap: nowrap !important;\\n}\\n\\n.v-application .flex-wrap-reverse {\\n flex-wrap: wrap-reverse !important;\\n}\\n\\n.v-application .justify-start {\\n justify-content: flex-start !important;\\n}\\n\\n.v-application .justify-end {\\n justify-content: flex-end !important;\\n}\\n\\n.v-application .justify-center {\\n justify-content: center !important;\\n}\\n\\n.v-application .justify-space-between {\\n justify-content: space-between !important;\\n}\\n\\n.v-application .justify-space-around {\\n justify-content: space-around !important;\\n}\\n\\n.v-application .align-start {\\n align-items: flex-start !important;\\n}\\n\\n.v-application .align-end {\\n align-items: flex-end !important;\\n}\\n\\n.v-application .align-center {\\n align-items: center !important;\\n}\\n\\n.v-application .align-baseline {\\n align-items: baseline !important;\\n}\\n\\n.v-application .align-stretch {\\n align-items: stretch !important;\\n}\\n\\n.v-application .align-content-start {\\n align-content: flex-start !important;\\n}\\n\\n.v-application .align-content-end {\\n align-content: flex-end !important;\\n}\\n\\n.v-application .align-content-center {\\n align-content: center !important;\\n}\\n\\n.v-application .align-content-space-between {\\n align-content: space-between !important;\\n}\\n\\n.v-application .align-content-space-around {\\n align-content: space-around !important;\\n}\\n\\n.v-application .align-content-stretch {\\n align-content: stretch !important;\\n}\\n\\n.v-application .align-self-auto {\\n align-self: auto !important;\\n}\\n\\n.v-application .align-self-start {\\n align-self: flex-start !important;\\n}\\n\\n.v-application .align-self-end {\\n align-self: flex-end !important;\\n}\\n\\n.v-application .align-self-center {\\n align-self: center !important;\\n}\\n\\n.v-application .align-self-baseline {\\n align-self: baseline !important;\\n}\\n\\n.v-application .align-self-stretch {\\n align-self: stretch !important;\\n}\\n\\n.v-application .order-first {\\n order: -1 !important;\\n}\\n\\n.v-application .order-0 {\\n order: 0 !important;\\n}\\n\\n.v-application .order-1 {\\n order: 1 !important;\\n}\\n\\n.v-application .order-2 {\\n order: 2 !important;\\n}\\n\\n.v-application .order-3 {\\n order: 3 !important;\\n}\\n\\n.v-application .order-4 {\\n order: 4 !important;\\n}\\n\\n.v-application .order-5 {\\n order: 5 !important;\\n}\\n\\n.v-application .order-6 {\\n order: 6 !important;\\n}\\n\\n.v-application .order-7 {\\n order: 7 !important;\\n}\\n\\n.v-application .order-8 {\\n order: 8 !important;\\n}\\n\\n.v-application .order-9 {\\n order: 9 !important;\\n}\\n\\n.v-application .order-10 {\\n order: 10 !important;\\n}\\n\\n.v-application .order-11 {\\n order: 11 !important;\\n}\\n\\n.v-application .order-12 {\\n order: 12 !important;\\n}\\n\\n.v-application .order-last {\\n order: 13 !important;\\n}\\n\\n.v-application .ma-0 {\\n margin: 0px !important;\\n}\\n\\n.v-application .ma-1 {\\n margin: 4px !important;\\n}\\n\\n.v-application .ma-2 {\\n margin: 8px !important;\\n}\\n\\n.v-application .ma-3 {\\n margin: 12px !important;\\n}\\n\\n.v-application .ma-4 {\\n margin: 16px !important;\\n}\\n\\n.v-application .ma-5 {\\n margin: 20px !important;\\n}\\n\\n.v-application .ma-6 {\\n margin: 24px !important;\\n}\\n\\n.v-application .ma-7 {\\n margin: 28px !important;\\n}\\n\\n.v-application .ma-8 {\\n margin: 32px !important;\\n}\\n\\n.v-application .ma-9 {\\n margin: 36px !important;\\n}\\n\\n.v-application .ma-10 {\\n margin: 40px !important;\\n}\\n\\n.v-application .ma-11 {\\n margin: 44px !important;\\n}\\n\\n.v-application .ma-12 {\\n margin: 48px !important;\\n}\\n\\n.v-application .ma-13 {\\n margin: 52px !important;\\n}\\n\\n.v-application .ma-14 {\\n margin: 56px !important;\\n}\\n\\n.v-application .ma-15 {\\n margin: 60px !important;\\n}\\n\\n.v-application .ma-16 {\\n margin: 64px !important;\\n}\\n\\n.v-application .ma-auto {\\n margin: auto !important;\\n}\\n\\n.v-application .mx-0 {\\n margin-right: 0px !important;\\n margin-left: 0px !important;\\n}\\n\\n.v-application .mx-1 {\\n margin-right: 4px !important;\\n margin-left: 4px !important;\\n}\\n\\n.v-application .mx-2 {\\n margin-right: 8px !important;\\n margin-left: 8px !important;\\n}\\n\\n.v-application .mx-3 {\\n margin-right: 12px !important;\\n margin-left: 12px !important;\\n}\\n\\n.v-application .mx-4 {\\n margin-right: 16px !important;\\n margin-left: 16px !important;\\n}\\n\\n.v-application .mx-5 {\\n margin-right: 20px !important;\\n margin-left: 20px !important;\\n}\\n\\n.v-application .mx-6 {\\n margin-right: 24px !important;\\n margin-left: 24px !important;\\n}\\n\\n.v-application .mx-7 {\\n margin-right: 28px !important;\\n margin-left: 28px !important;\\n}\\n\\n.v-application .mx-8 {\\n margin-right: 32px !important;\\n margin-left: 32px !important;\\n}\\n\\n.v-application .mx-9 {\\n margin-right: 36px !important;\\n margin-left: 36px !important;\\n}\\n\\n.v-application .mx-10 {\\n margin-right: 40px !important;\\n margin-left: 40px !important;\\n}\\n\\n.v-application .mx-11 {\\n margin-right: 44px !important;\\n margin-left: 44px !important;\\n}\\n\\n.v-application .mx-12 {\\n margin-right: 48px !important;\\n margin-left: 48px !important;\\n}\\n\\n.v-application .mx-13 {\\n margin-right: 52px !important;\\n margin-left: 52px !important;\\n}\\n\\n.v-application .mx-14 {\\n margin-right: 56px !important;\\n margin-left: 56px !important;\\n}\\n\\n.v-application .mx-15 {\\n margin-right: 60px !important;\\n margin-left: 60px !important;\\n}\\n\\n.v-application .mx-16 {\\n margin-right: 64px !important;\\n margin-left: 64px !important;\\n}\\n\\n.v-application .mx-auto {\\n margin-right: auto !important;\\n margin-left: auto !important;\\n}\\n\\n.v-application .my-0 {\\n margin-top: 0px !important;\\n margin-bottom: 0px !important;\\n}\\n\\n.v-application .my-1 {\\n margin-top: 4px !important;\\n margin-bottom: 4px !important;\\n}\\n\\n.v-application .my-2 {\\n margin-top: 8px !important;\\n margin-bottom: 8px !important;\\n}\\n\\n.v-application .my-3 {\\n margin-top: 12px !important;\\n margin-bottom: 12px !important;\\n}\\n\\n.v-application .my-4 {\\n margin-top: 16px !important;\\n margin-bottom: 16px !important;\\n}\\n\\n.v-application .my-5 {\\n margin-top: 20px !important;\\n margin-bottom: 20px !important;\\n}\\n\\n.v-application .my-6 {\\n margin-top: 24px !important;\\n margin-bottom: 24px !important;\\n}\\n\\n.v-application .my-7 {\\n margin-top: 28px !important;\\n margin-bottom: 28px !important;\\n}\\n\\n.v-application .my-8 {\\n margin-top: 32px !important;\\n margin-bottom: 32px !important;\\n}\\n\\n.v-application .my-9 {\\n margin-top: 36px !important;\\n margin-bottom: 36px !important;\\n}\\n\\n.v-application .my-10 {\\n margin-top: 40px !important;\\n margin-bottom: 40px !important;\\n}\\n\\n.v-application .my-11 {\\n margin-top: 44px !important;\\n margin-bottom: 44px !important;\\n}\\n\\n.v-application .my-12 {\\n margin-top: 48px !important;\\n margin-bottom: 48px !important;\\n}\\n\\n.v-application .my-13 {\\n margin-top: 52px !important;\\n margin-bottom: 52px !important;\\n}\\n\\n.v-application .my-14 {\\n margin-top: 56px !important;\\n margin-bottom: 56px !important;\\n}\\n\\n.v-application .my-15 {\\n margin-top: 60px !important;\\n margin-bottom: 60px !important;\\n}\\n\\n.v-application .my-16 {\\n margin-top: 64px !important;\\n margin-bottom: 64px !important;\\n}\\n\\n.v-application .my-auto {\\n margin-top: auto !important;\\n margin-bottom: auto !important;\\n}\\n\\n.v-application .mt-0 {\\n margin-top: 0px !important;\\n}\\n\\n.v-application .mt-1 {\\n margin-top: 4px !important;\\n}\\n\\n.v-application .mt-2 {\\n margin-top: 8px !important;\\n}\\n\\n.v-application .mt-3 {\\n margin-top: 12px !important;\\n}\\n\\n.v-application .mt-4 {\\n margin-top: 16px !important;\\n}\\n\\n.v-application .mt-5 {\\n margin-top: 20px !important;\\n}\\n\\n.v-application .mt-6 {\\n margin-top: 24px !important;\\n}\\n\\n.v-application .mt-7 {\\n margin-top: 28px !important;\\n}\\n\\n.v-application .mt-8 {\\n margin-top: 32px !important;\\n}\\n\\n.v-application .mt-9 {\\n margin-top: 36px !important;\\n}\\n\\n.v-application .mt-10 {\\n margin-top: 40px !important;\\n}\\n\\n.v-application .mt-11 {\\n margin-top: 44px !important;\\n}\\n\\n.v-application .mt-12 {\\n margin-top: 48px !important;\\n}\\n\\n.v-application .mt-13 {\\n margin-top: 52px !important;\\n}\\n\\n.v-application .mt-14 {\\n margin-top: 56px !important;\\n}\\n\\n.v-application .mt-15 {\\n margin-top: 60px !important;\\n}\\n\\n.v-application .mt-16 {\\n margin-top: 64px !important;\\n}\\n\\n.v-application .mt-auto {\\n margin-top: auto !important;\\n}\\n\\n.v-application .mr-0 {\\n margin-right: 0px !important;\\n}\\n\\n.v-application .mr-1 {\\n margin-right: 4px !important;\\n}\\n\\n.v-application .mr-2 {\\n margin-right: 8px !important;\\n}\\n\\n.v-application .mr-3 {\\n margin-right: 12px !important;\\n}\\n\\n.v-application .mr-4 {\\n margin-right: 16px !important;\\n}\\n\\n.v-application .mr-5 {\\n margin-right: 20px !important;\\n}\\n\\n.v-application .mr-6 {\\n margin-right: 24px !important;\\n}\\n\\n.v-application .mr-7 {\\n margin-right: 28px !important;\\n}\\n\\n.v-application .mr-8 {\\n margin-right: 32px !important;\\n}\\n\\n.v-application .mr-9 {\\n margin-right: 36px !important;\\n}\\n\\n.v-application .mr-10 {\\n margin-right: 40px !important;\\n}\\n\\n.v-application .mr-11 {\\n margin-right: 44px !important;\\n}\\n\\n.v-application .mr-12 {\\n margin-right: 48px !important;\\n}\\n\\n.v-application .mr-13 {\\n margin-right: 52px !important;\\n}\\n\\n.v-application .mr-14 {\\n margin-right: 56px !important;\\n}\\n\\n.v-application .mr-15 {\\n margin-right: 60px !important;\\n}\\n\\n.v-application .mr-16 {\\n margin-right: 64px !important;\\n}\\n\\n.v-application .mr-auto {\\n margin-right: auto !important;\\n}\\n\\n.v-application .mb-0 {\\n margin-bottom: 0px !important;\\n}\\n\\n.v-application .mb-1 {\\n margin-bottom: 4px !important;\\n}\\n\\n.v-application .mb-2 {\\n margin-bottom: 8px !important;\\n}\\n\\n.v-application .mb-3 {\\n margin-bottom: 12px !important;\\n}\\n\\n.v-application .mb-4 {\\n margin-bottom: 16px !important;\\n}\\n\\n.v-application .mb-5 {\\n margin-bottom: 20px !important;\\n}\\n\\n.v-application .mb-6 {\\n margin-bottom: 24px !important;\\n}\\n\\n.v-application .mb-7 {\\n margin-bottom: 28px !important;\\n}\\n\\n.v-application .mb-8 {\\n margin-bottom: 32px !important;\\n}\\n\\n.v-application .mb-9 {\\n margin-bottom: 36px !important;\\n}\\n\\n.v-application .mb-10 {\\n margin-bottom: 40px !important;\\n}\\n\\n.v-application .mb-11 {\\n margin-bottom: 44px !important;\\n}\\n\\n.v-application .mb-12 {\\n margin-bottom: 48px !important;\\n}\\n\\n.v-application .mb-13 {\\n margin-bottom: 52px !important;\\n}\\n\\n.v-application .mb-14 {\\n margin-bottom: 56px !important;\\n}\\n\\n.v-application .mb-15 {\\n margin-bottom: 60px !important;\\n}\\n\\n.v-application .mb-16 {\\n margin-bottom: 64px !important;\\n}\\n\\n.v-application .mb-auto {\\n margin-bottom: auto !important;\\n}\\n\\n.v-application .ml-0 {\\n margin-left: 0px !important;\\n}\\n\\n.v-application .ml-1 {\\n margin-left: 4px !important;\\n}\\n\\n.v-application .ml-2 {\\n margin-left: 8px !important;\\n}\\n\\n.v-application .ml-3 {\\n margin-left: 12px !important;\\n}\\n\\n.v-application .ml-4 {\\n margin-left: 16px !important;\\n}\\n\\n.v-application .ml-5 {\\n margin-left: 20px !important;\\n}\\n\\n.v-application .ml-6 {\\n margin-left: 24px !important;\\n}\\n\\n.v-application .ml-7 {\\n margin-left: 28px !important;\\n}\\n\\n.v-application .ml-8 {\\n margin-left: 32px !important;\\n}\\n\\n.v-application .ml-9 {\\n margin-left: 36px !important;\\n}\\n\\n.v-application .ml-10 {\\n margin-left: 40px !important;\\n}\\n\\n.v-application .ml-11 {\\n margin-left: 44px !important;\\n}\\n\\n.v-application .ml-12 {\\n margin-left: 48px !important;\\n}\\n\\n.v-application .ml-13 {\\n margin-left: 52px !important;\\n}\\n\\n.v-application .ml-14 {\\n margin-left: 56px !important;\\n}\\n\\n.v-application .ml-15 {\\n margin-left: 60px !important;\\n}\\n\\n.v-application .ml-16 {\\n margin-left: 64px !important;\\n}\\n\\n.v-application .ml-auto {\\n margin-left: auto !important;\\n}\\n\\n.v-application--is-ltr .ms-0 {\\n margin-left: 0px !important;\\n}\\n\\n.v-application--is-rtl .ms-0 {\\n margin-right: 0px !important;\\n}\\n\\n.v-application--is-ltr .ms-1 {\\n margin-left: 4px !important;\\n}\\n\\n.v-application--is-rtl .ms-1 {\\n margin-right: 4px !important;\\n}\\n\\n.v-application--is-ltr .ms-2 {\\n margin-left: 8px !important;\\n}\\n\\n.v-application--is-rtl .ms-2 {\\n margin-right: 8px !important;\\n}\\n\\n.v-application--is-ltr .ms-3 {\\n margin-left: 12px !important;\\n}\\n\\n.v-application--is-rtl .ms-3 {\\n margin-right: 12px !important;\\n}\\n\\n.v-application--is-ltr .ms-4 {\\n margin-left: 16px !important;\\n}\\n\\n.v-application--is-rtl .ms-4 {\\n margin-right: 16px !important;\\n}\\n\\n.v-application--is-ltr .ms-5 {\\n margin-left: 20px !important;\\n}\\n\\n.v-application--is-rtl .ms-5 {\\n margin-right: 20px !important;\\n}\\n\\n.v-application--is-ltr .ms-6 {\\n margin-left: 24px !important;\\n}\\n\\n.v-application--is-rtl .ms-6 {\\n margin-right: 24px !important;\\n}\\n\\n.v-application--is-ltr .ms-7 {\\n margin-left: 28px !important;\\n}\\n\\n.v-application--is-rtl .ms-7 {\\n margin-right: 28px !important;\\n}\\n\\n.v-application--is-ltr .ms-8 {\\n margin-left: 32px !important;\\n}\\n\\n.v-application--is-rtl .ms-8 {\\n margin-right: 32px !important;\\n}\\n\\n.v-application--is-ltr .ms-9 {\\n margin-left: 36px !important;\\n}\\n\\n.v-application--is-rtl .ms-9 {\\n margin-right: 36px !important;\\n}\\n\\n.v-application--is-ltr .ms-10 {\\n margin-left: 40px !important;\\n}\\n\\n.v-application--is-rtl .ms-10 {\\n margin-right: 40px !important;\\n}\\n\\n.v-application--is-ltr .ms-11 {\\n margin-left: 44px !important;\\n}\\n\\n.v-application--is-rtl .ms-11 {\\n margin-right: 44px !important;\\n}\\n\\n.v-application--is-ltr .ms-12 {\\n margin-left: 48px !important;\\n}\\n\\n.v-application--is-rtl .ms-12 {\\n margin-right: 48px !important;\\n}\\n\\n.v-application--is-ltr .ms-13 {\\n margin-left: 52px !important;\\n}\\n\\n.v-application--is-rtl .ms-13 {\\n margin-right: 52px !important;\\n}\\n\\n.v-application--is-ltr .ms-14 {\\n margin-left: 56px !important;\\n}\\n\\n.v-application--is-rtl .ms-14 {\\n margin-right: 56px !important;\\n}\\n\\n.v-application--is-ltr .ms-15 {\\n margin-left: 60px !important;\\n}\\n\\n.v-application--is-rtl .ms-15 {\\n margin-right: 60px !important;\\n}\\n\\n.v-application--is-ltr .ms-16 {\\n margin-left: 64px !important;\\n}\\n\\n.v-application--is-rtl .ms-16 {\\n margin-right: 64px !important;\\n}\\n\\n.v-application--is-ltr .ms-auto {\\n margin-left: auto !important;\\n}\\n\\n.v-application--is-rtl .ms-auto {\\n margin-right: auto !important;\\n}\\n\\n.v-application--is-ltr .me-0 {\\n margin-right: 0px !important;\\n}\\n\\n.v-application--is-rtl .me-0 {\\n margin-left: 0px !important;\\n}\\n\\n.v-application--is-ltr .me-1 {\\n margin-right: 4px !important;\\n}\\n\\n.v-application--is-rtl .me-1 {\\n margin-left: 4px !important;\\n}\\n\\n.v-application--is-ltr .me-2 {\\n margin-right: 8px !important;\\n}\\n\\n.v-application--is-rtl .me-2 {\\n margin-left: 8px !important;\\n}\\n\\n.v-application--is-ltr .me-3 {\\n margin-right: 12px !important;\\n}\\n\\n.v-application--is-rtl .me-3 {\\n margin-left: 12px !important;\\n}\\n\\n.v-application--is-ltr .me-4 {\\n margin-right: 16px !important;\\n}\\n\\n.v-application--is-rtl .me-4 {\\n margin-left: 16px !important;\\n}\\n\\n.v-application--is-ltr .me-5 {\\n margin-right: 20px !important;\\n}\\n\\n.v-application--is-rtl .me-5 {\\n margin-left: 20px !important;\\n}\\n\\n.v-application--is-ltr .me-6 {\\n margin-right: 24px !important;\\n}\\n\\n.v-application--is-rtl .me-6 {\\n margin-left: 24px !important;\\n}\\n\\n.v-application--is-ltr .me-7 {\\n margin-right: 28px !important;\\n}\\n\\n.v-application--is-rtl .me-7 {\\n margin-left: 28px !important;\\n}\\n\\n.v-application--is-ltr .me-8 {\\n margin-right: 32px !important;\\n}\\n\\n.v-application--is-rtl .me-8 {\\n margin-left: 32px !important;\\n}\\n\\n.v-application--is-ltr .me-9 {\\n margin-right: 36px !important;\\n}\\n\\n.v-application--is-rtl .me-9 {\\n margin-left: 36px !important;\\n}\\n\\n.v-application--is-ltr .me-10 {\\n margin-right: 40px !important;\\n}\\n\\n.v-application--is-rtl .me-10 {\\n margin-left: 40px !important;\\n}\\n\\n.v-application--is-ltr .me-11 {\\n margin-right: 44px !important;\\n}\\n\\n.v-application--is-rtl .me-11 {\\n margin-left: 44px !important;\\n}\\n\\n.v-application--is-ltr .me-12 {\\n margin-right: 48px !important;\\n}\\n\\n.v-application--is-rtl .me-12 {\\n margin-left: 48px !important;\\n}\\n\\n.v-application--is-ltr .me-13 {\\n margin-right: 52px !important;\\n}\\n\\n.v-application--is-rtl .me-13 {\\n margin-left: 52px !important;\\n}\\n\\n.v-application--is-ltr .me-14 {\\n margin-right: 56px !important;\\n}\\n\\n.v-application--is-rtl .me-14 {\\n margin-left: 56px !important;\\n}\\n\\n.v-application--is-ltr .me-15 {\\n margin-right: 60px !important;\\n}\\n\\n.v-application--is-rtl .me-15 {\\n margin-left: 60px !important;\\n}\\n\\n.v-application--is-ltr .me-16 {\\n margin-right: 64px !important;\\n}\\n\\n.v-application--is-rtl .me-16 {\\n margin-left: 64px !important;\\n}\\n\\n.v-application--is-ltr .me-auto {\\n margin-right: auto !important;\\n}\\n\\n.v-application--is-rtl .me-auto {\\n margin-left: auto !important;\\n}\\n\\n.v-application .ma-n1 {\\n margin: -4px !important;\\n}\\n\\n.v-application .ma-n2 {\\n margin: -8px !important;\\n}\\n\\n.v-application .ma-n3 {\\n margin: -12px !important;\\n}\\n\\n.v-application .ma-n4 {\\n margin: -16px !important;\\n}\\n\\n.v-application .ma-n5 {\\n margin: -20px !important;\\n}\\n\\n.v-application .ma-n6 {\\n margin: -24px !important;\\n}\\n\\n.v-application .ma-n7 {\\n margin: -28px !important;\\n}\\n\\n.v-application .ma-n8 {\\n margin: -32px !important;\\n}\\n\\n.v-application .ma-n9 {\\n margin: -36px !important;\\n}\\n\\n.v-application .ma-n10 {\\n margin: -40px !important;\\n}\\n\\n.v-application .ma-n11 {\\n margin: -44px !important;\\n}\\n\\n.v-application .ma-n12 {\\n margin: -48px !important;\\n}\\n\\n.v-application .ma-n13 {\\n margin: -52px !important;\\n}\\n\\n.v-application .ma-n14 {\\n margin: -56px !important;\\n}\\n\\n.v-application .ma-n15 {\\n margin: -60px !important;\\n}\\n\\n.v-application .ma-n16 {\\n margin: -64px !important;\\n}\\n\\n.v-application .mx-n1 {\\n margin-right: -4px !important;\\n margin-left: -4px !important;\\n}\\n\\n.v-application .mx-n2 {\\n margin-right: -8px !important;\\n margin-left: -8px !important;\\n}\\n\\n.v-application .mx-n3 {\\n margin-right: -12px !important;\\n margin-left: -12px !important;\\n}\\n\\n.v-application .mx-n4 {\\n margin-right: -16px !important;\\n margin-left: -16px !important;\\n}\\n\\n.v-application .mx-n5 {\\n margin-right: -20px !important;\\n margin-left: -20px !important;\\n}\\n\\n.v-application .mx-n6 {\\n margin-right: -24px !important;\\n margin-left: -24px !important;\\n}\\n\\n.v-application .mx-n7 {\\n margin-right: -28px !important;\\n margin-left: -28px !important;\\n}\\n\\n.v-application .mx-n8 {\\n margin-right: -32px !important;\\n margin-left: -32px !important;\\n}\\n\\n.v-application .mx-n9 {\\n margin-right: -36px !important;\\n margin-left: -36px !important;\\n}\\n\\n.v-application .mx-n10 {\\n margin-right: -40px !important;\\n margin-left: -40px !important;\\n}\\n\\n.v-application .mx-n11 {\\n margin-right: -44px !important;\\n margin-left: -44px !important;\\n}\\n\\n.v-application .mx-n12 {\\n margin-right: -48px !important;\\n margin-left: -48px !important;\\n}\\n\\n.v-application .mx-n13 {\\n margin-right: -52px !important;\\n margin-left: -52px !important;\\n}\\n\\n.v-application .mx-n14 {\\n margin-right: -56px !important;\\n margin-left: -56px !important;\\n}\\n\\n.v-application .mx-n15 {\\n margin-right: -60px !important;\\n margin-left: -60px !important;\\n}\\n\\n.v-application .mx-n16 {\\n margin-right: -64px !important;\\n margin-left: -64px !important;\\n}\\n\\n.v-application .my-n1 {\\n margin-top: -4px !important;\\n margin-bottom: -4px !important;\\n}\\n\\n.v-application .my-n2 {\\n margin-top: -8px !important;\\n margin-bottom: -8px !important;\\n}\\n\\n.v-application .my-n3 {\\n margin-top: -12px !important;\\n margin-bottom: -12px !important;\\n}\\n\\n.v-application .my-n4 {\\n margin-top: -16px !important;\\n margin-bottom: -16px !important;\\n}\\n\\n.v-application .my-n5 {\\n margin-top: -20px !important;\\n margin-bottom: -20px !important;\\n}\\n\\n.v-application .my-n6 {\\n margin-top: -24px !important;\\n margin-bottom: -24px !important;\\n}\\n\\n.v-application .my-n7 {\\n margin-top: -28px !important;\\n margin-bottom: -28px !important;\\n}\\n\\n.v-application .my-n8 {\\n margin-top: -32px !important;\\n margin-bottom: -32px !important;\\n}\\n\\n.v-application .my-n9 {\\n margin-top: -36px !important;\\n margin-bottom: -36px !important;\\n}\\n\\n.v-application .my-n10 {\\n margin-top: -40px !important;\\n margin-bottom: -40px !important;\\n}\\n\\n.v-application .my-n11 {\\n margin-top: -44px !important;\\n margin-bottom: -44px !important;\\n}\\n\\n.v-application .my-n12 {\\n margin-top: -48px !important;\\n margin-bottom: -48px !important;\\n}\\n\\n.v-application .my-n13 {\\n margin-top: -52px !important;\\n margin-bottom: -52px !important;\\n}\\n\\n.v-application .my-n14 {\\n margin-top: -56px !important;\\n margin-bottom: -56px !important;\\n}\\n\\n.v-application .my-n15 {\\n margin-top: -60px !important;\\n margin-bottom: -60px !important;\\n}\\n\\n.v-application .my-n16 {\\n margin-top: -64px !important;\\n margin-bottom: -64px !important;\\n}\\n\\n.v-application .mt-n1 {\\n margin-top: -4px !important;\\n}\\n\\n.v-application .mt-n2 {\\n margin-top: -8px !important;\\n}\\n\\n.v-application .mt-n3 {\\n margin-top: -12px !important;\\n}\\n\\n.v-application .mt-n4 {\\n margin-top: -16px !important;\\n}\\n\\n.v-application .mt-n5 {\\n margin-top: -20px !important;\\n}\\n\\n.v-application .mt-n6 {\\n margin-top: -24px !important;\\n}\\n\\n.v-application .mt-n7 {\\n margin-top: -28px !important;\\n}\\n\\n.v-application .mt-n8 {\\n margin-top: -32px !important;\\n}\\n\\n.v-application .mt-n9 {\\n margin-top: -36px !important;\\n}\\n\\n.v-application .mt-n10 {\\n margin-top: -40px !important;\\n}\\n\\n.v-application .mt-n11 {\\n margin-top: -44px !important;\\n}\\n\\n.v-application .mt-n12 {\\n margin-top: -48px !important;\\n}\\n\\n.v-application .mt-n13 {\\n margin-top: -52px !important;\\n}\\n\\n.v-application .mt-n14 {\\n margin-top: -56px !important;\\n}\\n\\n.v-application .mt-n15 {\\n margin-top: -60px !important;\\n}\\n\\n.v-application .mt-n16 {\\n margin-top: -64px !important;\\n}\\n\\n.v-application .mr-n1 {\\n margin-right: -4px !important;\\n}\\n\\n.v-application .mr-n2 {\\n margin-right: -8px !important;\\n}\\n\\n.v-application .mr-n3 {\\n margin-right: -12px !important;\\n}\\n\\n.v-application .mr-n4 {\\n margin-right: -16px !important;\\n}\\n\\n.v-application .mr-n5 {\\n margin-right: -20px !important;\\n}\\n\\n.v-application .mr-n6 {\\n margin-right: -24px !important;\\n}\\n\\n.v-application .mr-n7 {\\n margin-right: -28px !important;\\n}\\n\\n.v-application .mr-n8 {\\n margin-right: -32px !important;\\n}\\n\\n.v-application .mr-n9 {\\n margin-right: -36px !important;\\n}\\n\\n.v-application .mr-n10 {\\n margin-right: -40px !important;\\n}\\n\\n.v-application .mr-n11 {\\n margin-right: -44px !important;\\n}\\n\\n.v-application .mr-n12 {\\n margin-right: -48px !important;\\n}\\n\\n.v-application .mr-n13 {\\n margin-right: -52px !important;\\n}\\n\\n.v-application .mr-n14 {\\n margin-right: -56px !important;\\n}\\n\\n.v-application .mr-n15 {\\n margin-right: -60px !important;\\n}\\n\\n.v-application .mr-n16 {\\n margin-right: -64px !important;\\n}\\n\\n.v-application .mb-n1 {\\n margin-bottom: -4px !important;\\n}\\n\\n.v-application .mb-n2 {\\n margin-bottom: -8px !important;\\n}\\n\\n.v-application .mb-n3 {\\n margin-bottom: -12px !important;\\n}\\n\\n.v-application .mb-n4 {\\n margin-bottom: -16px !important;\\n}\\n\\n.v-application .mb-n5 {\\n margin-bottom: -20px !important;\\n}\\n\\n.v-application .mb-n6 {\\n margin-bottom: -24px !important;\\n}\\n\\n.v-application .mb-n7 {\\n margin-bottom: -28px !important;\\n}\\n\\n.v-application .mb-n8 {\\n margin-bottom: -32px !important;\\n}\\n\\n.v-application .mb-n9 {\\n margin-bottom: -36px !important;\\n}\\n\\n.v-application .mb-n10 {\\n margin-bottom: -40px !important;\\n}\\n\\n.v-application .mb-n11 {\\n margin-bottom: -44px !important;\\n}\\n\\n.v-application .mb-n12 {\\n margin-bottom: -48px !important;\\n}\\n\\n.v-application .mb-n13 {\\n margin-bottom: -52px !important;\\n}\\n\\n.v-application .mb-n14 {\\n margin-bottom: -56px !important;\\n}\\n\\n.v-application .mb-n15 {\\n margin-bottom: -60px !important;\\n}\\n\\n.v-application .mb-n16 {\\n margin-bottom: -64px !important;\\n}\\n\\n.v-application .ml-n1 {\\n margin-left: -4px !important;\\n}\\n\\n.v-application .ml-n2 {\\n margin-left: -8px !important;\\n}\\n\\n.v-application .ml-n3 {\\n margin-left: -12px !important;\\n}\\n\\n.v-application .ml-n4 {\\n margin-left: -16px !important;\\n}\\n\\n.v-application .ml-n5 {\\n margin-left: -20px !important;\\n}\\n\\n.v-application .ml-n6 {\\n margin-left: -24px !important;\\n}\\n\\n.v-application .ml-n7 {\\n margin-left: -28px !important;\\n}\\n\\n.v-application .ml-n8 {\\n margin-left: -32px !important;\\n}\\n\\n.v-application .ml-n9 {\\n margin-left: -36px !important;\\n}\\n\\n.v-application .ml-n10 {\\n margin-left: -40px !important;\\n}\\n\\n.v-application .ml-n11 {\\n margin-left: -44px !important;\\n}\\n\\n.v-application .ml-n12 {\\n margin-left: -48px !important;\\n}\\n\\n.v-application .ml-n13 {\\n margin-left: -52px !important;\\n}\\n\\n.v-application .ml-n14 {\\n margin-left: -56px !important;\\n}\\n\\n.v-application .ml-n15 {\\n margin-left: -60px !important;\\n}\\n\\n.v-application .ml-n16 {\\n margin-left: -64px !important;\\n}\\n\\n.v-application--is-ltr .ms-n1 {\\n margin-left: -4px !important;\\n}\\n\\n.v-application--is-rtl .ms-n1 {\\n margin-right: -4px !important;\\n}\\n\\n.v-application--is-ltr .ms-n2 {\\n margin-left: -8px !important;\\n}\\n\\n.v-application--is-rtl .ms-n2 {\\n margin-right: -8px !important;\\n}\\n\\n.v-application--is-ltr .ms-n3 {\\n margin-left: -12px !important;\\n}\\n\\n.v-application--is-rtl .ms-n3 {\\n margin-right: -12px !important;\\n}\\n\\n.v-application--is-ltr .ms-n4 {\\n margin-left: -16px !important;\\n}\\n\\n.v-application--is-rtl .ms-n4 {\\n margin-right: -16px !important;\\n}\\n\\n.v-application--is-ltr .ms-n5 {\\n margin-left: -20px !important;\\n}\\n\\n.v-application--is-rtl .ms-n5 {\\n margin-right: -20px !important;\\n}\\n\\n.v-application--is-ltr .ms-n6 {\\n margin-left: -24px !important;\\n}\\n\\n.v-application--is-rtl .ms-n6 {\\n margin-right: -24px !important;\\n}\\n\\n.v-application--is-ltr .ms-n7 {\\n margin-left: -28px !important;\\n}\\n\\n.v-application--is-rtl .ms-n7 {\\n margin-right: -28px !important;\\n}\\n\\n.v-application--is-ltr .ms-n8 {\\n margin-left: -32px !important;\\n}\\n\\n.v-application--is-rtl .ms-n8 {\\n margin-right: -32px !important;\\n}\\n\\n.v-application--is-ltr .ms-n9 {\\n margin-left: -36px !important;\\n}\\n\\n.v-application--is-rtl .ms-n9 {\\n margin-right: -36px !important;\\n}\\n\\n.v-application--is-ltr .ms-n10 {\\n margin-left: -40px !important;\\n}\\n\\n.v-application--is-rtl .ms-n10 {\\n margin-right: -40px !important;\\n}\\n\\n.v-application--is-ltr .ms-n11 {\\n margin-left: -44px !important;\\n}\\n\\n.v-application--is-rtl .ms-n11 {\\n margin-right: -44px !important;\\n}\\n\\n.v-application--is-ltr .ms-n12 {\\n margin-left: -48px !important;\\n}\\n\\n.v-application--is-rtl .ms-n12 {\\n margin-right: -48px !important;\\n}\\n\\n.v-application--is-ltr .ms-n13 {\\n margin-left: -52px !important;\\n}\\n\\n.v-application--is-rtl .ms-n13 {\\n margin-right: -52px !important;\\n}\\n\\n.v-application--is-ltr .ms-n14 {\\n margin-left: -56px !important;\\n}\\n\\n.v-application--is-rtl .ms-n14 {\\n margin-right: -56px !important;\\n}\\n\\n.v-application--is-ltr .ms-n15 {\\n margin-left: -60px !important;\\n}\\n\\n.v-application--is-rtl .ms-n15 {\\n margin-right: -60px !important;\\n}\\n\\n.v-application--is-ltr .ms-n16 {\\n margin-left: -64px !important;\\n}\\n\\n.v-application--is-rtl .ms-n16 {\\n margin-right: -64px !important;\\n}\\n\\n.v-application--is-ltr .me-n1 {\\n margin-right: -4px !important;\\n}\\n\\n.v-application--is-rtl .me-n1 {\\n margin-left: -4px !important;\\n}\\n\\n.v-application--is-ltr .me-n2 {\\n margin-right: -8px !important;\\n}\\n\\n.v-application--is-rtl .me-n2 {\\n margin-left: -8px !important;\\n}\\n\\n.v-application--is-ltr .me-n3 {\\n margin-right: -12px !important;\\n}\\n\\n.v-application--is-rtl .me-n3 {\\n margin-left: -12px !important;\\n}\\n\\n.v-application--is-ltr .me-n4 {\\n margin-right: -16px !important;\\n}\\n\\n.v-application--is-rtl .me-n4 {\\n margin-left: -16px !important;\\n}\\n\\n.v-application--is-ltr .me-n5 {\\n margin-right: -20px !important;\\n}\\n\\n.v-application--is-rtl .me-n5 {\\n margin-left: -20px !important;\\n}\\n\\n.v-application--is-ltr .me-n6 {\\n margin-right: -24px !important;\\n}\\n\\n.v-application--is-rtl .me-n6 {\\n margin-left: -24px !important;\\n}\\n\\n.v-application--is-ltr .me-n7 {\\n margin-right: -28px !important;\\n}\\n\\n.v-application--is-rtl .me-n7 {\\n margin-left: -28px !important;\\n}\\n\\n.v-application--is-ltr .me-n8 {\\n margin-right: -32px !important;\\n}\\n\\n.v-application--is-rtl .me-n8 {\\n margin-left: -32px !important;\\n}\\n\\n.v-application--is-ltr .me-n9 {\\n margin-right: -36px !important;\\n}\\n\\n.v-application--is-rtl .me-n9 {\\n margin-left: -36px !important;\\n}\\n\\n.v-application--is-ltr .me-n10 {\\n margin-right: -40px !important;\\n}\\n\\n.v-application--is-rtl .me-n10 {\\n margin-left: -40px !important;\\n}\\n\\n.v-application--is-ltr .me-n11 {\\n margin-right: -44px !important;\\n}\\n\\n.v-application--is-rtl .me-n11 {\\n margin-left: -44px !important;\\n}\\n\\n.v-application--is-ltr .me-n12 {\\n margin-right: -48px !important;\\n}\\n\\n.v-application--is-rtl .me-n12 {\\n margin-left: -48px !important;\\n}\\n\\n.v-application--is-ltr .me-n13 {\\n margin-right: -52px !important;\\n}\\n\\n.v-application--is-rtl .me-n13 {\\n margin-left: -52px !important;\\n}\\n\\n.v-application--is-ltr .me-n14 {\\n margin-right: -56px !important;\\n}\\n\\n.v-application--is-rtl .me-n14 {\\n margin-left: -56px !important;\\n}\\n\\n.v-application--is-ltr .me-n15 {\\n margin-right: -60px !important;\\n}\\n\\n.v-application--is-rtl .me-n15 {\\n margin-left: -60px !important;\\n}\\n\\n.v-application--is-ltr .me-n16 {\\n margin-right: -64px !important;\\n}\\n\\n.v-application--is-rtl .me-n16 {\\n margin-left: -64px !important;\\n}\\n\\n.v-application .pa-0 {\\n padding: 0px !important;\\n}\\n\\n.v-application .pa-1 {\\n padding: 4px !important;\\n}\\n\\n.v-application .pa-2 {\\n padding: 8px !important;\\n}\\n\\n.v-application .pa-3 {\\n padding: 12px !important;\\n}\\n\\n.v-application .pa-4 {\\n padding: 16px !important;\\n}\\n\\n.v-application .pa-5 {\\n padding: 20px !important;\\n}\\n\\n.v-application .pa-6 {\\n padding: 24px !important;\\n}\\n\\n.v-application .pa-7 {\\n padding: 28px !important;\\n}\\n\\n.v-application .pa-8 {\\n padding: 32px !important;\\n}\\n\\n.v-application .pa-9 {\\n padding: 36px !important;\\n}\\n\\n.v-application .pa-10 {\\n padding: 40px !important;\\n}\\n\\n.v-application .pa-11 {\\n padding: 44px !important;\\n}\\n\\n.v-application .pa-12 {\\n padding: 48px !important;\\n}\\n\\n.v-application .pa-13 {\\n padding: 52px !important;\\n}\\n\\n.v-application .pa-14 {\\n padding: 56px !important;\\n}\\n\\n.v-application .pa-15 {\\n padding: 60px !important;\\n}\\n\\n.v-application .pa-16 {\\n padding: 64px !important;\\n}\\n\\n.v-application .px-0 {\\n padding-right: 0px !important;\\n padding-left: 0px !important;\\n}\\n\\n.v-application .px-1 {\\n padding-right: 4px !important;\\n padding-left: 4px !important;\\n}\\n\\n.v-application .px-2 {\\n padding-right: 8px !important;\\n padding-left: 8px !important;\\n}\\n\\n.v-application .px-3 {\\n padding-right: 12px !important;\\n padding-left: 12px !important;\\n}\\n\\n.v-application .px-4 {\\n padding-right: 16px !important;\\n padding-left: 16px !important;\\n}\\n\\n.v-application .px-5 {\\n padding-right: 20px !important;\\n padding-left: 20px !important;\\n}\\n\\n.v-application .px-6 {\\n padding-right: 24px !important;\\n padding-left: 24px !important;\\n}\\n\\n.v-application .px-7 {\\n padding-right: 28px !important;\\n padding-left: 28px !important;\\n}\\n\\n.v-application .px-8 {\\n padding-right: 32px !important;\\n padding-left: 32px !important;\\n}\\n\\n.v-application .px-9 {\\n padding-right: 36px !important;\\n padding-left: 36px !important;\\n}\\n\\n.v-application .px-10 {\\n padding-right: 40px !important;\\n padding-left: 40px !important;\\n}\\n\\n.v-application .px-11 {\\n padding-right: 44px !important;\\n padding-left: 44px !important;\\n}\\n\\n.v-application .px-12 {\\n padding-right: 48px !important;\\n padding-left: 48px !important;\\n}\\n\\n.v-application .px-13 {\\n padding-right: 52px !important;\\n padding-left: 52px !important;\\n}\\n\\n.v-application .px-14 {\\n padding-right: 56px !important;\\n padding-left: 56px !important;\\n}\\n\\n.v-application .px-15 {\\n padding-right: 60px !important;\\n padding-left: 60px !important;\\n}\\n\\n.v-application .px-16 {\\n padding-right: 64px !important;\\n padding-left: 64px !important;\\n}\\n\\n.v-application .py-0 {\\n padding-top: 0px !important;\\n padding-bottom: 0px !important;\\n}\\n\\n.v-application .py-1 {\\n padding-top: 4px !important;\\n padding-bottom: 4px !important;\\n}\\n\\n.v-application .py-2 {\\n padding-top: 8px !important;\\n padding-bottom: 8px !important;\\n}\\n\\n.v-application .py-3 {\\n padding-top: 12px !important;\\n padding-bottom: 12px !important;\\n}\\n\\n.v-application .py-4 {\\n padding-top: 16px !important;\\n padding-bottom: 16px !important;\\n}\\n\\n.v-application .py-5 {\\n padding-top: 20px !important;\\n padding-bottom: 20px !important;\\n}\\n\\n.v-application .py-6 {\\n padding-top: 24px !important;\\n padding-bottom: 24px !important;\\n}\\n\\n.v-application .py-7 {\\n padding-top: 28px !important;\\n padding-bottom: 28px !important;\\n}\\n\\n.v-application .py-8 {\\n padding-top: 32px !important;\\n padding-bottom: 32px !important;\\n}\\n\\n.v-application .py-9 {\\n padding-top: 36px !important;\\n padding-bottom: 36px !important;\\n}\\n\\n.v-application .py-10 {\\n padding-top: 40px !important;\\n padding-bottom: 40px !important;\\n}\\n\\n.v-application .py-11 {\\n padding-top: 44px !important;\\n padding-bottom: 44px !important;\\n}\\n\\n.v-application .py-12 {\\n padding-top: 48px !important;\\n padding-bottom: 48px !important;\\n}\\n\\n.v-application .py-13 {\\n padding-top: 52px !important;\\n padding-bottom: 52px !important;\\n}\\n\\n.v-application .py-14 {\\n padding-top: 56px !important;\\n padding-bottom: 56px !important;\\n}\\n\\n.v-application .py-15 {\\n padding-top: 60px !important;\\n padding-bottom: 60px !important;\\n}\\n\\n.v-application .py-16 {\\n padding-top: 64px !important;\\n padding-bottom: 64px !important;\\n}\\n\\n.v-application .pt-0 {\\n padding-top: 0px !important;\\n}\\n\\n.v-application .pt-1 {\\n padding-top: 4px !important;\\n}\\n\\n.v-application .pt-2 {\\n padding-top: 8px !important;\\n}\\n\\n.v-application .pt-3 {\\n padding-top: 12px !important;\\n}\\n\\n.v-application .pt-4 {\\n padding-top: 16px !important;\\n}\\n\\n.v-application .pt-5 {\\n padding-top: 20px !important;\\n}\\n\\n.v-application .pt-6 {\\n padding-top: 24px !important;\\n}\\n\\n.v-application .pt-7 {\\n padding-top: 28px !important;\\n}\\n\\n.v-application .pt-8 {\\n padding-top: 32px !important;\\n}\\n\\n.v-application .pt-9 {\\n padding-top: 36px !important;\\n}\\n\\n.v-application .pt-10 {\\n padding-top: 40px !important;\\n}\\n\\n.v-application .pt-11 {\\n padding-top: 44px !important;\\n}\\n\\n.v-application .pt-12 {\\n padding-top: 48px !important;\\n}\\n\\n.v-application .pt-13 {\\n padding-top: 52px !important;\\n}\\n\\n.v-application .pt-14 {\\n padding-top: 56px !important;\\n}\\n\\n.v-application .pt-15 {\\n padding-top: 60px !important;\\n}\\n\\n.v-application .pt-16 {\\n padding-top: 64px !important;\\n}\\n\\n.v-application .pr-0 {\\n padding-right: 0px !important;\\n}\\n\\n.v-application .pr-1 {\\n padding-right: 4px !important;\\n}\\n\\n.v-application .pr-2 {\\n padding-right: 8px !important;\\n}\\n\\n.v-application .pr-3 {\\n padding-right: 12px !important;\\n}\\n\\n.v-application .pr-4 {\\n padding-right: 16px !important;\\n}\\n\\n.v-application .pr-5 {\\n padding-right: 20px !important;\\n}\\n\\n.v-application .pr-6 {\\n padding-right: 24px !important;\\n}\\n\\n.v-application .pr-7 {\\n padding-right: 28px !important;\\n}\\n\\n.v-application .pr-8 {\\n padding-right: 32px !important;\\n}\\n\\n.v-application .pr-9 {\\n padding-right: 36px !important;\\n}\\n\\n.v-application .pr-10 {\\n padding-right: 40px !important;\\n}\\n\\n.v-application .pr-11 {\\n padding-right: 44px !important;\\n}\\n\\n.v-application .pr-12 {\\n padding-right: 48px !important;\\n}\\n\\n.v-application .pr-13 {\\n padding-right: 52px !important;\\n}\\n\\n.v-application .pr-14 {\\n padding-right: 56px !important;\\n}\\n\\n.v-application .pr-15 {\\n padding-right: 60px !important;\\n}\\n\\n.v-application .pr-16 {\\n padding-right: 64px !important;\\n}\\n\\n.v-application .pb-0 {\\n padding-bottom: 0px !important;\\n}\\n\\n.v-application .pb-1 {\\n padding-bottom: 4px !important;\\n}\\n\\n.v-application .pb-2 {\\n padding-bottom: 8px !important;\\n}\\n\\n.v-application .pb-3 {\\n padding-bottom: 12px !important;\\n}\\n\\n.v-application .pb-4 {\\n padding-bottom: 16px !important;\\n}\\n\\n.v-application .pb-5 {\\n padding-bottom: 20px !important;\\n}\\n\\n.v-application .pb-6 {\\n padding-bottom: 24px !important;\\n}\\n\\n.v-application .pb-7 {\\n padding-bottom: 28px !important;\\n}\\n\\n.v-application .pb-8 {\\n padding-bottom: 32px !important;\\n}\\n\\n.v-application .pb-9 {\\n padding-bottom: 36px !important;\\n}\\n\\n.v-application .pb-10 {\\n padding-bottom: 40px !important;\\n}\\n\\n.v-application .pb-11 {\\n padding-bottom: 44px !important;\\n}\\n\\n.v-application .pb-12 {\\n padding-bottom: 48px !important;\\n}\\n\\n.v-application .pb-13 {\\n padding-bottom: 52px !important;\\n}\\n\\n.v-application .pb-14 {\\n padding-bottom: 56px !important;\\n}\\n\\n.v-application .pb-15 {\\n padding-bottom: 60px !important;\\n}\\n\\n.v-application .pb-16 {\\n padding-bottom: 64px !important;\\n}\\n\\n.v-application .pl-0 {\\n padding-left: 0px !important;\\n}\\n\\n.v-application .pl-1 {\\n padding-left: 4px !important;\\n}\\n\\n.v-application .pl-2 {\\n padding-left: 8px !important;\\n}\\n\\n.v-application .pl-3 {\\n padding-left: 12px !important;\\n}\\n\\n.v-application .pl-4 {\\n padding-left: 16px !important;\\n}\\n\\n.v-application .pl-5 {\\n padding-left: 20px !important;\\n}\\n\\n.v-application .pl-6 {\\n padding-left: 24px !important;\\n}\\n\\n.v-application .pl-7 {\\n padding-left: 28px !important;\\n}\\n\\n.v-application .pl-8 {\\n padding-left: 32px !important;\\n}\\n\\n.v-application .pl-9 {\\n padding-left: 36px !important;\\n}\\n\\n.v-application .pl-10 {\\n padding-left: 40px !important;\\n}\\n\\n.v-application .pl-11 {\\n padding-left: 44px !important;\\n}\\n\\n.v-application .pl-12 {\\n padding-left: 48px !important;\\n}\\n\\n.v-application .pl-13 {\\n padding-left: 52px !important;\\n}\\n\\n.v-application .pl-14 {\\n padding-left: 56px !important;\\n}\\n\\n.v-application .pl-15 {\\n padding-left: 60px !important;\\n}\\n\\n.v-application .pl-16 {\\n padding-left: 64px !important;\\n}\\n\\n.v-application--is-ltr .ps-0 {\\n padding-left: 0px !important;\\n}\\n\\n.v-application--is-rtl .ps-0 {\\n padding-right: 0px !important;\\n}\\n\\n.v-application--is-ltr .ps-1 {\\n padding-left: 4px !important;\\n}\\n\\n.v-application--is-rtl .ps-1 {\\n padding-right: 4px !important;\\n}\\n\\n.v-application--is-ltr .ps-2 {\\n padding-left: 8px !important;\\n}\\n\\n.v-application--is-rtl .ps-2 {\\n padding-right: 8px !important;\\n}\\n\\n.v-application--is-ltr .ps-3 {\\n padding-left: 12px !important;\\n}\\n\\n.v-application--is-rtl .ps-3 {\\n padding-right: 12px !important;\\n}\\n\\n.v-application--is-ltr .ps-4 {\\n padding-left: 16px !important;\\n}\\n\\n.v-application--is-rtl .ps-4 {\\n padding-right: 16px !important;\\n}\\n\\n.v-application--is-ltr .ps-5 {\\n padding-left: 20px !important;\\n}\\n\\n.v-application--is-rtl .ps-5 {\\n padding-right: 20px !important;\\n}\\n\\n.v-application--is-ltr .ps-6 {\\n padding-left: 24px !important;\\n}\\n\\n.v-application--is-rtl .ps-6 {\\n padding-right: 24px !important;\\n}\\n\\n.v-application--is-ltr .ps-7 {\\n padding-left: 28px !important;\\n}\\n\\n.v-application--is-rtl .ps-7 {\\n padding-right: 28px !important;\\n}\\n\\n.v-application--is-ltr .ps-8 {\\n padding-left: 32px !important;\\n}\\n\\n.v-application--is-rtl .ps-8 {\\n padding-right: 32px !important;\\n}\\n\\n.v-application--is-ltr .ps-9 {\\n padding-left: 36px !important;\\n}\\n\\n.v-application--is-rtl .ps-9 {\\n padding-right: 36px !important;\\n}\\n\\n.v-application--is-ltr .ps-10 {\\n padding-left: 40px !important;\\n}\\n\\n.v-application--is-rtl .ps-10 {\\n padding-right: 40px !important;\\n}\\n\\n.v-application--is-ltr .ps-11 {\\n padding-left: 44px !important;\\n}\\n\\n.v-application--is-rtl .ps-11 {\\n padding-right: 44px !important;\\n}\\n\\n.v-application--is-ltr .ps-12 {\\n padding-left: 48px !important;\\n}\\n\\n.v-application--is-rtl .ps-12 {\\n padding-right: 48px !important;\\n}\\n\\n.v-application--is-ltr .ps-13 {\\n padding-left: 52px !important;\\n}\\n\\n.v-application--is-rtl .ps-13 {\\n padding-right: 52px !important;\\n}\\n\\n.v-application--is-ltr .ps-14 {\\n padding-left: 56px !important;\\n}\\n\\n.v-application--is-rtl .ps-14 {\\n padding-right: 56px !important;\\n}\\n\\n.v-application--is-ltr .ps-15 {\\n padding-left: 60px !important;\\n}\\n\\n.v-application--is-rtl .ps-15 {\\n padding-right: 60px !important;\\n}\\n\\n.v-application--is-ltr .ps-16 {\\n padding-left: 64px !important;\\n}\\n\\n.v-application--is-rtl .ps-16 {\\n padding-right: 64px !important;\\n}\\n\\n.v-application--is-ltr .pe-0 {\\n padding-right: 0px !important;\\n}\\n\\n.v-application--is-rtl .pe-0 {\\n padding-left: 0px !important;\\n}\\n\\n.v-application--is-ltr .pe-1 {\\n padding-right: 4px !important;\\n}\\n\\n.v-application--is-rtl .pe-1 {\\n padding-left: 4px !important;\\n}\\n\\n.v-application--is-ltr .pe-2 {\\n padding-right: 8px !important;\\n}\\n\\n.v-application--is-rtl .pe-2 {\\n padding-left: 8px !important;\\n}\\n\\n.v-application--is-ltr .pe-3 {\\n padding-right: 12px !important;\\n}\\n\\n.v-application--is-rtl .pe-3 {\\n padding-left: 12px !important;\\n}\\n\\n.v-application--is-ltr .pe-4 {\\n padding-right: 16px !important;\\n}\\n\\n.v-application--is-rtl .pe-4 {\\n padding-left: 16px !important;\\n}\\n\\n.v-application--is-ltr .pe-5 {\\n padding-right: 20px !important;\\n}\\n\\n.v-application--is-rtl .pe-5 {\\n padding-left: 20px !important;\\n}\\n\\n.v-application--is-ltr .pe-6 {\\n padding-right: 24px !important;\\n}\\n\\n.v-application--is-rtl .pe-6 {\\n padding-left: 24px !important;\\n}\\n\\n.v-application--is-ltr .pe-7 {\\n padding-right: 28px !important;\\n}\\n\\n.v-application--is-rtl .pe-7 {\\n padding-left: 28px !important;\\n}\\n\\n.v-application--is-ltr .pe-8 {\\n padding-right: 32px !important;\\n}\\n\\n.v-application--is-rtl .pe-8 {\\n padding-left: 32px !important;\\n}\\n\\n.v-application--is-ltr .pe-9 {\\n padding-right: 36px !important;\\n}\\n\\n.v-application--is-rtl .pe-9 {\\n padding-left: 36px !important;\\n}\\n\\n.v-application--is-ltr .pe-10 {\\n padding-right: 40px !important;\\n}\\n\\n.v-application--is-rtl .pe-10 {\\n padding-left: 40px !important;\\n}\\n\\n.v-application--is-ltr .pe-11 {\\n padding-right: 44px !important;\\n}\\n\\n.v-application--is-rtl .pe-11 {\\n padding-left: 44px !important;\\n}\\n\\n.v-application--is-ltr .pe-12 {\\n padding-right: 48px !important;\\n}\\n\\n.v-application--is-rtl .pe-12 {\\n padding-left: 48px !important;\\n}\\n\\n.v-application--is-ltr .pe-13 {\\n padding-right: 52px !important;\\n}\\n\\n.v-application--is-rtl .pe-13 {\\n padding-left: 52px !important;\\n}\\n\\n.v-application--is-ltr .pe-14 {\\n padding-right: 56px !important;\\n}\\n\\n.v-application--is-rtl .pe-14 {\\n padding-left: 56px !important;\\n}\\n\\n.v-application--is-ltr .pe-15 {\\n padding-right: 60px !important;\\n}\\n\\n.v-application--is-rtl .pe-15 {\\n padding-left: 60px !important;\\n}\\n\\n.v-application--is-ltr .pe-16 {\\n padding-right: 64px !important;\\n}\\n\\n.v-application--is-rtl .pe-16 {\\n padding-left: 64px !important;\\n}\\n\\n.v-application .rounded-0 {\\n border-radius: 0 !important;\\n}\\n\\n.v-application .rounded-sm {\\n border-radius: 2px !important;\\n}\\n\\n.v-application .rounded {\\n border-radius: 4px !important;\\n}\\n\\n.v-application .rounded-lg {\\n border-radius: 8px !important;\\n}\\n\\n.v-application .rounded-xl {\\n border-radius: 16px !important;\\n}\\n\\n.v-application .rounded-xxl {\\n border-radius: 24px !important;\\n}\\n\\n.v-application .rounded-pill {\\n border-radius: 9999px !important;\\n}\\n\\n.v-application .rounded-circle {\\n border-radius: 50% !important;\\n}\\n\\n.v-application .rounded-t-0 {\\n border-top-left-radius: 0 !important;\\n border-top-right-radius: 0 !important;\\n}\\n\\n.v-application .rounded-t-sm {\\n border-top-left-radius: 2px !important;\\n border-top-right-radius: 2px !important;\\n}\\n\\n.v-application .rounded-t {\\n border-top-left-radius: 4px !important;\\n border-top-right-radius: 4px !important;\\n}\\n\\n.v-application .rounded-t-lg {\\n border-top-left-radius: 8px !important;\\n border-top-right-radius: 8px !important;\\n}\\n\\n.v-application .rounded-t-xl {\\n border-top-left-radius: 16px !important;\\n border-top-right-radius: 16px !important;\\n}\\n\\n.v-application .rounded-t-xxl {\\n border-top-left-radius: 24px !important;\\n border-top-right-radius: 24px !important;\\n}\\n\\n.v-application .rounded-t-pill {\\n border-top-left-radius: 9999px !important;\\n border-top-right-radius: 9999px !important;\\n}\\n\\n.v-application .rounded-t-circle {\\n border-top-left-radius: 50% !important;\\n border-top-right-radius: 50% !important;\\n}\\n\\n.v-application .rounded-r-0 {\\n border-top-right-radius: 0 !important;\\n border-bottom-right-radius: 0 !important;\\n}\\n\\n.v-application .rounded-r-sm {\\n border-top-right-radius: 2px !important;\\n border-bottom-right-radius: 2px !important;\\n}\\n\\n.v-application .rounded-r {\\n border-top-right-radius: 4px !important;\\n border-bottom-right-radius: 4px !important;\\n}\\n\\n.v-application .rounded-r-lg {\\n border-top-right-radius: 8px !important;\\n border-bottom-right-radius: 8px !important;\\n}\\n\\n.v-application .rounded-r-xl {\\n border-top-right-radius: 16px !important;\\n border-bottom-right-radius: 16px !important;\\n}\\n\\n.v-application .rounded-r-xxl {\\n border-top-right-radius: 24px !important;\\n border-bottom-right-radius: 24px !important;\\n}\\n\\n.v-application .rounded-r-pill {\\n border-top-right-radius: 9999px !important;\\n border-bottom-right-radius: 9999px !important;\\n}\\n\\n.v-application .rounded-r-circle {\\n border-top-right-radius: 50% !important;\\n border-bottom-right-radius: 50% !important;\\n}\\n\\n.v-application .rounded-b-0 {\\n border-bottom-left-radius: 0 !important;\\n border-bottom-right-radius: 0 !important;\\n}\\n\\n.v-application .rounded-b-sm {\\n border-bottom-left-radius: 2px !important;\\n border-bottom-right-radius: 2px !important;\\n}\\n\\n.v-application .rounded-b {\\n border-bottom-left-radius: 4px !important;\\n border-bottom-right-radius: 4px !important;\\n}\\n\\n.v-application .rounded-b-lg {\\n border-bottom-left-radius: 8px !important;\\n border-bottom-right-radius: 8px !important;\\n}\\n\\n.v-application .rounded-b-xl {\\n border-bottom-left-radius: 16px !important;\\n border-bottom-right-radius: 16px !important;\\n}\\n\\n.v-application .rounded-b-xxl {\\n border-bottom-left-radius: 24px !important;\\n border-bottom-right-radius: 24px !important;\\n}\\n\\n.v-application .rounded-b-pill {\\n border-bottom-left-radius: 9999px !important;\\n border-bottom-right-radius: 9999px !important;\\n}\\n\\n.v-application .rounded-b-circle {\\n border-bottom-left-radius: 50% !important;\\n border-bottom-right-radius: 50% !important;\\n}\\n\\n.v-application .rounded-l-0 {\\n border-top-left-radius: 0 !important;\\n border-bottom-left-radius: 0 !important;\\n}\\n\\n.v-application .rounded-l-sm {\\n border-top-left-radius: 2px !important;\\n border-bottom-left-radius: 2px !important;\\n}\\n\\n.v-application .rounded-l {\\n border-top-left-radius: 4px !important;\\n border-bottom-left-radius: 4px !important;\\n}\\n\\n.v-application .rounded-l-lg {\\n border-top-left-radius: 8px !important;\\n border-bottom-left-radius: 8px !important;\\n}\\n\\n.v-application .rounded-l-xl {\\n border-top-left-radius: 16px !important;\\n border-bottom-left-radius: 16px !important;\\n}\\n\\n.v-application .rounded-l-xxl {\\n border-top-left-radius: 24px !important;\\n border-bottom-left-radius: 24px !important;\\n}\\n\\n.v-application .rounded-l-pill {\\n border-top-left-radius: 9999px !important;\\n border-bottom-left-radius: 9999px !important;\\n}\\n\\n.v-application .rounded-l-circle {\\n border-top-left-radius: 50% !important;\\n border-bottom-left-radius: 50% !important;\\n}\\n\\n.v-application .rounded-tl-0 {\\n border-top-left-radius: 0 !important;\\n}\\n\\n.v-application .rounded-tl-sm {\\n border-top-left-radius: 2px !important;\\n}\\n\\n.v-application .rounded-tl {\\n border-top-left-radius: 4px !important;\\n}\\n\\n.v-application .rounded-tl-lg {\\n border-top-left-radius: 8px !important;\\n}\\n\\n.v-application .rounded-tl-xl {\\n border-top-left-radius: 16px !important;\\n}\\n\\n.v-application .rounded-tl-xxl {\\n border-top-left-radius: 24px !important;\\n}\\n\\n.v-application .rounded-tl-pill {\\n border-top-left-radius: 9999px !important;\\n}\\n\\n.v-application .rounded-tl-circle {\\n border-top-left-radius: 50% !important;\\n}\\n\\n.v-application .rounded-tr-0 {\\n border-top-right-radius: 0 !important;\\n}\\n\\n.v-application .rounded-tr-sm {\\n border-top-right-radius: 2px !important;\\n}\\n\\n.v-application .rounded-tr {\\n border-top-right-radius: 4px !important;\\n}\\n\\n.v-application .rounded-tr-lg {\\n border-top-right-radius: 8px !important;\\n}\\n\\n.v-application .rounded-tr-xl {\\n border-top-right-radius: 16px !important;\\n}\\n\\n.v-application .rounded-tr-xxl {\\n border-top-right-radius: 24px !important;\\n}\\n\\n.v-application .rounded-tr-pill {\\n border-top-right-radius: 9999px !important;\\n}\\n\\n.v-application .rounded-tr-circle {\\n border-top-right-radius: 50% !important;\\n}\\n\\n.v-application .rounded-br-0 {\\n border-bottom-right-radius: 0 !important;\\n}\\n\\n.v-application .rounded-br-sm {\\n border-bottom-right-radius: 2px !important;\\n}\\n\\n.v-application .rounded-br {\\n border-bottom-right-radius: 4px !important;\\n}\\n\\n.v-application .rounded-br-lg {\\n border-bottom-right-radius: 8px !important;\\n}\\n\\n.v-application .rounded-br-xl {\\n border-bottom-right-radius: 16px !important;\\n}\\n\\n.v-application .rounded-br-xxl {\\n border-bottom-right-radius: 24px !important;\\n}\\n\\n.v-application .rounded-br-pill {\\n border-bottom-right-radius: 9999px !important;\\n}\\n\\n.v-application .rounded-br-circle {\\n border-bottom-right-radius: 50% !important;\\n}\\n\\n.v-application .rounded-bl-0 {\\n border-bottom-left-radius: 0 !important;\\n}\\n\\n.v-application .rounded-bl-sm {\\n border-bottom-left-radius: 2px !important;\\n}\\n\\n.v-application .rounded-bl {\\n border-bottom-left-radius: 4px !important;\\n}\\n\\n.v-application .rounded-bl-lg {\\n border-bottom-left-radius: 8px !important;\\n}\\n\\n.v-application .rounded-bl-xl {\\n border-bottom-left-radius: 16px !important;\\n}\\n\\n.v-application .rounded-bl-xxl {\\n border-bottom-left-radius: 24px !important;\\n}\\n\\n.v-application .rounded-bl-pill {\\n border-bottom-left-radius: 9999px !important;\\n}\\n\\n.v-application .rounded-bl-circle {\\n border-bottom-left-radius: 50% !important;\\n}\\n\\n.v-application .text-left {\\n text-align: left !important;\\n}\\n\\n.v-application .text-right {\\n text-align: right !important;\\n}\\n\\n.v-application .text-center {\\n text-align: center !important;\\n}\\n\\n.v-application .text-justify {\\n text-align: justify !important;\\n}\\n\\n.v-application .text-start {\\n text-align: start !important;\\n}\\n\\n.v-application .text-end {\\n text-align: end !important;\\n}\\n\\n.v-application .text-decoration-line-through {\\n text-decoration: line-through !important;\\n}\\n\\n.v-application .text-decoration-none {\\n text-decoration: none !important;\\n}\\n\\n.v-application .text-decoration-overline {\\n text-decoration: overline !important;\\n}\\n\\n.v-application .text-decoration-underline {\\n text-decoration: underline !important;\\n}\\n\\n.v-application .text-wrap {\\n white-space: normal !important;\\n}\\n\\n.v-application .text-no-wrap {\\n white-space: nowrap !important;\\n}\\n\\n.v-application .text-pre {\\n white-space: pre !important;\\n}\\n\\n.v-application .text-pre-line {\\n white-space: pre-line !important;\\n}\\n\\n.v-application .text-pre-wrap {\\n white-space: pre-wrap !important;\\n}\\n\\n.v-application .text-break {\\n overflow-wrap: break-word !important;\\n word-break: break-word !important;\\n}\\n\\n.v-application .text-truncate {\\n white-space: nowrap !important;\\n overflow: hidden !important;\\n text-overflow: ellipsis !important;\\n}\\n\\n.v-application .text-none {\\n text-transform: none !important;\\n}\\n\\n.v-application .text-capitalize {\\n text-transform: capitalize !important;\\n}\\n\\n.v-application .text-lowercase {\\n text-transform: lowercase !important;\\n}\\n\\n.v-application .text-uppercase {\\n text-transform: uppercase !important;\\n}\\n\\n.v-application .text-h1 {\\n font-size: 6rem !important;\\n font-weight: 300;\\n line-height: 6rem;\\n letter-spacing: -0.015625em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-h2 {\\n font-size: 3.75rem !important;\\n font-weight: 300;\\n line-height: 3.75rem;\\n letter-spacing: -0.0083333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-h3 {\\n font-size: 3rem !important;\\n font-weight: 400;\\n line-height: 3.125rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-h4 {\\n font-size: 2.125rem !important;\\n font-weight: 400;\\n line-height: 2.5rem;\\n letter-spacing: 0.0073529412em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-h5 {\\n font-size: 1.5rem !important;\\n font-weight: 400;\\n line-height: 2rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-h6 {\\n font-size: 1.25rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.0125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-subtitle-1 {\\n font-size: 1rem !important;\\n font-weight: normal;\\n line-height: 1.75rem;\\n letter-spacing: 0.009375em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-subtitle-2 {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 1.375rem;\\n letter-spacing: 0.0071428571em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-body-1 {\\n font-size: 1rem !important;\\n font-weight: 400;\\n line-height: 1.5rem;\\n letter-spacing: 0.03125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-body-2 {\\n font-size: 0.875rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0178571429em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-button {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 2.25rem;\\n letter-spacing: 0.0892857143em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n}\\n\\n.v-application .text-caption {\\n font-size: 0.75rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0333333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n}\\n\\n.v-application .text-overline {\\n font-size: 0.75rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.1666666667em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n}\\n\\n@media (min-width: 600px) {\\n .v-application .d-sm-none {\\n display: none !important;\\n }\\n .v-application .d-sm-inline {\\n display: inline !important;\\n }\\n .v-application .d-sm-inline-block {\\n display: inline-block !important;\\n }\\n .v-application .d-sm-block {\\n display: block !important;\\n }\\n .v-application .d-sm-table {\\n display: table !important;\\n }\\n .v-application .d-sm-table-row {\\n display: table-row !important;\\n }\\n .v-application .d-sm-table-cell {\\n display: table-cell !important;\\n }\\n .v-application .d-sm-flex {\\n display: flex !important;\\n }\\n .v-application .d-sm-inline-flex {\\n display: inline-flex !important;\\n }\\n .v-application .float-sm-none {\\n float: none !important;\\n }\\n .v-application .float-sm-left {\\n float: left !important;\\n }\\n .v-application .float-sm-right {\\n float: right !important;\\n }\\n .v-application--is-rtl .float-sm-end {\\n float: left !important;\\n }\\n .v-application--is-rtl .float-sm-start {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-sm-end {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-sm-start {\\n float: left !important;\\n }\\n .v-application .flex-sm-fill {\\n flex: 1 1 auto !important;\\n }\\n .v-application .flex-sm-row {\\n flex-direction: row !important;\\n }\\n .v-application .flex-sm-column {\\n flex-direction: column !important;\\n }\\n .v-application .flex-sm-row-reverse {\\n flex-direction: row-reverse !important;\\n }\\n .v-application .flex-sm-column-reverse {\\n flex-direction: column-reverse !important;\\n }\\n .v-application .flex-sm-grow-0 {\\n flex-grow: 0 !important;\\n }\\n .v-application .flex-sm-grow-1 {\\n flex-grow: 1 !important;\\n }\\n .v-application .flex-sm-shrink-0 {\\n flex-shrink: 0 !important;\\n }\\n .v-application .flex-sm-shrink-1 {\\n flex-shrink: 1 !important;\\n }\\n .v-application .flex-sm-wrap {\\n flex-wrap: wrap !important;\\n }\\n .v-application .flex-sm-nowrap {\\n flex-wrap: nowrap !important;\\n }\\n .v-application .flex-sm-wrap-reverse {\\n flex-wrap: wrap-reverse !important;\\n }\\n .v-application .justify-sm-start {\\n justify-content: flex-start !important;\\n }\\n .v-application .justify-sm-end {\\n justify-content: flex-end !important;\\n }\\n .v-application .justify-sm-center {\\n justify-content: center !important;\\n }\\n .v-application .justify-sm-space-between {\\n justify-content: space-between !important;\\n }\\n .v-application .justify-sm-space-around {\\n justify-content: space-around !important;\\n }\\n .v-application .align-sm-start {\\n align-items: flex-start !important;\\n }\\n .v-application .align-sm-end {\\n align-items: flex-end !important;\\n }\\n .v-application .align-sm-center {\\n align-items: center !important;\\n }\\n .v-application .align-sm-baseline {\\n align-items: baseline !important;\\n }\\n .v-application .align-sm-stretch {\\n align-items: stretch !important;\\n }\\n .v-application .align-content-sm-start {\\n align-content: flex-start !important;\\n }\\n .v-application .align-content-sm-end {\\n align-content: flex-end !important;\\n }\\n .v-application .align-content-sm-center {\\n align-content: center !important;\\n }\\n .v-application .align-content-sm-space-between {\\n align-content: space-between !important;\\n }\\n .v-application .align-content-sm-space-around {\\n align-content: space-around !important;\\n }\\n .v-application .align-content-sm-stretch {\\n align-content: stretch !important;\\n }\\n .v-application .align-self-sm-auto {\\n align-self: auto !important;\\n }\\n .v-application .align-self-sm-start {\\n align-self: flex-start !important;\\n }\\n .v-application .align-self-sm-end {\\n align-self: flex-end !important;\\n }\\n .v-application .align-self-sm-center {\\n align-self: center !important;\\n }\\n .v-application .align-self-sm-baseline {\\n align-self: baseline !important;\\n }\\n .v-application .align-self-sm-stretch {\\n align-self: stretch !important;\\n }\\n .v-application .order-sm-first {\\n order: -1 !important;\\n }\\n .v-application .order-sm-0 {\\n order: 0 !important;\\n }\\n .v-application .order-sm-1 {\\n order: 1 !important;\\n }\\n .v-application .order-sm-2 {\\n order: 2 !important;\\n }\\n .v-application .order-sm-3 {\\n order: 3 !important;\\n }\\n .v-application .order-sm-4 {\\n order: 4 !important;\\n }\\n .v-application .order-sm-5 {\\n order: 5 !important;\\n }\\n .v-application .order-sm-6 {\\n order: 6 !important;\\n }\\n .v-application .order-sm-7 {\\n order: 7 !important;\\n }\\n .v-application .order-sm-8 {\\n order: 8 !important;\\n }\\n .v-application .order-sm-9 {\\n order: 9 !important;\\n }\\n .v-application .order-sm-10 {\\n order: 10 !important;\\n }\\n .v-application .order-sm-11 {\\n order: 11 !important;\\n }\\n .v-application .order-sm-12 {\\n order: 12 !important;\\n }\\n .v-application .order-sm-last {\\n order: 13 !important;\\n }\\n .v-application .ma-sm-0 {\\n margin: 0px !important;\\n }\\n .v-application .ma-sm-1 {\\n margin: 4px !important;\\n }\\n .v-application .ma-sm-2 {\\n margin: 8px !important;\\n }\\n .v-application .ma-sm-3 {\\n margin: 12px !important;\\n }\\n .v-application .ma-sm-4 {\\n margin: 16px !important;\\n }\\n .v-application .ma-sm-5 {\\n margin: 20px !important;\\n }\\n .v-application .ma-sm-6 {\\n margin: 24px !important;\\n }\\n .v-application .ma-sm-7 {\\n margin: 28px !important;\\n }\\n .v-application .ma-sm-8 {\\n margin: 32px !important;\\n }\\n .v-application .ma-sm-9 {\\n margin: 36px !important;\\n }\\n .v-application .ma-sm-10 {\\n margin: 40px !important;\\n }\\n .v-application .ma-sm-11 {\\n margin: 44px !important;\\n }\\n .v-application .ma-sm-12 {\\n margin: 48px !important;\\n }\\n .v-application .ma-sm-13 {\\n margin: 52px !important;\\n }\\n .v-application .ma-sm-14 {\\n margin: 56px !important;\\n }\\n .v-application .ma-sm-15 {\\n margin: 60px !important;\\n }\\n .v-application .ma-sm-16 {\\n margin: 64px !important;\\n }\\n .v-application .ma-sm-auto {\\n margin: auto !important;\\n }\\n .v-application .mx-sm-0 {\\n margin-right: 0px !important;\\n margin-left: 0px !important;\\n }\\n .v-application .mx-sm-1 {\\n margin-right: 4px !important;\\n margin-left: 4px !important;\\n }\\n .v-application .mx-sm-2 {\\n margin-right: 8px !important;\\n margin-left: 8px !important;\\n }\\n .v-application .mx-sm-3 {\\n margin-right: 12px !important;\\n margin-left: 12px !important;\\n }\\n .v-application .mx-sm-4 {\\n margin-right: 16px !important;\\n margin-left: 16px !important;\\n }\\n .v-application .mx-sm-5 {\\n margin-right: 20px !important;\\n margin-left: 20px !important;\\n }\\n .v-application .mx-sm-6 {\\n margin-right: 24px !important;\\n margin-left: 24px !important;\\n }\\n .v-application .mx-sm-7 {\\n margin-right: 28px !important;\\n margin-left: 28px !important;\\n }\\n .v-application .mx-sm-8 {\\n margin-right: 32px !important;\\n margin-left: 32px !important;\\n }\\n .v-application .mx-sm-9 {\\n margin-right: 36px !important;\\n margin-left: 36px !important;\\n }\\n .v-application .mx-sm-10 {\\n margin-right: 40px !important;\\n margin-left: 40px !important;\\n }\\n .v-application .mx-sm-11 {\\n margin-right: 44px !important;\\n margin-left: 44px !important;\\n }\\n .v-application .mx-sm-12 {\\n margin-right: 48px !important;\\n margin-left: 48px !important;\\n }\\n .v-application .mx-sm-13 {\\n margin-right: 52px !important;\\n margin-left: 52px !important;\\n }\\n .v-application .mx-sm-14 {\\n margin-right: 56px !important;\\n margin-left: 56px !important;\\n }\\n .v-application .mx-sm-15 {\\n margin-right: 60px !important;\\n margin-left: 60px !important;\\n }\\n .v-application .mx-sm-16 {\\n margin-right: 64px !important;\\n margin-left: 64px !important;\\n }\\n .v-application .mx-sm-auto {\\n margin-right: auto !important;\\n margin-left: auto !important;\\n }\\n .v-application .my-sm-0 {\\n margin-top: 0px !important;\\n margin-bottom: 0px !important;\\n }\\n .v-application .my-sm-1 {\\n margin-top: 4px !important;\\n margin-bottom: 4px !important;\\n }\\n .v-application .my-sm-2 {\\n margin-top: 8px !important;\\n margin-bottom: 8px !important;\\n }\\n .v-application .my-sm-3 {\\n margin-top: 12px !important;\\n margin-bottom: 12px !important;\\n }\\n .v-application .my-sm-4 {\\n margin-top: 16px !important;\\n margin-bottom: 16px !important;\\n }\\n .v-application .my-sm-5 {\\n margin-top: 20px !important;\\n margin-bottom: 20px !important;\\n }\\n .v-application .my-sm-6 {\\n margin-top: 24px !important;\\n margin-bottom: 24px !important;\\n }\\n .v-application .my-sm-7 {\\n margin-top: 28px !important;\\n margin-bottom: 28px !important;\\n }\\n .v-application .my-sm-8 {\\n margin-top: 32px !important;\\n margin-bottom: 32px !important;\\n }\\n .v-application .my-sm-9 {\\n margin-top: 36px !important;\\n margin-bottom: 36px !important;\\n }\\n .v-application .my-sm-10 {\\n margin-top: 40px !important;\\n margin-bottom: 40px !important;\\n }\\n .v-application .my-sm-11 {\\n margin-top: 44px !important;\\n margin-bottom: 44px !important;\\n }\\n .v-application .my-sm-12 {\\n margin-top: 48px !important;\\n margin-bottom: 48px !important;\\n }\\n .v-application .my-sm-13 {\\n margin-top: 52px !important;\\n margin-bottom: 52px !important;\\n }\\n .v-application .my-sm-14 {\\n margin-top: 56px !important;\\n margin-bottom: 56px !important;\\n }\\n .v-application .my-sm-15 {\\n margin-top: 60px !important;\\n margin-bottom: 60px !important;\\n }\\n .v-application .my-sm-16 {\\n margin-top: 64px !important;\\n margin-bottom: 64px !important;\\n }\\n .v-application .my-sm-auto {\\n margin-top: auto !important;\\n margin-bottom: auto !important;\\n }\\n .v-application .mt-sm-0 {\\n margin-top: 0px !important;\\n }\\n .v-application .mt-sm-1 {\\n margin-top: 4px !important;\\n }\\n .v-application .mt-sm-2 {\\n margin-top: 8px !important;\\n }\\n .v-application .mt-sm-3 {\\n margin-top: 12px !important;\\n }\\n .v-application .mt-sm-4 {\\n margin-top: 16px !important;\\n }\\n .v-application .mt-sm-5 {\\n margin-top: 20px !important;\\n }\\n .v-application .mt-sm-6 {\\n margin-top: 24px !important;\\n }\\n .v-application .mt-sm-7 {\\n margin-top: 28px !important;\\n }\\n .v-application .mt-sm-8 {\\n margin-top: 32px !important;\\n }\\n .v-application .mt-sm-9 {\\n margin-top: 36px !important;\\n }\\n .v-application .mt-sm-10 {\\n margin-top: 40px !important;\\n }\\n .v-application .mt-sm-11 {\\n margin-top: 44px !important;\\n }\\n .v-application .mt-sm-12 {\\n margin-top: 48px !important;\\n }\\n .v-application .mt-sm-13 {\\n margin-top: 52px !important;\\n }\\n .v-application .mt-sm-14 {\\n margin-top: 56px !important;\\n }\\n .v-application .mt-sm-15 {\\n margin-top: 60px !important;\\n }\\n .v-application .mt-sm-16 {\\n margin-top: 64px !important;\\n }\\n .v-application .mt-sm-auto {\\n margin-top: auto !important;\\n }\\n .v-application .mr-sm-0 {\\n margin-right: 0px !important;\\n }\\n .v-application .mr-sm-1 {\\n margin-right: 4px !important;\\n }\\n .v-application .mr-sm-2 {\\n margin-right: 8px !important;\\n }\\n .v-application .mr-sm-3 {\\n margin-right: 12px !important;\\n }\\n .v-application .mr-sm-4 {\\n margin-right: 16px !important;\\n }\\n .v-application .mr-sm-5 {\\n margin-right: 20px !important;\\n }\\n .v-application .mr-sm-6 {\\n margin-right: 24px !important;\\n }\\n .v-application .mr-sm-7 {\\n margin-right: 28px !important;\\n }\\n .v-application .mr-sm-8 {\\n margin-right: 32px !important;\\n }\\n .v-application .mr-sm-9 {\\n margin-right: 36px !important;\\n }\\n .v-application .mr-sm-10 {\\n margin-right: 40px !important;\\n }\\n .v-application .mr-sm-11 {\\n margin-right: 44px !important;\\n }\\n .v-application .mr-sm-12 {\\n margin-right: 48px !important;\\n }\\n .v-application .mr-sm-13 {\\n margin-right: 52px !important;\\n }\\n .v-application .mr-sm-14 {\\n margin-right: 56px !important;\\n }\\n .v-application .mr-sm-15 {\\n margin-right: 60px !important;\\n }\\n .v-application .mr-sm-16 {\\n margin-right: 64px !important;\\n }\\n .v-application .mr-sm-auto {\\n margin-right: auto !important;\\n }\\n .v-application .mb-sm-0 {\\n margin-bottom: 0px !important;\\n }\\n .v-application .mb-sm-1 {\\n margin-bottom: 4px !important;\\n }\\n .v-application .mb-sm-2 {\\n margin-bottom: 8px !important;\\n }\\n .v-application .mb-sm-3 {\\n margin-bottom: 12px !important;\\n }\\n .v-application .mb-sm-4 {\\n margin-bottom: 16px !important;\\n }\\n .v-application .mb-sm-5 {\\n margin-bottom: 20px !important;\\n }\\n .v-application .mb-sm-6 {\\n margin-bottom: 24px !important;\\n }\\n .v-application .mb-sm-7 {\\n margin-bottom: 28px !important;\\n }\\n .v-application .mb-sm-8 {\\n margin-bottom: 32px !important;\\n }\\n .v-application .mb-sm-9 {\\n margin-bottom: 36px !important;\\n }\\n .v-application .mb-sm-10 {\\n margin-bottom: 40px !important;\\n }\\n .v-application .mb-sm-11 {\\n margin-bottom: 44px !important;\\n }\\n .v-application .mb-sm-12 {\\n margin-bottom: 48px !important;\\n }\\n .v-application .mb-sm-13 {\\n margin-bottom: 52px !important;\\n }\\n .v-application .mb-sm-14 {\\n margin-bottom: 56px !important;\\n }\\n .v-application .mb-sm-15 {\\n margin-bottom: 60px !important;\\n }\\n .v-application .mb-sm-16 {\\n margin-bottom: 64px !important;\\n }\\n .v-application .mb-sm-auto {\\n margin-bottom: auto !important;\\n }\\n .v-application .ml-sm-0 {\\n margin-left: 0px !important;\\n }\\n .v-application .ml-sm-1 {\\n margin-left: 4px !important;\\n }\\n .v-application .ml-sm-2 {\\n margin-left: 8px !important;\\n }\\n .v-application .ml-sm-3 {\\n margin-left: 12px !important;\\n }\\n .v-application .ml-sm-4 {\\n margin-left: 16px !important;\\n }\\n .v-application .ml-sm-5 {\\n margin-left: 20px !important;\\n }\\n .v-application .ml-sm-6 {\\n margin-left: 24px !important;\\n }\\n .v-application .ml-sm-7 {\\n margin-left: 28px !important;\\n }\\n .v-application .ml-sm-8 {\\n margin-left: 32px !important;\\n }\\n .v-application .ml-sm-9 {\\n margin-left: 36px !important;\\n }\\n .v-application .ml-sm-10 {\\n margin-left: 40px !important;\\n }\\n .v-application .ml-sm-11 {\\n margin-left: 44px !important;\\n }\\n .v-application .ml-sm-12 {\\n margin-left: 48px !important;\\n }\\n .v-application .ml-sm-13 {\\n margin-left: 52px !important;\\n }\\n .v-application .ml-sm-14 {\\n margin-left: 56px !important;\\n }\\n .v-application .ml-sm-15 {\\n margin-left: 60px !important;\\n }\\n .v-application .ml-sm-16 {\\n margin-left: 64px !important;\\n }\\n .v-application .ml-sm-auto {\\n margin-left: auto !important;\\n }\\n .v-application--is-ltr .ms-sm-0 {\\n margin-left: 0px !important;\\n }\\n .v-application--is-rtl .ms-sm-0 {\\n margin-right: 0px !important;\\n }\\n .v-application--is-ltr .ms-sm-1 {\\n margin-left: 4px !important;\\n }\\n .v-application--is-rtl .ms-sm-1 {\\n margin-right: 4px !important;\\n }\\n .v-application--is-ltr .ms-sm-2 {\\n margin-left: 8px !important;\\n }\\n .v-application--is-rtl .ms-sm-2 {\\n margin-right: 8px !important;\\n }\\n .v-application--is-ltr .ms-sm-3 {\\n margin-left: 12px !important;\\n }\\n .v-application--is-rtl .ms-sm-3 {\\n margin-right: 12px !important;\\n }\\n .v-application--is-ltr .ms-sm-4 {\\n margin-left: 16px !important;\\n }\\n .v-application--is-rtl .ms-sm-4 {\\n margin-right: 16px !important;\\n }\\n .v-application--is-ltr .ms-sm-5 {\\n margin-left: 20px !important;\\n }\\n .v-application--is-rtl .ms-sm-5 {\\n margin-right: 20px !important;\\n }\\n .v-application--is-ltr .ms-sm-6 {\\n margin-left: 24px !important;\\n }\\n .v-application--is-rtl .ms-sm-6 {\\n margin-right: 24px !important;\\n }\\n .v-application--is-ltr .ms-sm-7 {\\n margin-left: 28px !important;\\n }\\n .v-application--is-rtl .ms-sm-7 {\\n margin-right: 28px !important;\\n }\\n .v-application--is-ltr .ms-sm-8 {\\n margin-left: 32px !important;\\n }\\n .v-application--is-rtl .ms-sm-8 {\\n margin-right: 32px !important;\\n }\\n .v-application--is-ltr .ms-sm-9 {\\n margin-left: 36px !important;\\n }\\n .v-application--is-rtl .ms-sm-9 {\\n margin-right: 36px !important;\\n }\\n .v-application--is-ltr .ms-sm-10 {\\n margin-left: 40px !important;\\n }\\n .v-application--is-rtl .ms-sm-10 {\\n margin-right: 40px !important;\\n }\\n .v-application--is-ltr .ms-sm-11 {\\n margin-left: 44px !important;\\n }\\n .v-application--is-rtl .ms-sm-11 {\\n margin-right: 44px !important;\\n }\\n .v-application--is-ltr .ms-sm-12 {\\n margin-left: 48px !important;\\n }\\n .v-application--is-rtl .ms-sm-12 {\\n margin-right: 48px !important;\\n }\\n .v-application--is-ltr .ms-sm-13 {\\n margin-left: 52px !important;\\n }\\n .v-application--is-rtl .ms-sm-13 {\\n margin-right: 52px !important;\\n }\\n .v-application--is-ltr .ms-sm-14 {\\n margin-left: 56px !important;\\n }\\n .v-application--is-rtl .ms-sm-14 {\\n margin-right: 56px !important;\\n }\\n .v-application--is-ltr .ms-sm-15 {\\n margin-left: 60px !important;\\n }\\n .v-application--is-rtl .ms-sm-15 {\\n margin-right: 60px !important;\\n }\\n .v-application--is-ltr .ms-sm-16 {\\n margin-left: 64px !important;\\n }\\n .v-application--is-rtl .ms-sm-16 {\\n margin-right: 64px !important;\\n }\\n .v-application--is-ltr .ms-sm-auto {\\n margin-left: auto !important;\\n }\\n .v-application--is-rtl .ms-sm-auto {\\n margin-right: auto !important;\\n }\\n .v-application--is-ltr .me-sm-0 {\\n margin-right: 0px !important;\\n }\\n .v-application--is-rtl .me-sm-0 {\\n margin-left: 0px !important;\\n }\\n .v-application--is-ltr .me-sm-1 {\\n margin-right: 4px !important;\\n }\\n .v-application--is-rtl .me-sm-1 {\\n margin-left: 4px !important;\\n }\\n .v-application--is-ltr .me-sm-2 {\\n margin-right: 8px !important;\\n }\\n .v-application--is-rtl .me-sm-2 {\\n margin-left: 8px !important;\\n }\\n .v-application--is-ltr .me-sm-3 {\\n margin-right: 12px !important;\\n }\\n .v-application--is-rtl .me-sm-3 {\\n margin-left: 12px !important;\\n }\\n .v-application--is-ltr .me-sm-4 {\\n margin-right: 16px !important;\\n }\\n .v-application--is-rtl .me-sm-4 {\\n margin-left: 16px !important;\\n }\\n .v-application--is-ltr .me-sm-5 {\\n margin-right: 20px !important;\\n }\\n .v-application--is-rtl .me-sm-5 {\\n margin-left: 20px !important;\\n }\\n .v-application--is-ltr .me-sm-6 {\\n margin-right: 24px !important;\\n }\\n .v-application--is-rtl .me-sm-6 {\\n margin-left: 24px !important;\\n }\\n .v-application--is-ltr .me-sm-7 {\\n margin-right: 28px !important;\\n }\\n .v-application--is-rtl .me-sm-7 {\\n margin-left: 28px !important;\\n }\\n .v-application--is-ltr .me-sm-8 {\\n margin-right: 32px !important;\\n }\\n .v-application--is-rtl .me-sm-8 {\\n margin-left: 32px !important;\\n }\\n .v-application--is-ltr .me-sm-9 {\\n margin-right: 36px !important;\\n }\\n .v-application--is-rtl .me-sm-9 {\\n margin-left: 36px !important;\\n }\\n .v-application--is-ltr .me-sm-10 {\\n margin-right: 40px !important;\\n }\\n .v-application--is-rtl .me-sm-10 {\\n margin-left: 40px !important;\\n }\\n .v-application--is-ltr .me-sm-11 {\\n margin-right: 44px !important;\\n }\\n .v-application--is-rtl .me-sm-11 {\\n margin-left: 44px !important;\\n }\\n .v-application--is-ltr .me-sm-12 {\\n margin-right: 48px !important;\\n }\\n .v-application--is-rtl .me-sm-12 {\\n margin-left: 48px !important;\\n }\\n .v-application--is-ltr .me-sm-13 {\\n margin-right: 52px !important;\\n }\\n .v-application--is-rtl .me-sm-13 {\\n margin-left: 52px !important;\\n }\\n .v-application--is-ltr .me-sm-14 {\\n margin-right: 56px !important;\\n }\\n .v-application--is-rtl .me-sm-14 {\\n margin-left: 56px !important;\\n }\\n .v-application--is-ltr .me-sm-15 {\\n margin-right: 60px !important;\\n }\\n .v-application--is-rtl .me-sm-15 {\\n margin-left: 60px !important;\\n }\\n .v-application--is-ltr .me-sm-16 {\\n margin-right: 64px !important;\\n }\\n .v-application--is-rtl .me-sm-16 {\\n margin-left: 64px !important;\\n }\\n .v-application--is-ltr .me-sm-auto {\\n margin-right: auto !important;\\n }\\n .v-application--is-rtl .me-sm-auto {\\n margin-left: auto !important;\\n }\\n .v-application .ma-sm-n1 {\\n margin: -4px !important;\\n }\\n .v-application .ma-sm-n2 {\\n margin: -8px !important;\\n }\\n .v-application .ma-sm-n3 {\\n margin: -12px !important;\\n }\\n .v-application .ma-sm-n4 {\\n margin: -16px !important;\\n }\\n .v-application .ma-sm-n5 {\\n margin: -20px !important;\\n }\\n .v-application .ma-sm-n6 {\\n margin: -24px !important;\\n }\\n .v-application .ma-sm-n7 {\\n margin: -28px !important;\\n }\\n .v-application .ma-sm-n8 {\\n margin: -32px !important;\\n }\\n .v-application .ma-sm-n9 {\\n margin: -36px !important;\\n }\\n .v-application .ma-sm-n10 {\\n margin: -40px !important;\\n }\\n .v-application .ma-sm-n11 {\\n margin: -44px !important;\\n }\\n .v-application .ma-sm-n12 {\\n margin: -48px !important;\\n }\\n .v-application .ma-sm-n13 {\\n margin: -52px !important;\\n }\\n .v-application .ma-sm-n14 {\\n margin: -56px !important;\\n }\\n .v-application .ma-sm-n15 {\\n margin: -60px !important;\\n }\\n .v-application .ma-sm-n16 {\\n margin: -64px !important;\\n }\\n .v-application .mx-sm-n1 {\\n margin-right: -4px !important;\\n margin-left: -4px !important;\\n }\\n .v-application .mx-sm-n2 {\\n margin-right: -8px !important;\\n margin-left: -8px !important;\\n }\\n .v-application .mx-sm-n3 {\\n margin-right: -12px !important;\\n margin-left: -12px !important;\\n }\\n .v-application .mx-sm-n4 {\\n margin-right: -16px !important;\\n margin-left: -16px !important;\\n }\\n .v-application .mx-sm-n5 {\\n margin-right: -20px !important;\\n margin-left: -20px !important;\\n }\\n .v-application .mx-sm-n6 {\\n margin-right: -24px !important;\\n margin-left: -24px !important;\\n }\\n .v-application .mx-sm-n7 {\\n margin-right: -28px !important;\\n margin-left: -28px !important;\\n }\\n .v-application .mx-sm-n8 {\\n margin-right: -32px !important;\\n margin-left: -32px !important;\\n }\\n .v-application .mx-sm-n9 {\\n margin-right: -36px !important;\\n margin-left: -36px !important;\\n }\\n .v-application .mx-sm-n10 {\\n margin-right: -40px !important;\\n margin-left: -40px !important;\\n }\\n .v-application .mx-sm-n11 {\\n margin-right: -44px !important;\\n margin-left: -44px !important;\\n }\\n .v-application .mx-sm-n12 {\\n margin-right: -48px !important;\\n margin-left: -48px !important;\\n }\\n .v-application .mx-sm-n13 {\\n margin-right: -52px !important;\\n margin-left: -52px !important;\\n }\\n .v-application .mx-sm-n14 {\\n margin-right: -56px !important;\\n margin-left: -56px !important;\\n }\\n .v-application .mx-sm-n15 {\\n margin-right: -60px !important;\\n margin-left: -60px !important;\\n }\\n .v-application .mx-sm-n16 {\\n margin-right: -64px !important;\\n margin-left: -64px !important;\\n }\\n .v-application .my-sm-n1 {\\n margin-top: -4px !important;\\n margin-bottom: -4px !important;\\n }\\n .v-application .my-sm-n2 {\\n margin-top: -8px !important;\\n margin-bottom: -8px !important;\\n }\\n .v-application .my-sm-n3 {\\n margin-top: -12px !important;\\n margin-bottom: -12px !important;\\n }\\n .v-application .my-sm-n4 {\\n margin-top: -16px !important;\\n margin-bottom: -16px !important;\\n }\\n .v-application .my-sm-n5 {\\n margin-top: -20px !important;\\n margin-bottom: -20px !important;\\n }\\n .v-application .my-sm-n6 {\\n margin-top: -24px !important;\\n margin-bottom: -24px !important;\\n }\\n .v-application .my-sm-n7 {\\n margin-top: -28px !important;\\n margin-bottom: -28px !important;\\n }\\n .v-application .my-sm-n8 {\\n margin-top: -32px !important;\\n margin-bottom: -32px !important;\\n }\\n .v-application .my-sm-n9 {\\n margin-top: -36px !important;\\n margin-bottom: -36px !important;\\n }\\n .v-application .my-sm-n10 {\\n margin-top: -40px !important;\\n margin-bottom: -40px !important;\\n }\\n .v-application .my-sm-n11 {\\n margin-top: -44px !important;\\n margin-bottom: -44px !important;\\n }\\n .v-application .my-sm-n12 {\\n margin-top: -48px !important;\\n margin-bottom: -48px !important;\\n }\\n .v-application .my-sm-n13 {\\n margin-top: -52px !important;\\n margin-bottom: -52px !important;\\n }\\n .v-application .my-sm-n14 {\\n margin-top: -56px !important;\\n margin-bottom: -56px !important;\\n }\\n .v-application .my-sm-n15 {\\n margin-top: -60px !important;\\n margin-bottom: -60px !important;\\n }\\n .v-application .my-sm-n16 {\\n margin-top: -64px !important;\\n margin-bottom: -64px !important;\\n }\\n .v-application .mt-sm-n1 {\\n margin-top: -4px !important;\\n }\\n .v-application .mt-sm-n2 {\\n margin-top: -8px !important;\\n }\\n .v-application .mt-sm-n3 {\\n margin-top: -12px !important;\\n }\\n .v-application .mt-sm-n4 {\\n margin-top: -16px !important;\\n }\\n .v-application .mt-sm-n5 {\\n margin-top: -20px !important;\\n }\\n .v-application .mt-sm-n6 {\\n margin-top: -24px !important;\\n }\\n .v-application .mt-sm-n7 {\\n margin-top: -28px !important;\\n }\\n .v-application .mt-sm-n8 {\\n margin-top: -32px !important;\\n }\\n .v-application .mt-sm-n9 {\\n margin-top: -36px !important;\\n }\\n .v-application .mt-sm-n10 {\\n margin-top: -40px !important;\\n }\\n .v-application .mt-sm-n11 {\\n margin-top: -44px !important;\\n }\\n .v-application .mt-sm-n12 {\\n margin-top: -48px !important;\\n }\\n .v-application .mt-sm-n13 {\\n margin-top: -52px !important;\\n }\\n .v-application .mt-sm-n14 {\\n margin-top: -56px !important;\\n }\\n .v-application .mt-sm-n15 {\\n margin-top: -60px !important;\\n }\\n .v-application .mt-sm-n16 {\\n margin-top: -64px !important;\\n }\\n .v-application .mr-sm-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application .mr-sm-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application .mr-sm-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application .mr-sm-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application .mr-sm-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application .mr-sm-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application .mr-sm-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application .mr-sm-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application .mr-sm-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application .mr-sm-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application .mr-sm-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application .mr-sm-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application .mr-sm-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application .mr-sm-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application .mr-sm-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application .mr-sm-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application .mb-sm-n1 {\\n margin-bottom: -4px !important;\\n }\\n .v-application .mb-sm-n2 {\\n margin-bottom: -8px !important;\\n }\\n .v-application .mb-sm-n3 {\\n margin-bottom: -12px !important;\\n }\\n .v-application .mb-sm-n4 {\\n margin-bottom: -16px !important;\\n }\\n .v-application .mb-sm-n5 {\\n margin-bottom: -20px !important;\\n }\\n .v-application .mb-sm-n6 {\\n margin-bottom: -24px !important;\\n }\\n .v-application .mb-sm-n7 {\\n margin-bottom: -28px !important;\\n }\\n .v-application .mb-sm-n8 {\\n margin-bottom: -32px !important;\\n }\\n .v-application .mb-sm-n9 {\\n margin-bottom: -36px !important;\\n }\\n .v-application .mb-sm-n10 {\\n margin-bottom: -40px !important;\\n }\\n .v-application .mb-sm-n11 {\\n margin-bottom: -44px !important;\\n }\\n .v-application .mb-sm-n12 {\\n margin-bottom: -48px !important;\\n }\\n .v-application .mb-sm-n13 {\\n margin-bottom: -52px !important;\\n }\\n .v-application .mb-sm-n14 {\\n margin-bottom: -56px !important;\\n }\\n .v-application .mb-sm-n15 {\\n margin-bottom: -60px !important;\\n }\\n .v-application .mb-sm-n16 {\\n margin-bottom: -64px !important;\\n }\\n .v-application .ml-sm-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application .ml-sm-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application .ml-sm-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application .ml-sm-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application .ml-sm-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application .ml-sm-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application .ml-sm-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application .ml-sm-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application .ml-sm-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application .ml-sm-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application .ml-sm-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application .ml-sm-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application .ml-sm-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application .ml-sm-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application .ml-sm-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application .ml-sm-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application--is-ltr .ms-sm-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application--is-rtl .ms-sm-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application--is-ltr .ms-sm-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application--is-rtl .ms-sm-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application--is-ltr .ms-sm-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application--is-rtl .ms-sm-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application--is-ltr .ms-sm-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application--is-rtl .ms-sm-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application--is-ltr .ms-sm-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application--is-rtl .ms-sm-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application--is-ltr .ms-sm-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application--is-rtl .ms-sm-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application--is-ltr .ms-sm-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application--is-rtl .ms-sm-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application--is-ltr .ms-sm-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application--is-rtl .ms-sm-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application--is-ltr .ms-sm-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application--is-rtl .ms-sm-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application--is-ltr .ms-sm-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application--is-rtl .ms-sm-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application--is-ltr .ms-sm-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application--is-rtl .ms-sm-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application--is-ltr .ms-sm-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application--is-rtl .ms-sm-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application--is-ltr .ms-sm-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application--is-rtl .ms-sm-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application--is-ltr .ms-sm-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application--is-rtl .ms-sm-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application--is-ltr .ms-sm-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application--is-rtl .ms-sm-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application--is-ltr .ms-sm-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application--is-rtl .ms-sm-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application--is-ltr .me-sm-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application--is-rtl .me-sm-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application--is-ltr .me-sm-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application--is-rtl .me-sm-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application--is-ltr .me-sm-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application--is-rtl .me-sm-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application--is-ltr .me-sm-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application--is-rtl .me-sm-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application--is-ltr .me-sm-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application--is-rtl .me-sm-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application--is-ltr .me-sm-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application--is-rtl .me-sm-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application--is-ltr .me-sm-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application--is-rtl .me-sm-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application--is-ltr .me-sm-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application--is-rtl .me-sm-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application--is-ltr .me-sm-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application--is-rtl .me-sm-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application--is-ltr .me-sm-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application--is-rtl .me-sm-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application--is-ltr .me-sm-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application--is-rtl .me-sm-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application--is-ltr .me-sm-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application--is-rtl .me-sm-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application--is-ltr .me-sm-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application--is-rtl .me-sm-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application--is-ltr .me-sm-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application--is-rtl .me-sm-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application--is-ltr .me-sm-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application--is-rtl .me-sm-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application--is-ltr .me-sm-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application--is-rtl .me-sm-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application .pa-sm-0 {\\n padding: 0px !important;\\n }\\n .v-application .pa-sm-1 {\\n padding: 4px !important;\\n }\\n .v-application .pa-sm-2 {\\n padding: 8px !important;\\n }\\n .v-application .pa-sm-3 {\\n padding: 12px !important;\\n }\\n .v-application .pa-sm-4 {\\n padding: 16px !important;\\n }\\n .v-application .pa-sm-5 {\\n padding: 20px !important;\\n }\\n .v-application .pa-sm-6 {\\n padding: 24px !important;\\n }\\n .v-application .pa-sm-7 {\\n padding: 28px !important;\\n }\\n .v-application .pa-sm-8 {\\n padding: 32px !important;\\n }\\n .v-application .pa-sm-9 {\\n padding: 36px !important;\\n }\\n .v-application .pa-sm-10 {\\n padding: 40px !important;\\n }\\n .v-application .pa-sm-11 {\\n padding: 44px !important;\\n }\\n .v-application .pa-sm-12 {\\n padding: 48px !important;\\n }\\n .v-application .pa-sm-13 {\\n padding: 52px !important;\\n }\\n .v-application .pa-sm-14 {\\n padding: 56px !important;\\n }\\n .v-application .pa-sm-15 {\\n padding: 60px !important;\\n }\\n .v-application .pa-sm-16 {\\n padding: 64px !important;\\n }\\n .v-application .px-sm-0 {\\n padding-right: 0px !important;\\n padding-left: 0px !important;\\n }\\n .v-application .px-sm-1 {\\n padding-right: 4px !important;\\n padding-left: 4px !important;\\n }\\n .v-application .px-sm-2 {\\n padding-right: 8px !important;\\n padding-left: 8px !important;\\n }\\n .v-application .px-sm-3 {\\n padding-right: 12px !important;\\n padding-left: 12px !important;\\n }\\n .v-application .px-sm-4 {\\n padding-right: 16px !important;\\n padding-left: 16px !important;\\n }\\n .v-application .px-sm-5 {\\n padding-right: 20px !important;\\n padding-left: 20px !important;\\n }\\n .v-application .px-sm-6 {\\n padding-right: 24px !important;\\n padding-left: 24px !important;\\n }\\n .v-application .px-sm-7 {\\n padding-right: 28px !important;\\n padding-left: 28px !important;\\n }\\n .v-application .px-sm-8 {\\n padding-right: 32px !important;\\n padding-left: 32px !important;\\n }\\n .v-application .px-sm-9 {\\n padding-right: 36px !important;\\n padding-left: 36px !important;\\n }\\n .v-application .px-sm-10 {\\n padding-right: 40px !important;\\n padding-left: 40px !important;\\n }\\n .v-application .px-sm-11 {\\n padding-right: 44px !important;\\n padding-left: 44px !important;\\n }\\n .v-application .px-sm-12 {\\n padding-right: 48px !important;\\n padding-left: 48px !important;\\n }\\n .v-application .px-sm-13 {\\n padding-right: 52px !important;\\n padding-left: 52px !important;\\n }\\n .v-application .px-sm-14 {\\n padding-right: 56px !important;\\n padding-left: 56px !important;\\n }\\n .v-application .px-sm-15 {\\n padding-right: 60px !important;\\n padding-left: 60px !important;\\n }\\n .v-application .px-sm-16 {\\n padding-right: 64px !important;\\n padding-left: 64px !important;\\n }\\n .v-application .py-sm-0 {\\n padding-top: 0px !important;\\n padding-bottom: 0px !important;\\n }\\n .v-application .py-sm-1 {\\n padding-top: 4px !important;\\n padding-bottom: 4px !important;\\n }\\n .v-application .py-sm-2 {\\n padding-top: 8px !important;\\n padding-bottom: 8px !important;\\n }\\n .v-application .py-sm-3 {\\n padding-top: 12px !important;\\n padding-bottom: 12px !important;\\n }\\n .v-application .py-sm-4 {\\n padding-top: 16px !important;\\n padding-bottom: 16px !important;\\n }\\n .v-application .py-sm-5 {\\n padding-top: 20px !important;\\n padding-bottom: 20px !important;\\n }\\n .v-application .py-sm-6 {\\n padding-top: 24px !important;\\n padding-bottom: 24px !important;\\n }\\n .v-application .py-sm-7 {\\n padding-top: 28px !important;\\n padding-bottom: 28px !important;\\n }\\n .v-application .py-sm-8 {\\n padding-top: 32px !important;\\n padding-bottom: 32px !important;\\n }\\n .v-application .py-sm-9 {\\n padding-top: 36px !important;\\n padding-bottom: 36px !important;\\n }\\n .v-application .py-sm-10 {\\n padding-top: 40px !important;\\n padding-bottom: 40px !important;\\n }\\n .v-application .py-sm-11 {\\n padding-top: 44px !important;\\n padding-bottom: 44px !important;\\n }\\n .v-application .py-sm-12 {\\n padding-top: 48px !important;\\n padding-bottom: 48px !important;\\n }\\n .v-application .py-sm-13 {\\n padding-top: 52px !important;\\n padding-bottom: 52px !important;\\n }\\n .v-application .py-sm-14 {\\n padding-top: 56px !important;\\n padding-bottom: 56px !important;\\n }\\n .v-application .py-sm-15 {\\n padding-top: 60px !important;\\n padding-bottom: 60px !important;\\n }\\n .v-application .py-sm-16 {\\n padding-top: 64px !important;\\n padding-bottom: 64px !important;\\n }\\n .v-application .pt-sm-0 {\\n padding-top: 0px !important;\\n }\\n .v-application .pt-sm-1 {\\n padding-top: 4px !important;\\n }\\n .v-application .pt-sm-2 {\\n padding-top: 8px !important;\\n }\\n .v-application .pt-sm-3 {\\n padding-top: 12px !important;\\n }\\n .v-application .pt-sm-4 {\\n padding-top: 16px !important;\\n }\\n .v-application .pt-sm-5 {\\n padding-top: 20px !important;\\n }\\n .v-application .pt-sm-6 {\\n padding-top: 24px !important;\\n }\\n .v-application .pt-sm-7 {\\n padding-top: 28px !important;\\n }\\n .v-application .pt-sm-8 {\\n padding-top: 32px !important;\\n }\\n .v-application .pt-sm-9 {\\n padding-top: 36px !important;\\n }\\n .v-application .pt-sm-10 {\\n padding-top: 40px !important;\\n }\\n .v-application .pt-sm-11 {\\n padding-top: 44px !important;\\n }\\n .v-application .pt-sm-12 {\\n padding-top: 48px !important;\\n }\\n .v-application .pt-sm-13 {\\n padding-top: 52px !important;\\n }\\n .v-application .pt-sm-14 {\\n padding-top: 56px !important;\\n }\\n .v-application .pt-sm-15 {\\n padding-top: 60px !important;\\n }\\n .v-application .pt-sm-16 {\\n padding-top: 64px !important;\\n }\\n .v-application .pr-sm-0 {\\n padding-right: 0px !important;\\n }\\n .v-application .pr-sm-1 {\\n padding-right: 4px !important;\\n }\\n .v-application .pr-sm-2 {\\n padding-right: 8px !important;\\n }\\n .v-application .pr-sm-3 {\\n padding-right: 12px !important;\\n }\\n .v-application .pr-sm-4 {\\n padding-right: 16px !important;\\n }\\n .v-application .pr-sm-5 {\\n padding-right: 20px !important;\\n }\\n .v-application .pr-sm-6 {\\n padding-right: 24px !important;\\n }\\n .v-application .pr-sm-7 {\\n padding-right: 28px !important;\\n }\\n .v-application .pr-sm-8 {\\n padding-right: 32px !important;\\n }\\n .v-application .pr-sm-9 {\\n padding-right: 36px !important;\\n }\\n .v-application .pr-sm-10 {\\n padding-right: 40px !important;\\n }\\n .v-application .pr-sm-11 {\\n padding-right: 44px !important;\\n }\\n .v-application .pr-sm-12 {\\n padding-right: 48px !important;\\n }\\n .v-application .pr-sm-13 {\\n padding-right: 52px !important;\\n }\\n .v-application .pr-sm-14 {\\n padding-right: 56px !important;\\n }\\n .v-application .pr-sm-15 {\\n padding-right: 60px !important;\\n }\\n .v-application .pr-sm-16 {\\n padding-right: 64px !important;\\n }\\n .v-application .pb-sm-0 {\\n padding-bottom: 0px !important;\\n }\\n .v-application .pb-sm-1 {\\n padding-bottom: 4px !important;\\n }\\n .v-application .pb-sm-2 {\\n padding-bottom: 8px !important;\\n }\\n .v-application .pb-sm-3 {\\n padding-bottom: 12px !important;\\n }\\n .v-application .pb-sm-4 {\\n padding-bottom: 16px !important;\\n }\\n .v-application .pb-sm-5 {\\n padding-bottom: 20px !important;\\n }\\n .v-application .pb-sm-6 {\\n padding-bottom: 24px !important;\\n }\\n .v-application .pb-sm-7 {\\n padding-bottom: 28px !important;\\n }\\n .v-application .pb-sm-8 {\\n padding-bottom: 32px !important;\\n }\\n .v-application .pb-sm-9 {\\n padding-bottom: 36px !important;\\n }\\n .v-application .pb-sm-10 {\\n padding-bottom: 40px !important;\\n }\\n .v-application .pb-sm-11 {\\n padding-bottom: 44px !important;\\n }\\n .v-application .pb-sm-12 {\\n padding-bottom: 48px !important;\\n }\\n .v-application .pb-sm-13 {\\n padding-bottom: 52px !important;\\n }\\n .v-application .pb-sm-14 {\\n padding-bottom: 56px !important;\\n }\\n .v-application .pb-sm-15 {\\n padding-bottom: 60px !important;\\n }\\n .v-application .pb-sm-16 {\\n padding-bottom: 64px !important;\\n }\\n .v-application .pl-sm-0 {\\n padding-left: 0px !important;\\n }\\n .v-application .pl-sm-1 {\\n padding-left: 4px !important;\\n }\\n .v-application .pl-sm-2 {\\n padding-left: 8px !important;\\n }\\n .v-application .pl-sm-3 {\\n padding-left: 12px !important;\\n }\\n .v-application .pl-sm-4 {\\n padding-left: 16px !important;\\n }\\n .v-application .pl-sm-5 {\\n padding-left: 20px !important;\\n }\\n .v-application .pl-sm-6 {\\n padding-left: 24px !important;\\n }\\n .v-application .pl-sm-7 {\\n padding-left: 28px !important;\\n }\\n .v-application .pl-sm-8 {\\n padding-left: 32px !important;\\n }\\n .v-application .pl-sm-9 {\\n padding-left: 36px !important;\\n }\\n .v-application .pl-sm-10 {\\n padding-left: 40px !important;\\n }\\n .v-application .pl-sm-11 {\\n padding-left: 44px !important;\\n }\\n .v-application .pl-sm-12 {\\n padding-left: 48px !important;\\n }\\n .v-application .pl-sm-13 {\\n padding-left: 52px !important;\\n }\\n .v-application .pl-sm-14 {\\n padding-left: 56px !important;\\n }\\n .v-application .pl-sm-15 {\\n padding-left: 60px !important;\\n }\\n .v-application .pl-sm-16 {\\n padding-left: 64px !important;\\n }\\n .v-application--is-ltr .ps-sm-0 {\\n padding-left: 0px !important;\\n }\\n .v-application--is-rtl .ps-sm-0 {\\n padding-right: 0px !important;\\n }\\n .v-application--is-ltr .ps-sm-1 {\\n padding-left: 4px !important;\\n }\\n .v-application--is-rtl .ps-sm-1 {\\n padding-right: 4px !important;\\n }\\n .v-application--is-ltr .ps-sm-2 {\\n padding-left: 8px !important;\\n }\\n .v-application--is-rtl .ps-sm-2 {\\n padding-right: 8px !important;\\n }\\n .v-application--is-ltr .ps-sm-3 {\\n padding-left: 12px !important;\\n }\\n .v-application--is-rtl .ps-sm-3 {\\n padding-right: 12px !important;\\n }\\n .v-application--is-ltr .ps-sm-4 {\\n padding-left: 16px !important;\\n }\\n .v-application--is-rtl .ps-sm-4 {\\n padding-right: 16px !important;\\n }\\n .v-application--is-ltr .ps-sm-5 {\\n padding-left: 20px !important;\\n }\\n .v-application--is-rtl .ps-sm-5 {\\n padding-right: 20px !important;\\n }\\n .v-application--is-ltr .ps-sm-6 {\\n padding-left: 24px !important;\\n }\\n .v-application--is-rtl .ps-sm-6 {\\n padding-right: 24px !important;\\n }\\n .v-application--is-ltr .ps-sm-7 {\\n padding-left: 28px !important;\\n }\\n .v-application--is-rtl .ps-sm-7 {\\n padding-right: 28px !important;\\n }\\n .v-application--is-ltr .ps-sm-8 {\\n padding-left: 32px !important;\\n }\\n .v-application--is-rtl .ps-sm-8 {\\n padding-right: 32px !important;\\n }\\n .v-application--is-ltr .ps-sm-9 {\\n padding-left: 36px !important;\\n }\\n .v-application--is-rtl .ps-sm-9 {\\n padding-right: 36px !important;\\n }\\n .v-application--is-ltr .ps-sm-10 {\\n padding-left: 40px !important;\\n }\\n .v-application--is-rtl .ps-sm-10 {\\n padding-right: 40px !important;\\n }\\n .v-application--is-ltr .ps-sm-11 {\\n padding-left: 44px !important;\\n }\\n .v-application--is-rtl .ps-sm-11 {\\n padding-right: 44px !important;\\n }\\n .v-application--is-ltr .ps-sm-12 {\\n padding-left: 48px !important;\\n }\\n .v-application--is-rtl .ps-sm-12 {\\n padding-right: 48px !important;\\n }\\n .v-application--is-ltr .ps-sm-13 {\\n padding-left: 52px !important;\\n }\\n .v-application--is-rtl .ps-sm-13 {\\n padding-right: 52px !important;\\n }\\n .v-application--is-ltr .ps-sm-14 {\\n padding-left: 56px !important;\\n }\\n .v-application--is-rtl .ps-sm-14 {\\n padding-right: 56px !important;\\n }\\n .v-application--is-ltr .ps-sm-15 {\\n padding-left: 60px !important;\\n }\\n .v-application--is-rtl .ps-sm-15 {\\n padding-right: 60px !important;\\n }\\n .v-application--is-ltr .ps-sm-16 {\\n padding-left: 64px !important;\\n }\\n .v-application--is-rtl .ps-sm-16 {\\n padding-right: 64px !important;\\n }\\n .v-application--is-ltr .pe-sm-0 {\\n padding-right: 0px !important;\\n }\\n .v-application--is-rtl .pe-sm-0 {\\n padding-left: 0px !important;\\n }\\n .v-application--is-ltr .pe-sm-1 {\\n padding-right: 4px !important;\\n }\\n .v-application--is-rtl .pe-sm-1 {\\n padding-left: 4px !important;\\n }\\n .v-application--is-ltr .pe-sm-2 {\\n padding-right: 8px !important;\\n }\\n .v-application--is-rtl .pe-sm-2 {\\n padding-left: 8px !important;\\n }\\n .v-application--is-ltr .pe-sm-3 {\\n padding-right: 12px !important;\\n }\\n .v-application--is-rtl .pe-sm-3 {\\n padding-left: 12px !important;\\n }\\n .v-application--is-ltr .pe-sm-4 {\\n padding-right: 16px !important;\\n }\\n .v-application--is-rtl .pe-sm-4 {\\n padding-left: 16px !important;\\n }\\n .v-application--is-ltr .pe-sm-5 {\\n padding-right: 20px !important;\\n }\\n .v-application--is-rtl .pe-sm-5 {\\n padding-left: 20px !important;\\n }\\n .v-application--is-ltr .pe-sm-6 {\\n padding-right: 24px !important;\\n }\\n .v-application--is-rtl .pe-sm-6 {\\n padding-left: 24px !important;\\n }\\n .v-application--is-ltr .pe-sm-7 {\\n padding-right: 28px !important;\\n }\\n .v-application--is-rtl .pe-sm-7 {\\n padding-left: 28px !important;\\n }\\n .v-application--is-ltr .pe-sm-8 {\\n padding-right: 32px !important;\\n }\\n .v-application--is-rtl .pe-sm-8 {\\n padding-left: 32px !important;\\n }\\n .v-application--is-ltr .pe-sm-9 {\\n padding-right: 36px !important;\\n }\\n .v-application--is-rtl .pe-sm-9 {\\n padding-left: 36px !important;\\n }\\n .v-application--is-ltr .pe-sm-10 {\\n padding-right: 40px !important;\\n }\\n .v-application--is-rtl .pe-sm-10 {\\n padding-left: 40px !important;\\n }\\n .v-application--is-ltr .pe-sm-11 {\\n padding-right: 44px !important;\\n }\\n .v-application--is-rtl .pe-sm-11 {\\n padding-left: 44px !important;\\n }\\n .v-application--is-ltr .pe-sm-12 {\\n padding-right: 48px !important;\\n }\\n .v-application--is-rtl .pe-sm-12 {\\n padding-left: 48px !important;\\n }\\n .v-application--is-ltr .pe-sm-13 {\\n padding-right: 52px !important;\\n }\\n .v-application--is-rtl .pe-sm-13 {\\n padding-left: 52px !important;\\n }\\n .v-application--is-ltr .pe-sm-14 {\\n padding-right: 56px !important;\\n }\\n .v-application--is-rtl .pe-sm-14 {\\n padding-left: 56px !important;\\n }\\n .v-application--is-ltr .pe-sm-15 {\\n padding-right: 60px !important;\\n }\\n .v-application--is-rtl .pe-sm-15 {\\n padding-left: 60px !important;\\n }\\n .v-application--is-ltr .pe-sm-16 {\\n padding-right: 64px !important;\\n }\\n .v-application--is-rtl .pe-sm-16 {\\n padding-left: 64px !important;\\n }\\n .v-application .text-sm-left {\\n text-align: left !important;\\n }\\n .v-application .text-sm-right {\\n text-align: right !important;\\n }\\n .v-application .text-sm-center {\\n text-align: center !important;\\n }\\n .v-application .text-sm-justify {\\n text-align: justify !important;\\n }\\n .v-application .text-sm-start {\\n text-align: start !important;\\n }\\n .v-application .text-sm-end {\\n text-align: end !important;\\n }\\n .v-application .text-sm-h1 {\\n font-size: 6rem !important;\\n font-weight: 300;\\n line-height: 6rem;\\n letter-spacing: -0.015625em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-h2 {\\n font-size: 3.75rem !important;\\n font-weight: 300;\\n line-height: 3.75rem;\\n letter-spacing: -0.0083333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-h3 {\\n font-size: 3rem !important;\\n font-weight: 400;\\n line-height: 3.125rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-h4 {\\n font-size: 2.125rem !important;\\n font-weight: 400;\\n line-height: 2.5rem;\\n letter-spacing: 0.0073529412em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-h5 {\\n font-size: 1.5rem !important;\\n font-weight: 400;\\n line-height: 2rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-h6 {\\n font-size: 1.25rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.0125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-subtitle-1 {\\n font-size: 1rem !important;\\n font-weight: normal;\\n line-height: 1.75rem;\\n letter-spacing: 0.009375em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-subtitle-2 {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 1.375rem;\\n letter-spacing: 0.0071428571em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-body-1 {\\n font-size: 1rem !important;\\n font-weight: 400;\\n line-height: 1.5rem;\\n letter-spacing: 0.03125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-body-2 {\\n font-size: 0.875rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0178571429em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-button {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 2.25rem;\\n letter-spacing: 0.0892857143em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n }\\n .v-application .text-sm-caption {\\n font-size: 0.75rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0333333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-sm-overline {\\n font-size: 0.75rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.1666666667em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n }\\n}\\n@media (min-width: 960px) {\\n .v-application .d-md-none {\\n display: none !important;\\n }\\n .v-application .d-md-inline {\\n display: inline !important;\\n }\\n .v-application .d-md-inline-block {\\n display: inline-block !important;\\n }\\n .v-application .d-md-block {\\n display: block !important;\\n }\\n .v-application .d-md-table {\\n display: table !important;\\n }\\n .v-application .d-md-table-row {\\n display: table-row !important;\\n }\\n .v-application .d-md-table-cell {\\n display: table-cell !important;\\n }\\n .v-application .d-md-flex {\\n display: flex !important;\\n }\\n .v-application .d-md-inline-flex {\\n display: inline-flex !important;\\n }\\n .v-application .float-md-none {\\n float: none !important;\\n }\\n .v-application .float-md-left {\\n float: left !important;\\n }\\n .v-application .float-md-right {\\n float: right !important;\\n }\\n .v-application--is-rtl .float-md-end {\\n float: left !important;\\n }\\n .v-application--is-rtl .float-md-start {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-md-end {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-md-start {\\n float: left !important;\\n }\\n .v-application .flex-md-fill {\\n flex: 1 1 auto !important;\\n }\\n .v-application .flex-md-row {\\n flex-direction: row !important;\\n }\\n .v-application .flex-md-column {\\n flex-direction: column !important;\\n }\\n .v-application .flex-md-row-reverse {\\n flex-direction: row-reverse !important;\\n }\\n .v-application .flex-md-column-reverse {\\n flex-direction: column-reverse !important;\\n }\\n .v-application .flex-md-grow-0 {\\n flex-grow: 0 !important;\\n }\\n .v-application .flex-md-grow-1 {\\n flex-grow: 1 !important;\\n }\\n .v-application .flex-md-shrink-0 {\\n flex-shrink: 0 !important;\\n }\\n .v-application .flex-md-shrink-1 {\\n flex-shrink: 1 !important;\\n }\\n .v-application .flex-md-wrap {\\n flex-wrap: wrap !important;\\n }\\n .v-application .flex-md-nowrap {\\n flex-wrap: nowrap !important;\\n }\\n .v-application .flex-md-wrap-reverse {\\n flex-wrap: wrap-reverse !important;\\n }\\n .v-application .justify-md-start {\\n justify-content: flex-start !important;\\n }\\n .v-application .justify-md-end {\\n justify-content: flex-end !important;\\n }\\n .v-application .justify-md-center {\\n justify-content: center !important;\\n }\\n .v-application .justify-md-space-between {\\n justify-content: space-between !important;\\n }\\n .v-application .justify-md-space-around {\\n justify-content: space-around !important;\\n }\\n .v-application .align-md-start {\\n align-items: flex-start !important;\\n }\\n .v-application .align-md-end {\\n align-items: flex-end !important;\\n }\\n .v-application .align-md-center {\\n align-items: center !important;\\n }\\n .v-application .align-md-baseline {\\n align-items: baseline !important;\\n }\\n .v-application .align-md-stretch {\\n align-items: stretch !important;\\n }\\n .v-application .align-content-md-start {\\n align-content: flex-start !important;\\n }\\n .v-application .align-content-md-end {\\n align-content: flex-end !important;\\n }\\n .v-application .align-content-md-center {\\n align-content: center !important;\\n }\\n .v-application .align-content-md-space-between {\\n align-content: space-between !important;\\n }\\n .v-application .align-content-md-space-around {\\n align-content: space-around !important;\\n }\\n .v-application .align-content-md-stretch {\\n align-content: stretch !important;\\n }\\n .v-application .align-self-md-auto {\\n align-self: auto !important;\\n }\\n .v-application .align-self-md-start {\\n align-self: flex-start !important;\\n }\\n .v-application .align-self-md-end {\\n align-self: flex-end !important;\\n }\\n .v-application .align-self-md-center {\\n align-self: center !important;\\n }\\n .v-application .align-self-md-baseline {\\n align-self: baseline !important;\\n }\\n .v-application .align-self-md-stretch {\\n align-self: stretch !important;\\n }\\n .v-application .order-md-first {\\n order: -1 !important;\\n }\\n .v-application .order-md-0 {\\n order: 0 !important;\\n }\\n .v-application .order-md-1 {\\n order: 1 !important;\\n }\\n .v-application .order-md-2 {\\n order: 2 !important;\\n }\\n .v-application .order-md-3 {\\n order: 3 !important;\\n }\\n .v-application .order-md-4 {\\n order: 4 !important;\\n }\\n .v-application .order-md-5 {\\n order: 5 !important;\\n }\\n .v-application .order-md-6 {\\n order: 6 !important;\\n }\\n .v-application .order-md-7 {\\n order: 7 !important;\\n }\\n .v-application .order-md-8 {\\n order: 8 !important;\\n }\\n .v-application .order-md-9 {\\n order: 9 !important;\\n }\\n .v-application .order-md-10 {\\n order: 10 !important;\\n }\\n .v-application .order-md-11 {\\n order: 11 !important;\\n }\\n .v-application .order-md-12 {\\n order: 12 !important;\\n }\\n .v-application .order-md-last {\\n order: 13 !important;\\n }\\n .v-application .ma-md-0 {\\n margin: 0px !important;\\n }\\n .v-application .ma-md-1 {\\n margin: 4px !important;\\n }\\n .v-application .ma-md-2 {\\n margin: 8px !important;\\n }\\n .v-application .ma-md-3 {\\n margin: 12px !important;\\n }\\n .v-application .ma-md-4 {\\n margin: 16px !important;\\n }\\n .v-application .ma-md-5 {\\n margin: 20px !important;\\n }\\n .v-application .ma-md-6 {\\n margin: 24px !important;\\n }\\n .v-application .ma-md-7 {\\n margin: 28px !important;\\n }\\n .v-application .ma-md-8 {\\n margin: 32px !important;\\n }\\n .v-application .ma-md-9 {\\n margin: 36px !important;\\n }\\n .v-application .ma-md-10 {\\n margin: 40px !important;\\n }\\n .v-application .ma-md-11 {\\n margin: 44px !important;\\n }\\n .v-application .ma-md-12 {\\n margin: 48px !important;\\n }\\n .v-application .ma-md-13 {\\n margin: 52px !important;\\n }\\n .v-application .ma-md-14 {\\n margin: 56px !important;\\n }\\n .v-application .ma-md-15 {\\n margin: 60px !important;\\n }\\n .v-application .ma-md-16 {\\n margin: 64px !important;\\n }\\n .v-application .ma-md-auto {\\n margin: auto !important;\\n }\\n .v-application .mx-md-0 {\\n margin-right: 0px !important;\\n margin-left: 0px !important;\\n }\\n .v-application .mx-md-1 {\\n margin-right: 4px !important;\\n margin-left: 4px !important;\\n }\\n .v-application .mx-md-2 {\\n margin-right: 8px !important;\\n margin-left: 8px !important;\\n }\\n .v-application .mx-md-3 {\\n margin-right: 12px !important;\\n margin-left: 12px !important;\\n }\\n .v-application .mx-md-4 {\\n margin-right: 16px !important;\\n margin-left: 16px !important;\\n }\\n .v-application .mx-md-5 {\\n margin-right: 20px !important;\\n margin-left: 20px !important;\\n }\\n .v-application .mx-md-6 {\\n margin-right: 24px !important;\\n margin-left: 24px !important;\\n }\\n .v-application .mx-md-7 {\\n margin-right: 28px !important;\\n margin-left: 28px !important;\\n }\\n .v-application .mx-md-8 {\\n margin-right: 32px !important;\\n margin-left: 32px !important;\\n }\\n .v-application .mx-md-9 {\\n margin-right: 36px !important;\\n margin-left: 36px !important;\\n }\\n .v-application .mx-md-10 {\\n margin-right: 40px !important;\\n margin-left: 40px !important;\\n }\\n .v-application .mx-md-11 {\\n margin-right: 44px !important;\\n margin-left: 44px !important;\\n }\\n .v-application .mx-md-12 {\\n margin-right: 48px !important;\\n margin-left: 48px !important;\\n }\\n .v-application .mx-md-13 {\\n margin-right: 52px !important;\\n margin-left: 52px !important;\\n }\\n .v-application .mx-md-14 {\\n margin-right: 56px !important;\\n margin-left: 56px !important;\\n }\\n .v-application .mx-md-15 {\\n margin-right: 60px !important;\\n margin-left: 60px !important;\\n }\\n .v-application .mx-md-16 {\\n margin-right: 64px !important;\\n margin-left: 64px !important;\\n }\\n .v-application .mx-md-auto {\\n margin-right: auto !important;\\n margin-left: auto !important;\\n }\\n .v-application .my-md-0 {\\n margin-top: 0px !important;\\n margin-bottom: 0px !important;\\n }\\n .v-application .my-md-1 {\\n margin-top: 4px !important;\\n margin-bottom: 4px !important;\\n }\\n .v-application .my-md-2 {\\n margin-top: 8px !important;\\n margin-bottom: 8px !important;\\n }\\n .v-application .my-md-3 {\\n margin-top: 12px !important;\\n margin-bottom: 12px !important;\\n }\\n .v-application .my-md-4 {\\n margin-top: 16px !important;\\n margin-bottom: 16px !important;\\n }\\n .v-application .my-md-5 {\\n margin-top: 20px !important;\\n margin-bottom: 20px !important;\\n }\\n .v-application .my-md-6 {\\n margin-top: 24px !important;\\n margin-bottom: 24px !important;\\n }\\n .v-application .my-md-7 {\\n margin-top: 28px !important;\\n margin-bottom: 28px !important;\\n }\\n .v-application .my-md-8 {\\n margin-top: 32px !important;\\n margin-bottom: 32px !important;\\n }\\n .v-application .my-md-9 {\\n margin-top: 36px !important;\\n margin-bottom: 36px !important;\\n }\\n .v-application .my-md-10 {\\n margin-top: 40px !important;\\n margin-bottom: 40px !important;\\n }\\n .v-application .my-md-11 {\\n margin-top: 44px !important;\\n margin-bottom: 44px !important;\\n }\\n .v-application .my-md-12 {\\n margin-top: 48px !important;\\n margin-bottom: 48px !important;\\n }\\n .v-application .my-md-13 {\\n margin-top: 52px !important;\\n margin-bottom: 52px !important;\\n }\\n .v-application .my-md-14 {\\n margin-top: 56px !important;\\n margin-bottom: 56px !important;\\n }\\n .v-application .my-md-15 {\\n margin-top: 60px !important;\\n margin-bottom: 60px !important;\\n }\\n .v-application .my-md-16 {\\n margin-top: 64px !important;\\n margin-bottom: 64px !important;\\n }\\n .v-application .my-md-auto {\\n margin-top: auto !important;\\n margin-bottom: auto !important;\\n }\\n .v-application .mt-md-0 {\\n margin-top: 0px !important;\\n }\\n .v-application .mt-md-1 {\\n margin-top: 4px !important;\\n }\\n .v-application .mt-md-2 {\\n margin-top: 8px !important;\\n }\\n .v-application .mt-md-3 {\\n margin-top: 12px !important;\\n }\\n .v-application .mt-md-4 {\\n margin-top: 16px !important;\\n }\\n .v-application .mt-md-5 {\\n margin-top: 20px !important;\\n }\\n .v-application .mt-md-6 {\\n margin-top: 24px !important;\\n }\\n .v-application .mt-md-7 {\\n margin-top: 28px !important;\\n }\\n .v-application .mt-md-8 {\\n margin-top: 32px !important;\\n }\\n .v-application .mt-md-9 {\\n margin-top: 36px !important;\\n }\\n .v-application .mt-md-10 {\\n margin-top: 40px !important;\\n }\\n .v-application .mt-md-11 {\\n margin-top: 44px !important;\\n }\\n .v-application .mt-md-12 {\\n margin-top: 48px !important;\\n }\\n .v-application .mt-md-13 {\\n margin-top: 52px !important;\\n }\\n .v-application .mt-md-14 {\\n margin-top: 56px !important;\\n }\\n .v-application .mt-md-15 {\\n margin-top: 60px !important;\\n }\\n .v-application .mt-md-16 {\\n margin-top: 64px !important;\\n }\\n .v-application .mt-md-auto {\\n margin-top: auto !important;\\n }\\n .v-application .mr-md-0 {\\n margin-right: 0px !important;\\n }\\n .v-application .mr-md-1 {\\n margin-right: 4px !important;\\n }\\n .v-application .mr-md-2 {\\n margin-right: 8px !important;\\n }\\n .v-application .mr-md-3 {\\n margin-right: 12px !important;\\n }\\n .v-application .mr-md-4 {\\n margin-right: 16px !important;\\n }\\n .v-application .mr-md-5 {\\n margin-right: 20px !important;\\n }\\n .v-application .mr-md-6 {\\n margin-right: 24px !important;\\n }\\n .v-application .mr-md-7 {\\n margin-right: 28px !important;\\n }\\n .v-application .mr-md-8 {\\n margin-right: 32px !important;\\n }\\n .v-application .mr-md-9 {\\n margin-right: 36px !important;\\n }\\n .v-application .mr-md-10 {\\n margin-right: 40px !important;\\n }\\n .v-application .mr-md-11 {\\n margin-right: 44px !important;\\n }\\n .v-application .mr-md-12 {\\n margin-right: 48px !important;\\n }\\n .v-application .mr-md-13 {\\n margin-right: 52px !important;\\n }\\n .v-application .mr-md-14 {\\n margin-right: 56px !important;\\n }\\n .v-application .mr-md-15 {\\n margin-right: 60px !important;\\n }\\n .v-application .mr-md-16 {\\n margin-right: 64px !important;\\n }\\n .v-application .mr-md-auto {\\n margin-right: auto !important;\\n }\\n .v-application .mb-md-0 {\\n margin-bottom: 0px !important;\\n }\\n .v-application .mb-md-1 {\\n margin-bottom: 4px !important;\\n }\\n .v-application .mb-md-2 {\\n margin-bottom: 8px !important;\\n }\\n .v-application .mb-md-3 {\\n margin-bottom: 12px !important;\\n }\\n .v-application .mb-md-4 {\\n margin-bottom: 16px !important;\\n }\\n .v-application .mb-md-5 {\\n margin-bottom: 20px !important;\\n }\\n .v-application .mb-md-6 {\\n margin-bottom: 24px !important;\\n }\\n .v-application .mb-md-7 {\\n margin-bottom: 28px !important;\\n }\\n .v-application .mb-md-8 {\\n margin-bottom: 32px !important;\\n }\\n .v-application .mb-md-9 {\\n margin-bottom: 36px !important;\\n }\\n .v-application .mb-md-10 {\\n margin-bottom: 40px !important;\\n }\\n .v-application .mb-md-11 {\\n margin-bottom: 44px !important;\\n }\\n .v-application .mb-md-12 {\\n margin-bottom: 48px !important;\\n }\\n .v-application .mb-md-13 {\\n margin-bottom: 52px !important;\\n }\\n .v-application .mb-md-14 {\\n margin-bottom: 56px !important;\\n }\\n .v-application .mb-md-15 {\\n margin-bottom: 60px !important;\\n }\\n .v-application .mb-md-16 {\\n margin-bottom: 64px !important;\\n }\\n .v-application .mb-md-auto {\\n margin-bottom: auto !important;\\n }\\n .v-application .ml-md-0 {\\n margin-left: 0px !important;\\n }\\n .v-application .ml-md-1 {\\n margin-left: 4px !important;\\n }\\n .v-application .ml-md-2 {\\n margin-left: 8px !important;\\n }\\n .v-application .ml-md-3 {\\n margin-left: 12px !important;\\n }\\n .v-application .ml-md-4 {\\n margin-left: 16px !important;\\n }\\n .v-application .ml-md-5 {\\n margin-left: 20px !important;\\n }\\n .v-application .ml-md-6 {\\n margin-left: 24px !important;\\n }\\n .v-application .ml-md-7 {\\n margin-left: 28px !important;\\n }\\n .v-application .ml-md-8 {\\n margin-left: 32px !important;\\n }\\n .v-application .ml-md-9 {\\n margin-left: 36px !important;\\n }\\n .v-application .ml-md-10 {\\n margin-left: 40px !important;\\n }\\n .v-application .ml-md-11 {\\n margin-left: 44px !important;\\n }\\n .v-application .ml-md-12 {\\n margin-left: 48px !important;\\n }\\n .v-application .ml-md-13 {\\n margin-left: 52px !important;\\n }\\n .v-application .ml-md-14 {\\n margin-left: 56px !important;\\n }\\n .v-application .ml-md-15 {\\n margin-left: 60px !important;\\n }\\n .v-application .ml-md-16 {\\n margin-left: 64px !important;\\n }\\n .v-application .ml-md-auto {\\n margin-left: auto !important;\\n }\\n .v-application--is-ltr .ms-md-0 {\\n margin-left: 0px !important;\\n }\\n .v-application--is-rtl .ms-md-0 {\\n margin-right: 0px !important;\\n }\\n .v-application--is-ltr .ms-md-1 {\\n margin-left: 4px !important;\\n }\\n .v-application--is-rtl .ms-md-1 {\\n margin-right: 4px !important;\\n }\\n .v-application--is-ltr .ms-md-2 {\\n margin-left: 8px !important;\\n }\\n .v-application--is-rtl .ms-md-2 {\\n margin-right: 8px !important;\\n }\\n .v-application--is-ltr .ms-md-3 {\\n margin-left: 12px !important;\\n }\\n .v-application--is-rtl .ms-md-3 {\\n margin-right: 12px !important;\\n }\\n .v-application--is-ltr .ms-md-4 {\\n margin-left: 16px !important;\\n }\\n .v-application--is-rtl .ms-md-4 {\\n margin-right: 16px !important;\\n }\\n .v-application--is-ltr .ms-md-5 {\\n margin-left: 20px !important;\\n }\\n .v-application--is-rtl .ms-md-5 {\\n margin-right: 20px !important;\\n }\\n .v-application--is-ltr .ms-md-6 {\\n margin-left: 24px !important;\\n }\\n .v-application--is-rtl .ms-md-6 {\\n margin-right: 24px !important;\\n }\\n .v-application--is-ltr .ms-md-7 {\\n margin-left: 28px !important;\\n }\\n .v-application--is-rtl .ms-md-7 {\\n margin-right: 28px !important;\\n }\\n .v-application--is-ltr .ms-md-8 {\\n margin-left: 32px !important;\\n }\\n .v-application--is-rtl .ms-md-8 {\\n margin-right: 32px !important;\\n }\\n .v-application--is-ltr .ms-md-9 {\\n margin-left: 36px !important;\\n }\\n .v-application--is-rtl .ms-md-9 {\\n margin-right: 36px !important;\\n }\\n .v-application--is-ltr .ms-md-10 {\\n margin-left: 40px !important;\\n }\\n .v-application--is-rtl .ms-md-10 {\\n margin-right: 40px !important;\\n }\\n .v-application--is-ltr .ms-md-11 {\\n margin-left: 44px !important;\\n }\\n .v-application--is-rtl .ms-md-11 {\\n margin-right: 44px !important;\\n }\\n .v-application--is-ltr .ms-md-12 {\\n margin-left: 48px !important;\\n }\\n .v-application--is-rtl .ms-md-12 {\\n margin-right: 48px !important;\\n }\\n .v-application--is-ltr .ms-md-13 {\\n margin-left: 52px !important;\\n }\\n .v-application--is-rtl .ms-md-13 {\\n margin-right: 52px !important;\\n }\\n .v-application--is-ltr .ms-md-14 {\\n margin-left: 56px !important;\\n }\\n .v-application--is-rtl .ms-md-14 {\\n margin-right: 56px !important;\\n }\\n .v-application--is-ltr .ms-md-15 {\\n margin-left: 60px !important;\\n }\\n .v-application--is-rtl .ms-md-15 {\\n margin-right: 60px !important;\\n }\\n .v-application--is-ltr .ms-md-16 {\\n margin-left: 64px !important;\\n }\\n .v-application--is-rtl .ms-md-16 {\\n margin-right: 64px !important;\\n }\\n .v-application--is-ltr .ms-md-auto {\\n margin-left: auto !important;\\n }\\n .v-application--is-rtl .ms-md-auto {\\n margin-right: auto !important;\\n }\\n .v-application--is-ltr .me-md-0 {\\n margin-right: 0px !important;\\n }\\n .v-application--is-rtl .me-md-0 {\\n margin-left: 0px !important;\\n }\\n .v-application--is-ltr .me-md-1 {\\n margin-right: 4px !important;\\n }\\n .v-application--is-rtl .me-md-1 {\\n margin-left: 4px !important;\\n }\\n .v-application--is-ltr .me-md-2 {\\n margin-right: 8px !important;\\n }\\n .v-application--is-rtl .me-md-2 {\\n margin-left: 8px !important;\\n }\\n .v-application--is-ltr .me-md-3 {\\n margin-right: 12px !important;\\n }\\n .v-application--is-rtl .me-md-3 {\\n margin-left: 12px !important;\\n }\\n .v-application--is-ltr .me-md-4 {\\n margin-right: 16px !important;\\n }\\n .v-application--is-rtl .me-md-4 {\\n margin-left: 16px !important;\\n }\\n .v-application--is-ltr .me-md-5 {\\n margin-right: 20px !important;\\n }\\n .v-application--is-rtl .me-md-5 {\\n margin-left: 20px !important;\\n }\\n .v-application--is-ltr .me-md-6 {\\n margin-right: 24px !important;\\n }\\n .v-application--is-rtl .me-md-6 {\\n margin-left: 24px !important;\\n }\\n .v-application--is-ltr .me-md-7 {\\n margin-right: 28px !important;\\n }\\n .v-application--is-rtl .me-md-7 {\\n margin-left: 28px !important;\\n }\\n .v-application--is-ltr .me-md-8 {\\n margin-right: 32px !important;\\n }\\n .v-application--is-rtl .me-md-8 {\\n margin-left: 32px !important;\\n }\\n .v-application--is-ltr .me-md-9 {\\n margin-right: 36px !important;\\n }\\n .v-application--is-rtl .me-md-9 {\\n margin-left: 36px !important;\\n }\\n .v-application--is-ltr .me-md-10 {\\n margin-right: 40px !important;\\n }\\n .v-application--is-rtl .me-md-10 {\\n margin-left: 40px !important;\\n }\\n .v-application--is-ltr .me-md-11 {\\n margin-right: 44px !important;\\n }\\n .v-application--is-rtl .me-md-11 {\\n margin-left: 44px !important;\\n }\\n .v-application--is-ltr .me-md-12 {\\n margin-right: 48px !important;\\n }\\n .v-application--is-rtl .me-md-12 {\\n margin-left: 48px !important;\\n }\\n .v-application--is-ltr .me-md-13 {\\n margin-right: 52px !important;\\n }\\n .v-application--is-rtl .me-md-13 {\\n margin-left: 52px !important;\\n }\\n .v-application--is-ltr .me-md-14 {\\n margin-right: 56px !important;\\n }\\n .v-application--is-rtl .me-md-14 {\\n margin-left: 56px !important;\\n }\\n .v-application--is-ltr .me-md-15 {\\n margin-right: 60px !important;\\n }\\n .v-application--is-rtl .me-md-15 {\\n margin-left: 60px !important;\\n }\\n .v-application--is-ltr .me-md-16 {\\n margin-right: 64px !important;\\n }\\n .v-application--is-rtl .me-md-16 {\\n margin-left: 64px !important;\\n }\\n .v-application--is-ltr .me-md-auto {\\n margin-right: auto !important;\\n }\\n .v-application--is-rtl .me-md-auto {\\n margin-left: auto !important;\\n }\\n .v-application .ma-md-n1 {\\n margin: -4px !important;\\n }\\n .v-application .ma-md-n2 {\\n margin: -8px !important;\\n }\\n .v-application .ma-md-n3 {\\n margin: -12px !important;\\n }\\n .v-application .ma-md-n4 {\\n margin: -16px !important;\\n }\\n .v-application .ma-md-n5 {\\n margin: -20px !important;\\n }\\n .v-application .ma-md-n6 {\\n margin: -24px !important;\\n }\\n .v-application .ma-md-n7 {\\n margin: -28px !important;\\n }\\n .v-application .ma-md-n8 {\\n margin: -32px !important;\\n }\\n .v-application .ma-md-n9 {\\n margin: -36px !important;\\n }\\n .v-application .ma-md-n10 {\\n margin: -40px !important;\\n }\\n .v-application .ma-md-n11 {\\n margin: -44px !important;\\n }\\n .v-application .ma-md-n12 {\\n margin: -48px !important;\\n }\\n .v-application .ma-md-n13 {\\n margin: -52px !important;\\n }\\n .v-application .ma-md-n14 {\\n margin: -56px !important;\\n }\\n .v-application .ma-md-n15 {\\n margin: -60px !important;\\n }\\n .v-application .ma-md-n16 {\\n margin: -64px !important;\\n }\\n .v-application .mx-md-n1 {\\n margin-right: -4px !important;\\n margin-left: -4px !important;\\n }\\n .v-application .mx-md-n2 {\\n margin-right: -8px !important;\\n margin-left: -8px !important;\\n }\\n .v-application .mx-md-n3 {\\n margin-right: -12px !important;\\n margin-left: -12px !important;\\n }\\n .v-application .mx-md-n4 {\\n margin-right: -16px !important;\\n margin-left: -16px !important;\\n }\\n .v-application .mx-md-n5 {\\n margin-right: -20px !important;\\n margin-left: -20px !important;\\n }\\n .v-application .mx-md-n6 {\\n margin-right: -24px !important;\\n margin-left: -24px !important;\\n }\\n .v-application .mx-md-n7 {\\n margin-right: -28px !important;\\n margin-left: -28px !important;\\n }\\n .v-application .mx-md-n8 {\\n margin-right: -32px !important;\\n margin-left: -32px !important;\\n }\\n .v-application .mx-md-n9 {\\n margin-right: -36px !important;\\n margin-left: -36px !important;\\n }\\n .v-application .mx-md-n10 {\\n margin-right: -40px !important;\\n margin-left: -40px !important;\\n }\\n .v-application .mx-md-n11 {\\n margin-right: -44px !important;\\n margin-left: -44px !important;\\n }\\n .v-application .mx-md-n12 {\\n margin-right: -48px !important;\\n margin-left: -48px !important;\\n }\\n .v-application .mx-md-n13 {\\n margin-right: -52px !important;\\n margin-left: -52px !important;\\n }\\n .v-application .mx-md-n14 {\\n margin-right: -56px !important;\\n margin-left: -56px !important;\\n }\\n .v-application .mx-md-n15 {\\n margin-right: -60px !important;\\n margin-left: -60px !important;\\n }\\n .v-application .mx-md-n16 {\\n margin-right: -64px !important;\\n margin-left: -64px !important;\\n }\\n .v-application .my-md-n1 {\\n margin-top: -4px !important;\\n margin-bottom: -4px !important;\\n }\\n .v-application .my-md-n2 {\\n margin-top: -8px !important;\\n margin-bottom: -8px !important;\\n }\\n .v-application .my-md-n3 {\\n margin-top: -12px !important;\\n margin-bottom: -12px !important;\\n }\\n .v-application .my-md-n4 {\\n margin-top: -16px !important;\\n margin-bottom: -16px !important;\\n }\\n .v-application .my-md-n5 {\\n margin-top: -20px !important;\\n margin-bottom: -20px !important;\\n }\\n .v-application .my-md-n6 {\\n margin-top: -24px !important;\\n margin-bottom: -24px !important;\\n }\\n .v-application .my-md-n7 {\\n margin-top: -28px !important;\\n margin-bottom: -28px !important;\\n }\\n .v-application .my-md-n8 {\\n margin-top: -32px !important;\\n margin-bottom: -32px !important;\\n }\\n .v-application .my-md-n9 {\\n margin-top: -36px !important;\\n margin-bottom: -36px !important;\\n }\\n .v-application .my-md-n10 {\\n margin-top: -40px !important;\\n margin-bottom: -40px !important;\\n }\\n .v-application .my-md-n11 {\\n margin-top: -44px !important;\\n margin-bottom: -44px !important;\\n }\\n .v-application .my-md-n12 {\\n margin-top: -48px !important;\\n margin-bottom: -48px !important;\\n }\\n .v-application .my-md-n13 {\\n margin-top: -52px !important;\\n margin-bottom: -52px !important;\\n }\\n .v-application .my-md-n14 {\\n margin-top: -56px !important;\\n margin-bottom: -56px !important;\\n }\\n .v-application .my-md-n15 {\\n margin-top: -60px !important;\\n margin-bottom: -60px !important;\\n }\\n .v-application .my-md-n16 {\\n margin-top: -64px !important;\\n margin-bottom: -64px !important;\\n }\\n .v-application .mt-md-n1 {\\n margin-top: -4px !important;\\n }\\n .v-application .mt-md-n2 {\\n margin-top: -8px !important;\\n }\\n .v-application .mt-md-n3 {\\n margin-top: -12px !important;\\n }\\n .v-application .mt-md-n4 {\\n margin-top: -16px !important;\\n }\\n .v-application .mt-md-n5 {\\n margin-top: -20px !important;\\n }\\n .v-application .mt-md-n6 {\\n margin-top: -24px !important;\\n }\\n .v-application .mt-md-n7 {\\n margin-top: -28px !important;\\n }\\n .v-application .mt-md-n8 {\\n margin-top: -32px !important;\\n }\\n .v-application .mt-md-n9 {\\n margin-top: -36px !important;\\n }\\n .v-application .mt-md-n10 {\\n margin-top: -40px !important;\\n }\\n .v-application .mt-md-n11 {\\n margin-top: -44px !important;\\n }\\n .v-application .mt-md-n12 {\\n margin-top: -48px !important;\\n }\\n .v-application .mt-md-n13 {\\n margin-top: -52px !important;\\n }\\n .v-application .mt-md-n14 {\\n margin-top: -56px !important;\\n }\\n .v-application .mt-md-n15 {\\n margin-top: -60px !important;\\n }\\n .v-application .mt-md-n16 {\\n margin-top: -64px !important;\\n }\\n .v-application .mr-md-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application .mr-md-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application .mr-md-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application .mr-md-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application .mr-md-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application .mr-md-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application .mr-md-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application .mr-md-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application .mr-md-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application .mr-md-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application .mr-md-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application .mr-md-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application .mr-md-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application .mr-md-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application .mr-md-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application .mr-md-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application .mb-md-n1 {\\n margin-bottom: -4px !important;\\n }\\n .v-application .mb-md-n2 {\\n margin-bottom: -8px !important;\\n }\\n .v-application .mb-md-n3 {\\n margin-bottom: -12px !important;\\n }\\n .v-application .mb-md-n4 {\\n margin-bottom: -16px !important;\\n }\\n .v-application .mb-md-n5 {\\n margin-bottom: -20px !important;\\n }\\n .v-application .mb-md-n6 {\\n margin-bottom: -24px !important;\\n }\\n .v-application .mb-md-n7 {\\n margin-bottom: -28px !important;\\n }\\n .v-application .mb-md-n8 {\\n margin-bottom: -32px !important;\\n }\\n .v-application .mb-md-n9 {\\n margin-bottom: -36px !important;\\n }\\n .v-application .mb-md-n10 {\\n margin-bottom: -40px !important;\\n }\\n .v-application .mb-md-n11 {\\n margin-bottom: -44px !important;\\n }\\n .v-application .mb-md-n12 {\\n margin-bottom: -48px !important;\\n }\\n .v-application .mb-md-n13 {\\n margin-bottom: -52px !important;\\n }\\n .v-application .mb-md-n14 {\\n margin-bottom: -56px !important;\\n }\\n .v-application .mb-md-n15 {\\n margin-bottom: -60px !important;\\n }\\n .v-application .mb-md-n16 {\\n margin-bottom: -64px !important;\\n }\\n .v-application .ml-md-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application .ml-md-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application .ml-md-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application .ml-md-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application .ml-md-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application .ml-md-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application .ml-md-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application .ml-md-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application .ml-md-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application .ml-md-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application .ml-md-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application .ml-md-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application .ml-md-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application .ml-md-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application .ml-md-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application .ml-md-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application--is-ltr .ms-md-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application--is-rtl .ms-md-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application--is-ltr .ms-md-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application--is-rtl .ms-md-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application--is-ltr .ms-md-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application--is-rtl .ms-md-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application--is-ltr .ms-md-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application--is-rtl .ms-md-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application--is-ltr .ms-md-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application--is-rtl .ms-md-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application--is-ltr .ms-md-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application--is-rtl .ms-md-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application--is-ltr .ms-md-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application--is-rtl .ms-md-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application--is-ltr .ms-md-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application--is-rtl .ms-md-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application--is-ltr .ms-md-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application--is-rtl .ms-md-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application--is-ltr .ms-md-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application--is-rtl .ms-md-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application--is-ltr .ms-md-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application--is-rtl .ms-md-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application--is-ltr .ms-md-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application--is-rtl .ms-md-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application--is-ltr .ms-md-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application--is-rtl .ms-md-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application--is-ltr .ms-md-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application--is-rtl .ms-md-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application--is-ltr .ms-md-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application--is-rtl .ms-md-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application--is-ltr .ms-md-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application--is-rtl .ms-md-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application--is-ltr .me-md-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application--is-rtl .me-md-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application--is-ltr .me-md-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application--is-rtl .me-md-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application--is-ltr .me-md-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application--is-rtl .me-md-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application--is-ltr .me-md-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application--is-rtl .me-md-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application--is-ltr .me-md-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application--is-rtl .me-md-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application--is-ltr .me-md-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application--is-rtl .me-md-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application--is-ltr .me-md-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application--is-rtl .me-md-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application--is-ltr .me-md-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application--is-rtl .me-md-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application--is-ltr .me-md-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application--is-rtl .me-md-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application--is-ltr .me-md-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application--is-rtl .me-md-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application--is-ltr .me-md-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application--is-rtl .me-md-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application--is-ltr .me-md-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application--is-rtl .me-md-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application--is-ltr .me-md-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application--is-rtl .me-md-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application--is-ltr .me-md-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application--is-rtl .me-md-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application--is-ltr .me-md-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application--is-rtl .me-md-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application--is-ltr .me-md-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application--is-rtl .me-md-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application .pa-md-0 {\\n padding: 0px !important;\\n }\\n .v-application .pa-md-1 {\\n padding: 4px !important;\\n }\\n .v-application .pa-md-2 {\\n padding: 8px !important;\\n }\\n .v-application .pa-md-3 {\\n padding: 12px !important;\\n }\\n .v-application .pa-md-4 {\\n padding: 16px !important;\\n }\\n .v-application .pa-md-5 {\\n padding: 20px !important;\\n }\\n .v-application .pa-md-6 {\\n padding: 24px !important;\\n }\\n .v-application .pa-md-7 {\\n padding: 28px !important;\\n }\\n .v-application .pa-md-8 {\\n padding: 32px !important;\\n }\\n .v-application .pa-md-9 {\\n padding: 36px !important;\\n }\\n .v-application .pa-md-10 {\\n padding: 40px !important;\\n }\\n .v-application .pa-md-11 {\\n padding: 44px !important;\\n }\\n .v-application .pa-md-12 {\\n padding: 48px !important;\\n }\\n .v-application .pa-md-13 {\\n padding: 52px !important;\\n }\\n .v-application .pa-md-14 {\\n padding: 56px !important;\\n }\\n .v-application .pa-md-15 {\\n padding: 60px !important;\\n }\\n .v-application .pa-md-16 {\\n padding: 64px !important;\\n }\\n .v-application .px-md-0 {\\n padding-right: 0px !important;\\n padding-left: 0px !important;\\n }\\n .v-application .px-md-1 {\\n padding-right: 4px !important;\\n padding-left: 4px !important;\\n }\\n .v-application .px-md-2 {\\n padding-right: 8px !important;\\n padding-left: 8px !important;\\n }\\n .v-application .px-md-3 {\\n padding-right: 12px !important;\\n padding-left: 12px !important;\\n }\\n .v-application .px-md-4 {\\n padding-right: 16px !important;\\n padding-left: 16px !important;\\n }\\n .v-application .px-md-5 {\\n padding-right: 20px !important;\\n padding-left: 20px !important;\\n }\\n .v-application .px-md-6 {\\n padding-right: 24px !important;\\n padding-left: 24px !important;\\n }\\n .v-application .px-md-7 {\\n padding-right: 28px !important;\\n padding-left: 28px !important;\\n }\\n .v-application .px-md-8 {\\n padding-right: 32px !important;\\n padding-left: 32px !important;\\n }\\n .v-application .px-md-9 {\\n padding-right: 36px !important;\\n padding-left: 36px !important;\\n }\\n .v-application .px-md-10 {\\n padding-right: 40px !important;\\n padding-left: 40px !important;\\n }\\n .v-application .px-md-11 {\\n padding-right: 44px !important;\\n padding-left: 44px !important;\\n }\\n .v-application .px-md-12 {\\n padding-right: 48px !important;\\n padding-left: 48px !important;\\n }\\n .v-application .px-md-13 {\\n padding-right: 52px !important;\\n padding-left: 52px !important;\\n }\\n .v-application .px-md-14 {\\n padding-right: 56px !important;\\n padding-left: 56px !important;\\n }\\n .v-application .px-md-15 {\\n padding-right: 60px !important;\\n padding-left: 60px !important;\\n }\\n .v-application .px-md-16 {\\n padding-right: 64px !important;\\n padding-left: 64px !important;\\n }\\n .v-application .py-md-0 {\\n padding-top: 0px !important;\\n padding-bottom: 0px !important;\\n }\\n .v-application .py-md-1 {\\n padding-top: 4px !important;\\n padding-bottom: 4px !important;\\n }\\n .v-application .py-md-2 {\\n padding-top: 8px !important;\\n padding-bottom: 8px !important;\\n }\\n .v-application .py-md-3 {\\n padding-top: 12px !important;\\n padding-bottom: 12px !important;\\n }\\n .v-application .py-md-4 {\\n padding-top: 16px !important;\\n padding-bottom: 16px !important;\\n }\\n .v-application .py-md-5 {\\n padding-top: 20px !important;\\n padding-bottom: 20px !important;\\n }\\n .v-application .py-md-6 {\\n padding-top: 24px !important;\\n padding-bottom: 24px !important;\\n }\\n .v-application .py-md-7 {\\n padding-top: 28px !important;\\n padding-bottom: 28px !important;\\n }\\n .v-application .py-md-8 {\\n padding-top: 32px !important;\\n padding-bottom: 32px !important;\\n }\\n .v-application .py-md-9 {\\n padding-top: 36px !important;\\n padding-bottom: 36px !important;\\n }\\n .v-application .py-md-10 {\\n padding-top: 40px !important;\\n padding-bottom: 40px !important;\\n }\\n .v-application .py-md-11 {\\n padding-top: 44px !important;\\n padding-bottom: 44px !important;\\n }\\n .v-application .py-md-12 {\\n padding-top: 48px !important;\\n padding-bottom: 48px !important;\\n }\\n .v-application .py-md-13 {\\n padding-top: 52px !important;\\n padding-bottom: 52px !important;\\n }\\n .v-application .py-md-14 {\\n padding-top: 56px !important;\\n padding-bottom: 56px !important;\\n }\\n .v-application .py-md-15 {\\n padding-top: 60px !important;\\n padding-bottom: 60px !important;\\n }\\n .v-application .py-md-16 {\\n padding-top: 64px !important;\\n padding-bottom: 64px !important;\\n }\\n .v-application .pt-md-0 {\\n padding-top: 0px !important;\\n }\\n .v-application .pt-md-1 {\\n padding-top: 4px !important;\\n }\\n .v-application .pt-md-2 {\\n padding-top: 8px !important;\\n }\\n .v-application .pt-md-3 {\\n padding-top: 12px !important;\\n }\\n .v-application .pt-md-4 {\\n padding-top: 16px !important;\\n }\\n .v-application .pt-md-5 {\\n padding-top: 20px !important;\\n }\\n .v-application .pt-md-6 {\\n padding-top: 24px !important;\\n }\\n .v-application .pt-md-7 {\\n padding-top: 28px !important;\\n }\\n .v-application .pt-md-8 {\\n padding-top: 32px !important;\\n }\\n .v-application .pt-md-9 {\\n padding-top: 36px !important;\\n }\\n .v-application .pt-md-10 {\\n padding-top: 40px !important;\\n }\\n .v-application .pt-md-11 {\\n padding-top: 44px !important;\\n }\\n .v-application .pt-md-12 {\\n padding-top: 48px !important;\\n }\\n .v-application .pt-md-13 {\\n padding-top: 52px !important;\\n }\\n .v-application .pt-md-14 {\\n padding-top: 56px !important;\\n }\\n .v-application .pt-md-15 {\\n padding-top: 60px !important;\\n }\\n .v-application .pt-md-16 {\\n padding-top: 64px !important;\\n }\\n .v-application .pr-md-0 {\\n padding-right: 0px !important;\\n }\\n .v-application .pr-md-1 {\\n padding-right: 4px !important;\\n }\\n .v-application .pr-md-2 {\\n padding-right: 8px !important;\\n }\\n .v-application .pr-md-3 {\\n padding-right: 12px !important;\\n }\\n .v-application .pr-md-4 {\\n padding-right: 16px !important;\\n }\\n .v-application .pr-md-5 {\\n padding-right: 20px !important;\\n }\\n .v-application .pr-md-6 {\\n padding-right: 24px !important;\\n }\\n .v-application .pr-md-7 {\\n padding-right: 28px !important;\\n }\\n .v-application .pr-md-8 {\\n padding-right: 32px !important;\\n }\\n .v-application .pr-md-9 {\\n padding-right: 36px !important;\\n }\\n .v-application .pr-md-10 {\\n padding-right: 40px !important;\\n }\\n .v-application .pr-md-11 {\\n padding-right: 44px !important;\\n }\\n .v-application .pr-md-12 {\\n padding-right: 48px !important;\\n }\\n .v-application .pr-md-13 {\\n padding-right: 52px !important;\\n }\\n .v-application .pr-md-14 {\\n padding-right: 56px !important;\\n }\\n .v-application .pr-md-15 {\\n padding-right: 60px !important;\\n }\\n .v-application .pr-md-16 {\\n padding-right: 64px !important;\\n }\\n .v-application .pb-md-0 {\\n padding-bottom: 0px !important;\\n }\\n .v-application .pb-md-1 {\\n padding-bottom: 4px !important;\\n }\\n .v-application .pb-md-2 {\\n padding-bottom: 8px !important;\\n }\\n .v-application .pb-md-3 {\\n padding-bottom: 12px !important;\\n }\\n .v-application .pb-md-4 {\\n padding-bottom: 16px !important;\\n }\\n .v-application .pb-md-5 {\\n padding-bottom: 20px !important;\\n }\\n .v-application .pb-md-6 {\\n padding-bottom: 24px !important;\\n }\\n .v-application .pb-md-7 {\\n padding-bottom: 28px !important;\\n }\\n .v-application .pb-md-8 {\\n padding-bottom: 32px !important;\\n }\\n .v-application .pb-md-9 {\\n padding-bottom: 36px !important;\\n }\\n .v-application .pb-md-10 {\\n padding-bottom: 40px !important;\\n }\\n .v-application .pb-md-11 {\\n padding-bottom: 44px !important;\\n }\\n .v-application .pb-md-12 {\\n padding-bottom: 48px !important;\\n }\\n .v-application .pb-md-13 {\\n padding-bottom: 52px !important;\\n }\\n .v-application .pb-md-14 {\\n padding-bottom: 56px !important;\\n }\\n .v-application .pb-md-15 {\\n padding-bottom: 60px !important;\\n }\\n .v-application .pb-md-16 {\\n padding-bottom: 64px !important;\\n }\\n .v-application .pl-md-0 {\\n padding-left: 0px !important;\\n }\\n .v-application .pl-md-1 {\\n padding-left: 4px !important;\\n }\\n .v-application .pl-md-2 {\\n padding-left: 8px !important;\\n }\\n .v-application .pl-md-3 {\\n padding-left: 12px !important;\\n }\\n .v-application .pl-md-4 {\\n padding-left: 16px !important;\\n }\\n .v-application .pl-md-5 {\\n padding-left: 20px !important;\\n }\\n .v-application .pl-md-6 {\\n padding-left: 24px !important;\\n }\\n .v-application .pl-md-7 {\\n padding-left: 28px !important;\\n }\\n .v-application .pl-md-8 {\\n padding-left: 32px !important;\\n }\\n .v-application .pl-md-9 {\\n padding-left: 36px !important;\\n }\\n .v-application .pl-md-10 {\\n padding-left: 40px !important;\\n }\\n .v-application .pl-md-11 {\\n padding-left: 44px !important;\\n }\\n .v-application .pl-md-12 {\\n padding-left: 48px !important;\\n }\\n .v-application .pl-md-13 {\\n padding-left: 52px !important;\\n }\\n .v-application .pl-md-14 {\\n padding-left: 56px !important;\\n }\\n .v-application .pl-md-15 {\\n padding-left: 60px !important;\\n }\\n .v-application .pl-md-16 {\\n padding-left: 64px !important;\\n }\\n .v-application--is-ltr .ps-md-0 {\\n padding-left: 0px !important;\\n }\\n .v-application--is-rtl .ps-md-0 {\\n padding-right: 0px !important;\\n }\\n .v-application--is-ltr .ps-md-1 {\\n padding-left: 4px !important;\\n }\\n .v-application--is-rtl .ps-md-1 {\\n padding-right: 4px !important;\\n }\\n .v-application--is-ltr .ps-md-2 {\\n padding-left: 8px !important;\\n }\\n .v-application--is-rtl .ps-md-2 {\\n padding-right: 8px !important;\\n }\\n .v-application--is-ltr .ps-md-3 {\\n padding-left: 12px !important;\\n }\\n .v-application--is-rtl .ps-md-3 {\\n padding-right: 12px !important;\\n }\\n .v-application--is-ltr .ps-md-4 {\\n padding-left: 16px !important;\\n }\\n .v-application--is-rtl .ps-md-4 {\\n padding-right: 16px !important;\\n }\\n .v-application--is-ltr .ps-md-5 {\\n padding-left: 20px !important;\\n }\\n .v-application--is-rtl .ps-md-5 {\\n padding-right: 20px !important;\\n }\\n .v-application--is-ltr .ps-md-6 {\\n padding-left: 24px !important;\\n }\\n .v-application--is-rtl .ps-md-6 {\\n padding-right: 24px !important;\\n }\\n .v-application--is-ltr .ps-md-7 {\\n padding-left: 28px !important;\\n }\\n .v-application--is-rtl .ps-md-7 {\\n padding-right: 28px !important;\\n }\\n .v-application--is-ltr .ps-md-8 {\\n padding-left: 32px !important;\\n }\\n .v-application--is-rtl .ps-md-8 {\\n padding-right: 32px !important;\\n }\\n .v-application--is-ltr .ps-md-9 {\\n padding-left: 36px !important;\\n }\\n .v-application--is-rtl .ps-md-9 {\\n padding-right: 36px !important;\\n }\\n .v-application--is-ltr .ps-md-10 {\\n padding-left: 40px !important;\\n }\\n .v-application--is-rtl .ps-md-10 {\\n padding-right: 40px !important;\\n }\\n .v-application--is-ltr .ps-md-11 {\\n padding-left: 44px !important;\\n }\\n .v-application--is-rtl .ps-md-11 {\\n padding-right: 44px !important;\\n }\\n .v-application--is-ltr .ps-md-12 {\\n padding-left: 48px !important;\\n }\\n .v-application--is-rtl .ps-md-12 {\\n padding-right: 48px !important;\\n }\\n .v-application--is-ltr .ps-md-13 {\\n padding-left: 52px !important;\\n }\\n .v-application--is-rtl .ps-md-13 {\\n padding-right: 52px !important;\\n }\\n .v-application--is-ltr .ps-md-14 {\\n padding-left: 56px !important;\\n }\\n .v-application--is-rtl .ps-md-14 {\\n padding-right: 56px !important;\\n }\\n .v-application--is-ltr .ps-md-15 {\\n padding-left: 60px !important;\\n }\\n .v-application--is-rtl .ps-md-15 {\\n padding-right: 60px !important;\\n }\\n .v-application--is-ltr .ps-md-16 {\\n padding-left: 64px !important;\\n }\\n .v-application--is-rtl .ps-md-16 {\\n padding-right: 64px !important;\\n }\\n .v-application--is-ltr .pe-md-0 {\\n padding-right: 0px !important;\\n }\\n .v-application--is-rtl .pe-md-0 {\\n padding-left: 0px !important;\\n }\\n .v-application--is-ltr .pe-md-1 {\\n padding-right: 4px !important;\\n }\\n .v-application--is-rtl .pe-md-1 {\\n padding-left: 4px !important;\\n }\\n .v-application--is-ltr .pe-md-2 {\\n padding-right: 8px !important;\\n }\\n .v-application--is-rtl .pe-md-2 {\\n padding-left: 8px !important;\\n }\\n .v-application--is-ltr .pe-md-3 {\\n padding-right: 12px !important;\\n }\\n .v-application--is-rtl .pe-md-3 {\\n padding-left: 12px !important;\\n }\\n .v-application--is-ltr .pe-md-4 {\\n padding-right: 16px !important;\\n }\\n .v-application--is-rtl .pe-md-4 {\\n padding-left: 16px !important;\\n }\\n .v-application--is-ltr .pe-md-5 {\\n padding-right: 20px !important;\\n }\\n .v-application--is-rtl .pe-md-5 {\\n padding-left: 20px !important;\\n }\\n .v-application--is-ltr .pe-md-6 {\\n padding-right: 24px !important;\\n }\\n .v-application--is-rtl .pe-md-6 {\\n padding-left: 24px !important;\\n }\\n .v-application--is-ltr .pe-md-7 {\\n padding-right: 28px !important;\\n }\\n .v-application--is-rtl .pe-md-7 {\\n padding-left: 28px !important;\\n }\\n .v-application--is-ltr .pe-md-8 {\\n padding-right: 32px !important;\\n }\\n .v-application--is-rtl .pe-md-8 {\\n padding-left: 32px !important;\\n }\\n .v-application--is-ltr .pe-md-9 {\\n padding-right: 36px !important;\\n }\\n .v-application--is-rtl .pe-md-9 {\\n padding-left: 36px !important;\\n }\\n .v-application--is-ltr .pe-md-10 {\\n padding-right: 40px !important;\\n }\\n .v-application--is-rtl .pe-md-10 {\\n padding-left: 40px !important;\\n }\\n .v-application--is-ltr .pe-md-11 {\\n padding-right: 44px !important;\\n }\\n .v-application--is-rtl .pe-md-11 {\\n padding-left: 44px !important;\\n }\\n .v-application--is-ltr .pe-md-12 {\\n padding-right: 48px !important;\\n }\\n .v-application--is-rtl .pe-md-12 {\\n padding-left: 48px !important;\\n }\\n .v-application--is-ltr .pe-md-13 {\\n padding-right: 52px !important;\\n }\\n .v-application--is-rtl .pe-md-13 {\\n padding-left: 52px !important;\\n }\\n .v-application--is-ltr .pe-md-14 {\\n padding-right: 56px !important;\\n }\\n .v-application--is-rtl .pe-md-14 {\\n padding-left: 56px !important;\\n }\\n .v-application--is-ltr .pe-md-15 {\\n padding-right: 60px !important;\\n }\\n .v-application--is-rtl .pe-md-15 {\\n padding-left: 60px !important;\\n }\\n .v-application--is-ltr .pe-md-16 {\\n padding-right: 64px !important;\\n }\\n .v-application--is-rtl .pe-md-16 {\\n padding-left: 64px !important;\\n }\\n .v-application .text-md-left {\\n text-align: left !important;\\n }\\n .v-application .text-md-right {\\n text-align: right !important;\\n }\\n .v-application .text-md-center {\\n text-align: center !important;\\n }\\n .v-application .text-md-justify {\\n text-align: justify !important;\\n }\\n .v-application .text-md-start {\\n text-align: start !important;\\n }\\n .v-application .text-md-end {\\n text-align: end !important;\\n }\\n .v-application .text-md-h1 {\\n font-size: 6rem !important;\\n font-weight: 300;\\n line-height: 6rem;\\n letter-spacing: -0.015625em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-h2 {\\n font-size: 3.75rem !important;\\n font-weight: 300;\\n line-height: 3.75rem;\\n letter-spacing: -0.0083333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-h3 {\\n font-size: 3rem !important;\\n font-weight: 400;\\n line-height: 3.125rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-h4 {\\n font-size: 2.125rem !important;\\n font-weight: 400;\\n line-height: 2.5rem;\\n letter-spacing: 0.0073529412em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-h5 {\\n font-size: 1.5rem !important;\\n font-weight: 400;\\n line-height: 2rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-h6 {\\n font-size: 1.25rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.0125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-subtitle-1 {\\n font-size: 1rem !important;\\n font-weight: normal;\\n line-height: 1.75rem;\\n letter-spacing: 0.009375em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-subtitle-2 {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 1.375rem;\\n letter-spacing: 0.0071428571em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-body-1 {\\n font-size: 1rem !important;\\n font-weight: 400;\\n line-height: 1.5rem;\\n letter-spacing: 0.03125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-body-2 {\\n font-size: 0.875rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0178571429em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-button {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 2.25rem;\\n letter-spacing: 0.0892857143em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n }\\n .v-application .text-md-caption {\\n font-size: 0.75rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0333333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-md-overline {\\n font-size: 0.75rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.1666666667em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n }\\n}\\n@media (min-width: 1264px) {\\n .v-application .d-lg-none {\\n display: none !important;\\n }\\n .v-application .d-lg-inline {\\n display: inline !important;\\n }\\n .v-application .d-lg-inline-block {\\n display: inline-block !important;\\n }\\n .v-application .d-lg-block {\\n display: block !important;\\n }\\n .v-application .d-lg-table {\\n display: table !important;\\n }\\n .v-application .d-lg-table-row {\\n display: table-row !important;\\n }\\n .v-application .d-lg-table-cell {\\n display: table-cell !important;\\n }\\n .v-application .d-lg-flex {\\n display: flex !important;\\n }\\n .v-application .d-lg-inline-flex {\\n display: inline-flex !important;\\n }\\n .v-application .float-lg-none {\\n float: none !important;\\n }\\n .v-application .float-lg-left {\\n float: left !important;\\n }\\n .v-application .float-lg-right {\\n float: right !important;\\n }\\n .v-application--is-rtl .float-lg-end {\\n float: left !important;\\n }\\n .v-application--is-rtl .float-lg-start {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-lg-end {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-lg-start {\\n float: left !important;\\n }\\n .v-application .flex-lg-fill {\\n flex: 1 1 auto !important;\\n }\\n .v-application .flex-lg-row {\\n flex-direction: row !important;\\n }\\n .v-application .flex-lg-column {\\n flex-direction: column !important;\\n }\\n .v-application .flex-lg-row-reverse {\\n flex-direction: row-reverse !important;\\n }\\n .v-application .flex-lg-column-reverse {\\n flex-direction: column-reverse !important;\\n }\\n .v-application .flex-lg-grow-0 {\\n flex-grow: 0 !important;\\n }\\n .v-application .flex-lg-grow-1 {\\n flex-grow: 1 !important;\\n }\\n .v-application .flex-lg-shrink-0 {\\n flex-shrink: 0 !important;\\n }\\n .v-application .flex-lg-shrink-1 {\\n flex-shrink: 1 !important;\\n }\\n .v-application .flex-lg-wrap {\\n flex-wrap: wrap !important;\\n }\\n .v-application .flex-lg-nowrap {\\n flex-wrap: nowrap !important;\\n }\\n .v-application .flex-lg-wrap-reverse {\\n flex-wrap: wrap-reverse !important;\\n }\\n .v-application .justify-lg-start {\\n justify-content: flex-start !important;\\n }\\n .v-application .justify-lg-end {\\n justify-content: flex-end !important;\\n }\\n .v-application .justify-lg-center {\\n justify-content: center !important;\\n }\\n .v-application .justify-lg-space-between {\\n justify-content: space-between !important;\\n }\\n .v-application .justify-lg-space-around {\\n justify-content: space-around !important;\\n }\\n .v-application .align-lg-start {\\n align-items: flex-start !important;\\n }\\n .v-application .align-lg-end {\\n align-items: flex-end !important;\\n }\\n .v-application .align-lg-center {\\n align-items: center !important;\\n }\\n .v-application .align-lg-baseline {\\n align-items: baseline !important;\\n }\\n .v-application .align-lg-stretch {\\n align-items: stretch !important;\\n }\\n .v-application .align-content-lg-start {\\n align-content: flex-start !important;\\n }\\n .v-application .align-content-lg-end {\\n align-content: flex-end !important;\\n }\\n .v-application .align-content-lg-center {\\n align-content: center !important;\\n }\\n .v-application .align-content-lg-space-between {\\n align-content: space-between !important;\\n }\\n .v-application .align-content-lg-space-around {\\n align-content: space-around !important;\\n }\\n .v-application .align-content-lg-stretch {\\n align-content: stretch !important;\\n }\\n .v-application .align-self-lg-auto {\\n align-self: auto !important;\\n }\\n .v-application .align-self-lg-start {\\n align-self: flex-start !important;\\n }\\n .v-application .align-self-lg-end {\\n align-self: flex-end !important;\\n }\\n .v-application .align-self-lg-center {\\n align-self: center !important;\\n }\\n .v-application .align-self-lg-baseline {\\n align-self: baseline !important;\\n }\\n .v-application .align-self-lg-stretch {\\n align-self: stretch !important;\\n }\\n .v-application .order-lg-first {\\n order: -1 !important;\\n }\\n .v-application .order-lg-0 {\\n order: 0 !important;\\n }\\n .v-application .order-lg-1 {\\n order: 1 !important;\\n }\\n .v-application .order-lg-2 {\\n order: 2 !important;\\n }\\n .v-application .order-lg-3 {\\n order: 3 !important;\\n }\\n .v-application .order-lg-4 {\\n order: 4 !important;\\n }\\n .v-application .order-lg-5 {\\n order: 5 !important;\\n }\\n .v-application .order-lg-6 {\\n order: 6 !important;\\n }\\n .v-application .order-lg-7 {\\n order: 7 !important;\\n }\\n .v-application .order-lg-8 {\\n order: 8 !important;\\n }\\n .v-application .order-lg-9 {\\n order: 9 !important;\\n }\\n .v-application .order-lg-10 {\\n order: 10 !important;\\n }\\n .v-application .order-lg-11 {\\n order: 11 !important;\\n }\\n .v-application .order-lg-12 {\\n order: 12 !important;\\n }\\n .v-application .order-lg-last {\\n order: 13 !important;\\n }\\n .v-application .ma-lg-0 {\\n margin: 0px !important;\\n }\\n .v-application .ma-lg-1 {\\n margin: 4px !important;\\n }\\n .v-application .ma-lg-2 {\\n margin: 8px !important;\\n }\\n .v-application .ma-lg-3 {\\n margin: 12px !important;\\n }\\n .v-application .ma-lg-4 {\\n margin: 16px !important;\\n }\\n .v-application .ma-lg-5 {\\n margin: 20px !important;\\n }\\n .v-application .ma-lg-6 {\\n margin: 24px !important;\\n }\\n .v-application .ma-lg-7 {\\n margin: 28px !important;\\n }\\n .v-application .ma-lg-8 {\\n margin: 32px !important;\\n }\\n .v-application .ma-lg-9 {\\n margin: 36px !important;\\n }\\n .v-application .ma-lg-10 {\\n margin: 40px !important;\\n }\\n .v-application .ma-lg-11 {\\n margin: 44px !important;\\n }\\n .v-application .ma-lg-12 {\\n margin: 48px !important;\\n }\\n .v-application .ma-lg-13 {\\n margin: 52px !important;\\n }\\n .v-application .ma-lg-14 {\\n margin: 56px !important;\\n }\\n .v-application .ma-lg-15 {\\n margin: 60px !important;\\n }\\n .v-application .ma-lg-16 {\\n margin: 64px !important;\\n }\\n .v-application .ma-lg-auto {\\n margin: auto !important;\\n }\\n .v-application .mx-lg-0 {\\n margin-right: 0px !important;\\n margin-left: 0px !important;\\n }\\n .v-application .mx-lg-1 {\\n margin-right: 4px !important;\\n margin-left: 4px !important;\\n }\\n .v-application .mx-lg-2 {\\n margin-right: 8px !important;\\n margin-left: 8px !important;\\n }\\n .v-application .mx-lg-3 {\\n margin-right: 12px !important;\\n margin-left: 12px !important;\\n }\\n .v-application .mx-lg-4 {\\n margin-right: 16px !important;\\n margin-left: 16px !important;\\n }\\n .v-application .mx-lg-5 {\\n margin-right: 20px !important;\\n margin-left: 20px !important;\\n }\\n .v-application .mx-lg-6 {\\n margin-right: 24px !important;\\n margin-left: 24px !important;\\n }\\n .v-application .mx-lg-7 {\\n margin-right: 28px !important;\\n margin-left: 28px !important;\\n }\\n .v-application .mx-lg-8 {\\n margin-right: 32px !important;\\n margin-left: 32px !important;\\n }\\n .v-application .mx-lg-9 {\\n margin-right: 36px !important;\\n margin-left: 36px !important;\\n }\\n .v-application .mx-lg-10 {\\n margin-right: 40px !important;\\n margin-left: 40px !important;\\n }\\n .v-application .mx-lg-11 {\\n margin-right: 44px !important;\\n margin-left: 44px !important;\\n }\\n .v-application .mx-lg-12 {\\n margin-right: 48px !important;\\n margin-left: 48px !important;\\n }\\n .v-application .mx-lg-13 {\\n margin-right: 52px !important;\\n margin-left: 52px !important;\\n }\\n .v-application .mx-lg-14 {\\n margin-right: 56px !important;\\n margin-left: 56px !important;\\n }\\n .v-application .mx-lg-15 {\\n margin-right: 60px !important;\\n margin-left: 60px !important;\\n }\\n .v-application .mx-lg-16 {\\n margin-right: 64px !important;\\n margin-left: 64px !important;\\n }\\n .v-application .mx-lg-auto {\\n margin-right: auto !important;\\n margin-left: auto !important;\\n }\\n .v-application .my-lg-0 {\\n margin-top: 0px !important;\\n margin-bottom: 0px !important;\\n }\\n .v-application .my-lg-1 {\\n margin-top: 4px !important;\\n margin-bottom: 4px !important;\\n }\\n .v-application .my-lg-2 {\\n margin-top: 8px !important;\\n margin-bottom: 8px !important;\\n }\\n .v-application .my-lg-3 {\\n margin-top: 12px !important;\\n margin-bottom: 12px !important;\\n }\\n .v-application .my-lg-4 {\\n margin-top: 16px !important;\\n margin-bottom: 16px !important;\\n }\\n .v-application .my-lg-5 {\\n margin-top: 20px !important;\\n margin-bottom: 20px !important;\\n }\\n .v-application .my-lg-6 {\\n margin-top: 24px !important;\\n margin-bottom: 24px !important;\\n }\\n .v-application .my-lg-7 {\\n margin-top: 28px !important;\\n margin-bottom: 28px !important;\\n }\\n .v-application .my-lg-8 {\\n margin-top: 32px !important;\\n margin-bottom: 32px !important;\\n }\\n .v-application .my-lg-9 {\\n margin-top: 36px !important;\\n margin-bottom: 36px !important;\\n }\\n .v-application .my-lg-10 {\\n margin-top: 40px !important;\\n margin-bottom: 40px !important;\\n }\\n .v-application .my-lg-11 {\\n margin-top: 44px !important;\\n margin-bottom: 44px !important;\\n }\\n .v-application .my-lg-12 {\\n margin-top: 48px !important;\\n margin-bottom: 48px !important;\\n }\\n .v-application .my-lg-13 {\\n margin-top: 52px !important;\\n margin-bottom: 52px !important;\\n }\\n .v-application .my-lg-14 {\\n margin-top: 56px !important;\\n margin-bottom: 56px !important;\\n }\\n .v-application .my-lg-15 {\\n margin-top: 60px !important;\\n margin-bottom: 60px !important;\\n }\\n .v-application .my-lg-16 {\\n margin-top: 64px !important;\\n margin-bottom: 64px !important;\\n }\\n .v-application .my-lg-auto {\\n margin-top: auto !important;\\n margin-bottom: auto !important;\\n }\\n .v-application .mt-lg-0 {\\n margin-top: 0px !important;\\n }\\n .v-application .mt-lg-1 {\\n margin-top: 4px !important;\\n }\\n .v-application .mt-lg-2 {\\n margin-top: 8px !important;\\n }\\n .v-application .mt-lg-3 {\\n margin-top: 12px !important;\\n }\\n .v-application .mt-lg-4 {\\n margin-top: 16px !important;\\n }\\n .v-application .mt-lg-5 {\\n margin-top: 20px !important;\\n }\\n .v-application .mt-lg-6 {\\n margin-top: 24px !important;\\n }\\n .v-application .mt-lg-7 {\\n margin-top: 28px !important;\\n }\\n .v-application .mt-lg-8 {\\n margin-top: 32px !important;\\n }\\n .v-application .mt-lg-9 {\\n margin-top: 36px !important;\\n }\\n .v-application .mt-lg-10 {\\n margin-top: 40px !important;\\n }\\n .v-application .mt-lg-11 {\\n margin-top: 44px !important;\\n }\\n .v-application .mt-lg-12 {\\n margin-top: 48px !important;\\n }\\n .v-application .mt-lg-13 {\\n margin-top: 52px !important;\\n }\\n .v-application .mt-lg-14 {\\n margin-top: 56px !important;\\n }\\n .v-application .mt-lg-15 {\\n margin-top: 60px !important;\\n }\\n .v-application .mt-lg-16 {\\n margin-top: 64px !important;\\n }\\n .v-application .mt-lg-auto {\\n margin-top: auto !important;\\n }\\n .v-application .mr-lg-0 {\\n margin-right: 0px !important;\\n }\\n .v-application .mr-lg-1 {\\n margin-right: 4px !important;\\n }\\n .v-application .mr-lg-2 {\\n margin-right: 8px !important;\\n }\\n .v-application .mr-lg-3 {\\n margin-right: 12px !important;\\n }\\n .v-application .mr-lg-4 {\\n margin-right: 16px !important;\\n }\\n .v-application .mr-lg-5 {\\n margin-right: 20px !important;\\n }\\n .v-application .mr-lg-6 {\\n margin-right: 24px !important;\\n }\\n .v-application .mr-lg-7 {\\n margin-right: 28px !important;\\n }\\n .v-application .mr-lg-8 {\\n margin-right: 32px !important;\\n }\\n .v-application .mr-lg-9 {\\n margin-right: 36px !important;\\n }\\n .v-application .mr-lg-10 {\\n margin-right: 40px !important;\\n }\\n .v-application .mr-lg-11 {\\n margin-right: 44px !important;\\n }\\n .v-application .mr-lg-12 {\\n margin-right: 48px !important;\\n }\\n .v-application .mr-lg-13 {\\n margin-right: 52px !important;\\n }\\n .v-application .mr-lg-14 {\\n margin-right: 56px !important;\\n }\\n .v-application .mr-lg-15 {\\n margin-right: 60px !important;\\n }\\n .v-application .mr-lg-16 {\\n margin-right: 64px !important;\\n }\\n .v-application .mr-lg-auto {\\n margin-right: auto !important;\\n }\\n .v-application .mb-lg-0 {\\n margin-bottom: 0px !important;\\n }\\n .v-application .mb-lg-1 {\\n margin-bottom: 4px !important;\\n }\\n .v-application .mb-lg-2 {\\n margin-bottom: 8px !important;\\n }\\n .v-application .mb-lg-3 {\\n margin-bottom: 12px !important;\\n }\\n .v-application .mb-lg-4 {\\n margin-bottom: 16px !important;\\n }\\n .v-application .mb-lg-5 {\\n margin-bottom: 20px !important;\\n }\\n .v-application .mb-lg-6 {\\n margin-bottom: 24px !important;\\n }\\n .v-application .mb-lg-7 {\\n margin-bottom: 28px !important;\\n }\\n .v-application .mb-lg-8 {\\n margin-bottom: 32px !important;\\n }\\n .v-application .mb-lg-9 {\\n margin-bottom: 36px !important;\\n }\\n .v-application .mb-lg-10 {\\n margin-bottom: 40px !important;\\n }\\n .v-application .mb-lg-11 {\\n margin-bottom: 44px !important;\\n }\\n .v-application .mb-lg-12 {\\n margin-bottom: 48px !important;\\n }\\n .v-application .mb-lg-13 {\\n margin-bottom: 52px !important;\\n }\\n .v-application .mb-lg-14 {\\n margin-bottom: 56px !important;\\n }\\n .v-application .mb-lg-15 {\\n margin-bottom: 60px !important;\\n }\\n .v-application .mb-lg-16 {\\n margin-bottom: 64px !important;\\n }\\n .v-application .mb-lg-auto {\\n margin-bottom: auto !important;\\n }\\n .v-application .ml-lg-0 {\\n margin-left: 0px !important;\\n }\\n .v-application .ml-lg-1 {\\n margin-left: 4px !important;\\n }\\n .v-application .ml-lg-2 {\\n margin-left: 8px !important;\\n }\\n .v-application .ml-lg-3 {\\n margin-left: 12px !important;\\n }\\n .v-application .ml-lg-4 {\\n margin-left: 16px !important;\\n }\\n .v-application .ml-lg-5 {\\n margin-left: 20px !important;\\n }\\n .v-application .ml-lg-6 {\\n margin-left: 24px !important;\\n }\\n .v-application .ml-lg-7 {\\n margin-left: 28px !important;\\n }\\n .v-application .ml-lg-8 {\\n margin-left: 32px !important;\\n }\\n .v-application .ml-lg-9 {\\n margin-left: 36px !important;\\n }\\n .v-application .ml-lg-10 {\\n margin-left: 40px !important;\\n }\\n .v-application .ml-lg-11 {\\n margin-left: 44px !important;\\n }\\n .v-application .ml-lg-12 {\\n margin-left: 48px !important;\\n }\\n .v-application .ml-lg-13 {\\n margin-left: 52px !important;\\n }\\n .v-application .ml-lg-14 {\\n margin-left: 56px !important;\\n }\\n .v-application .ml-lg-15 {\\n margin-left: 60px !important;\\n }\\n .v-application .ml-lg-16 {\\n margin-left: 64px !important;\\n }\\n .v-application .ml-lg-auto {\\n margin-left: auto !important;\\n }\\n .v-application--is-ltr .ms-lg-0 {\\n margin-left: 0px !important;\\n }\\n .v-application--is-rtl .ms-lg-0 {\\n margin-right: 0px !important;\\n }\\n .v-application--is-ltr .ms-lg-1 {\\n margin-left: 4px !important;\\n }\\n .v-application--is-rtl .ms-lg-1 {\\n margin-right: 4px !important;\\n }\\n .v-application--is-ltr .ms-lg-2 {\\n margin-left: 8px !important;\\n }\\n .v-application--is-rtl .ms-lg-2 {\\n margin-right: 8px !important;\\n }\\n .v-application--is-ltr .ms-lg-3 {\\n margin-left: 12px !important;\\n }\\n .v-application--is-rtl .ms-lg-3 {\\n margin-right: 12px !important;\\n }\\n .v-application--is-ltr .ms-lg-4 {\\n margin-left: 16px !important;\\n }\\n .v-application--is-rtl .ms-lg-4 {\\n margin-right: 16px !important;\\n }\\n .v-application--is-ltr .ms-lg-5 {\\n margin-left: 20px !important;\\n }\\n .v-application--is-rtl .ms-lg-5 {\\n margin-right: 20px !important;\\n }\\n .v-application--is-ltr .ms-lg-6 {\\n margin-left: 24px !important;\\n }\\n .v-application--is-rtl .ms-lg-6 {\\n margin-right: 24px !important;\\n }\\n .v-application--is-ltr .ms-lg-7 {\\n margin-left: 28px !important;\\n }\\n .v-application--is-rtl .ms-lg-7 {\\n margin-right: 28px !important;\\n }\\n .v-application--is-ltr .ms-lg-8 {\\n margin-left: 32px !important;\\n }\\n .v-application--is-rtl .ms-lg-8 {\\n margin-right: 32px !important;\\n }\\n .v-application--is-ltr .ms-lg-9 {\\n margin-left: 36px !important;\\n }\\n .v-application--is-rtl .ms-lg-9 {\\n margin-right: 36px !important;\\n }\\n .v-application--is-ltr .ms-lg-10 {\\n margin-left: 40px !important;\\n }\\n .v-application--is-rtl .ms-lg-10 {\\n margin-right: 40px !important;\\n }\\n .v-application--is-ltr .ms-lg-11 {\\n margin-left: 44px !important;\\n }\\n .v-application--is-rtl .ms-lg-11 {\\n margin-right: 44px !important;\\n }\\n .v-application--is-ltr .ms-lg-12 {\\n margin-left: 48px !important;\\n }\\n .v-application--is-rtl .ms-lg-12 {\\n margin-right: 48px !important;\\n }\\n .v-application--is-ltr .ms-lg-13 {\\n margin-left: 52px !important;\\n }\\n .v-application--is-rtl .ms-lg-13 {\\n margin-right: 52px !important;\\n }\\n .v-application--is-ltr .ms-lg-14 {\\n margin-left: 56px !important;\\n }\\n .v-application--is-rtl .ms-lg-14 {\\n margin-right: 56px !important;\\n }\\n .v-application--is-ltr .ms-lg-15 {\\n margin-left: 60px !important;\\n }\\n .v-application--is-rtl .ms-lg-15 {\\n margin-right: 60px !important;\\n }\\n .v-application--is-ltr .ms-lg-16 {\\n margin-left: 64px !important;\\n }\\n .v-application--is-rtl .ms-lg-16 {\\n margin-right: 64px !important;\\n }\\n .v-application--is-ltr .ms-lg-auto {\\n margin-left: auto !important;\\n }\\n .v-application--is-rtl .ms-lg-auto {\\n margin-right: auto !important;\\n }\\n .v-application--is-ltr .me-lg-0 {\\n margin-right: 0px !important;\\n }\\n .v-application--is-rtl .me-lg-0 {\\n margin-left: 0px !important;\\n }\\n .v-application--is-ltr .me-lg-1 {\\n margin-right: 4px !important;\\n }\\n .v-application--is-rtl .me-lg-1 {\\n margin-left: 4px !important;\\n }\\n .v-application--is-ltr .me-lg-2 {\\n margin-right: 8px !important;\\n }\\n .v-application--is-rtl .me-lg-2 {\\n margin-left: 8px !important;\\n }\\n .v-application--is-ltr .me-lg-3 {\\n margin-right: 12px !important;\\n }\\n .v-application--is-rtl .me-lg-3 {\\n margin-left: 12px !important;\\n }\\n .v-application--is-ltr .me-lg-4 {\\n margin-right: 16px !important;\\n }\\n .v-application--is-rtl .me-lg-4 {\\n margin-left: 16px !important;\\n }\\n .v-application--is-ltr .me-lg-5 {\\n margin-right: 20px !important;\\n }\\n .v-application--is-rtl .me-lg-5 {\\n margin-left: 20px !important;\\n }\\n .v-application--is-ltr .me-lg-6 {\\n margin-right: 24px !important;\\n }\\n .v-application--is-rtl .me-lg-6 {\\n margin-left: 24px !important;\\n }\\n .v-application--is-ltr .me-lg-7 {\\n margin-right: 28px !important;\\n }\\n .v-application--is-rtl .me-lg-7 {\\n margin-left: 28px !important;\\n }\\n .v-application--is-ltr .me-lg-8 {\\n margin-right: 32px !important;\\n }\\n .v-application--is-rtl .me-lg-8 {\\n margin-left: 32px !important;\\n }\\n .v-application--is-ltr .me-lg-9 {\\n margin-right: 36px !important;\\n }\\n .v-application--is-rtl .me-lg-9 {\\n margin-left: 36px !important;\\n }\\n .v-application--is-ltr .me-lg-10 {\\n margin-right: 40px !important;\\n }\\n .v-application--is-rtl .me-lg-10 {\\n margin-left: 40px !important;\\n }\\n .v-application--is-ltr .me-lg-11 {\\n margin-right: 44px !important;\\n }\\n .v-application--is-rtl .me-lg-11 {\\n margin-left: 44px !important;\\n }\\n .v-application--is-ltr .me-lg-12 {\\n margin-right: 48px !important;\\n }\\n .v-application--is-rtl .me-lg-12 {\\n margin-left: 48px !important;\\n }\\n .v-application--is-ltr .me-lg-13 {\\n margin-right: 52px !important;\\n }\\n .v-application--is-rtl .me-lg-13 {\\n margin-left: 52px !important;\\n }\\n .v-application--is-ltr .me-lg-14 {\\n margin-right: 56px !important;\\n }\\n .v-application--is-rtl .me-lg-14 {\\n margin-left: 56px !important;\\n }\\n .v-application--is-ltr .me-lg-15 {\\n margin-right: 60px !important;\\n }\\n .v-application--is-rtl .me-lg-15 {\\n margin-left: 60px !important;\\n }\\n .v-application--is-ltr .me-lg-16 {\\n margin-right: 64px !important;\\n }\\n .v-application--is-rtl .me-lg-16 {\\n margin-left: 64px !important;\\n }\\n .v-application--is-ltr .me-lg-auto {\\n margin-right: auto !important;\\n }\\n .v-application--is-rtl .me-lg-auto {\\n margin-left: auto !important;\\n }\\n .v-application .ma-lg-n1 {\\n margin: -4px !important;\\n }\\n .v-application .ma-lg-n2 {\\n margin: -8px !important;\\n }\\n .v-application .ma-lg-n3 {\\n margin: -12px !important;\\n }\\n .v-application .ma-lg-n4 {\\n margin: -16px !important;\\n }\\n .v-application .ma-lg-n5 {\\n margin: -20px !important;\\n }\\n .v-application .ma-lg-n6 {\\n margin: -24px !important;\\n }\\n .v-application .ma-lg-n7 {\\n margin: -28px !important;\\n }\\n .v-application .ma-lg-n8 {\\n margin: -32px !important;\\n }\\n .v-application .ma-lg-n9 {\\n margin: -36px !important;\\n }\\n .v-application .ma-lg-n10 {\\n margin: -40px !important;\\n }\\n .v-application .ma-lg-n11 {\\n margin: -44px !important;\\n }\\n .v-application .ma-lg-n12 {\\n margin: -48px !important;\\n }\\n .v-application .ma-lg-n13 {\\n margin: -52px !important;\\n }\\n .v-application .ma-lg-n14 {\\n margin: -56px !important;\\n }\\n .v-application .ma-lg-n15 {\\n margin: -60px !important;\\n }\\n .v-application .ma-lg-n16 {\\n margin: -64px !important;\\n }\\n .v-application .mx-lg-n1 {\\n margin-right: -4px !important;\\n margin-left: -4px !important;\\n }\\n .v-application .mx-lg-n2 {\\n margin-right: -8px !important;\\n margin-left: -8px !important;\\n }\\n .v-application .mx-lg-n3 {\\n margin-right: -12px !important;\\n margin-left: -12px !important;\\n }\\n .v-application .mx-lg-n4 {\\n margin-right: -16px !important;\\n margin-left: -16px !important;\\n }\\n .v-application .mx-lg-n5 {\\n margin-right: -20px !important;\\n margin-left: -20px !important;\\n }\\n .v-application .mx-lg-n6 {\\n margin-right: -24px !important;\\n margin-left: -24px !important;\\n }\\n .v-application .mx-lg-n7 {\\n margin-right: -28px !important;\\n margin-left: -28px !important;\\n }\\n .v-application .mx-lg-n8 {\\n margin-right: -32px !important;\\n margin-left: -32px !important;\\n }\\n .v-application .mx-lg-n9 {\\n margin-right: -36px !important;\\n margin-left: -36px !important;\\n }\\n .v-application .mx-lg-n10 {\\n margin-right: -40px !important;\\n margin-left: -40px !important;\\n }\\n .v-application .mx-lg-n11 {\\n margin-right: -44px !important;\\n margin-left: -44px !important;\\n }\\n .v-application .mx-lg-n12 {\\n margin-right: -48px !important;\\n margin-left: -48px !important;\\n }\\n .v-application .mx-lg-n13 {\\n margin-right: -52px !important;\\n margin-left: -52px !important;\\n }\\n .v-application .mx-lg-n14 {\\n margin-right: -56px !important;\\n margin-left: -56px !important;\\n }\\n .v-application .mx-lg-n15 {\\n margin-right: -60px !important;\\n margin-left: -60px !important;\\n }\\n .v-application .mx-lg-n16 {\\n margin-right: -64px !important;\\n margin-left: -64px !important;\\n }\\n .v-application .my-lg-n1 {\\n margin-top: -4px !important;\\n margin-bottom: -4px !important;\\n }\\n .v-application .my-lg-n2 {\\n margin-top: -8px !important;\\n margin-bottom: -8px !important;\\n }\\n .v-application .my-lg-n3 {\\n margin-top: -12px !important;\\n margin-bottom: -12px !important;\\n }\\n .v-application .my-lg-n4 {\\n margin-top: -16px !important;\\n margin-bottom: -16px !important;\\n }\\n .v-application .my-lg-n5 {\\n margin-top: -20px !important;\\n margin-bottom: -20px !important;\\n }\\n .v-application .my-lg-n6 {\\n margin-top: -24px !important;\\n margin-bottom: -24px !important;\\n }\\n .v-application .my-lg-n7 {\\n margin-top: -28px !important;\\n margin-bottom: -28px !important;\\n }\\n .v-application .my-lg-n8 {\\n margin-top: -32px !important;\\n margin-bottom: -32px !important;\\n }\\n .v-application .my-lg-n9 {\\n margin-top: -36px !important;\\n margin-bottom: -36px !important;\\n }\\n .v-application .my-lg-n10 {\\n margin-top: -40px !important;\\n margin-bottom: -40px !important;\\n }\\n .v-application .my-lg-n11 {\\n margin-top: -44px !important;\\n margin-bottom: -44px !important;\\n }\\n .v-application .my-lg-n12 {\\n margin-top: -48px !important;\\n margin-bottom: -48px !important;\\n }\\n .v-application .my-lg-n13 {\\n margin-top: -52px !important;\\n margin-bottom: -52px !important;\\n }\\n .v-application .my-lg-n14 {\\n margin-top: -56px !important;\\n margin-bottom: -56px !important;\\n }\\n .v-application .my-lg-n15 {\\n margin-top: -60px !important;\\n margin-bottom: -60px !important;\\n }\\n .v-application .my-lg-n16 {\\n margin-top: -64px !important;\\n margin-bottom: -64px !important;\\n }\\n .v-application .mt-lg-n1 {\\n margin-top: -4px !important;\\n }\\n .v-application .mt-lg-n2 {\\n margin-top: -8px !important;\\n }\\n .v-application .mt-lg-n3 {\\n margin-top: -12px !important;\\n }\\n .v-application .mt-lg-n4 {\\n margin-top: -16px !important;\\n }\\n .v-application .mt-lg-n5 {\\n margin-top: -20px !important;\\n }\\n .v-application .mt-lg-n6 {\\n margin-top: -24px !important;\\n }\\n .v-application .mt-lg-n7 {\\n margin-top: -28px !important;\\n }\\n .v-application .mt-lg-n8 {\\n margin-top: -32px !important;\\n }\\n .v-application .mt-lg-n9 {\\n margin-top: -36px !important;\\n }\\n .v-application .mt-lg-n10 {\\n margin-top: -40px !important;\\n }\\n .v-application .mt-lg-n11 {\\n margin-top: -44px !important;\\n }\\n .v-application .mt-lg-n12 {\\n margin-top: -48px !important;\\n }\\n .v-application .mt-lg-n13 {\\n margin-top: -52px !important;\\n }\\n .v-application .mt-lg-n14 {\\n margin-top: -56px !important;\\n }\\n .v-application .mt-lg-n15 {\\n margin-top: -60px !important;\\n }\\n .v-application .mt-lg-n16 {\\n margin-top: -64px !important;\\n }\\n .v-application .mr-lg-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application .mr-lg-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application .mr-lg-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application .mr-lg-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application .mr-lg-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application .mr-lg-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application .mr-lg-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application .mr-lg-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application .mr-lg-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application .mr-lg-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application .mr-lg-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application .mr-lg-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application .mr-lg-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application .mr-lg-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application .mr-lg-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application .mr-lg-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application .mb-lg-n1 {\\n margin-bottom: -4px !important;\\n }\\n .v-application .mb-lg-n2 {\\n margin-bottom: -8px !important;\\n }\\n .v-application .mb-lg-n3 {\\n margin-bottom: -12px !important;\\n }\\n .v-application .mb-lg-n4 {\\n margin-bottom: -16px !important;\\n }\\n .v-application .mb-lg-n5 {\\n margin-bottom: -20px !important;\\n }\\n .v-application .mb-lg-n6 {\\n margin-bottom: -24px !important;\\n }\\n .v-application .mb-lg-n7 {\\n margin-bottom: -28px !important;\\n }\\n .v-application .mb-lg-n8 {\\n margin-bottom: -32px !important;\\n }\\n .v-application .mb-lg-n9 {\\n margin-bottom: -36px !important;\\n }\\n .v-application .mb-lg-n10 {\\n margin-bottom: -40px !important;\\n }\\n .v-application .mb-lg-n11 {\\n margin-bottom: -44px !important;\\n }\\n .v-application .mb-lg-n12 {\\n margin-bottom: -48px !important;\\n }\\n .v-application .mb-lg-n13 {\\n margin-bottom: -52px !important;\\n }\\n .v-application .mb-lg-n14 {\\n margin-bottom: -56px !important;\\n }\\n .v-application .mb-lg-n15 {\\n margin-bottom: -60px !important;\\n }\\n .v-application .mb-lg-n16 {\\n margin-bottom: -64px !important;\\n }\\n .v-application .ml-lg-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application .ml-lg-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application .ml-lg-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application .ml-lg-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application .ml-lg-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application .ml-lg-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application .ml-lg-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application .ml-lg-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application .ml-lg-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application .ml-lg-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application .ml-lg-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application .ml-lg-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application .ml-lg-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application .ml-lg-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application .ml-lg-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application .ml-lg-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application--is-ltr .ms-lg-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application--is-rtl .ms-lg-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application--is-ltr .ms-lg-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application--is-rtl .ms-lg-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application--is-ltr .ms-lg-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application--is-rtl .ms-lg-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application--is-ltr .ms-lg-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application--is-rtl .ms-lg-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application--is-ltr .ms-lg-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application--is-rtl .ms-lg-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application--is-ltr .ms-lg-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application--is-rtl .ms-lg-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application--is-ltr .ms-lg-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application--is-rtl .ms-lg-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application--is-ltr .ms-lg-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application--is-rtl .ms-lg-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application--is-ltr .ms-lg-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application--is-rtl .ms-lg-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application--is-ltr .ms-lg-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application--is-rtl .ms-lg-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application--is-ltr .ms-lg-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application--is-rtl .ms-lg-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application--is-ltr .ms-lg-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application--is-rtl .ms-lg-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application--is-ltr .ms-lg-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application--is-rtl .ms-lg-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application--is-ltr .ms-lg-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application--is-rtl .ms-lg-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application--is-ltr .ms-lg-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application--is-rtl .ms-lg-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application--is-ltr .ms-lg-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application--is-rtl .ms-lg-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application--is-ltr .me-lg-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application--is-rtl .me-lg-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application--is-ltr .me-lg-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application--is-rtl .me-lg-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application--is-ltr .me-lg-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application--is-rtl .me-lg-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application--is-ltr .me-lg-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application--is-rtl .me-lg-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application--is-ltr .me-lg-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application--is-rtl .me-lg-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application--is-ltr .me-lg-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application--is-rtl .me-lg-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application--is-ltr .me-lg-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application--is-rtl .me-lg-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application--is-ltr .me-lg-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application--is-rtl .me-lg-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application--is-ltr .me-lg-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application--is-rtl .me-lg-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application--is-ltr .me-lg-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application--is-rtl .me-lg-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application--is-ltr .me-lg-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application--is-rtl .me-lg-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application--is-ltr .me-lg-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application--is-rtl .me-lg-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application--is-ltr .me-lg-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application--is-rtl .me-lg-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application--is-ltr .me-lg-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application--is-rtl .me-lg-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application--is-ltr .me-lg-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application--is-rtl .me-lg-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application--is-ltr .me-lg-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application--is-rtl .me-lg-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application .pa-lg-0 {\\n padding: 0px !important;\\n }\\n .v-application .pa-lg-1 {\\n padding: 4px !important;\\n }\\n .v-application .pa-lg-2 {\\n padding: 8px !important;\\n }\\n .v-application .pa-lg-3 {\\n padding: 12px !important;\\n }\\n .v-application .pa-lg-4 {\\n padding: 16px !important;\\n }\\n .v-application .pa-lg-5 {\\n padding: 20px !important;\\n }\\n .v-application .pa-lg-6 {\\n padding: 24px !important;\\n }\\n .v-application .pa-lg-7 {\\n padding: 28px !important;\\n }\\n .v-application .pa-lg-8 {\\n padding: 32px !important;\\n }\\n .v-application .pa-lg-9 {\\n padding: 36px !important;\\n }\\n .v-application .pa-lg-10 {\\n padding: 40px !important;\\n }\\n .v-application .pa-lg-11 {\\n padding: 44px !important;\\n }\\n .v-application .pa-lg-12 {\\n padding: 48px !important;\\n }\\n .v-application .pa-lg-13 {\\n padding: 52px !important;\\n }\\n .v-application .pa-lg-14 {\\n padding: 56px !important;\\n }\\n .v-application .pa-lg-15 {\\n padding: 60px !important;\\n }\\n .v-application .pa-lg-16 {\\n padding: 64px !important;\\n }\\n .v-application .px-lg-0 {\\n padding-right: 0px !important;\\n padding-left: 0px !important;\\n }\\n .v-application .px-lg-1 {\\n padding-right: 4px !important;\\n padding-left: 4px !important;\\n }\\n .v-application .px-lg-2 {\\n padding-right: 8px !important;\\n padding-left: 8px !important;\\n }\\n .v-application .px-lg-3 {\\n padding-right: 12px !important;\\n padding-left: 12px !important;\\n }\\n .v-application .px-lg-4 {\\n padding-right: 16px !important;\\n padding-left: 16px !important;\\n }\\n .v-application .px-lg-5 {\\n padding-right: 20px !important;\\n padding-left: 20px !important;\\n }\\n .v-application .px-lg-6 {\\n padding-right: 24px !important;\\n padding-left: 24px !important;\\n }\\n .v-application .px-lg-7 {\\n padding-right: 28px !important;\\n padding-left: 28px !important;\\n }\\n .v-application .px-lg-8 {\\n padding-right: 32px !important;\\n padding-left: 32px !important;\\n }\\n .v-application .px-lg-9 {\\n padding-right: 36px !important;\\n padding-left: 36px !important;\\n }\\n .v-application .px-lg-10 {\\n padding-right: 40px !important;\\n padding-left: 40px !important;\\n }\\n .v-application .px-lg-11 {\\n padding-right: 44px !important;\\n padding-left: 44px !important;\\n }\\n .v-application .px-lg-12 {\\n padding-right: 48px !important;\\n padding-left: 48px !important;\\n }\\n .v-application .px-lg-13 {\\n padding-right: 52px !important;\\n padding-left: 52px !important;\\n }\\n .v-application .px-lg-14 {\\n padding-right: 56px !important;\\n padding-left: 56px !important;\\n }\\n .v-application .px-lg-15 {\\n padding-right: 60px !important;\\n padding-left: 60px !important;\\n }\\n .v-application .px-lg-16 {\\n padding-right: 64px !important;\\n padding-left: 64px !important;\\n }\\n .v-application .py-lg-0 {\\n padding-top: 0px !important;\\n padding-bottom: 0px !important;\\n }\\n .v-application .py-lg-1 {\\n padding-top: 4px !important;\\n padding-bottom: 4px !important;\\n }\\n .v-application .py-lg-2 {\\n padding-top: 8px !important;\\n padding-bottom: 8px !important;\\n }\\n .v-application .py-lg-3 {\\n padding-top: 12px !important;\\n padding-bottom: 12px !important;\\n }\\n .v-application .py-lg-4 {\\n padding-top: 16px !important;\\n padding-bottom: 16px !important;\\n }\\n .v-application .py-lg-5 {\\n padding-top: 20px !important;\\n padding-bottom: 20px !important;\\n }\\n .v-application .py-lg-6 {\\n padding-top: 24px !important;\\n padding-bottom: 24px !important;\\n }\\n .v-application .py-lg-7 {\\n padding-top: 28px !important;\\n padding-bottom: 28px !important;\\n }\\n .v-application .py-lg-8 {\\n padding-top: 32px !important;\\n padding-bottom: 32px !important;\\n }\\n .v-application .py-lg-9 {\\n padding-top: 36px !important;\\n padding-bottom: 36px !important;\\n }\\n .v-application .py-lg-10 {\\n padding-top: 40px !important;\\n padding-bottom: 40px !important;\\n }\\n .v-application .py-lg-11 {\\n padding-top: 44px !important;\\n padding-bottom: 44px !important;\\n }\\n .v-application .py-lg-12 {\\n padding-top: 48px !important;\\n padding-bottom: 48px !important;\\n }\\n .v-application .py-lg-13 {\\n padding-top: 52px !important;\\n padding-bottom: 52px !important;\\n }\\n .v-application .py-lg-14 {\\n padding-top: 56px !important;\\n padding-bottom: 56px !important;\\n }\\n .v-application .py-lg-15 {\\n padding-top: 60px !important;\\n padding-bottom: 60px !important;\\n }\\n .v-application .py-lg-16 {\\n padding-top: 64px !important;\\n padding-bottom: 64px !important;\\n }\\n .v-application .pt-lg-0 {\\n padding-top: 0px !important;\\n }\\n .v-application .pt-lg-1 {\\n padding-top: 4px !important;\\n }\\n .v-application .pt-lg-2 {\\n padding-top: 8px !important;\\n }\\n .v-application .pt-lg-3 {\\n padding-top: 12px !important;\\n }\\n .v-application .pt-lg-4 {\\n padding-top: 16px !important;\\n }\\n .v-application .pt-lg-5 {\\n padding-top: 20px !important;\\n }\\n .v-application .pt-lg-6 {\\n padding-top: 24px !important;\\n }\\n .v-application .pt-lg-7 {\\n padding-top: 28px !important;\\n }\\n .v-application .pt-lg-8 {\\n padding-top: 32px !important;\\n }\\n .v-application .pt-lg-9 {\\n padding-top: 36px !important;\\n }\\n .v-application .pt-lg-10 {\\n padding-top: 40px !important;\\n }\\n .v-application .pt-lg-11 {\\n padding-top: 44px !important;\\n }\\n .v-application .pt-lg-12 {\\n padding-top: 48px !important;\\n }\\n .v-application .pt-lg-13 {\\n padding-top: 52px !important;\\n }\\n .v-application .pt-lg-14 {\\n padding-top: 56px !important;\\n }\\n .v-application .pt-lg-15 {\\n padding-top: 60px !important;\\n }\\n .v-application .pt-lg-16 {\\n padding-top: 64px !important;\\n }\\n .v-application .pr-lg-0 {\\n padding-right: 0px !important;\\n }\\n .v-application .pr-lg-1 {\\n padding-right: 4px !important;\\n }\\n .v-application .pr-lg-2 {\\n padding-right: 8px !important;\\n }\\n .v-application .pr-lg-3 {\\n padding-right: 12px !important;\\n }\\n .v-application .pr-lg-4 {\\n padding-right: 16px !important;\\n }\\n .v-application .pr-lg-5 {\\n padding-right: 20px !important;\\n }\\n .v-application .pr-lg-6 {\\n padding-right: 24px !important;\\n }\\n .v-application .pr-lg-7 {\\n padding-right: 28px !important;\\n }\\n .v-application .pr-lg-8 {\\n padding-right: 32px !important;\\n }\\n .v-application .pr-lg-9 {\\n padding-right: 36px !important;\\n }\\n .v-application .pr-lg-10 {\\n padding-right: 40px !important;\\n }\\n .v-application .pr-lg-11 {\\n padding-right: 44px !important;\\n }\\n .v-application .pr-lg-12 {\\n padding-right: 48px !important;\\n }\\n .v-application .pr-lg-13 {\\n padding-right: 52px !important;\\n }\\n .v-application .pr-lg-14 {\\n padding-right: 56px !important;\\n }\\n .v-application .pr-lg-15 {\\n padding-right: 60px !important;\\n }\\n .v-application .pr-lg-16 {\\n padding-right: 64px !important;\\n }\\n .v-application .pb-lg-0 {\\n padding-bottom: 0px !important;\\n }\\n .v-application .pb-lg-1 {\\n padding-bottom: 4px !important;\\n }\\n .v-application .pb-lg-2 {\\n padding-bottom: 8px !important;\\n }\\n .v-application .pb-lg-3 {\\n padding-bottom: 12px !important;\\n }\\n .v-application .pb-lg-4 {\\n padding-bottom: 16px !important;\\n }\\n .v-application .pb-lg-5 {\\n padding-bottom: 20px !important;\\n }\\n .v-application .pb-lg-6 {\\n padding-bottom: 24px !important;\\n }\\n .v-application .pb-lg-7 {\\n padding-bottom: 28px !important;\\n }\\n .v-application .pb-lg-8 {\\n padding-bottom: 32px !important;\\n }\\n .v-application .pb-lg-9 {\\n padding-bottom: 36px !important;\\n }\\n .v-application .pb-lg-10 {\\n padding-bottom: 40px !important;\\n }\\n .v-application .pb-lg-11 {\\n padding-bottom: 44px !important;\\n }\\n .v-application .pb-lg-12 {\\n padding-bottom: 48px !important;\\n }\\n .v-application .pb-lg-13 {\\n padding-bottom: 52px !important;\\n }\\n .v-application .pb-lg-14 {\\n padding-bottom: 56px !important;\\n }\\n .v-application .pb-lg-15 {\\n padding-bottom: 60px !important;\\n }\\n .v-application .pb-lg-16 {\\n padding-bottom: 64px !important;\\n }\\n .v-application .pl-lg-0 {\\n padding-left: 0px !important;\\n }\\n .v-application .pl-lg-1 {\\n padding-left: 4px !important;\\n }\\n .v-application .pl-lg-2 {\\n padding-left: 8px !important;\\n }\\n .v-application .pl-lg-3 {\\n padding-left: 12px !important;\\n }\\n .v-application .pl-lg-4 {\\n padding-left: 16px !important;\\n }\\n .v-application .pl-lg-5 {\\n padding-left: 20px !important;\\n }\\n .v-application .pl-lg-6 {\\n padding-left: 24px !important;\\n }\\n .v-application .pl-lg-7 {\\n padding-left: 28px !important;\\n }\\n .v-application .pl-lg-8 {\\n padding-left: 32px !important;\\n }\\n .v-application .pl-lg-9 {\\n padding-left: 36px !important;\\n }\\n .v-application .pl-lg-10 {\\n padding-left: 40px !important;\\n }\\n .v-application .pl-lg-11 {\\n padding-left: 44px !important;\\n }\\n .v-application .pl-lg-12 {\\n padding-left: 48px !important;\\n }\\n .v-application .pl-lg-13 {\\n padding-left: 52px !important;\\n }\\n .v-application .pl-lg-14 {\\n padding-left: 56px !important;\\n }\\n .v-application .pl-lg-15 {\\n padding-left: 60px !important;\\n }\\n .v-application .pl-lg-16 {\\n padding-left: 64px !important;\\n }\\n .v-application--is-ltr .ps-lg-0 {\\n padding-left: 0px !important;\\n }\\n .v-application--is-rtl .ps-lg-0 {\\n padding-right: 0px !important;\\n }\\n .v-application--is-ltr .ps-lg-1 {\\n padding-left: 4px !important;\\n }\\n .v-application--is-rtl .ps-lg-1 {\\n padding-right: 4px !important;\\n }\\n .v-application--is-ltr .ps-lg-2 {\\n padding-left: 8px !important;\\n }\\n .v-application--is-rtl .ps-lg-2 {\\n padding-right: 8px !important;\\n }\\n .v-application--is-ltr .ps-lg-3 {\\n padding-left: 12px !important;\\n }\\n .v-application--is-rtl .ps-lg-3 {\\n padding-right: 12px !important;\\n }\\n .v-application--is-ltr .ps-lg-4 {\\n padding-left: 16px !important;\\n }\\n .v-application--is-rtl .ps-lg-4 {\\n padding-right: 16px !important;\\n }\\n .v-application--is-ltr .ps-lg-5 {\\n padding-left: 20px !important;\\n }\\n .v-application--is-rtl .ps-lg-5 {\\n padding-right: 20px !important;\\n }\\n .v-application--is-ltr .ps-lg-6 {\\n padding-left: 24px !important;\\n }\\n .v-application--is-rtl .ps-lg-6 {\\n padding-right: 24px !important;\\n }\\n .v-application--is-ltr .ps-lg-7 {\\n padding-left: 28px !important;\\n }\\n .v-application--is-rtl .ps-lg-7 {\\n padding-right: 28px !important;\\n }\\n .v-application--is-ltr .ps-lg-8 {\\n padding-left: 32px !important;\\n }\\n .v-application--is-rtl .ps-lg-8 {\\n padding-right: 32px !important;\\n }\\n .v-application--is-ltr .ps-lg-9 {\\n padding-left: 36px !important;\\n }\\n .v-application--is-rtl .ps-lg-9 {\\n padding-right: 36px !important;\\n }\\n .v-application--is-ltr .ps-lg-10 {\\n padding-left: 40px !important;\\n }\\n .v-application--is-rtl .ps-lg-10 {\\n padding-right: 40px !important;\\n }\\n .v-application--is-ltr .ps-lg-11 {\\n padding-left: 44px !important;\\n }\\n .v-application--is-rtl .ps-lg-11 {\\n padding-right: 44px !important;\\n }\\n .v-application--is-ltr .ps-lg-12 {\\n padding-left: 48px !important;\\n }\\n .v-application--is-rtl .ps-lg-12 {\\n padding-right: 48px !important;\\n }\\n .v-application--is-ltr .ps-lg-13 {\\n padding-left: 52px !important;\\n }\\n .v-application--is-rtl .ps-lg-13 {\\n padding-right: 52px !important;\\n }\\n .v-application--is-ltr .ps-lg-14 {\\n padding-left: 56px !important;\\n }\\n .v-application--is-rtl .ps-lg-14 {\\n padding-right: 56px !important;\\n }\\n .v-application--is-ltr .ps-lg-15 {\\n padding-left: 60px !important;\\n }\\n .v-application--is-rtl .ps-lg-15 {\\n padding-right: 60px !important;\\n }\\n .v-application--is-ltr .ps-lg-16 {\\n padding-left: 64px !important;\\n }\\n .v-application--is-rtl .ps-lg-16 {\\n padding-right: 64px !important;\\n }\\n .v-application--is-ltr .pe-lg-0 {\\n padding-right: 0px !important;\\n }\\n .v-application--is-rtl .pe-lg-0 {\\n padding-left: 0px !important;\\n }\\n .v-application--is-ltr .pe-lg-1 {\\n padding-right: 4px !important;\\n }\\n .v-application--is-rtl .pe-lg-1 {\\n padding-left: 4px !important;\\n }\\n .v-application--is-ltr .pe-lg-2 {\\n padding-right: 8px !important;\\n }\\n .v-application--is-rtl .pe-lg-2 {\\n padding-left: 8px !important;\\n }\\n .v-application--is-ltr .pe-lg-3 {\\n padding-right: 12px !important;\\n }\\n .v-application--is-rtl .pe-lg-3 {\\n padding-left: 12px !important;\\n }\\n .v-application--is-ltr .pe-lg-4 {\\n padding-right: 16px !important;\\n }\\n .v-application--is-rtl .pe-lg-4 {\\n padding-left: 16px !important;\\n }\\n .v-application--is-ltr .pe-lg-5 {\\n padding-right: 20px !important;\\n }\\n .v-application--is-rtl .pe-lg-5 {\\n padding-left: 20px !important;\\n }\\n .v-application--is-ltr .pe-lg-6 {\\n padding-right: 24px !important;\\n }\\n .v-application--is-rtl .pe-lg-6 {\\n padding-left: 24px !important;\\n }\\n .v-application--is-ltr .pe-lg-7 {\\n padding-right: 28px !important;\\n }\\n .v-application--is-rtl .pe-lg-7 {\\n padding-left: 28px !important;\\n }\\n .v-application--is-ltr .pe-lg-8 {\\n padding-right: 32px !important;\\n }\\n .v-application--is-rtl .pe-lg-8 {\\n padding-left: 32px !important;\\n }\\n .v-application--is-ltr .pe-lg-9 {\\n padding-right: 36px !important;\\n }\\n .v-application--is-rtl .pe-lg-9 {\\n padding-left: 36px !important;\\n }\\n .v-application--is-ltr .pe-lg-10 {\\n padding-right: 40px !important;\\n }\\n .v-application--is-rtl .pe-lg-10 {\\n padding-left: 40px !important;\\n }\\n .v-application--is-ltr .pe-lg-11 {\\n padding-right: 44px !important;\\n }\\n .v-application--is-rtl .pe-lg-11 {\\n padding-left: 44px !important;\\n }\\n .v-application--is-ltr .pe-lg-12 {\\n padding-right: 48px !important;\\n }\\n .v-application--is-rtl .pe-lg-12 {\\n padding-left: 48px !important;\\n }\\n .v-application--is-ltr .pe-lg-13 {\\n padding-right: 52px !important;\\n }\\n .v-application--is-rtl .pe-lg-13 {\\n padding-left: 52px !important;\\n }\\n .v-application--is-ltr .pe-lg-14 {\\n padding-right: 56px !important;\\n }\\n .v-application--is-rtl .pe-lg-14 {\\n padding-left: 56px !important;\\n }\\n .v-application--is-ltr .pe-lg-15 {\\n padding-right: 60px !important;\\n }\\n .v-application--is-rtl .pe-lg-15 {\\n padding-left: 60px !important;\\n }\\n .v-application--is-ltr .pe-lg-16 {\\n padding-right: 64px !important;\\n }\\n .v-application--is-rtl .pe-lg-16 {\\n padding-left: 64px !important;\\n }\\n .v-application .text-lg-left {\\n text-align: left !important;\\n }\\n .v-application .text-lg-right {\\n text-align: right !important;\\n }\\n .v-application .text-lg-center {\\n text-align: center !important;\\n }\\n .v-application .text-lg-justify {\\n text-align: justify !important;\\n }\\n .v-application .text-lg-start {\\n text-align: start !important;\\n }\\n .v-application .text-lg-end {\\n text-align: end !important;\\n }\\n .v-application .text-lg-h1 {\\n font-size: 6rem !important;\\n font-weight: 300;\\n line-height: 6rem;\\n letter-spacing: -0.015625em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-h2 {\\n font-size: 3.75rem !important;\\n font-weight: 300;\\n line-height: 3.75rem;\\n letter-spacing: -0.0083333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-h3 {\\n font-size: 3rem !important;\\n font-weight: 400;\\n line-height: 3.125rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-h4 {\\n font-size: 2.125rem !important;\\n font-weight: 400;\\n line-height: 2.5rem;\\n letter-spacing: 0.0073529412em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-h5 {\\n font-size: 1.5rem !important;\\n font-weight: 400;\\n line-height: 2rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-h6 {\\n font-size: 1.25rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.0125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-subtitle-1 {\\n font-size: 1rem !important;\\n font-weight: normal;\\n line-height: 1.75rem;\\n letter-spacing: 0.009375em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-subtitle-2 {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 1.375rem;\\n letter-spacing: 0.0071428571em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-body-1 {\\n font-size: 1rem !important;\\n font-weight: 400;\\n line-height: 1.5rem;\\n letter-spacing: 0.03125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-body-2 {\\n font-size: 0.875rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0178571429em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-button {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 2.25rem;\\n letter-spacing: 0.0892857143em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n }\\n .v-application .text-lg-caption {\\n font-size: 0.75rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0333333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-lg-overline {\\n font-size: 0.75rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.1666666667em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n }\\n}\\n@media (min-width: 1904px) {\\n .v-application .d-xl-none {\\n display: none !important;\\n }\\n .v-application .d-xl-inline {\\n display: inline !important;\\n }\\n .v-application .d-xl-inline-block {\\n display: inline-block !important;\\n }\\n .v-application .d-xl-block {\\n display: block !important;\\n }\\n .v-application .d-xl-table {\\n display: table !important;\\n }\\n .v-application .d-xl-table-row {\\n display: table-row !important;\\n }\\n .v-application .d-xl-table-cell {\\n display: table-cell !important;\\n }\\n .v-application .d-xl-flex {\\n display: flex !important;\\n }\\n .v-application .d-xl-inline-flex {\\n display: inline-flex !important;\\n }\\n .v-application .float-xl-none {\\n float: none !important;\\n }\\n .v-application .float-xl-left {\\n float: left !important;\\n }\\n .v-application .float-xl-right {\\n float: right !important;\\n }\\n .v-application--is-rtl .float-xl-end {\\n float: left !important;\\n }\\n .v-application--is-rtl .float-xl-start {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-xl-end {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-xl-start {\\n float: left !important;\\n }\\n .v-application .flex-xl-fill {\\n flex: 1 1 auto !important;\\n }\\n .v-application .flex-xl-row {\\n flex-direction: row !important;\\n }\\n .v-application .flex-xl-column {\\n flex-direction: column !important;\\n }\\n .v-application .flex-xl-row-reverse {\\n flex-direction: row-reverse !important;\\n }\\n .v-application .flex-xl-column-reverse {\\n flex-direction: column-reverse !important;\\n }\\n .v-application .flex-xl-grow-0 {\\n flex-grow: 0 !important;\\n }\\n .v-application .flex-xl-grow-1 {\\n flex-grow: 1 !important;\\n }\\n .v-application .flex-xl-shrink-0 {\\n flex-shrink: 0 !important;\\n }\\n .v-application .flex-xl-shrink-1 {\\n flex-shrink: 1 !important;\\n }\\n .v-application .flex-xl-wrap {\\n flex-wrap: wrap !important;\\n }\\n .v-application .flex-xl-nowrap {\\n flex-wrap: nowrap !important;\\n }\\n .v-application .flex-xl-wrap-reverse {\\n flex-wrap: wrap-reverse !important;\\n }\\n .v-application .justify-xl-start {\\n justify-content: flex-start !important;\\n }\\n .v-application .justify-xl-end {\\n justify-content: flex-end !important;\\n }\\n .v-application .justify-xl-center {\\n justify-content: center !important;\\n }\\n .v-application .justify-xl-space-between {\\n justify-content: space-between !important;\\n }\\n .v-application .justify-xl-space-around {\\n justify-content: space-around !important;\\n }\\n .v-application .align-xl-start {\\n align-items: flex-start !important;\\n }\\n .v-application .align-xl-end {\\n align-items: flex-end !important;\\n }\\n .v-application .align-xl-center {\\n align-items: center !important;\\n }\\n .v-application .align-xl-baseline {\\n align-items: baseline !important;\\n }\\n .v-application .align-xl-stretch {\\n align-items: stretch !important;\\n }\\n .v-application .align-content-xl-start {\\n align-content: flex-start !important;\\n }\\n .v-application .align-content-xl-end {\\n align-content: flex-end !important;\\n }\\n .v-application .align-content-xl-center {\\n align-content: center !important;\\n }\\n .v-application .align-content-xl-space-between {\\n align-content: space-between !important;\\n }\\n .v-application .align-content-xl-space-around {\\n align-content: space-around !important;\\n }\\n .v-application .align-content-xl-stretch {\\n align-content: stretch !important;\\n }\\n .v-application .align-self-xl-auto {\\n align-self: auto !important;\\n }\\n .v-application .align-self-xl-start {\\n align-self: flex-start !important;\\n }\\n .v-application .align-self-xl-end {\\n align-self: flex-end !important;\\n }\\n .v-application .align-self-xl-center {\\n align-self: center !important;\\n }\\n .v-application .align-self-xl-baseline {\\n align-self: baseline !important;\\n }\\n .v-application .align-self-xl-stretch {\\n align-self: stretch !important;\\n }\\n .v-application .order-xl-first {\\n order: -1 !important;\\n }\\n .v-application .order-xl-0 {\\n order: 0 !important;\\n }\\n .v-application .order-xl-1 {\\n order: 1 !important;\\n }\\n .v-application .order-xl-2 {\\n order: 2 !important;\\n }\\n .v-application .order-xl-3 {\\n order: 3 !important;\\n }\\n .v-application .order-xl-4 {\\n order: 4 !important;\\n }\\n .v-application .order-xl-5 {\\n order: 5 !important;\\n }\\n .v-application .order-xl-6 {\\n order: 6 !important;\\n }\\n .v-application .order-xl-7 {\\n order: 7 !important;\\n }\\n .v-application .order-xl-8 {\\n order: 8 !important;\\n }\\n .v-application .order-xl-9 {\\n order: 9 !important;\\n }\\n .v-application .order-xl-10 {\\n order: 10 !important;\\n }\\n .v-application .order-xl-11 {\\n order: 11 !important;\\n }\\n .v-application .order-xl-12 {\\n order: 12 !important;\\n }\\n .v-application .order-xl-last {\\n order: 13 !important;\\n }\\n .v-application .ma-xl-0 {\\n margin: 0px !important;\\n }\\n .v-application .ma-xl-1 {\\n margin: 4px !important;\\n }\\n .v-application .ma-xl-2 {\\n margin: 8px !important;\\n }\\n .v-application .ma-xl-3 {\\n margin: 12px !important;\\n }\\n .v-application .ma-xl-4 {\\n margin: 16px !important;\\n }\\n .v-application .ma-xl-5 {\\n margin: 20px !important;\\n }\\n .v-application .ma-xl-6 {\\n margin: 24px !important;\\n }\\n .v-application .ma-xl-7 {\\n margin: 28px !important;\\n }\\n .v-application .ma-xl-8 {\\n margin: 32px !important;\\n }\\n .v-application .ma-xl-9 {\\n margin: 36px !important;\\n }\\n .v-application .ma-xl-10 {\\n margin: 40px !important;\\n }\\n .v-application .ma-xl-11 {\\n margin: 44px !important;\\n }\\n .v-application .ma-xl-12 {\\n margin: 48px !important;\\n }\\n .v-application .ma-xl-13 {\\n margin: 52px !important;\\n }\\n .v-application .ma-xl-14 {\\n margin: 56px !important;\\n }\\n .v-application .ma-xl-15 {\\n margin: 60px !important;\\n }\\n .v-application .ma-xl-16 {\\n margin: 64px !important;\\n }\\n .v-application .ma-xl-auto {\\n margin: auto !important;\\n }\\n .v-application .mx-xl-0 {\\n margin-right: 0px !important;\\n margin-left: 0px !important;\\n }\\n .v-application .mx-xl-1 {\\n margin-right: 4px !important;\\n margin-left: 4px !important;\\n }\\n .v-application .mx-xl-2 {\\n margin-right: 8px !important;\\n margin-left: 8px !important;\\n }\\n .v-application .mx-xl-3 {\\n margin-right: 12px !important;\\n margin-left: 12px !important;\\n }\\n .v-application .mx-xl-4 {\\n margin-right: 16px !important;\\n margin-left: 16px !important;\\n }\\n .v-application .mx-xl-5 {\\n margin-right: 20px !important;\\n margin-left: 20px !important;\\n }\\n .v-application .mx-xl-6 {\\n margin-right: 24px !important;\\n margin-left: 24px !important;\\n }\\n .v-application .mx-xl-7 {\\n margin-right: 28px !important;\\n margin-left: 28px !important;\\n }\\n .v-application .mx-xl-8 {\\n margin-right: 32px !important;\\n margin-left: 32px !important;\\n }\\n .v-application .mx-xl-9 {\\n margin-right: 36px !important;\\n margin-left: 36px !important;\\n }\\n .v-application .mx-xl-10 {\\n margin-right: 40px !important;\\n margin-left: 40px !important;\\n }\\n .v-application .mx-xl-11 {\\n margin-right: 44px !important;\\n margin-left: 44px !important;\\n }\\n .v-application .mx-xl-12 {\\n margin-right: 48px !important;\\n margin-left: 48px !important;\\n }\\n .v-application .mx-xl-13 {\\n margin-right: 52px !important;\\n margin-left: 52px !important;\\n }\\n .v-application .mx-xl-14 {\\n margin-right: 56px !important;\\n margin-left: 56px !important;\\n }\\n .v-application .mx-xl-15 {\\n margin-right: 60px !important;\\n margin-left: 60px !important;\\n }\\n .v-application .mx-xl-16 {\\n margin-right: 64px !important;\\n margin-left: 64px !important;\\n }\\n .v-application .mx-xl-auto {\\n margin-right: auto !important;\\n margin-left: auto !important;\\n }\\n .v-application .my-xl-0 {\\n margin-top: 0px !important;\\n margin-bottom: 0px !important;\\n }\\n .v-application .my-xl-1 {\\n margin-top: 4px !important;\\n margin-bottom: 4px !important;\\n }\\n .v-application .my-xl-2 {\\n margin-top: 8px !important;\\n margin-bottom: 8px !important;\\n }\\n .v-application .my-xl-3 {\\n margin-top: 12px !important;\\n margin-bottom: 12px !important;\\n }\\n .v-application .my-xl-4 {\\n margin-top: 16px !important;\\n margin-bottom: 16px !important;\\n }\\n .v-application .my-xl-5 {\\n margin-top: 20px !important;\\n margin-bottom: 20px !important;\\n }\\n .v-application .my-xl-6 {\\n margin-top: 24px !important;\\n margin-bottom: 24px !important;\\n }\\n .v-application .my-xl-7 {\\n margin-top: 28px !important;\\n margin-bottom: 28px !important;\\n }\\n .v-application .my-xl-8 {\\n margin-top: 32px !important;\\n margin-bottom: 32px !important;\\n }\\n .v-application .my-xl-9 {\\n margin-top: 36px !important;\\n margin-bottom: 36px !important;\\n }\\n .v-application .my-xl-10 {\\n margin-top: 40px !important;\\n margin-bottom: 40px !important;\\n }\\n .v-application .my-xl-11 {\\n margin-top: 44px !important;\\n margin-bottom: 44px !important;\\n }\\n .v-application .my-xl-12 {\\n margin-top: 48px !important;\\n margin-bottom: 48px !important;\\n }\\n .v-application .my-xl-13 {\\n margin-top: 52px !important;\\n margin-bottom: 52px !important;\\n }\\n .v-application .my-xl-14 {\\n margin-top: 56px !important;\\n margin-bottom: 56px !important;\\n }\\n .v-application .my-xl-15 {\\n margin-top: 60px !important;\\n margin-bottom: 60px !important;\\n }\\n .v-application .my-xl-16 {\\n margin-top: 64px !important;\\n margin-bottom: 64px !important;\\n }\\n .v-application .my-xl-auto {\\n margin-top: auto !important;\\n margin-bottom: auto !important;\\n }\\n .v-application .mt-xl-0 {\\n margin-top: 0px !important;\\n }\\n .v-application .mt-xl-1 {\\n margin-top: 4px !important;\\n }\\n .v-application .mt-xl-2 {\\n margin-top: 8px !important;\\n }\\n .v-application .mt-xl-3 {\\n margin-top: 12px !important;\\n }\\n .v-application .mt-xl-4 {\\n margin-top: 16px !important;\\n }\\n .v-application .mt-xl-5 {\\n margin-top: 20px !important;\\n }\\n .v-application .mt-xl-6 {\\n margin-top: 24px !important;\\n }\\n .v-application .mt-xl-7 {\\n margin-top: 28px !important;\\n }\\n .v-application .mt-xl-8 {\\n margin-top: 32px !important;\\n }\\n .v-application .mt-xl-9 {\\n margin-top: 36px !important;\\n }\\n .v-application .mt-xl-10 {\\n margin-top: 40px !important;\\n }\\n .v-application .mt-xl-11 {\\n margin-top: 44px !important;\\n }\\n .v-application .mt-xl-12 {\\n margin-top: 48px !important;\\n }\\n .v-application .mt-xl-13 {\\n margin-top: 52px !important;\\n }\\n .v-application .mt-xl-14 {\\n margin-top: 56px !important;\\n }\\n .v-application .mt-xl-15 {\\n margin-top: 60px !important;\\n }\\n .v-application .mt-xl-16 {\\n margin-top: 64px !important;\\n }\\n .v-application .mt-xl-auto {\\n margin-top: auto !important;\\n }\\n .v-application .mr-xl-0 {\\n margin-right: 0px !important;\\n }\\n .v-application .mr-xl-1 {\\n margin-right: 4px !important;\\n }\\n .v-application .mr-xl-2 {\\n margin-right: 8px !important;\\n }\\n .v-application .mr-xl-3 {\\n margin-right: 12px !important;\\n }\\n .v-application .mr-xl-4 {\\n margin-right: 16px !important;\\n }\\n .v-application .mr-xl-5 {\\n margin-right: 20px !important;\\n }\\n .v-application .mr-xl-6 {\\n margin-right: 24px !important;\\n }\\n .v-application .mr-xl-7 {\\n margin-right: 28px !important;\\n }\\n .v-application .mr-xl-8 {\\n margin-right: 32px !important;\\n }\\n .v-application .mr-xl-9 {\\n margin-right: 36px !important;\\n }\\n .v-application .mr-xl-10 {\\n margin-right: 40px !important;\\n }\\n .v-application .mr-xl-11 {\\n margin-right: 44px !important;\\n }\\n .v-application .mr-xl-12 {\\n margin-right: 48px !important;\\n }\\n .v-application .mr-xl-13 {\\n margin-right: 52px !important;\\n }\\n .v-application .mr-xl-14 {\\n margin-right: 56px !important;\\n }\\n .v-application .mr-xl-15 {\\n margin-right: 60px !important;\\n }\\n .v-application .mr-xl-16 {\\n margin-right: 64px !important;\\n }\\n .v-application .mr-xl-auto {\\n margin-right: auto !important;\\n }\\n .v-application .mb-xl-0 {\\n margin-bottom: 0px !important;\\n }\\n .v-application .mb-xl-1 {\\n margin-bottom: 4px !important;\\n }\\n .v-application .mb-xl-2 {\\n margin-bottom: 8px !important;\\n }\\n .v-application .mb-xl-3 {\\n margin-bottom: 12px !important;\\n }\\n .v-application .mb-xl-4 {\\n margin-bottom: 16px !important;\\n }\\n .v-application .mb-xl-5 {\\n margin-bottom: 20px !important;\\n }\\n .v-application .mb-xl-6 {\\n margin-bottom: 24px !important;\\n }\\n .v-application .mb-xl-7 {\\n margin-bottom: 28px !important;\\n }\\n .v-application .mb-xl-8 {\\n margin-bottom: 32px !important;\\n }\\n .v-application .mb-xl-9 {\\n margin-bottom: 36px !important;\\n }\\n .v-application .mb-xl-10 {\\n margin-bottom: 40px !important;\\n }\\n .v-application .mb-xl-11 {\\n margin-bottom: 44px !important;\\n }\\n .v-application .mb-xl-12 {\\n margin-bottom: 48px !important;\\n }\\n .v-application .mb-xl-13 {\\n margin-bottom: 52px !important;\\n }\\n .v-application .mb-xl-14 {\\n margin-bottom: 56px !important;\\n }\\n .v-application .mb-xl-15 {\\n margin-bottom: 60px !important;\\n }\\n .v-application .mb-xl-16 {\\n margin-bottom: 64px !important;\\n }\\n .v-application .mb-xl-auto {\\n margin-bottom: auto !important;\\n }\\n .v-application .ml-xl-0 {\\n margin-left: 0px !important;\\n }\\n .v-application .ml-xl-1 {\\n margin-left: 4px !important;\\n }\\n .v-application .ml-xl-2 {\\n margin-left: 8px !important;\\n }\\n .v-application .ml-xl-3 {\\n margin-left: 12px !important;\\n }\\n .v-application .ml-xl-4 {\\n margin-left: 16px !important;\\n }\\n .v-application .ml-xl-5 {\\n margin-left: 20px !important;\\n }\\n .v-application .ml-xl-6 {\\n margin-left: 24px !important;\\n }\\n .v-application .ml-xl-7 {\\n margin-left: 28px !important;\\n }\\n .v-application .ml-xl-8 {\\n margin-left: 32px !important;\\n }\\n .v-application .ml-xl-9 {\\n margin-left: 36px !important;\\n }\\n .v-application .ml-xl-10 {\\n margin-left: 40px !important;\\n }\\n .v-application .ml-xl-11 {\\n margin-left: 44px !important;\\n }\\n .v-application .ml-xl-12 {\\n margin-left: 48px !important;\\n }\\n .v-application .ml-xl-13 {\\n margin-left: 52px !important;\\n }\\n .v-application .ml-xl-14 {\\n margin-left: 56px !important;\\n }\\n .v-application .ml-xl-15 {\\n margin-left: 60px !important;\\n }\\n .v-application .ml-xl-16 {\\n margin-left: 64px !important;\\n }\\n .v-application .ml-xl-auto {\\n margin-left: auto !important;\\n }\\n .v-application--is-ltr .ms-xl-0 {\\n margin-left: 0px !important;\\n }\\n .v-application--is-rtl .ms-xl-0 {\\n margin-right: 0px !important;\\n }\\n .v-application--is-ltr .ms-xl-1 {\\n margin-left: 4px !important;\\n }\\n .v-application--is-rtl .ms-xl-1 {\\n margin-right: 4px !important;\\n }\\n .v-application--is-ltr .ms-xl-2 {\\n margin-left: 8px !important;\\n }\\n .v-application--is-rtl .ms-xl-2 {\\n margin-right: 8px !important;\\n }\\n .v-application--is-ltr .ms-xl-3 {\\n margin-left: 12px !important;\\n }\\n .v-application--is-rtl .ms-xl-3 {\\n margin-right: 12px !important;\\n }\\n .v-application--is-ltr .ms-xl-4 {\\n margin-left: 16px !important;\\n }\\n .v-application--is-rtl .ms-xl-4 {\\n margin-right: 16px !important;\\n }\\n .v-application--is-ltr .ms-xl-5 {\\n margin-left: 20px !important;\\n }\\n .v-application--is-rtl .ms-xl-5 {\\n margin-right: 20px !important;\\n }\\n .v-application--is-ltr .ms-xl-6 {\\n margin-left: 24px !important;\\n }\\n .v-application--is-rtl .ms-xl-6 {\\n margin-right: 24px !important;\\n }\\n .v-application--is-ltr .ms-xl-7 {\\n margin-left: 28px !important;\\n }\\n .v-application--is-rtl .ms-xl-7 {\\n margin-right: 28px !important;\\n }\\n .v-application--is-ltr .ms-xl-8 {\\n margin-left: 32px !important;\\n }\\n .v-application--is-rtl .ms-xl-8 {\\n margin-right: 32px !important;\\n }\\n .v-application--is-ltr .ms-xl-9 {\\n margin-left: 36px !important;\\n }\\n .v-application--is-rtl .ms-xl-9 {\\n margin-right: 36px !important;\\n }\\n .v-application--is-ltr .ms-xl-10 {\\n margin-left: 40px !important;\\n }\\n .v-application--is-rtl .ms-xl-10 {\\n margin-right: 40px !important;\\n }\\n .v-application--is-ltr .ms-xl-11 {\\n margin-left: 44px !important;\\n }\\n .v-application--is-rtl .ms-xl-11 {\\n margin-right: 44px !important;\\n }\\n .v-application--is-ltr .ms-xl-12 {\\n margin-left: 48px !important;\\n }\\n .v-application--is-rtl .ms-xl-12 {\\n margin-right: 48px !important;\\n }\\n .v-application--is-ltr .ms-xl-13 {\\n margin-left: 52px !important;\\n }\\n .v-application--is-rtl .ms-xl-13 {\\n margin-right: 52px !important;\\n }\\n .v-application--is-ltr .ms-xl-14 {\\n margin-left: 56px !important;\\n }\\n .v-application--is-rtl .ms-xl-14 {\\n margin-right: 56px !important;\\n }\\n .v-application--is-ltr .ms-xl-15 {\\n margin-left: 60px !important;\\n }\\n .v-application--is-rtl .ms-xl-15 {\\n margin-right: 60px !important;\\n }\\n .v-application--is-ltr .ms-xl-16 {\\n margin-left: 64px !important;\\n }\\n .v-application--is-rtl .ms-xl-16 {\\n margin-right: 64px !important;\\n }\\n .v-application--is-ltr .ms-xl-auto {\\n margin-left: auto !important;\\n }\\n .v-application--is-rtl .ms-xl-auto {\\n margin-right: auto !important;\\n }\\n .v-application--is-ltr .me-xl-0 {\\n margin-right: 0px !important;\\n }\\n .v-application--is-rtl .me-xl-0 {\\n margin-left: 0px !important;\\n }\\n .v-application--is-ltr .me-xl-1 {\\n margin-right: 4px !important;\\n }\\n .v-application--is-rtl .me-xl-1 {\\n margin-left: 4px !important;\\n }\\n .v-application--is-ltr .me-xl-2 {\\n margin-right: 8px !important;\\n }\\n .v-application--is-rtl .me-xl-2 {\\n margin-left: 8px !important;\\n }\\n .v-application--is-ltr .me-xl-3 {\\n margin-right: 12px !important;\\n }\\n .v-application--is-rtl .me-xl-3 {\\n margin-left: 12px !important;\\n }\\n .v-application--is-ltr .me-xl-4 {\\n margin-right: 16px !important;\\n }\\n .v-application--is-rtl .me-xl-4 {\\n margin-left: 16px !important;\\n }\\n .v-application--is-ltr .me-xl-5 {\\n margin-right: 20px !important;\\n }\\n .v-application--is-rtl .me-xl-5 {\\n margin-left: 20px !important;\\n }\\n .v-application--is-ltr .me-xl-6 {\\n margin-right: 24px !important;\\n }\\n .v-application--is-rtl .me-xl-6 {\\n margin-left: 24px !important;\\n }\\n .v-application--is-ltr .me-xl-7 {\\n margin-right: 28px !important;\\n }\\n .v-application--is-rtl .me-xl-7 {\\n margin-left: 28px !important;\\n }\\n .v-application--is-ltr .me-xl-8 {\\n margin-right: 32px !important;\\n }\\n .v-application--is-rtl .me-xl-8 {\\n margin-left: 32px !important;\\n }\\n .v-application--is-ltr .me-xl-9 {\\n margin-right: 36px !important;\\n }\\n .v-application--is-rtl .me-xl-9 {\\n margin-left: 36px !important;\\n }\\n .v-application--is-ltr .me-xl-10 {\\n margin-right: 40px !important;\\n }\\n .v-application--is-rtl .me-xl-10 {\\n margin-left: 40px !important;\\n }\\n .v-application--is-ltr .me-xl-11 {\\n margin-right: 44px !important;\\n }\\n .v-application--is-rtl .me-xl-11 {\\n margin-left: 44px !important;\\n }\\n .v-application--is-ltr .me-xl-12 {\\n margin-right: 48px !important;\\n }\\n .v-application--is-rtl .me-xl-12 {\\n margin-left: 48px !important;\\n }\\n .v-application--is-ltr .me-xl-13 {\\n margin-right: 52px !important;\\n }\\n .v-application--is-rtl .me-xl-13 {\\n margin-left: 52px !important;\\n }\\n .v-application--is-ltr .me-xl-14 {\\n margin-right: 56px !important;\\n }\\n .v-application--is-rtl .me-xl-14 {\\n margin-left: 56px !important;\\n }\\n .v-application--is-ltr .me-xl-15 {\\n margin-right: 60px !important;\\n }\\n .v-application--is-rtl .me-xl-15 {\\n margin-left: 60px !important;\\n }\\n .v-application--is-ltr .me-xl-16 {\\n margin-right: 64px !important;\\n }\\n .v-application--is-rtl .me-xl-16 {\\n margin-left: 64px !important;\\n }\\n .v-application--is-ltr .me-xl-auto {\\n margin-right: auto !important;\\n }\\n .v-application--is-rtl .me-xl-auto {\\n margin-left: auto !important;\\n }\\n .v-application .ma-xl-n1 {\\n margin: -4px !important;\\n }\\n .v-application .ma-xl-n2 {\\n margin: -8px !important;\\n }\\n .v-application .ma-xl-n3 {\\n margin: -12px !important;\\n }\\n .v-application .ma-xl-n4 {\\n margin: -16px !important;\\n }\\n .v-application .ma-xl-n5 {\\n margin: -20px !important;\\n }\\n .v-application .ma-xl-n6 {\\n margin: -24px !important;\\n }\\n .v-application .ma-xl-n7 {\\n margin: -28px !important;\\n }\\n .v-application .ma-xl-n8 {\\n margin: -32px !important;\\n }\\n .v-application .ma-xl-n9 {\\n margin: -36px !important;\\n }\\n .v-application .ma-xl-n10 {\\n margin: -40px !important;\\n }\\n .v-application .ma-xl-n11 {\\n margin: -44px !important;\\n }\\n .v-application .ma-xl-n12 {\\n margin: -48px !important;\\n }\\n .v-application .ma-xl-n13 {\\n margin: -52px !important;\\n }\\n .v-application .ma-xl-n14 {\\n margin: -56px !important;\\n }\\n .v-application .ma-xl-n15 {\\n margin: -60px !important;\\n }\\n .v-application .ma-xl-n16 {\\n margin: -64px !important;\\n }\\n .v-application .mx-xl-n1 {\\n margin-right: -4px !important;\\n margin-left: -4px !important;\\n }\\n .v-application .mx-xl-n2 {\\n margin-right: -8px !important;\\n margin-left: -8px !important;\\n }\\n .v-application .mx-xl-n3 {\\n margin-right: -12px !important;\\n margin-left: -12px !important;\\n }\\n .v-application .mx-xl-n4 {\\n margin-right: -16px !important;\\n margin-left: -16px !important;\\n }\\n .v-application .mx-xl-n5 {\\n margin-right: -20px !important;\\n margin-left: -20px !important;\\n }\\n .v-application .mx-xl-n6 {\\n margin-right: -24px !important;\\n margin-left: -24px !important;\\n }\\n .v-application .mx-xl-n7 {\\n margin-right: -28px !important;\\n margin-left: -28px !important;\\n }\\n .v-application .mx-xl-n8 {\\n margin-right: -32px !important;\\n margin-left: -32px !important;\\n }\\n .v-application .mx-xl-n9 {\\n margin-right: -36px !important;\\n margin-left: -36px !important;\\n }\\n .v-application .mx-xl-n10 {\\n margin-right: -40px !important;\\n margin-left: -40px !important;\\n }\\n .v-application .mx-xl-n11 {\\n margin-right: -44px !important;\\n margin-left: -44px !important;\\n }\\n .v-application .mx-xl-n12 {\\n margin-right: -48px !important;\\n margin-left: -48px !important;\\n }\\n .v-application .mx-xl-n13 {\\n margin-right: -52px !important;\\n margin-left: -52px !important;\\n }\\n .v-application .mx-xl-n14 {\\n margin-right: -56px !important;\\n margin-left: -56px !important;\\n }\\n .v-application .mx-xl-n15 {\\n margin-right: -60px !important;\\n margin-left: -60px !important;\\n }\\n .v-application .mx-xl-n16 {\\n margin-right: -64px !important;\\n margin-left: -64px !important;\\n }\\n .v-application .my-xl-n1 {\\n margin-top: -4px !important;\\n margin-bottom: -4px !important;\\n }\\n .v-application .my-xl-n2 {\\n margin-top: -8px !important;\\n margin-bottom: -8px !important;\\n }\\n .v-application .my-xl-n3 {\\n margin-top: -12px !important;\\n margin-bottom: -12px !important;\\n }\\n .v-application .my-xl-n4 {\\n margin-top: -16px !important;\\n margin-bottom: -16px !important;\\n }\\n .v-application .my-xl-n5 {\\n margin-top: -20px !important;\\n margin-bottom: -20px !important;\\n }\\n .v-application .my-xl-n6 {\\n margin-top: -24px !important;\\n margin-bottom: -24px !important;\\n }\\n .v-application .my-xl-n7 {\\n margin-top: -28px !important;\\n margin-bottom: -28px !important;\\n }\\n .v-application .my-xl-n8 {\\n margin-top: -32px !important;\\n margin-bottom: -32px !important;\\n }\\n .v-application .my-xl-n9 {\\n margin-top: -36px !important;\\n margin-bottom: -36px !important;\\n }\\n .v-application .my-xl-n10 {\\n margin-top: -40px !important;\\n margin-bottom: -40px !important;\\n }\\n .v-application .my-xl-n11 {\\n margin-top: -44px !important;\\n margin-bottom: -44px !important;\\n }\\n .v-application .my-xl-n12 {\\n margin-top: -48px !important;\\n margin-bottom: -48px !important;\\n }\\n .v-application .my-xl-n13 {\\n margin-top: -52px !important;\\n margin-bottom: -52px !important;\\n }\\n .v-application .my-xl-n14 {\\n margin-top: -56px !important;\\n margin-bottom: -56px !important;\\n }\\n .v-application .my-xl-n15 {\\n margin-top: -60px !important;\\n margin-bottom: -60px !important;\\n }\\n .v-application .my-xl-n16 {\\n margin-top: -64px !important;\\n margin-bottom: -64px !important;\\n }\\n .v-application .mt-xl-n1 {\\n margin-top: -4px !important;\\n }\\n .v-application .mt-xl-n2 {\\n margin-top: -8px !important;\\n }\\n .v-application .mt-xl-n3 {\\n margin-top: -12px !important;\\n }\\n .v-application .mt-xl-n4 {\\n margin-top: -16px !important;\\n }\\n .v-application .mt-xl-n5 {\\n margin-top: -20px !important;\\n }\\n .v-application .mt-xl-n6 {\\n margin-top: -24px !important;\\n }\\n .v-application .mt-xl-n7 {\\n margin-top: -28px !important;\\n }\\n .v-application .mt-xl-n8 {\\n margin-top: -32px !important;\\n }\\n .v-application .mt-xl-n9 {\\n margin-top: -36px !important;\\n }\\n .v-application .mt-xl-n10 {\\n margin-top: -40px !important;\\n }\\n .v-application .mt-xl-n11 {\\n margin-top: -44px !important;\\n }\\n .v-application .mt-xl-n12 {\\n margin-top: -48px !important;\\n }\\n .v-application .mt-xl-n13 {\\n margin-top: -52px !important;\\n }\\n .v-application .mt-xl-n14 {\\n margin-top: -56px !important;\\n }\\n .v-application .mt-xl-n15 {\\n margin-top: -60px !important;\\n }\\n .v-application .mt-xl-n16 {\\n margin-top: -64px !important;\\n }\\n .v-application .mr-xl-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application .mr-xl-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application .mr-xl-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application .mr-xl-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application .mr-xl-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application .mr-xl-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application .mr-xl-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application .mr-xl-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application .mr-xl-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application .mr-xl-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application .mr-xl-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application .mr-xl-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application .mr-xl-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application .mr-xl-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application .mr-xl-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application .mr-xl-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application .mb-xl-n1 {\\n margin-bottom: -4px !important;\\n }\\n .v-application .mb-xl-n2 {\\n margin-bottom: -8px !important;\\n }\\n .v-application .mb-xl-n3 {\\n margin-bottom: -12px !important;\\n }\\n .v-application .mb-xl-n4 {\\n margin-bottom: -16px !important;\\n }\\n .v-application .mb-xl-n5 {\\n margin-bottom: -20px !important;\\n }\\n .v-application .mb-xl-n6 {\\n margin-bottom: -24px !important;\\n }\\n .v-application .mb-xl-n7 {\\n margin-bottom: -28px !important;\\n }\\n .v-application .mb-xl-n8 {\\n margin-bottom: -32px !important;\\n }\\n .v-application .mb-xl-n9 {\\n margin-bottom: -36px !important;\\n }\\n .v-application .mb-xl-n10 {\\n margin-bottom: -40px !important;\\n }\\n .v-application .mb-xl-n11 {\\n margin-bottom: -44px !important;\\n }\\n .v-application .mb-xl-n12 {\\n margin-bottom: -48px !important;\\n }\\n .v-application .mb-xl-n13 {\\n margin-bottom: -52px !important;\\n }\\n .v-application .mb-xl-n14 {\\n margin-bottom: -56px !important;\\n }\\n .v-application .mb-xl-n15 {\\n margin-bottom: -60px !important;\\n }\\n .v-application .mb-xl-n16 {\\n margin-bottom: -64px !important;\\n }\\n .v-application .ml-xl-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application .ml-xl-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application .ml-xl-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application .ml-xl-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application .ml-xl-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application .ml-xl-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application .ml-xl-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application .ml-xl-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application .ml-xl-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application .ml-xl-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application .ml-xl-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application .ml-xl-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application .ml-xl-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application .ml-xl-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application .ml-xl-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application .ml-xl-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application--is-ltr .ms-xl-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application--is-rtl .ms-xl-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application--is-ltr .ms-xl-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application--is-rtl .ms-xl-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application--is-ltr .ms-xl-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application--is-rtl .ms-xl-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application--is-ltr .ms-xl-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application--is-rtl .ms-xl-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application--is-ltr .ms-xl-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application--is-rtl .ms-xl-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application--is-ltr .ms-xl-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application--is-rtl .ms-xl-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application--is-ltr .ms-xl-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application--is-rtl .ms-xl-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application--is-ltr .ms-xl-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application--is-rtl .ms-xl-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application--is-ltr .ms-xl-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application--is-rtl .ms-xl-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application--is-ltr .ms-xl-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application--is-rtl .ms-xl-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application--is-ltr .ms-xl-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application--is-rtl .ms-xl-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application--is-ltr .ms-xl-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application--is-rtl .ms-xl-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application--is-ltr .ms-xl-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application--is-rtl .ms-xl-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application--is-ltr .ms-xl-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application--is-rtl .ms-xl-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application--is-ltr .ms-xl-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application--is-rtl .ms-xl-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application--is-ltr .ms-xl-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application--is-rtl .ms-xl-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application--is-ltr .me-xl-n1 {\\n margin-right: -4px !important;\\n }\\n .v-application--is-rtl .me-xl-n1 {\\n margin-left: -4px !important;\\n }\\n .v-application--is-ltr .me-xl-n2 {\\n margin-right: -8px !important;\\n }\\n .v-application--is-rtl .me-xl-n2 {\\n margin-left: -8px !important;\\n }\\n .v-application--is-ltr .me-xl-n3 {\\n margin-right: -12px !important;\\n }\\n .v-application--is-rtl .me-xl-n3 {\\n margin-left: -12px !important;\\n }\\n .v-application--is-ltr .me-xl-n4 {\\n margin-right: -16px !important;\\n }\\n .v-application--is-rtl .me-xl-n4 {\\n margin-left: -16px !important;\\n }\\n .v-application--is-ltr .me-xl-n5 {\\n margin-right: -20px !important;\\n }\\n .v-application--is-rtl .me-xl-n5 {\\n margin-left: -20px !important;\\n }\\n .v-application--is-ltr .me-xl-n6 {\\n margin-right: -24px !important;\\n }\\n .v-application--is-rtl .me-xl-n6 {\\n margin-left: -24px !important;\\n }\\n .v-application--is-ltr .me-xl-n7 {\\n margin-right: -28px !important;\\n }\\n .v-application--is-rtl .me-xl-n7 {\\n margin-left: -28px !important;\\n }\\n .v-application--is-ltr .me-xl-n8 {\\n margin-right: -32px !important;\\n }\\n .v-application--is-rtl .me-xl-n8 {\\n margin-left: -32px !important;\\n }\\n .v-application--is-ltr .me-xl-n9 {\\n margin-right: -36px !important;\\n }\\n .v-application--is-rtl .me-xl-n9 {\\n margin-left: -36px !important;\\n }\\n .v-application--is-ltr .me-xl-n10 {\\n margin-right: -40px !important;\\n }\\n .v-application--is-rtl .me-xl-n10 {\\n margin-left: -40px !important;\\n }\\n .v-application--is-ltr .me-xl-n11 {\\n margin-right: -44px !important;\\n }\\n .v-application--is-rtl .me-xl-n11 {\\n margin-left: -44px !important;\\n }\\n .v-application--is-ltr .me-xl-n12 {\\n margin-right: -48px !important;\\n }\\n .v-application--is-rtl .me-xl-n12 {\\n margin-left: -48px !important;\\n }\\n .v-application--is-ltr .me-xl-n13 {\\n margin-right: -52px !important;\\n }\\n .v-application--is-rtl .me-xl-n13 {\\n margin-left: -52px !important;\\n }\\n .v-application--is-ltr .me-xl-n14 {\\n margin-right: -56px !important;\\n }\\n .v-application--is-rtl .me-xl-n14 {\\n margin-left: -56px !important;\\n }\\n .v-application--is-ltr .me-xl-n15 {\\n margin-right: -60px !important;\\n }\\n .v-application--is-rtl .me-xl-n15 {\\n margin-left: -60px !important;\\n }\\n .v-application--is-ltr .me-xl-n16 {\\n margin-right: -64px !important;\\n }\\n .v-application--is-rtl .me-xl-n16 {\\n margin-left: -64px !important;\\n }\\n .v-application .pa-xl-0 {\\n padding: 0px !important;\\n }\\n .v-application .pa-xl-1 {\\n padding: 4px !important;\\n }\\n .v-application .pa-xl-2 {\\n padding: 8px !important;\\n }\\n .v-application .pa-xl-3 {\\n padding: 12px !important;\\n }\\n .v-application .pa-xl-4 {\\n padding: 16px !important;\\n }\\n .v-application .pa-xl-5 {\\n padding: 20px !important;\\n }\\n .v-application .pa-xl-6 {\\n padding: 24px !important;\\n }\\n .v-application .pa-xl-7 {\\n padding: 28px !important;\\n }\\n .v-application .pa-xl-8 {\\n padding: 32px !important;\\n }\\n .v-application .pa-xl-9 {\\n padding: 36px !important;\\n }\\n .v-application .pa-xl-10 {\\n padding: 40px !important;\\n }\\n .v-application .pa-xl-11 {\\n padding: 44px !important;\\n }\\n .v-application .pa-xl-12 {\\n padding: 48px !important;\\n }\\n .v-application .pa-xl-13 {\\n padding: 52px !important;\\n }\\n .v-application .pa-xl-14 {\\n padding: 56px !important;\\n }\\n .v-application .pa-xl-15 {\\n padding: 60px !important;\\n }\\n .v-application .pa-xl-16 {\\n padding: 64px !important;\\n }\\n .v-application .px-xl-0 {\\n padding-right: 0px !important;\\n padding-left: 0px !important;\\n }\\n .v-application .px-xl-1 {\\n padding-right: 4px !important;\\n padding-left: 4px !important;\\n }\\n .v-application .px-xl-2 {\\n padding-right: 8px !important;\\n padding-left: 8px !important;\\n }\\n .v-application .px-xl-3 {\\n padding-right: 12px !important;\\n padding-left: 12px !important;\\n }\\n .v-application .px-xl-4 {\\n padding-right: 16px !important;\\n padding-left: 16px !important;\\n }\\n .v-application .px-xl-5 {\\n padding-right: 20px !important;\\n padding-left: 20px !important;\\n }\\n .v-application .px-xl-6 {\\n padding-right: 24px !important;\\n padding-left: 24px !important;\\n }\\n .v-application .px-xl-7 {\\n padding-right: 28px !important;\\n padding-left: 28px !important;\\n }\\n .v-application .px-xl-8 {\\n padding-right: 32px !important;\\n padding-left: 32px !important;\\n }\\n .v-application .px-xl-9 {\\n padding-right: 36px !important;\\n padding-left: 36px !important;\\n }\\n .v-application .px-xl-10 {\\n padding-right: 40px !important;\\n padding-left: 40px !important;\\n }\\n .v-application .px-xl-11 {\\n padding-right: 44px !important;\\n padding-left: 44px !important;\\n }\\n .v-application .px-xl-12 {\\n padding-right: 48px !important;\\n padding-left: 48px !important;\\n }\\n .v-application .px-xl-13 {\\n padding-right: 52px !important;\\n padding-left: 52px !important;\\n }\\n .v-application .px-xl-14 {\\n padding-right: 56px !important;\\n padding-left: 56px !important;\\n }\\n .v-application .px-xl-15 {\\n padding-right: 60px !important;\\n padding-left: 60px !important;\\n }\\n .v-application .px-xl-16 {\\n padding-right: 64px !important;\\n padding-left: 64px !important;\\n }\\n .v-application .py-xl-0 {\\n padding-top: 0px !important;\\n padding-bottom: 0px !important;\\n }\\n .v-application .py-xl-1 {\\n padding-top: 4px !important;\\n padding-bottom: 4px !important;\\n }\\n .v-application .py-xl-2 {\\n padding-top: 8px !important;\\n padding-bottom: 8px !important;\\n }\\n .v-application .py-xl-3 {\\n padding-top: 12px !important;\\n padding-bottom: 12px !important;\\n }\\n .v-application .py-xl-4 {\\n padding-top: 16px !important;\\n padding-bottom: 16px !important;\\n }\\n .v-application .py-xl-5 {\\n padding-top: 20px !important;\\n padding-bottom: 20px !important;\\n }\\n .v-application .py-xl-6 {\\n padding-top: 24px !important;\\n padding-bottom: 24px !important;\\n }\\n .v-application .py-xl-7 {\\n padding-top: 28px !important;\\n padding-bottom: 28px !important;\\n }\\n .v-application .py-xl-8 {\\n padding-top: 32px !important;\\n padding-bottom: 32px !important;\\n }\\n .v-application .py-xl-9 {\\n padding-top: 36px !important;\\n padding-bottom: 36px !important;\\n }\\n .v-application .py-xl-10 {\\n padding-top: 40px !important;\\n padding-bottom: 40px !important;\\n }\\n .v-application .py-xl-11 {\\n padding-top: 44px !important;\\n padding-bottom: 44px !important;\\n }\\n .v-application .py-xl-12 {\\n padding-top: 48px !important;\\n padding-bottom: 48px !important;\\n }\\n .v-application .py-xl-13 {\\n padding-top: 52px !important;\\n padding-bottom: 52px !important;\\n }\\n .v-application .py-xl-14 {\\n padding-top: 56px !important;\\n padding-bottom: 56px !important;\\n }\\n .v-application .py-xl-15 {\\n padding-top: 60px !important;\\n padding-bottom: 60px !important;\\n }\\n .v-application .py-xl-16 {\\n padding-top: 64px !important;\\n padding-bottom: 64px !important;\\n }\\n .v-application .pt-xl-0 {\\n padding-top: 0px !important;\\n }\\n .v-application .pt-xl-1 {\\n padding-top: 4px !important;\\n }\\n .v-application .pt-xl-2 {\\n padding-top: 8px !important;\\n }\\n .v-application .pt-xl-3 {\\n padding-top: 12px !important;\\n }\\n .v-application .pt-xl-4 {\\n padding-top: 16px !important;\\n }\\n .v-application .pt-xl-5 {\\n padding-top: 20px !important;\\n }\\n .v-application .pt-xl-6 {\\n padding-top: 24px !important;\\n }\\n .v-application .pt-xl-7 {\\n padding-top: 28px !important;\\n }\\n .v-application .pt-xl-8 {\\n padding-top: 32px !important;\\n }\\n .v-application .pt-xl-9 {\\n padding-top: 36px !important;\\n }\\n .v-application .pt-xl-10 {\\n padding-top: 40px !important;\\n }\\n .v-application .pt-xl-11 {\\n padding-top: 44px !important;\\n }\\n .v-application .pt-xl-12 {\\n padding-top: 48px !important;\\n }\\n .v-application .pt-xl-13 {\\n padding-top: 52px !important;\\n }\\n .v-application .pt-xl-14 {\\n padding-top: 56px !important;\\n }\\n .v-application .pt-xl-15 {\\n padding-top: 60px !important;\\n }\\n .v-application .pt-xl-16 {\\n padding-top: 64px !important;\\n }\\n .v-application .pr-xl-0 {\\n padding-right: 0px !important;\\n }\\n .v-application .pr-xl-1 {\\n padding-right: 4px !important;\\n }\\n .v-application .pr-xl-2 {\\n padding-right: 8px !important;\\n }\\n .v-application .pr-xl-3 {\\n padding-right: 12px !important;\\n }\\n .v-application .pr-xl-4 {\\n padding-right: 16px !important;\\n }\\n .v-application .pr-xl-5 {\\n padding-right: 20px !important;\\n }\\n .v-application .pr-xl-6 {\\n padding-right: 24px !important;\\n }\\n .v-application .pr-xl-7 {\\n padding-right: 28px !important;\\n }\\n .v-application .pr-xl-8 {\\n padding-right: 32px !important;\\n }\\n .v-application .pr-xl-9 {\\n padding-right: 36px !important;\\n }\\n .v-application .pr-xl-10 {\\n padding-right: 40px !important;\\n }\\n .v-application .pr-xl-11 {\\n padding-right: 44px !important;\\n }\\n .v-application .pr-xl-12 {\\n padding-right: 48px !important;\\n }\\n .v-application .pr-xl-13 {\\n padding-right: 52px !important;\\n }\\n .v-application .pr-xl-14 {\\n padding-right: 56px !important;\\n }\\n .v-application .pr-xl-15 {\\n padding-right: 60px !important;\\n }\\n .v-application .pr-xl-16 {\\n padding-right: 64px !important;\\n }\\n .v-application .pb-xl-0 {\\n padding-bottom: 0px !important;\\n }\\n .v-application .pb-xl-1 {\\n padding-bottom: 4px !important;\\n }\\n .v-application .pb-xl-2 {\\n padding-bottom: 8px !important;\\n }\\n .v-application .pb-xl-3 {\\n padding-bottom: 12px !important;\\n }\\n .v-application .pb-xl-4 {\\n padding-bottom: 16px !important;\\n }\\n .v-application .pb-xl-5 {\\n padding-bottom: 20px !important;\\n }\\n .v-application .pb-xl-6 {\\n padding-bottom: 24px !important;\\n }\\n .v-application .pb-xl-7 {\\n padding-bottom: 28px !important;\\n }\\n .v-application .pb-xl-8 {\\n padding-bottom: 32px !important;\\n }\\n .v-application .pb-xl-9 {\\n padding-bottom: 36px !important;\\n }\\n .v-application .pb-xl-10 {\\n padding-bottom: 40px !important;\\n }\\n .v-application .pb-xl-11 {\\n padding-bottom: 44px !important;\\n }\\n .v-application .pb-xl-12 {\\n padding-bottom: 48px !important;\\n }\\n .v-application .pb-xl-13 {\\n padding-bottom: 52px !important;\\n }\\n .v-application .pb-xl-14 {\\n padding-bottom: 56px !important;\\n }\\n .v-application .pb-xl-15 {\\n padding-bottom: 60px !important;\\n }\\n .v-application .pb-xl-16 {\\n padding-bottom: 64px !important;\\n }\\n .v-application .pl-xl-0 {\\n padding-left: 0px !important;\\n }\\n .v-application .pl-xl-1 {\\n padding-left: 4px !important;\\n }\\n .v-application .pl-xl-2 {\\n padding-left: 8px !important;\\n }\\n .v-application .pl-xl-3 {\\n padding-left: 12px !important;\\n }\\n .v-application .pl-xl-4 {\\n padding-left: 16px !important;\\n }\\n .v-application .pl-xl-5 {\\n padding-left: 20px !important;\\n }\\n .v-application .pl-xl-6 {\\n padding-left: 24px !important;\\n }\\n .v-application .pl-xl-7 {\\n padding-left: 28px !important;\\n }\\n .v-application .pl-xl-8 {\\n padding-left: 32px !important;\\n }\\n .v-application .pl-xl-9 {\\n padding-left: 36px !important;\\n }\\n .v-application .pl-xl-10 {\\n padding-left: 40px !important;\\n }\\n .v-application .pl-xl-11 {\\n padding-left: 44px !important;\\n }\\n .v-application .pl-xl-12 {\\n padding-left: 48px !important;\\n }\\n .v-application .pl-xl-13 {\\n padding-left: 52px !important;\\n }\\n .v-application .pl-xl-14 {\\n padding-left: 56px !important;\\n }\\n .v-application .pl-xl-15 {\\n padding-left: 60px !important;\\n }\\n .v-application .pl-xl-16 {\\n padding-left: 64px !important;\\n }\\n .v-application--is-ltr .ps-xl-0 {\\n padding-left: 0px !important;\\n }\\n .v-application--is-rtl .ps-xl-0 {\\n padding-right: 0px !important;\\n }\\n .v-application--is-ltr .ps-xl-1 {\\n padding-left: 4px !important;\\n }\\n .v-application--is-rtl .ps-xl-1 {\\n padding-right: 4px !important;\\n }\\n .v-application--is-ltr .ps-xl-2 {\\n padding-left: 8px !important;\\n }\\n .v-application--is-rtl .ps-xl-2 {\\n padding-right: 8px !important;\\n }\\n .v-application--is-ltr .ps-xl-3 {\\n padding-left: 12px !important;\\n }\\n .v-application--is-rtl .ps-xl-3 {\\n padding-right: 12px !important;\\n }\\n .v-application--is-ltr .ps-xl-4 {\\n padding-left: 16px !important;\\n }\\n .v-application--is-rtl .ps-xl-4 {\\n padding-right: 16px !important;\\n }\\n .v-application--is-ltr .ps-xl-5 {\\n padding-left: 20px !important;\\n }\\n .v-application--is-rtl .ps-xl-5 {\\n padding-right: 20px !important;\\n }\\n .v-application--is-ltr .ps-xl-6 {\\n padding-left: 24px !important;\\n }\\n .v-application--is-rtl .ps-xl-6 {\\n padding-right: 24px !important;\\n }\\n .v-application--is-ltr .ps-xl-7 {\\n padding-left: 28px !important;\\n }\\n .v-application--is-rtl .ps-xl-7 {\\n padding-right: 28px !important;\\n }\\n .v-application--is-ltr .ps-xl-8 {\\n padding-left: 32px !important;\\n }\\n .v-application--is-rtl .ps-xl-8 {\\n padding-right: 32px !important;\\n }\\n .v-application--is-ltr .ps-xl-9 {\\n padding-left: 36px !important;\\n }\\n .v-application--is-rtl .ps-xl-9 {\\n padding-right: 36px !important;\\n }\\n .v-application--is-ltr .ps-xl-10 {\\n padding-left: 40px !important;\\n }\\n .v-application--is-rtl .ps-xl-10 {\\n padding-right: 40px !important;\\n }\\n .v-application--is-ltr .ps-xl-11 {\\n padding-left: 44px !important;\\n }\\n .v-application--is-rtl .ps-xl-11 {\\n padding-right: 44px !important;\\n }\\n .v-application--is-ltr .ps-xl-12 {\\n padding-left: 48px !important;\\n }\\n .v-application--is-rtl .ps-xl-12 {\\n padding-right: 48px !important;\\n }\\n .v-application--is-ltr .ps-xl-13 {\\n padding-left: 52px !important;\\n }\\n .v-application--is-rtl .ps-xl-13 {\\n padding-right: 52px !important;\\n }\\n .v-application--is-ltr .ps-xl-14 {\\n padding-left: 56px !important;\\n }\\n .v-application--is-rtl .ps-xl-14 {\\n padding-right: 56px !important;\\n }\\n .v-application--is-ltr .ps-xl-15 {\\n padding-left: 60px !important;\\n }\\n .v-application--is-rtl .ps-xl-15 {\\n padding-right: 60px !important;\\n }\\n .v-application--is-ltr .ps-xl-16 {\\n padding-left: 64px !important;\\n }\\n .v-application--is-rtl .ps-xl-16 {\\n padding-right: 64px !important;\\n }\\n .v-application--is-ltr .pe-xl-0 {\\n padding-right: 0px !important;\\n }\\n .v-application--is-rtl .pe-xl-0 {\\n padding-left: 0px !important;\\n }\\n .v-application--is-ltr .pe-xl-1 {\\n padding-right: 4px !important;\\n }\\n .v-application--is-rtl .pe-xl-1 {\\n padding-left: 4px !important;\\n }\\n .v-application--is-ltr .pe-xl-2 {\\n padding-right: 8px !important;\\n }\\n .v-application--is-rtl .pe-xl-2 {\\n padding-left: 8px !important;\\n }\\n .v-application--is-ltr .pe-xl-3 {\\n padding-right: 12px !important;\\n }\\n .v-application--is-rtl .pe-xl-3 {\\n padding-left: 12px !important;\\n }\\n .v-application--is-ltr .pe-xl-4 {\\n padding-right: 16px !important;\\n }\\n .v-application--is-rtl .pe-xl-4 {\\n padding-left: 16px !important;\\n }\\n .v-application--is-ltr .pe-xl-5 {\\n padding-right: 20px !important;\\n }\\n .v-application--is-rtl .pe-xl-5 {\\n padding-left: 20px !important;\\n }\\n .v-application--is-ltr .pe-xl-6 {\\n padding-right: 24px !important;\\n }\\n .v-application--is-rtl .pe-xl-6 {\\n padding-left: 24px !important;\\n }\\n .v-application--is-ltr .pe-xl-7 {\\n padding-right: 28px !important;\\n }\\n .v-application--is-rtl .pe-xl-7 {\\n padding-left: 28px !important;\\n }\\n .v-application--is-ltr .pe-xl-8 {\\n padding-right: 32px !important;\\n }\\n .v-application--is-rtl .pe-xl-8 {\\n padding-left: 32px !important;\\n }\\n .v-application--is-ltr .pe-xl-9 {\\n padding-right: 36px !important;\\n }\\n .v-application--is-rtl .pe-xl-9 {\\n padding-left: 36px !important;\\n }\\n .v-application--is-ltr .pe-xl-10 {\\n padding-right: 40px !important;\\n }\\n .v-application--is-rtl .pe-xl-10 {\\n padding-left: 40px !important;\\n }\\n .v-application--is-ltr .pe-xl-11 {\\n padding-right: 44px !important;\\n }\\n .v-application--is-rtl .pe-xl-11 {\\n padding-left: 44px !important;\\n }\\n .v-application--is-ltr .pe-xl-12 {\\n padding-right: 48px !important;\\n }\\n .v-application--is-rtl .pe-xl-12 {\\n padding-left: 48px !important;\\n }\\n .v-application--is-ltr .pe-xl-13 {\\n padding-right: 52px !important;\\n }\\n .v-application--is-rtl .pe-xl-13 {\\n padding-left: 52px !important;\\n }\\n .v-application--is-ltr .pe-xl-14 {\\n padding-right: 56px !important;\\n }\\n .v-application--is-rtl .pe-xl-14 {\\n padding-left: 56px !important;\\n }\\n .v-application--is-ltr .pe-xl-15 {\\n padding-right: 60px !important;\\n }\\n .v-application--is-rtl .pe-xl-15 {\\n padding-left: 60px !important;\\n }\\n .v-application--is-ltr .pe-xl-16 {\\n padding-right: 64px !important;\\n }\\n .v-application--is-rtl .pe-xl-16 {\\n padding-left: 64px !important;\\n }\\n .v-application .text-xl-left {\\n text-align: left !important;\\n }\\n .v-application .text-xl-right {\\n text-align: right !important;\\n }\\n .v-application .text-xl-center {\\n text-align: center !important;\\n }\\n .v-application .text-xl-justify {\\n text-align: justify !important;\\n }\\n .v-application .text-xl-start {\\n text-align: start !important;\\n }\\n .v-application .text-xl-end {\\n text-align: end !important;\\n }\\n .v-application .text-xl-h1 {\\n font-size: 6rem !important;\\n font-weight: 300;\\n line-height: 6rem;\\n letter-spacing: -0.015625em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-h2 {\\n font-size: 3.75rem !important;\\n font-weight: 300;\\n line-height: 3.75rem;\\n letter-spacing: -0.0083333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-h3 {\\n font-size: 3rem !important;\\n font-weight: 400;\\n line-height: 3.125rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-h4 {\\n font-size: 2.125rem !important;\\n font-weight: 400;\\n line-height: 2.5rem;\\n letter-spacing: 0.0073529412em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-h5 {\\n font-size: 1.5rem !important;\\n font-weight: 400;\\n line-height: 2rem;\\n letter-spacing: normal !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-h6 {\\n font-size: 1.25rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.0125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-subtitle-1 {\\n font-size: 1rem !important;\\n font-weight: normal;\\n line-height: 1.75rem;\\n letter-spacing: 0.009375em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-subtitle-2 {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 1.375rem;\\n letter-spacing: 0.0071428571em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-body-1 {\\n font-size: 1rem !important;\\n font-weight: 400;\\n line-height: 1.5rem;\\n letter-spacing: 0.03125em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-body-2 {\\n font-size: 0.875rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0178571429em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-button {\\n font-size: 0.875rem !important;\\n font-weight: 500;\\n line-height: 2.25rem;\\n letter-spacing: 0.0892857143em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n }\\n .v-application .text-xl-caption {\\n font-size: 0.75rem !important;\\n font-weight: 400;\\n line-height: 1.25rem;\\n letter-spacing: 0.0333333333em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n }\\n .v-application .text-xl-overline {\\n font-size: 0.75rem !important;\\n font-weight: 500;\\n line-height: 2rem;\\n letter-spacing: 0.1666666667em !important;\\n font-family: \\\"Roboto\\\", Arial, sans-serif !important;\\n text-transform: uppercase !important;\\n }\\n}\\n@media print {\\n .v-application .d-print-none {\\n display: none !important;\\n }\\n .v-application .d-print-inline {\\n display: inline !important;\\n }\\n .v-application .d-print-inline-block {\\n display: inline-block !important;\\n }\\n .v-application .d-print-block {\\n display: block !important;\\n }\\n .v-application .d-print-table {\\n display: table !important;\\n }\\n .v-application .d-print-table-row {\\n display: table-row !important;\\n }\\n .v-application .d-print-table-cell {\\n display: table-cell !important;\\n }\\n .v-application .d-print-flex {\\n display: flex !important;\\n }\\n .v-application .d-print-inline-flex {\\n display: inline-flex !important;\\n }\\n .v-application .float-print-none {\\n float: none !important;\\n }\\n .v-application .float-print-left {\\n float: left !important;\\n }\\n .v-application .float-print-right {\\n float: right !important;\\n }\\n .v-application--is-rtl .float-print-end {\\n float: left !important;\\n }\\n .v-application--is-rtl .float-print-start {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-print-end {\\n float: right !important;\\n }\\n .v-application--is-ltr .float-print-start {\\n float: left !important;\\n }\\n}\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./node_modules/vuetify/src/styles/main.sass?./node_modules/css-loader/dist/cjs.js??ref--10-oneOf-3-1!./node_modules/postcss-loader/src??ref--10-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--10-oneOf-3-3"); /***/ }), /***/ "./node_modules/css-loader/dist/runtime/api.js": /*!*****************************************************!*\ !*** ./node_modules/css-loader/dist/runtime/api.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \" {\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery, dedupe) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n if (dedupe) {\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = [].concat(modules[_i]);\n\n if (dedupe && alreadyImportedModules[item[0]]) {\n // eslint-disable-next-line no-continue\n continue;\n }\n\n if (mediaQuery) {\n if (!item[2]) {\n item[2] = mediaQuery;\n } else {\n item[2] = \"\".concat(mediaQuery, \" and \").concat(item[2]);\n }\n }\n\n list.push(item);\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot || '').concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}\n\n//# sourceURL=webpack:///./node_modules/css-loader/dist/runtime/api.js?"); /***/ }), /***/ "./node_modules/define-data-property/index.js": /*!****************************************************!*\ !*** ./node_modules/define-data-property/index.js ***! \****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar hasPropertyDescriptors = __webpack_require__(/*! has-property-descriptors */ \"./node_modules/has-property-descriptors/index.js\")();\n\nvar GetIntrinsic = __webpack_require__(/*! get-intrinsic */ \"./node_modules/get-intrinsic/index.js\");\n\nvar $defineProperty = hasPropertyDescriptors && GetIntrinsic('%Object.defineProperty%', true);\nif ($defineProperty) {\n\ttry {\n\t\t$defineProperty({}, 'a', { value: 1 });\n\t} catch (e) {\n\t\t// IE 8 has a broken defineProperty\n\t\t$defineProperty = false;\n\t}\n}\n\nvar $SyntaxError = GetIntrinsic('%SyntaxError%');\nvar $TypeError = GetIntrinsic('%TypeError%');\n\nvar gopd = __webpack_require__(/*! gopd */ \"./node_modules/gopd/index.js\");\n\n/** @type {(obj: Record, property: PropertyKey, value: unknown, nonEnumerable?: boolean | null, nonWritable?: boolean | null, nonConfigurable?: boolean | null, loose?: boolean) => void} */\nmodule.exports = function defineDataProperty(\n\tobj,\n\tproperty,\n\tvalue\n) {\n\tif (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) {\n\t\tthrow new $TypeError('`obj` must be an object or a function`');\n\t}\n\tif (typeof property !== 'string' && typeof property !== 'symbol') {\n\t\tthrow new $TypeError('`property` must be a string or a symbol`');\n\t}\n\tif (arguments.length > 3 && typeof arguments[3] !== 'boolean' && arguments[3] !== null) {\n\t\tthrow new $TypeError('`nonEnumerable`, if provided, must be a boolean or null');\n\t}\n\tif (arguments.length > 4 && typeof arguments[4] !== 'boolean' && arguments[4] !== null) {\n\t\tthrow new $TypeError('`nonWritable`, if provided, must be a boolean or null');\n\t}\n\tif (arguments.length > 5 && typeof arguments[5] !== 'boolean' && arguments[5] !== null) {\n\t\tthrow new $TypeError('`nonConfigurable`, if provided, must be a boolean or null');\n\t}\n\tif (arguments.length > 6 && typeof arguments[6] !== 'boolean') {\n\t\tthrow new $TypeError('`loose`, if provided, must be a boolean');\n\t}\n\n\tvar nonEnumerable = arguments.length > 3 ? arguments[3] : null;\n\tvar nonWritable = arguments.length > 4 ? arguments[4] : null;\n\tvar nonConfigurable = arguments.length > 5 ? arguments[5] : null;\n\tvar loose = arguments.length > 6 ? arguments[6] : false;\n\n\t/* @type {false | TypedPropertyDescriptor} */\n\tvar desc = !!gopd && gopd(obj, property);\n\n\tif ($defineProperty) {\n\t\t$defineProperty(obj, property, {\n\t\t\tconfigurable: nonConfigurable === null && desc ? desc.configurable : !nonConfigurable,\n\t\t\tenumerable: nonEnumerable === null && desc ? desc.enumerable : !nonEnumerable,\n\t\t\tvalue: value,\n\t\t\twritable: nonWritable === null && desc ? desc.writable : !nonWritable\n\t\t});\n\t} else if (loose || (!nonEnumerable && !nonWritable && !nonConfigurable)) {\n\t\t// must fall back to [[Set]], and was not explicitly asked to make non-enumerable, non-writable, or non-configurable\n\t\tobj[property] = value; // eslint-disable-line no-param-reassign\n\t} else {\n\t\tthrow new $SyntaxError('This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.');\n\t}\n};\n\n\n//# sourceURL=webpack:///./node_modules/define-data-property/index.js?"); /***/ }), /***/ "./node_modules/events/events.js": /*!***************************************!*\ !*** ./node_modules/events/events.js ***! \***************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n\nvar R = typeof Reflect === 'object' ? Reflect : null\nvar ReflectApply = R && typeof R.apply === 'function'\n ? R.apply\n : function ReflectApply(target, receiver, args) {\n return Function.prototype.apply.call(target, receiver, args);\n }\n\nvar ReflectOwnKeys\nif (R && typeof R.ownKeys === 'function') {\n ReflectOwnKeys = R.ownKeys\n} else if (Object.getOwnPropertySymbols) {\n ReflectOwnKeys = function ReflectOwnKeys(target) {\n return Object.getOwnPropertyNames(target)\n .concat(Object.getOwnPropertySymbols(target));\n };\n} else {\n ReflectOwnKeys = function ReflectOwnKeys(target) {\n return Object.getOwnPropertyNames(target);\n };\n}\n\nfunction ProcessEmitWarning(warning) {\n if (console && console.warn) console.warn(warning);\n}\n\nvar NumberIsNaN = Number.isNaN || function NumberIsNaN(value) {\n return value !== value;\n}\n\nfunction EventEmitter() {\n EventEmitter.init.call(this);\n}\nmodule.exports = EventEmitter;\nmodule.exports.once = once;\n\n// Backwards-compat with node 0.10.x\nEventEmitter.EventEmitter = EventEmitter;\n\nEventEmitter.prototype._events = undefined;\nEventEmitter.prototype._eventsCount = 0;\nEventEmitter.prototype._maxListeners = undefined;\n\n// By default EventEmitters will print a warning if more than 10 listeners are\n// added to it. This is a useful default which helps finding memory leaks.\nvar defaultMaxListeners = 10;\n\nfunction checkListener(listener) {\n if (typeof listener !== 'function') {\n throw new TypeError('The \"listener\" argument must be of type Function. Received type ' + typeof listener);\n }\n}\n\nObject.defineProperty(EventEmitter, 'defaultMaxListeners', {\n enumerable: true,\n get: function() {\n return defaultMaxListeners;\n },\n set: function(arg) {\n if (typeof arg !== 'number' || arg < 0 || NumberIsNaN(arg)) {\n throw new RangeError('The value of \"defaultMaxListeners\" is out of range. It must be a non-negative number. Received ' + arg + '.');\n }\n defaultMaxListeners = arg;\n }\n});\n\nEventEmitter.init = function() {\n\n if (this._events === undefined ||\n this._events === Object.getPrototypeOf(this)._events) {\n this._events = Object.create(null);\n this._eventsCount = 0;\n }\n\n this._maxListeners = this._maxListeners || undefined;\n};\n\n// Obviously not all Emitters should be limited to 10. This function allows\n// that to be increased. Set to zero for unlimited.\nEventEmitter.prototype.setMaxListeners = function setMaxListeners(n) {\n if (typeof n !== 'number' || n < 0 || NumberIsNaN(n)) {\n throw new RangeError('The value of \"n\" is out of range. It must be a non-negative number. Received ' + n + '.');\n }\n this._maxListeners = n;\n return this;\n};\n\nfunction _getMaxListeners(that) {\n if (that._maxListeners === undefined)\n return EventEmitter.defaultMaxListeners;\n return that._maxListeners;\n}\n\nEventEmitter.prototype.getMaxListeners = function getMaxListeners() {\n return _getMaxListeners(this);\n};\n\nEventEmitter.prototype.emit = function emit(type) {\n var args = [];\n for (var i = 1; i < arguments.length; i++) args.push(arguments[i]);\n var doError = (type === 'error');\n\n var events = this._events;\n if (events !== undefined)\n doError = (doError && events.error === undefined);\n else if (!doError)\n return false;\n\n // If there is no 'error' event listener then throw.\n if (doError) {\n var er;\n if (args.length > 0)\n er = args[0];\n if (er instanceof Error) {\n // Note: The comments on the `throw` lines are intentional, they show\n // up in Node's output if this results in an unhandled exception.\n throw er; // Unhandled 'error' event\n }\n // At least give some kind of context to the user\n var err = new Error('Unhandled error.' + (er ? ' (' + er.message + ')' : ''));\n err.context = er;\n throw err; // Unhandled 'error' event\n }\n\n var handler = events[type];\n\n if (handler === undefined)\n return false;\n\n if (typeof handler === 'function') {\n ReflectApply(handler, this, args);\n } else {\n var len = handler.length;\n var listeners = arrayClone(handler, len);\n for (var i = 0; i < len; ++i)\n ReflectApply(listeners[i], this, args);\n }\n\n return true;\n};\n\nfunction _addListener(target, type, listener, prepend) {\n var m;\n var events;\n var existing;\n\n checkListener(listener);\n\n events = target._events;\n if (events === undefined) {\n events = target._events = Object.create(null);\n target._eventsCount = 0;\n } else {\n // To avoid recursion in the case that type === \"newListener\"! Before\n // adding it to the listeners, first emit \"newListener\".\n if (events.newListener !== undefined) {\n target.emit('newListener', type,\n listener.listener ? listener.listener : listener);\n\n // Re-assign `events` because a newListener handler could have caused the\n // this._events to be assigned to a new object\n events = target._events;\n }\n existing = events[type];\n }\n\n if (existing === undefined) {\n // Optimize the case of one listener. Don't need the extra array object.\n existing = events[type] = listener;\n ++target._eventsCount;\n } else {\n if (typeof existing === 'function') {\n // Adding the second element, need to change to array.\n existing = events[type] =\n prepend ? [listener, existing] : [existing, listener];\n // If we've already got an array, just append.\n } else if (prepend) {\n existing.unshift(listener);\n } else {\n existing.push(listener);\n }\n\n // Check for listener leak\n m = _getMaxListeners(target);\n if (m > 0 && existing.length > m && !existing.warned) {\n existing.warned = true;\n // No error code for this since it is a Warning\n // eslint-disable-next-line no-restricted-syntax\n var w = new Error('Possible EventEmitter memory leak detected. ' +\n existing.length + ' ' + String(type) + ' listeners ' +\n 'added. Use emitter.setMaxListeners() to ' +\n 'increase limit');\n w.name = 'MaxListenersExceededWarning';\n w.emitter = target;\n w.type = type;\n w.count = existing.length;\n ProcessEmitWarning(w);\n }\n }\n\n return target;\n}\n\nEventEmitter.prototype.addListener = function addListener(type, listener) {\n return _addListener(this, type, listener, false);\n};\n\nEventEmitter.prototype.on = EventEmitter.prototype.addListener;\n\nEventEmitter.prototype.prependListener =\n function prependListener(type, listener) {\n return _addListener(this, type, listener, true);\n };\n\nfunction onceWrapper() {\n if (!this.fired) {\n this.target.removeListener(this.type, this.wrapFn);\n this.fired = true;\n if (arguments.length === 0)\n return this.listener.call(this.target);\n return this.listener.apply(this.target, arguments);\n }\n}\n\nfunction _onceWrap(target, type, listener) {\n var state = { fired: false, wrapFn: undefined, target: target, type: type, listener: listener };\n var wrapped = onceWrapper.bind(state);\n wrapped.listener = listener;\n state.wrapFn = wrapped;\n return wrapped;\n}\n\nEventEmitter.prototype.once = function once(type, listener) {\n checkListener(listener);\n this.on(type, _onceWrap(this, type, listener));\n return this;\n};\n\nEventEmitter.prototype.prependOnceListener =\n function prependOnceListener(type, listener) {\n checkListener(listener);\n this.prependListener(type, _onceWrap(this, type, listener));\n return this;\n };\n\n// Emits a 'removeListener' event if and only if the listener was removed.\nEventEmitter.prototype.removeListener =\n function removeListener(type, listener) {\n var list, events, position, i, originalListener;\n\n checkListener(listener);\n\n events = this._events;\n if (events === undefined)\n return this;\n\n list = events[type];\n if (list === undefined)\n return this;\n\n if (list === listener || list.listener === listener) {\n if (--this._eventsCount === 0)\n this._events = Object.create(null);\n else {\n delete events[type];\n if (events.removeListener)\n this.emit('removeListener', type, list.listener || listener);\n }\n } else if (typeof list !== 'function') {\n position = -1;\n\n for (i = list.length - 1; i >= 0; i--) {\n if (list[i] === listener || list[i].listener === listener) {\n originalListener = list[i].listener;\n position = i;\n break;\n }\n }\n\n if (position < 0)\n return this;\n\n if (position === 0)\n list.shift();\n else {\n spliceOne(list, position);\n }\n\n if (list.length === 1)\n events[type] = list[0];\n\n if (events.removeListener !== undefined)\n this.emit('removeListener', type, originalListener || listener);\n }\n\n return this;\n };\n\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\n\nEventEmitter.prototype.removeAllListeners =\n function removeAllListeners(type) {\n var listeners, events, i;\n\n events = this._events;\n if (events === undefined)\n return this;\n\n // not listening for removeListener, no need to emit\n if (events.removeListener === undefined) {\n if (arguments.length === 0) {\n this._events = Object.create(null);\n this._eventsCount = 0;\n } else if (events[type] !== undefined) {\n if (--this._eventsCount === 0)\n this._events = Object.create(null);\n else\n delete events[type];\n }\n return this;\n }\n\n // emit removeListener for all listeners on all events\n if (arguments.length === 0) {\n var keys = Object.keys(events);\n var key;\n for (i = 0; i < keys.length; ++i) {\n key = keys[i];\n if (key === 'removeListener') continue;\n this.removeAllListeners(key);\n }\n this.removeAllListeners('removeListener');\n this._events = Object.create(null);\n this._eventsCount = 0;\n return this;\n }\n\n listeners = events[type];\n\n if (typeof listeners === 'function') {\n this.removeListener(type, listeners);\n } else if (listeners !== undefined) {\n // LIFO order\n for (i = listeners.length - 1; i >= 0; i--) {\n this.removeListener(type, listeners[i]);\n }\n }\n\n return this;\n };\n\nfunction _listeners(target, type, unwrap) {\n var events = target._events;\n\n if (events === undefined)\n return [];\n\n var evlistener = events[type];\n if (evlistener === undefined)\n return [];\n\n if (typeof evlistener === 'function')\n return unwrap ? [evlistener.listener || evlistener] : [evlistener];\n\n return unwrap ?\n unwrapListeners(evlistener) : arrayClone(evlistener, evlistener.length);\n}\n\nEventEmitter.prototype.listeners = function listeners(type) {\n return _listeners(this, type, true);\n};\n\nEventEmitter.prototype.rawListeners = function rawListeners(type) {\n return _listeners(this, type, false);\n};\n\nEventEmitter.listenerCount = function(emitter, type) {\n if (typeof emitter.listenerCount === 'function') {\n return emitter.listenerCount(type);\n } else {\n return listenerCount.call(emitter, type);\n }\n};\n\nEventEmitter.prototype.listenerCount = listenerCount;\nfunction listenerCount(type) {\n var events = this._events;\n\n if (events !== undefined) {\n var evlistener = events[type];\n\n if (typeof evlistener === 'function') {\n return 1;\n } else if (evlistener !== undefined) {\n return evlistener.length;\n }\n }\n\n return 0;\n}\n\nEventEmitter.prototype.eventNames = function eventNames() {\n return this._eventsCount > 0 ? ReflectOwnKeys(this._events) : [];\n};\n\nfunction arrayClone(arr, n) {\n var copy = new Array(n);\n for (var i = 0; i < n; ++i)\n copy[i] = arr[i];\n return copy;\n}\n\nfunction spliceOne(list, index) {\n for (; index + 1 < list.length; index++)\n list[index] = list[index + 1];\n list.pop();\n}\n\nfunction unwrapListeners(arr) {\n var ret = new Array(arr.length);\n for (var i = 0; i < ret.length; ++i) {\n ret[i] = arr[i].listener || arr[i];\n }\n return ret;\n}\n\nfunction once(emitter, name) {\n return new Promise(function (resolve, reject) {\n function errorListener(err) {\n emitter.removeListener(name, resolver);\n reject(err);\n }\n\n function resolver() {\n if (typeof emitter.removeListener === 'function') {\n emitter.removeListener('error', errorListener);\n }\n resolve([].slice.call(arguments));\n };\n\n eventTargetAgnosticAddListener(emitter, name, resolver, { once: true });\n if (name !== 'error') {\n addErrorHandlerIfEventEmitter(emitter, errorListener, { once: true });\n }\n });\n}\n\nfunction addErrorHandlerIfEventEmitter(emitter, handler, flags) {\n if (typeof emitter.on === 'function') {\n eventTargetAgnosticAddListener(emitter, 'error', handler, flags);\n }\n}\n\nfunction eventTargetAgnosticAddListener(emitter, name, listener, flags) {\n if (typeof emitter.on === 'function') {\n if (flags.once) {\n emitter.once(name, listener);\n } else {\n emitter.on(name, listener);\n }\n } else if (typeof emitter.addEventListener === 'function') {\n // EventTarget does not have `error` event semantics like Node\n // EventEmitters, we do not listen for `error` events here.\n emitter.addEventListener(name, function wrapListener(arg) {\n // IE does not have builtin `{ once: true }` support so we\n // have to do it manually.\n if (flags.once) {\n emitter.removeEventListener(name, wrapListener);\n }\n listener(arg);\n });\n } else {\n throw new TypeError('The \"emitter\" argument must be of type EventEmitter. Received type ' + typeof emitter);\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/events/events.js?"); /***/ }), /***/ "./node_modules/fast-xml-parser/src/json2xml.js": /*!******************************************************!*\ !*** ./node_modules/fast-xml-parser/src/json2xml.js ***! \******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n//parse Empty Node as self closing node\nconst buildOptions = __webpack_require__(/*! ./util */ \"./node_modules/fast-xml-parser/src/util.js\").buildOptions;\n\nconst defaultOptions = {\n attributeNamePrefix: '@_',\n attrNodeName: false,\n textNodeName: '#text',\n ignoreAttributes: true,\n cdataTagName: false,\n cdataPositionChar: '\\\\c',\n format: false,\n indentBy: ' ',\n supressEmptyNode: false,\n tagValueProcessor: function(a) {\n return a;\n },\n attrValueProcessor: function(a) {\n return a;\n },\n};\n\nconst props = [\n 'attributeNamePrefix',\n 'attrNodeName',\n 'textNodeName',\n 'ignoreAttributes',\n 'cdataTagName',\n 'cdataPositionChar',\n 'format',\n 'indentBy',\n 'supressEmptyNode',\n 'tagValueProcessor',\n 'attrValueProcessor',\n 'rootNodeName', //when array as root\n];\n\nfunction Parser(options) {\n this.options = buildOptions(options, defaultOptions, props);\n if (this.options.ignoreAttributes || this.options.attrNodeName) {\n this.isAttribute = function(/*a*/) {\n return false;\n };\n } else {\n this.attrPrefixLen = this.options.attributeNamePrefix.length;\n this.isAttribute = isAttribute;\n }\n if (this.options.cdataTagName) {\n this.isCDATA = isCDATA;\n } else {\n this.isCDATA = function(/*a*/) {\n return false;\n };\n }\n this.replaceCDATAstr = replaceCDATAstr;\n this.replaceCDATAarr = replaceCDATAarr;\n\n this.processTextOrObjNode = processTextOrObjNode\n\n if (this.options.format) {\n this.indentate = indentate;\n this.tagEndChar = '>\\n';\n this.newLine = '\\n';\n } else {\n this.indentate = function() {\n return '';\n };\n this.tagEndChar = '>';\n this.newLine = '';\n }\n\n if (this.options.supressEmptyNode) {\n this.buildTextNode = buildEmptyTextNode;\n this.buildObjNode = buildEmptyObjNode;\n } else {\n this.buildTextNode = buildTextValNode;\n this.buildObjNode = buildObjectNode;\n }\n\n this.buildTextValNode = buildTextValNode;\n this.buildObjectNode = buildObjectNode;\n}\n\nParser.prototype.parse = function(jObj) {\n if(Array.isArray(jObj) && this.options.rootNodeName && this.options.rootNodeName.length > 1){\n jObj = {\n [this.options.rootNodeName] : jObj\n }\n }\n return this.j2x(jObj, 0).val;\n};\n\nParser.prototype.j2x = function(jObj, level) {\n let attrStr = '';\n let val = '';\n for (let key in jObj) {\n if (typeof jObj[key] === 'undefined') {\n // supress undefined node\n } else if (jObj[key] === null) {\n val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n } else if (jObj[key] instanceof Date) {\n val += this.buildTextNode(jObj[key], key, '', level);\n } else if (typeof jObj[key] !== 'object') {\n //premitive type\n const attr = this.isAttribute(key);\n if (attr) {\n attrStr += ' ' + attr + '=\"' + this.options.attrValueProcessor('' + jObj[key]) + '\"';\n } else if (this.isCDATA(key)) {\n if (jObj[this.options.textNodeName]) {\n val += this.replaceCDATAstr(jObj[this.options.textNodeName], jObj[key]);\n } else {\n val += this.replaceCDATAstr('', jObj[key]);\n }\n } else {\n //tag value\n if (key === this.options.textNodeName) {\n if (jObj[this.options.cdataTagName]) {\n //value will added while processing cdata\n } else {\n val += this.options.tagValueProcessor('' + jObj[key]);\n }\n } else {\n val += this.buildTextNode(jObj[key], key, '', level);\n }\n }\n } else if (Array.isArray(jObj[key])) {\n //repeated nodes\n if (this.isCDATA(key)) {\n val += this.indentate(level);\n if (jObj[this.options.textNodeName]) {\n val += this.replaceCDATAarr(jObj[this.options.textNodeName], jObj[key]);\n } else {\n val += this.replaceCDATAarr('', jObj[key]);\n }\n } else {\n //nested nodes\n const arrLen = jObj[key].length;\n for (let j = 0; j < arrLen; j++) {\n const item = jObj[key][j];\n if (typeof item === 'undefined') {\n // supress undefined node\n } else if (item === null) {\n val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n } else if (typeof item === 'object') {\n val += this.processTextOrObjNode(item, key, level)\n } else {\n val += this.buildTextNode(item, key, '', level);\n }\n }\n }\n } else {\n //nested node\n if (this.options.attrNodeName && key === this.options.attrNodeName) {\n const Ks = Object.keys(jObj[key]);\n const L = Ks.length;\n for (let j = 0; j < L; j++) {\n attrStr += ' ' + Ks[j] + '=\"' + this.options.attrValueProcessor('' + jObj[key][Ks[j]]) + '\"';\n }\n } else {\n val += this.processTextOrObjNode(jObj[key], key, level)\n }\n }\n }\n return {attrStr: attrStr, val: val};\n};\n\nfunction processTextOrObjNode (object, key, level) {\n const result = this.j2x(object, level + 1);\n if (object[this.options.textNodeName] !== undefined && Object.keys(object).length === 1) {\n return this.buildTextNode(result.val, key, result.attrStr, level);\n } else {\n return this.buildObjNode(result.val, key, result.attrStr, level);\n }\n}\n\nfunction replaceCDATAstr(str, cdata) {\n str = this.options.tagValueProcessor('' + str);\n if (this.options.cdataPositionChar === '' || str === '') {\n return str + '');\n }\n return str + this.newLine;\n }\n}\n\nfunction buildObjectNode(val, key, attrStr, level) {\n if (attrStr && val.indexOf('<') === -1) {\n return (\n this.indentate(level) +\n '<' +\n key +\n attrStr +\n '>' +\n val +\n //+ this.newLine\n // + this.indentate(level)\n '' +\n this.options.tagValueProcessor(val) +\n ' 1) {\n jObj[tagName] = [];\n for (let tag in node.child[tagName]) {\n if (node.child[tagName].hasOwnProperty(tag)) {\n jObj[tagName].push(convertToJson(node.child[tagName][tag], options, tagName));\n }\n }\n } else {\n const result = convertToJson(node.child[tagName][0], options, tagName);\n const asArray = (options.arrayMode === true && typeof result === 'object') || util.isTagNameInArrayMode(tagName, options.arrayMode, parentTagName);\n jObj[tagName] = asArray ? [result] : result;\n }\n }\n\n //add value\n return jObj;\n};\n\nexports.convertToJson = convertToJson;\n\n\n//# sourceURL=webpack:///./node_modules/fast-xml-parser/src/node2json.js?"); /***/ }), /***/ "./node_modules/fast-xml-parser/src/node2json_str.js": /*!***********************************************************!*\ !*** ./node_modules/fast-xml-parser/src/node2json_str.js ***! \***********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nconst util = __webpack_require__(/*! ./util */ \"./node_modules/fast-xml-parser/src/util.js\");\nconst buildOptions = __webpack_require__(/*! ./util */ \"./node_modules/fast-xml-parser/src/util.js\").buildOptions;\nconst x2j = __webpack_require__(/*! ./xmlstr2xmlnode */ \"./node_modules/fast-xml-parser/src/xmlstr2xmlnode.js\");\n\n//TODO: do it later\nconst convertToJsonString = function(node, options) {\n options = buildOptions(options, x2j.defaultOptions, x2j.props);\n\n options.indentBy = options.indentBy || '';\n return _cToJsonStr(node, options, 0);\n};\n\nconst _cToJsonStr = function(node, options, level) {\n let jObj = '{';\n\n //traver through all the children\n const keys = Object.keys(node.child);\n\n for (let index = 0; index < keys.length; index++) {\n const tagname = keys[index];\n if (node.child[tagname] && node.child[tagname].length > 1) {\n jObj += '\"' + tagname + '\" : [ ';\n for (let tag in node.child[tagname]) {\n jObj += _cToJsonStr(node.child[tagname][tag], options) + ' , ';\n }\n jObj = jObj.substr(0, jObj.length - 1) + ' ] '; //remove extra comma in last\n } else {\n jObj += '\"' + tagname + '\" : ' + _cToJsonStr(node.child[tagname][0], options) + ' ,';\n }\n }\n util.merge(jObj, node.attrsMap);\n //add attrsMap as new children\n if (util.isEmptyObject(jObj)) {\n return util.isExist(node.val) ? node.val : '';\n } else {\n if (util.isExist(node.val)) {\n if (!(typeof node.val === 'string' && (node.val === '' || node.val === options.cdataPositionChar))) {\n jObj += '\"' + options.textNodeName + '\" : ' + stringval(node.val);\n }\n }\n }\n //add value\n if (jObj[jObj.length - 1] === ',') {\n jObj = jObj.substr(0, jObj.length - 2);\n }\n return jObj + '}';\n};\n\nfunction stringval(v) {\n if (v === true || v === false || !isNaN(v)) {\n return v;\n } else {\n return '\"' + v + '\"';\n }\n}\n\nfunction indentate(options, level) {\n return options.indentBy.repeat(level);\n}\n\nexports.convertToJsonString = convertToJsonString;\n\n\n//# sourceURL=webpack:///./node_modules/fast-xml-parser/src/node2json_str.js?"); /***/ }), /***/ "./node_modules/fast-xml-parser/src/parser.js": /*!****************************************************!*\ !*** ./node_modules/fast-xml-parser/src/parser.js ***! \****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nconst nodeToJson = __webpack_require__(/*! ./node2json */ \"./node_modules/fast-xml-parser/src/node2json.js\");\nconst xmlToNodeobj = __webpack_require__(/*! ./xmlstr2xmlnode */ \"./node_modules/fast-xml-parser/src/xmlstr2xmlnode.js\");\nconst x2xmlnode = __webpack_require__(/*! ./xmlstr2xmlnode */ \"./node_modules/fast-xml-parser/src/xmlstr2xmlnode.js\");\nconst buildOptions = __webpack_require__(/*! ./util */ \"./node_modules/fast-xml-parser/src/util.js\").buildOptions;\nconst validator = __webpack_require__(/*! ./validator */ \"./node_modules/fast-xml-parser/src/validator.js\");\n\nexports.parse = function(xmlData, givenOptions = {}, validationOption) {\n if( validationOption){\n if(validationOption === true) validationOption = {}\n \n const result = validator.validate(xmlData, validationOption);\n if (result !== true) {\n throw Error( result.err.msg)\n }\n }\n if(givenOptions.parseTrueNumberOnly \n && givenOptions.parseNodeValue !== false\n && !givenOptions.numParseOptions){\n \n givenOptions.numParseOptions = {\n leadingZeros: false,\n }\n }\n let options = buildOptions(givenOptions, x2xmlnode.defaultOptions, x2xmlnode.props);\n\n const traversableObj = xmlToNodeobj.getTraversalObj(xmlData, options)\n //print(traversableObj, \" \");\n return nodeToJson.convertToJson(traversableObj, options);\n};\nexports.convertTonimn = __webpack_require__(/*! ./nimndata */ \"./node_modules/fast-xml-parser/src/nimndata.js\").convert2nimn;\nexports.getTraversalObj = xmlToNodeobj.getTraversalObj;\nexports.convertToJson = nodeToJson.convertToJson;\nexports.convertToJsonString = __webpack_require__(/*! ./node2json_str */ \"./node_modules/fast-xml-parser/src/node2json_str.js\").convertToJsonString;\nexports.validate = validator.validate;\nexports.j2xParser = __webpack_require__(/*! ./json2xml */ \"./node_modules/fast-xml-parser/src/json2xml.js\");\nexports.parseToNimn = function(xmlData, schema, options) {\n return exports.convertTonimn(exports.getTraversalObj(xmlData, options), schema, options);\n};\n\n\nfunction print(xmlNode, indentation){\n if(xmlNode){\n console.log(indentation + \"{\")\n console.log(indentation + \" \\\"tagName\\\": \\\"\" + xmlNode.tagname + \"\\\", \");\n if(xmlNode.parent){\n console.log(indentation + \" \\\"parent\\\": \\\"\" + xmlNode.parent.tagname + \"\\\", \");\n }\n console.log(indentation + \" \\\"val\\\": \\\"\" + xmlNode.val + \"\\\", \");\n console.log(indentation + \" \\\"attrs\\\": \" + JSON.stringify(xmlNode.attrsMap,null,4) + \", \");\n\n if(xmlNode.child){\n console.log(indentation + \"\\\"child\\\": {\")\n const indentation2 = indentation + indentation;\n Object.keys(xmlNode.child).forEach( function(key) {\n const node = xmlNode.child[key];\n\n if(Array.isArray(node)){\n console.log(indentation + \"\\\"\"+key+\"\\\" :[\")\n node.forEach( function(item,index) {\n //console.log(indentation + \" \\\"\"+index+\"\\\" : [\")\n print(item, indentation2);\n })\n console.log(indentation + \"],\") \n }else{\n console.log(indentation + \" \\\"\"+key+\"\\\" : {\")\n print(node, indentation2);\n console.log(indentation + \"},\") \n }\n });\n console.log(indentation + \"},\")\n }\n console.log(indentation + \"},\")\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/fast-xml-parser/src/parser.js?"); /***/ }), /***/ "./node_modules/fast-xml-parser/src/util.js": /*!**************************************************!*\ !*** ./node_modules/fast-xml-parser/src/util.js ***! \**************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nconst nameStartChar = ':A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD';\nconst nameChar = nameStartChar + '\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040';\nconst nameRegexp = '[' + nameStartChar + '][' + nameChar + ']*'\nconst regexName = new RegExp('^' + nameRegexp + '$');\n\nconst getAllMatches = function(string, regex) {\n const matches = [];\n let match = regex.exec(string);\n while (match) {\n const allmatches = [];\n allmatches.startIndex = regex.lastIndex - match[0].length;\n const len = match.length;\n for (let index = 0; index < len; index++) {\n allmatches.push(match[index]);\n }\n matches.push(allmatches);\n match = regex.exec(string);\n }\n return matches;\n};\n\nconst isName = function(string) {\n const match = regexName.exec(string);\n return !(match === null || typeof match === 'undefined');\n};\n\nexports.isExist = function(v) {\n return typeof v !== 'undefined';\n};\n\nexports.isEmptyObject = function(obj) {\n return Object.keys(obj).length === 0;\n};\n\n/**\n * Copy all the properties of a into b.\n * @param {*} target\n * @param {*} a\n */\nexports.merge = function(target, a, arrayMode) {\n if (a) {\n const keys = Object.keys(a); // will return an array of own properties\n const len = keys.length; //don't make it inline\n for (let i = 0; i < len; i++) {\n if (arrayMode === 'strict') {\n target[keys[i]] = [ a[keys[i]] ];\n } else {\n target[keys[i]] = a[keys[i]];\n }\n }\n }\n};\n/* exports.merge =function (b,a){\n return Object.assign(b,a);\n} */\n\nexports.getValue = function(v) {\n if (exports.isExist(v)) {\n return v;\n } else {\n return '';\n }\n};\n\n// const fakeCall = function(a) {return a;};\n// const fakeCallNoReturn = function() {};\n\nexports.buildOptions = function(options, defaultOptions, props) {\n let newOptions = {};\n if (!options) {\n return defaultOptions; //if there are not options\n }\n\n for (let i = 0; i < props.length; i++) {\n if (options[props[i]] !== undefined) {\n newOptions[props[i]] = options[props[i]];\n } else {\n newOptions[props[i]] = defaultOptions[props[i]];\n }\n }\n return newOptions;\n};\n\n/**\n * Check if a tag name should be treated as array\n *\n * @param tagName the node tagname\n * @param arrayMode the array mode option\n * @param parentTagName the parent tag name\n * @returns {boolean} true if node should be parsed as array\n */\nexports.isTagNameInArrayMode = function (tagName, arrayMode, parentTagName) {\n if (arrayMode === false) {\n return false;\n } else if (arrayMode instanceof RegExp) {\n return arrayMode.test(tagName);\n } else if (typeof arrayMode === 'function') {\n return !!arrayMode(tagName, parentTagName);\n }\n\n return arrayMode === \"strict\";\n}\n\nexports.isName = isName;\nexports.getAllMatches = getAllMatches;\nexports.nameRegexp = nameRegexp;\n\n\n//# sourceURL=webpack:///./node_modules/fast-xml-parser/src/util.js?"); /***/ }), /***/ "./node_modules/fast-xml-parser/src/validator.js": /*!*******************************************************!*\ !*** ./node_modules/fast-xml-parser/src/validator.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nconst util = __webpack_require__(/*! ./util */ \"./node_modules/fast-xml-parser/src/util.js\");\n\nconst defaultOptions = {\n allowBooleanAttributes: false, //A tag can have attributes without any value\n};\n\nconst props = ['allowBooleanAttributes'];\n\n//const tagsPattern = new RegExp(\"<\\\\/?([\\\\w:\\\\-_\\.]+)\\\\s*\\/?>\",\"g\");\nexports.validate = function (xmlData, options) {\n options = util.buildOptions(options, defaultOptions, props);\n\n //xmlData = xmlData.replace(/(\\r\\n|\\n|\\r)/gm,\"\");//make it single line\n //xmlData = xmlData.replace(/(^\\s*<\\?xml.*?\\?>)/g,\"\");//Remove XML starting tag\n //xmlData = xmlData.replace(/()/g,\"\");//Remove DOCTYPE\n const tags = [];\n let tagFound = false;\n\n //indicates that the root tag has been closed (aka. depth 0 has been reached)\n let reachedRoot = false;\n\n if (xmlData[0] === '\\ufeff') {\n // check for byte order mark (BOM)\n xmlData = xmlData.substr(1);\n }\n\n for (let i = 0; i < xmlData.length; i++) {\n\n if (xmlData[i] === '<' && xmlData[i+1] === '?') {\n i+=2;\n i = readPI(xmlData,i);\n if (i.err) return i;\n }else if (xmlData[i] === '<') {\n //starting of tag\n //read until you reach to '>' avoiding any '>' in attribute value\n let tagStartPos = i;\n i++;\n \n if (xmlData[i] === '!') {\n i = readCommentAndCDATA(xmlData, i);\n continue;\n } else {\n let closingTag = false;\n if (xmlData[i] === '/') {\n //closing tag\n closingTag = true;\n i++;\n }\n //read tagname\n let tagName = '';\n for (; i < xmlData.length &&\n xmlData[i] !== '>' &&\n xmlData[i] !== ' ' &&\n xmlData[i] !== '\\t' &&\n xmlData[i] !== '\\n' &&\n xmlData[i] !== '\\r'; i++\n ) {\n tagName += xmlData[i];\n }\n tagName = tagName.trim();\n //console.log(tagName);\n\n if (tagName[tagName.length - 1] === '/') {\n //self closing tag without attributes\n tagName = tagName.substring(0, tagName.length - 1);\n //continue;\n i--;\n }\n if (!validateTagName(tagName)) {\n let msg;\n if (tagName.trim().length === 0) {\n msg = \"Invalid space after '<'.\";\n } else {\n msg = \"Tag '\"+tagName+\"' is an invalid name.\";\n }\n return getErrorObject('InvalidTag', msg, getLineNumberForPosition(xmlData, i));\n }\n\n const result = readAttributeStr(xmlData, i);\n if (result === false) {\n return getErrorObject('InvalidAttr', \"Attributes for '\"+tagName+\"' have open quote.\", getLineNumberForPosition(xmlData, i));\n }\n let attrStr = result.value;\n i = result.index;\n\n if (attrStr[attrStr.length - 1] === '/') {\n //self closing tag\n const attrStrStart = i - attrStr.length;\n attrStr = attrStr.substring(0, attrStr.length - 1);\n const isValid = validateAttributeString(attrStr, options);\n if (isValid === true) {\n tagFound = true;\n //continue; //text may presents after self closing tag\n } else {\n //the result from the nested function returns the position of the error within the attribute\n //in order to get the 'true' error line, we need to calculate the position where the attribute begins (i - attrStr.length) and then add the position within the attribute\n //this gives us the absolute index in the entire xml, which we can use to find the line at last\n return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, attrStrStart + isValid.err.line));\n }\n } else if (closingTag) {\n if (!result.tagClosed) {\n return getErrorObject('InvalidTag', \"Closing tag '\"+tagName+\"' doesn't have proper closing.\", getLineNumberForPosition(xmlData, i));\n } else if (attrStr.trim().length > 0) {\n return getErrorObject('InvalidTag', \"Closing tag '\"+tagName+\"' can't have attributes or invalid starting.\", getLineNumberForPosition(xmlData, tagStartPos));\n } else {\n const otg = tags.pop();\n if (tagName !== otg.tagName) {\n let openPos = getLineNumberForPosition(xmlData, otg.tagStartPos);\n return getErrorObject('InvalidTag',\n \"Expected closing tag '\"+otg.tagName+\"' (opened in line \"+openPos.line+\", col \"+openPos.col+\") instead of closing tag '\"+tagName+\"'.\",\n getLineNumberForPosition(xmlData, tagStartPos));\n }\n\n //when there are no more tags, we reached the root level.\n if (tags.length == 0) {\n reachedRoot = true;\n }\n }\n } else {\n const isValid = validateAttributeString(attrStr, options);\n if (isValid !== true) {\n //the result from the nested function returns the position of the error within the attribute\n //in order to get the 'true' error line, we need to calculate the position where the attribute begins (i - attrStr.length) and then add the position within the attribute\n //this gives us the absolute index in the entire xml, which we can use to find the line at last\n return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, i - attrStr.length + isValid.err.line));\n }\n\n //if the root level has been reached before ...\n if (reachedRoot === true) {\n return getErrorObject('InvalidXml', 'Multiple possible root nodes found.', getLineNumberForPosition(xmlData, i));\n } else {\n tags.push({tagName, tagStartPos});\n }\n tagFound = true;\n }\n\n //skip tag text value\n //It may include comments and CDATA value\n for (i++; i < xmlData.length; i++) {\n if (xmlData[i] === '<') {\n if (xmlData[i + 1] === '!') {\n //comment or CADATA\n i++;\n i = readCommentAndCDATA(xmlData, i);\n continue;\n } else if (xmlData[i+1] === '?') {\n i = readPI(xmlData, ++i);\n if (i.err) return i;\n } else{\n break;\n }\n } else if (xmlData[i] === '&') {\n const afterAmp = validateAmpersand(xmlData, i);\n if (afterAmp == -1)\n return getErrorObject('InvalidChar', \"char '&' is not expected.\", getLineNumberForPosition(xmlData, i));\n i = afterAmp;\n }\n } //end of reading tag text value\n if (xmlData[i] === '<') {\n i--;\n }\n }\n } else {\n if (xmlData[i] === ' ' || xmlData[i] === '\\t' || xmlData[i] === '\\n' || xmlData[i] === '\\r') {\n continue;\n }\n return getErrorObject('InvalidChar', \"char '\"+xmlData[i]+\"' is not expected.\", getLineNumberForPosition(xmlData, i));\n }\n }\n\n if (!tagFound) {\n return getErrorObject('InvalidXml', 'Start tag expected.', 1);\n }else if (tags.length == 1) {\n return getErrorObject('InvalidTag', \"Unclosed tag '\"+tags[0].tagName+\"'.\", getLineNumberForPosition(xmlData, tags[0].tagStartPos));\n }else if (tags.length > 0) {\n return getErrorObject('InvalidXml', \"Invalid '\"+\n JSON.stringify(tags.map(t => t.tagName), null, 4).replace(/\\r?\\n/g, '')+\n \"' found.\", {line: 1, col: 1});\n }\n\n return true;\n};\n\n/**\n * Read Processing insstructions and skip\n * @param {*} xmlData\n * @param {*} i\n */\nfunction readPI(xmlData, i) {\n const start = i;\n for (; i < xmlData.length; i++) {\n if (xmlData[i] == '?' || xmlData[i] == ' ') {\n //tagname\n const tagname = xmlData.substr(start, i - start);\n if (i > 5 && tagname === 'xml') {\n return getErrorObject('InvalidXml', 'XML declaration allowed only at the start of the document.', getLineNumberForPosition(xmlData, i));\n } else if (xmlData[i] == '?' && xmlData[i + 1] == '>') {\n //check if valid attribut string\n i++;\n break;\n } else {\n continue;\n }\n }\n }\n return i;\n}\n\nfunction readCommentAndCDATA(xmlData, i) {\n if (xmlData.length > i + 5 && xmlData[i + 1] === '-' && xmlData[i + 2] === '-') {\n //comment\n for (i += 3; i < xmlData.length; i++) {\n if (xmlData[i] === '-' && xmlData[i + 1] === '-' && xmlData[i + 2] === '>') {\n i += 2;\n break;\n }\n }\n } else if (\n xmlData.length > i + 8 &&\n xmlData[i + 1] === 'D' &&\n xmlData[i + 2] === 'O' &&\n xmlData[i + 3] === 'C' &&\n xmlData[i + 4] === 'T' &&\n xmlData[i + 5] === 'Y' &&\n xmlData[i + 6] === 'P' &&\n xmlData[i + 7] === 'E'\n ) {\n let angleBracketsCount = 1;\n for (i += 8; i < xmlData.length; i++) {\n if (xmlData[i] === '<') {\n angleBracketsCount++;\n } else if (xmlData[i] === '>') {\n angleBracketsCount--;\n if (angleBracketsCount === 0) {\n break;\n }\n }\n }\n } else if (\n xmlData.length > i + 9 &&\n xmlData[i + 1] === '[' &&\n xmlData[i + 2] === 'C' &&\n xmlData[i + 3] === 'D' &&\n xmlData[i + 4] === 'A' &&\n xmlData[i + 5] === 'T' &&\n xmlData[i + 6] === 'A' &&\n xmlData[i + 7] === '['\n ) {\n for (i += 8; i < xmlData.length; i++) {\n if (xmlData[i] === ']' && xmlData[i + 1] === ']' && xmlData[i + 2] === '>') {\n i += 2;\n break;\n }\n }\n }\n\n return i;\n}\n\nconst doubleQuote = '\"';\nconst singleQuote = \"'\";\n\n/**\n * Keep reading xmlData until '<' is found outside the attribute value.\n * @param {string} xmlData\n * @param {number} i\n */\nfunction readAttributeStr(xmlData, i) {\n let attrStr = '';\n let startChar = '';\n let tagClosed = false;\n for (; i < xmlData.length; i++) {\n if (xmlData[i] === doubleQuote || xmlData[i] === singleQuote) {\n if (startChar === '') {\n startChar = xmlData[i];\n } else if (startChar !== xmlData[i]) {\n //if vaue is enclosed with double quote then single quotes are allowed inside the value and vice versa\n } else {\n startChar = '';\n }\n } else if (xmlData[i] === '>') {\n if (startChar === '') {\n tagClosed = true;\n break;\n }\n }\n attrStr += xmlData[i];\n }\n if (startChar !== '') {\n return false;\n }\n\n return {\n value: attrStr,\n index: i,\n tagClosed: tagClosed\n };\n}\n\n/**\n * Select all the attributes whether valid or invalid.\n */\nconst validAttrStrRegxp = new RegExp('(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*([\\'\"])(([\\\\s\\\\S])*?)\\\\5)?', 'g');\n\n//attr, =\"sd\", a=\"amit's\", a=\"sd\"b=\"saf\", ab cd=\"\"\n\nfunction validateAttributeString(attrStr, options) {\n //console.log(\"start:\"+attrStr+\":end\");\n\n //if(attrStr.trim().length === 0) return true; //empty string\n\n const matches = util.getAllMatches(attrStr, validAttrStrRegxp);\n const attrNames = {};\n\n for (let i = 0; i < matches.length; i++) {\n if (matches[i][1].length === 0) {\n //nospace before attribute name: a=\"sd\"b=\"saf\"\n return getErrorObject('InvalidAttr', \"Attribute '\"+matches[i][2]+\"' has no space in starting.\", getPositionFromMatch(matches[i]))\n } else if (matches[i][3] === undefined && !options.allowBooleanAttributes) {\n //independent attribute: ab\n return getErrorObject('InvalidAttr', \"boolean attribute '\"+matches[i][2]+\"' is not allowed.\", getPositionFromMatch(matches[i]));\n }\n /* else if(matches[i][6] === undefined){//attribute without value: ab=\n return { err: { code:\"InvalidAttr\",msg:\"attribute \" + matches[i][2] + \" has no value assigned.\"}};\n } */\n const attrName = matches[i][2];\n if (!validateAttrName(attrName)) {\n return getErrorObject('InvalidAttr', \"Attribute '\"+attrName+\"' is an invalid name.\", getPositionFromMatch(matches[i]));\n }\n if (!attrNames.hasOwnProperty(attrName)) {\n //check for duplicate attribute.\n attrNames[attrName] = 1;\n } else {\n return getErrorObject('InvalidAttr', \"Attribute '\"+attrName+\"' is repeated.\", getPositionFromMatch(matches[i]));\n }\n }\n\n return true;\n}\n\nfunction validateNumberAmpersand(xmlData, i) {\n let re = /\\d/;\n if (xmlData[i] === 'x') {\n i++;\n re = /[\\da-fA-F]/;\n }\n for (; i < xmlData.length; i++) {\n if (xmlData[i] === ';')\n return i;\n if (!xmlData[i].match(re))\n break;\n }\n return -1;\n}\n\nfunction validateAmpersand(xmlData, i) {\n // https://www.w3.org/TR/xml/#dt-charref\n i++;\n if (xmlData[i] === ';')\n return -1;\n if (xmlData[i] === '#') {\n i++;\n return validateNumberAmpersand(xmlData, i);\n }\n let count = 0;\n for (; i < xmlData.length; i++, count++) {\n if (xmlData[i].match(/\\w/) && count < 20)\n continue;\n if (xmlData[i] === ';')\n break;\n return -1;\n }\n return i;\n}\n\nfunction getErrorObject(code, message, lineNumber) {\n return {\n err: {\n code: code,\n msg: message,\n line: lineNumber.line || lineNumber,\n col: lineNumber.col,\n },\n };\n}\n\nfunction validateAttrName(attrName) {\n return util.isName(attrName);\n}\n\n// const startsWithXML = /^xml/i;\n\nfunction validateTagName(tagname) {\n return util.isName(tagname) /* && !tagname.match(startsWithXML) */;\n}\n\n//this function returns the line number for the character at the given index\nfunction getLineNumberForPosition(xmlData, index) {\n const lines = xmlData.substring(0, index).split(/\\r?\\n/);\n return {\n line: lines.length,\n\n // column number is last line's length + 1, because column numbering starts at 1:\n col: lines[lines.length - 1].length + 1\n };\n}\n\n//this function returns the position of the first character of match within attrStr\nfunction getPositionFromMatch(match) {\n return match.startIndex + match[1].length;\n}\n\n\n//# sourceURL=webpack:///./node_modules/fast-xml-parser/src/validator.js?"); /***/ }), /***/ "./node_modules/fast-xml-parser/src/xmlNode.js": /*!*****************************************************!*\ !*** ./node_modules/fast-xml-parser/src/xmlNode.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nmodule.exports = function(tagname, parent, val) {\n this.tagname = tagname;\n this.parent = parent;\n this.child = {}; //child tags\n this.attrsMap = {}; //attributes map\n this.val = val; //text only\n this.addChild = function(child) {\n if (Array.isArray(this.child[child.tagname])) {\n //already presents\n this.child[child.tagname].push(child);\n } else {\n this.child[child.tagname] = [child];\n }\n };\n};\n\n\n//# sourceURL=webpack:///./node_modules/fast-xml-parser/src/xmlNode.js?"); /***/ }), /***/ "./node_modules/fast-xml-parser/src/xmlstr2xmlnode.js": /*!************************************************************!*\ !*** ./node_modules/fast-xml-parser/src/xmlstr2xmlnode.js ***! \************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nconst util = __webpack_require__(/*! ./util */ \"./node_modules/fast-xml-parser/src/util.js\");\nconst buildOptions = __webpack_require__(/*! ./util */ \"./node_modules/fast-xml-parser/src/util.js\").buildOptions;\nconst xmlNode = __webpack_require__(/*! ./xmlNode */ \"./node_modules/fast-xml-parser/src/xmlNode.js\");\nconst toNumber = __webpack_require__(/*! strnum */ \"./node_modules/strnum/strnum.js\");\n\nconst regx =\n '<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)'\n .replace(/NAME/g, util.nameRegexp);\n\n//const tagsRegx = new RegExp(\"<(\\\\/?[\\\\w:\\\\-\\._]+)([^>]*)>(\\\\s*\"+cdataRegx+\")*([^<]+)?\",\"g\");\n//const tagsRegx = new RegExp(\"<(\\\\/?)((\\\\w*:)?([\\\\w:\\\\-\\._]+))([^>]*)>([^<]*)(\"+cdataRegx+\"([^<]*))*([^<]+)?\",\"g\");\n\n//polyfill\nif (!Number.parseInt && window.parseInt) {\n Number.parseInt = window.parseInt;\n}\nif (!Number.parseFloat && window.parseFloat) {\n Number.parseFloat = window.parseFloat;\n}\n\nconst defaultOptions = {\n attributeNamePrefix: '@_',\n attrNodeName: false,\n textNodeName: '#text',\n ignoreAttributes: true,\n ignoreNameSpace: false,\n allowBooleanAttributes: false, //a tag can have attributes without any value\n //ignoreRootElement : false,\n parseNodeValue: true,\n parseAttributeValue: false,\n arrayMode: false,\n trimValues: true, //Trim string values of tag and attributes\n cdataTagName: false,\n cdataPositionChar: '\\\\c',\n numParseOptions: {\n hex: true,\n leadingZeros: true\n },\n tagValueProcessor: function(a, tagName) {\n return a;\n },\n attrValueProcessor: function(a, attrName) {\n return a;\n },\n stopNodes: [],\n alwaysCreateTextNode: false\n //decodeStrict: false,\n};\n\nexports.defaultOptions = defaultOptions;\n\nconst props = [\n 'attributeNamePrefix',\n 'attrNodeName',\n 'textNodeName',\n 'ignoreAttributes',\n 'ignoreNameSpace',\n 'allowBooleanAttributes',\n 'parseNodeValue',\n 'parseAttributeValue',\n 'arrayMode',\n 'trimValues',\n 'cdataTagName',\n 'cdataPositionChar',\n 'tagValueProcessor',\n 'attrValueProcessor',\n 'parseTrueNumberOnly',\n 'numParseOptions',\n 'stopNodes',\n 'alwaysCreateTextNode'\n];\nexports.props = props;\n\n/**\n * Trim -> valueProcessor -> parse value\n * @param {string} tagName\n * @param {string} val\n * @param {object} options\n */\nfunction processTagValue(tagName, val, options) {\n if (val) {\n if (options.trimValues) {\n val = val.trim();\n }\n val = options.tagValueProcessor(val, tagName);\n val = parseValue(val, options.parseNodeValue, options.numParseOptions);\n }\n\n return val;\n}\n\nfunction resolveNameSpace(tagname, options) {\n if (options.ignoreNameSpace) {\n const tags = tagname.split(':');\n const prefix = tagname.charAt(0) === '/' ? '/' : '';\n if (tags[0] === 'xmlns') {\n return '';\n }\n if (tags.length === 2) {\n tagname = prefix + tags[1];\n }\n }\n return tagname;\n}\n\nfunction parseValue(val, shouldParse, options) {\n if (shouldParse && typeof val === 'string') {\n //console.log(options)\n const newval = val.trim();\n if(newval === 'true' ) return true;\n else if(newval === 'false' ) return false;\n else return toNumber(val, options);\n } else {\n if (util.isExist(val)) {\n return val;\n } else {\n return '';\n }\n }\n}\n\n//TODO: change regex to capture NS\n//const attrsRegx = new RegExp(\"([\\\\w\\\\-\\\\.\\\\:]+)\\\\s*=\\\\s*(['\\\"])((.|\\n)*?)\\\\2\",\"gm\");\nconst attrsRegx = new RegExp('([^\\\\s=]+)\\\\s*(=\\\\s*([\\'\"])(.*?)\\\\3)?', 'g');\n\nfunction buildAttributesMap(attrStr, options) {\n if (!options.ignoreAttributes && typeof attrStr === 'string') {\n attrStr = attrStr.replace(/\\r?\\n/g, ' ');\n //attrStr = attrStr || attrStr.trim();\n\n const matches = util.getAllMatches(attrStr, attrsRegx);\n const len = matches.length; //don't make it inline\n const attrs = {};\n for (let i = 0; i < len; i++) {\n const attrName = resolveNameSpace(matches[i][1], options);\n if (attrName.length) {\n if (matches[i][4] !== undefined) {\n if (options.trimValues) {\n matches[i][4] = matches[i][4].trim();\n }\n matches[i][4] = options.attrValueProcessor(matches[i][4], attrName);\n attrs[options.attributeNamePrefix + attrName] = parseValue(\n matches[i][4],\n options.parseAttributeValue,\n options.numParseOptions\n );\n } else if (options.allowBooleanAttributes) {\n attrs[options.attributeNamePrefix + attrName] = true;\n }\n }\n }\n if (!Object.keys(attrs).length) {\n return;\n }\n if (options.attrNodeName) {\n const attrCollection = {};\n attrCollection[options.attrNodeName] = attrs;\n return attrCollection;\n }\n return attrs;\n }\n}\n\nconst getTraversalObj = function(xmlData, options) {\n xmlData = xmlData.replace(/\\r\\n?/g, \"\\n\");\n options = buildOptions(options, defaultOptions, props);\n const xmlObj = new xmlNode('!xml');\n let currentNode = xmlObj;\n let textData = \"\";\n\n//function match(xmlData){\n for(let i=0; i< xmlData.length; i++){\n const ch = xmlData[i];\n if(ch === '<'){\n if( xmlData[i+1] === '/') {//Closing Tag\n const closeIndex = findClosingIndex(xmlData, \">\", i, \"Closing Tag is not closed.\")\n let tagName = xmlData.substring(i+2,closeIndex).trim();\n\n if(options.ignoreNameSpace){\n const colonIndex = tagName.indexOf(\":\");\n if(colonIndex !== -1){\n tagName = tagName.substr(colonIndex+1);\n }\n }\n\n /* if (currentNode.parent) {\n currentNode.parent.val = util.getValue(currentNode.parent.val) + '' + processTagValue2(tagName, textData , options);\n } */\n if(currentNode){\n if(currentNode.val){\n currentNode.val = util.getValue(currentNode.val) + '' + processTagValue(tagName, textData , options);\n }else{\n currentNode.val = processTagValue(tagName, textData , options);\n }\n }\n\n if (options.stopNodes.length && options.stopNodes.includes(currentNode.tagname)) {\n currentNode.child = []\n if (currentNode.attrsMap == undefined) { currentNode.attrsMap = {}}\n currentNode.val = xmlData.substr(currentNode.startIndex + 1, i - currentNode.startIndex - 1)\n }\n currentNode = currentNode.parent;\n textData = \"\";\n i = closeIndex;\n } else if( xmlData[i+1] === '?') {\n i = findClosingIndex(xmlData, \"?>\", i, \"Pi Tag is not closed.\")\n } else if(xmlData.substr(i + 1, 3) === '!--') {\n i = findClosingIndex(xmlData, \"-->\", i, \"Comment is not closed.\")\n } else if( xmlData.substr(i + 1, 2) === '!D') {\n const closeIndex = findClosingIndex(xmlData, \">\", i, \"DOCTYPE is not closed.\")\n const tagExp = xmlData.substring(i, closeIndex);\n if(tagExp.indexOf(\"[\") >= 0){\n i = xmlData.indexOf(\"]>\", i) + 1;\n }else{\n i = closeIndex;\n }\n }else if(xmlData.substr(i + 1, 2) === '![') {\n const closeIndex = findClosingIndex(xmlData, \"]]>\", i, \"CDATA is not closed.\") - 2\n const tagExp = xmlData.substring(i + 9,closeIndex);\n\n //considerations\n //1. CDATA will always have parent node\n //2. A tag with CDATA is not a leaf node so it's value would be string type.\n if(textData){\n currentNode.val = util.getValue(currentNode.val) + '' + processTagValue(currentNode.tagname, textData , options);\n textData = \"\";\n }\n\n if (options.cdataTagName) {\n //add cdata node\n const childNode = new xmlNode(options.cdataTagName, currentNode, tagExp);\n currentNode.addChild(childNode);\n //for backtracking\n currentNode.val = util.getValue(currentNode.val) + options.cdataPositionChar;\n //add rest value to parent node\n if (tagExp) {\n childNode.val = tagExp;\n }\n } else {\n currentNode.val = (currentNode.val || '') + (tagExp || '');\n }\n\n i = closeIndex + 2;\n }else {//Opening tag\n const result = closingIndexForOpeningTag(xmlData, i+1)\n let tagExp = result.data;\n const closeIndex = result.index;\n const separatorIndex = tagExp.indexOf(\" \");\n let tagName = tagExp;\n let shouldBuildAttributesMap = true;\n if(separatorIndex !== -1){\n tagName = tagExp.substr(0, separatorIndex).replace(/\\s\\s*$/, '');\n tagExp = tagExp.substr(separatorIndex + 1);\n }\n\n if(options.ignoreNameSpace){\n const colonIndex = tagName.indexOf(\":\");\n if(colonIndex !== -1){\n tagName = tagName.substr(colonIndex+1);\n shouldBuildAttributesMap = tagName !== result.data.substr(colonIndex + 1);\n }\n }\n\n //save text to parent node\n if (currentNode && textData) {\n if(currentNode.tagname !== '!xml'){\n currentNode.val = util.getValue(currentNode.val) + '' + processTagValue( currentNode.tagname, textData, options);\n }\n }\n\n if(tagExp.length > 0 && tagExp.lastIndexOf(\"/\") === tagExp.length - 1){//selfClosing tag\n\n if(tagName[tagName.length - 1] === \"/\"){ //remove trailing '/'\n tagName = tagName.substr(0, tagName.length - 1);\n tagExp = tagName;\n }else{\n tagExp = tagExp.substr(0, tagExp.length - 1);\n }\n\n const childNode = new xmlNode(tagName, currentNode, '');\n if(tagName !== tagExp){\n childNode.attrsMap = buildAttributesMap(tagExp, options);\n }\n currentNode.addChild(childNode);\n }else{//opening tag\n\n const childNode = new xmlNode( tagName, currentNode );\n if (options.stopNodes.length && options.stopNodes.includes(childNode.tagname)) {\n childNode.startIndex=closeIndex;\n }\n if(tagName !== tagExp && shouldBuildAttributesMap){\n childNode.attrsMap = buildAttributesMap(tagExp, options);\n }\n currentNode.addChild(childNode);\n currentNode = childNode;\n }\n textData = \"\";\n i = closeIndex;\n }\n }else{\n textData += xmlData[i];\n }\n }\n return xmlObj;\n}\n\nfunction closingIndexForOpeningTag(data, i){\n let attrBoundary;\n let tagExp = \"\";\n for (let index = i; index < data.length; index++) {\n let ch = data[index];\n if (attrBoundary) {\n if (ch === attrBoundary) attrBoundary = \"\";//reset\n } else if (ch === '\"' || ch === \"'\") {\n attrBoundary = ch;\n } else if (ch === '>') {\n return {\n data: tagExp,\n index: index\n }\n } else if (ch === '\\t') {\n ch = \" \"\n }\n tagExp += ch;\n }\n}\n\nfunction findClosingIndex(xmlData, str, i, errMsg){\n const closingIndex = xmlData.indexOf(str, i);\n if(closingIndex === -1){\n throw new Error(errMsg)\n }else{\n return closingIndex + str.length - 1;\n }\n}\n\nexports.getTraversalObj = getTraversalObj;\n\n\n//# sourceURL=webpack:///./node_modules/fast-xml-parser/src/xmlstr2xmlnode.js?"); /***/ }), /***/ "./node_modules/fflate/esm/browser.js": /*!********************************************!*\ !*** ./node_modules/fflate/esm/browser.js ***! \********************************************/ /*! exports provided: FlateErrorCode, Deflate, AsyncDeflate, deflate, deflateSync, Inflate, AsyncInflate, inflate, inflateSync, Gzip, AsyncGzip, gzip, gzipSync, Gunzip, AsyncGunzip, gunzip, gunzipSync, Zlib, AsyncZlib, zlib, zlibSync, Unzlib, AsyncUnzlib, unzlib, unzlibSync, compress, AsyncCompress, compressSync, Compress, Decompress, AsyncDecompress, decompress, decompressSync, DecodeUTF8, EncodeUTF8, strToU8, strFromU8, ZipPassThrough, ZipDeflate, AsyncZipDeflate, Zip, zip, zipSync, UnzipPassThrough, UnzipInflate, AsyncUnzipInflate, Unzip, unzip, unzipSync */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FlateErrorCode\", function() { return FlateErrorCode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Deflate\", function() { return Deflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncDeflate\", function() { return AsyncDeflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deflate\", function() { return deflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deflateSync\", function() { return deflateSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Inflate\", function() { return Inflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncInflate\", function() { return AsyncInflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"inflate\", function() { return inflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"inflateSync\", function() { return inflateSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Gzip\", function() { return Gzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncGzip\", function() { return AsyncGzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"gzip\", function() { return gzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"gzipSync\", function() { return gzipSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Gunzip\", function() { return Gunzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncGunzip\", function() { return AsyncGunzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"gunzip\", function() { return gunzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"gunzipSync\", function() { return gunzipSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Zlib\", function() { return Zlib; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncZlib\", function() { return AsyncZlib; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"zlib\", function() { return zlib; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"zlibSync\", function() { return zlibSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Unzlib\", function() { return Unzlib; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncUnzlib\", function() { return AsyncUnzlib; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unzlib\", function() { return unzlib; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unzlibSync\", function() { return unzlibSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"compress\", function() { return gzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncCompress\", function() { return AsyncGzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"compressSync\", function() { return gzipSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Compress\", function() { return Gzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Decompress\", function() { return Decompress; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncDecompress\", function() { return AsyncDecompress; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decompress\", function() { return decompress; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decompressSync\", function() { return decompressSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DecodeUTF8\", function() { return DecodeUTF8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EncodeUTF8\", function() { return EncodeUTF8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strToU8\", function() { return strToU8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"strFromU8\", function() { return strFromU8; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ZipPassThrough\", function() { return ZipPassThrough; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ZipDeflate\", function() { return ZipDeflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncZipDeflate\", function() { return AsyncZipDeflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Zip\", function() { return Zip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"zip\", function() { return zip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"zipSync\", function() { return zipSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnzipPassThrough\", function() { return UnzipPassThrough; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnzipInflate\", function() { return UnzipInflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AsyncUnzipInflate\", function() { return AsyncUnzipInflate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Unzip\", function() { return Unzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unzip\", function() { return unzip; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unzipSync\", function() { return unzipSync; });\n// DEFLATE is a complex format; to read this code, you should probably check the RFC first:\n// https://tools.ietf.org/html/rfc1951\n// You may also wish to take a look at the guide I made about this program:\n// https://gist.github.com/101arrowz/253f31eb5abc3d9275ab943003ffecad\n// Some of the following code is similar to that of UZIP.js:\n// https://github.com/photopea/UZIP.js\n// However, the vast majority of the codebase has diverged from UZIP.js to increase performance and reduce bundle size.\n// Sometimes 0 will appear where -1 would be more appropriate. This is because using a uint\n// is better for memory in most engines (I *think*).\nvar ch2 = {};\nvar wk = (function (c, id, msg, transfer, cb) {\n var w = new Worker(ch2[id] || (ch2[id] = URL.createObjectURL(new Blob([\n c + ';addEventListener(\"error\",function(e){e=e.error;postMessage({$e$:[e.message,e.code,e.stack]})})'\n ], { type: 'text/javascript' }))));\n w.onmessage = function (e) {\n var d = e.data, ed = d.$e$;\n if (ed) {\n var err = new Error(ed[0]);\n err['code'] = ed[1];\n err.stack = ed[2];\n cb(err, null);\n }\n else\n cb(null, d);\n };\n w.postMessage(msg, transfer);\n return w;\n});\n\n// aliases for shorter compressed code (most minifers don't do this)\nvar u8 = Uint8Array, u16 = Uint16Array, u32 = Uint32Array;\n// fixed length extra bits\nvar fleb = new u8([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, /* unused */ 0, 0, /* impossible */ 0]);\n// fixed distance extra bits\n// see fleb note\nvar fdeb = new u8([0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, /* unused */ 0, 0]);\n// code length index map\nvar clim = new u8([16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15]);\n// get base, reverse index map from extra bits\nvar freb = function (eb, start) {\n var b = new u16(31);\n for (var i = 0; i < 31; ++i) {\n b[i] = start += 1 << eb[i - 1];\n }\n // numbers here are at max 18 bits\n var r = new u32(b[30]);\n for (var i = 1; i < 30; ++i) {\n for (var j = b[i]; j < b[i + 1]; ++j) {\n r[j] = ((j - b[i]) << 5) | i;\n }\n }\n return [b, r];\n};\nvar _a = freb(fleb, 2), fl = _a[0], revfl = _a[1];\n// we can ignore the fact that the other numbers are wrong; they never happen anyway\nfl[28] = 258, revfl[258] = 28;\nvar _b = freb(fdeb, 0), fd = _b[0], revfd = _b[1];\n// map of value to reverse (assuming 16 bits)\nvar rev = new u16(32768);\nfor (var i = 0; i < 32768; ++i) {\n // reverse table algorithm from SO\n var x = ((i & 0xAAAA) >>> 1) | ((i & 0x5555) << 1);\n x = ((x & 0xCCCC) >>> 2) | ((x & 0x3333) << 2);\n x = ((x & 0xF0F0) >>> 4) | ((x & 0x0F0F) << 4);\n rev[i] = (((x & 0xFF00) >>> 8) | ((x & 0x00FF) << 8)) >>> 1;\n}\n// create huffman tree from u8 \"map\": index -> code length for code index\n// mb (max bits) must be at most 15\n// TODO: optimize/split up?\nvar hMap = (function (cd, mb, r) {\n var s = cd.length;\n // index\n var i = 0;\n // u16 \"map\": index -> # of codes with bit length = index\n var l = new u16(mb);\n // length of cd must be 288 (total # of codes)\n for (; i < s; ++i) {\n if (cd[i])\n ++l[cd[i] - 1];\n }\n // u16 \"map\": index -> minimum code for bit length = index\n var le = new u16(mb);\n for (i = 0; i < mb; ++i) {\n le[i] = (le[i - 1] + l[i - 1]) << 1;\n }\n var co;\n if (r) {\n // u16 \"map\": index -> number of actual bits, symbol for code\n co = new u16(1 << mb);\n // bits to remove for reverser\n var rvb = 15 - mb;\n for (i = 0; i < s; ++i) {\n // ignore 0 lengths\n if (cd[i]) {\n // num encoding both symbol and bits read\n var sv = (i << 4) | cd[i];\n // free bits\n var r_1 = mb - cd[i];\n // start value\n var v = le[cd[i] - 1]++ << r_1;\n // m is end value\n for (var m = v | ((1 << r_1) - 1); v <= m; ++v) {\n // every 16 bit value starting with the code yields the same result\n co[rev[v] >>> rvb] = sv;\n }\n }\n }\n }\n else {\n co = new u16(s);\n for (i = 0; i < s; ++i) {\n if (cd[i]) {\n co[i] = rev[le[cd[i] - 1]++] >>> (15 - cd[i]);\n }\n }\n }\n return co;\n});\n// fixed length tree\nvar flt = new u8(288);\nfor (var i = 0; i < 144; ++i)\n flt[i] = 8;\nfor (var i = 144; i < 256; ++i)\n flt[i] = 9;\nfor (var i = 256; i < 280; ++i)\n flt[i] = 7;\nfor (var i = 280; i < 288; ++i)\n flt[i] = 8;\n// fixed distance tree\nvar fdt = new u8(32);\nfor (var i = 0; i < 32; ++i)\n fdt[i] = 5;\n// fixed length map\nvar flm = /*#__PURE__*/ hMap(flt, 9, 0), flrm = /*#__PURE__*/ hMap(flt, 9, 1);\n// fixed distance map\nvar fdm = /*#__PURE__*/ hMap(fdt, 5, 0), fdrm = /*#__PURE__*/ hMap(fdt, 5, 1);\n// find max of array\nvar max = function (a) {\n var m = a[0];\n for (var i = 1; i < a.length; ++i) {\n if (a[i] > m)\n m = a[i];\n }\n return m;\n};\n// read d, starting at bit p and mask with m\nvar bits = function (d, p, m) {\n var o = (p / 8) | 0;\n return ((d[o] | (d[o + 1] << 8)) >> (p & 7)) & m;\n};\n// read d, starting at bit p continuing for at least 16 bits\nvar bits16 = function (d, p) {\n var o = (p / 8) | 0;\n return ((d[o] | (d[o + 1] << 8) | (d[o + 2] << 16)) >> (p & 7));\n};\n// get end of byte\nvar shft = function (p) { return ((p + 7) / 8) | 0; };\n// typed array slice - allows garbage collector to free original reference,\n// while being more compatible than .slice\nvar slc = function (v, s, e) {\n if (s == null || s < 0)\n s = 0;\n if (e == null || e > v.length)\n e = v.length;\n // can't use .constructor in case user-supplied\n var n = new (v.BYTES_PER_ELEMENT == 2 ? u16 : v.BYTES_PER_ELEMENT == 4 ? u32 : u8)(e - s);\n n.set(v.subarray(s, e));\n return n;\n};\n/**\n * Codes for errors generated within this library\n */\nvar FlateErrorCode = {\n UnexpectedEOF: 0,\n InvalidBlockType: 1,\n InvalidLengthLiteral: 2,\n InvalidDistance: 3,\n StreamFinished: 4,\n NoStreamHandler: 5,\n InvalidHeader: 6,\n NoCallback: 7,\n InvalidUTF8: 8,\n ExtraFieldTooLong: 9,\n InvalidDate: 10,\n FilenameTooLong: 11,\n StreamFinishing: 12,\n InvalidZipData: 13,\n UnknownCompressionMethod: 14\n};\n// error codes\nvar ec = [\n 'unexpected EOF',\n 'invalid block type',\n 'invalid length/literal',\n 'invalid distance',\n 'stream finished',\n 'no stream handler',\n ,\n 'no callback',\n 'invalid UTF-8 data',\n 'extra field too long',\n 'date not in range 1980-2099',\n 'filename too long',\n 'stream finishing',\n 'invalid zip data'\n // determined by unknown compression method\n];\n;\nvar err = function (ind, msg, nt) {\n var e = new Error(msg || ec[ind]);\n e.code = ind;\n if (Error.captureStackTrace)\n Error.captureStackTrace(e, err);\n if (!nt)\n throw e;\n return e;\n};\n// expands raw DEFLATE data\nvar inflt = function (dat, buf, st) {\n // source length\n var sl = dat.length;\n if (!sl || (st && st.f && !st.l))\n return buf || new u8(0);\n // have to estimate size\n var noBuf = !buf || st;\n // no state\n var noSt = !st || st.i;\n if (!st)\n st = {};\n // Assumes roughly 33% compression ratio average\n if (!buf)\n buf = new u8(sl * 3);\n // ensure buffer can fit at least l elements\n var cbuf = function (l) {\n var bl = buf.length;\n // need to increase size to fit\n if (l > bl) {\n // Double or set to necessary, whichever is greater\n var nbuf = new u8(Math.max(bl * 2, l));\n nbuf.set(buf);\n buf = nbuf;\n }\n };\n // last chunk bitpos bytes\n var final = st.f || 0, pos = st.p || 0, bt = st.b || 0, lm = st.l, dm = st.d, lbt = st.m, dbt = st.n;\n // total bits\n var tbts = sl * 8;\n do {\n if (!lm) {\n // BFINAL - this is only 1 when last chunk is next\n final = bits(dat, pos, 1);\n // type: 0 = no compression, 1 = fixed huffman, 2 = dynamic huffman\n var type = bits(dat, pos + 1, 3);\n pos += 3;\n if (!type) {\n // go to end of byte boundary\n var s = shft(pos) + 4, l = dat[s - 4] | (dat[s - 3] << 8), t = s + l;\n if (t > sl) {\n if (noSt)\n err(0);\n break;\n }\n // ensure size\n if (noBuf)\n cbuf(bt + l);\n // Copy over uncompressed data\n buf.set(dat.subarray(s, t), bt);\n // Get new bitpos, update byte count\n st.b = bt += l, st.p = pos = t * 8, st.f = final;\n continue;\n }\n else if (type == 1)\n lm = flrm, dm = fdrm, lbt = 9, dbt = 5;\n else if (type == 2) {\n // literal lengths\n var hLit = bits(dat, pos, 31) + 257, hcLen = bits(dat, pos + 10, 15) + 4;\n var tl = hLit + bits(dat, pos + 5, 31) + 1;\n pos += 14;\n // length+distance tree\n var ldt = new u8(tl);\n // code length tree\n var clt = new u8(19);\n for (var i = 0; i < hcLen; ++i) {\n // use index map to get real code\n clt[clim[i]] = bits(dat, pos + i * 3, 7);\n }\n pos += hcLen * 3;\n // code lengths bits\n var clb = max(clt), clbmsk = (1 << clb) - 1;\n // code lengths map\n var clm = hMap(clt, clb, 1);\n for (var i = 0; i < tl;) {\n var r = clm[bits(dat, pos, clbmsk)];\n // bits read\n pos += r & 15;\n // symbol\n var s = r >>> 4;\n // code length to copy\n if (s < 16) {\n ldt[i++] = s;\n }\n else {\n // copy count\n var c = 0, n = 0;\n if (s == 16)\n n = 3 + bits(dat, pos, 3), pos += 2, c = ldt[i - 1];\n else if (s == 17)\n n = 3 + bits(dat, pos, 7), pos += 3;\n else if (s == 18)\n n = 11 + bits(dat, pos, 127), pos += 7;\n while (n--)\n ldt[i++] = c;\n }\n }\n // length tree distance tree\n var lt = ldt.subarray(0, hLit), dt = ldt.subarray(hLit);\n // max length bits\n lbt = max(lt);\n // max dist bits\n dbt = max(dt);\n lm = hMap(lt, lbt, 1);\n dm = hMap(dt, dbt, 1);\n }\n else\n err(1);\n if (pos > tbts) {\n if (noSt)\n err(0);\n break;\n }\n }\n // Make sure the buffer can hold this + the largest possible addition\n // Maximum chunk size (practically, theoretically infinite) is 2^17;\n if (noBuf)\n cbuf(bt + 131072);\n var lms = (1 << lbt) - 1, dms = (1 << dbt) - 1;\n var lpos = pos;\n for (;; lpos = pos) {\n // bits read, code\n var c = lm[bits16(dat, pos) & lms], sym = c >>> 4;\n pos += c & 15;\n if (pos > tbts) {\n if (noSt)\n err(0);\n break;\n }\n if (!c)\n err(2);\n if (sym < 256)\n buf[bt++] = sym;\n else if (sym == 256) {\n lpos = pos, lm = null;\n break;\n }\n else {\n var add = sym - 254;\n // no extra bits needed if less\n if (sym > 264) {\n // index\n var i = sym - 257, b = fleb[i];\n add = bits(dat, pos, (1 << b) - 1) + fl[i];\n pos += b;\n }\n // dist\n var d = dm[bits16(dat, pos) & dms], dsym = d >>> 4;\n if (!d)\n err(3);\n pos += d & 15;\n var dt = fd[dsym];\n if (dsym > 3) {\n var b = fdeb[dsym];\n dt += bits16(dat, pos) & ((1 << b) - 1), pos += b;\n }\n if (pos > tbts) {\n if (noSt)\n err(0);\n break;\n }\n if (noBuf)\n cbuf(bt + 131072);\n var end = bt + add;\n for (; bt < end; bt += 4) {\n buf[bt] = buf[bt - dt];\n buf[bt + 1] = buf[bt + 1 - dt];\n buf[bt + 2] = buf[bt + 2 - dt];\n buf[bt + 3] = buf[bt + 3 - dt];\n }\n bt = end;\n }\n }\n st.l = lm, st.p = lpos, st.b = bt, st.f = final;\n if (lm)\n final = 1, st.m = lbt, st.d = dm, st.n = dbt;\n } while (!final);\n return bt == buf.length ? buf : slc(buf, 0, bt);\n};\n// starting at p, write the minimum number of bits that can hold v to d\nvar wbits = function (d, p, v) {\n v <<= p & 7;\n var o = (p / 8) | 0;\n d[o] |= v;\n d[o + 1] |= v >>> 8;\n};\n// starting at p, write the minimum number of bits (>8) that can hold v to d\nvar wbits16 = function (d, p, v) {\n v <<= p & 7;\n var o = (p / 8) | 0;\n d[o] |= v;\n d[o + 1] |= v >>> 8;\n d[o + 2] |= v >>> 16;\n};\n// creates code lengths from a frequency table\nvar hTree = function (d, mb) {\n // Need extra info to make a tree\n var t = [];\n for (var i = 0; i < d.length; ++i) {\n if (d[i])\n t.push({ s: i, f: d[i] });\n }\n var s = t.length;\n var t2 = t.slice();\n if (!s)\n return [et, 0];\n if (s == 1) {\n var v = new u8(t[0].s + 1);\n v[t[0].s] = 1;\n return [v, 1];\n }\n t.sort(function (a, b) { return a.f - b.f; });\n // after i2 reaches last ind, will be stopped\n // freq must be greater than largest possible number of symbols\n t.push({ s: -1, f: 25001 });\n var l = t[0], r = t[1], i0 = 0, i1 = 1, i2 = 2;\n t[0] = { s: -1, f: l.f + r.f, l: l, r: r };\n // efficient algorithm from UZIP.js\n // i0 is lookbehind, i2 is lookahead - after processing two low-freq\n // symbols that combined have high freq, will start processing i2 (high-freq,\n // non-composite) symbols instead\n // see https://reddit.com/r/photopea/comments/ikekht/uzipjs_questions/\n while (i1 != s - 1) {\n l = t[t[i0].f < t[i2].f ? i0++ : i2++];\n r = t[i0 != i1 && t[i0].f < t[i2].f ? i0++ : i2++];\n t[i1++] = { s: -1, f: l.f + r.f, l: l, r: r };\n }\n var maxSym = t2[0].s;\n for (var i = 1; i < s; ++i) {\n if (t2[i].s > maxSym)\n maxSym = t2[i].s;\n }\n // code lengths\n var tr = new u16(maxSym + 1);\n // max bits in tree\n var mbt = ln(t[i1 - 1], tr, 0);\n if (mbt > mb) {\n // more algorithms from UZIP.js\n // TODO: find out how this code works (debt)\n // ind debt\n var i = 0, dt = 0;\n // left cost\n var lft = mbt - mb, cst = 1 << lft;\n t2.sort(function (a, b) { return tr[b.s] - tr[a.s] || a.f - b.f; });\n for (; i < s; ++i) {\n var i2_1 = t2[i].s;\n if (tr[i2_1] > mb) {\n dt += cst - (1 << (mbt - tr[i2_1]));\n tr[i2_1] = mb;\n }\n else\n break;\n }\n dt >>>= lft;\n while (dt > 0) {\n var i2_2 = t2[i].s;\n if (tr[i2_2] < mb)\n dt -= 1 << (mb - tr[i2_2]++ - 1);\n else\n ++i;\n }\n for (; i >= 0 && dt; --i) {\n var i2_3 = t2[i].s;\n if (tr[i2_3] == mb) {\n --tr[i2_3];\n ++dt;\n }\n }\n mbt = mb;\n }\n return [new u8(tr), mbt];\n};\n// get the max length and assign length codes\nvar ln = function (n, l, d) {\n return n.s == -1\n ? Math.max(ln(n.l, l, d + 1), ln(n.r, l, d + 1))\n : (l[n.s] = d);\n};\n// length codes generation\nvar lc = function (c) {\n var s = c.length;\n // Note that the semicolon was intentional\n while (s && !c[--s])\n ;\n var cl = new u16(++s);\n // ind num streak\n var cli = 0, cln = c[0], cls = 1;\n var w = function (v) { cl[cli++] = v; };\n for (var i = 1; i <= s; ++i) {\n if (c[i] == cln && i != s)\n ++cls;\n else {\n if (!cln && cls > 2) {\n for (; cls > 138; cls -= 138)\n w(32754);\n if (cls > 2) {\n w(cls > 10 ? ((cls - 11) << 5) | 28690 : ((cls - 3) << 5) | 12305);\n cls = 0;\n }\n }\n else if (cls > 3) {\n w(cln), --cls;\n for (; cls > 6; cls -= 6)\n w(8304);\n if (cls > 2)\n w(((cls - 3) << 5) | 8208), cls = 0;\n }\n while (cls--)\n w(cln);\n cls = 1;\n cln = c[i];\n }\n }\n return [cl.subarray(0, cli), s];\n};\n// calculate the length of output from tree, code lengths\nvar clen = function (cf, cl) {\n var l = 0;\n for (var i = 0; i < cl.length; ++i)\n l += cf[i] * cl[i];\n return l;\n};\n// writes a fixed block\n// returns the new bit pos\nvar wfblk = function (out, pos, dat) {\n // no need to write 00 as type: TypedArray defaults to 0\n var s = dat.length;\n var o = shft(pos + 2);\n out[o] = s & 255;\n out[o + 1] = s >>> 8;\n out[o + 2] = out[o] ^ 255;\n out[o + 3] = out[o + 1] ^ 255;\n for (var i = 0; i < s; ++i)\n out[o + i + 4] = dat[i];\n return (o + 4 + s) * 8;\n};\n// writes a block\nvar wblk = function (dat, out, final, syms, lf, df, eb, li, bs, bl, p) {\n wbits(out, p++, final);\n ++lf[256];\n var _a = hTree(lf, 15), dlt = _a[0], mlb = _a[1];\n var _b = hTree(df, 15), ddt = _b[0], mdb = _b[1];\n var _c = lc(dlt), lclt = _c[0], nlc = _c[1];\n var _d = lc(ddt), lcdt = _d[0], ndc = _d[1];\n var lcfreq = new u16(19);\n for (var i = 0; i < lclt.length; ++i)\n lcfreq[lclt[i] & 31]++;\n for (var i = 0; i < lcdt.length; ++i)\n lcfreq[lcdt[i] & 31]++;\n var _e = hTree(lcfreq, 7), lct = _e[0], mlcb = _e[1];\n var nlcc = 19;\n for (; nlcc > 4 && !lct[clim[nlcc - 1]]; --nlcc)\n ;\n var flen = (bl + 5) << 3;\n var ftlen = clen(lf, flt) + clen(df, fdt) + eb;\n var dtlen = clen(lf, dlt) + clen(df, ddt) + eb + 14 + 3 * nlcc + clen(lcfreq, lct) + (2 * lcfreq[16] + 3 * lcfreq[17] + 7 * lcfreq[18]);\n if (flen <= ftlen && flen <= dtlen)\n return wfblk(out, p, dat.subarray(bs, bs + bl));\n var lm, ll, dm, dl;\n wbits(out, p, 1 + (dtlen < ftlen)), p += 2;\n if (dtlen < ftlen) {\n lm = hMap(dlt, mlb, 0), ll = dlt, dm = hMap(ddt, mdb, 0), dl = ddt;\n var llm = hMap(lct, mlcb, 0);\n wbits(out, p, nlc - 257);\n wbits(out, p + 5, ndc - 1);\n wbits(out, p + 10, nlcc - 4);\n p += 14;\n for (var i = 0; i < nlcc; ++i)\n wbits(out, p + 3 * i, lct[clim[i]]);\n p += 3 * nlcc;\n var lcts = [lclt, lcdt];\n for (var it = 0; it < 2; ++it) {\n var clct = lcts[it];\n for (var i = 0; i < clct.length; ++i) {\n var len = clct[i] & 31;\n wbits(out, p, llm[len]), p += lct[len];\n if (len > 15)\n wbits(out, p, (clct[i] >>> 5) & 127), p += clct[i] >>> 12;\n }\n }\n }\n else {\n lm = flm, ll = flt, dm = fdm, dl = fdt;\n }\n for (var i = 0; i < li; ++i) {\n if (syms[i] > 255) {\n var len = (syms[i] >>> 18) & 31;\n wbits16(out, p, lm[len + 257]), p += ll[len + 257];\n if (len > 7)\n wbits(out, p, (syms[i] >>> 23) & 31), p += fleb[len];\n var dst = syms[i] & 31;\n wbits16(out, p, dm[dst]), p += dl[dst];\n if (dst > 3)\n wbits16(out, p, (syms[i] >>> 5) & 8191), p += fdeb[dst];\n }\n else {\n wbits16(out, p, lm[syms[i]]), p += ll[syms[i]];\n }\n }\n wbits16(out, p, lm[256]);\n return p + ll[256];\n};\n// deflate options (nice << 13) | chain\nvar deo = /*#__PURE__*/ new u32([65540, 131080, 131088, 131104, 262176, 1048704, 1048832, 2114560, 2117632]);\n// empty\nvar et = /*#__PURE__*/ new u8(0);\n// compresses data into a raw DEFLATE buffer\nvar dflt = function (dat, lvl, plvl, pre, post, lst) {\n var s = dat.length;\n var o = new u8(pre + s + 5 * (1 + Math.ceil(s / 7000)) + post);\n // writing to this writes to the output buffer\n var w = o.subarray(pre, o.length - post);\n var pos = 0;\n if (!lvl || s < 8) {\n for (var i = 0; i <= s; i += 65535) {\n // end\n var e = i + 65535;\n if (e >= s) {\n // write final block\n w[pos >> 3] = lst;\n }\n pos = wfblk(w, pos + 1, dat.subarray(i, e));\n }\n }\n else {\n var opt = deo[lvl - 1];\n var n = opt >>> 13, c = opt & 8191;\n var msk_1 = (1 << plvl) - 1;\n // prev 2-byte val map curr 2-byte val map\n var prev = new u16(32768), head = new u16(msk_1 + 1);\n var bs1_1 = Math.ceil(plvl / 3), bs2_1 = 2 * bs1_1;\n var hsh = function (i) { return (dat[i] ^ (dat[i + 1] << bs1_1) ^ (dat[i + 2] << bs2_1)) & msk_1; };\n // 24576 is an arbitrary number of maximum symbols per block\n // 424 buffer for last block\n var syms = new u32(25000);\n // length/literal freq distance freq\n var lf = new u16(288), df = new u16(32);\n // l/lcnt exbits index l/lind waitdx bitpos\n var lc_1 = 0, eb = 0, i = 0, li = 0, wi = 0, bs = 0;\n for (; i < s; ++i) {\n // hash value\n // deopt when i > s - 3 - at end, deopt acceptable\n var hv = hsh(i);\n // index mod 32768 previous index mod\n var imod = i & 32767, pimod = head[hv];\n prev[imod] = pimod;\n head[hv] = imod;\n // We always should modify head and prev, but only add symbols if\n // this data is not yet processed (\"wait\" for wait index)\n if (wi <= i) {\n // bytes remaining\n var rem = s - i;\n if ((lc_1 > 7000 || li > 24576) && rem > 423) {\n pos = wblk(dat, w, 0, syms, lf, df, eb, li, bs, i - bs, pos);\n li = lc_1 = eb = 0, bs = i;\n for (var j = 0; j < 286; ++j)\n lf[j] = 0;\n for (var j = 0; j < 30; ++j)\n df[j] = 0;\n }\n // len dist chain\n var l = 2, d = 0, ch_1 = c, dif = (imod - pimod) & 32767;\n if (rem > 2 && hv == hsh(i - dif)) {\n var maxn = Math.min(n, rem) - 1;\n var maxd = Math.min(32767, i);\n // max possible length\n // not capped at dif because decompressors implement \"rolling\" index population\n var ml = Math.min(258, rem);\n while (dif <= maxd && --ch_1 && imod != pimod) {\n if (dat[i + l] == dat[i + l - dif]) {\n var nl = 0;\n for (; nl < ml && dat[i + nl] == dat[i + nl - dif]; ++nl)\n ;\n if (nl > l) {\n l = nl, d = dif;\n // break out early when we reach \"nice\" (we are satisfied enough)\n if (nl > maxn)\n break;\n // now, find the rarest 2-byte sequence within this\n // length of literals and search for that instead.\n // Much faster than just using the start\n var mmd = Math.min(dif, nl - 2);\n var md = 0;\n for (var j = 0; j < mmd; ++j) {\n var ti = (i - dif + j + 32768) & 32767;\n var pti = prev[ti];\n var cd = (ti - pti + 32768) & 32767;\n if (cd > md)\n md = cd, pimod = ti;\n }\n }\n }\n // check the previous match\n imod = pimod, pimod = prev[imod];\n dif += (imod - pimod + 32768) & 32767;\n }\n }\n // d will be nonzero only when a match was found\n if (d) {\n // store both dist and len data in one Uint32\n // Make sure this is recognized as a len/dist with 28th bit (2^28)\n syms[li++] = 268435456 | (revfl[l] << 18) | revfd[d];\n var lin = revfl[l] & 31, din = revfd[d] & 31;\n eb += fleb[lin] + fdeb[din];\n ++lf[257 + lin];\n ++df[din];\n wi = i + l;\n ++lc_1;\n }\n else {\n syms[li++] = dat[i];\n ++lf[dat[i]];\n }\n }\n }\n pos = wblk(dat, w, lst, syms, lf, df, eb, li, bs, i - bs, pos);\n // this is the easiest way to avoid needing to maintain state\n if (!lst && pos & 7)\n pos = wfblk(w, pos + 1, et);\n }\n return slc(o, 0, pre + shft(pos) + post);\n};\n// CRC32 table\nvar crct = /*#__PURE__*/ (function () {\n var t = new Int32Array(256);\n for (var i = 0; i < 256; ++i) {\n var c = i, k = 9;\n while (--k)\n c = ((c & 1) && -306674912) ^ (c >>> 1);\n t[i] = c;\n }\n return t;\n})();\n// CRC32\nvar crc = function () {\n var c = -1;\n return {\n p: function (d) {\n // closures have awful performance\n var cr = c;\n for (var i = 0; i < d.length; ++i)\n cr = crct[(cr & 255) ^ d[i]] ^ (cr >>> 8);\n c = cr;\n },\n d: function () { return ~c; }\n };\n};\n// Alder32\nvar adler = function () {\n var a = 1, b = 0;\n return {\n p: function (d) {\n // closures have awful performance\n var n = a, m = b;\n var l = d.length | 0;\n for (var i = 0; i != l;) {\n var e = Math.min(i + 2655, l);\n for (; i < e; ++i)\n m += n += d[i];\n n = (n & 65535) + 15 * (n >> 16), m = (m & 65535) + 15 * (m >> 16);\n }\n a = n, b = m;\n },\n d: function () {\n a %= 65521, b %= 65521;\n return (a & 255) << 24 | (a >>> 8) << 16 | (b & 255) << 8 | (b >>> 8);\n }\n };\n};\n;\n// deflate with opts\nvar dopt = function (dat, opt, pre, post, st) {\n return dflt(dat, opt.level == null ? 6 : opt.level, opt.mem == null ? Math.ceil(Math.max(8, Math.min(13, Math.log(dat.length))) * 1.5) : (12 + opt.mem), pre, post, !st);\n};\n// Walmart object spread\nvar mrg = function (a, b) {\n var o = {};\n for (var k in a)\n o[k] = a[k];\n for (var k in b)\n o[k] = b[k];\n return o;\n};\n// worker clone\n// This is possibly the craziest part of the entire codebase, despite how simple it may seem.\n// The only parameter to this function is a closure that returns an array of variables outside of the function scope.\n// We're going to try to figure out the variable names used in the closure as strings because that is crucial for workerization.\n// We will return an object mapping of true variable name to value (basically, the current scope as a JS object).\n// The reason we can't just use the original variable names is minifiers mangling the toplevel scope.\n// This took me three weeks to figure out how to do.\nvar wcln = function (fn, fnStr, td) {\n var dt = fn();\n var st = fn.toString();\n var ks = st.slice(st.indexOf('[') + 1, st.lastIndexOf(']')).replace(/\\s+/g, '').split(',');\n for (var i = 0; i < dt.length; ++i) {\n var v = dt[i], k = ks[i];\n if (typeof v == 'function') {\n fnStr += ';' + k + '=';\n var st_1 = v.toString();\n if (v.prototype) {\n // for global objects\n if (st_1.indexOf('[native code]') != -1) {\n var spInd = st_1.indexOf(' ', 8) + 1;\n fnStr += st_1.slice(spInd, st_1.indexOf('(', spInd));\n }\n else {\n fnStr += st_1;\n for (var t in v.prototype)\n fnStr += ';' + k + '.prototype.' + t + '=' + v.prototype[t].toString();\n }\n }\n else\n fnStr += st_1;\n }\n else\n td[k] = v;\n }\n return [fnStr, td];\n};\nvar ch = [];\n// clone bufs\nvar cbfs = function (v) {\n var tl = [];\n for (var k in v) {\n if (v[k].buffer) {\n tl.push((v[k] = new v[k].constructor(v[k])).buffer);\n }\n }\n return tl;\n};\n// use a worker to execute code\nvar wrkr = function (fns, init, id, cb) {\n var _a;\n if (!ch[id]) {\n var fnStr = '', td_1 = {}, m = fns.length - 1;\n for (var i = 0; i < m; ++i)\n _a = wcln(fns[i], fnStr, td_1), fnStr = _a[0], td_1 = _a[1];\n ch[id] = wcln(fns[m], fnStr, td_1);\n }\n var td = mrg({}, ch[id][1]);\n return wk(ch[id][0] + ';onmessage=function(e){for(var k in e.data)self[k]=e.data[k];onmessage=' + init.toString() + '}', id, td, cbfs(td), cb);\n};\n// base async inflate fn\nvar bInflt = function () { return [u8, u16, u32, fleb, fdeb, clim, fl, fd, flrm, fdrm, rev, ec, hMap, max, bits, bits16, shft, slc, err, inflt, inflateSync, pbf, gu8]; };\nvar bDflt = function () { return [u8, u16, u32, fleb, fdeb, clim, revfl, revfd, flm, flt, fdm, fdt, rev, deo, et, hMap, wbits, wbits16, hTree, ln, lc, clen, wfblk, wblk, shft, slc, dflt, dopt, deflateSync, pbf]; };\n// gzip extra\nvar gze = function () { return [gzh, gzhl, wbytes, crc, crct]; };\n// gunzip extra\nvar guze = function () { return [gzs, gzl]; };\n// zlib extra\nvar zle = function () { return [zlh, wbytes, adler]; };\n// unzlib extra\nvar zule = function () { return [zlv]; };\n// post buf\nvar pbf = function (msg) { return postMessage(msg, [msg.buffer]); };\n// get u8\nvar gu8 = function (o) { return o && o.size && new u8(o.size); };\n// async helper\nvar cbify = function (dat, opts, fns, init, id, cb) {\n var w = wrkr(fns, init, id, function (err, dat) {\n w.terminate();\n cb(err, dat);\n });\n w.postMessage([dat, opts], opts.consume ? [dat.buffer] : []);\n return function () { w.terminate(); };\n};\n// auto stream\nvar astrm = function (strm) {\n strm.ondata = function (dat, final) { return postMessage([dat, final], [dat.buffer]); };\n return function (ev) { return strm.push(ev.data[0], ev.data[1]); };\n};\n// async stream attach\nvar astrmify = function (fns, strm, opts, init, id) {\n var t;\n var w = wrkr(fns, init, id, function (err, dat) {\n if (err)\n w.terminate(), strm.ondata.call(strm, err);\n else {\n if (dat[1])\n w.terminate();\n strm.ondata.call(strm, err, dat[0], dat[1]);\n }\n });\n w.postMessage(opts);\n strm.push = function (d, f) {\n if (!strm.ondata)\n err(5);\n if (t)\n strm.ondata(err(4, 0, 1), null, !!f);\n w.postMessage([d, t = f], [d.buffer]);\n };\n strm.terminate = function () { w.terminate(); };\n};\n// read 2 bytes\nvar b2 = function (d, b) { return d[b] | (d[b + 1] << 8); };\n// read 4 bytes\nvar b4 = function (d, b) { return (d[b] | (d[b + 1] << 8) | (d[b + 2] << 16) | (d[b + 3] << 24)) >>> 0; };\nvar b8 = function (d, b) { return b4(d, b) + (b4(d, b + 4) * 4294967296); };\n// write bytes\nvar wbytes = function (d, b, v) {\n for (; v; ++b)\n d[b] = v, v >>>= 8;\n};\n// gzip header\nvar gzh = function (c, o) {\n var fn = o.filename;\n c[0] = 31, c[1] = 139, c[2] = 8, c[8] = o.level < 2 ? 4 : o.level == 9 ? 2 : 0, c[9] = 3; // assume Unix\n if (o.mtime != 0)\n wbytes(c, 4, Math.floor(new Date(o.mtime || Date.now()) / 1000));\n if (fn) {\n c[3] = 8;\n for (var i = 0; i <= fn.length; ++i)\n c[i + 10] = fn.charCodeAt(i);\n }\n};\n// gzip footer: -8 to -4 = CRC, -4 to -0 is length\n// gzip start\nvar gzs = function (d) {\n if (d[0] != 31 || d[1] != 139 || d[2] != 8)\n err(6, 'invalid gzip data');\n var flg = d[3];\n var st = 10;\n if (flg & 4)\n st += d[10] | (d[11] << 8) + 2;\n for (var zs = (flg >> 3 & 1) + (flg >> 4 & 1); zs > 0; zs -= !d[st++])\n ;\n return st + (flg & 2);\n};\n// gzip length\nvar gzl = function (d) {\n var l = d.length;\n return ((d[l - 4] | d[l - 3] << 8 | d[l - 2] << 16) | (d[l - 1] << 24)) >>> 0;\n};\n// gzip header length\nvar gzhl = function (o) { return 10 + ((o.filename && (o.filename.length + 1)) || 0); };\n// zlib header\nvar zlh = function (c, o) {\n var lv = o.level, fl = lv == 0 ? 0 : lv < 6 ? 1 : lv == 9 ? 3 : 2;\n c[0] = 120, c[1] = (fl << 6) | (fl ? (32 - 2 * fl) : 1);\n};\n// zlib valid\nvar zlv = function (d) {\n if ((d[0] & 15) != 8 || (d[0] >>> 4) > 7 || ((d[0] << 8 | d[1]) % 31))\n err(6, 'invalid zlib data');\n if (d[1] & 32)\n err(6, 'invalid zlib data: preset dictionaries not supported');\n};\nfunction AsyncCmpStrm(opts, cb) {\n if (!cb && typeof opts == 'function')\n cb = opts, opts = {};\n this.ondata = cb;\n return opts;\n}\n// zlib footer: -4 to -0 is Adler32\n/**\n * Streaming DEFLATE compression\n */\nvar Deflate = /*#__PURE__*/ (function () {\n function Deflate(opts, cb) {\n if (!cb && typeof opts == 'function')\n cb = opts, opts = {};\n this.ondata = cb;\n this.o = opts || {};\n }\n Deflate.prototype.p = function (c, f) {\n this.ondata(dopt(c, this.o, 0, 0, !f), f);\n };\n /**\n * Pushes a chunk to be deflated\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n Deflate.prototype.push = function (chunk, final) {\n if (!this.ondata)\n err(5);\n if (this.d)\n err(4);\n this.d = final;\n this.p(chunk, final || false);\n };\n return Deflate;\n}());\n\n/**\n * Asynchronous streaming DEFLATE compression\n */\nvar AsyncDeflate = /*#__PURE__*/ (function () {\n function AsyncDeflate(opts, cb) {\n astrmify([\n bDflt,\n function () { return [astrm, Deflate]; }\n ], this, AsyncCmpStrm.call(this, opts, cb), function (ev) {\n var strm = new Deflate(ev.data);\n onmessage = astrm(strm);\n }, 6);\n }\n return AsyncDeflate;\n}());\n\nfunction deflate(data, opts, cb) {\n if (!cb)\n cb = opts, opts = {};\n if (typeof cb != 'function')\n err(7);\n return cbify(data, opts, [\n bDflt,\n ], function (ev) { return pbf(deflateSync(ev.data[0], ev.data[1])); }, 0, cb);\n}\n/**\n * Compresses data with DEFLATE without any wrapper\n * @param data The data to compress\n * @param opts The compression options\n * @returns The deflated version of the data\n */\nfunction deflateSync(data, opts) {\n return dopt(data, opts || {}, 0, 0);\n}\n/**\n * Streaming DEFLATE decompression\n */\nvar Inflate = /*#__PURE__*/ (function () {\n /**\n * Creates an inflation stream\n * @param cb The callback to call whenever data is inflated\n */\n function Inflate(cb) {\n this.s = {};\n this.p = new u8(0);\n this.ondata = cb;\n }\n Inflate.prototype.e = function (c) {\n if (!this.ondata)\n err(5);\n if (this.d)\n err(4);\n var l = this.p.length;\n var n = new u8(l + c.length);\n n.set(this.p), n.set(c, l), this.p = n;\n };\n Inflate.prototype.c = function (final) {\n this.d = this.s.i = final || false;\n var bts = this.s.b;\n var dt = inflt(this.p, this.o, this.s);\n this.ondata(slc(dt, bts, this.s.b), this.d);\n this.o = slc(dt, this.s.b - 32768), this.s.b = this.o.length;\n this.p = slc(this.p, (this.s.p / 8) | 0), this.s.p &= 7;\n };\n /**\n * Pushes a chunk to be inflated\n * @param chunk The chunk to push\n * @param final Whether this is the final chunk\n */\n Inflate.prototype.push = function (chunk, final) {\n this.e(chunk), this.c(final);\n };\n return Inflate;\n}());\n\n/**\n * Asynchronous streaming DEFLATE decompression\n */\nvar AsyncInflate = /*#__PURE__*/ (function () {\n /**\n * Creates an asynchronous inflation stream\n * @param cb The callback to call whenever data is deflated\n */\n function AsyncInflate(cb) {\n this.ondata = cb;\n astrmify([\n bInflt,\n function () { return [astrm, Inflate]; }\n ], this, 0, function () {\n var strm = new Inflate();\n onmessage = astrm(strm);\n }, 7);\n }\n return AsyncInflate;\n}());\n\nfunction inflate(data, opts, cb) {\n if (!cb)\n cb = opts, opts = {};\n if (typeof cb != 'function')\n err(7);\n return cbify(data, opts, [\n bInflt\n ], function (ev) { return pbf(inflateSync(ev.data[0], gu8(ev.data[1]))); }, 1, cb);\n}\n/**\n * Expands DEFLATE data with no wrapper\n * @param data The data to decompress\n * @param out Where to write the data. Saves memory if you know the decompressed size and provide an output buffer of that length.\n * @returns The decompressed version of the data\n */\nfunction inflateSync(data, out) {\n return inflt(data, out);\n}\n// before you yell at me for not just using extends, my reason is that TS inheritance is hard to workerize.\n/**\n * Streaming GZIP compression\n */\nvar Gzip = /*#__PURE__*/ (function () {\n function Gzip(opts, cb) {\n this.c = crc();\n this.l = 0;\n this.v = 1;\n Deflate.call(this, opts, cb);\n }\n /**\n * Pushes a chunk to be GZIPped\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n Gzip.prototype.push = function (chunk, final) {\n Deflate.prototype.push.call(this, chunk, final);\n };\n Gzip.prototype.p = function (c, f) {\n this.c.p(c);\n this.l += c.length;\n var raw = dopt(c, this.o, this.v && gzhl(this.o), f && 8, !f);\n if (this.v)\n gzh(raw, this.o), this.v = 0;\n if (f)\n wbytes(raw, raw.length - 8, this.c.d()), wbytes(raw, raw.length - 4, this.l);\n this.ondata(raw, f);\n };\n return Gzip;\n}());\n\n/**\n * Asynchronous streaming GZIP compression\n */\nvar AsyncGzip = /*#__PURE__*/ (function () {\n function AsyncGzip(opts, cb) {\n astrmify([\n bDflt,\n gze,\n function () { return [astrm, Deflate, Gzip]; }\n ], this, AsyncCmpStrm.call(this, opts, cb), function (ev) {\n var strm = new Gzip(ev.data);\n onmessage = astrm(strm);\n }, 8);\n }\n return AsyncGzip;\n}());\n\nfunction gzip(data, opts, cb) {\n if (!cb)\n cb = opts, opts = {};\n if (typeof cb != 'function')\n err(7);\n return cbify(data, opts, [\n bDflt,\n gze,\n function () { return [gzipSync]; }\n ], function (ev) { return pbf(gzipSync(ev.data[0], ev.data[1])); }, 2, cb);\n}\n/**\n * Compresses data with GZIP\n * @param data The data to compress\n * @param opts The compression options\n * @returns The gzipped version of the data\n */\nfunction gzipSync(data, opts) {\n if (!opts)\n opts = {};\n var c = crc(), l = data.length;\n c.p(data);\n var d = dopt(data, opts, gzhl(opts), 8), s = d.length;\n return gzh(d, opts), wbytes(d, s - 8, c.d()), wbytes(d, s - 4, l), d;\n}\n/**\n * Streaming GZIP decompression\n */\nvar Gunzip = /*#__PURE__*/ (function () {\n /**\n * Creates a GUNZIP stream\n * @param cb The callback to call whenever data is inflated\n */\n function Gunzip(cb) {\n this.v = 1;\n Inflate.call(this, cb);\n }\n /**\n * Pushes a chunk to be GUNZIPped\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n Gunzip.prototype.push = function (chunk, final) {\n Inflate.prototype.e.call(this, chunk);\n if (this.v) {\n var s = this.p.length > 3 ? gzs(this.p) : 4;\n if (s >= this.p.length && !final)\n return;\n this.p = this.p.subarray(s), this.v = 0;\n }\n if (final) {\n if (this.p.length < 8)\n err(6, 'invalid gzip data');\n this.p = this.p.subarray(0, -8);\n }\n // necessary to prevent TS from using the closure value\n // This allows for workerization to function correctly\n Inflate.prototype.c.call(this, final);\n };\n return Gunzip;\n}());\n\n/**\n * Asynchronous streaming GZIP decompression\n */\nvar AsyncGunzip = /*#__PURE__*/ (function () {\n /**\n * Creates an asynchronous GUNZIP stream\n * @param cb The callback to call whenever data is deflated\n */\n function AsyncGunzip(cb) {\n this.ondata = cb;\n astrmify([\n bInflt,\n guze,\n function () { return [astrm, Inflate, Gunzip]; }\n ], this, 0, function () {\n var strm = new Gunzip();\n onmessage = astrm(strm);\n }, 9);\n }\n return AsyncGunzip;\n}());\n\nfunction gunzip(data, opts, cb) {\n if (!cb)\n cb = opts, opts = {};\n if (typeof cb != 'function')\n err(7);\n return cbify(data, opts, [\n bInflt,\n guze,\n function () { return [gunzipSync]; }\n ], function (ev) { return pbf(gunzipSync(ev.data[0])); }, 3, cb);\n}\n/**\n * Expands GZIP data\n * @param data The data to decompress\n * @param out Where to write the data. GZIP already encodes the output size, so providing this doesn't save memory.\n * @returns The decompressed version of the data\n */\nfunction gunzipSync(data, out) {\n return inflt(data.subarray(gzs(data), -8), out || new u8(gzl(data)));\n}\n/**\n * Streaming Zlib compression\n */\nvar Zlib = /*#__PURE__*/ (function () {\n function Zlib(opts, cb) {\n this.c = adler();\n this.v = 1;\n Deflate.call(this, opts, cb);\n }\n /**\n * Pushes a chunk to be zlibbed\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n Zlib.prototype.push = function (chunk, final) {\n Deflate.prototype.push.call(this, chunk, final);\n };\n Zlib.prototype.p = function (c, f) {\n this.c.p(c);\n var raw = dopt(c, this.o, this.v && 2, f && 4, !f);\n if (this.v)\n zlh(raw, this.o), this.v = 0;\n if (f)\n wbytes(raw, raw.length - 4, this.c.d());\n this.ondata(raw, f);\n };\n return Zlib;\n}());\n\n/**\n * Asynchronous streaming Zlib compression\n */\nvar AsyncZlib = /*#__PURE__*/ (function () {\n function AsyncZlib(opts, cb) {\n astrmify([\n bDflt,\n zle,\n function () { return [astrm, Deflate, Zlib]; }\n ], this, AsyncCmpStrm.call(this, opts, cb), function (ev) {\n var strm = new Zlib(ev.data);\n onmessage = astrm(strm);\n }, 10);\n }\n return AsyncZlib;\n}());\n\nfunction zlib(data, opts, cb) {\n if (!cb)\n cb = opts, opts = {};\n if (typeof cb != 'function')\n err(7);\n return cbify(data, opts, [\n bDflt,\n zle,\n function () { return [zlibSync]; }\n ], function (ev) { return pbf(zlibSync(ev.data[0], ev.data[1])); }, 4, cb);\n}\n/**\n * Compress data with Zlib\n * @param data The data to compress\n * @param opts The compression options\n * @returns The zlib-compressed version of the data\n */\nfunction zlibSync(data, opts) {\n if (!opts)\n opts = {};\n var a = adler();\n a.p(data);\n var d = dopt(data, opts, 2, 4);\n return zlh(d, opts), wbytes(d, d.length - 4, a.d()), d;\n}\n/**\n * Streaming Zlib decompression\n */\nvar Unzlib = /*#__PURE__*/ (function () {\n /**\n * Creates a Zlib decompression stream\n * @param cb The callback to call whenever data is inflated\n */\n function Unzlib(cb) {\n this.v = 1;\n Inflate.call(this, cb);\n }\n /**\n * Pushes a chunk to be unzlibbed\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n Unzlib.prototype.push = function (chunk, final) {\n Inflate.prototype.e.call(this, chunk);\n if (this.v) {\n if (this.p.length < 2 && !final)\n return;\n this.p = this.p.subarray(2), this.v = 0;\n }\n if (final) {\n if (this.p.length < 4)\n err(6, 'invalid zlib data');\n this.p = this.p.subarray(0, -4);\n }\n // necessary to prevent TS from using the closure value\n // This allows for workerization to function correctly\n Inflate.prototype.c.call(this, final);\n };\n return Unzlib;\n}());\n\n/**\n * Asynchronous streaming Zlib decompression\n */\nvar AsyncUnzlib = /*#__PURE__*/ (function () {\n /**\n * Creates an asynchronous Zlib decompression stream\n * @param cb The callback to call whenever data is deflated\n */\n function AsyncUnzlib(cb) {\n this.ondata = cb;\n astrmify([\n bInflt,\n zule,\n function () { return [astrm, Inflate, Unzlib]; }\n ], this, 0, function () {\n var strm = new Unzlib();\n onmessage = astrm(strm);\n }, 11);\n }\n return AsyncUnzlib;\n}());\n\nfunction unzlib(data, opts, cb) {\n if (!cb)\n cb = opts, opts = {};\n if (typeof cb != 'function')\n err(7);\n return cbify(data, opts, [\n bInflt,\n zule,\n function () { return [unzlibSync]; }\n ], function (ev) { return pbf(unzlibSync(ev.data[0], gu8(ev.data[1]))); }, 5, cb);\n}\n/**\n * Expands Zlib data\n * @param data The data to decompress\n * @param out Where to write the data. Saves memory if you know the decompressed size and provide an output buffer of that length.\n * @returns The decompressed version of the data\n */\nfunction unzlibSync(data, out) {\n return inflt((zlv(data), data.subarray(2, -4)), out);\n}\n// Default algorithm for compression (used because having a known output size allows faster decompression)\n\n// Default algorithm for compression (used because having a known output size allows faster decompression)\n\n/**\n * Streaming GZIP, Zlib, or raw DEFLATE decompression\n */\nvar Decompress = /*#__PURE__*/ (function () {\n /**\n * Creates a decompression stream\n * @param cb The callback to call whenever data is decompressed\n */\n function Decompress(cb) {\n this.G = Gunzip;\n this.I = Inflate;\n this.Z = Unzlib;\n this.ondata = cb;\n }\n /**\n * Pushes a chunk to be decompressed\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n Decompress.prototype.push = function (chunk, final) {\n if (!this.ondata)\n err(5);\n if (!this.s) {\n if (this.p && this.p.length) {\n var n = new u8(this.p.length + chunk.length);\n n.set(this.p), n.set(chunk, this.p.length);\n }\n else\n this.p = chunk;\n if (this.p.length > 2) {\n var _this_1 = this;\n var cb = function () { _this_1.ondata.apply(_this_1, arguments); };\n this.s = (this.p[0] == 31 && this.p[1] == 139 && this.p[2] == 8)\n ? new this.G(cb)\n : ((this.p[0] & 15) != 8 || (this.p[0] >> 4) > 7 || ((this.p[0] << 8 | this.p[1]) % 31))\n ? new this.I(cb)\n : new this.Z(cb);\n this.s.push(this.p, final);\n this.p = null;\n }\n }\n else\n this.s.push(chunk, final);\n };\n return Decompress;\n}());\n\n/**\n * Asynchronous streaming GZIP, Zlib, or raw DEFLATE decompression\n */\nvar AsyncDecompress = /*#__PURE__*/ (function () {\n /**\n * Creates an asynchronous decompression stream\n * @param cb The callback to call whenever data is decompressed\n */\n function AsyncDecompress(cb) {\n this.G = AsyncGunzip;\n this.I = AsyncInflate;\n this.Z = AsyncUnzlib;\n this.ondata = cb;\n }\n /**\n * Pushes a chunk to be decompressed\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n AsyncDecompress.prototype.push = function (chunk, final) {\n Decompress.prototype.push.call(this, chunk, final);\n };\n return AsyncDecompress;\n}());\n\nfunction decompress(data, opts, cb) {\n if (!cb)\n cb = opts, opts = {};\n if (typeof cb != 'function')\n err(7);\n return (data[0] == 31 && data[1] == 139 && data[2] == 8)\n ? gunzip(data, opts, cb)\n : ((data[0] & 15) != 8 || (data[0] >> 4) > 7 || ((data[0] << 8 | data[1]) % 31))\n ? inflate(data, opts, cb)\n : unzlib(data, opts, cb);\n}\n/**\n * Expands compressed GZIP, Zlib, or raw DEFLATE data, automatically detecting the format\n * @param data The data to decompress\n * @param out Where to write the data. Saves memory if you know the decompressed size and provide an output buffer of that length.\n * @returns The decompressed version of the data\n */\nfunction decompressSync(data, out) {\n return (data[0] == 31 && data[1] == 139 && data[2] == 8)\n ? gunzipSync(data, out)\n : ((data[0] & 15) != 8 || (data[0] >> 4) > 7 || ((data[0] << 8 | data[1]) % 31))\n ? inflateSync(data, out)\n : unzlibSync(data, out);\n}\n// flatten a directory structure\nvar fltn = function (d, p, t, o) {\n for (var k in d) {\n var val = d[k], n = p + k, op = o;\n if (Array.isArray(val))\n op = mrg(o, val[1]), val = val[0];\n if (val instanceof u8)\n t[n] = [val, op];\n else {\n t[n += '/'] = [new u8(0), op];\n fltn(val, n, t, o);\n }\n }\n};\n// text encoder\nvar te = typeof TextEncoder != 'undefined' && /*#__PURE__*/ new TextEncoder();\n// text decoder\nvar td = typeof TextDecoder != 'undefined' && /*#__PURE__*/ new TextDecoder();\n// text decoder stream\nvar tds = 0;\ntry {\n td.decode(et, { stream: true });\n tds = 1;\n}\ncatch (e) { }\n// decode UTF8\nvar dutf8 = function (d) {\n for (var r = '', i = 0;;) {\n var c = d[i++];\n var eb = (c > 127) + (c > 223) + (c > 239);\n if (i + eb > d.length)\n return [r, slc(d, i - 1)];\n if (!eb)\n r += String.fromCharCode(c);\n else if (eb == 3) {\n c = ((c & 15) << 18 | (d[i++] & 63) << 12 | (d[i++] & 63) << 6 | (d[i++] & 63)) - 65536,\n r += String.fromCharCode(55296 | (c >> 10), 56320 | (c & 1023));\n }\n else if (eb & 1)\n r += String.fromCharCode((c & 31) << 6 | (d[i++] & 63));\n else\n r += String.fromCharCode((c & 15) << 12 | (d[i++] & 63) << 6 | (d[i++] & 63));\n }\n};\n/**\n * Streaming UTF-8 decoding\n */\nvar DecodeUTF8 = /*#__PURE__*/ (function () {\n /**\n * Creates a UTF-8 decoding stream\n * @param cb The callback to call whenever data is decoded\n */\n function DecodeUTF8(cb) {\n this.ondata = cb;\n if (tds)\n this.t = new TextDecoder();\n else\n this.p = et;\n }\n /**\n * Pushes a chunk to be decoded from UTF-8 binary\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n DecodeUTF8.prototype.push = function (chunk, final) {\n if (!this.ondata)\n err(5);\n final = !!final;\n if (this.t) {\n this.ondata(this.t.decode(chunk, { stream: true }), final);\n if (final) {\n if (this.t.decode().length)\n err(8);\n this.t = null;\n }\n return;\n }\n if (!this.p)\n err(4);\n var dat = new u8(this.p.length + chunk.length);\n dat.set(this.p);\n dat.set(chunk, this.p.length);\n var _a = dutf8(dat), ch = _a[0], np = _a[1];\n if (final) {\n if (np.length)\n err(8);\n this.p = null;\n }\n else\n this.p = np;\n this.ondata(ch, final);\n };\n return DecodeUTF8;\n}());\n\n/**\n * Streaming UTF-8 encoding\n */\nvar EncodeUTF8 = /*#__PURE__*/ (function () {\n /**\n * Creates a UTF-8 decoding stream\n * @param cb The callback to call whenever data is encoded\n */\n function EncodeUTF8(cb) {\n this.ondata = cb;\n }\n /**\n * Pushes a chunk to be encoded to UTF-8\n * @param chunk The string data to push\n * @param final Whether this is the last chunk\n */\n EncodeUTF8.prototype.push = function (chunk, final) {\n if (!this.ondata)\n err(5);\n if (this.d)\n err(4);\n this.ondata(strToU8(chunk), this.d = final || false);\n };\n return EncodeUTF8;\n}());\n\n/**\n * Converts a string into a Uint8Array for use with compression/decompression methods\n * @param str The string to encode\n * @param latin1 Whether or not to interpret the data as Latin-1. This should\n * not need to be true unless decoding a binary string.\n * @returns The string encoded in UTF-8/Latin-1 binary\n */\nfunction strToU8(str, latin1) {\n if (latin1) {\n var ar_1 = new u8(str.length);\n for (var i = 0; i < str.length; ++i)\n ar_1[i] = str.charCodeAt(i);\n return ar_1;\n }\n if (te)\n return te.encode(str);\n var l = str.length;\n var ar = new u8(str.length + (str.length >> 1));\n var ai = 0;\n var w = function (v) { ar[ai++] = v; };\n for (var i = 0; i < l; ++i) {\n if (ai + 5 > ar.length) {\n var n = new u8(ai + 8 + ((l - i) << 1));\n n.set(ar);\n ar = n;\n }\n var c = str.charCodeAt(i);\n if (c < 128 || latin1)\n w(c);\n else if (c < 2048)\n w(192 | (c >> 6)), w(128 | (c & 63));\n else if (c > 55295 && c < 57344)\n c = 65536 + (c & 1023 << 10) | (str.charCodeAt(++i) & 1023),\n w(240 | (c >> 18)), w(128 | ((c >> 12) & 63)), w(128 | ((c >> 6) & 63)), w(128 | (c & 63));\n else\n w(224 | (c >> 12)), w(128 | ((c >> 6) & 63)), w(128 | (c & 63));\n }\n return slc(ar, 0, ai);\n}\n/**\n * Converts a Uint8Array to a string\n * @param dat The data to decode to string\n * @param latin1 Whether or not to interpret the data as Latin-1. This should\n * not need to be true unless encoding to binary string.\n * @returns The original UTF-8/Latin-1 string\n */\nfunction strFromU8(dat, latin1) {\n if (latin1) {\n var r = '';\n for (var i = 0; i < dat.length; i += 16384)\n r += String.fromCharCode.apply(null, dat.subarray(i, i + 16384));\n return r;\n }\n else if (td)\n return td.decode(dat);\n else {\n var _a = dutf8(dat), out = _a[0], ext = _a[1];\n if (ext.length)\n err(8);\n return out;\n }\n}\n;\n// deflate bit flag\nvar dbf = function (l) { return l == 1 ? 3 : l < 6 ? 2 : l == 9 ? 1 : 0; };\n// skip local zip header\nvar slzh = function (d, b) { return b + 30 + b2(d, b + 26) + b2(d, b + 28); };\n// read zip header\nvar zh = function (d, b, z) {\n var fnl = b2(d, b + 28), fn = strFromU8(d.subarray(b + 46, b + 46 + fnl), !(b2(d, b + 8) & 2048)), es = b + 46 + fnl, bs = b4(d, b + 20);\n var _a = z && bs == 4294967295 ? z64e(d, es) : [bs, b4(d, b + 24), b4(d, b + 42)], sc = _a[0], su = _a[1], off = _a[2];\n return [b2(d, b + 10), sc, su, fn, es + b2(d, b + 30) + b2(d, b + 32), off];\n};\n// read zip64 extra field\nvar z64e = function (d, b) {\n for (; b2(d, b) != 1; b += 4 + b2(d, b + 2))\n ;\n return [b8(d, b + 12), b8(d, b + 4), b8(d, b + 20)];\n};\n// extra field length\nvar exfl = function (ex) {\n var le = 0;\n if (ex) {\n for (var k in ex) {\n var l = ex[k].length;\n if (l > 65535)\n err(9);\n le += l + 4;\n }\n }\n return le;\n};\n// write zip header\nvar wzh = function (d, b, f, fn, u, c, ce, co) {\n var fl = fn.length, ex = f.extra, col = co && co.length;\n var exl = exfl(ex);\n wbytes(d, b, ce != null ? 0x2014B50 : 0x4034B50), b += 4;\n if (ce != null)\n d[b++] = 20, d[b++] = f.os;\n d[b] = 20, b += 2; // spec compliance? what's that?\n d[b++] = (f.flag << 1) | (c == null && 8), d[b++] = u && 8;\n d[b++] = f.compression & 255, d[b++] = f.compression >> 8;\n var dt = new Date(f.mtime == null ? Date.now() : f.mtime), y = dt.getFullYear() - 1980;\n if (y < 0 || y > 119)\n err(10);\n wbytes(d, b, (y << 25) | ((dt.getMonth() + 1) << 21) | (dt.getDate() << 16) | (dt.getHours() << 11) | (dt.getMinutes() << 5) | (dt.getSeconds() >>> 1)), b += 4;\n if (c != null) {\n wbytes(d, b, f.crc);\n wbytes(d, b + 4, c);\n wbytes(d, b + 8, f.size);\n }\n wbytes(d, b + 12, fl);\n wbytes(d, b + 14, exl), b += 16;\n if (ce != null) {\n wbytes(d, b, col);\n wbytes(d, b + 6, f.attrs);\n wbytes(d, b + 10, ce), b += 14;\n }\n d.set(fn, b);\n b += fl;\n if (exl) {\n for (var k in ex) {\n var exf = ex[k], l = exf.length;\n wbytes(d, b, +k);\n wbytes(d, b + 2, l);\n d.set(exf, b + 4), b += 4 + l;\n }\n }\n if (col)\n d.set(co, b), b += col;\n return b;\n};\n// write zip footer (end of central directory)\nvar wzf = function (o, b, c, d, e) {\n wbytes(o, b, 0x6054B50); // skip disk\n wbytes(o, b + 8, c);\n wbytes(o, b + 10, c);\n wbytes(o, b + 12, d);\n wbytes(o, b + 16, e);\n};\n/**\n * A pass-through stream to keep data uncompressed in a ZIP archive.\n */\nvar ZipPassThrough = /*#__PURE__*/ (function () {\n /**\n * Creates a pass-through stream that can be added to ZIP archives\n * @param filename The filename to associate with this data stream\n */\n function ZipPassThrough(filename) {\n this.filename = filename;\n this.c = crc();\n this.size = 0;\n this.compression = 0;\n }\n /**\n * Processes a chunk and pushes to the output stream. You can override this\n * method in a subclass for custom behavior, but by default this passes\n * the data through. You must call this.ondata(err, chunk, final) at some\n * point in this method.\n * @param chunk The chunk to process\n * @param final Whether this is the last chunk\n */\n ZipPassThrough.prototype.process = function (chunk, final) {\n this.ondata(null, chunk, final);\n };\n /**\n * Pushes a chunk to be added. If you are subclassing this with a custom\n * compression algorithm, note that you must push data from the source\n * file only, pre-compression.\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n ZipPassThrough.prototype.push = function (chunk, final) {\n if (!this.ondata)\n err(5);\n this.c.p(chunk);\n this.size += chunk.length;\n if (final)\n this.crc = this.c.d();\n this.process(chunk, final || false);\n };\n return ZipPassThrough;\n}());\n\n// I don't extend because TypeScript extension adds 1kB of runtime bloat\n/**\n * Streaming DEFLATE compression for ZIP archives. Prefer using AsyncZipDeflate\n * for better performance\n */\nvar ZipDeflate = /*#__PURE__*/ (function () {\n /**\n * Creates a DEFLATE stream that can be added to ZIP archives\n * @param filename The filename to associate with this data stream\n * @param opts The compression options\n */\n function ZipDeflate(filename, opts) {\n var _this_1 = this;\n if (!opts)\n opts = {};\n ZipPassThrough.call(this, filename);\n this.d = new Deflate(opts, function (dat, final) {\n _this_1.ondata(null, dat, final);\n });\n this.compression = 8;\n this.flag = dbf(opts.level);\n }\n ZipDeflate.prototype.process = function (chunk, final) {\n try {\n this.d.push(chunk, final);\n }\n catch (e) {\n this.ondata(e, null, final);\n }\n };\n /**\n * Pushes a chunk to be deflated\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n ZipDeflate.prototype.push = function (chunk, final) {\n ZipPassThrough.prototype.push.call(this, chunk, final);\n };\n return ZipDeflate;\n}());\n\n/**\n * Asynchronous streaming DEFLATE compression for ZIP archives\n */\nvar AsyncZipDeflate = /*#__PURE__*/ (function () {\n /**\n * Creates a DEFLATE stream that can be added to ZIP archives\n * @param filename The filename to associate with this data stream\n * @param opts The compression options\n */\n function AsyncZipDeflate(filename, opts) {\n var _this_1 = this;\n if (!opts)\n opts = {};\n ZipPassThrough.call(this, filename);\n this.d = new AsyncDeflate(opts, function (err, dat, final) {\n _this_1.ondata(err, dat, final);\n });\n this.compression = 8;\n this.flag = dbf(opts.level);\n this.terminate = this.d.terminate;\n }\n AsyncZipDeflate.prototype.process = function (chunk, final) {\n this.d.push(chunk, final);\n };\n /**\n * Pushes a chunk to be deflated\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n AsyncZipDeflate.prototype.push = function (chunk, final) {\n ZipPassThrough.prototype.push.call(this, chunk, final);\n };\n return AsyncZipDeflate;\n}());\n\n// TODO: Better tree shaking\n/**\n * A zippable archive to which files can incrementally be added\n */\nvar Zip = /*#__PURE__*/ (function () {\n /**\n * Creates an empty ZIP archive to which files can be added\n * @param cb The callback to call whenever data for the generated ZIP archive\n * is available\n */\n function Zip(cb) {\n this.ondata = cb;\n this.u = [];\n this.d = 1;\n }\n /**\n * Adds a file to the ZIP archive\n * @param file The file stream to add\n */\n Zip.prototype.add = function (file) {\n var _this_1 = this;\n if (!this.ondata)\n err(5);\n // finishing or finished\n if (this.d & 2)\n this.ondata(err(4 + (this.d & 1) * 8, 0, 1), null, false);\n else {\n var f = strToU8(file.filename), fl_1 = f.length;\n var com = file.comment, o = com && strToU8(com);\n var u = fl_1 != file.filename.length || (o && (com.length != o.length));\n var hl_1 = fl_1 + exfl(file.extra) + 30;\n if (fl_1 > 65535)\n this.ondata(err(11, 0, 1), null, false);\n var header = new u8(hl_1);\n wzh(header, 0, file, f, u);\n var chks_1 = [header];\n var pAll_1 = function () {\n for (var _i = 0, chks_2 = chks_1; _i < chks_2.length; _i++) {\n var chk = chks_2[_i];\n _this_1.ondata(null, chk, false);\n }\n chks_1 = [];\n };\n var tr_1 = this.d;\n this.d = 0;\n var ind_1 = this.u.length;\n var uf_1 = mrg(file, {\n f: f,\n u: u,\n o: o,\n t: function () {\n if (file.terminate)\n file.terminate();\n },\n r: function () {\n pAll_1();\n if (tr_1) {\n var nxt = _this_1.u[ind_1 + 1];\n if (nxt)\n nxt.r();\n else\n _this_1.d = 1;\n }\n tr_1 = 1;\n }\n });\n var cl_1 = 0;\n file.ondata = function (err, dat, final) {\n if (err) {\n _this_1.ondata(err, dat, final);\n _this_1.terminate();\n }\n else {\n cl_1 += dat.length;\n chks_1.push(dat);\n if (final) {\n var dd = new u8(16);\n wbytes(dd, 0, 0x8074B50);\n wbytes(dd, 4, file.crc);\n wbytes(dd, 8, cl_1);\n wbytes(dd, 12, file.size);\n chks_1.push(dd);\n uf_1.c = cl_1, uf_1.b = hl_1 + cl_1 + 16, uf_1.crc = file.crc, uf_1.size = file.size;\n if (tr_1)\n uf_1.r();\n tr_1 = 1;\n }\n else if (tr_1)\n pAll_1();\n }\n };\n this.u.push(uf_1);\n }\n };\n /**\n * Ends the process of adding files and prepares to emit the final chunks.\n * This *must* be called after adding all desired files for the resulting\n * ZIP file to work properly.\n */\n Zip.prototype.end = function () {\n var _this_1 = this;\n if (this.d & 2) {\n this.ondata(err(4 + (this.d & 1) * 8, 0, 1), null, true);\n return;\n }\n if (this.d)\n this.e();\n else\n this.u.push({\n r: function () {\n if (!(_this_1.d & 1))\n return;\n _this_1.u.splice(-1, 1);\n _this_1.e();\n },\n t: function () { }\n });\n this.d = 3;\n };\n Zip.prototype.e = function () {\n var bt = 0, l = 0, tl = 0;\n for (var _i = 0, _a = this.u; _i < _a.length; _i++) {\n var f = _a[_i];\n tl += 46 + f.f.length + exfl(f.extra) + (f.o ? f.o.length : 0);\n }\n var out = new u8(tl + 22);\n for (var _b = 0, _c = this.u; _b < _c.length; _b++) {\n var f = _c[_b];\n wzh(out, bt, f, f.f, f.u, f.c, l, f.o);\n bt += 46 + f.f.length + exfl(f.extra) + (f.o ? f.o.length : 0), l += f.b;\n }\n wzf(out, bt, this.u.length, tl, l);\n this.ondata(null, out, true);\n this.d = 2;\n };\n /**\n * A method to terminate any internal workers used by the stream. Subsequent\n * calls to add() will fail.\n */\n Zip.prototype.terminate = function () {\n for (var _i = 0, _a = this.u; _i < _a.length; _i++) {\n var f = _a[_i];\n f.t();\n }\n this.d = 2;\n };\n return Zip;\n}());\n\nfunction zip(data, opts, cb) {\n if (!cb)\n cb = opts, opts = {};\n if (typeof cb != 'function')\n err(7);\n var r = {};\n fltn(data, '', r, opts);\n var k = Object.keys(r);\n var lft = k.length, o = 0, tot = 0;\n var slft = lft, files = new Array(lft);\n var term = [];\n var tAll = function () {\n for (var i = 0; i < term.length; ++i)\n term[i]();\n };\n var cbd = function (a, b) {\n mt(function () { cb(a, b); });\n };\n mt(function () { cbd = cb; });\n var cbf = function () {\n var out = new u8(tot + 22), oe = o, cdl = tot - o;\n tot = 0;\n for (var i = 0; i < slft; ++i) {\n var f = files[i];\n try {\n var l = f.c.length;\n wzh(out, tot, f, f.f, f.u, l);\n var badd = 30 + f.f.length + exfl(f.extra);\n var loc = tot + badd;\n out.set(f.c, loc);\n wzh(out, o, f, f.f, f.u, l, tot, f.m), o += 16 + badd + (f.m ? f.m.length : 0), tot = loc + l;\n }\n catch (e) {\n return cbd(e, null);\n }\n }\n wzf(out, o, files.length, cdl, oe);\n cbd(null, out);\n };\n if (!lft)\n cbf();\n var _loop_1 = function (i) {\n var fn = k[i];\n var _a = r[fn], file = _a[0], p = _a[1];\n var c = crc(), size = file.length;\n c.p(file);\n var f = strToU8(fn), s = f.length;\n var com = p.comment, m = com && strToU8(com), ms = m && m.length;\n var exl = exfl(p.extra);\n var compression = p.level == 0 ? 0 : 8;\n var cbl = function (e, d) {\n if (e) {\n tAll();\n cbd(e, null);\n }\n else {\n var l = d.length;\n files[i] = mrg(p, {\n size: size,\n crc: c.d(),\n c: d,\n f: f,\n m: m,\n u: s != fn.length || (m && (com.length != ms)),\n compression: compression\n });\n o += 30 + s + exl + l;\n tot += 76 + 2 * (s + exl) + (ms || 0) + l;\n if (!--lft)\n cbf();\n }\n };\n if (s > 65535)\n cbl(err(11, 0, 1), null);\n if (!compression)\n cbl(null, file);\n else if (size < 160000) {\n try {\n cbl(null, deflateSync(file, p));\n }\n catch (e) {\n cbl(e, null);\n }\n }\n else\n term.push(deflate(file, p, cbl));\n };\n // Cannot use lft because it can decrease\n for (var i = 0; i < slft; ++i) {\n _loop_1(i);\n }\n return tAll;\n}\n/**\n * Synchronously creates a ZIP file. Prefer using `zip` for better performance\n * with more than one file.\n * @param data The directory structure for the ZIP archive\n * @param opts The main options, merged with per-file options\n * @returns The generated ZIP archive\n */\nfunction zipSync(data, opts) {\n if (!opts)\n opts = {};\n var r = {};\n var files = [];\n fltn(data, '', r, opts);\n var o = 0;\n var tot = 0;\n for (var fn in r) {\n var _a = r[fn], file = _a[0], p = _a[1];\n var compression = p.level == 0 ? 0 : 8;\n var f = strToU8(fn), s = f.length;\n var com = p.comment, m = com && strToU8(com), ms = m && m.length;\n var exl = exfl(p.extra);\n if (s > 65535)\n err(11);\n var d = compression ? deflateSync(file, p) : file, l = d.length;\n var c = crc();\n c.p(file);\n files.push(mrg(p, {\n size: file.length,\n crc: c.d(),\n c: d,\n f: f,\n m: m,\n u: s != fn.length || (m && (com.length != ms)),\n o: o,\n compression: compression\n }));\n o += 30 + s + exl + l;\n tot += 76 + 2 * (s + exl) + (ms || 0) + l;\n }\n var out = new u8(tot + 22), oe = o, cdl = tot - o;\n for (var i = 0; i < files.length; ++i) {\n var f = files[i];\n wzh(out, f.o, f, f.f, f.u, f.c.length);\n var badd = 30 + f.f.length + exfl(f.extra);\n out.set(f.c, f.o + badd);\n wzh(out, o, f, f.f, f.u, f.c.length, f.o, f.m), o += 16 + badd + (f.m ? f.m.length : 0);\n }\n wzf(out, o, files.length, cdl, oe);\n return out;\n}\n/**\n * Streaming pass-through decompression for ZIP archives\n */\nvar UnzipPassThrough = /*#__PURE__*/ (function () {\n function UnzipPassThrough() {\n }\n UnzipPassThrough.prototype.push = function (data, final) {\n this.ondata(null, data, final);\n };\n UnzipPassThrough.compression = 0;\n return UnzipPassThrough;\n}());\n\n/**\n * Streaming DEFLATE decompression for ZIP archives. Prefer AsyncZipInflate for\n * better performance.\n */\nvar UnzipInflate = /*#__PURE__*/ (function () {\n /**\n * Creates a DEFLATE decompression that can be used in ZIP archives\n */\n function UnzipInflate() {\n var _this_1 = this;\n this.i = new Inflate(function (dat, final) {\n _this_1.ondata(null, dat, final);\n });\n }\n UnzipInflate.prototype.push = function (data, final) {\n try {\n this.i.push(data, final);\n }\n catch (e) {\n this.ondata(e, null, final);\n }\n };\n UnzipInflate.compression = 8;\n return UnzipInflate;\n}());\n\n/**\n * Asynchronous streaming DEFLATE decompression for ZIP archives\n */\nvar AsyncUnzipInflate = /*#__PURE__*/ (function () {\n /**\n * Creates a DEFLATE decompression that can be used in ZIP archives\n */\n function AsyncUnzipInflate(_, sz) {\n var _this_1 = this;\n if (sz < 320000) {\n this.i = new Inflate(function (dat, final) {\n _this_1.ondata(null, dat, final);\n });\n }\n else {\n this.i = new AsyncInflate(function (err, dat, final) {\n _this_1.ondata(err, dat, final);\n });\n this.terminate = this.i.terminate;\n }\n }\n AsyncUnzipInflate.prototype.push = function (data, final) {\n if (this.i.terminate)\n data = slc(data, 0);\n this.i.push(data, final);\n };\n AsyncUnzipInflate.compression = 8;\n return AsyncUnzipInflate;\n}());\n\n/**\n * A ZIP archive decompression stream that emits files as they are discovered\n */\nvar Unzip = /*#__PURE__*/ (function () {\n /**\n * Creates a ZIP decompression stream\n * @param cb The callback to call whenever a file in the ZIP archive is found\n */\n function Unzip(cb) {\n this.onfile = cb;\n this.k = [];\n this.o = {\n 0: UnzipPassThrough\n };\n this.p = et;\n }\n /**\n * Pushes a chunk to be unzipped\n * @param chunk The chunk to push\n * @param final Whether this is the last chunk\n */\n Unzip.prototype.push = function (chunk, final) {\n var _this_1 = this;\n if (!this.onfile)\n err(5);\n if (!this.p)\n err(4);\n if (this.c > 0) {\n var len = Math.min(this.c, chunk.length);\n var toAdd = chunk.subarray(0, len);\n this.c -= len;\n if (this.d)\n this.d.push(toAdd, !this.c);\n else\n this.k[0].push(toAdd);\n chunk = chunk.subarray(len);\n if (chunk.length)\n return this.push(chunk, final);\n }\n else {\n var f = 0, i = 0, is = void 0, buf = void 0;\n if (!this.p.length)\n buf = chunk;\n else if (!chunk.length)\n buf = this.p;\n else {\n buf = new u8(this.p.length + chunk.length);\n buf.set(this.p), buf.set(chunk, this.p.length);\n }\n var l = buf.length, oc = this.c, add = oc && this.d;\n var _loop_2 = function () {\n var _a;\n var sig = b4(buf, i);\n if (sig == 0x4034B50) {\n f = 1, is = i;\n this_1.d = null;\n this_1.c = 0;\n var bf = b2(buf, i + 6), cmp_1 = b2(buf, i + 8), u = bf & 2048, dd = bf & 8, fnl = b2(buf, i + 26), es = b2(buf, i + 28);\n if (l > i + 30 + fnl + es) {\n var chks_3 = [];\n this_1.k.unshift(chks_3);\n f = 2;\n var sc_1 = b4(buf, i + 18), su_1 = b4(buf, i + 22);\n var fn_1 = strFromU8(buf.subarray(i + 30, i += 30 + fnl), !u);\n if (sc_1 == 4294967295) {\n _a = dd ? [-2] : z64e(buf, i), sc_1 = _a[0], su_1 = _a[1];\n }\n else if (dd)\n sc_1 = -1;\n i += es;\n this_1.c = sc_1;\n var d_1;\n var file_1 = {\n name: fn_1,\n compression: cmp_1,\n start: function () {\n if (!file_1.ondata)\n err(5);\n if (!sc_1)\n file_1.ondata(null, et, true);\n else {\n var ctr = _this_1.o[cmp_1];\n if (!ctr)\n file_1.ondata(err(14, 'unknown compression type ' + cmp_1, 1), null, false);\n d_1 = sc_1 < 0 ? new ctr(fn_1) : new ctr(fn_1, sc_1, su_1);\n d_1.ondata = function (err, dat, final) { file_1.ondata(err, dat, final); };\n for (var _i = 0, chks_4 = chks_3; _i < chks_4.length; _i++) {\n var dat = chks_4[_i];\n d_1.push(dat, false);\n }\n if (_this_1.k[0] == chks_3 && _this_1.c)\n _this_1.d = d_1;\n else\n d_1.push(et, true);\n }\n },\n terminate: function () {\n if (d_1 && d_1.terminate)\n d_1.terminate();\n }\n };\n if (sc_1 >= 0)\n file_1.size = sc_1, file_1.originalSize = su_1;\n this_1.onfile(file_1);\n }\n return \"break\";\n }\n else if (oc) {\n if (sig == 0x8074B50) {\n is = i += 12 + (oc == -2 && 8), f = 3, this_1.c = 0;\n return \"break\";\n }\n else if (sig == 0x2014B50) {\n is = i -= 4, f = 3, this_1.c = 0;\n return \"break\";\n }\n }\n };\n var this_1 = this;\n for (; i < l - 4; ++i) {\n var state_1 = _loop_2();\n if (state_1 === \"break\")\n break;\n }\n this.p = et;\n if (oc < 0) {\n var dat = f ? buf.subarray(0, is - 12 - (oc == -2 && 8) - (b4(buf, is - 16) == 0x8074B50 && 4)) : buf.subarray(0, i);\n if (add)\n add.push(dat, !!f);\n else\n this.k[+(f == 2)].push(dat);\n }\n if (f & 2)\n return this.push(buf.subarray(i), final);\n this.p = buf.subarray(i);\n }\n if (final) {\n if (this.c)\n err(13);\n this.p = null;\n }\n };\n /**\n * Registers a decoder with the stream, allowing for files compressed with\n * the compression type provided to be expanded correctly\n * @param decoder The decoder constructor\n */\n Unzip.prototype.register = function (decoder) {\n this.o[decoder.compression] = decoder;\n };\n return Unzip;\n}());\n\nvar mt = typeof queueMicrotask == 'function' ? queueMicrotask : typeof setTimeout == 'function' ? setTimeout : function (fn) { fn(); };\nfunction unzip(data, opts, cb) {\n if (!cb)\n cb = opts, opts = {};\n if (typeof cb != 'function')\n err(7);\n var term = [];\n var tAll = function () {\n for (var i = 0; i < term.length; ++i)\n term[i]();\n };\n var files = {};\n var cbd = function (a, b) {\n mt(function () { cb(a, b); });\n };\n mt(function () { cbd = cb; });\n var e = data.length - 22;\n for (; b4(data, e) != 0x6054B50; --e) {\n if (!e || data.length - e > 65558) {\n cbd(err(13, 0, 1), null);\n return tAll;\n }\n }\n ;\n var lft = b2(data, e + 8);\n if (lft) {\n var c = lft;\n var o = b4(data, e + 16);\n var z = o == 4294967295;\n if (z) {\n e = b4(data, e - 12);\n if (b4(data, e) != 0x6064B50) {\n cbd(err(13, 0, 1), null);\n return tAll;\n }\n c = lft = b4(data, e + 32);\n o = b4(data, e + 48);\n }\n var fltr = opts && opts.filter;\n var _loop_3 = function (i) {\n var _a = zh(data, o, z), c_1 = _a[0], sc = _a[1], su = _a[2], fn = _a[3], no = _a[4], off = _a[5], b = slzh(data, off);\n o = no;\n var cbl = function (e, d) {\n if (e) {\n tAll();\n cbd(e, null);\n }\n else {\n if (d)\n files[fn] = d;\n if (!--lft)\n cbd(null, files);\n }\n };\n if (!fltr || fltr({\n name: fn,\n size: sc,\n originalSize: su,\n compression: c_1\n })) {\n if (!c_1)\n cbl(null, slc(data, b, b + sc));\n else if (c_1 == 8) {\n var infl = data.subarray(b, b + sc);\n if (sc < 320000) {\n try {\n cbl(null, inflateSync(infl, new u8(su)));\n }\n catch (e) {\n cbl(e, null);\n }\n }\n else\n term.push(inflate(infl, { size: su }, cbl));\n }\n else\n cbl(err(14, 'unknown compression type ' + c_1, 1), null);\n }\n else\n cbl(null, null);\n };\n for (var i = 0; i < c; ++i) {\n _loop_3(i);\n }\n }\n else\n cbd(null, {});\n return tAll;\n}\n/**\n * Synchronously decompresses a ZIP archive. Prefer using `unzip` for better\n * performance with more than one file.\n * @param data The raw compressed ZIP file\n * @param opts The ZIP extraction options\n * @returns The decompressed files\n */\nfunction unzipSync(data, opts) {\n var files = {};\n var e = data.length - 22;\n for (; b4(data, e) != 0x6054B50; --e) {\n if (!e || data.length - e > 65558)\n err(13);\n }\n ;\n var c = b2(data, e + 8);\n if (!c)\n return {};\n var o = b4(data, e + 16);\n var z = o == 4294967295;\n if (z) {\n e = b4(data, e - 12);\n if (b4(data, e) != 0x6064B50)\n err(13);\n c = b4(data, e + 32);\n o = b4(data, e + 48);\n }\n var fltr = opts && opts.filter;\n for (var i = 0; i < c; ++i) {\n var _a = zh(data, o, z), c_2 = _a[0], sc = _a[1], su = _a[2], fn = _a[3], no = _a[4], off = _a[5], b = slzh(data, off);\n o = no;\n if (!fltr || fltr({\n name: fn,\n size: sc,\n originalSize: su,\n compression: c_2\n })) {\n if (!c_2)\n files[fn] = slc(data, b, b + sc);\n else if (c_2 == 8)\n files[fn] = inflateSync(data.subarray(b, b + sc), new u8(su));\n else\n err(14, 'unknown compression type ' + c_2);\n }\n }\n return files;\n}\n\n\n//# sourceURL=webpack:///./node_modules/fflate/esm/browser.js?"); /***/ }), /***/ "./node_modules/function-bind/implementation.js": /*!******************************************************!*\ !*** ./node_modules/function-bind/implementation.js ***! \******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/* eslint no-invalid-this: 1 */\n\nvar ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';\nvar toStr = Object.prototype.toString;\nvar max = Math.max;\nvar funcType = '[object Function]';\n\nvar concatty = function concatty(a, b) {\n var arr = [];\n\n for (var i = 0; i < a.length; i += 1) {\n arr[i] = a[i];\n }\n for (var j = 0; j < b.length; j += 1) {\n arr[j + a.length] = b[j];\n }\n\n return arr;\n};\n\nvar slicy = function slicy(arrLike, offset) {\n var arr = [];\n for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) {\n arr[j] = arrLike[i];\n }\n return arr;\n};\n\nvar joiny = function (arr, joiner) {\n var str = '';\n for (var i = 0; i < arr.length; i += 1) {\n str += arr[i];\n if (i + 1 < arr.length) {\n str += joiner;\n }\n }\n return str;\n};\n\nmodule.exports = function bind(that) {\n var target = this;\n if (typeof target !== 'function' || toStr.apply(target) !== funcType) {\n throw new TypeError(ERROR_MESSAGE + target);\n }\n var args = slicy(arguments, 1);\n\n var bound;\n var binder = function () {\n if (this instanceof bound) {\n var result = target.apply(\n this,\n concatty(args, arguments)\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n }\n return target.apply(\n that,\n concatty(args, arguments)\n );\n\n };\n\n var boundLength = max(0, target.length - args.length);\n var boundArgs = [];\n for (var i = 0; i < boundLength; i++) {\n boundArgs[i] = '$' + i;\n }\n\n bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(binder);\n\n if (target.prototype) {\n var Empty = function Empty() {};\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n\n return bound;\n};\n\n\n//# sourceURL=webpack:///./node_modules/function-bind/implementation.js?"); /***/ }), /***/ "./node_modules/function-bind/index.js": /*!*********************************************!*\ !*** ./node_modules/function-bind/index.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar implementation = __webpack_require__(/*! ./implementation */ \"./node_modules/function-bind/implementation.js\");\n\nmodule.exports = Function.prototype.bind || implementation;\n\n\n//# sourceURL=webpack:///./node_modules/function-bind/index.js?"); /***/ }), /***/ "./node_modules/get-intrinsic/index.js": /*!*********************************************!*\ !*** ./node_modules/get-intrinsic/index.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar undefined;\n\nvar $SyntaxError = SyntaxError;\nvar $Function = Function;\nvar $TypeError = TypeError;\n\n// eslint-disable-next-line consistent-return\nvar getEvalledConstructor = function (expressionSyntax) {\n\ttry {\n\t\treturn $Function('\"use strict\"; return (' + expressionSyntax + ').constructor;')();\n\t} catch (e) {}\n};\n\nvar $gOPD = Object.getOwnPropertyDescriptor;\nif ($gOPD) {\n\ttry {\n\t\t$gOPD({}, '');\n\t} catch (e) {\n\t\t$gOPD = null; // this is IE 8, which has a broken gOPD\n\t}\n}\n\nvar throwTypeError = function () {\n\tthrow new $TypeError();\n};\nvar ThrowTypeError = $gOPD\n\t? (function () {\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties\n\t\t\targuments.callee; // IE 8 does not throw here\n\t\t\treturn throwTypeError;\n\t\t} catch (calleeThrows) {\n\t\t\ttry {\n\t\t\t\t// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')\n\t\t\t\treturn $gOPD(arguments, 'callee').get;\n\t\t\t} catch (gOPDthrows) {\n\t\t\t\treturn throwTypeError;\n\t\t\t}\n\t\t}\n\t}())\n\t: throwTypeError;\n\nvar hasSymbols = __webpack_require__(/*! has-symbols */ \"./node_modules/has-symbols/index.js\")();\nvar hasProto = __webpack_require__(/*! has-proto */ \"./node_modules/has-proto/index.js\")();\n\nvar getProto = Object.getPrototypeOf || (\n\thasProto\n\t\t? function (x) { return x.__proto__; } // eslint-disable-line no-proto\n\t\t: null\n);\n\nvar needsEval = {};\n\nvar TypedArray = typeof Uint8Array === 'undefined' || !getProto ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t'%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,\n\t'%Array%': Array,\n\t'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'%ArrayIteratorPrototype%': hasSymbols && getProto ? getProto([][Symbol.iterator]()) : undefined,\n\t'%AsyncFromSyncIteratorPrototype%': undefined,\n\t'%AsyncFunction%': needsEval,\n\t'%AsyncGenerator%': needsEval,\n\t'%AsyncGeneratorFunction%': needsEval,\n\t'%AsyncIteratorPrototype%': needsEval,\n\t'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,\n\t'%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,\n\t'%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,\n\t'%Boolean%': Boolean,\n\t'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'%Date%': Date,\n\t'%decodeURI%': decodeURI,\n\t'%decodeURIComponent%': decodeURIComponent,\n\t'%encodeURI%': encodeURI,\n\t'%encodeURIComponent%': encodeURIComponent,\n\t'%Error%': Error,\n\t'%eval%': eval, // eslint-disable-line no-eval\n\t'%EvalError%': EvalError,\n\t'%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,\n\t'%Function%': $Function,\n\t'%GeneratorFunction%': needsEval,\n\t'%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'%isFinite%': isFinite,\n\t'%isNaN%': isNaN,\n\t'%IteratorPrototype%': hasSymbols && getProto ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'%JSON%': typeof JSON === 'object' ? JSON : undefined,\n\t'%Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'%Math%': Math,\n\t'%Number%': Number,\n\t'%Object%': Object,\n\t'%parseFloat%': parseFloat,\n\t'%parseInt%': parseInt,\n\t'%Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'%RangeError%': RangeError,\n\t'%ReferenceError%': ReferenceError,\n\t'%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'%RegExp%': RegExp,\n\t'%Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'%String%': String,\n\t'%StringIteratorPrototype%': hasSymbols && getProto ? getProto(''[Symbol.iterator]()) : undefined,\n\t'%Symbol%': hasSymbols ? Symbol : undefined,\n\t'%SyntaxError%': $SyntaxError,\n\t'%ThrowTypeError%': ThrowTypeError,\n\t'%TypedArray%': TypedArray,\n\t'%TypeError%': $TypeError,\n\t'%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'%URIError%': URIError,\n\t'%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,\n\t'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet\n};\n\nif (getProto) {\n\ttry {\n\t\tnull.error; // eslint-disable-line no-unused-expressions\n\t} catch (e) {\n\t\t// https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229\n\t\tvar errorProto = getProto(getProto(e));\n\t\tINTRINSICS['%Error.prototype%'] = errorProto;\n\t}\n}\n\nvar doEval = function doEval(name) {\n\tvar value;\n\tif (name === '%AsyncFunction%') {\n\t\tvalue = getEvalledConstructor('async function () {}');\n\t} else if (name === '%GeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('function* () {}');\n\t} else if (name === '%AsyncGeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('async function* () {}');\n\t} else if (name === '%AsyncGenerator%') {\n\t\tvar fn = doEval('%AsyncGeneratorFunction%');\n\t\tif (fn) {\n\t\t\tvalue = fn.prototype;\n\t\t}\n\t} else if (name === '%AsyncIteratorPrototype%') {\n\t\tvar gen = doEval('%AsyncGenerator%');\n\t\tif (gen && getProto) {\n\t\t\tvalue = getProto(gen.prototype);\n\t\t}\n\t}\n\n\tINTRINSICS[name] = value;\n\n\treturn value;\n};\n\nvar LEGACY_ALIASES = {\n\t'%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],\n\t'%ArrayPrototype%': ['Array', 'prototype'],\n\t'%ArrayProto_entries%': ['Array', 'prototype', 'entries'],\n\t'%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],\n\t'%ArrayProto_keys%': ['Array', 'prototype', 'keys'],\n\t'%ArrayProto_values%': ['Array', 'prototype', 'values'],\n\t'%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],\n\t'%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],\n\t'%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],\n\t'%BooleanPrototype%': ['Boolean', 'prototype'],\n\t'%DataViewPrototype%': ['DataView', 'prototype'],\n\t'%DatePrototype%': ['Date', 'prototype'],\n\t'%ErrorPrototype%': ['Error', 'prototype'],\n\t'%EvalErrorPrototype%': ['EvalError', 'prototype'],\n\t'%Float32ArrayPrototype%': ['Float32Array', 'prototype'],\n\t'%Float64ArrayPrototype%': ['Float64Array', 'prototype'],\n\t'%FunctionPrototype%': ['Function', 'prototype'],\n\t'%Generator%': ['GeneratorFunction', 'prototype'],\n\t'%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],\n\t'%Int8ArrayPrototype%': ['Int8Array', 'prototype'],\n\t'%Int16ArrayPrototype%': ['Int16Array', 'prototype'],\n\t'%Int32ArrayPrototype%': ['Int32Array', 'prototype'],\n\t'%JSONParse%': ['JSON', 'parse'],\n\t'%JSONStringify%': ['JSON', 'stringify'],\n\t'%MapPrototype%': ['Map', 'prototype'],\n\t'%NumberPrototype%': ['Number', 'prototype'],\n\t'%ObjectPrototype%': ['Object', 'prototype'],\n\t'%ObjProto_toString%': ['Object', 'prototype', 'toString'],\n\t'%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],\n\t'%PromisePrototype%': ['Promise', 'prototype'],\n\t'%PromiseProto_then%': ['Promise', 'prototype', 'then'],\n\t'%Promise_all%': ['Promise', 'all'],\n\t'%Promise_reject%': ['Promise', 'reject'],\n\t'%Promise_resolve%': ['Promise', 'resolve'],\n\t'%RangeErrorPrototype%': ['RangeError', 'prototype'],\n\t'%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],\n\t'%RegExpPrototype%': ['RegExp', 'prototype'],\n\t'%SetPrototype%': ['Set', 'prototype'],\n\t'%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],\n\t'%StringPrototype%': ['String', 'prototype'],\n\t'%SymbolPrototype%': ['Symbol', 'prototype'],\n\t'%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],\n\t'%TypedArrayPrototype%': ['TypedArray', 'prototype'],\n\t'%TypeErrorPrototype%': ['TypeError', 'prototype'],\n\t'%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],\n\t'%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],\n\t'%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],\n\t'%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],\n\t'%URIErrorPrototype%': ['URIError', 'prototype'],\n\t'%WeakMapPrototype%': ['WeakMap', 'prototype'],\n\t'%WeakSetPrototype%': ['WeakSet', 'prototype']\n};\n\nvar bind = __webpack_require__(/*! function-bind */ \"./node_modules/function-bind/index.js\");\nvar hasOwn = __webpack_require__(/*! hasown */ \"./node_modules/hasown/index.js\");\nvar $concat = bind.call(Function.call, Array.prototype.concat);\nvar $spliceApply = bind.call(Function.apply, Array.prototype.splice);\nvar $replace = bind.call(Function.call, String.prototype.replace);\nvar $strSlice = bind.call(Function.call, String.prototype.slice);\nvar $exec = bind.call(Function.call, RegExp.prototype.exec);\n\n/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */\nvar rePropName = /[^%.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|%$))/g;\nvar reEscapeChar = /\\\\(\\\\)?/g; /** Used to match backslashes in property paths. */\nvar stringToPath = function stringToPath(string) {\n\tvar first = $strSlice(string, 0, 1);\n\tvar last = $strSlice(string, -1);\n\tif (first === '%' && last !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected closing `%`');\n\t} else if (last === '%' && first !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected opening `%`');\n\t}\n\tvar result = [];\n\t$replace(string, rePropName, function (match, number, quote, subString) {\n\t\tresult[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;\n\t});\n\treturn result;\n};\n/* end adaptation */\n\nvar getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {\n\tvar intrinsicName = name;\n\tvar alias;\n\tif (hasOwn(LEGACY_ALIASES, intrinsicName)) {\n\t\talias = LEGACY_ALIASES[intrinsicName];\n\t\tintrinsicName = '%' + alias[0] + '%';\n\t}\n\n\tif (hasOwn(INTRINSICS, intrinsicName)) {\n\t\tvar value = INTRINSICS[intrinsicName];\n\t\tif (value === needsEval) {\n\t\t\tvalue = doEval(intrinsicName);\n\t\t}\n\t\tif (typeof value === 'undefined' && !allowMissing) {\n\t\t\tthrow new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t\t}\n\n\t\treturn {\n\t\t\talias: alias,\n\t\t\tname: intrinsicName,\n\t\t\tvalue: value\n\t\t};\n\t}\n\n\tthrow new $SyntaxError('intrinsic ' + name + ' does not exist!');\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (typeof name !== 'string' || name.length === 0) {\n\t\tthrow new $TypeError('intrinsic name must be a non-empty string');\n\t}\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new $TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tif ($exec(/^%?[^%]*%?$/, name) === null) {\n\t\tthrow new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');\n\t}\n\tvar parts = stringToPath(name);\n\tvar intrinsicBaseName = parts.length > 0 ? parts[0] : '';\n\n\tvar intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);\n\tvar intrinsicRealName = intrinsic.name;\n\tvar value = intrinsic.value;\n\tvar skipFurtherCaching = false;\n\n\tvar alias = intrinsic.alias;\n\tif (alias) {\n\t\tintrinsicBaseName = alias[0];\n\t\t$spliceApply(parts, $concat([0, 1], alias));\n\t}\n\n\tfor (var i = 1, isOwn = true; i < parts.length; i += 1) {\n\t\tvar part = parts[i];\n\t\tvar first = $strSlice(part, 0, 1);\n\t\tvar last = $strSlice(part, -1);\n\t\tif (\n\t\t\t(\n\t\t\t\t(first === '\"' || first === \"'\" || first === '`')\n\t\t\t\t|| (last === '\"' || last === \"'\" || last === '`')\n\t\t\t)\n\t\t\t&& first !== last\n\t\t) {\n\t\t\tthrow new $SyntaxError('property names with quotes must have matching quotes');\n\t\t}\n\t\tif (part === 'constructor' || !isOwn) {\n\t\t\tskipFurtherCaching = true;\n\t\t}\n\n\t\tintrinsicBaseName += '.' + part;\n\t\tintrinsicRealName = '%' + intrinsicBaseName + '%';\n\n\t\tif (hasOwn(INTRINSICS, intrinsicRealName)) {\n\t\t\tvalue = INTRINSICS[intrinsicRealName];\n\t\t} else if (value != null) {\n\t\t\tif (!(part in value)) {\n\t\t\t\tif (!allowMissing) {\n\t\t\t\t\tthrow new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');\n\t\t\t\t}\n\t\t\t\treturn void undefined;\n\t\t\t}\n\t\t\tif ($gOPD && (i + 1) >= parts.length) {\n\t\t\t\tvar desc = $gOPD(value, part);\n\t\t\t\tisOwn = !!desc;\n\n\t\t\t\t// By convention, when a data property is converted to an accessor\n\t\t\t\t// property to emulate a data property that does not suffer from\n\t\t\t\t// the override mistake, that accessor's getter is marked with\n\t\t\t\t// an `originalValue` property. Here, when we detect this, we\n\t\t\t\t// uphold the illusion by pretending to see that original data\n\t\t\t\t// property, i.e., returning the value rather than the getter\n\t\t\t\t// itself.\n\t\t\t\tif (isOwn && 'get' in desc && !('originalValue' in desc.get)) {\n\t\t\t\t\tvalue = desc.get;\n\t\t\t\t} else {\n\t\t\t\t\tvalue = value[part];\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tisOwn = hasOwn(value, part);\n\t\t\t\tvalue = value[part];\n\t\t\t}\n\n\t\t\tif (isOwn && !skipFurtherCaching) {\n\t\t\t\tINTRINSICS[intrinsicRealName] = value;\n\t\t\t}\n\t\t}\n\t}\n\treturn value;\n};\n\n\n//# sourceURL=webpack:///./node_modules/get-intrinsic/index.js?"); /***/ }), /***/ "./node_modules/gopd/index.js": /*!************************************!*\ !*** ./node_modules/gopd/index.js ***! \************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar GetIntrinsic = __webpack_require__(/*! get-intrinsic */ \"./node_modules/get-intrinsic/index.js\");\n\nvar $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);\n\nif ($gOPD) {\n\ttry {\n\t\t$gOPD([], 'length');\n\t} catch (e) {\n\t\t// IE 8 has a broken gOPD\n\t\t$gOPD = null;\n\t}\n}\n\nmodule.exports = $gOPD;\n\n\n//# sourceURL=webpack:///./node_modules/gopd/index.js?"); /***/ }), /***/ "./node_modules/graphql/error/GraphQLError.mjs": /*!*****************************************************!*\ !*** ./node_modules/graphql/error/GraphQLError.mjs ***! \*****************************************************/ /*! exports provided: GraphQLError, printError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLError\", function() { return GraphQLError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"printError\", function() { return printError; });\n/* harmony import */ var _jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/isObjectLike.mjs */ \"./node_modules/graphql/jsutils/isObjectLike.mjs\");\n/* harmony import */ var _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../polyfills/symbols.mjs */ \"./node_modules/graphql/polyfills/symbols.mjs\");\n/* harmony import */ var _language_location_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../language/location.mjs */ \"./node_modules/graphql/language/location.mjs\");\n/* harmony import */ var _language_printLocation_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../language/printLocation.mjs */ \"./node_modules/graphql/language/printLocation.mjs\");\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _wrapNativeSuper(Class) { var _cache = typeof Map === \"function\" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== \"function\") { throw new TypeError(\"Super expression must either be null or a function\"); } if (typeof _cache !== \"undefined\") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); }\n\nfunction _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _construct = Reflect.construct; } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _isNativeFunction(fn) { return Function.toString.call(fn).indexOf(\"[native code]\") !== -1; }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n\n\n\n\n/**\n * A GraphQLError describes an Error found during the parse, validate, or\n * execute phases of performing a GraphQL operation. In addition to a message\n * and stack trace, it also includes information about the locations in a\n * GraphQL document and/or execution result that correspond to the Error.\n */\n\nvar GraphQLError = /*#__PURE__*/function (_Error) {\n _inherits(GraphQLError, _Error);\n\n var _super = _createSuper(GraphQLError);\n\n /**\n * An array of { line, column } locations within the source GraphQL document\n * which correspond to this error.\n *\n * Errors during validation often contain multiple locations, for example to\n * point out two things with the same name. Errors during execution include a\n * single location, the field which produced the error.\n *\n * Enumerable, and appears in the result of JSON.stringify().\n */\n\n /**\n * An array describing the JSON-path into the execution response which\n * corresponds to this error. Only included for errors during execution.\n *\n * Enumerable, and appears in the result of JSON.stringify().\n */\n\n /**\n * An array of GraphQL AST Nodes corresponding to this error.\n */\n\n /**\n * The source GraphQL document for the first location of this error.\n *\n * Note that if this Error represents more than one node, the source may not\n * represent nodes after the first node.\n */\n\n /**\n * An array of character offsets within the source GraphQL document\n * which correspond to this error.\n */\n\n /**\n * The original error thrown from a field resolver during execution.\n */\n\n /**\n * Extension fields to add to the formatted error.\n */\n function GraphQLError(message, nodes, source, positions, path, originalError, extensions) {\n var _nodeLocations, _nodeLocations2, _nodeLocations3;\n\n var _this;\n\n _classCallCheck(this, GraphQLError);\n\n _this = _super.call(this, message);\n _this.name = 'GraphQLError';\n _this.originalError = originalError !== null && originalError !== void 0 ? originalError : undefined; // Compute list of blame nodes.\n\n _this.nodes = undefinedIfEmpty(Array.isArray(nodes) ? nodes : nodes ? [nodes] : undefined);\n var nodeLocations = [];\n\n for (var _i2 = 0, _ref3 = (_this$nodes = _this.nodes) !== null && _this$nodes !== void 0 ? _this$nodes : []; _i2 < _ref3.length; _i2++) {\n var _this$nodes;\n\n var _ref4 = _ref3[_i2];\n var loc = _ref4.loc;\n\n if (loc != null) {\n nodeLocations.push(loc);\n }\n }\n\n nodeLocations = undefinedIfEmpty(nodeLocations); // Compute locations in the source for the given nodes/positions.\n\n _this.source = source !== null && source !== void 0 ? source : (_nodeLocations = nodeLocations) === null || _nodeLocations === void 0 ? void 0 : _nodeLocations[0].source;\n _this.positions = positions !== null && positions !== void 0 ? positions : (_nodeLocations2 = nodeLocations) === null || _nodeLocations2 === void 0 ? void 0 : _nodeLocations2.map(function (loc) {\n return loc.start;\n });\n _this.locations = positions && source ? positions.map(function (pos) {\n return Object(_language_location_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getLocation\"])(source, pos);\n }) : (_nodeLocations3 = nodeLocations) === null || _nodeLocations3 === void 0 ? void 0 : _nodeLocations3.map(function (loc) {\n return Object(_language_location_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getLocation\"])(loc.source, loc.start);\n });\n _this.path = path !== null && path !== void 0 ? path : undefined;\n var originalExtensions = originalError === null || originalError === void 0 ? void 0 : originalError.extensions;\n\n if (extensions == null && Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(originalExtensions)) {\n _this.extensions = _objectSpread({}, originalExtensions);\n } else {\n _this.extensions = extensions !== null && extensions !== void 0 ? extensions : {};\n } // By being enumerable, JSON.stringify will include bellow properties in the resulting output.\n // This ensures that the simplest possible GraphQL service adheres to the spec.\n\n\n Object.defineProperties(_assertThisInitialized(_this), {\n message: {\n enumerable: true\n },\n locations: {\n enumerable: _this.locations != null\n },\n path: {\n enumerable: _this.path != null\n },\n extensions: {\n enumerable: _this.extensions != null && Object.keys(_this.extensions).length > 0\n },\n name: {\n enumerable: false\n },\n nodes: {\n enumerable: false\n },\n source: {\n enumerable: false\n },\n positions: {\n enumerable: false\n },\n originalError: {\n enumerable: false\n }\n }); // Include (non-enumerable) stack trace.\n\n if (originalError !== null && originalError !== void 0 && originalError.stack) {\n Object.defineProperty(_assertThisInitialized(_this), 'stack', {\n value: originalError.stack,\n writable: true,\n configurable: true\n });\n return _possibleConstructorReturn(_this);\n } // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\n\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(_assertThisInitialized(_this), GraphQLError);\n } else {\n Object.defineProperty(_assertThisInitialized(_this), 'stack', {\n value: Error().stack,\n writable: true,\n configurable: true\n });\n }\n\n return _this;\n }\n\n _createClass(GraphQLError, [{\n key: \"toString\",\n value: function toString() {\n return printError(this);\n } // FIXME: workaround to not break chai comparisons, should be remove in v16\n // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n\n }, {\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'Object';\n }\n }]);\n\n return GraphQLError;\n}( /*#__PURE__*/_wrapNativeSuper(Error));\n\nfunction undefinedIfEmpty(array) {\n return array === undefined || array.length === 0 ? undefined : array;\n}\n/**\n * Prints a GraphQLError to a string, representing useful location information\n * about the error's position in the source.\n */\n\n\nfunction printError(error) {\n var output = error.message;\n\n if (error.nodes) {\n for (var _i4 = 0, _error$nodes2 = error.nodes; _i4 < _error$nodes2.length; _i4++) {\n var node = _error$nodes2[_i4];\n\n if (node.loc) {\n output += '\\n\\n' + Object(_language_printLocation_mjs__WEBPACK_IMPORTED_MODULE_3__[\"printLocation\"])(node.loc);\n }\n }\n } else if (error.source && error.locations) {\n for (var _i6 = 0, _error$locations2 = error.locations; _i6 < _error$locations2.length; _i6++) {\n var location = _error$locations2[_i6];\n output += '\\n\\n' + Object(_language_printLocation_mjs__WEBPACK_IMPORTED_MODULE_3__[\"printSourceLocation\"])(error.source, location);\n }\n }\n\n return output;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/error/GraphQLError.mjs?"); /***/ }), /***/ "./node_modules/graphql/error/formatError.mjs": /*!****************************************************!*\ !*** ./node_modules/graphql/error/formatError.mjs ***! \****************************************************/ /*! exports provided: formatError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"formatError\", function() { return formatError; });\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n\n\n/**\n * Given a GraphQLError, format it according to the rules described by the\n * Response Format, Errors section of the GraphQL Specification.\n */\nfunction formatError(error) {\n var _error$message;\n\n error || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(0, 'Received null or undefined error.');\n var message = (_error$message = error.message) !== null && _error$message !== void 0 ? _error$message : 'An unknown error occurred.';\n var locations = error.locations;\n var path = error.path;\n var extensions = error.extensions;\n return extensions && Object.keys(extensions).length > 0 ? {\n message: message,\n locations: locations,\n path: path,\n extensions: extensions\n } : {\n message: message,\n locations: locations,\n path: path\n };\n}\n/**\n * @see https://github.com/graphql/graphql-spec/blob/master/spec/Section%207%20--%20Response.md#errors\n */\n\n\n//# sourceURL=webpack:///./node_modules/graphql/error/formatError.mjs?"); /***/ }), /***/ "./node_modules/graphql/error/index.mjs": /*!**********************************************!*\ !*** ./node_modules/graphql/error/index.mjs ***! \**********************************************/ /*! exports provided: GraphQLError, printError, syntaxError, locatedError, formatError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLError\", function() { return _GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printError\", function() { return _GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"printError\"]; });\n\n/* harmony import */ var _syntaxError_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./syntaxError.mjs */ \"./node_modules/graphql/error/syntaxError.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"syntaxError\", function() { return _syntaxError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"syntaxError\"]; });\n\n/* harmony import */ var _locatedError_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./locatedError.mjs */ \"./node_modules/graphql/error/locatedError.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"locatedError\", function() { return _locatedError_mjs__WEBPACK_IMPORTED_MODULE_2__[\"locatedError\"]; });\n\n/* harmony import */ var _formatError_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./formatError.mjs */ \"./node_modules/graphql/error/formatError.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"formatError\", function() { return _formatError_mjs__WEBPACK_IMPORTED_MODULE_3__[\"formatError\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/graphql/error/index.mjs?"); /***/ }), /***/ "./node_modules/graphql/error/locatedError.mjs": /*!*****************************************************!*\ !*** ./node_modules/graphql/error/locatedError.mjs ***! \*****************************************************/ /*! exports provided: locatedError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"locatedError\", function() { return locatedError; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Given an arbitrary value, presumably thrown while attempting to execute a\n * GraphQL operation, produce a new GraphQLError aware of the location in the\n * document responsible for the original Error.\n */\n\nfunction locatedError(rawOriginalError, nodes, path) {\n var _nodes;\n\n // Sometimes a non-error is thrown, wrap it as an Error instance to ensure a consistent Error interface.\n var originalError = rawOriginalError instanceof Error ? rawOriginalError : new Error('Unexpected error value: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(rawOriginalError)); // Note: this uses a brand-check to support GraphQL errors originating from other contexts.\n\n if (Array.isArray(originalError.path)) {\n return originalError;\n }\n\n return new _GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](originalError.message, (_nodes = originalError.nodes) !== null && _nodes !== void 0 ? _nodes : nodes, originalError.source, originalError.positions, path, originalError);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/error/locatedError.mjs?"); /***/ }), /***/ "./node_modules/graphql/error/syntaxError.mjs": /*!****************************************************!*\ !*** ./node_modules/graphql/error/syntaxError.mjs ***! \****************************************************/ /*! exports provided: syntaxError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"syntaxError\", function() { return syntaxError; });\n/* harmony import */ var _GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n/**\n * Produces a GraphQLError representing a syntax error, containing useful\n * descriptive information about the syntax error's position in the source.\n */\n\nfunction syntaxError(source, position, description) {\n return new _GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Syntax Error: \".concat(description), undefined, source, [position]);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/error/syntaxError.mjs?"); /***/ }), /***/ "./node_modules/graphql/execution/execute.mjs": /*!****************************************************!*\ !*** ./node_modules/graphql/execution/execute.mjs ***! \****************************************************/ /*! exports provided: execute, executeSync, assertValidExecutionArguments, buildExecutionContext, collectFields, buildResolveInfo, defaultTypeResolver, defaultFieldResolver, getFieldDef */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"execute\", function() { return execute; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"executeSync\", function() { return executeSync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertValidExecutionArguments\", function() { return assertValidExecutionArguments; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildExecutionContext\", function() { return buildExecutionContext; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"collectFields\", function() { return collectFields; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildResolveInfo\", function() { return buildResolveInfo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultTypeResolver\", function() { return defaultTypeResolver; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultFieldResolver\", function() { return defaultFieldResolver; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getFieldDef\", function() { return getFieldDef; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_memoize3_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/memoize3.mjs */ \"./node_modules/graphql/jsutils/memoize3.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/isPromise.mjs */ \"./node_modules/graphql/jsutils/isPromise.mjs\");\n/* harmony import */ var _jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../jsutils/isObjectLike.mjs */ \"./node_modules/graphql/jsutils/isObjectLike.mjs\");\n/* harmony import */ var _jsutils_safeArrayFrom_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../jsutils/safeArrayFrom.mjs */ \"./node_modules/graphql/jsutils/safeArrayFrom.mjs\");\n/* harmony import */ var _jsutils_promiseReduce_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../jsutils/promiseReduce.mjs */ \"./node_modules/graphql/jsutils/promiseReduce.mjs\");\n/* harmony import */ var _jsutils_promiseForObject_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../jsutils/promiseForObject.mjs */ \"./node_modules/graphql/jsutils/promiseForObject.mjs\");\n/* harmony import */ var _jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../jsutils/Path.mjs */ \"./node_modules/graphql/jsutils/Path.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../error/locatedError.mjs */ \"./node_modules/graphql/error/locatedError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _type_validate_mjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../type/validate.mjs */ \"./node_modules/graphql/type/validate.mjs\");\n/* harmony import */ var _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../type/introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../utilities/typeFromAST.mjs */ \"./node_modules/graphql/utilities/typeFromAST.mjs\");\n/* harmony import */ var _utilities_getOperationRootType_mjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../utilities/getOperationRootType.mjs */ \"./node_modules/graphql/utilities/getOperationRootType.mjs\");\n/* harmony import */ var _values_mjs__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./values.mjs */ \"./node_modules/graphql/execution/values.mjs\");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Terminology\n *\n * \"Definitions\" are the generic name for top-level statements in the document.\n * Examples of this include:\n * 1) Operations (such as a query)\n * 2) Fragments\n *\n * \"Operations\" are a generic name for requests in the document.\n * Examples of this include:\n * 1) query,\n * 2) mutation\n *\n * \"Selections\" are the definitions that can appear legally and at\n * single level of the query. These include:\n * 1) field references e.g \"a\"\n * 2) fragment \"spreads\" e.g. \"...c\"\n * 3) inline fragment \"spreads\" e.g. \"...on Type { a }\"\n */\n\n/**\n * Data that must be available at all points during query execution.\n *\n * Namely, schema of the type system that is currently executing,\n * and the fragments defined in the query document\n */\n\nfunction execute(argsOrSchema, document, rootValue, contextValue, variableValues, operationName, fieldResolver, typeResolver) {\n /* eslint-enable no-redeclare */\n // Extract arguments from object args if provided.\n return arguments.length === 1 ? executeImpl(argsOrSchema) : executeImpl({\n schema: argsOrSchema,\n document: document,\n rootValue: rootValue,\n contextValue: contextValue,\n variableValues: variableValues,\n operationName: operationName,\n fieldResolver: fieldResolver,\n typeResolver: typeResolver\n });\n}\n/**\n * Also implements the \"Evaluating requests\" section of the GraphQL specification.\n * However, it guarantees to complete synchronously (or throw an error) assuming\n * that all field resolvers are also synchronous.\n */\n\nfunction executeSync(args) {\n var result = executeImpl(args); // Assert that the execution was synchronous.\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(result)) {\n throw new Error('GraphQL execution failed to complete synchronously.');\n }\n\n return result;\n}\n\nfunction executeImpl(args) {\n var schema = args.schema,\n document = args.document,\n rootValue = args.rootValue,\n contextValue = args.contextValue,\n variableValues = args.variableValues,\n operationName = args.operationName,\n fieldResolver = args.fieldResolver,\n typeResolver = args.typeResolver; // If arguments are missing or incorrect, throw an error.\n\n assertValidExecutionArguments(schema, document, variableValues); // If a valid execution context cannot be created due to incorrect arguments,\n // a \"Response\" with only errors is returned.\n\n var exeContext = buildExecutionContext(schema, document, rootValue, contextValue, variableValues, operationName, fieldResolver, typeResolver); // Return early errors if execution context failed.\n\n if (Array.isArray(exeContext)) {\n return {\n errors: exeContext\n };\n } // Return a Promise that will eventually resolve to the data described by\n // The \"Response\" section of the GraphQL specification.\n //\n // If errors are encountered while executing a GraphQL field, only that\n // field and its descendants will be omitted, and sibling fields will still\n // be executed. An execution which encounters errors will still result in a\n // resolved Promise.\n\n\n var data = executeOperation(exeContext, exeContext.operation, rootValue);\n return buildResponse(exeContext, data);\n}\n/**\n * Given a completed execution context and data, build the { errors, data }\n * response defined by the \"Response\" section of the GraphQL specification.\n */\n\n\nfunction buildResponse(exeContext, data) {\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(data)) {\n return data.then(function (resolved) {\n return buildResponse(exeContext, resolved);\n });\n }\n\n return exeContext.errors.length === 0 ? {\n data: data\n } : {\n errors: exeContext.errors,\n data: data\n };\n}\n/**\n * Essential assertions before executing to provide developer feedback for\n * improper use of the GraphQL library.\n *\n * @internal\n */\n\n\nfunction assertValidExecutionArguments(schema, document, rawVariableValues) {\n document || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(0, 'Must provide document.'); // If the schema used for execution is invalid, throw an error.\n\n Object(_type_validate_mjs__WEBPACK_IMPORTED_MODULE_13__[\"assertValidSchema\"])(schema); // Variables, if provided, must be an object.\n\n rawVariableValues == null || Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(rawVariableValues) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(0, 'Variables must be provided as an Object where each property is a variable value. Perhaps look to see if an unparsed JSON string was provided.');\n}\n/**\n * Constructs a ExecutionContext object from the arguments passed to\n * execute, which we will pass throughout the other execution methods.\n *\n * Throws a GraphQLError if a valid execution context cannot be created.\n *\n * @internal\n */\n\nfunction buildExecutionContext(schema, document, rootValue, contextValue, rawVariableValues, operationName, fieldResolver, typeResolver) {\n var _definition$name, _operation$variableDe;\n\n var operation;\n var fragments = Object.create(null);\n\n for (var _i2 = 0, _document$definitions2 = document.definitions; _i2 < _document$definitions2.length; _i2++) {\n var definition = _document$definitions2[_i2];\n\n switch (definition.kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_12__[\"Kind\"].OPERATION_DEFINITION:\n if (operationName == null) {\n if (operation !== undefined) {\n return [new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"]('Must provide operation name if query contains multiple operations.')];\n }\n\n operation = definition;\n } else if (((_definition$name = definition.name) === null || _definition$name === void 0 ? void 0 : _definition$name.value) === operationName) {\n operation = definition;\n }\n\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_12__[\"Kind\"].FRAGMENT_DEFINITION:\n fragments[definition.name.value] = definition;\n break;\n }\n }\n\n if (!operation) {\n if (operationName != null) {\n return [new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"](\"Unknown operation named \\\"\".concat(operationName, \"\\\".\"))];\n }\n\n return [new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"]('Must provide an operation.')];\n } // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n\n\n var variableDefinitions = (_operation$variableDe = operation.variableDefinitions) !== null && _operation$variableDe !== void 0 ? _operation$variableDe : [];\n var coercedVariableValues = Object(_values_mjs__WEBPACK_IMPORTED_MODULE_19__[\"getVariableValues\"])(schema, variableDefinitions, rawVariableValues !== null && rawVariableValues !== void 0 ? rawVariableValues : {}, {\n maxErrors: 50\n });\n\n if (coercedVariableValues.errors) {\n return coercedVariableValues.errors;\n }\n\n return {\n schema: schema,\n fragments: fragments,\n rootValue: rootValue,\n contextValue: contextValue,\n operation: operation,\n variableValues: coercedVariableValues.coerced,\n fieldResolver: fieldResolver !== null && fieldResolver !== void 0 ? fieldResolver : defaultFieldResolver,\n typeResolver: typeResolver !== null && typeResolver !== void 0 ? typeResolver : defaultTypeResolver,\n errors: []\n };\n}\n/**\n * Implements the \"Evaluating operations\" section of the spec.\n */\n\nfunction executeOperation(exeContext, operation, rootValue) {\n var type = Object(_utilities_getOperationRootType_mjs__WEBPACK_IMPORTED_MODULE_18__[\"getOperationRootType\"])(exeContext.schema, operation);\n var fields = collectFields(exeContext, type, operation.selectionSet, Object.create(null), Object.create(null));\n var path = undefined; // Errors from sub-fields of a NonNull type may propagate to the top level,\n // at which point we still log the error and null the parent field, which\n // in this case is the entire response.\n\n try {\n var result = operation.operation === 'mutation' ? executeFieldsSerially(exeContext, type, rootValue, path, fields) : executeFields(exeContext, type, rootValue, path, fields);\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(result)) {\n return result.then(undefined, function (error) {\n exeContext.errors.push(error);\n return Promise.resolve(null);\n });\n }\n\n return result;\n } catch (error) {\n exeContext.errors.push(error);\n return null;\n }\n}\n/**\n * Implements the \"Evaluating selection sets\" section of the spec\n * for \"write\" mode.\n */\n\n\nfunction executeFieldsSerially(exeContext, parentType, sourceValue, path, fields) {\n return Object(_jsutils_promiseReduce_mjs__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(Object.keys(fields), function (results, responseName) {\n var fieldNodes = fields[responseName];\n var fieldPath = Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_9__[\"addPath\"])(path, responseName, parentType.name);\n var result = resolveField(exeContext, parentType, sourceValue, fieldNodes, fieldPath);\n\n if (result === undefined) {\n return results;\n }\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(result)) {\n return result.then(function (resolvedResult) {\n results[responseName] = resolvedResult;\n return results;\n });\n }\n\n results[responseName] = result;\n return results;\n }, Object.create(null));\n}\n/**\n * Implements the \"Evaluating selection sets\" section of the spec\n * for \"read\" mode.\n */\n\n\nfunction executeFields(exeContext, parentType, sourceValue, path, fields) {\n var results = Object.create(null);\n var containsPromise = false;\n\n for (var _i4 = 0, _Object$keys2 = Object.keys(fields); _i4 < _Object$keys2.length; _i4++) {\n var responseName = _Object$keys2[_i4];\n var fieldNodes = fields[responseName];\n var fieldPath = Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_9__[\"addPath\"])(path, responseName, parentType.name);\n var result = resolveField(exeContext, parentType, sourceValue, fieldNodes, fieldPath);\n\n if (result !== undefined) {\n results[responseName] = result;\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(result)) {\n containsPromise = true;\n }\n }\n } // If there are no promises, we can just return the object\n\n\n if (!containsPromise) {\n return results;\n } // Otherwise, results is a map from field name to the result of resolving that\n // field, which is possibly a promise. Return a promise that will return this\n // same map, but with any promises replaced with the values they resolved to.\n\n\n return Object(_jsutils_promiseForObject_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(results);\n}\n/**\n * Given a selectionSet, adds all of the fields in that selection to\n * the passed in map of fields, and returns it at the end.\n *\n * CollectFields requires the \"runtime type\" of an object. For a field which\n * returns an Interface or Union type, the \"runtime type\" will be the actual\n * Object type returned by that field.\n *\n * @internal\n */\n\n\nfunction collectFields(exeContext, runtimeType, selectionSet, fields, visitedFragmentNames) {\n for (var _i6 = 0, _selectionSet$selecti2 = selectionSet.selections; _i6 < _selectionSet$selecti2.length; _i6++) {\n var selection = _selectionSet$selecti2[_i6];\n\n switch (selection.kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_12__[\"Kind\"].FIELD:\n {\n if (!shouldIncludeNode(exeContext, selection)) {\n continue;\n }\n\n var name = getFieldEntryKey(selection);\n\n if (!fields[name]) {\n fields[name] = [];\n }\n\n fields[name].push(selection);\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_12__[\"Kind\"].INLINE_FRAGMENT:\n {\n if (!shouldIncludeNode(exeContext, selection) || !doesFragmentConditionMatch(exeContext, selection, runtimeType)) {\n continue;\n }\n\n collectFields(exeContext, runtimeType, selection.selectionSet, fields, visitedFragmentNames);\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_12__[\"Kind\"].FRAGMENT_SPREAD:\n {\n var fragName = selection.name.value;\n\n if (visitedFragmentNames[fragName] || !shouldIncludeNode(exeContext, selection)) {\n continue;\n }\n\n visitedFragmentNames[fragName] = true;\n var fragment = exeContext.fragments[fragName];\n\n if (!fragment || !doesFragmentConditionMatch(exeContext, fragment, runtimeType)) {\n continue;\n }\n\n collectFields(exeContext, runtimeType, fragment.selectionSet, fields, visitedFragmentNames);\n break;\n }\n }\n }\n\n return fields;\n}\n/**\n * Determines if a field should be included based on the @include and @skip\n * directives, where @skip has higher precedence than @include.\n */\n\nfunction shouldIncludeNode(exeContext, node) {\n var skip = Object(_values_mjs__WEBPACK_IMPORTED_MODULE_19__[\"getDirectiveValues\"])(_type_directives_mjs__WEBPACK_IMPORTED_MODULE_15__[\"GraphQLSkipDirective\"], node, exeContext.variableValues);\n\n if ((skip === null || skip === void 0 ? void 0 : skip.if) === true) {\n return false;\n }\n\n var include = Object(_values_mjs__WEBPACK_IMPORTED_MODULE_19__[\"getDirectiveValues\"])(_type_directives_mjs__WEBPACK_IMPORTED_MODULE_15__[\"GraphQLIncludeDirective\"], node, exeContext.variableValues);\n\n if ((include === null || include === void 0 ? void 0 : include.if) === false) {\n return false;\n }\n\n return true;\n}\n/**\n * Determines if a fragment is applicable to the given type.\n */\n\n\nfunction doesFragmentConditionMatch(exeContext, fragment, type) {\n var typeConditionNode = fragment.typeCondition;\n\n if (!typeConditionNode) {\n return true;\n }\n\n var conditionalType = Object(_utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_17__[\"typeFromAST\"])(exeContext.schema, typeConditionNode);\n\n if (conditionalType === type) {\n return true;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isAbstractType\"])(conditionalType)) {\n return exeContext.schema.isSubType(conditionalType, type);\n }\n\n return false;\n}\n/**\n * Implements the logic to compute the key of a given field's entry\n */\n\n\nfunction getFieldEntryKey(node) {\n return node.alias ? node.alias.value : node.name.value;\n}\n/**\n * Resolves the field on the given source object. In particular, this\n * figures out the value that the field returns by calling its resolve function,\n * then calls completeValue to complete promises, serialize scalars, or execute\n * the sub-selection-set for objects.\n */\n\n\nfunction resolveField(exeContext, parentType, source, fieldNodes, path) {\n var _fieldDef$resolve;\n\n var fieldNode = fieldNodes[0];\n var fieldName = fieldNode.name.value;\n var fieldDef = getFieldDef(exeContext.schema, parentType, fieldName);\n\n if (!fieldDef) {\n return;\n }\n\n var returnType = fieldDef.type;\n var resolveFn = (_fieldDef$resolve = fieldDef.resolve) !== null && _fieldDef$resolve !== void 0 ? _fieldDef$resolve : exeContext.fieldResolver;\n var info = buildResolveInfo(exeContext, fieldDef, fieldNodes, parentType, path); // Get the resolve function, regardless of if its result is normal or abrupt (error).\n\n try {\n // Build a JS object of arguments from the field.arguments AST, using the\n // variables scope to fulfill any variable references.\n // TODO: find a way to memoize, in case this field is within a List type.\n var args = Object(_values_mjs__WEBPACK_IMPORTED_MODULE_19__[\"getArgumentValues\"])(fieldDef, fieldNodes[0], exeContext.variableValues); // The resolve function's optional third argument is a context value that\n // is provided to every resolve function within an execution. It is commonly\n // used to represent an authenticated user, or request-specific caches.\n\n var _contextValue = exeContext.contextValue;\n var result = resolveFn(source, args, _contextValue, info);\n var completed;\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(result)) {\n completed = result.then(function (resolved) {\n return completeValue(exeContext, returnType, fieldNodes, info, path, resolved);\n });\n } else {\n completed = completeValue(exeContext, returnType, fieldNodes, info, path, result);\n }\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(completed)) {\n // Note: we don't rely on a `catch` method, but we do expect \"thenable\"\n // to take a second callback for the error case.\n return completed.then(undefined, function (rawError) {\n var error = Object(_error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_11__[\"locatedError\"])(rawError, fieldNodes, Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_9__[\"pathToArray\"])(path));\n return handleFieldError(error, returnType, exeContext);\n });\n }\n\n return completed;\n } catch (rawError) {\n var error = Object(_error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_11__[\"locatedError\"])(rawError, fieldNodes, Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_9__[\"pathToArray\"])(path));\n return handleFieldError(error, returnType, exeContext);\n }\n}\n/**\n * @internal\n */\n\n\nfunction buildResolveInfo(exeContext, fieldDef, fieldNodes, parentType, path) {\n // The resolve function's optional fourth argument is a collection of\n // information about the current execution state.\n return {\n fieldName: fieldDef.name,\n fieldNodes: fieldNodes,\n returnType: fieldDef.type,\n parentType: parentType,\n path: path,\n schema: exeContext.schema,\n fragments: exeContext.fragments,\n rootValue: exeContext.rootValue,\n operation: exeContext.operation,\n variableValues: exeContext.variableValues\n };\n}\n\nfunction handleFieldError(error, returnType, exeContext) {\n // If the field type is non-nullable, then it is resolved without any\n // protection from errors, however it still properly locates the error.\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isNonNullType\"])(returnType)) {\n throw error;\n } // Otherwise, error protection is applied, logging the error and resolving\n // a null value for this field if one is encountered.\n\n\n exeContext.errors.push(error);\n return null;\n}\n/**\n * Implements the instructions for completeValue as defined in the\n * \"Field entries\" section of the spec.\n *\n * If the field type is Non-Null, then this recursively completes the value\n * for the inner type. It throws a field error if that completion returns null,\n * as per the \"Nullability\" section of the spec.\n *\n * If the field type is a List, then this recursively completes the value\n * for the inner type on each item in the list.\n *\n * If the field type is a Scalar or Enum, ensures the completed value is a legal\n * value of the type by calling the `serialize` method of GraphQL type\n * definition.\n *\n * If the field is an abstract type, determine the runtime type of the value\n * and then complete based on that type\n *\n * Otherwise, the field type expects a sub-selection set, and will complete the\n * value by evaluating all sub-selections.\n */\n\n\nfunction completeValue(exeContext, returnType, fieldNodes, info, path, result) {\n // If result is an Error, throw a located error.\n if (result instanceof Error) {\n throw result;\n } // If field type is NonNull, complete for inner type, and throw field error\n // if result is null.\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isNonNullType\"])(returnType)) {\n var completed = completeValue(exeContext, returnType.ofType, fieldNodes, info, path, result);\n\n if (completed === null) {\n throw new Error(\"Cannot return null for non-nullable field \".concat(info.parentType.name, \".\").concat(info.fieldName, \".\"));\n }\n\n return completed;\n } // If result value is null or undefined then return null.\n\n\n if (result == null) {\n return null;\n } // If field type is List, complete each item in the list with the inner type\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isListType\"])(returnType)) {\n return completeListValue(exeContext, returnType, fieldNodes, info, path, result);\n } // If field type is a leaf type, Scalar or Enum, serialize to a valid value,\n // returning null if serialization is not possible.\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isLeafType\"])(returnType)) {\n return completeLeafValue(returnType, result);\n } // If field type is an abstract type, Interface or Union, determine the\n // runtime Object type and complete for that type.\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isAbstractType\"])(returnType)) {\n return completeAbstractValue(exeContext, returnType, fieldNodes, info, path, result);\n } // If field type is Object, execute and complete all sub-selections.\n // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isObjectType\"])(returnType)) {\n return completeObjectValue(exeContext, returnType, fieldNodes, info, path, result);\n } // istanbul ignore next (Not reachable. All possible output types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, 'Cannot complete value of unexpected output type: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(returnType));\n}\n/**\n * Complete a list value by completing each item in the list with the\n * inner type\n */\n\n\nfunction completeListValue(exeContext, returnType, fieldNodes, info, path, result) {\n // This is specified as a simple map, however we're optimizing the path\n // where the list contains no Promises by avoiding creating another Promise.\n var itemType = returnType.ofType;\n var containsPromise = false;\n var completedResults = Object(_jsutils_safeArrayFrom_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(result, function (item, index) {\n // No need to modify the info object containing the path,\n // since from here on it is not ever accessed by resolver functions.\n var itemPath = Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_9__[\"addPath\"])(path, index, undefined);\n\n try {\n var completedItem;\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(item)) {\n completedItem = item.then(function (resolved) {\n return completeValue(exeContext, itemType, fieldNodes, info, itemPath, resolved);\n });\n } else {\n completedItem = completeValue(exeContext, itemType, fieldNodes, info, itemPath, item);\n }\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(completedItem)) {\n containsPromise = true; // Note: we don't rely on a `catch` method, but we do expect \"thenable\"\n // to take a second callback for the error case.\n\n return completedItem.then(undefined, function (rawError) {\n var error = Object(_error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_11__[\"locatedError\"])(rawError, fieldNodes, Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_9__[\"pathToArray\"])(itemPath));\n return handleFieldError(error, itemType, exeContext);\n });\n }\n\n return completedItem;\n } catch (rawError) {\n var error = Object(_error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_11__[\"locatedError\"])(rawError, fieldNodes, Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_9__[\"pathToArray\"])(itemPath));\n return handleFieldError(error, itemType, exeContext);\n }\n });\n\n if (completedResults == null) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"](\"Expected Iterable, but did not find one for field \\\"\".concat(info.parentType.name, \".\").concat(info.fieldName, \"\\\".\"));\n }\n\n return containsPromise ? Promise.all(completedResults) : completedResults;\n}\n/**\n * Complete a Scalar or Enum by serializing to a valid value, returning\n * null if serialization is not possible.\n */\n\n\nfunction completeLeafValue(returnType, result) {\n var serializedResult = returnType.serialize(result);\n\n if (serializedResult === undefined) {\n throw new Error(\"Expected a value of type \\\"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(returnType), \"\\\" but \") + \"received: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(result)));\n }\n\n return serializedResult;\n}\n/**\n * Complete a value of an abstract type by determining the runtime object type\n * of that value, then complete the value for that type.\n */\n\n\nfunction completeAbstractValue(exeContext, returnType, fieldNodes, info, path, result) {\n var _returnType$resolveTy;\n\n var resolveTypeFn = (_returnType$resolveTy = returnType.resolveType) !== null && _returnType$resolveTy !== void 0 ? _returnType$resolveTy : exeContext.typeResolver;\n var contextValue = exeContext.contextValue;\n var runtimeType = resolveTypeFn(result, contextValue, info, returnType);\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(runtimeType)) {\n return runtimeType.then(function (resolvedRuntimeType) {\n return completeObjectValue(exeContext, ensureValidRuntimeType(resolvedRuntimeType, exeContext, returnType, fieldNodes, info, result), fieldNodes, info, path, result);\n });\n }\n\n return completeObjectValue(exeContext, ensureValidRuntimeType(runtimeType, exeContext, returnType, fieldNodes, info, result), fieldNodes, info, path, result);\n}\n\nfunction ensureValidRuntimeType(runtimeTypeOrName, exeContext, returnType, fieldNodes, info, result) {\n if (runtimeTypeOrName == null) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"](\"Abstract type \\\"\".concat(returnType.name, \"\\\" must resolve to an Object type at runtime for field \\\"\").concat(info.parentType.name, \".\").concat(info.fieldName, \"\\\". Either the \\\"\").concat(returnType.name, \"\\\" type should provide a \\\"resolveType\\\" function or each possible type should provide an \\\"isTypeOf\\\" function.\"), fieldNodes);\n } // FIXME: temporary workaround until support for passing object types would be removed in v16.0.0\n\n\n var runtimeTypeName = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isNamedType\"])(runtimeTypeOrName) ? runtimeTypeOrName.name : runtimeTypeOrName;\n\n if (typeof runtimeTypeName !== 'string') {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"](\"Abstract type \\\"\".concat(returnType.name, \"\\\" must resolve to an Object type at runtime for field \\\"\").concat(info.parentType.name, \".\").concat(info.fieldName, \"\\\" with \") + \"value \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(result), \", received \\\"\").concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(runtimeTypeOrName), \"\\\".\"));\n }\n\n var runtimeType = exeContext.schema.getType(runtimeTypeName);\n\n if (runtimeType == null) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"](\"Abstract type \\\"\".concat(returnType.name, \"\\\" was resolve to a type \\\"\").concat(runtimeTypeName, \"\\\" that does not exist inside schema.\"), fieldNodes);\n }\n\n if (!Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isObjectType\"])(runtimeType)) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"](\"Abstract type \\\"\".concat(returnType.name, \"\\\" was resolve to a non-object type \\\"\").concat(runtimeTypeName, \"\\\".\"), fieldNodes);\n }\n\n if (!exeContext.schema.isSubType(returnType, runtimeType)) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"](\"Runtime Object type \\\"\".concat(runtimeType.name, \"\\\" is not a possible type for \\\"\").concat(returnType.name, \"\\\".\"), fieldNodes);\n }\n\n return runtimeType;\n}\n/**\n * Complete an Object value by executing all sub-selections.\n */\n\n\nfunction completeObjectValue(exeContext, returnType, fieldNodes, info, path, result) {\n // If there is an isTypeOf predicate function, call it with the\n // current result. If isTypeOf returns false, then raise an error rather\n // than continuing execution.\n if (returnType.isTypeOf) {\n var isTypeOf = returnType.isTypeOf(result, exeContext.contextValue, info);\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(isTypeOf)) {\n return isTypeOf.then(function (resolvedIsTypeOf) {\n if (!resolvedIsTypeOf) {\n throw invalidReturnTypeError(returnType, result, fieldNodes);\n }\n\n return collectAndExecuteSubfields(exeContext, returnType, fieldNodes, path, result);\n });\n }\n\n if (!isTypeOf) {\n throw invalidReturnTypeError(returnType, result, fieldNodes);\n }\n }\n\n return collectAndExecuteSubfields(exeContext, returnType, fieldNodes, path, result);\n}\n\nfunction invalidReturnTypeError(returnType, result, fieldNodes) {\n return new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLError\"](\"Expected value of type \\\"\".concat(returnType.name, \"\\\" but got: \").concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(result), \".\"), fieldNodes);\n}\n\nfunction collectAndExecuteSubfields(exeContext, returnType, fieldNodes, path, result) {\n // Collect sub-fields to execute to complete this value.\n var subFieldNodes = collectSubfields(exeContext, returnType, fieldNodes);\n return executeFields(exeContext, returnType, result, path, subFieldNodes);\n}\n/**\n * A memoized collection of relevant subfields with regard to the return\n * type. Memoizing ensures the subfields are not repeatedly calculated, which\n * saves overhead when resolving lists of values.\n */\n\n\nvar collectSubfields = Object(_jsutils_memoize3_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(_collectSubfields);\n\nfunction _collectSubfields(exeContext, returnType, fieldNodes) {\n var subFieldNodes = Object.create(null);\n var visitedFragmentNames = Object.create(null);\n\n for (var _i8 = 0; _i8 < fieldNodes.length; _i8++) {\n var node = fieldNodes[_i8];\n\n if (node.selectionSet) {\n subFieldNodes = collectFields(exeContext, returnType, node.selectionSet, subFieldNodes, visitedFragmentNames);\n }\n }\n\n return subFieldNodes;\n}\n/**\n * If a resolveType function is not given, then a default resolve behavior is\n * used which attempts two strategies:\n *\n * First, See if the provided value has a `__typename` field defined, if so, use\n * that value as name of the resolved type.\n *\n * Otherwise, test each possible type for the abstract type by calling\n * isTypeOf for the object being coerced, returning the first type that matches.\n */\n\n\nvar defaultTypeResolver = function defaultTypeResolver(value, contextValue, info, abstractType) {\n // First, look for `__typename`.\n if (Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(value) && typeof value.__typename === 'string') {\n return value.__typename;\n } // Otherwise, test each possible type.\n\n\n var possibleTypes = info.schema.getPossibleTypes(abstractType);\n var promisedIsTypeOfResults = [];\n\n for (var i = 0; i < possibleTypes.length; i++) {\n var type = possibleTypes[i];\n\n if (type.isTypeOf) {\n var isTypeOfResult = type.isTypeOf(value, contextValue, info);\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(isTypeOfResult)) {\n promisedIsTypeOfResults[i] = isTypeOfResult;\n } else if (isTypeOfResult) {\n return type.name;\n }\n }\n }\n\n if (promisedIsTypeOfResults.length) {\n return Promise.all(promisedIsTypeOfResults).then(function (isTypeOfResults) {\n for (var _i9 = 0; _i9 < isTypeOfResults.length; _i9++) {\n if (isTypeOfResults[_i9]) {\n return possibleTypes[_i9].name;\n }\n }\n });\n }\n};\n/**\n * If a resolve function is not given, then a default resolve behavior is used\n * which takes the property of the source object of the same name as the field\n * and returns it as the result, or if it's a function, returns the result\n * of calling that function while passing along args and context value.\n */\n\nvar defaultFieldResolver = function defaultFieldResolver(source, args, contextValue, info) {\n // ensure source is a value for which property access is acceptable.\n if (Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(source) || typeof source === 'function') {\n var property = source[info.fieldName];\n\n if (typeof property === 'function') {\n return source[info.fieldName](args, contextValue, info);\n }\n\n return property;\n }\n};\n/**\n * This method looks up the field on the given type definition.\n * It has special casing for the three introspection fields,\n * __schema, __type and __typename. __typename is special because\n * it can always be queried as a field, even in situations where no\n * other fields are allowed, like on a Union. __schema and __type\n * could get automatically added to the query type, but that would\n * require mutating type definitions, which would cause issues.\n *\n * @internal\n */\n\nfunction getFieldDef(schema, parentType, fieldName) {\n if (fieldName === _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__[\"SchemaMetaFieldDef\"].name && schema.getQueryType() === parentType) {\n return _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__[\"SchemaMetaFieldDef\"];\n } else if (fieldName === _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__[\"TypeMetaFieldDef\"].name && schema.getQueryType() === parentType) {\n return _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__[\"TypeMetaFieldDef\"];\n } else if (fieldName === _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__[\"TypeNameMetaFieldDef\"].name) {\n return _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__[\"TypeNameMetaFieldDef\"];\n }\n\n return parentType.getFields()[fieldName];\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/execution/execute.mjs?"); /***/ }), /***/ "./node_modules/graphql/execution/index.mjs": /*!**************************************************!*\ !*** ./node_modules/graphql/execution/index.mjs ***! \**************************************************/ /*! exports provided: responsePathAsArray, execute, executeSync, defaultFieldResolver, defaultTypeResolver, getDirectiveValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/Path.mjs */ \"./node_modules/graphql/jsutils/Path.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"responsePathAsArray\", function() { return _jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_0__[\"pathToArray\"]; });\n\n/* harmony import */ var _execute_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./execute.mjs */ \"./node_modules/graphql/execution/execute.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"execute\", function() { return _execute_mjs__WEBPACK_IMPORTED_MODULE_1__[\"execute\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"executeSync\", function() { return _execute_mjs__WEBPACK_IMPORTED_MODULE_1__[\"executeSync\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultFieldResolver\", function() { return _execute_mjs__WEBPACK_IMPORTED_MODULE_1__[\"defaultFieldResolver\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultTypeResolver\", function() { return _execute_mjs__WEBPACK_IMPORTED_MODULE_1__[\"defaultTypeResolver\"]; });\n\n/* harmony import */ var _values_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./values.mjs */ \"./node_modules/graphql/execution/values.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getDirectiveValues\", function() { return _values_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getDirectiveValues\"]; });\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/graphql/execution/index.mjs?"); /***/ }), /***/ "./node_modules/graphql/execution/values.mjs": /*!***************************************************!*\ !*** ./node_modules/graphql/execution/values.mjs ***! \***************************************************/ /*! exports provided: getVariableValues, getArgumentValues, getDirectiveValues */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getVariableValues\", function() { return getVariableValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getArgumentValues\", function() { return getArgumentValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getDirectiveValues\", function() { return getDirectiveValues; });\n/* harmony import */ var _polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/find.mjs */ \"./node_modules/graphql/polyfills/find.mjs\");\n/* harmony import */ var _jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/keyMap.mjs */ \"./node_modules/graphql/jsutils/keyMap.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_printPathArray_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/printPathArray.mjs */ \"./node_modules/graphql/jsutils/printPathArray.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../utilities/typeFromAST.mjs */ \"./node_modules/graphql/utilities/typeFromAST.mjs\");\n/* harmony import */ var _utilities_valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../utilities/valueFromAST.mjs */ \"./node_modules/graphql/utilities/valueFromAST.mjs\");\n/* harmony import */ var _utilities_coerceInputValue_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../utilities/coerceInputValue.mjs */ \"./node_modules/graphql/utilities/coerceInputValue.mjs\");\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Prepares an object map of variableValues of the correct type based on the\n * provided variable definitions and arbitrary input. If the input cannot be\n * parsed to match the variable definitions, a GraphQLError will be thrown.\n *\n * Note: The returned value is a plain Object with a prototype, since it is\n * exposed to user code. Care should be taken to not pull values from the\n * Object prototype.\n *\n * @internal\n */\nfunction getVariableValues(schema, varDefNodes, inputs, options) {\n var errors = [];\n var maxErrors = options === null || options === void 0 ? void 0 : options.maxErrors;\n\n try {\n var coerced = coerceVariableValues(schema, varDefNodes, inputs, function (error) {\n if (maxErrors != null && errors.length >= maxErrors) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"]('Too many errors processing variables, error limit reached. Execution aborted.');\n }\n\n errors.push(error);\n });\n\n if (errors.length === 0) {\n return {\n coerced: coerced\n };\n }\n } catch (error) {\n errors.push(error);\n }\n\n return {\n errors: errors\n };\n}\n\nfunction coerceVariableValues(schema, varDefNodes, inputs, onError) {\n var coercedValues = {};\n\n var _loop = function _loop(_i2) {\n var varDefNode = varDefNodes[_i2];\n var varName = varDefNode.variable.name.value;\n var varType = Object(_utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_8__[\"typeFromAST\"])(schema, varDefNode.type);\n\n if (!Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInputType\"])(varType)) {\n // Must use input types for variables. This should be caught during\n // validation, however is checked again here for safety.\n var varTypeStr = Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_6__[\"print\"])(varDefNode.type);\n onError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Variable \\\"$\".concat(varName, \"\\\" expected value of type \\\"\").concat(varTypeStr, \"\\\" which cannot be used as an input type.\"), varDefNode.type));\n return \"continue\";\n }\n\n if (!hasOwnProperty(inputs, varName)) {\n if (varDefNode.defaultValue) {\n coercedValues[varName] = Object(_utilities_valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_9__[\"valueFromAST\"])(varDefNode.defaultValue, varType);\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isNonNullType\"])(varType)) {\n var _varTypeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(varType);\n\n onError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Variable \\\"$\".concat(varName, \"\\\" of required type \\\"\").concat(_varTypeStr, \"\\\" was not provided.\"), varDefNode));\n }\n\n return \"continue\";\n }\n\n var value = inputs[varName];\n\n if (value === null && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isNonNullType\"])(varType)) {\n var _varTypeStr2 = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(varType);\n\n onError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Variable \\\"$\".concat(varName, \"\\\" of non-null type \\\"\").concat(_varTypeStr2, \"\\\" must not be null.\"), varDefNode));\n return \"continue\";\n }\n\n coercedValues[varName] = Object(_utilities_coerceInputValue_mjs__WEBPACK_IMPORTED_MODULE_10__[\"coerceInputValue\"])(value, varType, function (path, invalidValue, error) {\n var prefix = \"Variable \\\"$\".concat(varName, \"\\\" got invalid value \") + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(invalidValue);\n\n if (path.length > 0) {\n prefix += \" at \\\"\".concat(varName).concat(Object(_jsutils_printPathArray_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(path), \"\\\"\");\n }\n\n onError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](prefix + '; ' + error.message, varDefNode, undefined, undefined, undefined, error.originalError));\n });\n };\n\n for (var _i2 = 0; _i2 < varDefNodes.length; _i2++) {\n var _ret = _loop(_i2);\n\n if (_ret === \"continue\") continue;\n }\n\n return coercedValues;\n}\n/**\n * Prepares an object map of argument values given a list of argument\n * definitions and list of argument AST nodes.\n *\n * Note: The returned value is a plain Object with a prototype, since it is\n * exposed to user code. Care should be taken to not pull values from the\n * Object prototype.\n *\n * @internal\n */\n\n\nfunction getArgumentValues(def, node, variableValues) {\n var _node$arguments;\n\n var coercedValues = {}; // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n\n var argumentNodes = (_node$arguments = node.arguments) !== null && _node$arguments !== void 0 ? _node$arguments : [];\n var argNodeMap = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(argumentNodes, function (arg) {\n return arg.name.value;\n });\n\n for (var _i4 = 0, _def$args2 = def.args; _i4 < _def$args2.length; _i4++) {\n var argDef = _def$args2[_i4];\n var name = argDef.name;\n var argType = argDef.type;\n var argumentNode = argNodeMap[name];\n\n if (!argumentNode) {\n if (argDef.defaultValue !== undefined) {\n coercedValues[name] = argDef.defaultValue;\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isNonNullType\"])(argType)) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Argument \\\"\".concat(name, \"\\\" of required type \\\"\").concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(argType), \"\\\" \") + 'was not provided.', node);\n }\n\n continue;\n }\n\n var valueNode = argumentNode.value;\n var isNull = valueNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].NULL;\n\n if (valueNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].VARIABLE) {\n var variableName = valueNode.name.value;\n\n if (variableValues == null || !hasOwnProperty(variableValues, variableName)) {\n if (argDef.defaultValue !== undefined) {\n coercedValues[name] = argDef.defaultValue;\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isNonNullType\"])(argType)) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Argument \\\"\".concat(name, \"\\\" of required type \\\"\").concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(argType), \"\\\" \") + \"was provided the variable \\\"$\".concat(variableName, \"\\\" which was not provided a runtime value.\"), valueNode);\n }\n\n continue;\n }\n\n isNull = variableValues[variableName] == null;\n }\n\n if (isNull && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isNonNullType\"])(argType)) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Argument \\\"\".concat(name, \"\\\" of non-null type \\\"\").concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(argType), \"\\\" \") + 'must not be null.', valueNode);\n }\n\n var coercedValue = Object(_utilities_valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_9__[\"valueFromAST\"])(valueNode, argType, variableValues);\n\n if (coercedValue === undefined) {\n // Note: ValuesOfCorrectTypeRule validation should catch this before\n // execution. This is a runtime check to ensure execution does not\n // continue with an invalid argument value.\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Argument \\\"\".concat(name, \"\\\" has invalid value \").concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_6__[\"print\"])(valueNode), \".\"), valueNode);\n }\n\n coercedValues[name] = coercedValue;\n }\n\n return coercedValues;\n}\n/**\n * Prepares an object map of argument values given a directive definition\n * and a AST node which may contain directives. Optionally also accepts a map\n * of variable values.\n *\n * If the directive does not exist on the node, returns undefined.\n *\n * Note: The returned value is a plain Object with a prototype, since it is\n * exposed to user code. Care should be taken to not pull values from the\n * Object prototype.\n */\n\nfunction getDirectiveValues(directiveDef, node, variableValues) {\n var directiveNode = node.directives && Object(_polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(node.directives, function (directive) {\n return directive.name.value === directiveDef.name;\n });\n\n if (directiveNode) {\n return getArgumentValues(directiveDef, directiveNode, variableValues);\n }\n}\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/execution/values.mjs?"); /***/ }), /***/ "./node_modules/graphql/graphql.mjs": /*!******************************************!*\ !*** ./node_modules/graphql/graphql.mjs ***! \******************************************/ /*! exports provided: graphql, graphqlSync */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"graphql\", function() { return graphql; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"graphqlSync\", function() { return graphqlSync; });\n/* harmony import */ var _jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./jsutils/isPromise.mjs */ \"./node_modules/graphql/jsutils/isPromise.mjs\");\n/* harmony import */ var _language_parser_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./language/parser.mjs */ \"./node_modules/graphql/language/parser.mjs\");\n/* harmony import */ var _validation_validate_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./validation/validate.mjs */ \"./node_modules/graphql/validation/validate.mjs\");\n/* harmony import */ var _type_validate_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./type/validate.mjs */ \"./node_modules/graphql/type/validate.mjs\");\n/* harmony import */ var _execution_execute_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./execution/execute.mjs */ \"./node_modules/graphql/execution/execute.mjs\");\n\n\n\n\n\n/**\n * This is the primary entry point function for fulfilling GraphQL operations\n * by parsing, validating, and executing a GraphQL document along side a\n * GraphQL schema.\n *\n * More sophisticated GraphQL servers, such as those which persist queries,\n * may wish to separate the validation and execution phases to a static time\n * tooling step, and a server runtime step.\n *\n * Accepts either an object with named arguments, or individual arguments:\n *\n * schema:\n * The GraphQL type system to use when validating and executing a query.\n * source:\n * A GraphQL language formatted string representing the requested operation.\n * rootValue:\n * The value provided as the first argument to resolver functions on the top\n * level type (e.g. the query object type).\n * contextValue:\n * The context value is provided as an argument to resolver functions after\n * field arguments. It is used to pass shared information useful at any point\n * during executing this query, for example the currently logged in user and\n * connections to databases or other services.\n * variableValues:\n * A mapping of variable name to runtime value to use for all variables\n * defined in the requestString.\n * operationName:\n * The name of the operation to use if requestString contains multiple\n * possible operations. Can be omitted if requestString contains only\n * one operation.\n * fieldResolver:\n * A resolver function to use when one is not provided by the schema.\n * If not provided, the default field resolver is used (which looks for a\n * value or method on the source value with the field's name).\n * typeResolver:\n * A type resolver function to use when none is provided by the schema.\n * If not provided, the default type resolver is used (which looks for a\n * `__typename` field or alternatively calls the `isTypeOf` method).\n */\n\nfunction graphql(argsOrSchema, source, rootValue, contextValue, variableValues, operationName, fieldResolver, typeResolver) {\n var _arguments = arguments;\n\n /* eslint-enable no-redeclare */\n // Always return a Promise for a consistent API.\n return new Promise(function (resolve) {\n return resolve( // Extract arguments from object args if provided.\n _arguments.length === 1 ? graphqlImpl(argsOrSchema) : graphqlImpl({\n schema: argsOrSchema,\n source: source,\n rootValue: rootValue,\n contextValue: contextValue,\n variableValues: variableValues,\n operationName: operationName,\n fieldResolver: fieldResolver,\n typeResolver: typeResolver\n }));\n });\n}\n/**\n * The graphqlSync function also fulfills GraphQL operations by parsing,\n * validating, and executing a GraphQL document along side a GraphQL schema.\n * However, it guarantees to complete synchronously (or throw an error) assuming\n * that all field resolvers are also synchronous.\n */\n\nfunction graphqlSync(argsOrSchema, source, rootValue, contextValue, variableValues, operationName, fieldResolver, typeResolver) {\n /* eslint-enable no-redeclare */\n // Extract arguments from object args if provided.\n var result = arguments.length === 1 ? graphqlImpl(argsOrSchema) : graphqlImpl({\n schema: argsOrSchema,\n source: source,\n rootValue: rootValue,\n contextValue: contextValue,\n variableValues: variableValues,\n operationName: operationName,\n fieldResolver: fieldResolver,\n typeResolver: typeResolver\n }); // Assert that the execution was synchronous.\n\n if (Object(_jsutils_isPromise_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(result)) {\n throw new Error('GraphQL execution failed to complete synchronously.');\n }\n\n return result;\n}\n\nfunction graphqlImpl(args) {\n var schema = args.schema,\n source = args.source,\n rootValue = args.rootValue,\n contextValue = args.contextValue,\n variableValues = args.variableValues,\n operationName = args.operationName,\n fieldResolver = args.fieldResolver,\n typeResolver = args.typeResolver; // Validate Schema\n\n var schemaValidationErrors = Object(_type_validate_mjs__WEBPACK_IMPORTED_MODULE_3__[\"validateSchema\"])(schema);\n\n if (schemaValidationErrors.length > 0) {\n return {\n errors: schemaValidationErrors\n };\n } // Parse\n\n\n var document;\n\n try {\n document = Object(_language_parser_mjs__WEBPACK_IMPORTED_MODULE_1__[\"parse\"])(source);\n } catch (syntaxError) {\n return {\n errors: [syntaxError]\n };\n } // Validate\n\n\n var validationErrors = Object(_validation_validate_mjs__WEBPACK_IMPORTED_MODULE_2__[\"validate\"])(schema, document);\n\n if (validationErrors.length > 0) {\n return {\n errors: validationErrors\n };\n } // Execute\n\n\n return Object(_execution_execute_mjs__WEBPACK_IMPORTED_MODULE_4__[\"execute\"])({\n schema: schema,\n document: document,\n rootValue: rootValue,\n contextValue: contextValue,\n variableValues: variableValues,\n operationName: operationName,\n fieldResolver: fieldResolver,\n typeResolver: typeResolver\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/graphql.mjs?"); /***/ }), /***/ "./node_modules/graphql/index.mjs": /*!****************************************!*\ !*** ./node_modules/graphql/index.mjs ***! \****************************************/ /*! exports provided: version, versionInfo, graphql, graphqlSync, GraphQLSchema, GraphQLDirective, GraphQLScalarType, GraphQLObjectType, GraphQLInterfaceType, GraphQLUnionType, GraphQLEnumType, GraphQLInputObjectType, GraphQLList, GraphQLNonNull, specifiedScalarTypes, GraphQLInt, GraphQLFloat, GraphQLString, GraphQLBoolean, GraphQLID, specifiedDirectives, GraphQLIncludeDirective, GraphQLSkipDirective, GraphQLDeprecatedDirective, GraphQLSpecifiedByDirective, TypeKind, DEFAULT_DEPRECATION_REASON, introspectionTypes, __Schema, __Directive, __DirectiveLocation, __Type, __Field, __InputValue, __EnumValue, __TypeKind, SchemaMetaFieldDef, TypeMetaFieldDef, TypeNameMetaFieldDef, isSchema, isDirective, isType, isScalarType, isObjectType, isInterfaceType, isUnionType, isEnumType, isInputObjectType, isListType, isNonNullType, isInputType, isOutputType, isLeafType, isCompositeType, isAbstractType, isWrappingType, isNullableType, isNamedType, isRequiredArgument, isRequiredInputField, isSpecifiedScalarType, isIntrospectionType, isSpecifiedDirective, assertSchema, assertDirective, assertType, assertScalarType, assertObjectType, assertInterfaceType, assertUnionType, assertEnumType, assertInputObjectType, assertListType, assertNonNullType, assertInputType, assertOutputType, assertLeafType, assertCompositeType, assertAbstractType, assertWrappingType, assertNullableType, assertNamedType, getNullableType, getNamedType, validateSchema, assertValidSchema, Token, Source, Location, getLocation, printLocation, printSourceLocation, Lexer, TokenKind, parse, parseValue, parseType, print, visit, visitInParallel, getVisitFn, BREAK, Kind, DirectiveLocation, isDefinitionNode, isExecutableDefinitionNode, isSelectionNode, isValueNode, isTypeNode, isTypeSystemDefinitionNode, isTypeDefinitionNode, isTypeSystemExtensionNode, isTypeExtensionNode, execute, executeSync, defaultFieldResolver, defaultTypeResolver, responsePathAsArray, getDirectiveValues, subscribe, createSourceEventStream, validate, ValidationContext, specifiedRules, ExecutableDefinitionsRule, FieldsOnCorrectTypeRule, FragmentsOnCompositeTypesRule, KnownArgumentNamesRule, KnownDirectivesRule, KnownFragmentNamesRule, KnownTypeNamesRule, LoneAnonymousOperationRule, NoFragmentCyclesRule, NoUndefinedVariablesRule, NoUnusedFragmentsRule, NoUnusedVariablesRule, OverlappingFieldsCanBeMergedRule, PossibleFragmentSpreadsRule, ProvidedRequiredArgumentsRule, ScalarLeafsRule, SingleFieldSubscriptionsRule, UniqueArgumentNamesRule, UniqueDirectivesPerLocationRule, UniqueFragmentNamesRule, UniqueInputFieldNamesRule, UniqueOperationNamesRule, UniqueVariableNamesRule, ValuesOfCorrectTypeRule, VariablesAreInputTypesRule, VariablesInAllowedPositionRule, LoneSchemaDefinitionRule, UniqueOperationTypesRule, UniqueTypeNamesRule, UniqueEnumValueNamesRule, UniqueFieldDefinitionNamesRule, UniqueDirectiveNamesRule, PossibleTypeExtensionsRule, NoDeprecatedCustomRule, NoSchemaIntrospectionCustomRule, GraphQLError, syntaxError, locatedError, printError, formatError, getIntrospectionQuery, getOperationAST, getOperationRootType, introspectionFromSchema, buildClientSchema, buildASTSchema, buildSchema, getDescription, extendSchema, lexicographicSortSchema, printSchema, printType, printIntrospectionSchema, typeFromAST, valueFromAST, valueFromASTUntyped, astFromValue, TypeInfo, visitWithTypeInfo, coerceInputValue, concatAST, separateOperations, stripIgnoredCharacters, isEqualType, isTypeSubTypeOf, doTypesOverlap, assertValidName, isValidNameError, BreakingChangeType, DangerousChangeType, findBreakingChanges, findDangerousChanges, findDeprecatedUsages */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _version_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./version.mjs */ \"./node_modules/graphql/version.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return _version_mjs__WEBPACK_IMPORTED_MODULE_0__[\"version\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"versionInfo\", function() { return _version_mjs__WEBPACK_IMPORTED_MODULE_0__[\"versionInfo\"]; });\n\n/* harmony import */ var _graphql_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./graphql.mjs */ \"./node_modules/graphql/graphql.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"graphql\", function() { return _graphql_mjs__WEBPACK_IMPORTED_MODULE_1__[\"graphql\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"graphqlSync\", function() { return _graphql_mjs__WEBPACK_IMPORTED_MODULE_1__[\"graphqlSync\"]; });\n\n/* harmony import */ var _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./type/index.mjs */ \"./node_modules/graphql/type/index.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLSchema\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLDirective\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLScalarType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLObjectType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLInterfaceType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLInterfaceType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLUnionType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLUnionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLEnumType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLEnumType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLInputObjectType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLInputObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLList\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLNonNull\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLNonNull\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"specifiedScalarTypes\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"specifiedScalarTypes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLInt\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLInt\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLFloat\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLString\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLBoolean\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLID\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLID\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"specifiedDirectives\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"specifiedDirectives\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLIncludeDirective\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLIncludeDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLSkipDirective\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLSkipDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLDeprecatedDirective\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLDeprecatedDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLSpecifiedByDirective\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLSpecifiedByDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TypeKind\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TypeKind\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_DEPRECATION_REASON\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"DEFAULT_DEPRECATION_REASON\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"introspectionTypes\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"introspectionTypes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__Schema\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"__Schema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__Directive\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"__Directive\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__DirectiveLocation\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"__DirectiveLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__Type\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"__Type\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__Field\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"__Field\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__InputValue\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"__InputValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__EnumValue\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"__EnumValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__TypeKind\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"__TypeKind\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SchemaMetaFieldDef\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"SchemaMetaFieldDef\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TypeMetaFieldDef\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TypeMetaFieldDef\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TypeNameMetaFieldDef\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TypeNameMetaFieldDef\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSchema\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isDirective\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isScalarType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isObjectType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isInterfaceType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isInterfaceType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isUnionType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isUnionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isEnumType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isEnumType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isInputObjectType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isInputObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isListType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isListType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isNonNullType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isNonNullType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isInputType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isInputType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isOutputType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isOutputType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isLeafType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isLeafType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isCompositeType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isCompositeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isAbstractType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isAbstractType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isWrappingType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isWrappingType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isNullableType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isNullableType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isNamedType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isNamedType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isRequiredArgument\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isRequiredArgument\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isRequiredInputField\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isRequiredInputField\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSpecifiedScalarType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isSpecifiedScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIntrospectionType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isIntrospectionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSpecifiedDirective\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isSpecifiedDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertSchema\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertDirective\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertScalarType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertObjectType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertInterfaceType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertInterfaceType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertUnionType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertUnionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertEnumType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertEnumType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertInputObjectType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertInputObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertListType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertListType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertNonNullType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertNonNullType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertInputType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertInputType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertOutputType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertOutputType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertLeafType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertLeafType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertCompositeType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertCompositeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertAbstractType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertAbstractType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertWrappingType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertWrappingType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertNullableType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertNullableType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertNamedType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertNamedType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getNullableType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getNullableType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getNamedType\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getNamedType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateSchema\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"validateSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertValidSchema\", function() { return _type_index_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertValidSchema\"]; });\n\n/* harmony import */ var _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./language/index.mjs */ \"./node_modules/graphql/language/index.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Token\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Token\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Source\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Source\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Location\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Location\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLocation\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"getLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printLocation\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"printLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printSourceLocation\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"printSourceLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Lexer\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Lexer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TokenKind\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parse\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"parse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseValue\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"parseValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseType\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"parseType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"print\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"print\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"visit\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"visit\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"visitInParallel\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"visitInParallel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getVisitFn\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"getVisitFn\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BREAK\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"BREAK\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Kind\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DirectiveLocation\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"DirectiveLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isDefinitionNode\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isDefinitionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isExecutableDefinitionNode\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isExecutableDefinitionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSelectionNode\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isSelectionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValueNode\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isValueNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeNode\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isTypeNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeSystemDefinitionNode\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isTypeSystemDefinitionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeDefinitionNode\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isTypeDefinitionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeSystemExtensionNode\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isTypeSystemExtensionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeExtensionNode\", function() { return _language_index_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isTypeExtensionNode\"]; });\n\n/* harmony import */ var _execution_index_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./execution/index.mjs */ \"./node_modules/graphql/execution/index.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"execute\", function() { return _execution_index_mjs__WEBPACK_IMPORTED_MODULE_4__[\"execute\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"executeSync\", function() { return _execution_index_mjs__WEBPACK_IMPORTED_MODULE_4__[\"executeSync\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultFieldResolver\", function() { return _execution_index_mjs__WEBPACK_IMPORTED_MODULE_4__[\"defaultFieldResolver\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"defaultTypeResolver\", function() { return _execution_index_mjs__WEBPACK_IMPORTED_MODULE_4__[\"defaultTypeResolver\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"responsePathAsArray\", function() { return _execution_index_mjs__WEBPACK_IMPORTED_MODULE_4__[\"responsePathAsArray\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getDirectiveValues\", function() { return _execution_index_mjs__WEBPACK_IMPORTED_MODULE_4__[\"getDirectiveValues\"]; });\n\n/* harmony import */ var _subscription_index_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./subscription/index.mjs */ \"./node_modules/graphql/subscription/index.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"subscribe\", function() { return _subscription_index_mjs__WEBPACK_IMPORTED_MODULE_5__[\"subscribe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createSourceEventStream\", function() { return _subscription_index_mjs__WEBPACK_IMPORTED_MODULE_5__[\"createSourceEventStream\"]; });\n\n/* harmony import */ var _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./validation/index.mjs */ \"./node_modules/graphql/validation/index.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validate\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"validate\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationContext\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"ValidationContext\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"specifiedRules\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"specifiedRules\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExecutableDefinitionsRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"ExecutableDefinitionsRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FieldsOnCorrectTypeRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"FieldsOnCorrectTypeRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FragmentsOnCompositeTypesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"FragmentsOnCompositeTypesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KnownArgumentNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"KnownArgumentNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KnownDirectivesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"KnownDirectivesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KnownFragmentNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"KnownFragmentNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KnownTypeNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"KnownTypeNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LoneAnonymousOperationRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"LoneAnonymousOperationRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoFragmentCyclesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"NoFragmentCyclesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoUndefinedVariablesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"NoUndefinedVariablesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoUnusedFragmentsRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"NoUnusedFragmentsRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoUnusedVariablesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"NoUnusedVariablesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OverlappingFieldsCanBeMergedRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"OverlappingFieldsCanBeMergedRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PossibleFragmentSpreadsRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"PossibleFragmentSpreadsRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProvidedRequiredArgumentsRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"ProvidedRequiredArgumentsRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScalarLeafsRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"ScalarLeafsRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SingleFieldSubscriptionsRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"SingleFieldSubscriptionsRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueArgumentNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueArgumentNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueDirectivesPerLocationRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueDirectivesPerLocationRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueFragmentNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueFragmentNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueInputFieldNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueInputFieldNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueOperationNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueOperationNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueVariableNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueVariableNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValuesOfCorrectTypeRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"ValuesOfCorrectTypeRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VariablesAreInputTypesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"VariablesAreInputTypesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VariablesInAllowedPositionRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"VariablesInAllowedPositionRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LoneSchemaDefinitionRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"LoneSchemaDefinitionRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueOperationTypesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueOperationTypesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueTypeNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueTypeNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueEnumValueNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueEnumValueNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueFieldDefinitionNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueFieldDefinitionNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueDirectiveNamesRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"UniqueDirectiveNamesRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PossibleTypeExtensionsRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"PossibleTypeExtensionsRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoDeprecatedCustomRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"NoDeprecatedCustomRule\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoSchemaIntrospectionCustomRule\", function() { return _validation_index_mjs__WEBPACK_IMPORTED_MODULE_6__[\"NoSchemaIntrospectionCustomRule\"]; });\n\n/* harmony import */ var _error_index_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./error/index.mjs */ \"./node_modules/graphql/error/index.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLError\", function() { return _error_index_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"syntaxError\", function() { return _error_index_mjs__WEBPACK_IMPORTED_MODULE_7__[\"syntaxError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"locatedError\", function() { return _error_index_mjs__WEBPACK_IMPORTED_MODULE_7__[\"locatedError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printError\", function() { return _error_index_mjs__WEBPACK_IMPORTED_MODULE_7__[\"printError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"formatError\", function() { return _error_index_mjs__WEBPACK_IMPORTED_MODULE_7__[\"formatError\"]; });\n\n/* harmony import */ var _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./utilities/index.mjs */ \"./node_modules/graphql/utilities/index.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getIntrospectionQuery\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"getIntrospectionQuery\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getOperationAST\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"getOperationAST\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getOperationRootType\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"getOperationRootType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"introspectionFromSchema\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"introspectionFromSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildClientSchema\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"buildClientSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildASTSchema\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"buildASTSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildSchema\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"buildSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getDescription\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"getDescription\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"extendSchema\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"extendSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"lexicographicSortSchema\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"lexicographicSortSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printSchema\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"printSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printType\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"printType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printIntrospectionSchema\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"printIntrospectionSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"typeFromAST\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"typeFromAST\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"valueFromAST\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"valueFromAST\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"valueFromASTUntyped\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"valueFromASTUntyped\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"astFromValue\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"astFromValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TypeInfo\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"TypeInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"visitWithTypeInfo\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"visitWithTypeInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"coerceInputValue\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"coerceInputValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"concatAST\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"concatAST\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"separateOperations\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"separateOperations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"stripIgnoredCharacters\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"stripIgnoredCharacters\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isEqualType\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isEqualType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeSubTypeOf\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isTypeSubTypeOf\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"doTypesOverlap\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"doTypesOverlap\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertValidName\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"assertValidName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValidNameError\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isValidNameError\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BreakingChangeType\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"BreakingChangeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DangerousChangeType\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DangerousChangeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findBreakingChanges\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"findBreakingChanges\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findDangerousChanges\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"findDangerousChanges\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findDeprecatedUsages\", function() { return _utilities_index_mjs__WEBPACK_IMPORTED_MODULE_8__[\"findDeprecatedUsages\"]; });\n\n/**\n * GraphQL.js provides a reference implementation for the GraphQL specification\n * but is also a useful utility for operating on GraphQL files and building\n * sophisticated tools.\n *\n * This primary module exports a general purpose function for fulfilling all\n * steps of the GraphQL specification in a single operation, but also includes\n * utilities for every part of the GraphQL specification:\n *\n * - Parsing the GraphQL language.\n * - Building a GraphQL type schema.\n * - Validating a GraphQL request against a type schema.\n * - Executing a GraphQL request against a type schema.\n *\n * This also includes utility functions for operating on GraphQL types and\n * GraphQL documents to facilitate building tools.\n *\n * You may also import from each sub-directory directly. For example, the\n * following two import statements are equivalent:\n *\n * import { parse } from 'graphql';\n * import { parse } from 'graphql/language';\n */\n// The GraphQL.js version info.\n // The primary entry point into fulfilling a GraphQL request.\n\n // Create and operate on GraphQL type definitions and schema.\n\n\n// Parse and operate on GraphQL language source files.\n\n// Execute GraphQL queries.\n\n\n// Validate GraphQL documents.\n\n// Create, format, and print GraphQL errors.\n\n// Utilities for operating on GraphQL type schema and parsed sources.\n\n\n\n//# sourceURL=webpack:///./node_modules/graphql/index.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/Path.mjs": /*!***********************************************!*\ !*** ./node_modules/graphql/jsutils/Path.mjs ***! \***********************************************/ /*! exports provided: addPath, pathToArray */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addPath\", function() { return addPath; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"pathToArray\", function() { return pathToArray; });\n/**\n * Given a Path and a key, return a new Path containing the new key.\n */\nfunction addPath(prev, key, typename) {\n return {\n prev: prev,\n key: key,\n typename: typename\n };\n}\n/**\n * Given a Path, return an Array of the path keys.\n */\n\nfunction pathToArray(path) {\n var flattened = [];\n var curr = path;\n\n while (curr) {\n flattened.push(curr.key);\n curr = curr.prev;\n }\n\n return flattened.reverse();\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/Path.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/defineInspect.mjs": /*!********************************************************!*\ !*** ./node_modules/graphql/jsutils/defineInspect.mjs ***! \********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return defineInspect; });\n/* harmony import */ var _invariant_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _nodejsCustomInspectSymbol_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./nodejsCustomInspectSymbol.mjs */ \"./node_modules/graphql/jsutils/nodejsCustomInspectSymbol.mjs\");\n\n\n/**\n * The `defineInspect()` function defines `inspect()` prototype method as alias of `toJSON`\n */\n\nfunction defineInspect(classObject) {\n var fn = classObject.prototype.toJSON;\n typeof fn === 'function' || Object(_invariant_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(0);\n classObject.prototype.inspect = fn; // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2317')\n\n if (_nodejsCustomInspectSymbol_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"]) {\n classObject.prototype[_nodejsCustomInspectSymbol_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"]] = fn;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/defineInspect.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/devAssert.mjs": /*!****************************************************!*\ !*** ./node_modules/graphql/jsutils/devAssert.mjs ***! \****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return devAssert; });\nfunction devAssert(condition, message) {\n var booleanCondition = Boolean(condition); // istanbul ignore else (See transformation done in './resources/inlineInvariant.js')\n\n if (!booleanCondition) {\n throw new Error(message);\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/devAssert.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/didYouMean.mjs": /*!*****************************************************!*\ !*** ./node_modules/graphql/jsutils/didYouMean.mjs ***! \*****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return didYouMean; });\nvar MAX_SUGGESTIONS = 5;\n/**\n * Given [ A, B, C ] return ' Did you mean A, B, or C?'.\n */\n\n// eslint-disable-next-line no-redeclare\nfunction didYouMean(firstArg, secondArg) {\n var _ref = typeof firstArg === 'string' ? [firstArg, secondArg] : [undefined, firstArg],\n subMessage = _ref[0],\n suggestionsArg = _ref[1];\n\n var message = ' Did you mean ';\n\n if (subMessage) {\n message += subMessage + ' ';\n }\n\n var suggestions = suggestionsArg.map(function (x) {\n return \"\\\"\".concat(x, \"\\\"\");\n });\n\n switch (suggestions.length) {\n case 0:\n return '';\n\n case 1:\n return message + suggestions[0] + '?';\n\n case 2:\n return message + suggestions[0] + ' or ' + suggestions[1] + '?';\n }\n\n var selected = suggestions.slice(0, MAX_SUGGESTIONS);\n var lastItem = selected.pop();\n return message + selected.join(', ') + ', or ' + lastItem + '?';\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/didYouMean.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/identityFunc.mjs": /*!*******************************************************!*\ !*** ./node_modules/graphql/jsutils/identityFunc.mjs ***! \*******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return identityFunc; });\n/**\n * Returns the first argument it receives.\n */\nfunction identityFunc(x) {\n return x;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/identityFunc.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/inspect.mjs": /*!**************************************************!*\ !*** ./node_modules/graphql/jsutils/inspect.mjs ***! \**************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return inspect; });\n/* harmony import */ var _nodejsCustomInspectSymbol_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./nodejsCustomInspectSymbol.mjs */ \"./node_modules/graphql/jsutils/nodejsCustomInspectSymbol.mjs\");\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n/* eslint-disable flowtype/no-weak-types */\n\nvar MAX_ARRAY_LENGTH = 10;\nvar MAX_RECURSIVE_DEPTH = 2;\n/**\n * Used to print values in error messages.\n */\n\nfunction inspect(value) {\n return formatValue(value, []);\n}\n\nfunction formatValue(value, seenValues) {\n switch (_typeof(value)) {\n case 'string':\n return JSON.stringify(value);\n\n case 'function':\n return value.name ? \"[function \".concat(value.name, \"]\") : '[function]';\n\n case 'object':\n if (value === null) {\n return 'null';\n }\n\n return formatObjectValue(value, seenValues);\n\n default:\n return String(value);\n }\n}\n\nfunction formatObjectValue(value, previouslySeenValues) {\n if (previouslySeenValues.indexOf(value) !== -1) {\n return '[Circular]';\n }\n\n var seenValues = [].concat(previouslySeenValues, [value]);\n var customInspectFn = getCustomFn(value);\n\n if (customInspectFn !== undefined) {\n var customValue = customInspectFn.call(value); // check for infinite recursion\n\n if (customValue !== value) {\n return typeof customValue === 'string' ? customValue : formatValue(customValue, seenValues);\n }\n } else if (Array.isArray(value)) {\n return formatArray(value, seenValues);\n }\n\n return formatObject(value, seenValues);\n}\n\nfunction formatObject(object, seenValues) {\n var keys = Object.keys(object);\n\n if (keys.length === 0) {\n return '{}';\n }\n\n if (seenValues.length > MAX_RECURSIVE_DEPTH) {\n return '[' + getObjectTag(object) + ']';\n }\n\n var properties = keys.map(function (key) {\n var value = formatValue(object[key], seenValues);\n return key + ': ' + value;\n });\n return '{ ' + properties.join(', ') + ' }';\n}\n\nfunction formatArray(array, seenValues) {\n if (array.length === 0) {\n return '[]';\n }\n\n if (seenValues.length > MAX_RECURSIVE_DEPTH) {\n return '[Array]';\n }\n\n var len = Math.min(MAX_ARRAY_LENGTH, array.length);\n var remaining = array.length - len;\n var items = [];\n\n for (var i = 0; i < len; ++i) {\n items.push(formatValue(array[i], seenValues));\n }\n\n if (remaining === 1) {\n items.push('... 1 more item');\n } else if (remaining > 1) {\n items.push(\"... \".concat(remaining, \" more items\"));\n }\n\n return '[' + items.join(', ') + ']';\n}\n\nfunction getCustomFn(object) {\n var customInspectFn = object[String(_nodejsCustomInspectSymbol_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])];\n\n if (typeof customInspectFn === 'function') {\n return customInspectFn;\n }\n\n if (typeof object.inspect === 'function') {\n return object.inspect;\n }\n}\n\nfunction getObjectTag(object) {\n var tag = Object.prototype.toString.call(object).replace(/^\\[object /, '').replace(/]$/, '');\n\n if (tag === 'Object' && typeof object.constructor === 'function') {\n var name = object.constructor.name;\n\n if (typeof name === 'string' && name !== '') {\n return name;\n }\n }\n\n return tag;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/inspect.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/instanceOf.mjs": /*!*****************************************************!*\ !*** ./node_modules/graphql/jsutils/instanceOf.mjs ***! \*****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n\n/**\n * A replacement for instanceof which includes an error warning when multi-realm\n * constructors are detected.\n */\n\n// See: https://expressjs.com/en/advanced/best-practice-performance.html#set-node_env-to-production\n// See: https://webpack.js.org/guides/production/\n/* harmony default export */ __webpack_exports__[\"default\"] = ( false ? // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\n// eslint-disable-next-line no-shadow\nundefined : // eslint-disable-next-line no-shadow\nfunction instanceOf(value, constructor) {\n if (value instanceof constructor) {\n return true;\n }\n\n if (_typeof(value) === 'object' && value !== null) {\n var _value$constructor;\n\n var className = constructor.prototype[Symbol.toStringTag];\n var valueClassName = // We still need to support constructor's name to detect conflicts with older versions of this library.\n Symbol.toStringTag in value ? value[Symbol.toStringTag] : (_value$constructor = value.constructor) === null || _value$constructor === void 0 ? void 0 : _value$constructor.name;\n\n if (className === valueClassName) {\n var stringifiedValue = Object(_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(value);\n throw new Error(\"Cannot use \".concat(className, \" \\\"\").concat(stringifiedValue, \"\\\" from another module or realm.\\n\\nEnsure that there is only one instance of \\\"graphql\\\" in the node_modules\\ndirectory. If different versions of \\\"graphql\\\" are the dependencies of other\\nrelied on modules, use \\\"resolutions\\\" to ensure only one version is installed.\\n\\nhttps://yarnpkg.com/en/docs/selective-version-resolutions\\n\\nDuplicate \\\"graphql\\\" modules cannot be used at the same time since different\\nversions may have different capabilities and behavior. The data from one\\nversion used in the function from another could produce confusing and\\nspurious results.\"));\n }\n }\n\n return false;\n});\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/instanceOf.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/invariant.mjs": /*!****************************************************!*\ !*** ./node_modules/graphql/jsutils/invariant.mjs ***! \****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return invariant; });\nfunction invariant(condition, message) {\n var booleanCondition = Boolean(condition); // istanbul ignore else (See transformation done in './resources/inlineInvariant.js')\n\n if (!booleanCondition) {\n throw new Error(message != null ? message : 'Unexpected invariant triggered.');\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/invariant.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/isAsyncIterable.mjs": /*!**********************************************************!*\ !*** ./node_modules/graphql/jsutils/isAsyncIterable.mjs ***! \**********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return isAsyncIterable; });\n/* harmony import */ var _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/symbols.mjs */ \"./node_modules/graphql/polyfills/symbols.mjs\");\n\n/**\n * Returns true if the provided object implements the AsyncIterator protocol via\n * either implementing a `Symbol.asyncIterator` or `\"@@asyncIterator\"` method.\n */\n\n// eslint-disable-next-line no-redeclare\nfunction isAsyncIterable(maybeAsyncIterable) {\n return typeof (maybeAsyncIterable === null || maybeAsyncIterable === void 0 ? void 0 : maybeAsyncIterable[_polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__[\"SYMBOL_ASYNC_ITERATOR\"]]) === 'function';\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/isAsyncIterable.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/isObjectLike.mjs": /*!*******************************************************!*\ !*** ./node_modules/graphql/jsutils/isObjectLike.mjs ***! \*******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return isObjectLike; });\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n/**\n * Return true if `value` is object-like. A value is object-like if it's not\n * `null` and has a `typeof` result of \"object\".\n */\nfunction isObjectLike(value) {\n return _typeof(value) == 'object' && value !== null;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/isObjectLike.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/isPromise.mjs": /*!****************************************************!*\ !*** ./node_modules/graphql/jsutils/isPromise.mjs ***! \****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return isPromise; });\n/**\n * Returns true if the value acts like a Promise, i.e. has a \"then\" function,\n * otherwise returns false.\n */\n// eslint-disable-next-line no-redeclare\nfunction isPromise(value) {\n return typeof (value === null || value === void 0 ? void 0 : value.then) === 'function';\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/isPromise.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/keyMap.mjs": /*!*************************************************!*\ !*** ./node_modules/graphql/jsutils/keyMap.mjs ***! \*************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return keyMap; });\n/**\n * Creates a keyed JS object from an array, given a function to produce the keys\n * for each value in the array.\n *\n * This provides a convenient lookup for the array items if the key function\n * produces unique results.\n *\n * const phoneBook = [\n * { name: 'Jon', num: '555-1234' },\n * { name: 'Jenny', num: '867-5309' }\n * ]\n *\n * // { Jon: { name: 'Jon', num: '555-1234' },\n * // Jenny: { name: 'Jenny', num: '867-5309' } }\n * const entriesByName = keyMap(\n * phoneBook,\n * entry => entry.name\n * )\n *\n * // { name: 'Jenny', num: '857-6309' }\n * const jennyEntry = entriesByName['Jenny']\n *\n */\nfunction keyMap(list, keyFn) {\n return list.reduce(function (map, item) {\n map[keyFn(item)] = item;\n return map;\n }, Object.create(null));\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/keyMap.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/keyValMap.mjs": /*!****************************************************!*\ !*** ./node_modules/graphql/jsutils/keyValMap.mjs ***! \****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return keyValMap; });\n/**\n * Creates a keyed JS object from an array, given a function to produce the keys\n * and a function to produce the values from each item in the array.\n *\n * const phoneBook = [\n * { name: 'Jon', num: '555-1234' },\n * { name: 'Jenny', num: '867-5309' }\n * ]\n *\n * // { Jon: '555-1234', Jenny: '867-5309' }\n * const phonesByName = keyValMap(\n * phoneBook,\n * entry => entry.name,\n * entry => entry.num\n * )\n *\n */\nfunction keyValMap(list, keyFn, valFn) {\n return list.reduce(function (map, item) {\n map[keyFn(item)] = valFn(item);\n return map;\n }, Object.create(null));\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/keyValMap.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/mapValue.mjs": /*!***************************************************!*\ !*** ./node_modules/graphql/jsutils/mapValue.mjs ***! \***************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return mapValue; });\n/* harmony import */ var _polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectEntries.mjs */ \"./node_modules/graphql/polyfills/objectEntries.mjs\");\n\n\n/**\n * Creates an object map with the same keys as `map` and values generated by\n * running each value of `map` thru `fn`.\n */\nfunction mapValue(map, fn) {\n var result = Object.create(null);\n\n for (var _i2 = 0, _objectEntries2 = Object(_polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(map); _i2 < _objectEntries2.length; _i2++) {\n var _ref2 = _objectEntries2[_i2];\n var _key = _ref2[0];\n var _value = _ref2[1];\n result[_key] = fn(_value, _key);\n }\n\n return result;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/mapValue.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/memoize3.mjs": /*!***************************************************!*\ !*** ./node_modules/graphql/jsutils/memoize3.mjs ***! \***************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return memoize3; });\n/**\n * Memoizes the provided three-argument function.\n */\nfunction memoize3(fn) {\n var cache0;\n return function memoized(a1, a2, a3) {\n if (!cache0) {\n cache0 = new WeakMap();\n }\n\n var cache1 = cache0.get(a1);\n var cache2;\n\n if (cache1) {\n cache2 = cache1.get(a2);\n\n if (cache2) {\n var cachedValue = cache2.get(a3);\n\n if (cachedValue !== undefined) {\n return cachedValue;\n }\n }\n } else {\n cache1 = new WeakMap();\n cache0.set(a1, cache1);\n }\n\n if (!cache2) {\n cache2 = new WeakMap();\n cache1.set(a2, cache2);\n }\n\n var newValue = fn(a1, a2, a3);\n cache2.set(a3, newValue);\n return newValue;\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/memoize3.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/naturalCompare.mjs": /*!*********************************************************!*\ !*** ./node_modules/graphql/jsutils/naturalCompare.mjs ***! \*********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return naturalCompare; });\n/**\n * Returns a number indicating whether a reference string comes before, or after,\n * or is the same as the given string in natural sort order.\n *\n * See: https://en.wikipedia.org/wiki/Natural_sort_order\n *\n */\nfunction naturalCompare(aStr, bStr) {\n var aIdx = 0;\n var bIdx = 0;\n\n while (aIdx < aStr.length && bIdx < bStr.length) {\n var aChar = aStr.charCodeAt(aIdx);\n var bChar = bStr.charCodeAt(bIdx);\n\n if (isDigit(aChar) && isDigit(bChar)) {\n var aNum = 0;\n\n do {\n ++aIdx;\n aNum = aNum * 10 + aChar - DIGIT_0;\n aChar = aStr.charCodeAt(aIdx);\n } while (isDigit(aChar) && aNum > 0);\n\n var bNum = 0;\n\n do {\n ++bIdx;\n bNum = bNum * 10 + bChar - DIGIT_0;\n bChar = bStr.charCodeAt(bIdx);\n } while (isDigit(bChar) && bNum > 0);\n\n if (aNum < bNum) {\n return -1;\n }\n\n if (aNum > bNum) {\n return 1;\n }\n } else {\n if (aChar < bChar) {\n return -1;\n }\n\n if (aChar > bChar) {\n return 1;\n }\n\n ++aIdx;\n ++bIdx;\n }\n }\n\n return aStr.length - bStr.length;\n}\nvar DIGIT_0 = 48;\nvar DIGIT_9 = 57;\n\nfunction isDigit(code) {\n return !isNaN(code) && DIGIT_0 <= code && code <= DIGIT_9;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/naturalCompare.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/nodejsCustomInspectSymbol.mjs": /*!********************************************************************!*\ !*** ./node_modules/graphql/jsutils/nodejsCustomInspectSymbol.mjs ***! \********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n// istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\nvar nodejsCustomInspectSymbol = typeof Symbol === 'function' && typeof Symbol.for === 'function' ? Symbol.for('nodejs.util.inspect.custom') : undefined;\n/* harmony default export */ __webpack_exports__[\"default\"] = (nodejsCustomInspectSymbol);\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/nodejsCustomInspectSymbol.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/printPathArray.mjs": /*!*********************************************************!*\ !*** ./node_modules/graphql/jsutils/printPathArray.mjs ***! \*********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return printPathArray; });\n/**\n * Build a string describing the path.\n */\nfunction printPathArray(path) {\n return path.map(function (key) {\n return typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key;\n }).join('');\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/printPathArray.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/promiseForObject.mjs": /*!***********************************************************!*\ !*** ./node_modules/graphql/jsutils/promiseForObject.mjs ***! \***********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return promiseForObject; });\n/**\n * This function transforms a JS object `ObjMap>` into\n * a `Promise>`\n *\n * This is akin to bluebird's `Promise.props`, but implemented only using\n * `Promise.all` so it will work with any implementation of ES6 promises.\n */\nfunction promiseForObject(object) {\n var keys = Object.keys(object);\n var valuesAndPromises = keys.map(function (name) {\n return object[name];\n });\n return Promise.all(valuesAndPromises).then(function (values) {\n return values.reduce(function (resolvedObject, value, i) {\n resolvedObject[keys[i]] = value;\n return resolvedObject;\n }, Object.create(null));\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/promiseForObject.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/promiseReduce.mjs": /*!********************************************************!*\ !*** ./node_modules/graphql/jsutils/promiseReduce.mjs ***! \********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return promiseReduce; });\n/* harmony import */ var _isPromise_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isPromise.mjs */ \"./node_modules/graphql/jsutils/isPromise.mjs\");\n\n/**\n * Similar to Array.prototype.reduce(), however the reducing callback may return\n * a Promise, in which case reduction will continue after each promise resolves.\n *\n * If the callback does not return a Promise, then this function will also not\n * return a Promise.\n */\n\nfunction promiseReduce(values, callback, initialValue) {\n return values.reduce(function (previous, value) {\n return Object(_isPromise_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(previous) ? previous.then(function (resolved) {\n return callback(resolved, value);\n }) : callback(previous, value);\n }, initialValue);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/promiseReduce.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/safeArrayFrom.mjs": /*!********************************************************!*\ !*** ./node_modules/graphql/jsutils/safeArrayFrom.mjs ***! \********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return safeArrayFrom; });\n/* harmony import */ var _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/symbols.mjs */ \"./node_modules/graphql/polyfills/symbols.mjs\");\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n\n/**\n * Safer version of `Array.from` that return `null` if value isn't convertible to array.\n * Also protects against Array-like objects without items.\n *\n * @example\n *\n * safeArrayFrom([ 1, 2, 3 ]) // [1, 2, 3]\n * safeArrayFrom('ABC') // null\n * safeArrayFrom({ length: 1 }) // null\n * safeArrayFrom({ length: 1, 0: 'Alpha' }) // ['Alpha']\n * safeArrayFrom({ key: 'value' }) // null\n * safeArrayFrom(new Map()) // []\n *\n */\n\nfunction safeArrayFrom(collection) {\n var mapFn = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function (item) {\n return item;\n };\n\n if (collection == null || _typeof(collection) !== 'object') {\n return null;\n }\n\n if (Array.isArray(collection)) {\n return collection.map(mapFn);\n } // Is Iterable?\n\n\n var iteratorMethod = collection[_polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__[\"SYMBOL_ITERATOR\"]];\n\n if (typeof iteratorMethod === 'function') {\n // $FlowFixMe[incompatible-use]\n var iterator = iteratorMethod.call(collection);\n var result = [];\n var step;\n\n for (var i = 0; !(step = iterator.next()).done; ++i) {\n result.push(mapFn(step.value, i));\n }\n\n return result;\n } // Is Array like?\n\n\n var length = collection.length;\n\n if (typeof length === 'number' && length >= 0 && length % 1 === 0) {\n var _result = [];\n\n for (var _i = 0; _i < length; ++_i) {\n if (!Object.prototype.hasOwnProperty.call(collection, _i)) {\n return null;\n }\n\n _result.push(mapFn(collection[String(_i)], _i));\n }\n\n return _result;\n }\n\n return null;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/safeArrayFrom.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/suggestionList.mjs": /*!*********************************************************!*\ !*** ./node_modules/graphql/jsutils/suggestionList.mjs ***! \*********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return suggestionList; });\n/* harmony import */ var _naturalCompare_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./naturalCompare.mjs */ \"./node_modules/graphql/jsutils/naturalCompare.mjs\");\n\n/**\n * Given an invalid input string and a list of valid options, returns a filtered\n * list of valid options sorted based on their similarity with the input.\n */\n\nfunction suggestionList(input, options) {\n var optionsByDistance = Object.create(null);\n var lexicalDistance = new LexicalDistance(input);\n var threshold = Math.floor(input.length * 0.4) + 1;\n\n for (var _i2 = 0; _i2 < options.length; _i2++) {\n var option = options[_i2];\n var distance = lexicalDistance.measure(option, threshold);\n\n if (distance !== undefined) {\n optionsByDistance[option] = distance;\n }\n }\n\n return Object.keys(optionsByDistance).sort(function (a, b) {\n var distanceDiff = optionsByDistance[a] - optionsByDistance[b];\n return distanceDiff !== 0 ? distanceDiff : Object(_naturalCompare_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(a, b);\n });\n}\n/**\n * Computes the lexical distance between strings A and B.\n *\n * The \"distance\" between two strings is given by counting the minimum number\n * of edits needed to transform string A into string B. An edit can be an\n * insertion, deletion, or substitution of a single character, or a swap of two\n * adjacent characters.\n *\n * Includes a custom alteration from Damerau-Levenshtein to treat case changes\n * as a single edit which helps identify mis-cased values with an edit distance\n * of 1.\n *\n * This distance can be useful for detecting typos in input or sorting\n */\n\nvar LexicalDistance = /*#__PURE__*/function () {\n function LexicalDistance(input) {\n this._input = input;\n this._inputLowerCase = input.toLowerCase();\n this._inputArray = stringToArray(this._inputLowerCase);\n this._rows = [new Array(input.length + 1).fill(0), new Array(input.length + 1).fill(0), new Array(input.length + 1).fill(0)];\n }\n\n var _proto = LexicalDistance.prototype;\n\n _proto.measure = function measure(option, threshold) {\n if (this._input === option) {\n return 0;\n }\n\n var optionLowerCase = option.toLowerCase(); // Any case change counts as a single edit\n\n if (this._inputLowerCase === optionLowerCase) {\n return 1;\n }\n\n var a = stringToArray(optionLowerCase);\n var b = this._inputArray;\n\n if (a.length < b.length) {\n var tmp = a;\n a = b;\n b = tmp;\n }\n\n var aLength = a.length;\n var bLength = b.length;\n\n if (aLength - bLength > threshold) {\n return undefined;\n }\n\n var rows = this._rows;\n\n for (var j = 0; j <= bLength; j++) {\n rows[0][j] = j;\n }\n\n for (var i = 1; i <= aLength; i++) {\n var upRow = rows[(i - 1) % 3];\n var currentRow = rows[i % 3];\n var smallestCell = currentRow[0] = i;\n\n for (var _j = 1; _j <= bLength; _j++) {\n var cost = a[i - 1] === b[_j - 1] ? 0 : 1;\n var currentCell = Math.min(upRow[_j] + 1, // delete\n currentRow[_j - 1] + 1, // insert\n upRow[_j - 1] + cost // substitute\n );\n\n if (i > 1 && _j > 1 && a[i - 1] === b[_j - 2] && a[i - 2] === b[_j - 1]) {\n // transposition\n var doubleDiagonalCell = rows[(i - 2) % 3][_j - 2];\n currentCell = Math.min(currentCell, doubleDiagonalCell + 1);\n }\n\n if (currentCell < smallestCell) {\n smallestCell = currentCell;\n }\n\n currentRow[_j] = currentCell;\n } // Early exit, since distance can't go smaller than smallest element of the previous row.\n\n\n if (smallestCell > threshold) {\n return undefined;\n }\n }\n\n var distance = rows[aLength % 3][bLength];\n return distance <= threshold ? distance : undefined;\n };\n\n return LexicalDistance;\n}();\n\nfunction stringToArray(str) {\n var strLength = str.length;\n var array = new Array(strLength);\n\n for (var i = 0; i < strLength; ++i) {\n array[i] = str.charCodeAt(i);\n }\n\n return array;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/suggestionList.mjs?"); /***/ }), /***/ "./node_modules/graphql/jsutils/toObjMap.mjs": /*!***************************************************!*\ !*** ./node_modules/graphql/jsutils/toObjMap.mjs ***! \***************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return toObjMap; });\n/* harmony import */ var _polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectEntries.mjs */ \"./node_modules/graphql/polyfills/objectEntries.mjs\");\n\nfunction toObjMap(obj) {\n /* eslint-enable no-redeclare */\n if (Object.getPrototypeOf(obj) === null) {\n return obj;\n }\n\n var map = Object.create(null);\n\n for (var _i2 = 0, _objectEntries2 = Object(_polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(obj); _i2 < _objectEntries2.length; _i2++) {\n var _ref2 = _objectEntries2[_i2];\n var key = _ref2[0];\n var value = _ref2[1];\n map[key] = value;\n }\n\n return map;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/jsutils/toObjMap.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/ast.mjs": /*!***********************************************!*\ !*** ./node_modules/graphql/language/ast.mjs ***! \***********************************************/ /*! exports provided: Location, Token, isNode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Location\", function() { return Location; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Token\", function() { return Token; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isNode\", function() { return isNode; });\n/* harmony import */ var _jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/defineInspect.mjs */ \"./node_modules/graphql/jsutils/defineInspect.mjs\");\n\n\n/**\n * Contains a range of UTF-8 character offsets and token references that\n * identify the region of the source from which the AST derived.\n */\nvar Location = /*#__PURE__*/function () {\n /**\n * The character offset at which this Node begins.\n */\n\n /**\n * The character offset at which this Node ends.\n */\n\n /**\n * The Token at which this Node begins.\n */\n\n /**\n * The Token at which this Node ends.\n */\n\n /**\n * The Source document the AST represents.\n */\n function Location(startToken, endToken, source) {\n this.start = startToken.start;\n this.end = endToken.end;\n this.startToken = startToken;\n this.endToken = endToken;\n this.source = source;\n }\n\n var _proto = Location.prototype;\n\n _proto.toJSON = function toJSON() {\n return {\n start: this.start,\n end: this.end\n };\n };\n\n return Location;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(Location);\n/**\n * Represents a range of characters represented by a lexical token\n * within a Source.\n */\n\nvar Token = /*#__PURE__*/function () {\n /**\n * The kind of Token.\n */\n\n /**\n * The character offset at which this Node begins.\n */\n\n /**\n * The character offset at which this Node ends.\n */\n\n /**\n * The 1-indexed line number on which this Token appears.\n */\n\n /**\n * The 1-indexed column number at which this Token begins.\n */\n\n /**\n * For non-punctuation tokens, represents the interpreted value of the token.\n */\n\n /**\n * Tokens exist as nodes in a double-linked-list amongst all tokens\n * including ignored tokens. is always the first node and \n * the last.\n */\n function Token(kind, start, end, line, column, prev, value) {\n this.kind = kind;\n this.start = start;\n this.end = end;\n this.line = line;\n this.column = column;\n this.value = value;\n this.prev = prev;\n this.next = null;\n }\n\n var _proto2 = Token.prototype;\n\n _proto2.toJSON = function toJSON() {\n return {\n kind: this.kind,\n value: this.value,\n line: this.line,\n column: this.column\n };\n };\n\n return Token;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(Token);\n/**\n * @internal\n */\n\nfunction isNode(maybeNode) {\n return maybeNode != null && typeof maybeNode.kind === 'string';\n}\n/**\n * The list of all possible AST node types.\n */\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/ast.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/blockString.mjs": /*!*******************************************************!*\ !*** ./node_modules/graphql/language/blockString.mjs ***! \*******************************************************/ /*! exports provided: dedentBlockStringValue, getBlockStringIndentation, printBlockString */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"dedentBlockStringValue\", function() { return dedentBlockStringValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getBlockStringIndentation\", function() { return getBlockStringIndentation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"printBlockString\", function() { return printBlockString; });\n/**\n * Produces the value of a block string from its parsed raw value, similar to\n * CoffeeScript's block string, Python's docstring trim or Ruby's strip_heredoc.\n *\n * This implements the GraphQL spec's BlockStringValue() static algorithm.\n *\n * @internal\n */\nfunction dedentBlockStringValue(rawString) {\n // Expand a block string's raw value into independent lines.\n var lines = rawString.split(/\\r\\n|[\\n\\r]/g); // Remove common indentation from all lines but first.\n\n var commonIndent = getBlockStringIndentation(rawString);\n\n if (commonIndent !== 0) {\n for (var i = 1; i < lines.length; i++) {\n lines[i] = lines[i].slice(commonIndent);\n }\n } // Remove leading and trailing blank lines.\n\n\n var startLine = 0;\n\n while (startLine < lines.length && isBlank(lines[startLine])) {\n ++startLine;\n }\n\n var endLine = lines.length;\n\n while (endLine > startLine && isBlank(lines[endLine - 1])) {\n --endLine;\n } // Return a string of the lines joined with U+000A.\n\n\n return lines.slice(startLine, endLine).join('\\n');\n}\n\nfunction isBlank(str) {\n for (var i = 0; i < str.length; ++i) {\n if (str[i] !== ' ' && str[i] !== '\\t') {\n return false;\n }\n }\n\n return true;\n}\n/**\n * @internal\n */\n\n\nfunction getBlockStringIndentation(value) {\n var _commonIndent;\n\n var isFirstLine = true;\n var isEmptyLine = true;\n var indent = 0;\n var commonIndent = null;\n\n for (var i = 0; i < value.length; ++i) {\n switch (value.charCodeAt(i)) {\n case 13:\n // \\r\n if (value.charCodeAt(i + 1) === 10) {\n ++i; // skip \\r\\n as one symbol\n }\n\n // falls through\n\n case 10:\n // \\n\n isFirstLine = false;\n isEmptyLine = true;\n indent = 0;\n break;\n\n case 9: // \\t\n\n case 32:\n // \n ++indent;\n break;\n\n default:\n if (isEmptyLine && !isFirstLine && (commonIndent === null || indent < commonIndent)) {\n commonIndent = indent;\n }\n\n isEmptyLine = false;\n }\n }\n\n return (_commonIndent = commonIndent) !== null && _commonIndent !== void 0 ? _commonIndent : 0;\n}\n/**\n * Print a block string in the indented block form by adding a leading and\n * trailing blank line. However, if a block string starts with whitespace and is\n * a single-line, adding a leading blank line would strip that whitespace.\n *\n * @internal\n */\n\nfunction printBlockString(value) {\n var indentation = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n var preferMultipleLines = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n var isSingleLine = value.indexOf('\\n') === -1;\n var hasLeadingSpace = value[0] === ' ' || value[0] === '\\t';\n var hasTrailingQuote = value[value.length - 1] === '\"';\n var hasTrailingSlash = value[value.length - 1] === '\\\\';\n var printAsMultipleLines = !isSingleLine || hasTrailingQuote || hasTrailingSlash || preferMultipleLines;\n var result = ''; // Format a multi-line block quote to account for leading space.\n\n if (printAsMultipleLines && !(isSingleLine && hasLeadingSpace)) {\n result += '\\n' + indentation;\n }\n\n result += indentation ? value.replace(/\\n/g, '\\n' + indentation) : value;\n\n if (printAsMultipleLines) {\n result += '\\n';\n }\n\n return '\"\"\"' + result.replace(/\"\"\"/g, '\\\\\"\"\"') + '\"\"\"';\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/blockString.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/directiveLocation.mjs": /*!*************************************************************!*\ !*** ./node_modules/graphql/language/directiveLocation.mjs ***! \*************************************************************/ /*! exports provided: DirectiveLocation */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DirectiveLocation\", function() { return DirectiveLocation; });\n/**\n * The set of allowed directive location values.\n */\nvar DirectiveLocation = Object.freeze({\n // Request Definitions\n QUERY: 'QUERY',\n MUTATION: 'MUTATION',\n SUBSCRIPTION: 'SUBSCRIPTION',\n FIELD: 'FIELD',\n FRAGMENT_DEFINITION: 'FRAGMENT_DEFINITION',\n FRAGMENT_SPREAD: 'FRAGMENT_SPREAD',\n INLINE_FRAGMENT: 'INLINE_FRAGMENT',\n VARIABLE_DEFINITION: 'VARIABLE_DEFINITION',\n // Type System Definitions\n SCHEMA: 'SCHEMA',\n SCALAR: 'SCALAR',\n OBJECT: 'OBJECT',\n FIELD_DEFINITION: 'FIELD_DEFINITION',\n ARGUMENT_DEFINITION: 'ARGUMENT_DEFINITION',\n INTERFACE: 'INTERFACE',\n UNION: 'UNION',\n ENUM: 'ENUM',\n ENUM_VALUE: 'ENUM_VALUE',\n INPUT_OBJECT: 'INPUT_OBJECT',\n INPUT_FIELD_DEFINITION: 'INPUT_FIELD_DEFINITION'\n});\n/**\n * The enum type representing the directive location values.\n */\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/directiveLocation.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/index.mjs": /*!*************************************************!*\ !*** ./node_modules/graphql/language/index.mjs ***! \*************************************************/ /*! exports provided: Source, getLocation, printLocation, printSourceLocation, Kind, TokenKind, Lexer, parse, parseValue, parseType, print, visit, visitInParallel, getVisitFn, BREAK, Location, Token, isDefinitionNode, isExecutableDefinitionNode, isSelectionNode, isValueNode, isTypeNode, isTypeSystemDefinitionNode, isTypeDefinitionNode, isTypeSystemExtensionNode, isTypeExtensionNode, DirectiveLocation */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _source_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./source.mjs */ \"./node_modules/graphql/language/source.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Source\", function() { return _source_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Source\"]; });\n\n/* harmony import */ var _location_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./location.mjs */ \"./node_modules/graphql/language/location.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLocation\", function() { return _location_mjs__WEBPACK_IMPORTED_MODULE_1__[\"getLocation\"]; });\n\n/* harmony import */ var _printLocation_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./printLocation.mjs */ \"./node_modules/graphql/language/printLocation.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printLocation\", function() { return _printLocation_mjs__WEBPACK_IMPORTED_MODULE_2__[\"printLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printSourceLocation\", function() { return _printLocation_mjs__WEBPACK_IMPORTED_MODULE_2__[\"printSourceLocation\"]; });\n\n/* harmony import */ var _kinds_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Kind\", function() { return _kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"]; });\n\n/* harmony import */ var _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./tokenKind.mjs */ \"./node_modules/graphql/language/tokenKind.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TokenKind\", function() { return _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_4__[\"TokenKind\"]; });\n\n/* harmony import */ var _lexer_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./lexer.mjs */ \"./node_modules/graphql/language/lexer.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Lexer\", function() { return _lexer_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Lexer\"]; });\n\n/* harmony import */ var _parser_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./parser.mjs */ \"./node_modules/graphql/language/parser.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parse\", function() { return _parser_mjs__WEBPACK_IMPORTED_MODULE_6__[\"parse\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseValue\", function() { return _parser_mjs__WEBPACK_IMPORTED_MODULE_6__[\"parseValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"parseType\", function() { return _parser_mjs__WEBPACK_IMPORTED_MODULE_6__[\"parseType\"]; });\n\n/* harmony import */ var _printer_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"print\", function() { return _printer_mjs__WEBPACK_IMPORTED_MODULE_7__[\"print\"]; });\n\n/* harmony import */ var _visitor_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./visitor.mjs */ \"./node_modules/graphql/language/visitor.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"visit\", function() { return _visitor_mjs__WEBPACK_IMPORTED_MODULE_8__[\"visit\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"visitInParallel\", function() { return _visitor_mjs__WEBPACK_IMPORTED_MODULE_8__[\"visitInParallel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getVisitFn\", function() { return _visitor_mjs__WEBPACK_IMPORTED_MODULE_8__[\"getVisitFn\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BREAK\", function() { return _visitor_mjs__WEBPACK_IMPORTED_MODULE_8__[\"BREAK\"]; });\n\n/* harmony import */ var _ast_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./ast.mjs */ \"./node_modules/graphql/language/ast.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Location\", function() { return _ast_mjs__WEBPACK_IMPORTED_MODULE_9__[\"Location\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Token\", function() { return _ast_mjs__WEBPACK_IMPORTED_MODULE_9__[\"Token\"]; });\n\n/* harmony import */ var _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./predicates.mjs */ \"./node_modules/graphql/language/predicates.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isDefinitionNode\", function() { return _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isDefinitionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isExecutableDefinitionNode\", function() { return _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isExecutableDefinitionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSelectionNode\", function() { return _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isSelectionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValueNode\", function() { return _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isValueNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeNode\", function() { return _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isTypeNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeSystemDefinitionNode\", function() { return _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isTypeSystemDefinitionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeDefinitionNode\", function() { return _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isTypeDefinitionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeSystemExtensionNode\", function() { return _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isTypeSystemExtensionNode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeExtensionNode\", function() { return _predicates_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isTypeExtensionNode\"]; });\n\n/* harmony import */ var _directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./directiveLocation.mjs */ \"./node_modules/graphql/language/directiveLocation.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DirectiveLocation\", function() { return _directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_11__[\"DirectiveLocation\"]; });\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/index.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/kinds.mjs": /*!*************************************************!*\ !*** ./node_modules/graphql/language/kinds.mjs ***! \*************************************************/ /*! exports provided: Kind */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Kind\", function() { return Kind; });\n/**\n * The set of allowed kind values for AST nodes.\n */\nvar Kind = Object.freeze({\n // Name\n NAME: 'Name',\n // Document\n DOCUMENT: 'Document',\n OPERATION_DEFINITION: 'OperationDefinition',\n VARIABLE_DEFINITION: 'VariableDefinition',\n SELECTION_SET: 'SelectionSet',\n FIELD: 'Field',\n ARGUMENT: 'Argument',\n // Fragments\n FRAGMENT_SPREAD: 'FragmentSpread',\n INLINE_FRAGMENT: 'InlineFragment',\n FRAGMENT_DEFINITION: 'FragmentDefinition',\n // Values\n VARIABLE: 'Variable',\n INT: 'IntValue',\n FLOAT: 'FloatValue',\n STRING: 'StringValue',\n BOOLEAN: 'BooleanValue',\n NULL: 'NullValue',\n ENUM: 'EnumValue',\n LIST: 'ListValue',\n OBJECT: 'ObjectValue',\n OBJECT_FIELD: 'ObjectField',\n // Directives\n DIRECTIVE: 'Directive',\n // Types\n NAMED_TYPE: 'NamedType',\n LIST_TYPE: 'ListType',\n NON_NULL_TYPE: 'NonNullType',\n // Type System Definitions\n SCHEMA_DEFINITION: 'SchemaDefinition',\n OPERATION_TYPE_DEFINITION: 'OperationTypeDefinition',\n // Type Definitions\n SCALAR_TYPE_DEFINITION: 'ScalarTypeDefinition',\n OBJECT_TYPE_DEFINITION: 'ObjectTypeDefinition',\n FIELD_DEFINITION: 'FieldDefinition',\n INPUT_VALUE_DEFINITION: 'InputValueDefinition',\n INTERFACE_TYPE_DEFINITION: 'InterfaceTypeDefinition',\n UNION_TYPE_DEFINITION: 'UnionTypeDefinition',\n ENUM_TYPE_DEFINITION: 'EnumTypeDefinition',\n ENUM_VALUE_DEFINITION: 'EnumValueDefinition',\n INPUT_OBJECT_TYPE_DEFINITION: 'InputObjectTypeDefinition',\n // Directive Definitions\n DIRECTIVE_DEFINITION: 'DirectiveDefinition',\n // Type System Extensions\n SCHEMA_EXTENSION: 'SchemaExtension',\n // Type Extensions\n SCALAR_TYPE_EXTENSION: 'ScalarTypeExtension',\n OBJECT_TYPE_EXTENSION: 'ObjectTypeExtension',\n INTERFACE_TYPE_EXTENSION: 'InterfaceTypeExtension',\n UNION_TYPE_EXTENSION: 'UnionTypeExtension',\n ENUM_TYPE_EXTENSION: 'EnumTypeExtension',\n INPUT_OBJECT_TYPE_EXTENSION: 'InputObjectTypeExtension'\n});\n/**\n * The enum type representing the possible kind values of AST nodes.\n */\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/kinds.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/lexer.mjs": /*!*************************************************!*\ !*** ./node_modules/graphql/language/lexer.mjs ***! \*************************************************/ /*! exports provided: Lexer, isPunctuatorTokenKind */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Lexer\", function() { return Lexer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isPunctuatorTokenKind\", function() { return isPunctuatorTokenKind; });\n/* harmony import */ var _error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../error/syntaxError.mjs */ \"./node_modules/graphql/error/syntaxError.mjs\");\n/* harmony import */ var _ast_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ast.mjs */ \"./node_modules/graphql/language/ast.mjs\");\n/* harmony import */ var _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./tokenKind.mjs */ \"./node_modules/graphql/language/tokenKind.mjs\");\n/* harmony import */ var _blockString_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./blockString.mjs */ \"./node_modules/graphql/language/blockString.mjs\");\n\n\n\n\n/**\n * Given a Source object, creates a Lexer for that source.\n * A Lexer is a stateful stream generator in that every time\n * it is advanced, it returns the next token in the Source. Assuming the\n * source lexes, the final Token emitted by the lexer will be of kind\n * EOF, after which the lexer will repeatedly return the same EOF token\n * whenever called.\n */\n\nvar Lexer = /*#__PURE__*/function () {\n /**\n * The previously focused non-ignored token.\n */\n\n /**\n * The currently focused non-ignored token.\n */\n\n /**\n * The (1-indexed) line containing the current token.\n */\n\n /**\n * The character offset at which the current line begins.\n */\n function Lexer(source) {\n var startOfFileToken = new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].SOF, 0, 0, 0, 0, null);\n this.source = source;\n this.lastToken = startOfFileToken;\n this.token = startOfFileToken;\n this.line = 1;\n this.lineStart = 0;\n }\n /**\n * Advances the token stream to the next non-ignored token.\n */\n\n\n var _proto = Lexer.prototype;\n\n _proto.advance = function advance() {\n this.lastToken = this.token;\n var token = this.token = this.lookahead();\n return token;\n }\n /**\n * Looks ahead and returns the next non-ignored token, but does not change\n * the state of Lexer.\n */\n ;\n\n _proto.lookahead = function lookahead() {\n var token = this.token;\n\n if (token.kind !== _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].EOF) {\n do {\n var _token$next;\n\n // Note: next is only mutable during parsing, so we cast to allow this.\n token = (_token$next = token.next) !== null && _token$next !== void 0 ? _token$next : token.next = readToken(this, token);\n } while (token.kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].COMMENT);\n }\n\n return token;\n };\n\n return Lexer;\n}();\n/**\n * @internal\n */\n\nfunction isPunctuatorTokenKind(kind) {\n return kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BANG || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].DOLLAR || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].AMP || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].PAREN_L || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].PAREN_R || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].SPREAD || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].COLON || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].EQUALS || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].AT || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BRACKET_L || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BRACKET_R || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BRACE_L || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].PIPE || kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BRACE_R;\n}\n\nfunction printCharCode(code) {\n return (// NaN/undefined represents access beyond the end of the file.\n isNaN(code) ? _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].EOF : // Trust JSON for ASCII.\n code < 0x007f ? JSON.stringify(String.fromCharCode(code)) : // Otherwise print the escaped form.\n \"\\\"\\\\u\".concat(('00' + code.toString(16).toUpperCase()).slice(-4), \"\\\"\")\n );\n}\n/**\n * Gets the next token from the source starting at the given position.\n *\n * This skips over whitespace until it finds the next lexable token, then lexes\n * punctuators immediately or calls the appropriate helper function for more\n * complicated tokens.\n */\n\n\nfunction readToken(lexer, prev) {\n var source = lexer.source;\n var body = source.body;\n var bodyLength = body.length;\n var pos = prev.end;\n\n while (pos < bodyLength) {\n var code = body.charCodeAt(pos);\n var _line = lexer.line;\n\n var _col = 1 + pos - lexer.lineStart; // SourceCharacter\n\n\n switch (code) {\n case 0xfeff: // \n\n case 9: // \\t\n\n case 32: // \n\n case 44:\n // ,\n ++pos;\n continue;\n\n case 10:\n // \\n\n ++pos;\n ++lexer.line;\n lexer.lineStart = pos;\n continue;\n\n case 13:\n // \\r\n if (body.charCodeAt(pos + 1) === 10) {\n pos += 2;\n } else {\n ++pos;\n }\n\n ++lexer.line;\n lexer.lineStart = pos;\n continue;\n\n case 33:\n // !\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BANG, pos, pos + 1, _line, _col, prev);\n\n case 35:\n // #\n return readComment(source, pos, _line, _col, prev);\n\n case 36:\n // $\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].DOLLAR, pos, pos + 1, _line, _col, prev);\n\n case 38:\n // &\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].AMP, pos, pos + 1, _line, _col, prev);\n\n case 40:\n // (\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].PAREN_L, pos, pos + 1, _line, _col, prev);\n\n case 41:\n // )\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].PAREN_R, pos, pos + 1, _line, _col, prev);\n\n case 46:\n // .\n if (body.charCodeAt(pos + 1) === 46 && body.charCodeAt(pos + 2) === 46) {\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].SPREAD, pos, pos + 3, _line, _col, prev);\n }\n\n break;\n\n case 58:\n // :\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].COLON, pos, pos + 1, _line, _col, prev);\n\n case 61:\n // =\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].EQUALS, pos, pos + 1, _line, _col, prev);\n\n case 64:\n // @\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].AT, pos, pos + 1, _line, _col, prev);\n\n case 91:\n // [\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BRACKET_L, pos, pos + 1, _line, _col, prev);\n\n case 93:\n // ]\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BRACKET_R, pos, pos + 1, _line, _col, prev);\n\n case 123:\n // {\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BRACE_L, pos, pos + 1, _line, _col, prev);\n\n case 124:\n // |\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].PIPE, pos, pos + 1, _line, _col, prev);\n\n case 125:\n // }\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BRACE_R, pos, pos + 1, _line, _col, prev);\n\n case 34:\n // \"\n if (body.charCodeAt(pos + 1) === 34 && body.charCodeAt(pos + 2) === 34) {\n return readBlockString(source, pos, _line, _col, prev, lexer);\n }\n\n return readString(source, pos, _line, _col, prev);\n\n case 45: // -\n\n case 48: // 0\n\n case 49: // 1\n\n case 50: // 2\n\n case 51: // 3\n\n case 52: // 4\n\n case 53: // 5\n\n case 54: // 6\n\n case 55: // 7\n\n case 56: // 8\n\n case 57:\n // 9\n return readNumber(source, pos, code, _line, _col, prev);\n\n case 65: // A\n\n case 66: // B\n\n case 67: // C\n\n case 68: // D\n\n case 69: // E\n\n case 70: // F\n\n case 71: // G\n\n case 72: // H\n\n case 73: // I\n\n case 74: // J\n\n case 75: // K\n\n case 76: // L\n\n case 77: // M\n\n case 78: // N\n\n case 79: // O\n\n case 80: // P\n\n case 81: // Q\n\n case 82: // R\n\n case 83: // S\n\n case 84: // T\n\n case 85: // U\n\n case 86: // V\n\n case 87: // W\n\n case 88: // X\n\n case 89: // Y\n\n case 90: // Z\n\n case 95: // _\n\n case 97: // a\n\n case 98: // b\n\n case 99: // c\n\n case 100: // d\n\n case 101: // e\n\n case 102: // f\n\n case 103: // g\n\n case 104: // h\n\n case 105: // i\n\n case 106: // j\n\n case 107: // k\n\n case 108: // l\n\n case 109: // m\n\n case 110: // n\n\n case 111: // o\n\n case 112: // p\n\n case 113: // q\n\n case 114: // r\n\n case 115: // s\n\n case 116: // t\n\n case 117: // u\n\n case 118: // v\n\n case 119: // w\n\n case 120: // x\n\n case 121: // y\n\n case 122:\n // z\n return readName(source, pos, _line, _col, prev);\n }\n\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, pos, unexpectedCharacterMessage(code));\n }\n\n var line = lexer.line;\n var col = 1 + pos - lexer.lineStart;\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].EOF, bodyLength, bodyLength, line, col, prev);\n}\n/**\n * Report a message that an unexpected character was encountered.\n */\n\n\nfunction unexpectedCharacterMessage(code) {\n if (code < 0x0020 && code !== 0x0009 && code !== 0x000a && code !== 0x000d) {\n return \"Cannot contain the invalid character \".concat(printCharCode(code), \".\");\n }\n\n if (code === 39) {\n // '\n return 'Unexpected single quote character (\\'), did you mean to use a double quote (\")?';\n }\n\n return \"Cannot parse the unexpected character \".concat(printCharCode(code), \".\");\n}\n/**\n * Reads a comment token from the source file.\n *\n * #[\\u0009\\u0020-\\uFFFF]*\n */\n\n\nfunction readComment(source, start, line, col, prev) {\n var body = source.body;\n var code;\n var position = start;\n\n do {\n code = body.charCodeAt(++position);\n } while (!isNaN(code) && ( // SourceCharacter but not LineTerminator\n code > 0x001f || code === 0x0009));\n\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].COMMENT, start, position, line, col, prev, body.slice(start + 1, position));\n}\n/**\n * Reads a number token from the source file, either a float\n * or an int depending on whether a decimal point appears.\n *\n * Int: -?(0|[1-9][0-9]*)\n * Float: -?(0|[1-9][0-9]*)(\\.[0-9]+)?((E|e)(+|-)?[0-9]+)?\n */\n\n\nfunction readNumber(source, start, firstCode, line, col, prev) {\n var body = source.body;\n var code = firstCode;\n var position = start;\n var isFloat = false;\n\n if (code === 45) {\n // -\n code = body.charCodeAt(++position);\n }\n\n if (code === 48) {\n // 0\n code = body.charCodeAt(++position);\n\n if (code >= 48 && code <= 57) {\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, position, \"Invalid number, unexpected digit after 0: \".concat(printCharCode(code), \".\"));\n }\n } else {\n position = readDigits(source, position, code);\n code = body.charCodeAt(position);\n }\n\n if (code === 46) {\n // .\n isFloat = true;\n code = body.charCodeAt(++position);\n position = readDigits(source, position, code);\n code = body.charCodeAt(position);\n }\n\n if (code === 69 || code === 101) {\n // E e\n isFloat = true;\n code = body.charCodeAt(++position);\n\n if (code === 43 || code === 45) {\n // + -\n code = body.charCodeAt(++position);\n }\n\n position = readDigits(source, position, code);\n code = body.charCodeAt(position);\n } // Numbers cannot be followed by . or NameStart\n\n\n if (code === 46 || isNameStart(code)) {\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, position, \"Invalid number, expected digit but got: \".concat(printCharCode(code), \".\"));\n }\n\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](isFloat ? _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].FLOAT : _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].INT, start, position, line, col, prev, body.slice(start, position));\n}\n/**\n * Returns the new position in the source after reading digits.\n */\n\n\nfunction readDigits(source, start, firstCode) {\n var body = source.body;\n var position = start;\n var code = firstCode;\n\n if (code >= 48 && code <= 57) {\n // 0 - 9\n do {\n code = body.charCodeAt(++position);\n } while (code >= 48 && code <= 57); // 0 - 9\n\n\n return position;\n }\n\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, position, \"Invalid number, expected digit but got: \".concat(printCharCode(code), \".\"));\n}\n/**\n * Reads a string token from the source file.\n *\n * \"([^\"\\\\\\u000A\\u000D]|(\\\\(u[0-9a-fA-F]{4}|[\"\\\\/bfnrt])))*\"\n */\n\n\nfunction readString(source, start, line, col, prev) {\n var body = source.body;\n var position = start + 1;\n var chunkStart = position;\n var code = 0;\n var value = '';\n\n while (position < body.length && !isNaN(code = body.charCodeAt(position)) && // not LineTerminator\n code !== 0x000a && code !== 0x000d) {\n // Closing Quote (\")\n if (code === 34) {\n value += body.slice(chunkStart, position);\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].STRING, start, position + 1, line, col, prev, value);\n } // SourceCharacter\n\n\n if (code < 0x0020 && code !== 0x0009) {\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, position, \"Invalid character within String: \".concat(printCharCode(code), \".\"));\n }\n\n ++position;\n\n if (code === 92) {\n // \\\n value += body.slice(chunkStart, position - 1);\n code = body.charCodeAt(position);\n\n switch (code) {\n case 34:\n value += '\"';\n break;\n\n case 47:\n value += '/';\n break;\n\n case 92:\n value += '\\\\';\n break;\n\n case 98:\n value += '\\b';\n break;\n\n case 102:\n value += '\\f';\n break;\n\n case 110:\n value += '\\n';\n break;\n\n case 114:\n value += '\\r';\n break;\n\n case 116:\n value += '\\t';\n break;\n\n case 117:\n {\n // uXXXX\n var charCode = uniCharCode(body.charCodeAt(position + 1), body.charCodeAt(position + 2), body.charCodeAt(position + 3), body.charCodeAt(position + 4));\n\n if (charCode < 0) {\n var invalidSequence = body.slice(position + 1, position + 5);\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, position, \"Invalid character escape sequence: \\\\u\".concat(invalidSequence, \".\"));\n }\n\n value += String.fromCharCode(charCode);\n position += 4;\n break;\n }\n\n default:\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, position, \"Invalid character escape sequence: \\\\\".concat(String.fromCharCode(code), \".\"));\n }\n\n ++position;\n chunkStart = position;\n }\n }\n\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, position, 'Unterminated string.');\n}\n/**\n * Reads a block string token from the source file.\n *\n * \"\"\"(\"?\"?(\\\\\"\"\"|\\\\(?!=\"\"\")|[^\"\\\\]))*\"\"\"\n */\n\n\nfunction readBlockString(source, start, line, col, prev, lexer) {\n var body = source.body;\n var position = start + 3;\n var chunkStart = position;\n var code = 0;\n var rawValue = '';\n\n while (position < body.length && !isNaN(code = body.charCodeAt(position))) {\n // Closing Triple-Quote (\"\"\")\n if (code === 34 && body.charCodeAt(position + 1) === 34 && body.charCodeAt(position + 2) === 34) {\n rawValue += body.slice(chunkStart, position);\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].BLOCK_STRING, start, position + 3, line, col, prev, Object(_blockString_mjs__WEBPACK_IMPORTED_MODULE_3__[\"dedentBlockStringValue\"])(rawValue));\n } // SourceCharacter\n\n\n if (code < 0x0020 && code !== 0x0009 && code !== 0x000a && code !== 0x000d) {\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, position, \"Invalid character within String: \".concat(printCharCode(code), \".\"));\n }\n\n if (code === 10) {\n // new line\n ++position;\n ++lexer.line;\n lexer.lineStart = position;\n } else if (code === 13) {\n // carriage return\n if (body.charCodeAt(position + 1) === 10) {\n position += 2;\n } else {\n ++position;\n }\n\n ++lexer.line;\n lexer.lineStart = position;\n } else if ( // Escape Triple-Quote (\\\"\"\")\n code === 92 && body.charCodeAt(position + 1) === 34 && body.charCodeAt(position + 2) === 34 && body.charCodeAt(position + 3) === 34) {\n rawValue += body.slice(chunkStart, position) + '\"\"\"';\n position += 4;\n chunkStart = position;\n } else {\n ++position;\n }\n }\n\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(source, position, 'Unterminated string.');\n}\n/**\n * Converts four hexadecimal chars to the integer that the\n * string represents. For example, uniCharCode('0','0','0','f')\n * will return 15, and uniCharCode('0','0','f','f') returns 255.\n *\n * Returns a negative number on error, if a char was invalid.\n *\n * This is implemented by noting that char2hex() returns -1 on error,\n * which means the result of ORing the char2hex() will also be negative.\n */\n\n\nfunction uniCharCode(a, b, c, d) {\n return char2hex(a) << 12 | char2hex(b) << 8 | char2hex(c) << 4 | char2hex(d);\n}\n/**\n * Converts a hex character to its integer value.\n * '0' becomes 0, '9' becomes 9\n * 'A' becomes 10, 'F' becomes 15\n * 'a' becomes 10, 'f' becomes 15\n *\n * Returns -1 on error.\n */\n\n\nfunction char2hex(a) {\n return a >= 48 && a <= 57 ? a - 48 // 0-9\n : a >= 65 && a <= 70 ? a - 55 // A-F\n : a >= 97 && a <= 102 ? a - 87 // a-f\n : -1;\n}\n/**\n * Reads an alphanumeric + underscore name from the source.\n *\n * [_A-Za-z][_0-9A-Za-z]*\n */\n\n\nfunction readName(source, start, line, col, prev) {\n var body = source.body;\n var bodyLength = body.length;\n var position = start + 1;\n var code = 0;\n\n while (position !== bodyLength && !isNaN(code = body.charCodeAt(position)) && (code === 95 || // _\n code >= 48 && code <= 57 || // 0-9\n code >= 65 && code <= 90 || // A-Z\n code >= 97 && code <= 122) // a-z\n ) {\n ++position;\n }\n\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Token\"](_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TokenKind\"].NAME, start, position, line, col, prev, body.slice(start, position));\n} // _ A-Z a-z\n\n\nfunction isNameStart(code) {\n return code === 95 || code >= 65 && code <= 90 || code >= 97 && code <= 122;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/lexer.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/location.mjs": /*!****************************************************!*\ !*** ./node_modules/graphql/language/location.mjs ***! \****************************************************/ /*! exports provided: getLocation */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getLocation\", function() { return getLocation; });\n/**\n * Represents a location in a Source.\n */\n\n/**\n * Takes a Source and a UTF-8 character offset, and returns the corresponding\n * line and column as a SourceLocation.\n */\nfunction getLocation(source, position) {\n var lineRegexp = /\\r\\n|[\\n\\r]/g;\n var line = 1;\n var column = position + 1;\n var match;\n\n while ((match = lineRegexp.exec(source.body)) && match.index < position) {\n line += 1;\n column = position + 1 - (match.index + match[0].length);\n }\n\n return {\n line: line,\n column: column\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/location.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/parser.mjs": /*!**************************************************!*\ !*** ./node_modules/graphql/language/parser.mjs ***! \**************************************************/ /*! exports provided: parse, parseValue, parseType, Parser */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parse\", function() { return parse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseValue\", function() { return parseValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseType\", function() { return parseType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Parser\", function() { return Parser; });\n/* harmony import */ var _error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../error/syntaxError.mjs */ \"./node_modules/graphql/error/syntaxError.mjs\");\n/* harmony import */ var _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _ast_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ast.mjs */ \"./node_modules/graphql/language/ast.mjs\");\n/* harmony import */ var _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./tokenKind.mjs */ \"./node_modules/graphql/language/tokenKind.mjs\");\n/* harmony import */ var _source_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./source.mjs */ \"./node_modules/graphql/language/source.mjs\");\n/* harmony import */ var _directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./directiveLocation.mjs */ \"./node_modules/graphql/language/directiveLocation.mjs\");\n/* harmony import */ var _lexer_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./lexer.mjs */ \"./node_modules/graphql/language/lexer.mjs\");\n\n\n\n\n\n\n\n/**\n * Configuration options to control parser behavior\n */\n\n/**\n * Given a GraphQL source, parses it into a Document.\n * Throws GraphQLError if a syntax error is encountered.\n */\nfunction parse(source, options) {\n var parser = new Parser(source, options);\n return parser.parseDocument();\n}\n/**\n * Given a string containing a GraphQL value (ex. `[42]`), parse the AST for\n * that value.\n * Throws GraphQLError if a syntax error is encountered.\n *\n * This is useful within tools that operate upon GraphQL Values directly and\n * in isolation of complete GraphQL documents.\n *\n * Consider providing the results to the utility function: valueFromAST().\n */\n\nfunction parseValue(source, options) {\n var parser = new Parser(source, options);\n parser.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].SOF);\n var value = parser.parseValueLiteral(false);\n parser.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].EOF);\n return value;\n}\n/**\n * Given a string containing a GraphQL Type (ex. `[Int!]`), parse the AST for\n * that type.\n * Throws GraphQLError if a syntax error is encountered.\n *\n * This is useful within tools that operate upon GraphQL Types directly and\n * in isolation of complete GraphQL documents.\n *\n * Consider providing the results to the utility function: typeFromAST().\n */\n\nfunction parseType(source, options) {\n var parser = new Parser(source, options);\n parser.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].SOF);\n var type = parser.parseTypeReference();\n parser.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].EOF);\n return type;\n}\n/**\n * This class is exported only to assist people in implementing their own parsers\n * without duplicating too much code and should be used only as last resort for cases\n * such as experimental syntax or if certain features could not be contributed upstream.\n *\n * It is still part of the internal API and is versioned, so any changes to it are never\n * considered breaking changes. If you still need to support multiple versions of the\n * library, please use the `versionInfo` variable for version detection.\n *\n * @internal\n */\n\nvar Parser = /*#__PURE__*/function () {\n function Parser(source, options) {\n var sourceObj = Object(_source_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isSource\"])(source) ? source : new _source_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Source\"](source);\n this._lexer = new _lexer_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Lexer\"](sourceObj);\n this._options = options;\n }\n /**\n * Converts a name lex token into a name parse node.\n */\n\n\n var _proto = Parser.prototype;\n\n _proto.parseName = function parseName() {\n var token = this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].NAME,\n value: token.value,\n loc: this.loc(token)\n };\n } // Implements the parsing rules in the Document section.\n\n /**\n * Document : Definition+\n */\n ;\n\n _proto.parseDocument = function parseDocument() {\n var start = this._lexer.token;\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].DOCUMENT,\n definitions: this.many(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].SOF, this.parseDefinition, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].EOF),\n loc: this.loc(start)\n };\n }\n /**\n * Definition :\n * - ExecutableDefinition\n * - TypeSystemDefinition\n * - TypeSystemExtension\n *\n * ExecutableDefinition :\n * - OperationDefinition\n * - FragmentDefinition\n */\n ;\n\n _proto.parseDefinition = function parseDefinition() {\n if (this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME)) {\n switch (this._lexer.token.value) {\n case 'query':\n case 'mutation':\n case 'subscription':\n return this.parseOperationDefinition();\n\n case 'fragment':\n return this.parseFragmentDefinition();\n\n case 'schema':\n case 'scalar':\n case 'type':\n case 'interface':\n case 'union':\n case 'enum':\n case 'input':\n case 'directive':\n return this.parseTypeSystemDefinition();\n\n case 'extend':\n return this.parseTypeSystemExtension();\n }\n } else if (this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L)) {\n return this.parseOperationDefinition();\n } else if (this.peekDescription()) {\n return this.parseTypeSystemDefinition();\n }\n\n throw this.unexpected();\n } // Implements the parsing rules in the Operations section.\n\n /**\n * OperationDefinition :\n * - SelectionSet\n * - OperationType Name? VariableDefinitions? Directives? SelectionSet\n */\n ;\n\n _proto.parseOperationDefinition = function parseOperationDefinition() {\n var start = this._lexer.token;\n\n if (this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L)) {\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OPERATION_DEFINITION,\n operation: 'query',\n name: undefined,\n variableDefinitions: [],\n directives: [],\n selectionSet: this.parseSelectionSet(),\n loc: this.loc(start)\n };\n }\n\n var operation = this.parseOperationType();\n var name;\n\n if (this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME)) {\n name = this.parseName();\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OPERATION_DEFINITION,\n operation: operation,\n name: name,\n variableDefinitions: this.parseVariableDefinitions(),\n directives: this.parseDirectives(false),\n selectionSet: this.parseSelectionSet(),\n loc: this.loc(start)\n };\n }\n /**\n * OperationType : one of query mutation subscription\n */\n ;\n\n _proto.parseOperationType = function parseOperationType() {\n var operationToken = this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME);\n\n switch (operationToken.value) {\n case 'query':\n return 'query';\n\n case 'mutation':\n return 'mutation';\n\n case 'subscription':\n return 'subscription';\n }\n\n throw this.unexpected(operationToken);\n }\n /**\n * VariableDefinitions : ( VariableDefinition+ )\n */\n ;\n\n _proto.parseVariableDefinitions = function parseVariableDefinitions() {\n return this.optionalMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].PAREN_L, this.parseVariableDefinition, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].PAREN_R);\n }\n /**\n * VariableDefinition : Variable : Type DefaultValue? Directives[Const]?\n */\n ;\n\n _proto.parseVariableDefinition = function parseVariableDefinition() {\n var start = this._lexer.token;\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].VARIABLE_DEFINITION,\n variable: this.parseVariable(),\n type: (this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].COLON), this.parseTypeReference()),\n defaultValue: this.expectOptionalToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].EQUALS) ? this.parseValueLiteral(true) : undefined,\n directives: this.parseDirectives(true),\n loc: this.loc(start)\n };\n }\n /**\n * Variable : $ Name\n */\n ;\n\n _proto.parseVariable = function parseVariable() {\n var start = this._lexer.token;\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].DOLLAR);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].VARIABLE,\n name: this.parseName(),\n loc: this.loc(start)\n };\n }\n /**\n * SelectionSet : { Selection+ }\n */\n ;\n\n _proto.parseSelectionSet = function parseSelectionSet() {\n var start = this._lexer.token;\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SELECTION_SET,\n selections: this.many(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L, this.parseSelection, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_R),\n loc: this.loc(start)\n };\n }\n /**\n * Selection :\n * - Field\n * - FragmentSpread\n * - InlineFragment\n */\n ;\n\n _proto.parseSelection = function parseSelection() {\n return this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].SPREAD) ? this.parseFragment() : this.parseField();\n }\n /**\n * Field : Alias? Name Arguments? Directives? SelectionSet?\n *\n * Alias : Name :\n */\n ;\n\n _proto.parseField = function parseField() {\n var start = this._lexer.token;\n var nameOrAlias = this.parseName();\n var alias;\n var name;\n\n if (this.expectOptionalToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].COLON)) {\n alias = nameOrAlias;\n name = this.parseName();\n } else {\n name = nameOrAlias;\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FIELD,\n alias: alias,\n name: name,\n arguments: this.parseArguments(false),\n directives: this.parseDirectives(false),\n selectionSet: this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L) ? this.parseSelectionSet() : undefined,\n loc: this.loc(start)\n };\n }\n /**\n * Arguments[Const] : ( Argument[?Const]+ )\n */\n ;\n\n _proto.parseArguments = function parseArguments(isConst) {\n var item = isConst ? this.parseConstArgument : this.parseArgument;\n return this.optionalMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].PAREN_L, item, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].PAREN_R);\n }\n /**\n * Argument[Const] : Name : Value[?Const]\n */\n ;\n\n _proto.parseArgument = function parseArgument() {\n var start = this._lexer.token;\n var name = this.parseName();\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].COLON);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ARGUMENT,\n name: name,\n value: this.parseValueLiteral(false),\n loc: this.loc(start)\n };\n };\n\n _proto.parseConstArgument = function parseConstArgument() {\n var start = this._lexer.token;\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ARGUMENT,\n name: this.parseName(),\n value: (this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].COLON), this.parseValueLiteral(true)),\n loc: this.loc(start)\n };\n } // Implements the parsing rules in the Fragments section.\n\n /**\n * Corresponds to both FragmentSpread and InlineFragment in the spec.\n *\n * FragmentSpread : ... FragmentName Directives?\n *\n * InlineFragment : ... TypeCondition? Directives? SelectionSet\n */\n ;\n\n _proto.parseFragment = function parseFragment() {\n var start = this._lexer.token;\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].SPREAD);\n var hasTypeCondition = this.expectOptionalKeyword('on');\n\n if (!hasTypeCondition && this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME)) {\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FRAGMENT_SPREAD,\n name: this.parseFragmentName(),\n directives: this.parseDirectives(false),\n loc: this.loc(start)\n };\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].INLINE_FRAGMENT,\n typeCondition: hasTypeCondition ? this.parseNamedType() : undefined,\n directives: this.parseDirectives(false),\n selectionSet: this.parseSelectionSet(),\n loc: this.loc(start)\n };\n }\n /**\n * FragmentDefinition :\n * - fragment FragmentName on TypeCondition Directives? SelectionSet\n *\n * TypeCondition : NamedType\n */\n ;\n\n _proto.parseFragmentDefinition = function parseFragmentDefinition() {\n var _this$_options;\n\n var start = this._lexer.token;\n this.expectKeyword('fragment'); // Experimental support for defining variables within fragments changes\n // the grammar of FragmentDefinition:\n // - fragment FragmentName VariableDefinitions? on TypeCondition Directives? SelectionSet\n\n if (((_this$_options = this._options) === null || _this$_options === void 0 ? void 0 : _this$_options.experimentalFragmentVariables) === true) {\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FRAGMENT_DEFINITION,\n name: this.parseFragmentName(),\n variableDefinitions: this.parseVariableDefinitions(),\n typeCondition: (this.expectKeyword('on'), this.parseNamedType()),\n directives: this.parseDirectives(false),\n selectionSet: this.parseSelectionSet(),\n loc: this.loc(start)\n };\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FRAGMENT_DEFINITION,\n name: this.parseFragmentName(),\n typeCondition: (this.expectKeyword('on'), this.parseNamedType()),\n directives: this.parseDirectives(false),\n selectionSet: this.parseSelectionSet(),\n loc: this.loc(start)\n };\n }\n /**\n * FragmentName : Name but not `on`\n */\n ;\n\n _proto.parseFragmentName = function parseFragmentName() {\n if (this._lexer.token.value === 'on') {\n throw this.unexpected();\n }\n\n return this.parseName();\n } // Implements the parsing rules in the Values section.\n\n /**\n * Value[Const] :\n * - [~Const] Variable\n * - IntValue\n * - FloatValue\n * - StringValue\n * - BooleanValue\n * - NullValue\n * - EnumValue\n * - ListValue[?Const]\n * - ObjectValue[?Const]\n *\n * BooleanValue : one of `true` `false`\n *\n * NullValue : `null`\n *\n * EnumValue : Name but not `true`, `false` or `null`\n */\n ;\n\n _proto.parseValueLiteral = function parseValueLiteral(isConst) {\n var token = this._lexer.token;\n\n switch (token.kind) {\n case _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACKET_L:\n return this.parseList(isConst);\n\n case _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L:\n return this.parseObject(isConst);\n\n case _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].INT:\n this._lexer.advance();\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].INT,\n value: token.value,\n loc: this.loc(token)\n };\n\n case _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].FLOAT:\n this._lexer.advance();\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FLOAT,\n value: token.value,\n loc: this.loc(token)\n };\n\n case _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].STRING:\n case _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BLOCK_STRING:\n return this.parseStringLiteral();\n\n case _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME:\n this._lexer.advance();\n\n switch (token.value) {\n case 'true':\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].BOOLEAN,\n value: true,\n loc: this.loc(token)\n };\n\n case 'false':\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].BOOLEAN,\n value: false,\n loc: this.loc(token)\n };\n\n case 'null':\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].NULL,\n loc: this.loc(token)\n };\n\n default:\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ENUM,\n value: token.value,\n loc: this.loc(token)\n };\n }\n\n case _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].DOLLAR:\n if (!isConst) {\n return this.parseVariable();\n }\n\n break;\n }\n\n throw this.unexpected();\n };\n\n _proto.parseStringLiteral = function parseStringLiteral() {\n var token = this._lexer.token;\n\n this._lexer.advance();\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].STRING,\n value: token.value,\n block: token.kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BLOCK_STRING,\n loc: this.loc(token)\n };\n }\n /**\n * ListValue[Const] :\n * - [ ]\n * - [ Value[?Const]+ ]\n */\n ;\n\n _proto.parseList = function parseList(isConst) {\n var _this = this;\n\n var start = this._lexer.token;\n\n var item = function item() {\n return _this.parseValueLiteral(isConst);\n };\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].LIST,\n values: this.any(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACKET_L, item, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACKET_R),\n loc: this.loc(start)\n };\n }\n /**\n * ObjectValue[Const] :\n * - { }\n * - { ObjectField[?Const]+ }\n */\n ;\n\n _proto.parseObject = function parseObject(isConst) {\n var _this2 = this;\n\n var start = this._lexer.token;\n\n var item = function item() {\n return _this2.parseObjectField(isConst);\n };\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OBJECT,\n fields: this.any(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L, item, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_R),\n loc: this.loc(start)\n };\n }\n /**\n * ObjectField[Const] : Name : Value[?Const]\n */\n ;\n\n _proto.parseObjectField = function parseObjectField(isConst) {\n var start = this._lexer.token;\n var name = this.parseName();\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].COLON);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OBJECT_FIELD,\n name: name,\n value: this.parseValueLiteral(isConst),\n loc: this.loc(start)\n };\n } // Implements the parsing rules in the Directives section.\n\n /**\n * Directives[Const] : Directive[?Const]+\n */\n ;\n\n _proto.parseDirectives = function parseDirectives(isConst) {\n var directives = [];\n\n while (this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].AT)) {\n directives.push(this.parseDirective(isConst));\n }\n\n return directives;\n }\n /**\n * Directive[Const] : @ Name Arguments[?Const]?\n */\n ;\n\n _proto.parseDirective = function parseDirective(isConst) {\n var start = this._lexer.token;\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].AT);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].DIRECTIVE,\n name: this.parseName(),\n arguments: this.parseArguments(isConst),\n loc: this.loc(start)\n };\n } // Implements the parsing rules in the Types section.\n\n /**\n * Type :\n * - NamedType\n * - ListType\n * - NonNullType\n */\n ;\n\n _proto.parseTypeReference = function parseTypeReference() {\n var start = this._lexer.token;\n var type;\n\n if (this.expectOptionalToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACKET_L)) {\n type = this.parseTypeReference();\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACKET_R);\n type = {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].LIST_TYPE,\n type: type,\n loc: this.loc(start)\n };\n } else {\n type = this.parseNamedType();\n }\n\n if (this.expectOptionalToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BANG)) {\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].NON_NULL_TYPE,\n type: type,\n loc: this.loc(start)\n };\n }\n\n return type;\n }\n /**\n * NamedType : Name\n */\n ;\n\n _proto.parseNamedType = function parseNamedType() {\n var start = this._lexer.token;\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].NAMED_TYPE,\n name: this.parseName(),\n loc: this.loc(start)\n };\n } // Implements the parsing rules in the Type Definition section.\n\n /**\n * TypeSystemDefinition :\n * - SchemaDefinition\n * - TypeDefinition\n * - DirectiveDefinition\n *\n * TypeDefinition :\n * - ScalarTypeDefinition\n * - ObjectTypeDefinition\n * - InterfaceTypeDefinition\n * - UnionTypeDefinition\n * - EnumTypeDefinition\n * - InputObjectTypeDefinition\n */\n ;\n\n _proto.parseTypeSystemDefinition = function parseTypeSystemDefinition() {\n // Many definitions begin with a description and require a lookahead.\n var keywordToken = this.peekDescription() ? this._lexer.lookahead() : this._lexer.token;\n\n if (keywordToken.kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME) {\n switch (keywordToken.value) {\n case 'schema':\n return this.parseSchemaDefinition();\n\n case 'scalar':\n return this.parseScalarTypeDefinition();\n\n case 'type':\n return this.parseObjectTypeDefinition();\n\n case 'interface':\n return this.parseInterfaceTypeDefinition();\n\n case 'union':\n return this.parseUnionTypeDefinition();\n\n case 'enum':\n return this.parseEnumTypeDefinition();\n\n case 'input':\n return this.parseInputObjectTypeDefinition();\n\n case 'directive':\n return this.parseDirectiveDefinition();\n }\n }\n\n throw this.unexpected(keywordToken);\n };\n\n _proto.peekDescription = function peekDescription() {\n return this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].STRING) || this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BLOCK_STRING);\n }\n /**\n * Description : StringValue\n */\n ;\n\n _proto.parseDescription = function parseDescription() {\n if (this.peekDescription()) {\n return this.parseStringLiteral();\n }\n }\n /**\n * SchemaDefinition : Description? schema Directives[Const]? { OperationTypeDefinition+ }\n */\n ;\n\n _proto.parseSchemaDefinition = function parseSchemaDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n this.expectKeyword('schema');\n var directives = this.parseDirectives(true);\n var operationTypes = this.many(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L, this.parseOperationTypeDefinition, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_R);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SCHEMA_DEFINITION,\n description: description,\n directives: directives,\n operationTypes: operationTypes,\n loc: this.loc(start)\n };\n }\n /**\n * OperationTypeDefinition : OperationType : NamedType\n */\n ;\n\n _proto.parseOperationTypeDefinition = function parseOperationTypeDefinition() {\n var start = this._lexer.token;\n var operation = this.parseOperationType();\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].COLON);\n var type = this.parseNamedType();\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OPERATION_TYPE_DEFINITION,\n operation: operation,\n type: type,\n loc: this.loc(start)\n };\n }\n /**\n * ScalarTypeDefinition : Description? scalar Name Directives[Const]?\n */\n ;\n\n _proto.parseScalarTypeDefinition = function parseScalarTypeDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n this.expectKeyword('scalar');\n var name = this.parseName();\n var directives = this.parseDirectives(true);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SCALAR_TYPE_DEFINITION,\n description: description,\n name: name,\n directives: directives,\n loc: this.loc(start)\n };\n }\n /**\n * ObjectTypeDefinition :\n * Description?\n * type Name ImplementsInterfaces? Directives[Const]? FieldsDefinition?\n */\n ;\n\n _proto.parseObjectTypeDefinition = function parseObjectTypeDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n this.expectKeyword('type');\n var name = this.parseName();\n var interfaces = this.parseImplementsInterfaces();\n var directives = this.parseDirectives(true);\n var fields = this.parseFieldsDefinition();\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OBJECT_TYPE_DEFINITION,\n description: description,\n name: name,\n interfaces: interfaces,\n directives: directives,\n fields: fields,\n loc: this.loc(start)\n };\n }\n /**\n * ImplementsInterfaces :\n * - implements `&`? NamedType\n * - ImplementsInterfaces & NamedType\n */\n ;\n\n _proto.parseImplementsInterfaces = function parseImplementsInterfaces() {\n var _this$_options2;\n\n if (!this.expectOptionalKeyword('implements')) {\n return [];\n }\n\n if (((_this$_options2 = this._options) === null || _this$_options2 === void 0 ? void 0 : _this$_options2.allowLegacySDLImplementsInterfaces) === true) {\n var types = []; // Optional leading ampersand\n\n this.expectOptionalToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].AMP);\n\n do {\n types.push(this.parseNamedType());\n } while (this.expectOptionalToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].AMP) || this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME));\n\n return types;\n }\n\n return this.delimitedMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].AMP, this.parseNamedType);\n }\n /**\n * FieldsDefinition : { FieldDefinition+ }\n */\n ;\n\n _proto.parseFieldsDefinition = function parseFieldsDefinition() {\n var _this$_options3;\n\n // Legacy support for the SDL?\n if (((_this$_options3 = this._options) === null || _this$_options3 === void 0 ? void 0 : _this$_options3.allowLegacySDLEmptyFields) === true && this.peek(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L) && this._lexer.lookahead().kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_R) {\n this._lexer.advance();\n\n this._lexer.advance();\n\n return [];\n }\n\n return this.optionalMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L, this.parseFieldDefinition, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_R);\n }\n /**\n * FieldDefinition :\n * - Description? Name ArgumentsDefinition? : Type Directives[Const]?\n */\n ;\n\n _proto.parseFieldDefinition = function parseFieldDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n var name = this.parseName();\n var args = this.parseArgumentDefs();\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].COLON);\n var type = this.parseTypeReference();\n var directives = this.parseDirectives(true);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FIELD_DEFINITION,\n description: description,\n name: name,\n arguments: args,\n type: type,\n directives: directives,\n loc: this.loc(start)\n };\n }\n /**\n * ArgumentsDefinition : ( InputValueDefinition+ )\n */\n ;\n\n _proto.parseArgumentDefs = function parseArgumentDefs() {\n return this.optionalMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].PAREN_L, this.parseInputValueDef, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].PAREN_R);\n }\n /**\n * InputValueDefinition :\n * - Description? Name : Type DefaultValue? Directives[Const]?\n */\n ;\n\n _proto.parseInputValueDef = function parseInputValueDef() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n var name = this.parseName();\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].COLON);\n var type = this.parseTypeReference();\n var defaultValue;\n\n if (this.expectOptionalToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].EQUALS)) {\n defaultValue = this.parseValueLiteral(true);\n }\n\n var directives = this.parseDirectives(true);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].INPUT_VALUE_DEFINITION,\n description: description,\n name: name,\n type: type,\n defaultValue: defaultValue,\n directives: directives,\n loc: this.loc(start)\n };\n }\n /**\n * InterfaceTypeDefinition :\n * - Description? interface Name Directives[Const]? FieldsDefinition?\n */\n ;\n\n _proto.parseInterfaceTypeDefinition = function parseInterfaceTypeDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n this.expectKeyword('interface');\n var name = this.parseName();\n var interfaces = this.parseImplementsInterfaces();\n var directives = this.parseDirectives(true);\n var fields = this.parseFieldsDefinition();\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].INTERFACE_TYPE_DEFINITION,\n description: description,\n name: name,\n interfaces: interfaces,\n directives: directives,\n fields: fields,\n loc: this.loc(start)\n };\n }\n /**\n * UnionTypeDefinition :\n * - Description? union Name Directives[Const]? UnionMemberTypes?\n */\n ;\n\n _proto.parseUnionTypeDefinition = function parseUnionTypeDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n this.expectKeyword('union');\n var name = this.parseName();\n var directives = this.parseDirectives(true);\n var types = this.parseUnionMemberTypes();\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].UNION_TYPE_DEFINITION,\n description: description,\n name: name,\n directives: directives,\n types: types,\n loc: this.loc(start)\n };\n }\n /**\n * UnionMemberTypes :\n * - = `|`? NamedType\n * - UnionMemberTypes | NamedType\n */\n ;\n\n _proto.parseUnionMemberTypes = function parseUnionMemberTypes() {\n return this.expectOptionalToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].EQUALS) ? this.delimitedMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].PIPE, this.parseNamedType) : [];\n }\n /**\n * EnumTypeDefinition :\n * - Description? enum Name Directives[Const]? EnumValuesDefinition?\n */\n ;\n\n _proto.parseEnumTypeDefinition = function parseEnumTypeDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n this.expectKeyword('enum');\n var name = this.parseName();\n var directives = this.parseDirectives(true);\n var values = this.parseEnumValuesDefinition();\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ENUM_TYPE_DEFINITION,\n description: description,\n name: name,\n directives: directives,\n values: values,\n loc: this.loc(start)\n };\n }\n /**\n * EnumValuesDefinition : { EnumValueDefinition+ }\n */\n ;\n\n _proto.parseEnumValuesDefinition = function parseEnumValuesDefinition() {\n return this.optionalMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L, this.parseEnumValueDefinition, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_R);\n }\n /**\n * EnumValueDefinition : Description? EnumValue Directives[Const]?\n *\n * EnumValue : Name\n */\n ;\n\n _proto.parseEnumValueDefinition = function parseEnumValueDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n var name = this.parseName();\n var directives = this.parseDirectives(true);\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ENUM_VALUE_DEFINITION,\n description: description,\n name: name,\n directives: directives,\n loc: this.loc(start)\n };\n }\n /**\n * InputObjectTypeDefinition :\n * - Description? input Name Directives[Const]? InputFieldsDefinition?\n */\n ;\n\n _proto.parseInputObjectTypeDefinition = function parseInputObjectTypeDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n this.expectKeyword('input');\n var name = this.parseName();\n var directives = this.parseDirectives(true);\n var fields = this.parseInputFieldsDefinition();\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].INPUT_OBJECT_TYPE_DEFINITION,\n description: description,\n name: name,\n directives: directives,\n fields: fields,\n loc: this.loc(start)\n };\n }\n /**\n * InputFieldsDefinition : { InputValueDefinition+ }\n */\n ;\n\n _proto.parseInputFieldsDefinition = function parseInputFieldsDefinition() {\n return this.optionalMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L, this.parseInputValueDef, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_R);\n }\n /**\n * TypeSystemExtension :\n * - SchemaExtension\n * - TypeExtension\n *\n * TypeExtension :\n * - ScalarTypeExtension\n * - ObjectTypeExtension\n * - InterfaceTypeExtension\n * - UnionTypeExtension\n * - EnumTypeExtension\n * - InputObjectTypeDefinition\n */\n ;\n\n _proto.parseTypeSystemExtension = function parseTypeSystemExtension() {\n var keywordToken = this._lexer.lookahead();\n\n if (keywordToken.kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME) {\n switch (keywordToken.value) {\n case 'schema':\n return this.parseSchemaExtension();\n\n case 'scalar':\n return this.parseScalarTypeExtension();\n\n case 'type':\n return this.parseObjectTypeExtension();\n\n case 'interface':\n return this.parseInterfaceTypeExtension();\n\n case 'union':\n return this.parseUnionTypeExtension();\n\n case 'enum':\n return this.parseEnumTypeExtension();\n\n case 'input':\n return this.parseInputObjectTypeExtension();\n }\n }\n\n throw this.unexpected(keywordToken);\n }\n /**\n * SchemaExtension :\n * - extend schema Directives[Const]? { OperationTypeDefinition+ }\n * - extend schema Directives[Const]\n */\n ;\n\n _proto.parseSchemaExtension = function parseSchemaExtension() {\n var start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('schema');\n var directives = this.parseDirectives(true);\n var operationTypes = this.optionalMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_L, this.parseOperationTypeDefinition, _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].BRACE_R);\n\n if (directives.length === 0 && operationTypes.length === 0) {\n throw this.unexpected();\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SCHEMA_EXTENSION,\n directives: directives,\n operationTypes: operationTypes,\n loc: this.loc(start)\n };\n }\n /**\n * ScalarTypeExtension :\n * - extend scalar Name Directives[Const]\n */\n ;\n\n _proto.parseScalarTypeExtension = function parseScalarTypeExtension() {\n var start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('scalar');\n var name = this.parseName();\n var directives = this.parseDirectives(true);\n\n if (directives.length === 0) {\n throw this.unexpected();\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SCALAR_TYPE_EXTENSION,\n name: name,\n directives: directives,\n loc: this.loc(start)\n };\n }\n /**\n * ObjectTypeExtension :\n * - extend type Name ImplementsInterfaces? Directives[Const]? FieldsDefinition\n * - extend type Name ImplementsInterfaces? Directives[Const]\n * - extend type Name ImplementsInterfaces\n */\n ;\n\n _proto.parseObjectTypeExtension = function parseObjectTypeExtension() {\n var start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('type');\n var name = this.parseName();\n var interfaces = this.parseImplementsInterfaces();\n var directives = this.parseDirectives(true);\n var fields = this.parseFieldsDefinition();\n\n if (interfaces.length === 0 && directives.length === 0 && fields.length === 0) {\n throw this.unexpected();\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OBJECT_TYPE_EXTENSION,\n name: name,\n interfaces: interfaces,\n directives: directives,\n fields: fields,\n loc: this.loc(start)\n };\n }\n /**\n * InterfaceTypeExtension :\n * - extend interface Name ImplementsInterfaces? Directives[Const]? FieldsDefinition\n * - extend interface Name ImplementsInterfaces? Directives[Const]\n * - extend interface Name ImplementsInterfaces\n */\n ;\n\n _proto.parseInterfaceTypeExtension = function parseInterfaceTypeExtension() {\n var start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('interface');\n var name = this.parseName();\n var interfaces = this.parseImplementsInterfaces();\n var directives = this.parseDirectives(true);\n var fields = this.parseFieldsDefinition();\n\n if (interfaces.length === 0 && directives.length === 0 && fields.length === 0) {\n throw this.unexpected();\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].INTERFACE_TYPE_EXTENSION,\n name: name,\n interfaces: interfaces,\n directives: directives,\n fields: fields,\n loc: this.loc(start)\n };\n }\n /**\n * UnionTypeExtension :\n * - extend union Name Directives[Const]? UnionMemberTypes\n * - extend union Name Directives[Const]\n */\n ;\n\n _proto.parseUnionTypeExtension = function parseUnionTypeExtension() {\n var start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('union');\n var name = this.parseName();\n var directives = this.parseDirectives(true);\n var types = this.parseUnionMemberTypes();\n\n if (directives.length === 0 && types.length === 0) {\n throw this.unexpected();\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].UNION_TYPE_EXTENSION,\n name: name,\n directives: directives,\n types: types,\n loc: this.loc(start)\n };\n }\n /**\n * EnumTypeExtension :\n * - extend enum Name Directives[Const]? EnumValuesDefinition\n * - extend enum Name Directives[Const]\n */\n ;\n\n _proto.parseEnumTypeExtension = function parseEnumTypeExtension() {\n var start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('enum');\n var name = this.parseName();\n var directives = this.parseDirectives(true);\n var values = this.parseEnumValuesDefinition();\n\n if (directives.length === 0 && values.length === 0) {\n throw this.unexpected();\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ENUM_TYPE_EXTENSION,\n name: name,\n directives: directives,\n values: values,\n loc: this.loc(start)\n };\n }\n /**\n * InputObjectTypeExtension :\n * - extend input Name Directives[Const]? InputFieldsDefinition\n * - extend input Name Directives[Const]\n */\n ;\n\n _proto.parseInputObjectTypeExtension = function parseInputObjectTypeExtension() {\n var start = this._lexer.token;\n this.expectKeyword('extend');\n this.expectKeyword('input');\n var name = this.parseName();\n var directives = this.parseDirectives(true);\n var fields = this.parseInputFieldsDefinition();\n\n if (directives.length === 0 && fields.length === 0) {\n throw this.unexpected();\n }\n\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].INPUT_OBJECT_TYPE_EXTENSION,\n name: name,\n directives: directives,\n fields: fields,\n loc: this.loc(start)\n };\n }\n /**\n * DirectiveDefinition :\n * - Description? directive @ Name ArgumentsDefinition? `repeatable`? on DirectiveLocations\n */\n ;\n\n _proto.parseDirectiveDefinition = function parseDirectiveDefinition() {\n var start = this._lexer.token;\n var description = this.parseDescription();\n this.expectKeyword('directive');\n this.expectToken(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].AT);\n var name = this.parseName();\n var args = this.parseArgumentDefs();\n var repeatable = this.expectOptionalKeyword('repeatable');\n this.expectKeyword('on');\n var locations = this.parseDirectiveLocations();\n return {\n kind: _kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].DIRECTIVE_DEFINITION,\n description: description,\n name: name,\n arguments: args,\n repeatable: repeatable,\n locations: locations,\n loc: this.loc(start)\n };\n }\n /**\n * DirectiveLocations :\n * - `|`? DirectiveLocation\n * - DirectiveLocations | DirectiveLocation\n */\n ;\n\n _proto.parseDirectiveLocations = function parseDirectiveLocations() {\n return this.delimitedMany(_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].PIPE, this.parseDirectiveLocation);\n }\n /*\n * DirectiveLocation :\n * - ExecutableDirectiveLocation\n * - TypeSystemDirectiveLocation\n *\n * ExecutableDirectiveLocation : one of\n * `QUERY`\n * `MUTATION`\n * `SUBSCRIPTION`\n * `FIELD`\n * `FRAGMENT_DEFINITION`\n * `FRAGMENT_SPREAD`\n * `INLINE_FRAGMENT`\n *\n * TypeSystemDirectiveLocation : one of\n * `SCHEMA`\n * `SCALAR`\n * `OBJECT`\n * `FIELD_DEFINITION`\n * `ARGUMENT_DEFINITION`\n * `INTERFACE`\n * `UNION`\n * `ENUM`\n * `ENUM_VALUE`\n * `INPUT_OBJECT`\n * `INPUT_FIELD_DEFINITION`\n */\n ;\n\n _proto.parseDirectiveLocation = function parseDirectiveLocation() {\n var start = this._lexer.token;\n var name = this.parseName();\n\n if (_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_5__[\"DirectiveLocation\"][name.value] !== undefined) {\n return name;\n }\n\n throw this.unexpected(start);\n } // Core parsing utility functions\n\n /**\n * Returns a location object, used to identify the place in the source that created a given parsed object.\n */\n ;\n\n _proto.loc = function loc(startToken) {\n var _this$_options4;\n\n if (((_this$_options4 = this._options) === null || _this$_options4 === void 0 ? void 0 : _this$_options4.noLocation) !== true) {\n return new _ast_mjs__WEBPACK_IMPORTED_MODULE_2__[\"Location\"](startToken, this._lexer.lastToken, this._lexer.source);\n }\n }\n /**\n * Determines if the next token is of a given kind\n */\n ;\n\n _proto.peek = function peek(kind) {\n return this._lexer.token.kind === kind;\n }\n /**\n * If the next token is of the given kind, return that token after advancing the lexer.\n * Otherwise, do not change the parser state and throw an error.\n */\n ;\n\n _proto.expectToken = function expectToken(kind) {\n var token = this._lexer.token;\n\n if (token.kind === kind) {\n this._lexer.advance();\n\n return token;\n }\n\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(this._lexer.source, token.start, \"Expected \".concat(getTokenKindDesc(kind), \", found \").concat(getTokenDesc(token), \".\"));\n }\n /**\n * If the next token is of the given kind, return that token after advancing the lexer.\n * Otherwise, do not change the parser state and return undefined.\n */\n ;\n\n _proto.expectOptionalToken = function expectOptionalToken(kind) {\n var token = this._lexer.token;\n\n if (token.kind === kind) {\n this._lexer.advance();\n\n return token;\n }\n\n return undefined;\n }\n /**\n * If the next token is a given keyword, advance the lexer.\n * Otherwise, do not change the parser state and throw an error.\n */\n ;\n\n _proto.expectKeyword = function expectKeyword(value) {\n var token = this._lexer.token;\n\n if (token.kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME && token.value === value) {\n this._lexer.advance();\n } else {\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(this._lexer.source, token.start, \"Expected \\\"\".concat(value, \"\\\", found \").concat(getTokenDesc(token), \".\"));\n }\n }\n /**\n * If the next token is a given keyword, return \"true\" after advancing the lexer.\n * Otherwise, do not change the parser state and return \"false\".\n */\n ;\n\n _proto.expectOptionalKeyword = function expectOptionalKeyword(value) {\n var token = this._lexer.token;\n\n if (token.kind === _tokenKind_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TokenKind\"].NAME && token.value === value) {\n this._lexer.advance();\n\n return true;\n }\n\n return false;\n }\n /**\n * Helper function for creating an error when an unexpected lexed token is encountered.\n */\n ;\n\n _proto.unexpected = function unexpected(atToken) {\n var token = atToken !== null && atToken !== void 0 ? atToken : this._lexer.token;\n return Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(this._lexer.source, token.start, \"Unexpected \".concat(getTokenDesc(token), \".\"));\n }\n /**\n * Returns a possibly empty list of parse nodes, determined by the parseFn.\n * This list begins with a lex token of openKind and ends with a lex token of closeKind.\n * Advances the parser to the next lex token after the closing token.\n */\n ;\n\n _proto.any = function any(openKind, parseFn, closeKind) {\n this.expectToken(openKind);\n var nodes = [];\n\n while (!this.expectOptionalToken(closeKind)) {\n nodes.push(parseFn.call(this));\n }\n\n return nodes;\n }\n /**\n * Returns a list of parse nodes, determined by the parseFn.\n * It can be empty only if open token is missing otherwise it will always return non-empty list\n * that begins with a lex token of openKind and ends with a lex token of closeKind.\n * Advances the parser to the next lex token after the closing token.\n */\n ;\n\n _proto.optionalMany = function optionalMany(openKind, parseFn, closeKind) {\n if (this.expectOptionalToken(openKind)) {\n var nodes = [];\n\n do {\n nodes.push(parseFn.call(this));\n } while (!this.expectOptionalToken(closeKind));\n\n return nodes;\n }\n\n return [];\n }\n /**\n * Returns a non-empty list of parse nodes, determined by the parseFn.\n * This list begins with a lex token of openKind and ends with a lex token of closeKind.\n * Advances the parser to the next lex token after the closing token.\n */\n ;\n\n _proto.many = function many(openKind, parseFn, closeKind) {\n this.expectToken(openKind);\n var nodes = [];\n\n do {\n nodes.push(parseFn.call(this));\n } while (!this.expectOptionalToken(closeKind));\n\n return nodes;\n }\n /**\n * Returns a non-empty list of parse nodes, determined by the parseFn.\n * This list may begin with a lex token of delimiterKind followed by items separated by lex tokens of tokenKind.\n * Advances the parser to the next lex token after last item in the list.\n */\n ;\n\n _proto.delimitedMany = function delimitedMany(delimiterKind, parseFn) {\n this.expectOptionalToken(delimiterKind);\n var nodes = [];\n\n do {\n nodes.push(parseFn.call(this));\n } while (this.expectOptionalToken(delimiterKind));\n\n return nodes;\n };\n\n return Parser;\n}();\n/**\n * A helper function to describe a token as a string for debugging.\n */\n\nfunction getTokenDesc(token) {\n var value = token.value;\n return getTokenKindDesc(token.kind) + (value != null ? \" \\\"\".concat(value, \"\\\"\") : '');\n}\n/**\n * A helper function to describe a token kind as a string for debugging.\n */\n\n\nfunction getTokenKindDesc(kind) {\n return Object(_lexer_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isPunctuatorTokenKind\"])(kind) ? \"\\\"\".concat(kind, \"\\\"\") : kind;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/parser.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/predicates.mjs": /*!******************************************************!*\ !*** ./node_modules/graphql/language/predicates.mjs ***! \******************************************************/ /*! exports provided: isDefinitionNode, isExecutableDefinitionNode, isSelectionNode, isValueNode, isTypeNode, isTypeSystemDefinitionNode, isTypeDefinitionNode, isTypeSystemExtensionNode, isTypeExtensionNode */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isDefinitionNode\", function() { return isDefinitionNode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isExecutableDefinitionNode\", function() { return isExecutableDefinitionNode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSelectionNode\", function() { return isSelectionNode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isValueNode\", function() { return isValueNode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTypeNode\", function() { return isTypeNode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTypeSystemDefinitionNode\", function() { return isTypeSystemDefinitionNode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTypeDefinitionNode\", function() { return isTypeDefinitionNode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTypeSystemExtensionNode\", function() { return isTypeSystemExtensionNode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTypeExtensionNode\", function() { return isTypeExtensionNode; });\n/* harmony import */ var _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n\nfunction isDefinitionNode(node) {\n return isExecutableDefinitionNode(node) || isTypeSystemDefinitionNode(node) || isTypeSystemExtensionNode(node);\n}\nfunction isExecutableDefinitionNode(node) {\n return node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].OPERATION_DEFINITION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].FRAGMENT_DEFINITION;\n}\nfunction isSelectionNode(node) {\n return node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].FIELD || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].FRAGMENT_SPREAD || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].INLINE_FRAGMENT;\n}\nfunction isValueNode(node) {\n return node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].VARIABLE || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].INT || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].FLOAT || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].STRING || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].BOOLEAN || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].NULL || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].ENUM || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].LIST || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].OBJECT;\n}\nfunction isTypeNode(node) {\n return node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].NAMED_TYPE || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].LIST_TYPE || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].NON_NULL_TYPE;\n}\nfunction isTypeSystemDefinitionNode(node) {\n return node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].SCHEMA_DEFINITION || isTypeDefinitionNode(node) || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].DIRECTIVE_DEFINITION;\n}\nfunction isTypeDefinitionNode(node) {\n return node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].SCALAR_TYPE_DEFINITION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].OBJECT_TYPE_DEFINITION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].INTERFACE_TYPE_DEFINITION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].UNION_TYPE_DEFINITION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].ENUM_TYPE_DEFINITION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].INPUT_OBJECT_TYPE_DEFINITION;\n}\nfunction isTypeSystemExtensionNode(node) {\n return node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].SCHEMA_EXTENSION || isTypeExtensionNode(node);\n}\nfunction isTypeExtensionNode(node) {\n return node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].SCALAR_TYPE_EXTENSION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].OBJECT_TYPE_EXTENSION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].INTERFACE_TYPE_EXTENSION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].UNION_TYPE_EXTENSION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].ENUM_TYPE_EXTENSION || node.kind === _kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].INPUT_OBJECT_TYPE_EXTENSION;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/predicates.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/printLocation.mjs": /*!*********************************************************!*\ !*** ./node_modules/graphql/language/printLocation.mjs ***! \*********************************************************/ /*! exports provided: printLocation, printSourceLocation */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"printLocation\", function() { return printLocation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"printSourceLocation\", function() { return printSourceLocation; });\n/* harmony import */ var _location_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./location.mjs */ \"./node_modules/graphql/language/location.mjs\");\n\n/**\n * Render a helpful description of the location in the GraphQL Source document.\n */\n\nfunction printLocation(location) {\n return printSourceLocation(location.source, Object(_location_mjs__WEBPACK_IMPORTED_MODULE_0__[\"getLocation\"])(location.source, location.start));\n}\n/**\n * Render a helpful description of the location in the GraphQL Source document.\n */\n\nfunction printSourceLocation(source, sourceLocation) {\n var firstLineColumnOffset = source.locationOffset.column - 1;\n var body = whitespace(firstLineColumnOffset) + source.body;\n var lineIndex = sourceLocation.line - 1;\n var lineOffset = source.locationOffset.line - 1;\n var lineNum = sourceLocation.line + lineOffset;\n var columnOffset = sourceLocation.line === 1 ? firstLineColumnOffset : 0;\n var columnNum = sourceLocation.column + columnOffset;\n var locationStr = \"\".concat(source.name, \":\").concat(lineNum, \":\").concat(columnNum, \"\\n\");\n var lines = body.split(/\\r\\n|[\\n\\r]/g);\n var locationLine = lines[lineIndex]; // Special case for minified documents\n\n if (locationLine.length > 120) {\n var subLineIndex = Math.floor(columnNum / 80);\n var subLineColumnNum = columnNum % 80;\n var subLines = [];\n\n for (var i = 0; i < locationLine.length; i += 80) {\n subLines.push(locationLine.slice(i, i + 80));\n }\n\n return locationStr + printPrefixedLines([[\"\".concat(lineNum), subLines[0]]].concat(subLines.slice(1, subLineIndex + 1).map(function (subLine) {\n return ['', subLine];\n }), [[' ', whitespace(subLineColumnNum - 1) + '^'], ['', subLines[subLineIndex + 1]]]));\n }\n\n return locationStr + printPrefixedLines([// Lines specified like this: [\"prefix\", \"string\"],\n [\"\".concat(lineNum - 1), lines[lineIndex - 1]], [\"\".concat(lineNum), locationLine], ['', whitespace(columnNum - 1) + '^'], [\"\".concat(lineNum + 1), lines[lineIndex + 1]]]);\n}\n\nfunction printPrefixedLines(lines) {\n var existingLines = lines.filter(function (_ref) {\n var _ = _ref[0],\n line = _ref[1];\n return line !== undefined;\n });\n var padLen = Math.max.apply(Math, existingLines.map(function (_ref2) {\n var prefix = _ref2[0];\n return prefix.length;\n }));\n return existingLines.map(function (_ref3) {\n var prefix = _ref3[0],\n line = _ref3[1];\n return leftPad(padLen, prefix) + (line ? ' | ' + line : ' |');\n }).join('\\n');\n}\n\nfunction whitespace(len) {\n return Array(len + 1).join(' ');\n}\n\nfunction leftPad(len, str) {\n return whitespace(len - str.length) + str;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/printLocation.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/printer.mjs": /*!***************************************************!*\ !*** ./node_modules/graphql/language/printer.mjs ***! \***************************************************/ /*! exports provided: print */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"print\", function() { return print; });\n/* harmony import */ var _visitor_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./visitor.mjs */ \"./node_modules/graphql/language/visitor.mjs\");\n/* harmony import */ var _blockString_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./blockString.mjs */ \"./node_modules/graphql/language/blockString.mjs\");\n\n\n/**\n * Converts an AST into a string, using one set of reasonable\n * formatting rules.\n */\n\nfunction print(ast) {\n return Object(_visitor_mjs__WEBPACK_IMPORTED_MODULE_0__[\"visit\"])(ast, {\n leave: printDocASTReducer\n });\n}\nvar MAX_LINE_LENGTH = 80; // TODO: provide better type coverage in future\n\nvar printDocASTReducer = {\n Name: function Name(node) {\n return node.value;\n },\n Variable: function Variable(node) {\n return '$' + node.name;\n },\n // Document\n Document: function Document(node) {\n return join(node.definitions, '\\n\\n') + '\\n';\n },\n OperationDefinition: function OperationDefinition(node) {\n var op = node.operation;\n var name = node.name;\n var varDefs = wrap('(', join(node.variableDefinitions, ', '), ')');\n var directives = join(node.directives, ' ');\n var selectionSet = node.selectionSet; // Anonymous queries with no directives or variable definitions can use\n // the query short form.\n\n return !name && !directives && !varDefs && op === 'query' ? selectionSet : join([op, join([name, varDefs]), directives, selectionSet], ' ');\n },\n VariableDefinition: function VariableDefinition(_ref) {\n var variable = _ref.variable,\n type = _ref.type,\n defaultValue = _ref.defaultValue,\n directives = _ref.directives;\n return variable + ': ' + type + wrap(' = ', defaultValue) + wrap(' ', join(directives, ' '));\n },\n SelectionSet: function SelectionSet(_ref2) {\n var selections = _ref2.selections;\n return block(selections);\n },\n Field: function Field(_ref3) {\n var alias = _ref3.alias,\n name = _ref3.name,\n args = _ref3.arguments,\n directives = _ref3.directives,\n selectionSet = _ref3.selectionSet;\n var prefix = wrap('', alias, ': ') + name;\n var argsLine = prefix + wrap('(', join(args, ', '), ')');\n\n if (argsLine.length > MAX_LINE_LENGTH) {\n argsLine = prefix + wrap('(\\n', indent(join(args, '\\n')), '\\n)');\n }\n\n return join([argsLine, join(directives, ' '), selectionSet], ' ');\n },\n Argument: function Argument(_ref4) {\n var name = _ref4.name,\n value = _ref4.value;\n return name + ': ' + value;\n },\n // Fragments\n FragmentSpread: function FragmentSpread(_ref5) {\n var name = _ref5.name,\n directives = _ref5.directives;\n return '...' + name + wrap(' ', join(directives, ' '));\n },\n InlineFragment: function InlineFragment(_ref6) {\n var typeCondition = _ref6.typeCondition,\n directives = _ref6.directives,\n selectionSet = _ref6.selectionSet;\n return join(['...', wrap('on ', typeCondition), join(directives, ' '), selectionSet], ' ');\n },\n FragmentDefinition: function FragmentDefinition(_ref7) {\n var name = _ref7.name,\n typeCondition = _ref7.typeCondition,\n variableDefinitions = _ref7.variableDefinitions,\n directives = _ref7.directives,\n selectionSet = _ref7.selectionSet;\n return (// Note: fragment variable definitions are experimental and may be changed\n // or removed in the future.\n \"fragment \".concat(name).concat(wrap('(', join(variableDefinitions, ', '), ')'), \" \") + \"on \".concat(typeCondition, \" \").concat(wrap('', join(directives, ' '), ' ')) + selectionSet\n );\n },\n // Value\n IntValue: function IntValue(_ref8) {\n var value = _ref8.value;\n return value;\n },\n FloatValue: function FloatValue(_ref9) {\n var value = _ref9.value;\n return value;\n },\n StringValue: function StringValue(_ref10, key) {\n var value = _ref10.value,\n isBlockString = _ref10.block;\n return isBlockString ? Object(_blockString_mjs__WEBPACK_IMPORTED_MODULE_1__[\"printBlockString\"])(value, key === 'description' ? '' : ' ') : JSON.stringify(value);\n },\n BooleanValue: function BooleanValue(_ref11) {\n var value = _ref11.value;\n return value ? 'true' : 'false';\n },\n NullValue: function NullValue() {\n return 'null';\n },\n EnumValue: function EnumValue(_ref12) {\n var value = _ref12.value;\n return value;\n },\n ListValue: function ListValue(_ref13) {\n var values = _ref13.values;\n return '[' + join(values, ', ') + ']';\n },\n ObjectValue: function ObjectValue(_ref14) {\n var fields = _ref14.fields;\n return '{' + join(fields, ', ') + '}';\n },\n ObjectField: function ObjectField(_ref15) {\n var name = _ref15.name,\n value = _ref15.value;\n return name + ': ' + value;\n },\n // Directive\n Directive: function Directive(_ref16) {\n var name = _ref16.name,\n args = _ref16.arguments;\n return '@' + name + wrap('(', join(args, ', '), ')');\n },\n // Type\n NamedType: function NamedType(_ref17) {\n var name = _ref17.name;\n return name;\n },\n ListType: function ListType(_ref18) {\n var type = _ref18.type;\n return '[' + type + ']';\n },\n NonNullType: function NonNullType(_ref19) {\n var type = _ref19.type;\n return type + '!';\n },\n // Type System Definitions\n SchemaDefinition: addDescription(function (_ref20) {\n var directives = _ref20.directives,\n operationTypes = _ref20.operationTypes;\n return join(['schema', join(directives, ' '), block(operationTypes)], ' ');\n }),\n OperationTypeDefinition: function OperationTypeDefinition(_ref21) {\n var operation = _ref21.operation,\n type = _ref21.type;\n return operation + ': ' + type;\n },\n ScalarTypeDefinition: addDescription(function (_ref22) {\n var name = _ref22.name,\n directives = _ref22.directives;\n return join(['scalar', name, join(directives, ' ')], ' ');\n }),\n ObjectTypeDefinition: addDescription(function (_ref23) {\n var name = _ref23.name,\n interfaces = _ref23.interfaces,\n directives = _ref23.directives,\n fields = _ref23.fields;\n return join(['type', name, wrap('implements ', join(interfaces, ' & ')), join(directives, ' '), block(fields)], ' ');\n }),\n FieldDefinition: addDescription(function (_ref24) {\n var name = _ref24.name,\n args = _ref24.arguments,\n type = _ref24.type,\n directives = _ref24.directives;\n return name + (hasMultilineItems(args) ? wrap('(\\n', indent(join(args, '\\n')), '\\n)') : wrap('(', join(args, ', '), ')')) + ': ' + type + wrap(' ', join(directives, ' '));\n }),\n InputValueDefinition: addDescription(function (_ref25) {\n var name = _ref25.name,\n type = _ref25.type,\n defaultValue = _ref25.defaultValue,\n directives = _ref25.directives;\n return join([name + ': ' + type, wrap('= ', defaultValue), join(directives, ' ')], ' ');\n }),\n InterfaceTypeDefinition: addDescription(function (_ref26) {\n var name = _ref26.name,\n interfaces = _ref26.interfaces,\n directives = _ref26.directives,\n fields = _ref26.fields;\n return join(['interface', name, wrap('implements ', join(interfaces, ' & ')), join(directives, ' '), block(fields)], ' ');\n }),\n UnionTypeDefinition: addDescription(function (_ref27) {\n var name = _ref27.name,\n directives = _ref27.directives,\n types = _ref27.types;\n return join(['union', name, join(directives, ' '), types && types.length !== 0 ? '= ' + join(types, ' | ') : ''], ' ');\n }),\n EnumTypeDefinition: addDescription(function (_ref28) {\n var name = _ref28.name,\n directives = _ref28.directives,\n values = _ref28.values;\n return join(['enum', name, join(directives, ' '), block(values)], ' ');\n }),\n EnumValueDefinition: addDescription(function (_ref29) {\n var name = _ref29.name,\n directives = _ref29.directives;\n return join([name, join(directives, ' ')], ' ');\n }),\n InputObjectTypeDefinition: addDescription(function (_ref30) {\n var name = _ref30.name,\n directives = _ref30.directives,\n fields = _ref30.fields;\n return join(['input', name, join(directives, ' '), block(fields)], ' ');\n }),\n DirectiveDefinition: addDescription(function (_ref31) {\n var name = _ref31.name,\n args = _ref31.arguments,\n repeatable = _ref31.repeatable,\n locations = _ref31.locations;\n return 'directive @' + name + (hasMultilineItems(args) ? wrap('(\\n', indent(join(args, '\\n')), '\\n)') : wrap('(', join(args, ', '), ')')) + (repeatable ? ' repeatable' : '') + ' on ' + join(locations, ' | ');\n }),\n SchemaExtension: function SchemaExtension(_ref32) {\n var directives = _ref32.directives,\n operationTypes = _ref32.operationTypes;\n return join(['extend schema', join(directives, ' '), block(operationTypes)], ' ');\n },\n ScalarTypeExtension: function ScalarTypeExtension(_ref33) {\n var name = _ref33.name,\n directives = _ref33.directives;\n return join(['extend scalar', name, join(directives, ' ')], ' ');\n },\n ObjectTypeExtension: function ObjectTypeExtension(_ref34) {\n var name = _ref34.name,\n interfaces = _ref34.interfaces,\n directives = _ref34.directives,\n fields = _ref34.fields;\n return join(['extend type', name, wrap('implements ', join(interfaces, ' & ')), join(directives, ' '), block(fields)], ' ');\n },\n InterfaceTypeExtension: function InterfaceTypeExtension(_ref35) {\n var name = _ref35.name,\n interfaces = _ref35.interfaces,\n directives = _ref35.directives,\n fields = _ref35.fields;\n return join(['extend interface', name, wrap('implements ', join(interfaces, ' & ')), join(directives, ' '), block(fields)], ' ');\n },\n UnionTypeExtension: function UnionTypeExtension(_ref36) {\n var name = _ref36.name,\n directives = _ref36.directives,\n types = _ref36.types;\n return join(['extend union', name, join(directives, ' '), types && types.length !== 0 ? '= ' + join(types, ' | ') : ''], ' ');\n },\n EnumTypeExtension: function EnumTypeExtension(_ref37) {\n var name = _ref37.name,\n directives = _ref37.directives,\n values = _ref37.values;\n return join(['extend enum', name, join(directives, ' '), block(values)], ' ');\n },\n InputObjectTypeExtension: function InputObjectTypeExtension(_ref38) {\n var name = _ref38.name,\n directives = _ref38.directives,\n fields = _ref38.fields;\n return join(['extend input', name, join(directives, ' '), block(fields)], ' ');\n }\n};\n\nfunction addDescription(cb) {\n return function (node) {\n return join([node.description, cb(node)], '\\n');\n };\n}\n/**\n * Given maybeArray, print an empty string if it is null or empty, otherwise\n * print all items together separated by separator if provided\n */\n\n\nfunction join(maybeArray) {\n var _maybeArray$filter$jo;\n\n var separator = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n return (_maybeArray$filter$jo = maybeArray === null || maybeArray === void 0 ? void 0 : maybeArray.filter(function (x) {\n return x;\n }).join(separator)) !== null && _maybeArray$filter$jo !== void 0 ? _maybeArray$filter$jo : '';\n}\n/**\n * Given array, print each item on its own line, wrapped in an\n * indented \"{ }\" block.\n */\n\n\nfunction block(array) {\n return wrap('{\\n', indent(join(array, '\\n')), '\\n}');\n}\n/**\n * If maybeString is not null or empty, then wrap with start and end, otherwise print an empty string.\n */\n\n\nfunction wrap(start, maybeString) {\n var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';\n return maybeString != null && maybeString !== '' ? start + maybeString + end : '';\n}\n\nfunction indent(str) {\n return wrap(' ', str.replace(/\\n/g, '\\n '));\n}\n\nfunction isMultiline(str) {\n return str.indexOf('\\n') !== -1;\n}\n\nfunction hasMultilineItems(maybeArray) {\n return maybeArray != null && maybeArray.some(isMultiline);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/printer.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/source.mjs": /*!**************************************************!*\ !*** ./node_modules/graphql/language/source.mjs ***! \**************************************************/ /*! exports provided: Source, isSource */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Source\", function() { return Source; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSource\", function() { return isSource; });\n/* harmony import */ var _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/symbols.mjs */ \"./node_modules/graphql/polyfills/symbols.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/instanceOf.mjs */ \"./node_modules/graphql/jsutils/instanceOf.mjs\");\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\n\n\n\n\n\n/**\n * A representation of source input to GraphQL. The `name` and `locationOffset` parameters are\n * optional, but they are useful for clients who store GraphQL documents in source files.\n * For example, if the GraphQL input starts at line 40 in a file named `Foo.graphql`, it might\n * be useful for `name` to be `\"Foo.graphql\"` and location to be `{ line: 40, column: 1 }`.\n * The `line` and `column` properties in `locationOffset` are 1-indexed.\n */\nvar Source = /*#__PURE__*/function () {\n function Source(body) {\n var name = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'GraphQL request';\n var locationOffset = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {\n line: 1,\n column: 1\n };\n typeof body === 'string' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, \"Body must be a string. Received: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(body), \".\"));\n this.body = body;\n this.name = name;\n this.locationOffset = locationOffset;\n this.locationOffset.line > 0 || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, 'line in locationOffset is 1-indexed and must be positive.');\n this.locationOffset.column > 0 || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, 'column in locationOffset is 1-indexed and must be positive.');\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n\n\n _createClass(Source, [{\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'Source';\n }\n }]);\n\n return Source;\n}();\n/**\n * Test if the given value is a Source object.\n *\n * @internal\n */\n\n// eslint-disable-next-line no-redeclare\nfunction isSource(source) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(source, Source);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/source.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/tokenKind.mjs": /*!*****************************************************!*\ !*** ./node_modules/graphql/language/tokenKind.mjs ***! \*****************************************************/ /*! exports provided: TokenKind */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TokenKind\", function() { return TokenKind; });\n/**\n * An exported enum describing the different kinds of tokens that the\n * lexer emits.\n */\nvar TokenKind = Object.freeze({\n SOF: '',\n EOF: '',\n BANG: '!',\n DOLLAR: '$',\n AMP: '&',\n PAREN_L: '(',\n PAREN_R: ')',\n SPREAD: '...',\n COLON: ':',\n EQUALS: '=',\n AT: '@',\n BRACKET_L: '[',\n BRACKET_R: ']',\n BRACE_L: '{',\n PIPE: '|',\n BRACE_R: '}',\n NAME: 'Name',\n INT: 'Int',\n FLOAT: 'Float',\n STRING: 'String',\n BLOCK_STRING: 'BlockString',\n COMMENT: 'Comment'\n});\n/**\n * The enum type representing the token kinds values.\n */\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/tokenKind.mjs?"); /***/ }), /***/ "./node_modules/graphql/language/visitor.mjs": /*!***************************************************!*\ !*** ./node_modules/graphql/language/visitor.mjs ***! \***************************************************/ /*! exports provided: QueryDocumentKeys, BREAK, visit, visitInParallel, getVisitFn */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"QueryDocumentKeys\", function() { return QueryDocumentKeys; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BREAK\", function() { return BREAK; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"visit\", function() { return visit; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"visitInParallel\", function() { return visitInParallel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getVisitFn\", function() { return getVisitFn; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _ast_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ast.mjs */ \"./node_modules/graphql/language/ast.mjs\");\n\n\n/**\n * A visitor is provided to visit, it contains the collection of\n * relevant functions to be called during the visitor's traversal.\n */\n\nvar QueryDocumentKeys = {\n Name: [],\n Document: ['definitions'],\n OperationDefinition: ['name', 'variableDefinitions', 'directives', 'selectionSet'],\n VariableDefinition: ['variable', 'type', 'defaultValue', 'directives'],\n Variable: ['name'],\n SelectionSet: ['selections'],\n Field: ['alias', 'name', 'arguments', 'directives', 'selectionSet'],\n Argument: ['name', 'value'],\n FragmentSpread: ['name', 'directives'],\n InlineFragment: ['typeCondition', 'directives', 'selectionSet'],\n FragmentDefinition: ['name', // Note: fragment variable definitions are experimental and may be changed\n // or removed in the future.\n 'variableDefinitions', 'typeCondition', 'directives', 'selectionSet'],\n IntValue: [],\n FloatValue: [],\n StringValue: [],\n BooleanValue: [],\n NullValue: [],\n EnumValue: [],\n ListValue: ['values'],\n ObjectValue: ['fields'],\n ObjectField: ['name', 'value'],\n Directive: ['name', 'arguments'],\n NamedType: ['name'],\n ListType: ['type'],\n NonNullType: ['type'],\n SchemaDefinition: ['description', 'directives', 'operationTypes'],\n OperationTypeDefinition: ['type'],\n ScalarTypeDefinition: ['description', 'name', 'directives'],\n ObjectTypeDefinition: ['description', 'name', 'interfaces', 'directives', 'fields'],\n FieldDefinition: ['description', 'name', 'arguments', 'type', 'directives'],\n InputValueDefinition: ['description', 'name', 'type', 'defaultValue', 'directives'],\n InterfaceTypeDefinition: ['description', 'name', 'interfaces', 'directives', 'fields'],\n UnionTypeDefinition: ['description', 'name', 'directives', 'types'],\n EnumTypeDefinition: ['description', 'name', 'directives', 'values'],\n EnumValueDefinition: ['description', 'name', 'directives'],\n InputObjectTypeDefinition: ['description', 'name', 'directives', 'fields'],\n DirectiveDefinition: ['description', 'name', 'arguments', 'locations'],\n SchemaExtension: ['directives', 'operationTypes'],\n ScalarTypeExtension: ['name', 'directives'],\n ObjectTypeExtension: ['name', 'interfaces', 'directives', 'fields'],\n InterfaceTypeExtension: ['name', 'interfaces', 'directives', 'fields'],\n UnionTypeExtension: ['name', 'directives', 'types'],\n EnumTypeExtension: ['name', 'directives', 'values'],\n InputObjectTypeExtension: ['name', 'directives', 'fields']\n};\nvar BREAK = Object.freeze({});\n/**\n * visit() will walk through an AST using a depth-first traversal, calling\n * the visitor's enter function at each node in the traversal, and calling the\n * leave function after visiting that node and all of its child nodes.\n *\n * By returning different values from the enter and leave functions, the\n * behavior of the visitor can be altered, including skipping over a sub-tree of\n * the AST (by returning false), editing the AST by returning a value or null\n * to remove the value, or to stop the whole traversal by returning BREAK.\n *\n * When using visit() to edit an AST, the original AST will not be modified, and\n * a new version of the AST with the changes applied will be returned from the\n * visit function.\n *\n * const editedAST = visit(ast, {\n * enter(node, key, parent, path, ancestors) {\n * // @return\n * // undefined: no action\n * // false: skip visiting this node\n * // visitor.BREAK: stop visiting altogether\n * // null: delete this node\n * // any value: replace this node with the returned value\n * },\n * leave(node, key, parent, path, ancestors) {\n * // @return\n * // undefined: no action\n * // false: no action\n * // visitor.BREAK: stop visiting altogether\n * // null: delete this node\n * // any value: replace this node with the returned value\n * }\n * });\n *\n * Alternatively to providing enter() and leave() functions, a visitor can\n * instead provide functions named the same as the kinds of AST nodes, or\n * enter/leave visitors at a named key, leading to four permutations of the\n * visitor API:\n *\n * 1) Named visitors triggered when entering a node of a specific kind.\n *\n * visit(ast, {\n * Kind(node) {\n * // enter the \"Kind\" node\n * }\n * })\n *\n * 2) Named visitors that trigger upon entering and leaving a node of\n * a specific kind.\n *\n * visit(ast, {\n * Kind: {\n * enter(node) {\n * // enter the \"Kind\" node\n * }\n * leave(node) {\n * // leave the \"Kind\" node\n * }\n * }\n * })\n *\n * 3) Generic visitors that trigger upon entering and leaving any node.\n *\n * visit(ast, {\n * enter(node) {\n * // enter any node\n * },\n * leave(node) {\n * // leave any node\n * }\n * })\n *\n * 4) Parallel visitors for entering and leaving nodes of a specific kind.\n *\n * visit(ast, {\n * enter: {\n * Kind(node) {\n * // enter the \"Kind\" node\n * }\n * },\n * leave: {\n * Kind(node) {\n * // leave the \"Kind\" node\n * }\n * }\n * })\n */\n\nfunction visit(root, visitor) {\n var visitorKeys = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : QueryDocumentKeys;\n\n /* eslint-disable no-undef-init */\n var stack = undefined;\n var inArray = Array.isArray(root);\n var keys = [root];\n var index = -1;\n var edits = [];\n var node = undefined;\n var key = undefined;\n var parent = undefined;\n var path = [];\n var ancestors = [];\n var newRoot = root;\n /* eslint-enable no-undef-init */\n\n do {\n index++;\n var isLeaving = index === keys.length;\n var isEdited = isLeaving && edits.length !== 0;\n\n if (isLeaving) {\n key = ancestors.length === 0 ? undefined : path[path.length - 1];\n node = parent;\n parent = ancestors.pop();\n\n if (isEdited) {\n if (inArray) {\n node = node.slice();\n } else {\n var clone = {};\n\n for (var _i2 = 0, _Object$keys2 = Object.keys(node); _i2 < _Object$keys2.length; _i2++) {\n var k = _Object$keys2[_i2];\n clone[k] = node[k];\n }\n\n node = clone;\n }\n\n var editOffset = 0;\n\n for (var ii = 0; ii < edits.length; ii++) {\n var editKey = edits[ii][0];\n var editValue = edits[ii][1];\n\n if (inArray) {\n editKey -= editOffset;\n }\n\n if (inArray && editValue === null) {\n node.splice(editKey, 1);\n editOffset++;\n } else {\n node[editKey] = editValue;\n }\n }\n }\n\n index = stack.index;\n keys = stack.keys;\n edits = stack.edits;\n inArray = stack.inArray;\n stack = stack.prev;\n } else {\n key = parent ? inArray ? index : keys[index] : undefined;\n node = parent ? parent[key] : newRoot;\n\n if (node === null || node === undefined) {\n continue;\n }\n\n if (parent) {\n path.push(key);\n }\n }\n\n var result = void 0;\n\n if (!Array.isArray(node)) {\n if (!Object(_ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isNode\"])(node)) {\n throw new Error(\"Invalid AST Node: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(node), \".\"));\n }\n\n var visitFn = getVisitFn(visitor, node.kind, isLeaving);\n\n if (visitFn) {\n result = visitFn.call(visitor, node, key, parent, path, ancestors);\n\n if (result === BREAK) {\n break;\n }\n\n if (result === false) {\n if (!isLeaving) {\n path.pop();\n continue;\n }\n } else if (result !== undefined) {\n edits.push([key, result]);\n\n if (!isLeaving) {\n if (Object(_ast_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isNode\"])(result)) {\n node = result;\n } else {\n path.pop();\n continue;\n }\n }\n }\n }\n }\n\n if (result === undefined && isEdited) {\n edits.push([key, node]);\n }\n\n if (isLeaving) {\n path.pop();\n } else {\n var _visitorKeys$node$kin;\n\n stack = {\n inArray: inArray,\n index: index,\n keys: keys,\n edits: edits,\n prev: stack\n };\n inArray = Array.isArray(node);\n keys = inArray ? node : (_visitorKeys$node$kin = visitorKeys[node.kind]) !== null && _visitorKeys$node$kin !== void 0 ? _visitorKeys$node$kin : [];\n index = -1;\n edits = [];\n\n if (parent) {\n ancestors.push(parent);\n }\n\n parent = node;\n }\n } while (stack !== undefined);\n\n if (edits.length !== 0) {\n newRoot = edits[edits.length - 1][1];\n }\n\n return newRoot;\n}\n/**\n * Creates a new visitor instance which delegates to many visitors to run in\n * parallel. Each visitor will be visited for each node before moving on.\n *\n * If a prior visitor edits a node, no following visitors will see that node.\n */\n\nfunction visitInParallel(visitors) {\n var skipping = new Array(visitors.length);\n return {\n enter: function enter(node) {\n for (var i = 0; i < visitors.length; i++) {\n if (skipping[i] == null) {\n var fn = getVisitFn(visitors[i], node.kind,\n /* isLeaving */\n false);\n\n if (fn) {\n var result = fn.apply(visitors[i], arguments);\n\n if (result === false) {\n skipping[i] = node;\n } else if (result === BREAK) {\n skipping[i] = BREAK;\n } else if (result !== undefined) {\n return result;\n }\n }\n }\n }\n },\n leave: function leave(node) {\n for (var i = 0; i < visitors.length; i++) {\n if (skipping[i] == null) {\n var fn = getVisitFn(visitors[i], node.kind,\n /* isLeaving */\n true);\n\n if (fn) {\n var result = fn.apply(visitors[i], arguments);\n\n if (result === BREAK) {\n skipping[i] = BREAK;\n } else if (result !== undefined && result !== false) {\n return result;\n }\n }\n } else if (skipping[i] === node) {\n skipping[i] = null;\n }\n }\n }\n };\n}\n/**\n * Given a visitor instance, if it is leaving or not, and a node kind, return\n * the function the visitor runtime should call.\n */\n\nfunction getVisitFn(visitor, kind, isLeaving) {\n var kindVisitor = visitor[kind];\n\n if (kindVisitor) {\n if (!isLeaving && typeof kindVisitor === 'function') {\n // { Kind() {} }\n return kindVisitor;\n }\n\n var kindSpecificVisitor = isLeaving ? kindVisitor.leave : kindVisitor.enter;\n\n if (typeof kindSpecificVisitor === 'function') {\n // { Kind: { enter() {}, leave() {} } }\n return kindSpecificVisitor;\n }\n } else {\n var specificVisitor = isLeaving ? visitor.leave : visitor.enter;\n\n if (specificVisitor) {\n if (typeof specificVisitor === 'function') {\n // { enter() {}, leave() {} }\n return specificVisitor;\n }\n\n var specificKindVisitor = specificVisitor[kind];\n\n if (typeof specificKindVisitor === 'function') {\n // { enter: { Kind() {} }, leave: { Kind() {} } }\n return specificKindVisitor;\n }\n }\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/language/visitor.mjs?"); /***/ }), /***/ "./node_modules/graphql/polyfills/arrayFrom.mjs": /*!******************************************************!*\ !*** ./node_modules/graphql/polyfills/arrayFrom.mjs ***! \******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _symbols_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./symbols.mjs */ \"./node_modules/graphql/polyfills/symbols.mjs\");\n\n\n/* eslint-disable no-redeclare */\n// $FlowFixMe[name-already-bound]\nvar arrayFrom = Array.from || function (obj, mapFn, thisArg) {\n if (obj == null) {\n throw new TypeError('Array.from requires an array-like object - not null or undefined');\n } // Is Iterable?\n\n\n var iteratorMethod = obj[_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__[\"SYMBOL_ITERATOR\"]];\n\n if (typeof iteratorMethod === 'function') {\n var iterator = iteratorMethod.call(obj);\n var result = [];\n var step;\n\n for (var i = 0; !(step = iterator.next()).done; ++i) {\n result.push(mapFn.call(thisArg, step.value, i)); // Infinite Iterators could cause forEach to run forever.\n // After a very large number of iterations, produce an error.\n // istanbul ignore if (Too big to actually test)\n\n if (i > 9999999) {\n throw new TypeError('Near-infinite iteration.');\n }\n }\n\n return result;\n } // Is Array like?\n\n\n var length = obj.length;\n\n if (typeof length === 'number' && length >= 0 && length % 1 === 0) {\n var _result = [];\n\n for (var _i = 0; _i < length; ++_i) {\n if (Object.prototype.hasOwnProperty.call(obj, _i)) {\n _result.push(mapFn.call(thisArg, obj[_i], _i));\n }\n }\n\n return _result;\n }\n\n return [];\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (arrayFrom);\n\n\n//# sourceURL=webpack:///./node_modules/graphql/polyfills/arrayFrom.mjs?"); /***/ }), /***/ "./node_modules/graphql/polyfills/find.mjs": /*!*************************************************!*\ !*** ./node_modules/graphql/polyfills/find.mjs ***! \*************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* eslint-disable no-redeclare */\n// $FlowFixMe[name-already-bound]\nvar find = Array.prototype.find ? function (list, predicate) {\n return Array.prototype.find.call(list, predicate);\n} : function (list, predicate) {\n for (var _i2 = 0; _i2 < list.length; _i2++) {\n var value = list[_i2];\n\n if (predicate(value)) {\n return value;\n }\n }\n};\n/* harmony default export */ __webpack_exports__[\"default\"] = (find);\n\n\n//# sourceURL=webpack:///./node_modules/graphql/polyfills/find.mjs?"); /***/ }), /***/ "./node_modules/graphql/polyfills/isFinite.mjs": /*!*****************************************************!*\ !*** ./node_modules/graphql/polyfills/isFinite.mjs ***! \*****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* eslint-disable no-redeclare */\n// $FlowFixMe[name-already-bound] workaround for: https://github.com/facebook/flow/issues/4441\nvar isFinitePolyfill = Number.isFinite || function (value) {\n return typeof value === 'number' && isFinite(value);\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (isFinitePolyfill);\n\n\n//# sourceURL=webpack:///./node_modules/graphql/polyfills/isFinite.mjs?"); /***/ }), /***/ "./node_modules/graphql/polyfills/isInteger.mjs": /*!******************************************************!*\ !*** ./node_modules/graphql/polyfills/isInteger.mjs ***! \******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* eslint-disable no-redeclare */\n// $FlowFixMe[name-already-bound] workaround for: https://github.com/facebook/flow/issues/4441\nvar isInteger = Number.isInteger || function (value) {\n return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (isInteger);\n\n\n//# sourceURL=webpack:///./node_modules/graphql/polyfills/isInteger.mjs?"); /***/ }), /***/ "./node_modules/graphql/polyfills/objectEntries.mjs": /*!**********************************************************!*\ !*** ./node_modules/graphql/polyfills/objectEntries.mjs ***! \**********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* eslint-disable no-redeclare */\n// $FlowFixMe[name-already-bound] workaround for: https://github.com/facebook/flow/issues/4441\nvar objectEntries = Object.entries || function (obj) {\n return Object.keys(obj).map(function (key) {\n return [key, obj[key]];\n });\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (objectEntries);\n\n\n//# sourceURL=webpack:///./node_modules/graphql/polyfills/objectEntries.mjs?"); /***/ }), /***/ "./node_modules/graphql/polyfills/objectValues.mjs": /*!*********************************************************!*\ !*** ./node_modules/graphql/polyfills/objectValues.mjs ***! \*********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* eslint-disable no-redeclare */\n// $FlowFixMe[name-already-bound] workaround for: https://github.com/facebook/flow/issues/4441\nvar objectValues = Object.values || function (obj) {\n return Object.keys(obj).map(function (key) {\n return obj[key];\n });\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (objectValues);\n\n\n//# sourceURL=webpack:///./node_modules/graphql/polyfills/objectValues.mjs?"); /***/ }), /***/ "./node_modules/graphql/polyfills/symbols.mjs": /*!****************************************************!*\ !*** ./node_modules/graphql/polyfills/symbols.mjs ***! \****************************************************/ /*! exports provided: SYMBOL_ITERATOR, SYMBOL_ASYNC_ITERATOR, SYMBOL_TO_STRING_TAG */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SYMBOL_ITERATOR\", function() { return SYMBOL_ITERATOR; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SYMBOL_ASYNC_ITERATOR\", function() { return SYMBOL_ASYNC_ITERATOR; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SYMBOL_TO_STRING_TAG\", function() { return SYMBOL_TO_STRING_TAG; });\n// In ES2015 (or a polyfilled) environment, this will be Symbol.iterator\n// istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\nvar SYMBOL_ITERATOR = typeof Symbol === 'function' && Symbol.iterator != null ? Symbol.iterator : '@@iterator'; // In ES2017 (or a polyfilled) environment, this will be Symbol.asyncIterator\n// istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\n\nvar SYMBOL_ASYNC_ITERATOR = typeof Symbol === 'function' && Symbol.asyncIterator != null ? Symbol.asyncIterator : '@@asyncIterator'; // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')\n\nvar SYMBOL_TO_STRING_TAG = typeof Symbol === 'function' && Symbol.toStringTag != null ? Symbol.toStringTag : '@@toStringTag';\n\n\n//# sourceURL=webpack:///./node_modules/graphql/polyfills/symbols.mjs?"); /***/ }), /***/ "./node_modules/graphql/subscription/index.mjs": /*!*****************************************************!*\ !*** ./node_modules/graphql/subscription/index.mjs ***! \*****************************************************/ /*! exports provided: subscribe, createSourceEventStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _subscribe_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./subscribe.mjs */ \"./node_modules/graphql/subscription/subscribe.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"subscribe\", function() { return _subscribe_mjs__WEBPACK_IMPORTED_MODULE_0__[\"subscribe\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createSourceEventStream\", function() { return _subscribe_mjs__WEBPACK_IMPORTED_MODULE_0__[\"createSourceEventStream\"]; });\n\n\n\n\n//# sourceURL=webpack:///./node_modules/graphql/subscription/index.mjs?"); /***/ }), /***/ "./node_modules/graphql/subscription/mapAsyncIterator.mjs": /*!****************************************************************!*\ !*** ./node_modules/graphql/subscription/mapAsyncIterator.mjs ***! \****************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return mapAsyncIterator; });\n/* harmony import */ var _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/symbols.mjs */ \"./node_modules/graphql/polyfills/symbols.mjs\");\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n\n\n/**\n * Given an AsyncIterable and a callback function, return an AsyncIterator\n * which produces values mapped via calling the callback function.\n */\nfunction mapAsyncIterator(iterable, callback, rejectCallback) {\n // $FlowFixMe[prop-missing]\n var iteratorMethod = iterable[_polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__[\"SYMBOL_ASYNC_ITERATOR\"]];\n var iterator = iteratorMethod.call(iterable);\n var $return;\n var abruptClose;\n\n if (typeof iterator.return === 'function') {\n $return = iterator.return;\n\n abruptClose = function abruptClose(error) {\n var rethrow = function rethrow() {\n return Promise.reject(error);\n };\n\n return $return.call(iterator).then(rethrow, rethrow);\n };\n }\n\n function mapResult(result) {\n return result.done ? result : asyncMapValue(result.value, callback).then(iteratorResult, abruptClose);\n }\n\n var mapReject;\n\n if (rejectCallback) {\n // Capture rejectCallback to ensure it cannot be null.\n var reject = rejectCallback;\n\n mapReject = function mapReject(error) {\n return asyncMapValue(error, reject).then(iteratorResult, abruptClose);\n };\n }\n /* TODO: Flow doesn't support symbols as keys:\n https://github.com/facebook/flow/issues/3258 */\n\n\n return _defineProperty({\n next: function next() {\n return iterator.next().then(mapResult, mapReject);\n },\n return: function _return() {\n return $return ? $return.call(iterator).then(mapResult, mapReject) : Promise.resolve({\n value: undefined,\n done: true\n });\n },\n throw: function _throw(error) {\n if (typeof iterator.throw === 'function') {\n return iterator.throw(error).then(mapResult, mapReject);\n }\n\n return Promise.reject(error).catch(abruptClose);\n }\n }, _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_0__[\"SYMBOL_ASYNC_ITERATOR\"], function () {\n return this;\n });\n}\n\nfunction asyncMapValue(value, callback) {\n return new Promise(function (resolve) {\n return resolve(callback(value));\n });\n}\n\nfunction iteratorResult(value) {\n return {\n value: value,\n done: false\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/subscription/mapAsyncIterator.mjs?"); /***/ }), /***/ "./node_modules/graphql/subscription/subscribe.mjs": /*!*********************************************************!*\ !*** ./node_modules/graphql/subscription/subscribe.mjs ***! \*********************************************************/ /*! exports provided: subscribe, createSourceEventStream */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"subscribe\", function() { return subscribe; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createSourceEventStream\", function() { return createSourceEventStream; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_isAsyncIterable_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/isAsyncIterable.mjs */ \"./node_modules/graphql/jsutils/isAsyncIterable.mjs\");\n/* harmony import */ var _jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/Path.mjs */ \"./node_modules/graphql/jsutils/Path.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../error/locatedError.mjs */ \"./node_modules/graphql/error/locatedError.mjs\");\n/* harmony import */ var _execution_values_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../execution/values.mjs */ \"./node_modules/graphql/execution/values.mjs\");\n/* harmony import */ var _execution_execute_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../execution/execute.mjs */ \"./node_modules/graphql/execution/execute.mjs\");\n/* harmony import */ var _utilities_getOperationRootType_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utilities/getOperationRootType.mjs */ \"./node_modules/graphql/utilities/getOperationRootType.mjs\");\n/* harmony import */ var _mapAsyncIterator_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./mapAsyncIterator.mjs */ \"./node_modules/graphql/subscription/mapAsyncIterator.mjs\");\n\n\n\n\n\n\n\n\n\nfunction subscribe(argsOrSchema, document, rootValue, contextValue, variableValues, operationName, fieldResolver, subscribeFieldResolver) {\n /* eslint-enable no-redeclare */\n // Extract arguments from object args if provided.\n return arguments.length === 1 ? subscribeImpl(argsOrSchema) : subscribeImpl({\n schema: argsOrSchema,\n document: document,\n rootValue: rootValue,\n contextValue: contextValue,\n variableValues: variableValues,\n operationName: operationName,\n fieldResolver: fieldResolver,\n subscribeFieldResolver: subscribeFieldResolver\n });\n}\n/**\n * This function checks if the error is a GraphQLError. If it is, report it as\n * an ExecutionResult, containing only errors and no data. Otherwise treat the\n * error as a system-class error and re-throw it.\n */\n\nfunction reportGraphQLError(error) {\n if (error instanceof _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLError\"]) {\n return {\n errors: [error]\n };\n }\n\n throw error;\n}\n\nfunction subscribeImpl(args) {\n var schema = args.schema,\n document = args.document,\n rootValue = args.rootValue,\n contextValue = args.contextValue,\n variableValues = args.variableValues,\n operationName = args.operationName,\n fieldResolver = args.fieldResolver,\n subscribeFieldResolver = args.subscribeFieldResolver;\n var sourcePromise = createSourceEventStream(schema, document, rootValue, contextValue, variableValues, operationName, subscribeFieldResolver); // For each payload yielded from a subscription, map it over the normal\n // GraphQL `execute` function, with `payload` as the rootValue.\n // This implements the \"MapSourceToResponseEvent\" algorithm described in\n // the GraphQL specification. The `execute` function provides the\n // \"ExecuteSubscriptionEvent\" algorithm, as it is nearly identical to the\n // \"ExecuteQuery\" algorithm, for which `execute` is also used.\n\n var mapSourceToResponse = function mapSourceToResponse(payload) {\n return Object(_execution_execute_mjs__WEBPACK_IMPORTED_MODULE_6__[\"execute\"])({\n schema: schema,\n document: document,\n rootValue: payload,\n contextValue: contextValue,\n variableValues: variableValues,\n operationName: operationName,\n fieldResolver: fieldResolver\n });\n }; // Resolve the Source Stream, then map every source value to a\n // ExecutionResult value as described above.\n\n\n return sourcePromise.then(function (resultOrStream) {\n return (// Note: Flow can't refine isAsyncIterable, so explicit casts are used.\n Object(_jsutils_isAsyncIterable_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(resultOrStream) ? Object(_mapAsyncIterator_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(resultOrStream, mapSourceToResponse, reportGraphQLError) : resultOrStream\n );\n });\n}\n/**\n * Implements the \"CreateSourceEventStream\" algorithm described in the\n * GraphQL specification, resolving the subscription source event stream.\n *\n * Returns a Promise which resolves to either an AsyncIterable (if successful)\n * or an ExecutionResult (error). The promise will be rejected if the schema or\n * other arguments to this function are invalid, or if the resolved event stream\n * is not an async iterable.\n *\n * If the client-provided arguments to this function do not result in a\n * compliant subscription, a GraphQL Response (ExecutionResult) with\n * descriptive errors and no data will be returned.\n *\n * If the the source stream could not be created due to faulty subscription\n * resolver logic or underlying systems, the promise will resolve to a single\n * ExecutionResult containing `errors` and no `data`.\n *\n * If the operation succeeded, the promise resolves to the AsyncIterable for the\n * event stream returned by the resolver.\n *\n * A Source Event Stream represents a sequence of events, each of which triggers\n * a GraphQL execution for that event.\n *\n * This may be useful when hosting the stateful subscription service in a\n * different process or machine than the stateless GraphQL execution engine,\n * or otherwise separating these two steps. For more on this, see the\n * \"Supporting Subscriptions at Scale\" information in the GraphQL specification.\n */\n\n\nfunction createSourceEventStream(schema, document, rootValue, contextValue, variableValues, operationName, fieldResolver) {\n // If arguments are missing or incorrectly typed, this is an internal\n // developer mistake which should throw an early error.\n Object(_execution_execute_mjs__WEBPACK_IMPORTED_MODULE_6__[\"assertValidExecutionArguments\"])(schema, document, variableValues);\n return new Promise(function (resolve) {\n // If a valid context cannot be created due to incorrect arguments,\n // this will throw an error.\n var exeContext = Object(_execution_execute_mjs__WEBPACK_IMPORTED_MODULE_6__[\"buildExecutionContext\"])(schema, document, rootValue, contextValue, variableValues, operationName, fieldResolver);\n resolve( // Return early errors if execution context failed.\n Array.isArray(exeContext) ? {\n errors: exeContext\n } : executeSubscription(exeContext));\n }).catch(reportGraphQLError);\n}\n\nfunction executeSubscription(exeContext) {\n var schema = exeContext.schema,\n operation = exeContext.operation,\n variableValues = exeContext.variableValues,\n rootValue = exeContext.rootValue;\n var type = Object(_utilities_getOperationRootType_mjs__WEBPACK_IMPORTED_MODULE_7__[\"getOperationRootType\"])(schema, operation);\n var fields = Object(_execution_execute_mjs__WEBPACK_IMPORTED_MODULE_6__[\"collectFields\"])(exeContext, type, operation.selectionSet, Object.create(null), Object.create(null));\n var responseNames = Object.keys(fields);\n var responseName = responseNames[0];\n var fieldNodes = fields[responseName];\n var fieldNode = fieldNodes[0];\n var fieldName = fieldNode.name.value;\n var fieldDef = Object(_execution_execute_mjs__WEBPACK_IMPORTED_MODULE_6__[\"getFieldDef\"])(schema, type, fieldName);\n\n if (!fieldDef) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLError\"](\"The subscription field \\\"\".concat(fieldName, \"\\\" is not defined.\"), fieldNodes);\n }\n\n var path = Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_2__[\"addPath\"])(undefined, responseName, type.name);\n var info = Object(_execution_execute_mjs__WEBPACK_IMPORTED_MODULE_6__[\"buildResolveInfo\"])(exeContext, fieldDef, fieldNodes, type, path); // Coerce to Promise for easier error handling and consistent return type.\n\n return new Promise(function (resolveResult) {\n var _fieldDef$subscribe;\n\n // Implements the \"ResolveFieldEventStream\" algorithm from GraphQL specification.\n // It differs from \"ResolveFieldValue\" due to providing a different `resolveFn`.\n // Build a JS object of arguments from the field.arguments AST, using the\n // variables scope to fulfill any variable references.\n var args = Object(_execution_values_mjs__WEBPACK_IMPORTED_MODULE_5__[\"getArgumentValues\"])(fieldDef, fieldNodes[0], variableValues); // The resolve function's optional third argument is a context value that\n // is provided to every resolve function within an execution. It is commonly\n // used to represent an authenticated user, or request-specific caches.\n\n var contextValue = exeContext.contextValue; // Call the `subscribe()` resolver or the default resolver to produce an\n // AsyncIterable yielding raw payloads.\n\n var resolveFn = (_fieldDef$subscribe = fieldDef.subscribe) !== null && _fieldDef$subscribe !== void 0 ? _fieldDef$subscribe : exeContext.fieldResolver;\n resolveResult(resolveFn(rootValue, args, contextValue, info));\n }).then(function (eventStream) {\n if (eventStream instanceof Error) {\n throw Object(_error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"locatedError\"])(eventStream, fieldNodes, Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_2__[\"pathToArray\"])(path));\n } // Assert field returned an event stream, otherwise yield an error.\n\n\n if (!Object(_jsutils_isAsyncIterable_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(eventStream)) {\n throw new Error('Subscription field must return Async Iterable. ' + \"Received: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(eventStream), \".\"));\n }\n\n return eventStream;\n }, function (error) {\n throw Object(_error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"locatedError\"])(error, fieldNodes, Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_2__[\"pathToArray\"])(path));\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/subscription/subscribe.mjs?"); /***/ }), /***/ "./node_modules/graphql/type/definition.mjs": /*!**************************************************!*\ !*** ./node_modules/graphql/type/definition.mjs ***! \**************************************************/ /*! exports provided: isType, assertType, isScalarType, assertScalarType, isObjectType, assertObjectType, isInterfaceType, assertInterfaceType, isUnionType, assertUnionType, isEnumType, assertEnumType, isInputObjectType, assertInputObjectType, isListType, assertListType, isNonNullType, assertNonNullType, isInputType, assertInputType, isOutputType, assertOutputType, isLeafType, assertLeafType, isCompositeType, assertCompositeType, isAbstractType, assertAbstractType, GraphQLList, GraphQLNonNull, isWrappingType, assertWrappingType, isNullableType, assertNullableType, getNullableType, isNamedType, assertNamedType, getNamedType, GraphQLScalarType, GraphQLObjectType, argsToArgsConfig, isRequiredArgument, GraphQLInterfaceType, GraphQLUnionType, GraphQLEnumType, GraphQLInputObjectType, isRequiredInputField */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isType\", function() { return isType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertType\", function() { return assertType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isScalarType\", function() { return isScalarType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertScalarType\", function() { return assertScalarType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isObjectType\", function() { return isObjectType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertObjectType\", function() { return assertObjectType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isInterfaceType\", function() { return isInterfaceType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertInterfaceType\", function() { return assertInterfaceType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isUnionType\", function() { return isUnionType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertUnionType\", function() { return assertUnionType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isEnumType\", function() { return isEnumType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertEnumType\", function() { return assertEnumType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isInputObjectType\", function() { return isInputObjectType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertInputObjectType\", function() { return assertInputObjectType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isListType\", function() { return isListType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertListType\", function() { return assertListType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isNonNullType\", function() { return isNonNullType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertNonNullType\", function() { return assertNonNullType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isInputType\", function() { return isInputType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertInputType\", function() { return assertInputType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isOutputType\", function() { return isOutputType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertOutputType\", function() { return assertOutputType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isLeafType\", function() { return isLeafType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertLeafType\", function() { return assertLeafType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isCompositeType\", function() { return isCompositeType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertCompositeType\", function() { return assertCompositeType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAbstractType\", function() { return isAbstractType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertAbstractType\", function() { return assertAbstractType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLList\", function() { return GraphQLList; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLNonNull\", function() { return GraphQLNonNull; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isWrappingType\", function() { return isWrappingType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertWrappingType\", function() { return assertWrappingType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isNullableType\", function() { return isNullableType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertNullableType\", function() { return assertNullableType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getNullableType\", function() { return getNullableType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isNamedType\", function() { return isNamedType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertNamedType\", function() { return assertNamedType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getNamedType\", function() { return getNamedType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLScalarType\", function() { return GraphQLScalarType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLObjectType\", function() { return GraphQLObjectType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"argsToArgsConfig\", function() { return argsToArgsConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isRequiredArgument\", function() { return isRequiredArgument; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLInterfaceType\", function() { return GraphQLInterfaceType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLUnionType\", function() { return GraphQLUnionType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLEnumType\", function() { return GraphQLEnumType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLInputObjectType\", function() { return GraphQLInputObjectType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isRequiredInputField\", function() { return isRequiredInputField; });\n/* harmony import */ var _polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectEntries.mjs */ \"./node_modules/graphql/polyfills/objectEntries.mjs\");\n/* harmony import */ var _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../polyfills/symbols.mjs */ \"./node_modules/graphql/polyfills/symbols.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/keyMap.mjs */ \"./node_modules/graphql/jsutils/keyMap.mjs\");\n/* harmony import */ var _jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/mapValue.mjs */ \"./node_modules/graphql/jsutils/mapValue.mjs\");\n/* harmony import */ var _jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../jsutils/toObjMap.mjs */ \"./node_modules/graphql/jsutils/toObjMap.mjs\");\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../jsutils/keyValMap.mjs */ \"./node_modules/graphql/jsutils/keyValMap.mjs\");\n/* harmony import */ var _jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../jsutils/instanceOf.mjs */ \"./node_modules/graphql/jsutils/instanceOf.mjs\");\n/* harmony import */ var _jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../jsutils/didYouMean.mjs */ \"./node_modules/graphql/jsutils/didYouMean.mjs\");\n/* harmony import */ var _jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../jsutils/isObjectLike.mjs */ \"./node_modules/graphql/jsutils/isObjectLike.mjs\");\n/* harmony import */ var _jsutils_identityFunc_mjs__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../jsutils/identityFunc.mjs */ \"./node_modules/graphql/jsutils/identityFunc.mjs\");\n/* harmony import */ var _jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../jsutils/defineInspect.mjs */ \"./node_modules/graphql/jsutils/defineInspect.mjs\");\n/* harmony import */ var _jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../jsutils/suggestionList.mjs */ \"./node_modules/graphql/jsutils/suggestionList.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _utilities_valueFromASTUntyped_mjs__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../utilities/valueFromASTUntyped.mjs */ \"./node_modules/graphql/utilities/valueFromASTUntyped.mjs\");\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfunction isType(type) {\n return isScalarType(type) || isObjectType(type) || isInterfaceType(type) || isUnionType(type) || isEnumType(type) || isInputObjectType(type) || isListType(type) || isNonNullType(type);\n}\nfunction assertType(type) {\n if (!isType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL type.\"));\n }\n\n return type;\n}\n/**\n * There are predicates for each kind of GraphQL type.\n */\n\n// eslint-disable-next-line no-redeclare\nfunction isScalarType(type) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(type, GraphQLScalarType);\n}\nfunction assertScalarType(type) {\n if (!isScalarType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL Scalar type.\"));\n }\n\n return type;\n}\n// eslint-disable-next-line no-redeclare\nfunction isObjectType(type) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(type, GraphQLObjectType);\n}\nfunction assertObjectType(type) {\n if (!isObjectType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL Object type.\"));\n }\n\n return type;\n}\n// eslint-disable-next-line no-redeclare\nfunction isInterfaceType(type) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(type, GraphQLInterfaceType);\n}\nfunction assertInterfaceType(type) {\n if (!isInterfaceType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL Interface type.\"));\n }\n\n return type;\n}\n// eslint-disable-next-line no-redeclare\nfunction isUnionType(type) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(type, GraphQLUnionType);\n}\nfunction assertUnionType(type) {\n if (!isUnionType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL Union type.\"));\n }\n\n return type;\n}\n// eslint-disable-next-line no-redeclare\nfunction isEnumType(type) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(type, GraphQLEnumType);\n}\nfunction assertEnumType(type) {\n if (!isEnumType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL Enum type.\"));\n }\n\n return type;\n}\n// eslint-disable-next-line no-redeclare\nfunction isInputObjectType(type) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(type, GraphQLInputObjectType);\n}\nfunction assertInputObjectType(type) {\n if (!isInputObjectType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL Input Object type.\"));\n }\n\n return type;\n}\n// eslint-disable-next-line no-redeclare\nfunction isListType(type) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(type, GraphQLList);\n}\nfunction assertListType(type) {\n if (!isListType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL List type.\"));\n }\n\n return type;\n}\n// eslint-disable-next-line no-redeclare\nfunction isNonNullType(type) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(type, GraphQLNonNull);\n}\nfunction assertNonNullType(type) {\n if (!isNonNullType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL Non-Null type.\"));\n }\n\n return type;\n}\n/**\n * These types may be used as input types for arguments and directives.\n */\n\nfunction isInputType(type) {\n return isScalarType(type) || isEnumType(type) || isInputObjectType(type) || isWrappingType(type) && isInputType(type.ofType);\n}\nfunction assertInputType(type) {\n if (!isInputType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL input type.\"));\n }\n\n return type;\n}\n/**\n * These types may be used as output types as the result of fields.\n */\n\nfunction isOutputType(type) {\n return isScalarType(type) || isObjectType(type) || isInterfaceType(type) || isUnionType(type) || isEnumType(type) || isWrappingType(type) && isOutputType(type.ofType);\n}\nfunction assertOutputType(type) {\n if (!isOutputType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL output type.\"));\n }\n\n return type;\n}\n/**\n * These types may describe types which may be leaf values.\n */\n\nfunction isLeafType(type) {\n return isScalarType(type) || isEnumType(type);\n}\nfunction assertLeafType(type) {\n if (!isLeafType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL leaf type.\"));\n }\n\n return type;\n}\n/**\n * These types may describe the parent context of a selection set.\n */\n\nfunction isCompositeType(type) {\n return isObjectType(type) || isInterfaceType(type) || isUnionType(type);\n}\nfunction assertCompositeType(type) {\n if (!isCompositeType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL composite type.\"));\n }\n\n return type;\n}\n/**\n * These types may describe the parent context of a selection set.\n */\n\nfunction isAbstractType(type) {\n return isInterfaceType(type) || isUnionType(type);\n}\nfunction assertAbstractType(type) {\n if (!isAbstractType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL abstract type.\"));\n }\n\n return type;\n}\n/**\n * List Type Wrapper\n *\n * A list is a wrapping type which points to another type.\n * Lists are often created within the context of defining the fields of\n * an object type.\n *\n * Example:\n *\n * const PersonType = new GraphQLObjectType({\n * name: 'Person',\n * fields: () => ({\n * parents: { type: new GraphQLList(PersonType) },\n * children: { type: new GraphQLList(PersonType) },\n * })\n * })\n *\n */\n// FIXME: workaround to fix issue with Babel parser\n\n/* ::\ndeclare class GraphQLList<+T: GraphQLType> {\n +ofType: T;\n static (ofType: T): GraphQLList;\n // Note: constructors cannot be used for covariant types. Drop the \"new\".\n constructor(ofType: GraphQLType): void;\n}\n*/\n\nfunction GraphQLList(ofType) {\n // istanbul ignore else (to be removed in v16.0.0)\n if (this instanceof GraphQLList) {\n this.ofType = assertType(ofType);\n } else {\n return new GraphQLList(ofType);\n }\n} // Need to cast through any to alter the prototype.\n\nGraphQLList.prototype.toString = function toString() {\n return '[' + String(this.ofType) + ']';\n};\n\nGraphQLList.prototype.toJSON = function toJSON() {\n return this.toString();\n};\n\nObject.defineProperty(GraphQLList.prototype, _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"], {\n get: function get() {\n return 'GraphQLList';\n }\n}); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_12__[\"default\"])(GraphQLList);\n/**\n * Non-Null Type Wrapper\n *\n * A non-null is a wrapping type which points to another type.\n * Non-null types enforce that their values are never null and can ensure\n * an error is raised if this ever occurs during a request. It is useful for\n * fields which you can make a strong guarantee on non-nullability, for example\n * usually the id field of a database row will never be null.\n *\n * Example:\n *\n * const RowType = new GraphQLObjectType({\n * name: 'Row',\n * fields: () => ({\n * id: { type: new GraphQLNonNull(GraphQLString) },\n * })\n * })\n *\n * Note: the enforcement of non-nullability occurs within the executor.\n */\n// FIXME: workaround to fix issue with Babel parser\n\n/* ::\ndeclare class GraphQLNonNull<+T: GraphQLNullableType> {\n +ofType: T;\n static (ofType: T): GraphQLNonNull;\n // Note: constructors cannot be used for covariant types. Drop the \"new\".\n constructor(ofType: GraphQLType): void;\n}\n*/\n\nfunction GraphQLNonNull(ofType) {\n // istanbul ignore else (to be removed in v16.0.0)\n if (this instanceof GraphQLNonNull) {\n this.ofType = assertNullableType(ofType);\n } else {\n return new GraphQLNonNull(ofType);\n }\n} // Need to cast through any to alter the prototype.\n\nGraphQLNonNull.prototype.toString = function toString() {\n return String(this.ofType) + '!';\n};\n\nGraphQLNonNull.prototype.toJSON = function toJSON() {\n return this.toString();\n};\n\nObject.defineProperty(GraphQLNonNull.prototype, _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"], {\n get: function get() {\n return 'GraphQLNonNull';\n }\n}); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_12__[\"default\"])(GraphQLNonNull);\n/**\n * These types wrap and modify other types\n */\n\nfunction isWrappingType(type) {\n return isListType(type) || isNonNullType(type);\n}\nfunction assertWrappingType(type) {\n if (!isWrappingType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL wrapping type.\"));\n }\n\n return type;\n}\n/**\n * These types can all accept null as a value.\n */\n\nfunction isNullableType(type) {\n return isType(type) && !isNonNullType(type);\n}\nfunction assertNullableType(type) {\n if (!isNullableType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL nullable type.\"));\n }\n\n return type;\n}\n/* eslint-disable no-redeclare */\n\nfunction getNullableType(type) {\n /* eslint-enable no-redeclare */\n if (type) {\n return isNonNullType(type) ? type.ofType : type;\n }\n}\n/**\n * These named types do not include modifiers like List or NonNull.\n */\n\nfunction isNamedType(type) {\n return isScalarType(type) || isObjectType(type) || isInterfaceType(type) || isUnionType(type) || isEnumType(type) || isInputObjectType(type);\n}\nfunction assertNamedType(type) {\n if (!isNamedType(type)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" to be a GraphQL named type.\"));\n }\n\n return type;\n}\n/* eslint-disable no-redeclare */\n\nfunction getNamedType(type) {\n /* eslint-enable no-redeclare */\n if (type) {\n var unwrappedType = type;\n\n while (isWrappingType(unwrappedType)) {\n unwrappedType = unwrappedType.ofType;\n }\n\n return unwrappedType;\n }\n}\n/**\n * Used while defining GraphQL types to allow for circular references in\n * otherwise immutable type definitions.\n */\n\nfunction resolveThunk(thunk) {\n // $FlowFixMe[incompatible-use]\n return typeof thunk === 'function' ? thunk() : thunk;\n}\n\nfunction undefineIfEmpty(arr) {\n return arr && arr.length > 0 ? arr : undefined;\n}\n/**\n * Scalar Type Definition\n *\n * The leaf values of any request and input values to arguments are\n * Scalars (or Enums) and are defined with a name and a series of functions\n * used to parse input from ast or variables and to ensure validity.\n *\n * If a type's serialize function does not return a value (i.e. it returns\n * `undefined`) then an error will be raised and a `null` value will be returned\n * in the response. If the serialize function returns `null`, then no error will\n * be included in the response.\n *\n * Example:\n *\n * const OddType = new GraphQLScalarType({\n * name: 'Odd',\n * serialize(value) {\n * if (value % 2 === 1) {\n * return value;\n * }\n * }\n * });\n *\n */\n\n\nvar GraphQLScalarType = /*#__PURE__*/function () {\n function GraphQLScalarType(config) {\n var _config$parseValue, _config$serialize, _config$parseLiteral;\n\n var parseValue = (_config$parseValue = config.parseValue) !== null && _config$parseValue !== void 0 ? _config$parseValue : _jsutils_identityFunc_mjs__WEBPACK_IMPORTED_MODULE_11__[\"default\"];\n this.name = config.name;\n this.description = config.description;\n this.specifiedByUrl = config.specifiedByUrl;\n this.serialize = (_config$serialize = config.serialize) !== null && _config$serialize !== void 0 ? _config$serialize : _jsutils_identityFunc_mjs__WEBPACK_IMPORTED_MODULE_11__[\"default\"];\n this.parseValue = parseValue;\n this.parseLiteral = (_config$parseLiteral = config.parseLiteral) !== null && _config$parseLiteral !== void 0 ? _config$parseLiteral : function (node, variables) {\n return parseValue(Object(_utilities_valueFromASTUntyped_mjs__WEBPACK_IMPORTED_MODULE_17__[\"valueFromASTUntyped\"])(node, variables));\n };\n this.extensions = config.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes = undefineIfEmpty(config.extensionASTNodes);\n typeof config.name === 'string' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, 'Must provide name.');\n config.specifiedByUrl == null || typeof config.specifiedByUrl === 'string' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(this.name, \" must provide \\\"specifiedByUrl\\\" as a string, \") + \"but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(config.specifiedByUrl), \".\"));\n config.serialize == null || typeof config.serialize === 'function' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(this.name, \" must provide \\\"serialize\\\" function. If this custom Scalar is also used as an input type, ensure \\\"parseValue\\\" and \\\"parseLiteral\\\" functions are also provided.\"));\n\n if (config.parseLiteral) {\n typeof config.parseValue === 'function' && typeof config.parseLiteral === 'function' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(this.name, \" must provide both \\\"parseValue\\\" and \\\"parseLiteral\\\" functions.\"));\n }\n }\n\n var _proto = GraphQLScalarType.prototype;\n\n _proto.toConfig = function toConfig() {\n var _this$extensionASTNod;\n\n return {\n name: this.name,\n description: this.description,\n specifiedByUrl: this.specifiedByUrl,\n serialize: this.serialize,\n parseValue: this.parseValue,\n parseLiteral: this.parseLiteral,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: (_this$extensionASTNod = this.extensionASTNodes) !== null && _this$extensionASTNod !== void 0 ? _this$extensionASTNod : []\n };\n };\n\n _proto.toString = function toString() {\n return this.name;\n };\n\n _proto.toJSON = function toJSON() {\n return this.toString();\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n ;\n\n _createClass(GraphQLScalarType, [{\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'GraphQLScalarType';\n }\n }]);\n\n return GraphQLScalarType;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_12__[\"default\"])(GraphQLScalarType);\n\n/**\n * Object Type Definition\n *\n * Almost all of the GraphQL types you define will be object types. Object types\n * have a name, but most importantly describe their fields.\n *\n * Example:\n *\n * const AddressType = new GraphQLObjectType({\n * name: 'Address',\n * fields: {\n * street: { type: GraphQLString },\n * number: { type: GraphQLInt },\n * formatted: {\n * type: GraphQLString,\n * resolve(obj) {\n * return obj.number + ' ' + obj.street\n * }\n * }\n * }\n * });\n *\n * When two types need to refer to each other, or a type needs to refer to\n * itself in a field, you can use a function expression (aka a closure or a\n * thunk) to supply the fields lazily.\n *\n * Example:\n *\n * const PersonType = new GraphQLObjectType({\n * name: 'Person',\n * fields: () => ({\n * name: { type: GraphQLString },\n * bestFriend: { type: PersonType },\n * })\n * });\n *\n */\nvar GraphQLObjectType = /*#__PURE__*/function () {\n function GraphQLObjectType(config) {\n this.name = config.name;\n this.description = config.description;\n this.isTypeOf = config.isTypeOf;\n this.extensions = config.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes = undefineIfEmpty(config.extensionASTNodes);\n this._fields = defineFieldMap.bind(undefined, config);\n this._interfaces = defineInterfaces.bind(undefined, config);\n typeof config.name === 'string' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, 'Must provide name.');\n config.isTypeOf == null || typeof config.isTypeOf === 'function' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(this.name, \" must provide \\\"isTypeOf\\\" as a function, \") + \"but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(config.isTypeOf), \".\"));\n }\n\n var _proto2 = GraphQLObjectType.prototype;\n\n _proto2.getFields = function getFields() {\n if (typeof this._fields === 'function') {\n this._fields = this._fields();\n }\n\n return this._fields;\n };\n\n _proto2.getInterfaces = function getInterfaces() {\n if (typeof this._interfaces === 'function') {\n this._interfaces = this._interfaces();\n }\n\n return this._interfaces;\n };\n\n _proto2.toConfig = function toConfig() {\n return {\n name: this.name,\n description: this.description,\n interfaces: this.getInterfaces(),\n fields: fieldsToFieldsConfig(this.getFields()),\n isTypeOf: this.isTypeOf,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: this.extensionASTNodes || []\n };\n };\n\n _proto2.toString = function toString() {\n return this.name;\n };\n\n _proto2.toJSON = function toJSON() {\n return this.toString();\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n ;\n\n _createClass(GraphQLObjectType, [{\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'GraphQLObjectType';\n }\n }]);\n\n return GraphQLObjectType;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_12__[\"default\"])(GraphQLObjectType);\n\nfunction defineInterfaces(config) {\n var _resolveThunk;\n\n var interfaces = (_resolveThunk = resolveThunk(config.interfaces)) !== null && _resolveThunk !== void 0 ? _resolveThunk : [];\n Array.isArray(interfaces) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(config.name, \" interfaces must be an Array or a function which returns an Array.\"));\n return interfaces;\n}\n\nfunction defineFieldMap(config) {\n var fieldMap = resolveThunk(config.fields);\n isPlainObj(fieldMap) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(config.name, \" fields must be an object with field names as keys or a function which returns such an object.\"));\n return Object(_jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(fieldMap, function (fieldConfig, fieldName) {\n var _fieldConfig$args;\n\n isPlainObj(fieldConfig) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(config.name, \".\").concat(fieldName, \" field config must be an object.\"));\n !('isDeprecated' in fieldConfig) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(config.name, \".\").concat(fieldName, \" should provide \\\"deprecationReason\\\" instead of \\\"isDeprecated\\\".\"));\n fieldConfig.resolve == null || typeof fieldConfig.resolve === 'function' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(config.name, \".\").concat(fieldName, \" field resolver must be a function if \") + \"provided, but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(fieldConfig.resolve), \".\"));\n var argsConfig = (_fieldConfig$args = fieldConfig.args) !== null && _fieldConfig$args !== void 0 ? _fieldConfig$args : {};\n isPlainObj(argsConfig) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(config.name, \".\").concat(fieldName, \" args must be an object with argument names as keys.\"));\n var args = Object(_polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(argsConfig).map(function (_ref) {\n var argName = _ref[0],\n argConfig = _ref[1];\n return {\n name: argName,\n description: argConfig.description,\n type: argConfig.type,\n defaultValue: argConfig.defaultValue,\n deprecationReason: argConfig.deprecationReason,\n extensions: argConfig.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(argConfig.extensions),\n astNode: argConfig.astNode\n };\n });\n return {\n name: fieldName,\n description: fieldConfig.description,\n type: fieldConfig.type,\n args: args,\n resolve: fieldConfig.resolve,\n subscribe: fieldConfig.subscribe,\n isDeprecated: fieldConfig.deprecationReason != null,\n deprecationReason: fieldConfig.deprecationReason,\n extensions: fieldConfig.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(fieldConfig.extensions),\n astNode: fieldConfig.astNode\n };\n });\n}\n\nfunction isPlainObj(obj) {\n return Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_10__[\"default\"])(obj) && !Array.isArray(obj);\n}\n\nfunction fieldsToFieldsConfig(fields) {\n return Object(_jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(fields, function (field) {\n return {\n description: field.description,\n type: field.type,\n args: argsToArgsConfig(field.args),\n resolve: field.resolve,\n subscribe: field.subscribe,\n deprecationReason: field.deprecationReason,\n extensions: field.extensions,\n astNode: field.astNode\n };\n });\n}\n/**\n * @internal\n */\n\n\nfunction argsToArgsConfig(args) {\n return Object(_jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(args, function (arg) {\n return arg.name;\n }, function (arg) {\n return {\n description: arg.description,\n type: arg.type,\n defaultValue: arg.defaultValue,\n deprecationReason: arg.deprecationReason,\n extensions: arg.extensions,\n astNode: arg.astNode\n };\n });\n}\nfunction isRequiredArgument(arg) {\n return isNonNullType(arg.type) && arg.defaultValue === undefined;\n}\n\n/**\n * Interface Type Definition\n *\n * When a field can return one of a heterogeneous set of types, a Interface type\n * is used to describe what types are possible, what fields are in common across\n * all types, as well as a function to determine which type is actually used\n * when the field is resolved.\n *\n * Example:\n *\n * const EntityType = new GraphQLInterfaceType({\n * name: 'Entity',\n * fields: {\n * name: { type: GraphQLString }\n * }\n * });\n *\n */\nvar GraphQLInterfaceType = /*#__PURE__*/function () {\n function GraphQLInterfaceType(config) {\n this.name = config.name;\n this.description = config.description;\n this.resolveType = config.resolveType;\n this.extensions = config.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes = undefineIfEmpty(config.extensionASTNodes);\n this._fields = defineFieldMap.bind(undefined, config);\n this._interfaces = defineInterfaces.bind(undefined, config);\n typeof config.name === 'string' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, 'Must provide name.');\n config.resolveType == null || typeof config.resolveType === 'function' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(this.name, \" must provide \\\"resolveType\\\" as a function, \") + \"but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(config.resolveType), \".\"));\n }\n\n var _proto3 = GraphQLInterfaceType.prototype;\n\n _proto3.getFields = function getFields() {\n if (typeof this._fields === 'function') {\n this._fields = this._fields();\n }\n\n return this._fields;\n };\n\n _proto3.getInterfaces = function getInterfaces() {\n if (typeof this._interfaces === 'function') {\n this._interfaces = this._interfaces();\n }\n\n return this._interfaces;\n };\n\n _proto3.toConfig = function toConfig() {\n var _this$extensionASTNod2;\n\n return {\n name: this.name,\n description: this.description,\n interfaces: this.getInterfaces(),\n fields: fieldsToFieldsConfig(this.getFields()),\n resolveType: this.resolveType,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: (_this$extensionASTNod2 = this.extensionASTNodes) !== null && _this$extensionASTNod2 !== void 0 ? _this$extensionASTNod2 : []\n };\n };\n\n _proto3.toString = function toString() {\n return this.name;\n };\n\n _proto3.toJSON = function toJSON() {\n return this.toString();\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n ;\n\n _createClass(GraphQLInterfaceType, [{\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'GraphQLInterfaceType';\n }\n }]);\n\n return GraphQLInterfaceType;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_12__[\"default\"])(GraphQLInterfaceType);\n\n/**\n * Union Type Definition\n *\n * When a field can return one of a heterogeneous set of types, a Union type\n * is used to describe what types are possible as well as providing a function\n * to determine which type is actually used when the field is resolved.\n *\n * Example:\n *\n * const PetType = new GraphQLUnionType({\n * name: 'Pet',\n * types: [ DogType, CatType ],\n * resolveType(value) {\n * if (value instanceof Dog) {\n * return DogType;\n * }\n * if (value instanceof Cat) {\n * return CatType;\n * }\n * }\n * });\n *\n */\nvar GraphQLUnionType = /*#__PURE__*/function () {\n function GraphQLUnionType(config) {\n this.name = config.name;\n this.description = config.description;\n this.resolveType = config.resolveType;\n this.extensions = config.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes = undefineIfEmpty(config.extensionASTNodes);\n this._types = defineTypes.bind(undefined, config);\n typeof config.name === 'string' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, 'Must provide name.');\n config.resolveType == null || typeof config.resolveType === 'function' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(this.name, \" must provide \\\"resolveType\\\" as a function, \") + \"but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(config.resolveType), \".\"));\n }\n\n var _proto4 = GraphQLUnionType.prototype;\n\n _proto4.getTypes = function getTypes() {\n if (typeof this._types === 'function') {\n this._types = this._types();\n }\n\n return this._types;\n };\n\n _proto4.toConfig = function toConfig() {\n var _this$extensionASTNod3;\n\n return {\n name: this.name,\n description: this.description,\n types: this.getTypes(),\n resolveType: this.resolveType,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: (_this$extensionASTNod3 = this.extensionASTNodes) !== null && _this$extensionASTNod3 !== void 0 ? _this$extensionASTNod3 : []\n };\n };\n\n _proto4.toString = function toString() {\n return this.name;\n };\n\n _proto4.toJSON = function toJSON() {\n return this.toString();\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n ;\n\n _createClass(GraphQLUnionType, [{\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'GraphQLUnionType';\n }\n }]);\n\n return GraphQLUnionType;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_12__[\"default\"])(GraphQLUnionType);\n\nfunction defineTypes(config) {\n var types = resolveThunk(config.types);\n Array.isArray(types) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"Must provide Array of types or a function which returns such an array for Union \".concat(config.name, \".\"));\n return types;\n}\n\n/**\n * Enum Type Definition\n *\n * Some leaf values of requests and input values are Enums. GraphQL serializes\n * Enum values as strings, however internally Enums can be represented by any\n * kind of type, often integers.\n *\n * Example:\n *\n * const RGBType = new GraphQLEnumType({\n * name: 'RGB',\n * values: {\n * RED: { value: 0 },\n * GREEN: { value: 1 },\n * BLUE: { value: 2 }\n * }\n * });\n *\n * Note: If a value is not provided in a definition, the name of the enum value\n * will be used as its internal value.\n */\nvar GraphQLEnumType\n/* */\n= /*#__PURE__*/function () {\n function GraphQLEnumType(config) {\n this.name = config.name;\n this.description = config.description;\n this.extensions = config.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes = undefineIfEmpty(config.extensionASTNodes);\n this._values = defineEnumValues(this.name, config.values);\n this._valueLookup = new Map(this._values.map(function (enumValue) {\n return [enumValue.value, enumValue];\n }));\n this._nameLookup = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(this._values, function (value) {\n return value.name;\n });\n typeof config.name === 'string' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, 'Must provide name.');\n }\n\n var _proto5 = GraphQLEnumType.prototype;\n\n _proto5.getValues = function getValues() {\n return this._values;\n };\n\n _proto5.getValue = function getValue(name) {\n return this._nameLookup[name];\n };\n\n _proto5.serialize = function serialize(outputValue) {\n var enumValue = this._valueLookup.get(outputValue);\n\n if (enumValue === undefined) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_14__[\"GraphQLError\"](\"Enum \\\"\".concat(this.name, \"\\\" cannot represent value: \").concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(outputValue)));\n }\n\n return enumValue.name;\n };\n\n _proto5.parseValue = function parseValue(inputValue)\n /* T */\n {\n if (typeof inputValue !== 'string') {\n var valueStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(inputValue);\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_14__[\"GraphQLError\"](\"Enum \\\"\".concat(this.name, \"\\\" cannot represent non-string value: \").concat(valueStr, \".\") + didYouMeanEnumValue(this, valueStr));\n }\n\n var enumValue = this.getValue(inputValue);\n\n if (enumValue == null) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_14__[\"GraphQLError\"](\"Value \\\"\".concat(inputValue, \"\\\" does not exist in \\\"\").concat(this.name, \"\\\" enum.\") + didYouMeanEnumValue(this, inputValue));\n }\n\n return enumValue.value;\n };\n\n _proto5.parseLiteral = function parseLiteral(valueNode, _variables)\n /* T */\n {\n // Note: variables will be resolved to a value before calling this function.\n if (valueNode.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_15__[\"Kind\"].ENUM) {\n var valueStr = Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_16__[\"print\"])(valueNode);\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_14__[\"GraphQLError\"](\"Enum \\\"\".concat(this.name, \"\\\" cannot represent non-enum value: \").concat(valueStr, \".\") + didYouMeanEnumValue(this, valueStr), valueNode);\n }\n\n var enumValue = this.getValue(valueNode.value);\n\n if (enumValue == null) {\n var _valueStr = Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_16__[\"print\"])(valueNode);\n\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_14__[\"GraphQLError\"](\"Value \\\"\".concat(_valueStr, \"\\\" does not exist in \\\"\").concat(this.name, \"\\\" enum.\") + didYouMeanEnumValue(this, _valueStr), valueNode);\n }\n\n return enumValue.value;\n };\n\n _proto5.toConfig = function toConfig() {\n var _this$extensionASTNod4;\n\n var values = Object(_jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(this.getValues(), function (value) {\n return value.name;\n }, function (value) {\n return {\n description: value.description,\n value: value.value,\n deprecationReason: value.deprecationReason,\n extensions: value.extensions,\n astNode: value.astNode\n };\n });\n return {\n name: this.name,\n description: this.description,\n values: values,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: (_this$extensionASTNod4 = this.extensionASTNodes) !== null && _this$extensionASTNod4 !== void 0 ? _this$extensionASTNod4 : []\n };\n };\n\n _proto5.toString = function toString() {\n return this.name;\n };\n\n _proto5.toJSON = function toJSON() {\n return this.toString();\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n ;\n\n _createClass(GraphQLEnumType, [{\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'GraphQLEnumType';\n }\n }]);\n\n return GraphQLEnumType;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_12__[\"default\"])(GraphQLEnumType);\n\nfunction didYouMeanEnumValue(enumType, unknownValueStr) {\n var allNames = enumType.getValues().map(function (value) {\n return value.name;\n });\n var suggestedValues = Object(_jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_13__[\"default\"])(unknownValueStr, allNames);\n return Object(_jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_9__[\"default\"])('the enum value', suggestedValues);\n}\n\nfunction defineEnumValues(typeName, valueMap) {\n isPlainObj(valueMap) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(typeName, \" values must be an object with value names as keys.\"));\n return Object(_polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(valueMap).map(function (_ref2) {\n var valueName = _ref2[0],\n valueConfig = _ref2[1];\n isPlainObj(valueConfig) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(typeName, \".\").concat(valueName, \" must refer to an object with a \\\"value\\\" key \") + \"representing an internal value but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(valueConfig), \".\"));\n !('isDeprecated' in valueConfig) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(typeName, \".\").concat(valueName, \" should provide \\\"deprecationReason\\\" instead of \\\"isDeprecated\\\".\"));\n return {\n name: valueName,\n description: valueConfig.description,\n value: valueConfig.value !== undefined ? valueConfig.value : valueName,\n isDeprecated: valueConfig.deprecationReason != null,\n deprecationReason: valueConfig.deprecationReason,\n extensions: valueConfig.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(valueConfig.extensions),\n astNode: valueConfig.astNode\n };\n });\n}\n\n/**\n * Input Object Type Definition\n *\n * An input object defines a structured collection of fields which may be\n * supplied to a field argument.\n *\n * Using `NonNull` will ensure that a value must be provided by the query\n *\n * Example:\n *\n * const GeoPoint = new GraphQLInputObjectType({\n * name: 'GeoPoint',\n * fields: {\n * lat: { type: new GraphQLNonNull(GraphQLFloat) },\n * lon: { type: new GraphQLNonNull(GraphQLFloat) },\n * alt: { type: GraphQLFloat, defaultValue: 0 },\n * }\n * });\n *\n */\nvar GraphQLInputObjectType = /*#__PURE__*/function () {\n function GraphQLInputObjectType(config) {\n this.name = config.name;\n this.description = config.description;\n this.extensions = config.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes = undefineIfEmpty(config.extensionASTNodes);\n this._fields = defineInputFieldMap.bind(undefined, config);\n typeof config.name === 'string' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, 'Must provide name.');\n }\n\n var _proto6 = GraphQLInputObjectType.prototype;\n\n _proto6.getFields = function getFields() {\n if (typeof this._fields === 'function') {\n this._fields = this._fields();\n }\n\n return this._fields;\n };\n\n _proto6.toConfig = function toConfig() {\n var _this$extensionASTNod5;\n\n var fields = Object(_jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(this.getFields(), function (field) {\n return {\n description: field.description,\n type: field.type,\n defaultValue: field.defaultValue,\n deprecationReason: field.deprecationReason,\n extensions: field.extensions,\n astNode: field.astNode\n };\n });\n return {\n name: this.name,\n description: this.description,\n fields: fields,\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: (_this$extensionASTNod5 = this.extensionASTNodes) !== null && _this$extensionASTNod5 !== void 0 ? _this$extensionASTNod5 : []\n };\n };\n\n _proto6.toString = function toString() {\n return this.name;\n };\n\n _proto6.toJSON = function toJSON() {\n return this.toString();\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n ;\n\n _createClass(GraphQLInputObjectType, [{\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'GraphQLInputObjectType';\n }\n }]);\n\n return GraphQLInputObjectType;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_12__[\"default\"])(GraphQLInputObjectType);\n\nfunction defineInputFieldMap(config) {\n var fieldMap = resolveThunk(config.fields);\n isPlainObj(fieldMap) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(config.name, \" fields must be an object with field names as keys or a function which returns such an object.\"));\n return Object(_jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(fieldMap, function (fieldConfig, fieldName) {\n !('resolve' in fieldConfig) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\".concat(config.name, \".\").concat(fieldName, \" field has a resolve property, but Input Types cannot define resolvers.\"));\n return {\n name: fieldName,\n description: fieldConfig.description,\n type: fieldConfig.type,\n defaultValue: fieldConfig.defaultValue,\n deprecationReason: fieldConfig.deprecationReason,\n extensions: fieldConfig.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(fieldConfig.extensions),\n astNode: fieldConfig.astNode\n };\n });\n}\n\nfunction isRequiredInputField(field) {\n return isNonNullType(field.type) && field.defaultValue === undefined;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/type/definition.mjs?"); /***/ }), /***/ "./node_modules/graphql/type/directives.mjs": /*!**************************************************!*\ !*** ./node_modules/graphql/type/directives.mjs ***! \**************************************************/ /*! exports provided: isDirective, assertDirective, GraphQLDirective, GraphQLIncludeDirective, GraphQLSkipDirective, DEFAULT_DEPRECATION_REASON, GraphQLDeprecatedDirective, GraphQLSpecifiedByDirective, specifiedDirectives, isSpecifiedDirective */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isDirective\", function() { return isDirective; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertDirective\", function() { return assertDirective; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLDirective\", function() { return GraphQLDirective; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLIncludeDirective\", function() { return GraphQLIncludeDirective; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLSkipDirective\", function() { return GraphQLSkipDirective; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_DEPRECATION_REASON\", function() { return DEFAULT_DEPRECATION_REASON; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLDeprecatedDirective\", function() { return GraphQLDeprecatedDirective; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLSpecifiedByDirective\", function() { return GraphQLSpecifiedByDirective; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"specifiedDirectives\", function() { return specifiedDirectives; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSpecifiedDirective\", function() { return isSpecifiedDirective; });\n/* harmony import */ var _polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectEntries.mjs */ \"./node_modules/graphql/polyfills/objectEntries.mjs\");\n/* harmony import */ var _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../polyfills/symbols.mjs */ \"./node_modules/graphql/polyfills/symbols.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/toObjMap.mjs */ \"./node_modules/graphql/jsutils/toObjMap.mjs\");\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../jsutils/instanceOf.mjs */ \"./node_modules/graphql/jsutils/instanceOf.mjs\");\n/* harmony import */ var _jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../jsutils/isObjectLike.mjs */ \"./node_modules/graphql/jsutils/isObjectLike.mjs\");\n/* harmony import */ var _jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../jsutils/defineInspect.mjs */ \"./node_modules/graphql/jsutils/defineInspect.mjs\");\n/* harmony import */ var _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../language/directiveLocation.mjs */ \"./node_modules/graphql/language/directiveLocation.mjs\");\n/* harmony import */ var _scalars_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./scalars.mjs */ \"./node_modules/graphql/type/scalars.mjs\");\n/* harmony import */ var _definition_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Test if the given value is a GraphQL directive.\n */\n\n// eslint-disable-next-line no-redeclare\nfunction isDirective(directive) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(directive, GraphQLDirective);\n}\nfunction assertDirective(directive) {\n if (!isDirective(directive)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(directive), \" to be a GraphQL directive.\"));\n }\n\n return directive;\n}\n/**\n * Directives are used by the GraphQL runtime as a way of modifying execution\n * behavior. Type system creators will usually not create these directly.\n */\n\nvar GraphQLDirective = /*#__PURE__*/function () {\n function GraphQLDirective(config) {\n var _config$isRepeatable, _config$args;\n\n this.name = config.name;\n this.description = config.description;\n this.locations = config.locations;\n this.isRepeatable = (_config$isRepeatable = config.isRepeatable) !== null && _config$isRepeatable !== void 0 ? _config$isRepeatable : false;\n this.extensions = config.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(config.extensions);\n this.astNode = config.astNode;\n config.name || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(0, 'Directive must be named.');\n Array.isArray(config.locations) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(0, \"@\".concat(config.name, \" locations must be an Array.\"));\n var args = (_config$args = config.args) !== null && _config$args !== void 0 ? _config$args : {};\n Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(args) && !Array.isArray(args) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(0, \"@\".concat(config.name, \" args must be an object with argument names as keys.\"));\n this.args = Object(_polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(args).map(function (_ref) {\n var argName = _ref[0],\n argConfig = _ref[1];\n return {\n name: argName,\n description: argConfig.description,\n type: argConfig.type,\n defaultValue: argConfig.defaultValue,\n deprecationReason: argConfig.deprecationReason,\n extensions: argConfig.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(argConfig.extensions),\n astNode: argConfig.astNode\n };\n });\n }\n\n var _proto = GraphQLDirective.prototype;\n\n _proto.toConfig = function toConfig() {\n return {\n name: this.name,\n description: this.description,\n locations: this.locations,\n args: Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"argsToArgsConfig\"])(this.args),\n isRepeatable: this.isRepeatable,\n extensions: this.extensions,\n astNode: this.astNode\n };\n };\n\n _proto.toString = function toString() {\n return '@' + this.name;\n };\n\n _proto.toJSON = function toJSON() {\n return this.toString();\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n ;\n\n _createClass(GraphQLDirective, [{\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_1__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'GraphQLDirective';\n }\n }]);\n\n return GraphQLDirective;\n}(); // Print a simplified form when appearing in `inspect` and `util.inspect`.\n\nObject(_jsutils_defineInspect_mjs__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(GraphQLDirective);\n\n/**\n * Used to conditionally include fields or fragments.\n */\nvar GraphQLIncludeDirective = new GraphQLDirective({\n name: 'include',\n description: 'Directs the executor to include this field or fragment only when the `if` argument is true.',\n locations: [_language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].FIELD, _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].FRAGMENT_SPREAD, _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].INLINE_FRAGMENT],\n args: {\n if: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLBoolean\"]),\n description: 'Included when true.'\n }\n }\n});\n/**\n * Used to conditionally skip (exclude) fields or fragments.\n */\n\nvar GraphQLSkipDirective = new GraphQLDirective({\n name: 'skip',\n description: 'Directs the executor to skip this field or fragment when the `if` argument is true.',\n locations: [_language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].FIELD, _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].FRAGMENT_SPREAD, _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].INLINE_FRAGMENT],\n args: {\n if: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLBoolean\"]),\n description: 'Skipped when true.'\n }\n }\n});\n/**\n * Constant string used for default reason for a deprecation.\n */\n\nvar DEFAULT_DEPRECATION_REASON = 'No longer supported';\n/**\n * Used to declare element of a GraphQL schema as deprecated.\n */\n\nvar GraphQLDeprecatedDirective = new GraphQLDirective({\n name: 'deprecated',\n description: 'Marks an element of a GraphQL schema as no longer supported.',\n locations: [_language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].FIELD_DEFINITION, _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].ARGUMENT_DEFINITION, _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].INPUT_FIELD_DEFINITION, _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].ENUM_VALUE],\n args: {\n reason: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLString\"],\n description: 'Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).',\n defaultValue: DEFAULT_DEPRECATION_REASON\n }\n }\n});\n/**\n * Used to provide a URL for specifying the behaviour of custom scalar definitions.\n */\n\nvar GraphQLSpecifiedByDirective = new GraphQLDirective({\n name: 'specifiedBy',\n description: 'Exposes a URL that specifies the behaviour of this scalar.',\n locations: [_language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_8__[\"DirectiveLocation\"].SCALAR],\n args: {\n url: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLString\"]),\n description: 'The URL that specifies the behaviour of this scalar.'\n }\n }\n});\n/**\n * The full list of specified directives.\n */\n\nvar specifiedDirectives = Object.freeze([GraphQLIncludeDirective, GraphQLSkipDirective, GraphQLDeprecatedDirective, GraphQLSpecifiedByDirective]);\nfunction isSpecifiedDirective(directive) {\n return specifiedDirectives.some(function (_ref2) {\n var name = _ref2.name;\n return name === directive.name;\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/type/directives.mjs?"); /***/ }), /***/ "./node_modules/graphql/type/index.mjs": /*!*********************************************!*\ !*** ./node_modules/graphql/type/index.mjs ***! \*********************************************/ /*! exports provided: isSchema, assertSchema, GraphQLSchema, isType, isScalarType, isObjectType, isInterfaceType, isUnionType, isEnumType, isInputObjectType, isListType, isNonNullType, isInputType, isOutputType, isLeafType, isCompositeType, isAbstractType, isWrappingType, isNullableType, isNamedType, isRequiredArgument, isRequiredInputField, assertType, assertScalarType, assertObjectType, assertInterfaceType, assertUnionType, assertEnumType, assertInputObjectType, assertListType, assertNonNullType, assertInputType, assertOutputType, assertLeafType, assertCompositeType, assertAbstractType, assertWrappingType, assertNullableType, assertNamedType, getNullableType, getNamedType, GraphQLScalarType, GraphQLObjectType, GraphQLInterfaceType, GraphQLUnionType, GraphQLEnumType, GraphQLInputObjectType, GraphQLList, GraphQLNonNull, isDirective, assertDirective, GraphQLDirective, isSpecifiedDirective, specifiedDirectives, GraphQLIncludeDirective, GraphQLSkipDirective, GraphQLDeprecatedDirective, GraphQLSpecifiedByDirective, DEFAULT_DEPRECATION_REASON, isSpecifiedScalarType, specifiedScalarTypes, GraphQLInt, GraphQLFloat, GraphQLString, GraphQLBoolean, GraphQLID, isIntrospectionType, introspectionTypes, __Schema, __Directive, __DirectiveLocation, __Type, __Field, __InputValue, __EnumValue, __TypeKind, TypeKind, SchemaMetaFieldDef, TypeMetaFieldDef, TypeNameMetaFieldDef, validateSchema, assertValidSchema */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _schema_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./schema.mjs */ \"./node_modules/graphql/type/schema.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSchema\", function() { return _schema_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertSchema\", function() { return _schema_mjs__WEBPACK_IMPORTED_MODULE_0__[\"assertSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLSchema\", function() { return _schema_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLSchema\"]; });\n\n/* harmony import */ var _definition_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isScalarType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isObjectType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isInterfaceType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isInterfaceType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isUnionType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isUnionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isEnumType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isEnumType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isInputObjectType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isInputObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isListType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isListType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isNonNullType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isNonNullType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isInputType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isInputType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isOutputType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isOutputType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isLeafType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isLeafType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isCompositeType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isCompositeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isAbstractType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isAbstractType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isWrappingType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isWrappingType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isNullableType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isNullableType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isNamedType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isNamedType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isRequiredArgument\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isRequiredArgument\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isRequiredInputField\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isRequiredInputField\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertScalarType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertObjectType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertInterfaceType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertInterfaceType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertUnionType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertUnionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertEnumType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertEnumType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertInputObjectType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertInputObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertListType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertListType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertNonNullType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertNonNullType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertInputType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertInputType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertOutputType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertOutputType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertLeafType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertLeafType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertCompositeType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertCompositeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertAbstractType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertAbstractType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertWrappingType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertWrappingType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertNullableType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertNullableType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertNamedType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"assertNamedType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getNullableType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"getNullableType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getNamedType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"getNamedType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLScalarType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLObjectType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLInterfaceType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLInterfaceType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLUnionType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLUnionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLEnumType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLEnumType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLInputObjectType\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLInputObjectType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLList\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLNonNull\", function() { return _definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLNonNull\"]; });\n\n/* harmony import */ var _directives_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isDirective\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertDirective\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"assertDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLDirective\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSpecifiedDirective\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isSpecifiedDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"specifiedDirectives\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"specifiedDirectives\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLIncludeDirective\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLIncludeDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLSkipDirective\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLSkipDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLDeprecatedDirective\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLDeprecatedDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLSpecifiedByDirective\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLSpecifiedByDirective\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_DEPRECATION_REASON\", function() { return _directives_mjs__WEBPACK_IMPORTED_MODULE_2__[\"DEFAULT_DEPRECATION_REASON\"]; });\n\n/* harmony import */ var _scalars_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./scalars.mjs */ \"./node_modules/graphql/type/scalars.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isSpecifiedScalarType\", function() { return _scalars_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isSpecifiedScalarType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"specifiedScalarTypes\", function() { return _scalars_mjs__WEBPACK_IMPORTED_MODULE_3__[\"specifiedScalarTypes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLInt\", function() { return _scalars_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLInt\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLFloat\", function() { return _scalars_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLFloat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLString\", function() { return _scalars_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLBoolean\", function() { return _scalars_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GraphQLID\", function() { return _scalars_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLID\"]; });\n\n/* harmony import */ var _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIntrospectionType\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isIntrospectionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"introspectionTypes\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"introspectionTypes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__Schema\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"__Schema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__Directive\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"__Directive\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__DirectiveLocation\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"__DirectiveLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__Type\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"__Type\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__Field\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"__Field\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__InputValue\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"__InputValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__EnumValue\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"__EnumValue\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"__TypeKind\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"__TypeKind\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TypeKind\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"TypeKind\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SchemaMetaFieldDef\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"SchemaMetaFieldDef\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TypeMetaFieldDef\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"TypeMetaFieldDef\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TypeNameMetaFieldDef\", function() { return _introspection_mjs__WEBPACK_IMPORTED_MODULE_4__[\"TypeNameMetaFieldDef\"]; });\n\n/* harmony import */ var _validate_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./validate.mjs */ \"./node_modules/graphql/type/validate.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validateSchema\", function() { return _validate_mjs__WEBPACK_IMPORTED_MODULE_5__[\"validateSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertValidSchema\", function() { return _validate_mjs__WEBPACK_IMPORTED_MODULE_5__[\"assertValidSchema\"]; });\n\n\n\n\n// Common built-in scalar instances.\n\n\n// Validate GraphQL schema.\n\n\n\n//# sourceURL=webpack:///./node_modules/graphql/type/index.mjs?"); /***/ }), /***/ "./node_modules/graphql/type/introspection.mjs": /*!*****************************************************!*\ !*** ./node_modules/graphql/type/introspection.mjs ***! \*****************************************************/ /*! exports provided: __Schema, __Directive, __DirectiveLocation, __Type, __Field, __InputValue, __EnumValue, TypeKind, __TypeKind, SchemaMetaFieldDef, TypeMetaFieldDef, TypeNameMetaFieldDef, introspectionTypes, isIntrospectionType */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__Schema\", function() { return __Schema; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__Directive\", function() { return __Directive; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__DirectiveLocation\", function() { return __DirectiveLocation; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__Type\", function() { return __Type; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__Field\", function() { return __Field; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__InputValue\", function() { return __InputValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__EnumValue\", function() { return __EnumValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TypeKind\", function() { return TypeKind; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__TypeKind\", function() { return __TypeKind; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SchemaMetaFieldDef\", function() { return SchemaMetaFieldDef; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TypeMetaFieldDef\", function() { return TypeMetaFieldDef; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TypeNameMetaFieldDef\", function() { return TypeNameMetaFieldDef; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"introspectionTypes\", function() { return introspectionTypes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIntrospectionType\", function() { return isIntrospectionType; });\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../language/directiveLocation.mjs */ \"./node_modules/graphql/language/directiveLocation.mjs\");\n/* harmony import */ var _utilities_astFromValue_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utilities/astFromValue.mjs */ \"./node_modules/graphql/utilities/astFromValue.mjs\");\n/* harmony import */ var _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./scalars.mjs */ \"./node_modules/graphql/type/scalars.mjs\");\n/* harmony import */ var _definition_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n\n\n\n\nvar __Schema = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLObjectType\"]({\n name: '__Schema',\n description: 'A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.',\n fields: function fields() {\n return {\n description: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(schema) {\n return schema.description;\n }\n },\n types: {\n description: 'A list of all types supported by this server.',\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__Type))),\n resolve: function resolve(schema) {\n return Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(schema.getTypeMap());\n }\n },\n queryType: {\n description: 'The type that query operations will be rooted at.',\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__Type),\n resolve: function resolve(schema) {\n return schema.getQueryType();\n }\n },\n mutationType: {\n description: 'If this server supports mutation, the type that mutation operations will be rooted at.',\n type: __Type,\n resolve: function resolve(schema) {\n return schema.getMutationType();\n }\n },\n subscriptionType: {\n description: 'If this server support subscription, the type that subscription operations will be rooted at.',\n type: __Type,\n resolve: function resolve(schema) {\n return schema.getSubscriptionType();\n }\n },\n directives: {\n description: 'A list of all directives supported by this server.',\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__Directive))),\n resolve: function resolve(schema) {\n return schema.getDirectives();\n }\n }\n };\n }\n});\nvar __Directive = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLObjectType\"]({\n name: '__Directive',\n description: \"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\\n\\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.\",\n fields: function fields() {\n return {\n name: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"]),\n resolve: function resolve(directive) {\n return directive.name;\n }\n },\n description: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(directive) {\n return directive.description;\n }\n },\n isRepeatable: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLBoolean\"]),\n resolve: function resolve(directive) {\n return directive.isRepeatable;\n }\n },\n locations: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__DirectiveLocation))),\n resolve: function resolve(directive) {\n return directive.locations;\n }\n },\n args: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__InputValue))),\n args: {\n includeDeprecated: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLBoolean\"],\n defaultValue: false\n }\n },\n resolve: function resolve(field, _ref) {\n var includeDeprecated = _ref.includeDeprecated;\n return includeDeprecated ? field.args : field.args.filter(function (arg) {\n return arg.deprecationReason == null;\n });\n }\n }\n };\n }\n});\nvar __DirectiveLocation = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLEnumType\"]({\n name: '__DirectiveLocation',\n description: 'A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.',\n values: {\n QUERY: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].QUERY,\n description: 'Location adjacent to a query operation.'\n },\n MUTATION: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].MUTATION,\n description: 'Location adjacent to a mutation operation.'\n },\n SUBSCRIPTION: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].SUBSCRIPTION,\n description: 'Location adjacent to a subscription operation.'\n },\n FIELD: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].FIELD,\n description: 'Location adjacent to a field.'\n },\n FRAGMENT_DEFINITION: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].FRAGMENT_DEFINITION,\n description: 'Location adjacent to a fragment definition.'\n },\n FRAGMENT_SPREAD: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].FRAGMENT_SPREAD,\n description: 'Location adjacent to a fragment spread.'\n },\n INLINE_FRAGMENT: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].INLINE_FRAGMENT,\n description: 'Location adjacent to an inline fragment.'\n },\n VARIABLE_DEFINITION: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].VARIABLE_DEFINITION,\n description: 'Location adjacent to a variable definition.'\n },\n SCHEMA: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].SCHEMA,\n description: 'Location adjacent to a schema definition.'\n },\n SCALAR: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].SCALAR,\n description: 'Location adjacent to a scalar definition.'\n },\n OBJECT: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].OBJECT,\n description: 'Location adjacent to an object type definition.'\n },\n FIELD_DEFINITION: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].FIELD_DEFINITION,\n description: 'Location adjacent to a field definition.'\n },\n ARGUMENT_DEFINITION: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].ARGUMENT_DEFINITION,\n description: 'Location adjacent to an argument definition.'\n },\n INTERFACE: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].INTERFACE,\n description: 'Location adjacent to an interface definition.'\n },\n UNION: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].UNION,\n description: 'Location adjacent to a union definition.'\n },\n ENUM: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].ENUM,\n description: 'Location adjacent to an enum definition.'\n },\n ENUM_VALUE: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].ENUM_VALUE,\n description: 'Location adjacent to an enum value definition.'\n },\n INPUT_OBJECT: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].INPUT_OBJECT,\n description: 'Location adjacent to an input object type definition.'\n },\n INPUT_FIELD_DEFINITION: {\n value: _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].INPUT_FIELD_DEFINITION,\n description: 'Location adjacent to an input object field definition.'\n }\n }\n});\nvar __Type = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLObjectType\"]({\n name: '__Type',\n description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\\n\\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByUrl`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.',\n fields: function fields() {\n return {\n kind: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__TypeKind),\n resolve: function resolve(type) {\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isScalarType\"])(type)) {\n return TypeKind.SCALAR;\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isObjectType\"])(type)) {\n return TypeKind.OBJECT;\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInterfaceType\"])(type)) {\n return TypeKind.INTERFACE;\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isUnionType\"])(type)) {\n return TypeKind.UNION;\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isEnumType\"])(type)) {\n return TypeKind.ENUM;\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInputObjectType\"])(type)) {\n return TypeKind.INPUT_OBJECT;\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isListType\"])(type)) {\n return TypeKind.LIST;\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isNonNullType\"])(type)) {\n return TypeKind.NON_NULL;\n } // istanbul ignore next (Not reachable. All possible types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, \"Unexpected type: \\\"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type), \"\\\".\"));\n }\n },\n name: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(type) {\n return type.name !== undefined ? type.name : undefined;\n }\n },\n description: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(type) {\n return type.description !== undefined ? type.description : undefined;\n }\n },\n specifiedByUrl: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(obj) {\n return obj.specifiedByUrl !== undefined ? obj.specifiedByUrl : undefined;\n }\n },\n fields: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__Field)),\n args: {\n includeDeprecated: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLBoolean\"],\n defaultValue: false\n }\n },\n resolve: function resolve(type, _ref2) {\n var includeDeprecated = _ref2.includeDeprecated;\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isObjectType\"])(type) || Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInterfaceType\"])(type)) {\n var fields = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type.getFields());\n return includeDeprecated ? fields : fields.filter(function (field) {\n return field.deprecationReason == null;\n });\n }\n }\n },\n interfaces: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__Type)),\n resolve: function resolve(type) {\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isObjectType\"])(type) || Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInterfaceType\"])(type)) {\n return type.getInterfaces();\n }\n }\n },\n possibleTypes: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__Type)),\n resolve: function resolve(type, _args, _context, _ref3) {\n var schema = _ref3.schema;\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isAbstractType\"])(type)) {\n return schema.getPossibleTypes(type);\n }\n }\n },\n enumValues: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__EnumValue)),\n args: {\n includeDeprecated: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLBoolean\"],\n defaultValue: false\n }\n },\n resolve: function resolve(type, _ref4) {\n var includeDeprecated = _ref4.includeDeprecated;\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isEnumType\"])(type)) {\n var values = type.getValues();\n return includeDeprecated ? values : values.filter(function (field) {\n return field.deprecationReason == null;\n });\n }\n }\n },\n inputFields: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__InputValue)),\n args: {\n includeDeprecated: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLBoolean\"],\n defaultValue: false\n }\n },\n resolve: function resolve(type, _ref5) {\n var includeDeprecated = _ref5.includeDeprecated;\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInputObjectType\"])(type)) {\n var values = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type.getFields());\n return includeDeprecated ? values : values.filter(function (field) {\n return field.deprecationReason == null;\n });\n }\n }\n },\n ofType: {\n type: __Type,\n resolve: function resolve(type) {\n return type.ofType !== undefined ? type.ofType : undefined;\n }\n }\n };\n }\n});\nvar __Field = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLObjectType\"]({\n name: '__Field',\n description: 'Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.',\n fields: function fields() {\n return {\n name: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"]),\n resolve: function resolve(field) {\n return field.name;\n }\n },\n description: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(field) {\n return field.description;\n }\n },\n args: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLList\"](new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__InputValue))),\n args: {\n includeDeprecated: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLBoolean\"],\n defaultValue: false\n }\n },\n resolve: function resolve(field, _ref6) {\n var includeDeprecated = _ref6.includeDeprecated;\n return includeDeprecated ? field.args : field.args.filter(function (arg) {\n return arg.deprecationReason == null;\n });\n }\n },\n type: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__Type),\n resolve: function resolve(field) {\n return field.type;\n }\n },\n isDeprecated: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLBoolean\"]),\n resolve: function resolve(field) {\n return field.deprecationReason != null;\n }\n },\n deprecationReason: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(field) {\n return field.deprecationReason;\n }\n }\n };\n }\n});\nvar __InputValue = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLObjectType\"]({\n name: '__InputValue',\n description: 'Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.',\n fields: function fields() {\n return {\n name: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"]),\n resolve: function resolve(inputValue) {\n return inputValue.name;\n }\n },\n description: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(inputValue) {\n return inputValue.description;\n }\n },\n type: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__Type),\n resolve: function resolve(inputValue) {\n return inputValue.type;\n }\n },\n defaultValue: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n description: 'A GraphQL-formatted string representing the default value for this input value.',\n resolve: function resolve(inputValue) {\n var type = inputValue.type,\n defaultValue = inputValue.defaultValue;\n var valueAST = Object(_utilities_astFromValue_mjs__WEBPACK_IMPORTED_MODULE_5__[\"astFromValue\"])(defaultValue, type);\n return valueAST ? Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_3__[\"print\"])(valueAST) : null;\n }\n },\n isDeprecated: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLBoolean\"]),\n resolve: function resolve(field) {\n return field.deprecationReason != null;\n }\n },\n deprecationReason: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(obj) {\n return obj.deprecationReason;\n }\n }\n };\n }\n});\nvar __EnumValue = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLObjectType\"]({\n name: '__EnumValue',\n description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',\n fields: function fields() {\n return {\n name: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"]),\n resolve: function resolve(enumValue) {\n return enumValue.name;\n }\n },\n description: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(enumValue) {\n return enumValue.description;\n }\n },\n isDeprecated: {\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLBoolean\"]),\n resolve: function resolve(enumValue) {\n return enumValue.deprecationReason != null;\n }\n },\n deprecationReason: {\n type: _scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"],\n resolve: function resolve(enumValue) {\n return enumValue.deprecationReason;\n }\n }\n };\n }\n});\nvar TypeKind = Object.freeze({\n SCALAR: 'SCALAR',\n OBJECT: 'OBJECT',\n INTERFACE: 'INTERFACE',\n UNION: 'UNION',\n ENUM: 'ENUM',\n INPUT_OBJECT: 'INPUT_OBJECT',\n LIST: 'LIST',\n NON_NULL: 'NON_NULL'\n});\nvar __TypeKind = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLEnumType\"]({\n name: '__TypeKind',\n description: 'An enum describing what kind of type a given `__Type` is.',\n values: {\n SCALAR: {\n value: TypeKind.SCALAR,\n description: 'Indicates this type is a scalar.'\n },\n OBJECT: {\n value: TypeKind.OBJECT,\n description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.'\n },\n INTERFACE: {\n value: TypeKind.INTERFACE,\n description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.'\n },\n UNION: {\n value: TypeKind.UNION,\n description: 'Indicates this type is a union. `possibleTypes` is a valid field.'\n },\n ENUM: {\n value: TypeKind.ENUM,\n description: 'Indicates this type is an enum. `enumValues` is a valid field.'\n },\n INPUT_OBJECT: {\n value: TypeKind.INPUT_OBJECT,\n description: 'Indicates this type is an input object. `inputFields` is a valid field.'\n },\n LIST: {\n value: TypeKind.LIST,\n description: 'Indicates this type is a list. `ofType` is a valid field.'\n },\n NON_NULL: {\n value: TypeKind.NON_NULL,\n description: 'Indicates this type is a non-null. `ofType` is a valid field.'\n }\n }\n});\n/**\n * Note that these are GraphQLField and not GraphQLFieldConfig,\n * so the format for args is different.\n */\n\nvar SchemaMetaFieldDef = {\n name: '__schema',\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](__Schema),\n description: 'Access the current type schema of this server.',\n args: [],\n resolve: function resolve(_source, _args, _context, _ref7) {\n var schema = _ref7.schema;\n return schema;\n },\n isDeprecated: false,\n deprecationReason: undefined,\n extensions: undefined,\n astNode: undefined\n};\nvar TypeMetaFieldDef = {\n name: '__type',\n type: __Type,\n description: 'Request the type information of a single type.',\n args: [{\n name: 'name',\n description: undefined,\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"]),\n defaultValue: undefined,\n deprecationReason: undefined,\n extensions: undefined,\n astNode: undefined\n }],\n resolve: function resolve(_source, _ref8, _context, _ref9) {\n var name = _ref8.name;\n var schema = _ref9.schema;\n return schema.getType(name);\n },\n isDeprecated: false,\n deprecationReason: undefined,\n extensions: undefined,\n astNode: undefined\n};\nvar TypeNameMetaFieldDef = {\n name: '__typename',\n type: new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLNonNull\"](_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"]),\n description: 'The name of the current Object type at runtime.',\n args: [],\n resolve: function resolve(_source, _args, _context, _ref10) {\n var parentType = _ref10.parentType;\n return parentType.name;\n },\n isDeprecated: false,\n deprecationReason: undefined,\n extensions: undefined,\n astNode: undefined\n};\nvar introspectionTypes = Object.freeze([__Schema, __Directive, __DirectiveLocation, __Type, __Field, __InputValue, __EnumValue, __TypeKind]);\nfunction isIntrospectionType(type) {\n return introspectionTypes.some(function (_ref11) {\n var name = _ref11.name;\n return type.name === name;\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/type/introspection.mjs?"); /***/ }), /***/ "./node_modules/graphql/type/scalars.mjs": /*!***********************************************!*\ !*** ./node_modules/graphql/type/scalars.mjs ***! \***********************************************/ /*! exports provided: GraphQLInt, GraphQLFloat, GraphQLString, GraphQLBoolean, GraphQLID, specifiedScalarTypes, isSpecifiedScalarType */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLInt\", function() { return GraphQLInt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLFloat\", function() { return GraphQLFloat; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLString\", function() { return GraphQLString; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLBoolean\", function() { return GraphQLBoolean; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLID\", function() { return GraphQLID; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"specifiedScalarTypes\", function() { return specifiedScalarTypes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSpecifiedScalarType\", function() { return isSpecifiedScalarType; });\n/* harmony import */ var _polyfills_isFinite_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/isFinite.mjs */ \"./node_modules/graphql/polyfills/isFinite.mjs\");\n/* harmony import */ var _polyfills_isInteger_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../polyfills/isInteger.mjs */ \"./node_modules/graphql/polyfills/isInteger.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/isObjectLike.mjs */ \"./node_modules/graphql/jsutils/isObjectLike.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _definition_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n\n\n\n // As per the GraphQL Spec, Integers are only treated as valid when a valid\n// 32-bit signed integer, providing the broadest support across platforms.\n//\n// n.b. JavaScript's integers are safe between -(2^53 - 1) and 2^53 - 1 because\n// they are internally represented as IEEE 754 doubles.\n\nvar MAX_INT = 2147483647;\nvar MIN_INT = -2147483648;\n\nfunction serializeInt(outputValue) {\n var coercedValue = serializeObject(outputValue);\n\n if (typeof coercedValue === 'boolean') {\n return coercedValue ? 1 : 0;\n }\n\n var num = coercedValue;\n\n if (typeof coercedValue === 'string' && coercedValue !== '') {\n num = Number(coercedValue);\n }\n\n if (!Object(_polyfills_isInteger_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(num)) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Int cannot represent non-integer value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(coercedValue)));\n }\n\n if (num > MAX_INT || num < MIN_INT) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"]('Int cannot represent non 32-bit signed integer value: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(coercedValue));\n }\n\n return num;\n}\n\nfunction coerceInt(inputValue) {\n if (!Object(_polyfills_isInteger_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(inputValue)) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Int cannot represent non-integer value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(inputValue)));\n }\n\n if (inputValue > MAX_INT || inputValue < MIN_INT) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Int cannot represent non 32-bit signed integer value: \".concat(inputValue));\n }\n\n return inputValue;\n}\n\nvar GraphQLInt = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLScalarType\"]({\n name: 'Int',\n description: 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.',\n serialize: serializeInt,\n parseValue: coerceInt,\n parseLiteral: function parseLiteral(valueNode) {\n if (valueNode.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].INT) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Int cannot represent non-integer value: \".concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__[\"print\"])(valueNode)), valueNode);\n }\n\n var num = parseInt(valueNode.value, 10);\n\n if (num > MAX_INT || num < MIN_INT) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Int cannot represent non 32-bit signed integer value: \".concat(valueNode.value), valueNode);\n }\n\n return num;\n }\n});\n\nfunction serializeFloat(outputValue) {\n var coercedValue = serializeObject(outputValue);\n\n if (typeof coercedValue === 'boolean') {\n return coercedValue ? 1 : 0;\n }\n\n var num = coercedValue;\n\n if (typeof coercedValue === 'string' && coercedValue !== '') {\n num = Number(coercedValue);\n }\n\n if (!Object(_polyfills_isFinite_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(num)) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Float cannot represent non numeric value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(coercedValue)));\n }\n\n return num;\n}\n\nfunction coerceFloat(inputValue) {\n if (!Object(_polyfills_isFinite_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(inputValue)) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Float cannot represent non numeric value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(inputValue)));\n }\n\n return inputValue;\n}\n\nvar GraphQLFloat = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLScalarType\"]({\n name: 'Float',\n description: 'The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).',\n serialize: serializeFloat,\n parseValue: coerceFloat,\n parseLiteral: function parseLiteral(valueNode) {\n if (valueNode.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].FLOAT && valueNode.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].INT) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Float cannot represent non numeric value: \".concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__[\"print\"])(valueNode)), valueNode);\n }\n\n return parseFloat(valueNode.value);\n }\n}); // Support serializing objects with custom valueOf() or toJSON() functions -\n// a common way to represent a complex value which can be represented as\n// a string (ex: MongoDB id objects).\n\nfunction serializeObject(outputValue) {\n if (Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(outputValue)) {\n if (typeof outputValue.valueOf === 'function') {\n var valueOfResult = outputValue.valueOf();\n\n if (!Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(valueOfResult)) {\n return valueOfResult;\n }\n }\n\n if (typeof outputValue.toJSON === 'function') {\n // $FlowFixMe[incompatible-use]\n return outputValue.toJSON();\n }\n }\n\n return outputValue;\n}\n\nfunction serializeString(outputValue) {\n var coercedValue = serializeObject(outputValue); // Serialize string, boolean and number values to a string, but do not\n // attempt to coerce object, function, symbol, or other types as strings.\n\n if (typeof coercedValue === 'string') {\n return coercedValue;\n }\n\n if (typeof coercedValue === 'boolean') {\n return coercedValue ? 'true' : 'false';\n }\n\n if (Object(_polyfills_isFinite_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(coercedValue)) {\n return coercedValue.toString();\n }\n\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"String cannot represent value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(outputValue)));\n}\n\nfunction coerceString(inputValue) {\n if (typeof inputValue !== 'string') {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"String cannot represent a non string value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(inputValue)));\n }\n\n return inputValue;\n}\n\nvar GraphQLString = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLScalarType\"]({\n name: 'String',\n description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',\n serialize: serializeString,\n parseValue: coerceString,\n parseLiteral: function parseLiteral(valueNode) {\n if (valueNode.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].STRING) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"String cannot represent a non string value: \".concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__[\"print\"])(valueNode)), valueNode);\n }\n\n return valueNode.value;\n }\n});\n\nfunction serializeBoolean(outputValue) {\n var coercedValue = serializeObject(outputValue);\n\n if (typeof coercedValue === 'boolean') {\n return coercedValue;\n }\n\n if (Object(_polyfills_isFinite_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(coercedValue)) {\n return coercedValue !== 0;\n }\n\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Boolean cannot represent a non boolean value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(coercedValue)));\n}\n\nfunction coerceBoolean(inputValue) {\n if (typeof inputValue !== 'boolean') {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Boolean cannot represent a non boolean value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(inputValue)));\n }\n\n return inputValue;\n}\n\nvar GraphQLBoolean = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLScalarType\"]({\n name: 'Boolean',\n description: 'The `Boolean` scalar type represents `true` or `false`.',\n serialize: serializeBoolean,\n parseValue: coerceBoolean,\n parseLiteral: function parseLiteral(valueNode) {\n if (valueNode.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].BOOLEAN) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"Boolean cannot represent a non boolean value: \".concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__[\"print\"])(valueNode)), valueNode);\n }\n\n return valueNode.value;\n }\n});\n\nfunction serializeID(outputValue) {\n var coercedValue = serializeObject(outputValue);\n\n if (typeof coercedValue === 'string') {\n return coercedValue;\n }\n\n if (Object(_polyfills_isInteger_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(coercedValue)) {\n return String(coercedValue);\n }\n\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"ID cannot represent value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(outputValue)));\n}\n\nfunction coerceID(inputValue) {\n if (typeof inputValue === 'string') {\n return inputValue;\n }\n\n if (Object(_polyfills_isInteger_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(inputValue)) {\n return inputValue.toString();\n }\n\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"](\"ID cannot represent value: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(inputValue)));\n}\n\nvar GraphQLID = new _definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLScalarType\"]({\n name: 'ID',\n description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.',\n serialize: serializeID,\n parseValue: coerceID,\n parseLiteral: function parseLiteral(valueNode) {\n if (valueNode.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].STRING && valueNode.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].INT) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLError\"]('ID cannot represent a non-string and non-integer value: ' + Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__[\"print\"])(valueNode), valueNode);\n }\n\n return valueNode.value;\n }\n});\nvar specifiedScalarTypes = Object.freeze([GraphQLString, GraphQLInt, GraphQLFloat, GraphQLBoolean, GraphQLID]);\nfunction isSpecifiedScalarType(type) {\n return specifiedScalarTypes.some(function (_ref) {\n var name = _ref.name;\n return type.name === name;\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/type/scalars.mjs?"); /***/ }), /***/ "./node_modules/graphql/type/schema.mjs": /*!**********************************************!*\ !*** ./node_modules/graphql/type/schema.mjs ***! \**********************************************/ /*! exports provided: isSchema, assertSchema, GraphQLSchema */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSchema\", function() { return isSchema; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertSchema\", function() { return assertSchema; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GraphQLSchema\", function() { return GraphQLSchema; });\n/* harmony import */ var _polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/find.mjs */ \"./node_modules/graphql/polyfills/find.mjs\");\n/* harmony import */ var _polyfills_arrayFrom_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../polyfills/arrayFrom.mjs */ \"./node_modules/graphql/polyfills/arrayFrom.mjs\");\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../polyfills/symbols.mjs */ \"./node_modules/graphql/polyfills/symbols.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../jsutils/toObjMap.mjs */ \"./node_modules/graphql/jsutils/toObjMap.mjs\");\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../jsutils/instanceOf.mjs */ \"./node_modules/graphql/jsutils/instanceOf.mjs\");\n/* harmony import */ var _jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../jsutils/isObjectLike.mjs */ \"./node_modules/graphql/jsutils/isObjectLike.mjs\");\n/* harmony import */ var _introspection_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n/* harmony import */ var _directives_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony import */ var _definition_mjs__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Test if the given value is a GraphQL schema.\n */\n\n// eslint-disable-next-line no-redeclare\nfunction isSchema(schema) {\n return Object(_jsutils_instanceOf_mjs__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(schema, GraphQLSchema);\n}\nfunction assertSchema(schema) {\n if (!isSchema(schema)) {\n throw new Error(\"Expected \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(schema), \" to be a GraphQL schema.\"));\n }\n\n return schema;\n}\n/**\n * Schema Definition\n *\n * A Schema is created by supplying the root types of each type of operation,\n * query and mutation (optional). A schema definition is then supplied to the\n * validator and executor.\n *\n * Example:\n *\n * const MyAppSchema = new GraphQLSchema({\n * query: MyAppQueryRootType,\n * mutation: MyAppMutationRootType,\n * })\n *\n * Note: When the schema is constructed, by default only the types that are\n * reachable by traversing the root types are included, other types must be\n * explicitly referenced.\n *\n * Example:\n *\n * const characterInterface = new GraphQLInterfaceType({\n * name: 'Character',\n * ...\n * });\n *\n * const humanType = new GraphQLObjectType({\n * name: 'Human',\n * interfaces: [characterInterface],\n * ...\n * });\n *\n * const droidType = new GraphQLObjectType({\n * name: 'Droid',\n * interfaces: [characterInterface],\n * ...\n * });\n *\n * const schema = new GraphQLSchema({\n * query: new GraphQLObjectType({\n * name: 'Query',\n * fields: {\n * hero: { type: characterInterface, ... },\n * }\n * }),\n * ...\n * // Since this schema references only the `Character` interface it's\n * // necessary to explicitly list the types that implement it if\n * // you want them to be included in the final schema.\n * types: [humanType, droidType],\n * })\n *\n * Note: If an array of `directives` are provided to GraphQLSchema, that will be\n * the exact list of directives represented and allowed. If `directives` is not\n * provided then a default set of the specified directives (e.g. @include and\n * @skip) will be used. If you wish to provide *additional* directives to these\n * specified directives, you must explicitly declare them. Example:\n *\n * const MyAppSchema = new GraphQLSchema({\n * ...\n * directives: specifiedDirectives.concat([ myCustomDirective ]),\n * })\n *\n */\n\nvar GraphQLSchema = /*#__PURE__*/function () {\n // Used as a cache for validateSchema().\n function GraphQLSchema(config) {\n var _config$directives;\n\n // If this schema was built from a source known to be valid, then it may be\n // marked with assumeValid to avoid an additional type system validation.\n this.__validationErrors = config.assumeValid === true ? [] : undefined; // Check for common mistakes during construction to produce early errors.\n\n Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_8__[\"default\"])(config) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, 'Must provide configuration object.');\n !config.types || Array.isArray(config.types) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, \"\\\"types\\\" must be Array if provided but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(config.types), \".\"));\n !config.directives || Array.isArray(config.directives) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, '\"directives\" must be Array if provided but got: ' + \"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(config.directives), \".\"));\n this.description = config.description;\n this.extensions = config.extensions && Object(_jsutils_toObjMap_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(config.extensions);\n this.astNode = config.astNode;\n this.extensionASTNodes = config.extensionASTNodes;\n this._queryType = config.query;\n this._mutationType = config.mutation;\n this._subscriptionType = config.subscription; // Provide specified directives (e.g. @include and @skip) by default.\n\n this._directives = (_config$directives = config.directives) !== null && _config$directives !== void 0 ? _config$directives : _directives_mjs__WEBPACK_IMPORTED_MODULE_10__[\"specifiedDirectives\"]; // To preserve order of user-provided types, we add first to add them to\n // the set of \"collected\" types, so `collectReferencedTypes` ignore them.\n\n var allReferencedTypes = new Set(config.types);\n\n if (config.types != null) {\n for (var _i2 = 0, _config$types2 = config.types; _i2 < _config$types2.length; _i2++) {\n var type = _config$types2[_i2];\n // When we ready to process this type, we remove it from \"collected\" types\n // and then add it together with all dependent types in the correct position.\n allReferencedTypes.delete(type);\n collectReferencedTypes(type, allReferencedTypes);\n }\n }\n\n if (this._queryType != null) {\n collectReferencedTypes(this._queryType, allReferencedTypes);\n }\n\n if (this._mutationType != null) {\n collectReferencedTypes(this._mutationType, allReferencedTypes);\n }\n\n if (this._subscriptionType != null) {\n collectReferencedTypes(this._subscriptionType, allReferencedTypes);\n }\n\n for (var _i4 = 0, _this$_directives2 = this._directives; _i4 < _this$_directives2.length; _i4++) {\n var directive = _this$_directives2[_i4];\n\n // Directives are not validated until validateSchema() is called.\n if (Object(_directives_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isDirective\"])(directive)) {\n for (var _i6 = 0, _directive$args2 = directive.args; _i6 < _directive$args2.length; _i6++) {\n var arg = _directive$args2[_i6];\n collectReferencedTypes(arg.type, allReferencedTypes);\n }\n }\n }\n\n collectReferencedTypes(_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"__Schema\"], allReferencedTypes); // Storing the resulting map for reference by the schema.\n\n this._typeMap = Object.create(null);\n this._subTypeMap = Object.create(null); // Keep track of all implementations by interface name.\n\n this._implementationsMap = Object.create(null);\n\n for (var _i8 = 0, _arrayFrom2 = Object(_polyfills_arrayFrom_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(allReferencedTypes); _i8 < _arrayFrom2.length; _i8++) {\n var namedType = _arrayFrom2[_i8];\n\n if (namedType == null) {\n continue;\n }\n\n var typeName = namedType.name;\n typeName || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(0, 'One of the provided types for building the Schema is missing a name.');\n\n if (this._typeMap[typeName] !== undefined) {\n throw new Error(\"Schema must contain uniquely named types but contains multiple types named \\\"\".concat(typeName, \"\\\".\"));\n }\n\n this._typeMap[typeName] = namedType;\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isInterfaceType\"])(namedType)) {\n // Store implementations by interface.\n for (var _i10 = 0, _namedType$getInterfa2 = namedType.getInterfaces(); _i10 < _namedType$getInterfa2.length; _i10++) {\n var iface = _namedType$getInterfa2[_i10];\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isInterfaceType\"])(iface)) {\n var implementations = this._implementationsMap[iface.name];\n\n if (implementations === undefined) {\n implementations = this._implementationsMap[iface.name] = {\n objects: [],\n interfaces: []\n };\n }\n\n implementations.interfaces.push(namedType);\n }\n }\n } else if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isObjectType\"])(namedType)) {\n // Store implementations by objects.\n for (var _i12 = 0, _namedType$getInterfa4 = namedType.getInterfaces(); _i12 < _namedType$getInterfa4.length; _i12++) {\n var _iface = _namedType$getInterfa4[_i12];\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isInterfaceType\"])(_iface)) {\n var _implementations = this._implementationsMap[_iface.name];\n\n if (_implementations === undefined) {\n _implementations = this._implementationsMap[_iface.name] = {\n objects: [],\n interfaces: []\n };\n }\n\n _implementations.objects.push(namedType);\n }\n }\n }\n }\n }\n\n var _proto = GraphQLSchema.prototype;\n\n _proto.getQueryType = function getQueryType() {\n return this._queryType;\n };\n\n _proto.getMutationType = function getMutationType() {\n return this._mutationType;\n };\n\n _proto.getSubscriptionType = function getSubscriptionType() {\n return this._subscriptionType;\n };\n\n _proto.getTypeMap = function getTypeMap() {\n return this._typeMap;\n };\n\n _proto.getType = function getType(name) {\n return this.getTypeMap()[name];\n };\n\n _proto.getPossibleTypes = function getPossibleTypes(abstractType) {\n return Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isUnionType\"])(abstractType) ? abstractType.getTypes() : this.getImplementations(abstractType).objects;\n };\n\n _proto.getImplementations = function getImplementations(interfaceType) {\n var implementations = this._implementationsMap[interfaceType.name];\n return implementations !== null && implementations !== void 0 ? implementations : {\n objects: [],\n interfaces: []\n };\n } // @deprecated: use isSubType instead - will be removed in v16.\n ;\n\n _proto.isPossibleType = function isPossibleType(abstractType, possibleType) {\n return this.isSubType(abstractType, possibleType);\n };\n\n _proto.isSubType = function isSubType(abstractType, maybeSubType) {\n var map = this._subTypeMap[abstractType.name];\n\n if (map === undefined) {\n map = Object.create(null);\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isUnionType\"])(abstractType)) {\n for (var _i14 = 0, _abstractType$getType2 = abstractType.getTypes(); _i14 < _abstractType$getType2.length; _i14++) {\n var type = _abstractType$getType2[_i14];\n map[type.name] = true;\n }\n } else {\n var implementations = this.getImplementations(abstractType);\n\n for (var _i16 = 0, _implementations$obje2 = implementations.objects; _i16 < _implementations$obje2.length; _i16++) {\n var _type = _implementations$obje2[_i16];\n map[_type.name] = true;\n }\n\n for (var _i18 = 0, _implementations$inte2 = implementations.interfaces; _i18 < _implementations$inte2.length; _i18++) {\n var _type2 = _implementations$inte2[_i18];\n map[_type2.name] = true;\n }\n }\n\n this._subTypeMap[abstractType.name] = map;\n }\n\n return map[maybeSubType.name] !== undefined;\n };\n\n _proto.getDirectives = function getDirectives() {\n return this._directives;\n };\n\n _proto.getDirective = function getDirective(name) {\n return Object(_polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(this.getDirectives(), function (directive) {\n return directive.name === name;\n });\n };\n\n _proto.toConfig = function toConfig() {\n var _this$extensionASTNod;\n\n return {\n description: this.description,\n query: this.getQueryType(),\n mutation: this.getMutationType(),\n subscription: this.getSubscriptionType(),\n types: Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(this.getTypeMap()),\n directives: this.getDirectives().slice(),\n extensions: this.extensions,\n astNode: this.astNode,\n extensionASTNodes: (_this$extensionASTNod = this.extensionASTNodes) !== null && _this$extensionASTNod !== void 0 ? _this$extensionASTNod : [],\n assumeValid: this.__validationErrors !== undefined\n };\n } // $FlowFixMe[unsupported-syntax] Flow doesn't support computed properties yet\n ;\n\n _createClass(GraphQLSchema, [{\n key: _polyfills_symbols_mjs__WEBPACK_IMPORTED_MODULE_3__[\"SYMBOL_TO_STRING_TAG\"],\n get: function get() {\n return 'GraphQLSchema';\n }\n }]);\n\n return GraphQLSchema;\n}();\n\nfunction collectReferencedTypes(type, typeSet) {\n var namedType = Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"getNamedType\"])(type);\n\n if (!typeSet.has(namedType)) {\n typeSet.add(namedType);\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isUnionType\"])(namedType)) {\n for (var _i20 = 0, _namedType$getTypes2 = namedType.getTypes(); _i20 < _namedType$getTypes2.length; _i20++) {\n var memberType = _namedType$getTypes2[_i20];\n collectReferencedTypes(memberType, typeSet);\n }\n } else if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isObjectType\"])(namedType) || Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isInterfaceType\"])(namedType)) {\n for (var _i22 = 0, _namedType$getInterfa6 = namedType.getInterfaces(); _i22 < _namedType$getInterfa6.length; _i22++) {\n var interfaceType = _namedType$getInterfa6[_i22];\n collectReferencedTypes(interfaceType, typeSet);\n }\n\n for (var _i24 = 0, _objectValues2 = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(namedType.getFields()); _i24 < _objectValues2.length; _i24++) {\n var field = _objectValues2[_i24];\n collectReferencedTypes(field.type, typeSet);\n\n for (var _i26 = 0, _field$args2 = field.args; _i26 < _field$args2.length; _i26++) {\n var arg = _field$args2[_i26];\n collectReferencedTypes(arg.type, typeSet);\n }\n }\n } else if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_11__[\"isInputObjectType\"])(namedType)) {\n for (var _i28 = 0, _objectValues4 = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(namedType.getFields()); _i28 < _objectValues4.length; _i28++) {\n var _field = _objectValues4[_i28];\n collectReferencedTypes(_field.type, typeSet);\n }\n }\n }\n\n return typeSet;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/type/schema.mjs?"); /***/ }), /***/ "./node_modules/graphql/type/validate.mjs": /*!************************************************!*\ !*** ./node_modules/graphql/type/validate.mjs ***! \************************************************/ /*! exports provided: validateSchema, assertValidSchema */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateSchema\", function() { return validateSchema; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertValidSchema\", function() { return assertValidSchema; });\n/* harmony import */ var _polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/find.mjs */ \"./node_modules/graphql/polyfills/find.mjs\");\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../error/locatedError.mjs */ \"./node_modules/graphql/error/locatedError.mjs\");\n/* harmony import */ var _utilities_assertValidName_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utilities/assertValidName.mjs */ \"./node_modules/graphql/utilities/assertValidName.mjs\");\n/* harmony import */ var _utilities_typeComparators_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../utilities/typeComparators.mjs */ \"./node_modules/graphql/utilities/typeComparators.mjs\");\n/* harmony import */ var _schema_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./schema.mjs */ \"./node_modules/graphql/type/schema.mjs\");\n/* harmony import */ var _introspection_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n/* harmony import */ var _directives_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony import */ var _definition_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Implements the \"Type Validation\" sub-sections of the specification's\n * \"Type System\" section.\n *\n * Validation runs synchronously, returning an array of encountered errors, or\n * an empty array if no errors were encountered and the Schema is valid.\n */\n\nfunction validateSchema(schema) {\n // First check to ensure the provided value is in fact a GraphQLSchema.\n Object(_schema_mjs__WEBPACK_IMPORTED_MODULE_7__[\"assertSchema\"])(schema); // If this Schema has already been validated, return the previous results.\n\n if (schema.__validationErrors) {\n return schema.__validationErrors;\n } // Validate the schema, producing a list of errors.\n\n\n var context = new SchemaValidationContext(schema);\n validateRootTypes(context);\n validateDirectives(context);\n validateTypes(context); // Persist the results of validation before returning to ensure validation\n // does not run multiple times for this schema.\n\n var errors = context.getErrors();\n schema.__validationErrors = errors;\n return errors;\n}\n/**\n * Utility function which asserts a schema is valid by throwing an error if\n * it is invalid.\n */\n\nfunction assertValidSchema(schema) {\n var errors = validateSchema(schema);\n\n if (errors.length !== 0) {\n throw new Error(errors.map(function (error) {\n return error.message;\n }).join('\\n\\n'));\n }\n}\n\nvar SchemaValidationContext = /*#__PURE__*/function () {\n function SchemaValidationContext(schema) {\n this._errors = [];\n this.schema = schema;\n }\n\n var _proto = SchemaValidationContext.prototype;\n\n _proto.reportError = function reportError(message, nodes) {\n var _nodes = Array.isArray(nodes) ? nodes.filter(Boolean) : nodes;\n\n this.addError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLError\"](message, _nodes));\n };\n\n _proto.addError = function addError(error) {\n this._errors.push(error);\n };\n\n _proto.getErrors = function getErrors() {\n return this._errors;\n };\n\n return SchemaValidationContext;\n}();\n\nfunction validateRootTypes(context) {\n var schema = context.schema;\n var queryType = schema.getQueryType();\n\n if (!queryType) {\n context.reportError('Query root type must be provided.', schema.astNode);\n } else if (!Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isObjectType\"])(queryType)) {\n var _getOperationTypeNode;\n\n context.reportError(\"Query root type must be Object type, it cannot be \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(queryType), \".\"), (_getOperationTypeNode = getOperationTypeNode(schema, 'query')) !== null && _getOperationTypeNode !== void 0 ? _getOperationTypeNode : queryType.astNode);\n }\n\n var mutationType = schema.getMutationType();\n\n if (mutationType && !Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isObjectType\"])(mutationType)) {\n var _getOperationTypeNode2;\n\n context.reportError('Mutation root type must be Object type if provided, it cannot be ' + \"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(mutationType), \".\"), (_getOperationTypeNode2 = getOperationTypeNode(schema, 'mutation')) !== null && _getOperationTypeNode2 !== void 0 ? _getOperationTypeNode2 : mutationType.astNode);\n }\n\n var subscriptionType = schema.getSubscriptionType();\n\n if (subscriptionType && !Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isObjectType\"])(subscriptionType)) {\n var _getOperationTypeNode3;\n\n context.reportError('Subscription root type must be Object type if provided, it cannot be ' + \"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(subscriptionType), \".\"), (_getOperationTypeNode3 = getOperationTypeNode(schema, 'subscription')) !== null && _getOperationTypeNode3 !== void 0 ? _getOperationTypeNode3 : subscriptionType.astNode);\n }\n}\n\nfunction getOperationTypeNode(schema, operation) {\n var operationNodes = getAllSubNodes(schema, function (node) {\n return node.operationTypes;\n });\n\n for (var _i2 = 0; _i2 < operationNodes.length; _i2++) {\n var node = operationNodes[_i2];\n\n if (node.operation === operation) {\n return node.type;\n }\n }\n\n return undefined;\n}\n\nfunction validateDirectives(context) {\n for (var _i4 = 0, _context$schema$getDi2 = context.schema.getDirectives(); _i4 < _context$schema$getDi2.length; _i4++) {\n var directive = _context$schema$getDi2[_i4];\n\n // Ensure all directives are in fact GraphQL directives.\n if (!Object(_directives_mjs__WEBPACK_IMPORTED_MODULE_9__[\"isDirective\"])(directive)) {\n context.reportError(\"Expected directive but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(directive), \".\"), directive === null || directive === void 0 ? void 0 : directive.astNode);\n continue;\n } // Ensure they are named correctly.\n\n\n validateName(context, directive); // TODO: Ensure proper locations.\n // Ensure the arguments are valid.\n\n for (var _i6 = 0, _directive$args2 = directive.args; _i6 < _directive$args2.length; _i6++) {\n var arg = _directive$args2[_i6];\n // Ensure they are named correctly.\n validateName(context, arg); // Ensure the type is an input type.\n\n if (!Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isInputType\"])(arg.type)) {\n context.reportError(\"The type of @\".concat(directive.name, \"(\").concat(arg.name, \":) must be Input Type \") + \"but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(arg.type), \".\"), arg.astNode);\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isRequiredArgument\"])(arg) && arg.deprecationReason != null) {\n var _arg$astNode;\n\n context.reportError(\"Required argument @\".concat(directive.name, \"(\").concat(arg.name, \":) cannot be deprecated.\"), [getDeprecatedDirectiveNode(arg.astNode), // istanbul ignore next (TODO need to write coverage tests)\n (_arg$astNode = arg.astNode) === null || _arg$astNode === void 0 ? void 0 : _arg$astNode.type]);\n }\n }\n }\n}\n\nfunction validateName(context, node) {\n // Ensure names are valid, however introspection types opt out.\n var error = Object(_utilities_assertValidName_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isValidNameError\"])(node.name);\n\n if (error) {\n context.addError(Object(_error_locatedError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"locatedError\"])(error, node.astNode));\n }\n}\n\nfunction validateTypes(context) {\n var validateInputObjectCircularRefs = createInputObjectCircularRefsValidator(context);\n var typeMap = context.schema.getTypeMap();\n\n for (var _i8 = 0, _objectValues2 = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(typeMap); _i8 < _objectValues2.length; _i8++) {\n var type = _objectValues2[_i8];\n\n // Ensure all provided types are in fact GraphQL type.\n if (!Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isNamedType\"])(type)) {\n context.reportError(\"Expected GraphQL named type but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \".\"), type.astNode);\n continue;\n } // Ensure it is named correctly (excluding introspection types).\n\n\n if (!Object(_introspection_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isIntrospectionType\"])(type)) {\n validateName(context, type);\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isObjectType\"])(type)) {\n // Ensure fields are valid\n validateFields(context, type); // Ensure objects implement the interfaces they claim to.\n\n validateInterfaces(context, type);\n } else if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isInterfaceType\"])(type)) {\n // Ensure fields are valid.\n validateFields(context, type); // Ensure interfaces implement the interfaces they claim to.\n\n validateInterfaces(context, type);\n } else if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isUnionType\"])(type)) {\n // Ensure Unions include valid member types.\n validateUnionMembers(context, type);\n } else if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isEnumType\"])(type)) {\n // Ensure Enums have valid values.\n validateEnumValues(context, type);\n } else if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isInputObjectType\"])(type)) {\n // Ensure Input Object fields are valid.\n validateInputFields(context, type); // Ensure Input Objects do not contain non-nullable circular references\n\n validateInputObjectCircularRefs(type);\n }\n }\n}\n\nfunction validateFields(context, type) {\n var fields = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type.getFields()); // Objects and Interfaces both must define one or more fields.\n\n if (fields.length === 0) {\n context.reportError(\"Type \".concat(type.name, \" must define one or more fields.\"), getAllNodes(type));\n }\n\n for (var _i10 = 0; _i10 < fields.length; _i10++) {\n var field = fields[_i10];\n // Ensure they are named correctly.\n validateName(context, field); // Ensure the type is an output type\n\n if (!Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isOutputType\"])(field.type)) {\n var _field$astNode;\n\n context.reportError(\"The type of \".concat(type.name, \".\").concat(field.name, \" must be Output Type \") + \"but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(field.type), \".\"), (_field$astNode = field.astNode) === null || _field$astNode === void 0 ? void 0 : _field$astNode.type);\n } // Ensure the arguments are valid\n\n\n for (var _i12 = 0, _field$args2 = field.args; _i12 < _field$args2.length; _i12++) {\n var arg = _field$args2[_i12];\n var argName = arg.name; // Ensure they are named correctly.\n\n validateName(context, arg); // Ensure the type is an input type\n\n if (!Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isInputType\"])(arg.type)) {\n var _arg$astNode2;\n\n context.reportError(\"The type of \".concat(type.name, \".\").concat(field.name, \"(\").concat(argName, \":) must be Input \") + \"Type but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(arg.type), \".\"), (_arg$astNode2 = arg.astNode) === null || _arg$astNode2 === void 0 ? void 0 : _arg$astNode2.type);\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isRequiredArgument\"])(arg) && arg.deprecationReason != null) {\n var _arg$astNode3;\n\n context.reportError(\"Required argument \".concat(type.name, \".\").concat(field.name, \"(\").concat(argName, \":) cannot be deprecated.\"), [getDeprecatedDirectiveNode(arg.astNode), // istanbul ignore next (TODO need to write coverage tests)\n (_arg$astNode3 = arg.astNode) === null || _arg$astNode3 === void 0 ? void 0 : _arg$astNode3.type]);\n }\n }\n }\n}\n\nfunction validateInterfaces(context, type) {\n var ifaceTypeNames = Object.create(null);\n\n for (var _i14 = 0, _type$getInterfaces2 = type.getInterfaces(); _i14 < _type$getInterfaces2.length; _i14++) {\n var iface = _type$getInterfaces2[_i14];\n\n if (!Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isInterfaceType\"])(iface)) {\n context.reportError(\"Type \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \" must only implement Interface types, \") + \"it cannot implement \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(iface), \".\"), getAllImplementsInterfaceNodes(type, iface));\n continue;\n }\n\n if (type === iface) {\n context.reportError(\"Type \".concat(type.name, \" cannot implement itself because it would create a circular reference.\"), getAllImplementsInterfaceNodes(type, iface));\n continue;\n }\n\n if (ifaceTypeNames[iface.name]) {\n context.reportError(\"Type \".concat(type.name, \" can only implement \").concat(iface.name, \" once.\"), getAllImplementsInterfaceNodes(type, iface));\n continue;\n }\n\n ifaceTypeNames[iface.name] = true;\n validateTypeImplementsAncestors(context, type, iface);\n validateTypeImplementsInterface(context, type, iface);\n }\n}\n\nfunction validateTypeImplementsInterface(context, type, iface) {\n var typeFieldMap = type.getFields(); // Assert each interface field is implemented.\n\n for (var _i16 = 0, _objectValues4 = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(iface.getFields()); _i16 < _objectValues4.length; _i16++) {\n var ifaceField = _objectValues4[_i16];\n var fieldName = ifaceField.name;\n var typeField = typeFieldMap[fieldName]; // Assert interface field exists on type.\n\n if (!typeField) {\n context.reportError(\"Interface field \".concat(iface.name, \".\").concat(fieldName, \" expected but \").concat(type.name, \" does not provide it.\"), [ifaceField.astNode].concat(getAllNodes(type)));\n continue;\n } // Assert interface field type is satisfied by type field type, by being\n // a valid subtype. (covariant)\n\n\n if (!Object(_utilities_typeComparators_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isTypeSubTypeOf\"])(context.schema, typeField.type, ifaceField.type)) {\n var _ifaceField$astNode, _typeField$astNode;\n\n context.reportError(\"Interface field \".concat(iface.name, \".\").concat(fieldName, \" expects type \") + \"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(ifaceField.type), \" but \").concat(type.name, \".\").concat(fieldName, \" \") + \"is type \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(typeField.type), \".\"), [// istanbul ignore next (TODO need to write coverage tests)\n (_ifaceField$astNode = ifaceField.astNode) === null || _ifaceField$astNode === void 0 ? void 0 : _ifaceField$astNode.type, // istanbul ignore next (TODO need to write coverage tests)\n (_typeField$astNode = typeField.astNode) === null || _typeField$astNode === void 0 ? void 0 : _typeField$astNode.type]);\n } // Assert each interface field arg is implemented.\n\n\n var _loop = function _loop(_i18, _ifaceField$args2) {\n var ifaceArg = _ifaceField$args2[_i18];\n var argName = ifaceArg.name;\n var typeArg = Object(_polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(typeField.args, function (arg) {\n return arg.name === argName;\n }); // Assert interface field arg exists on object field.\n\n if (!typeArg) {\n context.reportError(\"Interface field argument \".concat(iface.name, \".\").concat(fieldName, \"(\").concat(argName, \":) expected but \").concat(type.name, \".\").concat(fieldName, \" does not provide it.\"), [ifaceArg.astNode, typeField.astNode]);\n return \"continue\";\n } // Assert interface field arg type matches object field arg type.\n // (invariant)\n // TODO: change to contravariant?\n\n\n if (!Object(_utilities_typeComparators_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isEqualType\"])(ifaceArg.type, typeArg.type)) {\n var _ifaceArg$astNode, _typeArg$astNode;\n\n context.reportError(\"Interface field argument \".concat(iface.name, \".\").concat(fieldName, \"(\").concat(argName, \":) \") + \"expects type \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(ifaceArg.type), \" but \") + \"\".concat(type.name, \".\").concat(fieldName, \"(\").concat(argName, \":) is type \") + \"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(typeArg.type), \".\"), [// istanbul ignore next (TODO need to write coverage tests)\n (_ifaceArg$astNode = ifaceArg.astNode) === null || _ifaceArg$astNode === void 0 ? void 0 : _ifaceArg$astNode.type, // istanbul ignore next (TODO need to write coverage tests)\n (_typeArg$astNode = typeArg.astNode) === null || _typeArg$astNode === void 0 ? void 0 : _typeArg$astNode.type]);\n } // TODO: validate default values?\n\n };\n\n for (var _i18 = 0, _ifaceField$args2 = ifaceField.args; _i18 < _ifaceField$args2.length; _i18++) {\n var _ret = _loop(_i18, _ifaceField$args2);\n\n if (_ret === \"continue\") continue;\n } // Assert additional arguments must not be required.\n\n\n var _loop2 = function _loop2(_i20, _typeField$args2) {\n var typeArg = _typeField$args2[_i20];\n var argName = typeArg.name;\n var ifaceArg = Object(_polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(ifaceField.args, function (arg) {\n return arg.name === argName;\n });\n\n if (!ifaceArg && Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isRequiredArgument\"])(typeArg)) {\n context.reportError(\"Object field \".concat(type.name, \".\").concat(fieldName, \" includes required argument \").concat(argName, \" that is missing from the Interface field \").concat(iface.name, \".\").concat(fieldName, \".\"), [typeArg.astNode, ifaceField.astNode]);\n }\n };\n\n for (var _i20 = 0, _typeField$args2 = typeField.args; _i20 < _typeField$args2.length; _i20++) {\n _loop2(_i20, _typeField$args2);\n }\n }\n}\n\nfunction validateTypeImplementsAncestors(context, type, iface) {\n var ifaceInterfaces = type.getInterfaces();\n\n for (var _i22 = 0, _iface$getInterfaces2 = iface.getInterfaces(); _i22 < _iface$getInterfaces2.length; _i22++) {\n var transitive = _iface$getInterfaces2[_i22];\n\n if (ifaceInterfaces.indexOf(transitive) === -1) {\n context.reportError(transitive === type ? \"Type \".concat(type.name, \" cannot implement \").concat(iface.name, \" because it would create a circular reference.\") : \"Type \".concat(type.name, \" must implement \").concat(transitive.name, \" because it is implemented by \").concat(iface.name, \".\"), [].concat(getAllImplementsInterfaceNodes(iface, transitive), getAllImplementsInterfaceNodes(type, iface)));\n }\n }\n}\n\nfunction validateUnionMembers(context, union) {\n var memberTypes = union.getTypes();\n\n if (memberTypes.length === 0) {\n context.reportError(\"Union type \".concat(union.name, \" must define one or more member types.\"), getAllNodes(union));\n }\n\n var includedTypeNames = Object.create(null);\n\n for (var _i24 = 0; _i24 < memberTypes.length; _i24++) {\n var memberType = memberTypes[_i24];\n\n if (includedTypeNames[memberType.name]) {\n context.reportError(\"Union type \".concat(union.name, \" can only include type \").concat(memberType.name, \" once.\"), getUnionMemberTypeNodes(union, memberType.name));\n continue;\n }\n\n includedTypeNames[memberType.name] = true;\n\n if (!Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isObjectType\"])(memberType)) {\n context.reportError(\"Union type \".concat(union.name, \" can only include Object types, \") + \"it cannot include \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(memberType), \".\"), getUnionMemberTypeNodes(union, String(memberType)));\n }\n }\n}\n\nfunction validateEnumValues(context, enumType) {\n var enumValues = enumType.getValues();\n\n if (enumValues.length === 0) {\n context.reportError(\"Enum type \".concat(enumType.name, \" must define one or more values.\"), getAllNodes(enumType));\n }\n\n for (var _i26 = 0; _i26 < enumValues.length; _i26++) {\n var enumValue = enumValues[_i26];\n var valueName = enumValue.name; // Ensure valid name.\n\n validateName(context, enumValue);\n\n if (valueName === 'true' || valueName === 'false' || valueName === 'null') {\n context.reportError(\"Enum type \".concat(enumType.name, \" cannot include value: \").concat(valueName, \".\"), enumValue.astNode);\n }\n }\n}\n\nfunction validateInputFields(context, inputObj) {\n var fields = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(inputObj.getFields());\n\n if (fields.length === 0) {\n context.reportError(\"Input Object type \".concat(inputObj.name, \" must define one or more fields.\"), getAllNodes(inputObj));\n } // Ensure the arguments are valid\n\n\n for (var _i28 = 0; _i28 < fields.length; _i28++) {\n var field = fields[_i28];\n // Ensure they are named correctly.\n validateName(context, field); // Ensure the type is an input type\n\n if (!Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isInputType\"])(field.type)) {\n var _field$astNode2;\n\n context.reportError(\"The type of \".concat(inputObj.name, \".\").concat(field.name, \" must be Input Type \") + \"but got: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(field.type), \".\"), (_field$astNode2 = field.astNode) === null || _field$astNode2 === void 0 ? void 0 : _field$astNode2.type);\n }\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isRequiredInputField\"])(field) && field.deprecationReason != null) {\n var _field$astNode3;\n\n context.reportError(\"Required input field \".concat(inputObj.name, \".\").concat(field.name, \" cannot be deprecated.\"), [getDeprecatedDirectiveNode(field.astNode), // istanbul ignore next (TODO need to write coverage tests)\n (_field$astNode3 = field.astNode) === null || _field$astNode3 === void 0 ? void 0 : _field$astNode3.type]);\n }\n }\n}\n\nfunction createInputObjectCircularRefsValidator(context) {\n // Modified copy of algorithm from 'src/validation/rules/NoFragmentCycles.js'.\n // Tracks already visited types to maintain O(N) and to ensure that cycles\n // are not redundantly reported.\n var visitedTypes = Object.create(null); // Array of types nodes used to produce meaningful errors\n\n var fieldPath = []; // Position in the type path\n\n var fieldPathIndexByTypeName = Object.create(null);\n return detectCycleRecursive; // This does a straight-forward DFS to find cycles.\n // It does not terminate when a cycle was found but continues to explore\n // the graph to find all possible cycles.\n\n function detectCycleRecursive(inputObj) {\n if (visitedTypes[inputObj.name]) {\n return;\n }\n\n visitedTypes[inputObj.name] = true;\n fieldPathIndexByTypeName[inputObj.name] = fieldPath.length;\n var fields = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(inputObj.getFields());\n\n for (var _i30 = 0; _i30 < fields.length; _i30++) {\n var field = fields[_i30];\n\n if (Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isNonNullType\"])(field.type) && Object(_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isInputObjectType\"])(field.type.ofType)) {\n var fieldType = field.type.ofType;\n var cycleIndex = fieldPathIndexByTypeName[fieldType.name];\n fieldPath.push(field);\n\n if (cycleIndex === undefined) {\n detectCycleRecursive(fieldType);\n } else {\n var cyclePath = fieldPath.slice(cycleIndex);\n var pathStr = cyclePath.map(function (fieldObj) {\n return fieldObj.name;\n }).join('.');\n context.reportError(\"Cannot reference Input Object \\\"\".concat(fieldType.name, \"\\\" within itself through a series of non-null fields: \\\"\").concat(pathStr, \"\\\".\"), cyclePath.map(function (fieldObj) {\n return fieldObj.astNode;\n }));\n }\n\n fieldPath.pop();\n }\n }\n\n fieldPathIndexByTypeName[inputObj.name] = undefined;\n }\n}\n\nfunction getAllNodes(object) {\n var astNode = object.astNode,\n extensionASTNodes = object.extensionASTNodes;\n return astNode ? extensionASTNodes ? [astNode].concat(extensionASTNodes) : [astNode] : extensionASTNodes !== null && extensionASTNodes !== void 0 ? extensionASTNodes : [];\n}\n\nfunction getAllSubNodes(object, getter) {\n var subNodes = [];\n\n for (var _i32 = 0, _getAllNodes2 = getAllNodes(object); _i32 < _getAllNodes2.length; _i32++) {\n var _getter;\n\n var node = _getAllNodes2[_i32];\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n subNodes = subNodes.concat((_getter = getter(node)) !== null && _getter !== void 0 ? _getter : []);\n }\n\n return subNodes;\n}\n\nfunction getAllImplementsInterfaceNodes(type, iface) {\n return getAllSubNodes(type, function (typeNode) {\n return typeNode.interfaces;\n }).filter(function (ifaceNode) {\n return ifaceNode.name.value === iface.name;\n });\n}\n\nfunction getUnionMemberTypeNodes(union, typeName) {\n return getAllSubNodes(union, function (unionNode) {\n return unionNode.types;\n }).filter(function (typeNode) {\n return typeNode.name.value === typeName;\n });\n}\n\nfunction getDeprecatedDirectiveNode(definitionNode) {\n var _definitionNode$direc;\n\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n return definitionNode === null || definitionNode === void 0 ? void 0 : (_definitionNode$direc = definitionNode.directives) === null || _definitionNode$direc === void 0 ? void 0 : _definitionNode$direc.find(function (node) {\n return node.name.value === _directives_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLDeprecatedDirective\"].name;\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/type/validate.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/TypeInfo.mjs": /*!*****************************************************!*\ !*** ./node_modules/graphql/utilities/TypeInfo.mjs ***! \*****************************************************/ /*! exports provided: TypeInfo, visitWithTypeInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TypeInfo\", function() { return TypeInfo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"visitWithTypeInfo\", function() { return visitWithTypeInfo; });\n/* harmony import */ var _polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/find.mjs */ \"./node_modules/graphql/polyfills/find.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_ast_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../language/ast.mjs */ \"./node_modules/graphql/language/ast.mjs\");\n/* harmony import */ var _language_visitor_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../language/visitor.mjs */ \"./node_modules/graphql/language/visitor.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../type/introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n/* harmony import */ var _typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./typeFromAST.mjs */ \"./node_modules/graphql/utilities/typeFromAST.mjs\");\n\n\n\n\n\n\n\n/**\n * TypeInfo is a utility class which, given a GraphQL schema, can keep track\n * of the current field and type definitions at any point in a GraphQL document\n * AST during a recursive descent by calling `enter(node)` and `leave(node)`.\n */\n\nvar TypeInfo = /*#__PURE__*/function () {\n function TypeInfo(schema, // NOTE: this experimental optional second parameter is only needed in order\n // to support non-spec-compliant code bases. You should never need to use it.\n // It may disappear in the future.\n getFieldDefFn, // Initial type may be provided in rare cases to facilitate traversals\n // beginning somewhere other than documents.\n initialType) {\n this._schema = schema;\n this._typeStack = [];\n this._parentTypeStack = [];\n this._inputTypeStack = [];\n this._fieldDefStack = [];\n this._defaultValueStack = [];\n this._directive = null;\n this._argument = null;\n this._enumValue = null;\n this._getFieldDef = getFieldDefFn !== null && getFieldDefFn !== void 0 ? getFieldDefFn : getFieldDef;\n\n if (initialType) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isInputType\"])(initialType)) {\n this._inputTypeStack.push(initialType);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isCompositeType\"])(initialType)) {\n this._parentTypeStack.push(initialType);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isOutputType\"])(initialType)) {\n this._typeStack.push(initialType);\n }\n }\n }\n\n var _proto = TypeInfo.prototype;\n\n _proto.getType = function getType() {\n if (this._typeStack.length > 0) {\n return this._typeStack[this._typeStack.length - 1];\n }\n };\n\n _proto.getParentType = function getParentType() {\n if (this._parentTypeStack.length > 0) {\n return this._parentTypeStack[this._parentTypeStack.length - 1];\n }\n };\n\n _proto.getInputType = function getInputType() {\n if (this._inputTypeStack.length > 0) {\n return this._inputTypeStack[this._inputTypeStack.length - 1];\n }\n };\n\n _proto.getParentInputType = function getParentInputType() {\n if (this._inputTypeStack.length > 1) {\n return this._inputTypeStack[this._inputTypeStack.length - 2];\n }\n };\n\n _proto.getFieldDef = function getFieldDef() {\n if (this._fieldDefStack.length > 0) {\n return this._fieldDefStack[this._fieldDefStack.length - 1];\n }\n };\n\n _proto.getDefaultValue = function getDefaultValue() {\n if (this._defaultValueStack.length > 0) {\n return this._defaultValueStack[this._defaultValueStack.length - 1];\n }\n };\n\n _proto.getDirective = function getDirective() {\n return this._directive;\n };\n\n _proto.getArgument = function getArgument() {\n return this._argument;\n };\n\n _proto.getEnumValue = function getEnumValue() {\n return this._enumValue;\n };\n\n _proto.enter = function enter(node) {\n var schema = this._schema; // Note: many of the types below are explicitly typed as \"mixed\" to drop\n // any assumptions of a valid schema to ensure runtime types are properly\n // checked before continuing since TypeInfo is used as part of validation\n // which occurs before guarantees of schema and document validity.\n\n switch (node.kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SELECTION_SET:\n {\n var namedType = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"getNamedType\"])(this.getType());\n\n this._parentTypeStack.push(Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isCompositeType\"])(namedType) ? namedType : undefined);\n\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FIELD:\n {\n var parentType = this.getParentType();\n var fieldDef;\n var fieldType;\n\n if (parentType) {\n fieldDef = this._getFieldDef(schema, parentType, node);\n\n if (fieldDef) {\n fieldType = fieldDef.type;\n }\n }\n\n this._fieldDefStack.push(fieldDef);\n\n this._typeStack.push(Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isOutputType\"])(fieldType) ? fieldType : undefined);\n\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].DIRECTIVE:\n this._directive = schema.getDirective(node.name.value);\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OPERATION_DEFINITION:\n {\n var type;\n\n switch (node.operation) {\n case 'query':\n type = schema.getQueryType();\n break;\n\n case 'mutation':\n type = schema.getMutationType();\n break;\n\n case 'subscription':\n type = schema.getSubscriptionType();\n break;\n }\n\n this._typeStack.push(Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isObjectType\"])(type) ? type : undefined);\n\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].INLINE_FRAGMENT:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FRAGMENT_DEFINITION:\n {\n var typeConditionAST = node.typeCondition;\n var outputType = typeConditionAST ? Object(_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_6__[\"typeFromAST\"])(schema, typeConditionAST) : Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"getNamedType\"])(this.getType());\n\n this._typeStack.push(Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isOutputType\"])(outputType) ? outputType : undefined);\n\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].VARIABLE_DEFINITION:\n {\n var inputType = Object(_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_6__[\"typeFromAST\"])(schema, node.type);\n\n this._inputTypeStack.push(Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isInputType\"])(inputType) ? inputType : undefined);\n\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ARGUMENT:\n {\n var _this$getDirective;\n\n var argDef;\n var argType;\n var fieldOrDirective = (_this$getDirective = this.getDirective()) !== null && _this$getDirective !== void 0 ? _this$getDirective : this.getFieldDef();\n\n if (fieldOrDirective) {\n argDef = Object(_polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(fieldOrDirective.args, function (arg) {\n return arg.name === node.name.value;\n });\n\n if (argDef) {\n argType = argDef.type;\n }\n }\n\n this._argument = argDef;\n\n this._defaultValueStack.push(argDef ? argDef.defaultValue : undefined);\n\n this._inputTypeStack.push(Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isInputType\"])(argType) ? argType : undefined);\n\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].LIST:\n {\n var listType = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"getNullableType\"])(this.getInputType());\n var itemType = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isListType\"])(listType) ? listType.ofType : listType; // List positions never have a default value.\n\n this._defaultValueStack.push(undefined);\n\n this._inputTypeStack.push(Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isInputType\"])(itemType) ? itemType : undefined);\n\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OBJECT_FIELD:\n {\n var objectType = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"getNamedType\"])(this.getInputType());\n var inputFieldType;\n var inputField;\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isInputObjectType\"])(objectType)) {\n inputField = objectType.getFields()[node.name.value];\n\n if (inputField) {\n inputFieldType = inputField.type;\n }\n }\n\n this._defaultValueStack.push(inputField ? inputField.defaultValue : undefined);\n\n this._inputTypeStack.push(Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isInputType\"])(inputFieldType) ? inputFieldType : undefined);\n\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ENUM:\n {\n var enumType = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"getNamedType\"])(this.getInputType());\n var enumValue;\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isEnumType\"])(enumType)) {\n enumValue = enumType.getValue(node.value);\n }\n\n this._enumValue = enumValue;\n break;\n }\n }\n };\n\n _proto.leave = function leave(node) {\n switch (node.kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SELECTION_SET:\n this._parentTypeStack.pop();\n\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FIELD:\n this._fieldDefStack.pop();\n\n this._typeStack.pop();\n\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].DIRECTIVE:\n this._directive = null;\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OPERATION_DEFINITION:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].INLINE_FRAGMENT:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].FRAGMENT_DEFINITION:\n this._typeStack.pop();\n\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].VARIABLE_DEFINITION:\n this._inputTypeStack.pop();\n\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ARGUMENT:\n this._argument = null;\n\n this._defaultValueStack.pop();\n\n this._inputTypeStack.pop();\n\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].LIST:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OBJECT_FIELD:\n this._defaultValueStack.pop();\n\n this._inputTypeStack.pop();\n\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].ENUM:\n this._enumValue = null;\n break;\n }\n };\n\n return TypeInfo;\n}();\n/**\n * Not exactly the same as the executor's definition of getFieldDef, in this\n * statically evaluated environment we do not always have an Object type,\n * and need to handle Interface and Union types.\n */\n\nfunction getFieldDef(schema, parentType, fieldNode) {\n var name = fieldNode.name.value;\n\n if (name === _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__[\"SchemaMetaFieldDef\"].name && schema.getQueryType() === parentType) {\n return _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__[\"SchemaMetaFieldDef\"];\n }\n\n if (name === _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__[\"TypeMetaFieldDef\"].name && schema.getQueryType() === parentType) {\n return _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__[\"TypeMetaFieldDef\"];\n }\n\n if (name === _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__[\"TypeNameMetaFieldDef\"].name && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isCompositeType\"])(parentType)) {\n return _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__[\"TypeNameMetaFieldDef\"];\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isObjectType\"])(parentType) || Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_4__[\"isInterfaceType\"])(parentType)) {\n return parentType.getFields()[name];\n }\n}\n/**\n * Creates a new visitor instance which maintains a provided TypeInfo instance\n * along with visiting visitor.\n */\n\n\nfunction visitWithTypeInfo(typeInfo, visitor) {\n return {\n enter: function enter(node) {\n typeInfo.enter(node);\n var fn = Object(_language_visitor_mjs__WEBPACK_IMPORTED_MODULE_3__[\"getVisitFn\"])(visitor, node.kind,\n /* isLeaving */\n false);\n\n if (fn) {\n var result = fn.apply(visitor, arguments);\n\n if (result !== undefined) {\n typeInfo.leave(node);\n\n if (Object(_language_ast_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isNode\"])(result)) {\n typeInfo.enter(result);\n }\n }\n\n return result;\n }\n },\n leave: function leave(node) {\n var fn = Object(_language_visitor_mjs__WEBPACK_IMPORTED_MODULE_3__[\"getVisitFn\"])(visitor, node.kind,\n /* isLeaving */\n true);\n var result;\n\n if (fn) {\n result = fn.apply(visitor, arguments);\n }\n\n typeInfo.leave(node);\n return result;\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/TypeInfo.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/assertValidName.mjs": /*!************************************************************!*\ !*** ./node_modules/graphql/utilities/assertValidName.mjs ***! \************************************************************/ /*! exports provided: assertValidName, isValidNameError */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertValidName\", function() { return assertValidName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isValidNameError\", function() { return isValidNameError; });\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\nvar NAME_RX = /^[_a-zA-Z][_a-zA-Z0-9]*$/;\n/**\n * Upholds the spec rules about naming.\n */\n\nfunction assertValidName(name) {\n var error = isValidNameError(name);\n\n if (error) {\n throw error;\n }\n\n return name;\n}\n/**\n * Returns an Error if a name is invalid.\n */\n\nfunction isValidNameError(name) {\n typeof name === 'string' || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(0, 'Expected name to be a string.');\n\n if (name.length > 1 && name[0] === '_' && name[1] === '_') {\n return new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Name \\\"\".concat(name, \"\\\" must not begin with \\\"__\\\", which is reserved by GraphQL introspection.\"));\n }\n\n if (!NAME_RX.test(name)) {\n return new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Names must match /^[_a-zA-Z][_a-zA-Z0-9]*$/ but \\\"\".concat(name, \"\\\" does not.\"));\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/assertValidName.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/astFromValue.mjs": /*!*********************************************************!*\ !*** ./node_modules/graphql/utilities/astFromValue.mjs ***! \*********************************************************/ /*! exports provided: astFromValue */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"astFromValue\", function() { return astFromValue; });\n/* harmony import */ var _polyfills_isFinite_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/isFinite.mjs */ \"./node_modules/graphql/polyfills/isFinite.mjs\");\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/isObjectLike.mjs */ \"./node_modules/graphql/jsutils/isObjectLike.mjs\");\n/* harmony import */ var _jsutils_safeArrayFrom_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../jsutils/safeArrayFrom.mjs */ \"./node_modules/graphql/jsutils/safeArrayFrom.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _type_scalars_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../type/scalars.mjs */ \"./node_modules/graphql/type/scalars.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n\n\n\n\n\n/**\n * Produces a GraphQL Value AST given a JavaScript object.\n * Function will match JavaScript/JSON values to GraphQL AST schema format\n * by using suggested GraphQLInputType. For example:\n *\n * astFromValue(\"value\", GraphQLString)\n *\n * A GraphQL type must be provided, which will be used to interpret different\n * JavaScript values.\n *\n * | JSON Value | GraphQL Value |\n * | ------------- | -------------------- |\n * | Object | Input Object |\n * | Array | List |\n * | Boolean | Boolean |\n * | String | String / Enum Value |\n * | Number | Int / Float |\n * | Mixed | Enum Value |\n * | null | NullValue |\n *\n */\n\nfunction astFromValue(value, type) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNonNullType\"])(type)) {\n var astValue = astFromValue(value, type.ofType);\n\n if ((astValue === null || astValue === void 0 ? void 0 : astValue.kind) === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].NULL) {\n return null;\n }\n\n return astValue;\n } // only explicit null, not undefined, NaN\n\n\n if (value === null) {\n return {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].NULL\n };\n } // undefined\n\n\n if (value === undefined) {\n return null;\n } // Convert JavaScript array to GraphQL list. If the GraphQLType is a list, but\n // the value is not an array, convert the value using the list's item type.\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isListType\"])(type)) {\n var itemType = type.ofType;\n var items = Object(_jsutils_safeArrayFrom_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(value);\n\n if (items != null) {\n var valuesNodes = [];\n\n for (var _i2 = 0; _i2 < items.length; _i2++) {\n var item = items[_i2];\n var itemNode = astFromValue(item, itemType);\n\n if (itemNode != null) {\n valuesNodes.push(itemNode);\n }\n }\n\n return {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].LIST,\n values: valuesNodes\n };\n }\n\n return astFromValue(value, itemType);\n } // Populate the fields of the input object by creating ASTs from each value\n // in the JavaScript object according to the fields in the input type.\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInputObjectType\"])(type)) {\n if (!Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(value)) {\n return null;\n }\n\n var fieldNodes = [];\n\n for (var _i4 = 0, _objectValues2 = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type.getFields()); _i4 < _objectValues2.length; _i4++) {\n var field = _objectValues2[_i4];\n var fieldValue = astFromValue(value[field.name], field.type);\n\n if (fieldValue) {\n fieldNodes.push({\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].OBJECT_FIELD,\n name: {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].NAME,\n value: field.name\n },\n value: fieldValue\n });\n }\n }\n\n return {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].OBJECT,\n fields: fieldNodes\n };\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isLeafType\"])(type)) {\n // Since value is an internally represented value, it must be serialized\n // to an externally represented value before converting into an AST.\n var serialized = type.serialize(value);\n\n if (serialized == null) {\n return null;\n } // Others serialize based on their corresponding JavaScript scalar types.\n\n\n if (typeof serialized === 'boolean') {\n return {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].BOOLEAN,\n value: serialized\n };\n } // JavaScript numbers can be Int or Float values.\n\n\n if (typeof serialized === 'number' && Object(_polyfills_isFinite_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(serialized)) {\n var stringNum = String(serialized);\n return integerStringRegExp.test(stringNum) ? {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].INT,\n value: stringNum\n } : {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].FLOAT,\n value: stringNum\n };\n }\n\n if (typeof serialized === 'string') {\n // Enum types use Enum literals.\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isEnumType\"])(type)) {\n return {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].ENUM,\n value: serialized\n };\n } // ID types can use Int literals.\n\n\n if (type === _type_scalars_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLID\"] && integerStringRegExp.test(serialized)) {\n return {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].INT,\n value: serialized\n };\n }\n\n return {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].STRING,\n value: serialized\n };\n }\n\n throw new TypeError(\"Cannot convert value to AST: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(serialized), \".\"));\n } // istanbul ignore next (Not reachable. All possible input types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(0, 'Unexpected input type: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type));\n}\n/**\n * IntValue:\n * - NegativeSign? 0\n * - NegativeSign? NonZeroDigit ( Digit+ )?\n */\n\nvar integerStringRegExp = /^-?(?:0|[1-9][0-9]*)$/;\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/astFromValue.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/buildASTSchema.mjs": /*!***********************************************************!*\ !*** ./node_modules/graphql/utilities/buildASTSchema.mjs ***! \***********************************************************/ /*! exports provided: buildASTSchema, buildSchema */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildASTSchema\", function() { return buildASTSchema; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildSchema\", function() { return buildSchema; });\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_parser_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../language/parser.mjs */ \"./node_modules/graphql/language/parser.mjs\");\n/* harmony import */ var _validation_validate_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../validation/validate.mjs */ \"./node_modules/graphql/validation/validate.mjs\");\n/* harmony import */ var _type_schema_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../type/schema.mjs */ \"./node_modules/graphql/type/schema.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony import */ var _extendSchema_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./extendSchema.mjs */ \"./node_modules/graphql/utilities/extendSchema.mjs\");\n\n\n\n\n\n\n\n\n/**\n * This takes the ast of a schema document produced by the parse function in\n * src/language/parser.js.\n *\n * If no schema definition is provided, then it will look for types named Query\n * and Mutation.\n *\n * Given that AST it constructs a GraphQLSchema. The resulting schema\n * has no resolve methods, so execution will use default resolvers.\n *\n * Accepts options as a second argument:\n *\n * - commentDescriptions:\n * Provide true to use preceding comments as the description.\n *\n */\nfunction buildASTSchema(documentAST, options) {\n documentAST != null && documentAST.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].DOCUMENT || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(0, 'Must provide valid Document AST.');\n\n if ((options === null || options === void 0 ? void 0 : options.assumeValid) !== true && (options === null || options === void 0 ? void 0 : options.assumeValidSDL) !== true) {\n Object(_validation_validate_mjs__WEBPACK_IMPORTED_MODULE_3__[\"assertValidSDL\"])(documentAST);\n }\n\n var emptySchemaConfig = {\n description: undefined,\n types: [],\n directives: [],\n extensions: undefined,\n extensionASTNodes: [],\n assumeValid: false\n };\n var config = Object(_extendSchema_mjs__WEBPACK_IMPORTED_MODULE_6__[\"extendSchemaImpl\"])(emptySchemaConfig, documentAST, options);\n\n if (config.astNode == null) {\n for (var _i2 = 0, _config$types2 = config.types; _i2 < _config$types2.length; _i2++) {\n var type = _config$types2[_i2];\n\n switch (type.name) {\n // Note: While this could make early assertions to get the correctly\n // typed values below, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable results.\n case 'Query':\n config.query = type;\n break;\n\n case 'Mutation':\n config.mutation = type;\n break;\n\n case 'Subscription':\n config.subscription = type;\n break;\n }\n }\n }\n\n var directives = config.directives; // If specified directives were not explicitly declared, add them.\n\n var _loop = function _loop(_i4) {\n var stdDirective = _type_directives_mjs__WEBPACK_IMPORTED_MODULE_5__[\"specifiedDirectives\"][_i4];\n\n if (directives.every(function (directive) {\n return directive.name !== stdDirective.name;\n })) {\n directives.push(stdDirective);\n }\n };\n\n for (var _i4 = 0; _i4 < _type_directives_mjs__WEBPACK_IMPORTED_MODULE_5__[\"specifiedDirectives\"].length; _i4++) {\n _loop(_i4);\n }\n\n return new _type_schema_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLSchema\"](config);\n}\n/**\n * A helper function to build a GraphQLSchema directly from a source\n * document.\n */\n\nfunction buildSchema(source, options) {\n var document = Object(_language_parser_mjs__WEBPACK_IMPORTED_MODULE_2__[\"parse\"])(source, {\n noLocation: options === null || options === void 0 ? void 0 : options.noLocation,\n allowLegacySDLEmptyFields: options === null || options === void 0 ? void 0 : options.allowLegacySDLEmptyFields,\n allowLegacySDLImplementsInterfaces: options === null || options === void 0 ? void 0 : options.allowLegacySDLImplementsInterfaces,\n experimentalFragmentVariables: options === null || options === void 0 ? void 0 : options.experimentalFragmentVariables\n });\n return buildASTSchema(document, {\n commentDescriptions: options === null || options === void 0 ? void 0 : options.commentDescriptions,\n assumeValidSDL: options === null || options === void 0 ? void 0 : options.assumeValidSDL,\n assumeValid: options === null || options === void 0 ? void 0 : options.assumeValid\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/buildASTSchema.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/buildClientSchema.mjs": /*!**************************************************************!*\ !*** ./node_modules/graphql/utilities/buildClientSchema.mjs ***! \**************************************************************/ /*! exports provided: buildClientSchema */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildClientSchema\", function() { return buildClientSchema; });\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/keyValMap.mjs */ \"./node_modules/graphql/jsutils/keyValMap.mjs\");\n/* harmony import */ var _jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/isObjectLike.mjs */ \"./node_modules/graphql/jsutils/isObjectLike.mjs\");\n/* harmony import */ var _language_parser_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../language/parser.mjs */ \"./node_modules/graphql/language/parser.mjs\");\n/* harmony import */ var _type_schema_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../type/schema.mjs */ \"./node_modules/graphql/type/schema.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony import */ var _type_scalars_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../type/scalars.mjs */ \"./node_modules/graphql/type/scalars.mjs\");\n/* harmony import */ var _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../type/introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./valueFromAST.mjs */ \"./node_modules/graphql/utilities/valueFromAST.mjs\");\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Build a GraphQLSchema for use by client tools.\n *\n * Given the result of a client running the introspection query, creates and\n * returns a GraphQLSchema instance which can be then used with all graphql-js\n * tools, but cannot be used to execute a query, as introspection does not\n * represent the \"resolver\", \"parse\" or \"serialize\" functions or any other\n * server-internal mechanisms.\n *\n * This function expects a complete introspection result. Don't forget to check\n * the \"errors\" field of a server response before calling this function.\n */\n\nfunction buildClientSchema(introspection, options) {\n Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(introspection) && Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(introspection.__schema) || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, \"Invalid or incomplete introspection result. Ensure that you are passing \\\"data\\\" property of introspection response and no \\\"errors\\\" was returned alongside: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(introspection), \".\")); // Get the schema from the introspection result.\n\n var schemaIntrospection = introspection.__schema; // Iterate through all types, getting the type definition for each.\n\n var typeMap = Object(_jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(schemaIntrospection.types, function (typeIntrospection) {\n return typeIntrospection.name;\n }, function (typeIntrospection) {\n return buildType(typeIntrospection);\n }); // Include standard types only if they are used.\n\n for (var _i2 = 0, _ref2 = [].concat(_type_scalars_mjs__WEBPACK_IMPORTED_MODULE_8__[\"specifiedScalarTypes\"], _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"introspectionTypes\"]); _i2 < _ref2.length; _i2++) {\n var stdType = _ref2[_i2];\n\n if (typeMap[stdType.name]) {\n typeMap[stdType.name] = stdType;\n }\n } // Get the root Query, Mutation, and Subscription types.\n\n\n var queryType = schemaIntrospection.queryType ? getObjectType(schemaIntrospection.queryType) : null;\n var mutationType = schemaIntrospection.mutationType ? getObjectType(schemaIntrospection.mutationType) : null;\n var subscriptionType = schemaIntrospection.subscriptionType ? getObjectType(schemaIntrospection.subscriptionType) : null; // Get the directives supported by Introspection, assuming empty-set if\n // directives were not queried for.\n\n var directives = schemaIntrospection.directives ? schemaIntrospection.directives.map(buildDirective) : []; // Then produce and return a Schema with these types.\n\n return new _type_schema_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLSchema\"]({\n description: schemaIntrospection.description,\n query: queryType,\n mutation: mutationType,\n subscription: subscriptionType,\n types: Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(typeMap),\n directives: directives,\n assumeValid: options === null || options === void 0 ? void 0 : options.assumeValid\n }); // Given a type reference in introspection, return the GraphQLType instance.\n // preferring cached instances before building new instances.\n\n function getType(typeRef) {\n if (typeRef.kind === _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"TypeKind\"].LIST) {\n var itemRef = typeRef.ofType;\n\n if (!itemRef) {\n throw new Error('Decorated type deeper than introspection query.');\n }\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLList\"](getType(itemRef));\n }\n\n if (typeRef.kind === _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"TypeKind\"].NON_NULL) {\n var nullableRef = typeRef.ofType;\n\n if (!nullableRef) {\n throw new Error('Decorated type deeper than introspection query.');\n }\n\n var nullableType = getType(nullableRef);\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLNonNull\"](Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"assertNullableType\"])(nullableType));\n }\n\n return getNamedType(typeRef);\n }\n\n function getNamedType(typeRef) {\n var typeName = typeRef.name;\n\n if (!typeName) {\n throw new Error(\"Unknown type reference: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(typeRef), \".\"));\n }\n\n var type = typeMap[typeName];\n\n if (!type) {\n throw new Error(\"Invalid or incomplete schema, unknown type: \".concat(typeName, \". Ensure that a full introspection query is used in order to build a client schema.\"));\n }\n\n return type;\n }\n\n function getObjectType(typeRef) {\n return Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"assertObjectType\"])(getNamedType(typeRef));\n }\n\n function getInterfaceType(typeRef) {\n return Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"assertInterfaceType\"])(getNamedType(typeRef));\n } // Given a type's introspection result, construct the correct\n // GraphQLType instance.\n\n\n function buildType(type) {\n if (type != null && type.name != null && type.kind != null) {\n switch (type.kind) {\n case _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"TypeKind\"].SCALAR:\n return buildScalarDef(type);\n\n case _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"TypeKind\"].OBJECT:\n return buildObjectDef(type);\n\n case _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"TypeKind\"].INTERFACE:\n return buildInterfaceDef(type);\n\n case _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"TypeKind\"].UNION:\n return buildUnionDef(type);\n\n case _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"TypeKind\"].ENUM:\n return buildEnumDef(type);\n\n case _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"TypeKind\"].INPUT_OBJECT:\n return buildInputObjectDef(type);\n }\n }\n\n var typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type);\n throw new Error(\"Invalid or incomplete introspection result. Ensure that a full introspection query is used in order to build a client schema: \".concat(typeStr, \".\"));\n }\n\n function buildScalarDef(scalarIntrospection) {\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLScalarType\"]({\n name: scalarIntrospection.name,\n description: scalarIntrospection.description,\n specifiedByUrl: scalarIntrospection.specifiedByUrl\n });\n }\n\n function buildImplementationsList(implementingIntrospection) {\n // TODO: Temporary workaround until GraphQL ecosystem will fully support\n // 'interfaces' on interface types.\n if (implementingIntrospection.interfaces === null && implementingIntrospection.kind === _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_9__[\"TypeKind\"].INTERFACE) {\n return [];\n }\n\n if (!implementingIntrospection.interfaces) {\n var implementingIntrospectionStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(implementingIntrospection);\n throw new Error(\"Introspection result missing interfaces: \".concat(implementingIntrospectionStr, \".\"));\n }\n\n return implementingIntrospection.interfaces.map(getInterfaceType);\n }\n\n function buildObjectDef(objectIntrospection) {\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLObjectType\"]({\n name: objectIntrospection.name,\n description: objectIntrospection.description,\n interfaces: function interfaces() {\n return buildImplementationsList(objectIntrospection);\n },\n fields: function fields() {\n return buildFieldDefMap(objectIntrospection);\n }\n });\n }\n\n function buildInterfaceDef(interfaceIntrospection) {\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLInterfaceType\"]({\n name: interfaceIntrospection.name,\n description: interfaceIntrospection.description,\n interfaces: function interfaces() {\n return buildImplementationsList(interfaceIntrospection);\n },\n fields: function fields() {\n return buildFieldDefMap(interfaceIntrospection);\n }\n });\n }\n\n function buildUnionDef(unionIntrospection) {\n if (!unionIntrospection.possibleTypes) {\n var unionIntrospectionStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(unionIntrospection);\n throw new Error(\"Introspection result missing possibleTypes: \".concat(unionIntrospectionStr, \".\"));\n }\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLUnionType\"]({\n name: unionIntrospection.name,\n description: unionIntrospection.description,\n types: function types() {\n return unionIntrospection.possibleTypes.map(getObjectType);\n }\n });\n }\n\n function buildEnumDef(enumIntrospection) {\n if (!enumIntrospection.enumValues) {\n var enumIntrospectionStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(enumIntrospection);\n throw new Error(\"Introspection result missing enumValues: \".concat(enumIntrospectionStr, \".\"));\n }\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLEnumType\"]({\n name: enumIntrospection.name,\n description: enumIntrospection.description,\n values: Object(_jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(enumIntrospection.enumValues, function (valueIntrospection) {\n return valueIntrospection.name;\n }, function (valueIntrospection) {\n return {\n description: valueIntrospection.description,\n deprecationReason: valueIntrospection.deprecationReason\n };\n })\n });\n }\n\n function buildInputObjectDef(inputObjectIntrospection) {\n if (!inputObjectIntrospection.inputFields) {\n var inputObjectIntrospectionStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(inputObjectIntrospection);\n throw new Error(\"Introspection result missing inputFields: \".concat(inputObjectIntrospectionStr, \".\"));\n }\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"GraphQLInputObjectType\"]({\n name: inputObjectIntrospection.name,\n description: inputObjectIntrospection.description,\n fields: function fields() {\n return buildInputValueDefMap(inputObjectIntrospection.inputFields);\n }\n });\n }\n\n function buildFieldDefMap(typeIntrospection) {\n if (!typeIntrospection.fields) {\n throw new Error(\"Introspection result missing fields: \".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(typeIntrospection), \".\"));\n }\n\n return Object(_jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(typeIntrospection.fields, function (fieldIntrospection) {\n return fieldIntrospection.name;\n }, buildField);\n }\n\n function buildField(fieldIntrospection) {\n var type = getType(fieldIntrospection.type);\n\n if (!Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isOutputType\"])(type)) {\n var typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type);\n throw new Error(\"Introspection must provide output type for fields, but received: \".concat(typeStr, \".\"));\n }\n\n if (!fieldIntrospection.args) {\n var fieldIntrospectionStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(fieldIntrospection);\n throw new Error(\"Introspection result missing field args: \".concat(fieldIntrospectionStr, \".\"));\n }\n\n return {\n description: fieldIntrospection.description,\n deprecationReason: fieldIntrospection.deprecationReason,\n type: type,\n args: buildInputValueDefMap(fieldIntrospection.args)\n };\n }\n\n function buildInputValueDefMap(inputValueIntrospections) {\n return Object(_jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(inputValueIntrospections, function (inputValue) {\n return inputValue.name;\n }, buildInputValue);\n }\n\n function buildInputValue(inputValueIntrospection) {\n var type = getType(inputValueIntrospection.type);\n\n if (!Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isInputType\"])(type)) {\n var typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type);\n throw new Error(\"Introspection must provide input type for arguments, but received: \".concat(typeStr, \".\"));\n }\n\n var defaultValue = inputValueIntrospection.defaultValue != null ? Object(_valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_11__[\"valueFromAST\"])(Object(_language_parser_mjs__WEBPACK_IMPORTED_MODULE_5__[\"parseValue\"])(inputValueIntrospection.defaultValue), type) : undefined;\n return {\n description: inputValueIntrospection.description,\n type: type,\n defaultValue: defaultValue,\n deprecationReason: inputValueIntrospection.deprecationReason\n };\n }\n\n function buildDirective(directiveIntrospection) {\n if (!directiveIntrospection.args) {\n var directiveIntrospectionStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(directiveIntrospection);\n throw new Error(\"Introspection result missing directive args: \".concat(directiveIntrospectionStr, \".\"));\n }\n\n if (!directiveIntrospection.locations) {\n var _directiveIntrospectionStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(directiveIntrospection);\n\n throw new Error(\"Introspection result missing directive locations: \".concat(_directiveIntrospectionStr, \".\"));\n }\n\n return new _type_directives_mjs__WEBPACK_IMPORTED_MODULE_7__[\"GraphQLDirective\"]({\n name: directiveIntrospection.name,\n description: directiveIntrospection.description,\n isRepeatable: directiveIntrospection.isRepeatable,\n locations: directiveIntrospection.locations.slice(),\n args: buildInputValueDefMap(directiveIntrospection.args)\n });\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/buildClientSchema.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/coerceInputValue.mjs": /*!*************************************************************!*\ !*** ./node_modules/graphql/utilities/coerceInputValue.mjs ***! \*************************************************************/ /*! exports provided: coerceInputValue */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"coerceInputValue\", function() { return coerceInputValue; });\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/didYouMean.mjs */ \"./node_modules/graphql/jsutils/didYouMean.mjs\");\n/* harmony import */ var _jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/isObjectLike.mjs */ \"./node_modules/graphql/jsutils/isObjectLike.mjs\");\n/* harmony import */ var _jsutils_safeArrayFrom_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../jsutils/safeArrayFrom.mjs */ \"./node_modules/graphql/jsutils/safeArrayFrom.mjs\");\n/* harmony import */ var _jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../jsutils/suggestionList.mjs */ \"./node_modules/graphql/jsutils/suggestionList.mjs\");\n/* harmony import */ var _jsutils_printPathArray_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../jsutils/printPathArray.mjs */ \"./node_modules/graphql/jsutils/printPathArray.mjs\");\n/* harmony import */ var _jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../jsutils/Path.mjs */ \"./node_modules/graphql/jsutils/Path.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Coerces a JavaScript value given a GraphQL Input Type.\n */\nfunction coerceInputValue(inputValue, type) {\n var onError = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : defaultOnError;\n return coerceInputValueImpl(inputValue, type, onError);\n}\n\nfunction defaultOnError(path, invalidValue, error) {\n var errorPrefix = 'Invalid value ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(invalidValue);\n\n if (path.length > 0) {\n errorPrefix += \" at \\\"value\".concat(Object(_jsutils_printPathArray_mjs__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(path), \"\\\"\");\n }\n\n error.message = errorPrefix + ': ' + error.message;\n throw error;\n}\n\nfunction coerceInputValueImpl(inputValue, type, onError, path) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isNonNullType\"])(type)) {\n if (inputValue != null) {\n return coerceInputValueImpl(inputValue, type.ofType, onError, path);\n }\n\n onError(Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__[\"pathToArray\"])(path), inputValue, new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLError\"](\"Expected non-nullable type \\\"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type), \"\\\" not to be null.\")));\n return;\n }\n\n if (inputValue == null) {\n // Explicitly return the value null.\n return null;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isListType\"])(type)) {\n var itemType = type.ofType;\n var coercedList = Object(_jsutils_safeArrayFrom_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(inputValue, function (itemValue, index) {\n var itemPath = Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__[\"addPath\"])(path, index, undefined);\n return coerceInputValueImpl(itemValue, itemType, onError, itemPath);\n });\n\n if (coercedList != null) {\n return coercedList;\n } // Lists accept a non-list value as a list of one.\n\n\n return [coerceInputValueImpl(inputValue, itemType, onError, path)];\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isInputObjectType\"])(type)) {\n if (!Object(_jsutils_isObjectLike_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(inputValue)) {\n onError(Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__[\"pathToArray\"])(path), inputValue, new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLError\"](\"Expected type \\\"\".concat(type.name, \"\\\" to be an object.\")));\n return;\n }\n\n var coercedValue = {};\n var fieldDefs = type.getFields();\n\n for (var _i2 = 0, _objectValues2 = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(fieldDefs); _i2 < _objectValues2.length; _i2++) {\n var field = _objectValues2[_i2];\n var fieldValue = inputValue[field.name];\n\n if (fieldValue === undefined) {\n if (field.defaultValue !== undefined) {\n coercedValue[field.name] = field.defaultValue;\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isNonNullType\"])(field.type)) {\n var typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(field.type);\n onError(Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__[\"pathToArray\"])(path), inputValue, new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLError\"](\"Field \\\"\".concat(field.name, \"\\\" of required type \\\"\").concat(typeStr, \"\\\" was not provided.\")));\n }\n\n continue;\n }\n\n coercedValue[field.name] = coerceInputValueImpl(fieldValue, field.type, onError, Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__[\"addPath\"])(path, field.name, type.name));\n } // Ensure every provided field is defined.\n\n\n for (var _i4 = 0, _Object$keys2 = Object.keys(inputValue); _i4 < _Object$keys2.length; _i4++) {\n var fieldName = _Object$keys2[_i4];\n\n if (!fieldDefs[fieldName]) {\n var suggestions = Object(_jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(fieldName, Object.keys(type.getFields()));\n onError(Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__[\"pathToArray\"])(path), inputValue, new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLError\"](\"Field \\\"\".concat(fieldName, \"\\\" is not defined by type \\\"\").concat(type.name, \"\\\".\") + Object(_jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(suggestions)));\n }\n }\n\n return coercedValue;\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_10__[\"isLeafType\"])(type)) {\n var parseResult; // Scalars and Enums determine if a input value is valid via parseValue(),\n // which can throw to indicate failure. If it throws, maintain a reference\n // to the original error.\n\n try {\n parseResult = type.parseValue(inputValue);\n } catch (error) {\n if (error instanceof _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLError\"]) {\n onError(Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__[\"pathToArray\"])(path), inputValue, error);\n } else {\n onError(Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__[\"pathToArray\"])(path), inputValue, new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLError\"](\"Expected type \\\"\".concat(type.name, \"\\\". \") + error.message, undefined, undefined, undefined, undefined, error));\n }\n\n return;\n }\n\n if (parseResult === undefined) {\n onError(Object(_jsutils_Path_mjs__WEBPACK_IMPORTED_MODULE_8__[\"pathToArray\"])(path), inputValue, new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_9__[\"GraphQLError\"](\"Expected type \\\"\".concat(type.name, \"\\\".\")));\n }\n\n return parseResult;\n } // istanbul ignore next (Not reachable. All possible input types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, 'Unexpected input type: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type));\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/coerceInputValue.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/concatAST.mjs": /*!******************************************************!*\ !*** ./node_modules/graphql/utilities/concatAST.mjs ***! \******************************************************/ /*! exports provided: concatAST */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"concatAST\", function() { return concatAST; });\n/**\n * Provided a collection of ASTs, presumably each from different files,\n * concatenate the ASTs together into batched AST, useful for validating many\n * GraphQL source files which together represent one conceptual application.\n */\nfunction concatAST(documents) {\n var definitions = [];\n\n for (var _i2 = 0; _i2 < documents.length; _i2++) {\n var doc = documents[_i2];\n definitions = definitions.concat(doc.definitions);\n }\n\n return {\n kind: 'Document',\n definitions: definitions\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/concatAST.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/extendSchema.mjs": /*!*********************************************************!*\ !*** ./node_modules/graphql/utilities/extendSchema.mjs ***! \*********************************************************/ /*! exports provided: extendSchema, extendSchemaImpl, getDescription */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extendSchema\", function() { return extendSchema; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extendSchemaImpl\", function() { return extendSchemaImpl; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getDescription\", function() { return getDescription; });\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/keyMap.mjs */ \"./node_modules/graphql/jsutils/keyMap.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/mapValue.mjs */ \"./node_modules/graphql/jsutils/mapValue.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../language/tokenKind.mjs */ \"./node_modules/graphql/language/tokenKind.mjs\");\n/* harmony import */ var _language_blockString_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../language/blockString.mjs */ \"./node_modules/graphql/language/blockString.mjs\");\n/* harmony import */ var _language_predicates_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../language/predicates.mjs */ \"./node_modules/graphql/language/predicates.mjs\");\n/* harmony import */ var _validation_validate_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../validation/validate.mjs */ \"./node_modules/graphql/validation/validate.mjs\");\n/* harmony import */ var _execution_values_mjs__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../execution/values.mjs */ \"./node_modules/graphql/execution/values.mjs\");\n/* harmony import */ var _type_schema_mjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../type/schema.mjs */ \"./node_modules/graphql/type/schema.mjs\");\n/* harmony import */ var _type_scalars_mjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../type/scalars.mjs */ \"./node_modules/graphql/type/scalars.mjs\");\n/* harmony import */ var _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../type/introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./valueFromAST.mjs */ \"./node_modules/graphql/utilities/valueFromAST.mjs\");\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Produces a new schema given an existing schema and a document which may\n * contain GraphQL type extensions and definitions. The original schema will\n * remain unaltered.\n *\n * Because a schema represents a graph of references, a schema cannot be\n * extended without effectively making an entire copy. We do not know until it's\n * too late if subgraphs remain unchanged.\n *\n * This algorithm copies the provided schema, applying extensions while\n * producing the copy. The original schema remains unaltered.\n *\n * Accepts options as a third argument:\n *\n * - commentDescriptions:\n * Provide true to use preceding comments as the description.\n *\n */\nfunction extendSchema(schema, documentAST, options) {\n Object(_type_schema_mjs__WEBPACK_IMPORTED_MODULE_12__[\"assertSchema\"])(schema);\n documentAST != null && documentAST.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].DOCUMENT || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(0, 'Must provide valid Document AST.');\n\n if ((options === null || options === void 0 ? void 0 : options.assumeValid) !== true && (options === null || options === void 0 ? void 0 : options.assumeValidSDL) !== true) {\n Object(_validation_validate_mjs__WEBPACK_IMPORTED_MODULE_10__[\"assertValidSDLExtension\"])(documentAST, schema);\n }\n\n var schemaConfig = schema.toConfig();\n var extendedConfig = extendSchemaImpl(schemaConfig, documentAST, options);\n return schemaConfig === extendedConfig ? schema : new _type_schema_mjs__WEBPACK_IMPORTED_MODULE_12__[\"GraphQLSchema\"](extendedConfig);\n}\n/**\n * @internal\n */\n\nfunction extendSchemaImpl(schemaConfig, documentAST, options) {\n var _schemaDef, _schemaDef$descriptio, _schemaDef2, _options$assumeValid;\n\n // Collect the type definitions and extensions found in the document.\n var typeDefs = [];\n var typeExtensionsMap = Object.create(null); // New directives and types are separate because a directives and types can\n // have the same name. For example, a type named \"skip\".\n\n var directiveDefs = [];\n var schemaDef; // Schema extensions are collected which may add additional operation types.\n\n var schemaExtensions = [];\n\n for (var _i2 = 0, _documentAST$definiti2 = documentAST.definitions; _i2 < _documentAST$definiti2.length; _i2++) {\n var def = _documentAST$definiti2[_i2];\n\n if (def.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].SCHEMA_DEFINITION) {\n schemaDef = def;\n } else if (def.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].SCHEMA_EXTENSION) {\n schemaExtensions.push(def);\n } else if (Object(_language_predicates_mjs__WEBPACK_IMPORTED_MODULE_9__[\"isTypeDefinitionNode\"])(def)) {\n typeDefs.push(def);\n } else if (Object(_language_predicates_mjs__WEBPACK_IMPORTED_MODULE_9__[\"isTypeExtensionNode\"])(def)) {\n var extendedTypeName = def.name.value;\n var existingTypeExtensions = typeExtensionsMap[extendedTypeName];\n typeExtensionsMap[extendedTypeName] = existingTypeExtensions ? existingTypeExtensions.concat([def]) : [def];\n } else if (def.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].DIRECTIVE_DEFINITION) {\n directiveDefs.push(def);\n }\n } // If this document contains no new types, extensions, or directives then\n // return the same unmodified GraphQLSchema instance.\n\n\n if (Object.keys(typeExtensionsMap).length === 0 && typeDefs.length === 0 && directiveDefs.length === 0 && schemaExtensions.length === 0 && schemaDef == null) {\n return schemaConfig;\n }\n\n var typeMap = Object.create(null);\n\n for (var _i4 = 0, _schemaConfig$types2 = schemaConfig.types; _i4 < _schemaConfig$types2.length; _i4++) {\n var existingType = _schemaConfig$types2[_i4];\n typeMap[existingType.name] = extendNamedType(existingType);\n }\n\n for (var _i6 = 0; _i6 < typeDefs.length; _i6++) {\n var _stdTypeMap$name;\n\n var typeNode = typeDefs[_i6];\n var name = typeNode.name.value;\n typeMap[name] = (_stdTypeMap$name = stdTypeMap[name]) !== null && _stdTypeMap$name !== void 0 ? _stdTypeMap$name : buildType(typeNode);\n }\n\n var operationTypes = _objectSpread(_objectSpread({\n // Get the extended root operation types.\n query: schemaConfig.query && replaceNamedType(schemaConfig.query),\n mutation: schemaConfig.mutation && replaceNamedType(schemaConfig.mutation),\n subscription: schemaConfig.subscription && replaceNamedType(schemaConfig.subscription)\n }, schemaDef && getOperationTypes([schemaDef])), getOperationTypes(schemaExtensions)); // Then produce and return a Schema config with these types.\n\n\n return _objectSpread(_objectSpread({\n description: (_schemaDef = schemaDef) === null || _schemaDef === void 0 ? void 0 : (_schemaDef$descriptio = _schemaDef.description) === null || _schemaDef$descriptio === void 0 ? void 0 : _schemaDef$descriptio.value\n }, operationTypes), {}, {\n types: Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(typeMap),\n directives: [].concat(schemaConfig.directives.map(replaceDirective), directiveDefs.map(buildDirective)),\n extensions: undefined,\n astNode: (_schemaDef2 = schemaDef) !== null && _schemaDef2 !== void 0 ? _schemaDef2 : schemaConfig.astNode,\n extensionASTNodes: schemaConfig.extensionASTNodes.concat(schemaExtensions),\n assumeValid: (_options$assumeValid = options === null || options === void 0 ? void 0 : options.assumeValid) !== null && _options$assumeValid !== void 0 ? _options$assumeValid : false\n }); // Below are functions used for producing this schema that have closed over\n // this scope and have access to the schema, cache, and newly defined types.\n\n function replaceType(type) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isListType\"])(type)) {\n // $FlowFixMe[incompatible-return]\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLList\"](replaceType(type.ofType));\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isNonNullType\"])(type)) {\n // $FlowFixMe[incompatible-return]\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLNonNull\"](replaceType(type.ofType));\n }\n\n return replaceNamedType(type);\n }\n\n function replaceNamedType(type) {\n // Note: While this could make early assertions to get the correctly\n // typed values, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable results.\n return typeMap[type.name];\n }\n\n function replaceDirective(directive) {\n var config = directive.toConfig();\n return new _type_directives_mjs__WEBPACK_IMPORTED_MODULE_15__[\"GraphQLDirective\"](_objectSpread(_objectSpread({}, config), {}, {\n args: Object(_jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(config.args, extendArg)\n }));\n }\n\n function extendNamedType(type) {\n if (Object(_type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__[\"isIntrospectionType\"])(type) || Object(_type_scalars_mjs__WEBPACK_IMPORTED_MODULE_13__[\"isSpecifiedScalarType\"])(type)) {\n // Builtin types are not extended.\n return type;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isScalarType\"])(type)) {\n return extendScalarType(type);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isObjectType\"])(type)) {\n return extendObjectType(type);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isInterfaceType\"])(type)) {\n return extendInterfaceType(type);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isUnionType\"])(type)) {\n return extendUnionType(type);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isEnumType\"])(type)) {\n return extendEnumType(type);\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"isInputObjectType\"])(type)) {\n return extendInputObjectType(type);\n } // istanbul ignore next (Not reachable. All possible types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(0, 'Unexpected type: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type));\n }\n\n function extendInputObjectType(type) {\n var _typeExtensionsMap$co;\n\n var config = type.toConfig();\n var extensions = (_typeExtensionsMap$co = typeExtensionsMap[config.name]) !== null && _typeExtensionsMap$co !== void 0 ? _typeExtensionsMap$co : [];\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLInputObjectType\"](_objectSpread(_objectSpread({}, config), {}, {\n fields: function fields() {\n return _objectSpread(_objectSpread({}, Object(_jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(config.fields, function (field) {\n return _objectSpread(_objectSpread({}, field), {}, {\n type: replaceType(field.type)\n });\n })), buildInputFieldMap(extensions));\n },\n extensionASTNodes: config.extensionASTNodes.concat(extensions)\n }));\n }\n\n function extendEnumType(type) {\n var _typeExtensionsMap$ty;\n\n var config = type.toConfig();\n var extensions = (_typeExtensionsMap$ty = typeExtensionsMap[type.name]) !== null && _typeExtensionsMap$ty !== void 0 ? _typeExtensionsMap$ty : [];\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLEnumType\"](_objectSpread(_objectSpread({}, config), {}, {\n values: _objectSpread(_objectSpread({}, config.values), buildEnumValueMap(extensions)),\n extensionASTNodes: config.extensionASTNodes.concat(extensions)\n }));\n }\n\n function extendScalarType(type) {\n var _typeExtensionsMap$co2;\n\n var config = type.toConfig();\n var extensions = (_typeExtensionsMap$co2 = typeExtensionsMap[config.name]) !== null && _typeExtensionsMap$co2 !== void 0 ? _typeExtensionsMap$co2 : [];\n var specifiedByUrl = config.specifiedByUrl;\n\n for (var _i8 = 0; _i8 < extensions.length; _i8++) {\n var _getSpecifiedByUrl;\n\n var extensionNode = extensions[_i8];\n specifiedByUrl = (_getSpecifiedByUrl = getSpecifiedByUrl(extensionNode)) !== null && _getSpecifiedByUrl !== void 0 ? _getSpecifiedByUrl : specifiedByUrl;\n }\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLScalarType\"](_objectSpread(_objectSpread({}, config), {}, {\n specifiedByUrl: specifiedByUrl,\n extensionASTNodes: config.extensionASTNodes.concat(extensions)\n }));\n }\n\n function extendObjectType(type) {\n var _typeExtensionsMap$co3;\n\n var config = type.toConfig();\n var extensions = (_typeExtensionsMap$co3 = typeExtensionsMap[config.name]) !== null && _typeExtensionsMap$co3 !== void 0 ? _typeExtensionsMap$co3 : [];\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLObjectType\"](_objectSpread(_objectSpread({}, config), {}, {\n interfaces: function interfaces() {\n return [].concat(type.getInterfaces().map(replaceNamedType), buildInterfaces(extensions));\n },\n fields: function fields() {\n return _objectSpread(_objectSpread({}, Object(_jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(config.fields, extendField)), buildFieldMap(extensions));\n },\n extensionASTNodes: config.extensionASTNodes.concat(extensions)\n }));\n }\n\n function extendInterfaceType(type) {\n var _typeExtensionsMap$co4;\n\n var config = type.toConfig();\n var extensions = (_typeExtensionsMap$co4 = typeExtensionsMap[config.name]) !== null && _typeExtensionsMap$co4 !== void 0 ? _typeExtensionsMap$co4 : [];\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLInterfaceType\"](_objectSpread(_objectSpread({}, config), {}, {\n interfaces: function interfaces() {\n return [].concat(type.getInterfaces().map(replaceNamedType), buildInterfaces(extensions));\n },\n fields: function fields() {\n return _objectSpread(_objectSpread({}, Object(_jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(config.fields, extendField)), buildFieldMap(extensions));\n },\n extensionASTNodes: config.extensionASTNodes.concat(extensions)\n }));\n }\n\n function extendUnionType(type) {\n var _typeExtensionsMap$co5;\n\n var config = type.toConfig();\n var extensions = (_typeExtensionsMap$co5 = typeExtensionsMap[config.name]) !== null && _typeExtensionsMap$co5 !== void 0 ? _typeExtensionsMap$co5 : [];\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLUnionType\"](_objectSpread(_objectSpread({}, config), {}, {\n types: function types() {\n return [].concat(type.getTypes().map(replaceNamedType), buildUnionTypes(extensions));\n },\n extensionASTNodes: config.extensionASTNodes.concat(extensions)\n }));\n }\n\n function extendField(field) {\n return _objectSpread(_objectSpread({}, field), {}, {\n type: replaceType(field.type),\n // $FlowFixMe[incompatible-call]\n args: Object(_jsutils_mapValue_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(field.args, extendArg)\n });\n }\n\n function extendArg(arg) {\n return _objectSpread(_objectSpread({}, arg), {}, {\n type: replaceType(arg.type)\n });\n }\n\n function getOperationTypes(nodes) {\n var opTypes = {};\n\n for (var _i10 = 0; _i10 < nodes.length; _i10++) {\n var _node$operationTypes;\n\n var node = nodes[_i10];\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var operationTypesNodes = (_node$operationTypes = node.operationTypes) !== null && _node$operationTypes !== void 0 ? _node$operationTypes : [];\n\n for (var _i12 = 0; _i12 < operationTypesNodes.length; _i12++) {\n var operationType = operationTypesNodes[_i12];\n opTypes[operationType.operation] = getNamedType(operationType.type);\n }\n } // Note: While this could make early assertions to get the correctly\n // typed values below, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable results.\n\n\n return opTypes;\n }\n\n function getNamedType(node) {\n var _stdTypeMap$name2;\n\n var name = node.name.value;\n var type = (_stdTypeMap$name2 = stdTypeMap[name]) !== null && _stdTypeMap$name2 !== void 0 ? _stdTypeMap$name2 : typeMap[name];\n\n if (type === undefined) {\n throw new Error(\"Unknown type: \\\"\".concat(name, \"\\\".\"));\n }\n\n return type;\n }\n\n function getWrappedType(node) {\n if (node.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].LIST_TYPE) {\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLList\"](getWrappedType(node.type));\n }\n\n if (node.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].NON_NULL_TYPE) {\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLNonNull\"](getWrappedType(node.type));\n }\n\n return getNamedType(node);\n }\n\n function buildDirective(node) {\n var locations = node.locations.map(function (_ref) {\n var value = _ref.value;\n return value;\n });\n return new _type_directives_mjs__WEBPACK_IMPORTED_MODULE_15__[\"GraphQLDirective\"]({\n name: node.name.value,\n description: getDescription(node, options),\n locations: locations,\n isRepeatable: node.repeatable,\n args: buildArgumentMap(node.arguments),\n astNode: node\n });\n }\n\n function buildFieldMap(nodes) {\n var fieldConfigMap = Object.create(null);\n\n for (var _i14 = 0; _i14 < nodes.length; _i14++) {\n var _node$fields;\n\n var node = nodes[_i14];\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var nodeFields = (_node$fields = node.fields) !== null && _node$fields !== void 0 ? _node$fields : [];\n\n for (var _i16 = 0; _i16 < nodeFields.length; _i16++) {\n var field = nodeFields[_i16];\n fieldConfigMap[field.name.value] = {\n // Note: While this could make assertions to get the correctly typed\n // value, that would throw immediately while type system validation\n // with validateSchema() will produce more actionable results.\n type: getWrappedType(field.type),\n description: getDescription(field, options),\n args: buildArgumentMap(field.arguments),\n deprecationReason: getDeprecationReason(field),\n astNode: field\n };\n }\n }\n\n return fieldConfigMap;\n }\n\n function buildArgumentMap(args) {\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var argsNodes = args !== null && args !== void 0 ? args : [];\n var argConfigMap = Object.create(null);\n\n for (var _i18 = 0; _i18 < argsNodes.length; _i18++) {\n var arg = argsNodes[_i18];\n // Note: While this could make assertions to get the correctly typed\n // value, that would throw immediately while type system validation\n // with validateSchema() will produce more actionable results.\n var type = getWrappedType(arg.type);\n argConfigMap[arg.name.value] = {\n type: type,\n description: getDescription(arg, options),\n defaultValue: Object(_valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_17__[\"valueFromAST\"])(arg.defaultValue, type),\n deprecationReason: getDeprecationReason(arg),\n astNode: arg\n };\n }\n\n return argConfigMap;\n }\n\n function buildInputFieldMap(nodes) {\n var inputFieldMap = Object.create(null);\n\n for (var _i20 = 0; _i20 < nodes.length; _i20++) {\n var _node$fields2;\n\n var node = nodes[_i20];\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var fieldsNodes = (_node$fields2 = node.fields) !== null && _node$fields2 !== void 0 ? _node$fields2 : [];\n\n for (var _i22 = 0; _i22 < fieldsNodes.length; _i22++) {\n var field = fieldsNodes[_i22];\n // Note: While this could make assertions to get the correctly typed\n // value, that would throw immediately while type system validation\n // with validateSchema() will produce more actionable results.\n var type = getWrappedType(field.type);\n inputFieldMap[field.name.value] = {\n type: type,\n description: getDescription(field, options),\n defaultValue: Object(_valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_17__[\"valueFromAST\"])(field.defaultValue, type),\n deprecationReason: getDeprecationReason(field),\n astNode: field\n };\n }\n }\n\n return inputFieldMap;\n }\n\n function buildEnumValueMap(nodes) {\n var enumValueMap = Object.create(null);\n\n for (var _i24 = 0; _i24 < nodes.length; _i24++) {\n var _node$values;\n\n var node = nodes[_i24];\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var valuesNodes = (_node$values = node.values) !== null && _node$values !== void 0 ? _node$values : [];\n\n for (var _i26 = 0; _i26 < valuesNodes.length; _i26++) {\n var value = valuesNodes[_i26];\n enumValueMap[value.name.value] = {\n description: getDescription(value, options),\n deprecationReason: getDeprecationReason(value),\n astNode: value\n };\n }\n }\n\n return enumValueMap;\n }\n\n function buildInterfaces(nodes) {\n var interfaces = [];\n\n for (var _i28 = 0; _i28 < nodes.length; _i28++) {\n var _node$interfaces;\n\n var node = nodes[_i28];\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var interfacesNodes = (_node$interfaces = node.interfaces) !== null && _node$interfaces !== void 0 ? _node$interfaces : [];\n\n for (var _i30 = 0; _i30 < interfacesNodes.length; _i30++) {\n var type = interfacesNodes[_i30];\n // Note: While this could make assertions to get the correctly typed\n // values below, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable\n // results.\n interfaces.push(getNamedType(type));\n }\n }\n\n return interfaces;\n }\n\n function buildUnionTypes(nodes) {\n var types = [];\n\n for (var _i32 = 0; _i32 < nodes.length; _i32++) {\n var _node$types;\n\n var node = nodes[_i32];\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var typeNodes = (_node$types = node.types) !== null && _node$types !== void 0 ? _node$types : [];\n\n for (var _i34 = 0; _i34 < typeNodes.length; _i34++) {\n var type = typeNodes[_i34];\n // Note: While this could make assertions to get the correctly typed\n // values below, that would throw immediately while type system\n // validation with validateSchema() will produce more actionable\n // results.\n types.push(getNamedType(type));\n }\n }\n\n return types;\n }\n\n function buildType(astNode) {\n var _typeExtensionsMap$na;\n\n var name = astNode.name.value;\n var description = getDescription(astNode, options);\n var extensionNodes = (_typeExtensionsMap$na = typeExtensionsMap[name]) !== null && _typeExtensionsMap$na !== void 0 ? _typeExtensionsMap$na : [];\n\n switch (astNode.kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].OBJECT_TYPE_DEFINITION:\n {\n var extensionASTNodes = extensionNodes;\n var allNodes = [astNode].concat(extensionASTNodes);\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLObjectType\"]({\n name: name,\n description: description,\n interfaces: function interfaces() {\n return buildInterfaces(allNodes);\n },\n fields: function fields() {\n return buildFieldMap(allNodes);\n },\n astNode: astNode,\n extensionASTNodes: extensionASTNodes\n });\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].INTERFACE_TYPE_DEFINITION:\n {\n var _extensionASTNodes = extensionNodes;\n\n var _allNodes = [astNode].concat(_extensionASTNodes);\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLInterfaceType\"]({\n name: name,\n description: description,\n interfaces: function interfaces() {\n return buildInterfaces(_allNodes);\n },\n fields: function fields() {\n return buildFieldMap(_allNodes);\n },\n astNode: astNode,\n extensionASTNodes: _extensionASTNodes\n });\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].ENUM_TYPE_DEFINITION:\n {\n var _extensionASTNodes2 = extensionNodes;\n\n var _allNodes2 = [astNode].concat(_extensionASTNodes2);\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLEnumType\"]({\n name: name,\n description: description,\n values: buildEnumValueMap(_allNodes2),\n astNode: astNode,\n extensionASTNodes: _extensionASTNodes2\n });\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].UNION_TYPE_DEFINITION:\n {\n var _extensionASTNodes3 = extensionNodes;\n\n var _allNodes3 = [astNode].concat(_extensionASTNodes3);\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLUnionType\"]({\n name: name,\n description: description,\n types: function types() {\n return buildUnionTypes(_allNodes3);\n },\n astNode: astNode,\n extensionASTNodes: _extensionASTNodes3\n });\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].SCALAR_TYPE_DEFINITION:\n {\n var _extensionASTNodes4 = extensionNodes;\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLScalarType\"]({\n name: name,\n description: description,\n specifiedByUrl: getSpecifiedByUrl(astNode),\n astNode: astNode,\n extensionASTNodes: _extensionASTNodes4\n });\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_6__[\"Kind\"].INPUT_OBJECT_TYPE_DEFINITION:\n {\n var _extensionASTNodes5 = extensionNodes;\n\n var _allNodes4 = [astNode].concat(_extensionASTNodes5);\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_16__[\"GraphQLInputObjectType\"]({\n name: name,\n description: description,\n fields: function fields() {\n return buildInputFieldMap(_allNodes4);\n },\n astNode: astNode,\n extensionASTNodes: _extensionASTNodes5\n });\n }\n } // istanbul ignore next (Not reachable. All possible type definition nodes have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(0, 'Unexpected type definition node: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(astNode));\n }\n}\nvar stdTypeMap = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(_type_scalars_mjs__WEBPACK_IMPORTED_MODULE_13__[\"specifiedScalarTypes\"].concat(_type_introspection_mjs__WEBPACK_IMPORTED_MODULE_14__[\"introspectionTypes\"]), function (type) {\n return type.name;\n});\n/**\n * Given a field or enum value node, returns the string value for the\n * deprecation reason.\n */\n\nfunction getDeprecationReason(node) {\n var deprecated = Object(_execution_values_mjs__WEBPACK_IMPORTED_MODULE_11__[\"getDirectiveValues\"])(_type_directives_mjs__WEBPACK_IMPORTED_MODULE_15__[\"GraphQLDeprecatedDirective\"], node);\n return deprecated === null || deprecated === void 0 ? void 0 : deprecated.reason;\n}\n/**\n * Given a scalar node, returns the string value for the specifiedByUrl.\n */\n\n\nfunction getSpecifiedByUrl(node) {\n var specifiedBy = Object(_execution_values_mjs__WEBPACK_IMPORTED_MODULE_11__[\"getDirectiveValues\"])(_type_directives_mjs__WEBPACK_IMPORTED_MODULE_15__[\"GraphQLSpecifiedByDirective\"], node);\n return specifiedBy === null || specifiedBy === void 0 ? void 0 : specifiedBy.url;\n}\n/**\n * Given an ast node, returns its string description.\n * @deprecated: provided to ease adoption and will be removed in v16.\n *\n * Accepts options as a second argument:\n *\n * - commentDescriptions:\n * Provide true to use preceding comments as the description.\n *\n */\n\n\nfunction getDescription(node, options) {\n if (node.description) {\n return node.description.value;\n }\n\n if ((options === null || options === void 0 ? void 0 : options.commentDescriptions) === true) {\n var rawValue = getLeadingCommentBlock(node);\n\n if (rawValue !== undefined) {\n return Object(_language_blockString_mjs__WEBPACK_IMPORTED_MODULE_8__[\"dedentBlockStringValue\"])('\\n' + rawValue);\n }\n }\n}\n\nfunction getLeadingCommentBlock(node) {\n var loc = node.loc;\n\n if (!loc) {\n return;\n }\n\n var comments = [];\n var token = loc.startToken.prev;\n\n while (token != null && token.kind === _language_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_7__[\"TokenKind\"].COMMENT && token.next && token.prev && token.line + 1 === token.next.line && token.line !== token.prev.line) {\n var value = String(token.value);\n comments.push(value);\n token = token.prev;\n }\n\n return comments.length > 0 ? comments.reverse().join('\\n') : undefined;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/extendSchema.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/findBreakingChanges.mjs": /*!****************************************************************!*\ !*** ./node_modules/graphql/utilities/findBreakingChanges.mjs ***! \****************************************************************/ /*! exports provided: BreakingChangeType, DangerousChangeType, findBreakingChanges, findDangerousChanges */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BreakingChangeType\", function() { return BreakingChangeType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DangerousChangeType\", function() { return DangerousChangeType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"findBreakingChanges\", function() { return findBreakingChanges; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"findDangerousChanges\", function() { return findDangerousChanges; });\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/keyMap.mjs */ \"./node_modules/graphql/jsutils/keyMap.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _jsutils_naturalCompare_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/naturalCompare.mjs */ \"./node_modules/graphql/jsutils/naturalCompare.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _language_visitor_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../language/visitor.mjs */ \"./node_modules/graphql/language/visitor.mjs\");\n/* harmony import */ var _type_scalars_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../type/scalars.mjs */ \"./node_modules/graphql/type/scalars.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _astFromValue_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./astFromValue.mjs */ \"./node_modules/graphql/utilities/astFromValue.mjs\");\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n\n\n\n\n\n\n\n\n\n\nvar BreakingChangeType = Object.freeze({\n TYPE_REMOVED: 'TYPE_REMOVED',\n TYPE_CHANGED_KIND: 'TYPE_CHANGED_KIND',\n TYPE_REMOVED_FROM_UNION: 'TYPE_REMOVED_FROM_UNION',\n VALUE_REMOVED_FROM_ENUM: 'VALUE_REMOVED_FROM_ENUM',\n REQUIRED_INPUT_FIELD_ADDED: 'REQUIRED_INPUT_FIELD_ADDED',\n IMPLEMENTED_INTERFACE_REMOVED: 'IMPLEMENTED_INTERFACE_REMOVED',\n FIELD_REMOVED: 'FIELD_REMOVED',\n FIELD_CHANGED_KIND: 'FIELD_CHANGED_KIND',\n REQUIRED_ARG_ADDED: 'REQUIRED_ARG_ADDED',\n ARG_REMOVED: 'ARG_REMOVED',\n ARG_CHANGED_KIND: 'ARG_CHANGED_KIND',\n DIRECTIVE_REMOVED: 'DIRECTIVE_REMOVED',\n DIRECTIVE_ARG_REMOVED: 'DIRECTIVE_ARG_REMOVED',\n REQUIRED_DIRECTIVE_ARG_ADDED: 'REQUIRED_DIRECTIVE_ARG_ADDED',\n DIRECTIVE_REPEATABLE_REMOVED: 'DIRECTIVE_REPEATABLE_REMOVED',\n DIRECTIVE_LOCATION_REMOVED: 'DIRECTIVE_LOCATION_REMOVED'\n});\nvar DangerousChangeType = Object.freeze({\n VALUE_ADDED_TO_ENUM: 'VALUE_ADDED_TO_ENUM',\n TYPE_ADDED_TO_UNION: 'TYPE_ADDED_TO_UNION',\n OPTIONAL_INPUT_FIELD_ADDED: 'OPTIONAL_INPUT_FIELD_ADDED',\n OPTIONAL_ARG_ADDED: 'OPTIONAL_ARG_ADDED',\n IMPLEMENTED_INTERFACE_ADDED: 'IMPLEMENTED_INTERFACE_ADDED',\n ARG_DEFAULT_VALUE_CHANGE: 'ARG_DEFAULT_VALUE_CHANGE'\n});\n\n/**\n * Given two schemas, returns an Array containing descriptions of all the types\n * of breaking changes covered by the other functions down below.\n */\nfunction findBreakingChanges(oldSchema, newSchema) {\n var breakingChanges = findSchemaChanges(oldSchema, newSchema).filter(function (change) {\n return change.type in BreakingChangeType;\n });\n return breakingChanges;\n}\n/**\n * Given two schemas, returns an Array containing descriptions of all the types\n * of potentially dangerous changes covered by the other functions down below.\n */\n\nfunction findDangerousChanges(oldSchema, newSchema) {\n var dangerousChanges = findSchemaChanges(oldSchema, newSchema).filter(function (change) {\n return change.type in DangerousChangeType;\n });\n return dangerousChanges;\n}\n\nfunction findSchemaChanges(oldSchema, newSchema) {\n return [].concat(findTypeChanges(oldSchema, newSchema), findDirectiveChanges(oldSchema, newSchema));\n}\n\nfunction findDirectiveChanges(oldSchema, newSchema) {\n var schemaChanges = [];\n var directivesDiff = diff(oldSchema.getDirectives(), newSchema.getDirectives());\n\n for (var _i2 = 0, _directivesDiff$remov2 = directivesDiff.removed; _i2 < _directivesDiff$remov2.length; _i2++) {\n var oldDirective = _directivesDiff$remov2[_i2];\n schemaChanges.push({\n type: BreakingChangeType.DIRECTIVE_REMOVED,\n description: \"\".concat(oldDirective.name, \" was removed.\")\n });\n }\n\n for (var _i4 = 0, _directivesDiff$persi2 = directivesDiff.persisted; _i4 < _directivesDiff$persi2.length; _i4++) {\n var _ref2 = _directivesDiff$persi2[_i4];\n var _oldDirective = _ref2[0];\n var newDirective = _ref2[1];\n var argsDiff = diff(_oldDirective.args, newDirective.args);\n\n for (var _i6 = 0, _argsDiff$added2 = argsDiff.added; _i6 < _argsDiff$added2.length; _i6++) {\n var newArg = _argsDiff$added2[_i6];\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isRequiredArgument\"])(newArg)) {\n schemaChanges.push({\n type: BreakingChangeType.REQUIRED_DIRECTIVE_ARG_ADDED,\n description: \"A required arg \".concat(newArg.name, \" on directive \").concat(_oldDirective.name, \" was added.\")\n });\n }\n }\n\n for (var _i8 = 0, _argsDiff$removed2 = argsDiff.removed; _i8 < _argsDiff$removed2.length; _i8++) {\n var oldArg = _argsDiff$removed2[_i8];\n schemaChanges.push({\n type: BreakingChangeType.DIRECTIVE_ARG_REMOVED,\n description: \"\".concat(oldArg.name, \" was removed from \").concat(_oldDirective.name, \".\")\n });\n }\n\n if (_oldDirective.isRepeatable && !newDirective.isRepeatable) {\n schemaChanges.push({\n type: BreakingChangeType.DIRECTIVE_REPEATABLE_REMOVED,\n description: \"Repeatable flag was removed from \".concat(_oldDirective.name, \".\")\n });\n }\n\n for (var _i10 = 0, _oldDirective$locatio2 = _oldDirective.locations; _i10 < _oldDirective$locatio2.length; _i10++) {\n var location = _oldDirective$locatio2[_i10];\n\n if (newDirective.locations.indexOf(location) === -1) {\n schemaChanges.push({\n type: BreakingChangeType.DIRECTIVE_LOCATION_REMOVED,\n description: \"\".concat(location, \" was removed from \").concat(_oldDirective.name, \".\")\n });\n }\n }\n }\n\n return schemaChanges;\n}\n\nfunction findTypeChanges(oldSchema, newSchema) {\n var schemaChanges = [];\n var typesDiff = diff(Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(oldSchema.getTypeMap()), Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(newSchema.getTypeMap()));\n\n for (var _i12 = 0, _typesDiff$removed2 = typesDiff.removed; _i12 < _typesDiff$removed2.length; _i12++) {\n var oldType = _typesDiff$removed2[_i12];\n schemaChanges.push({\n type: BreakingChangeType.TYPE_REMOVED,\n description: Object(_type_scalars_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isSpecifiedScalarType\"])(oldType) ? \"Standard scalar \".concat(oldType.name, \" was removed because it is not referenced anymore.\") : \"\".concat(oldType.name, \" was removed.\")\n });\n }\n\n for (var _i14 = 0, _typesDiff$persisted2 = typesDiff.persisted; _i14 < _typesDiff$persisted2.length; _i14++) {\n var _ref4 = _typesDiff$persisted2[_i14];\n var _oldType = _ref4[0];\n var newType = _ref4[1];\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isEnumType\"])(_oldType) && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isEnumType\"])(newType)) {\n schemaChanges.push.apply(schemaChanges, findEnumTypeChanges(_oldType, newType));\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isUnionType\"])(_oldType) && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isUnionType\"])(newType)) {\n schemaChanges.push.apply(schemaChanges, findUnionTypeChanges(_oldType, newType));\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInputObjectType\"])(_oldType) && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInputObjectType\"])(newType)) {\n schemaChanges.push.apply(schemaChanges, findInputObjectTypeChanges(_oldType, newType));\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isObjectType\"])(_oldType) && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isObjectType\"])(newType)) {\n schemaChanges.push.apply(schemaChanges, findFieldChanges(_oldType, newType).concat(findImplementedInterfacesChanges(_oldType, newType)));\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInterfaceType\"])(_oldType) && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInterfaceType\"])(newType)) {\n schemaChanges.push.apply(schemaChanges, findFieldChanges(_oldType, newType).concat(findImplementedInterfacesChanges(_oldType, newType)));\n } else if (_oldType.constructor !== newType.constructor) {\n schemaChanges.push({\n type: BreakingChangeType.TYPE_CHANGED_KIND,\n description: \"\".concat(_oldType.name, \" changed from \") + \"\".concat(typeKindName(_oldType), \" to \").concat(typeKindName(newType), \".\")\n });\n }\n }\n\n return schemaChanges;\n}\n\nfunction findInputObjectTypeChanges(oldType, newType) {\n var schemaChanges = [];\n var fieldsDiff = diff(Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(oldType.getFields()), Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(newType.getFields()));\n\n for (var _i16 = 0, _fieldsDiff$added2 = fieldsDiff.added; _i16 < _fieldsDiff$added2.length; _i16++) {\n var newField = _fieldsDiff$added2[_i16];\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isRequiredInputField\"])(newField)) {\n schemaChanges.push({\n type: BreakingChangeType.REQUIRED_INPUT_FIELD_ADDED,\n description: \"A required field \".concat(newField.name, \" on input type \").concat(oldType.name, \" was added.\")\n });\n } else {\n schemaChanges.push({\n type: DangerousChangeType.OPTIONAL_INPUT_FIELD_ADDED,\n description: \"An optional field \".concat(newField.name, \" on input type \").concat(oldType.name, \" was added.\")\n });\n }\n }\n\n for (var _i18 = 0, _fieldsDiff$removed2 = fieldsDiff.removed; _i18 < _fieldsDiff$removed2.length; _i18++) {\n var oldField = _fieldsDiff$removed2[_i18];\n schemaChanges.push({\n type: BreakingChangeType.FIELD_REMOVED,\n description: \"\".concat(oldType.name, \".\").concat(oldField.name, \" was removed.\")\n });\n }\n\n for (var _i20 = 0, _fieldsDiff$persisted2 = fieldsDiff.persisted; _i20 < _fieldsDiff$persisted2.length; _i20++) {\n var _ref6 = _fieldsDiff$persisted2[_i20];\n var _oldField = _ref6[0];\n var _newField = _ref6[1];\n var isSafe = isChangeSafeForInputObjectFieldOrFieldArg(_oldField.type, _newField.type);\n\n if (!isSafe) {\n schemaChanges.push({\n type: BreakingChangeType.FIELD_CHANGED_KIND,\n description: \"\".concat(oldType.name, \".\").concat(_oldField.name, \" changed type from \") + \"\".concat(String(_oldField.type), \" to \").concat(String(_newField.type), \".\")\n });\n }\n }\n\n return schemaChanges;\n}\n\nfunction findUnionTypeChanges(oldType, newType) {\n var schemaChanges = [];\n var possibleTypesDiff = diff(oldType.getTypes(), newType.getTypes());\n\n for (var _i22 = 0, _possibleTypesDiff$ad2 = possibleTypesDiff.added; _i22 < _possibleTypesDiff$ad2.length; _i22++) {\n var newPossibleType = _possibleTypesDiff$ad2[_i22];\n schemaChanges.push({\n type: DangerousChangeType.TYPE_ADDED_TO_UNION,\n description: \"\".concat(newPossibleType.name, \" was added to union type \").concat(oldType.name, \".\")\n });\n }\n\n for (var _i24 = 0, _possibleTypesDiff$re2 = possibleTypesDiff.removed; _i24 < _possibleTypesDiff$re2.length; _i24++) {\n var oldPossibleType = _possibleTypesDiff$re2[_i24];\n schemaChanges.push({\n type: BreakingChangeType.TYPE_REMOVED_FROM_UNION,\n description: \"\".concat(oldPossibleType.name, \" was removed from union type \").concat(oldType.name, \".\")\n });\n }\n\n return schemaChanges;\n}\n\nfunction findEnumTypeChanges(oldType, newType) {\n var schemaChanges = [];\n var valuesDiff = diff(oldType.getValues(), newType.getValues());\n\n for (var _i26 = 0, _valuesDiff$added2 = valuesDiff.added; _i26 < _valuesDiff$added2.length; _i26++) {\n var newValue = _valuesDiff$added2[_i26];\n schemaChanges.push({\n type: DangerousChangeType.VALUE_ADDED_TO_ENUM,\n description: \"\".concat(newValue.name, \" was added to enum type \").concat(oldType.name, \".\")\n });\n }\n\n for (var _i28 = 0, _valuesDiff$removed2 = valuesDiff.removed; _i28 < _valuesDiff$removed2.length; _i28++) {\n var oldValue = _valuesDiff$removed2[_i28];\n schemaChanges.push({\n type: BreakingChangeType.VALUE_REMOVED_FROM_ENUM,\n description: \"\".concat(oldValue.name, \" was removed from enum type \").concat(oldType.name, \".\")\n });\n }\n\n return schemaChanges;\n}\n\nfunction findImplementedInterfacesChanges(oldType, newType) {\n var schemaChanges = [];\n var interfacesDiff = diff(oldType.getInterfaces(), newType.getInterfaces());\n\n for (var _i30 = 0, _interfacesDiff$added2 = interfacesDiff.added; _i30 < _interfacesDiff$added2.length; _i30++) {\n var newInterface = _interfacesDiff$added2[_i30];\n schemaChanges.push({\n type: DangerousChangeType.IMPLEMENTED_INTERFACE_ADDED,\n description: \"\".concat(newInterface.name, \" added to interfaces implemented by \").concat(oldType.name, \".\")\n });\n }\n\n for (var _i32 = 0, _interfacesDiff$remov2 = interfacesDiff.removed; _i32 < _interfacesDiff$remov2.length; _i32++) {\n var oldInterface = _interfacesDiff$remov2[_i32];\n schemaChanges.push({\n type: BreakingChangeType.IMPLEMENTED_INTERFACE_REMOVED,\n description: \"\".concat(oldType.name, \" no longer implements interface \").concat(oldInterface.name, \".\")\n });\n }\n\n return schemaChanges;\n}\n\nfunction findFieldChanges(oldType, newType) {\n var schemaChanges = [];\n var fieldsDiff = diff(Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(oldType.getFields()), Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(newType.getFields()));\n\n for (var _i34 = 0, _fieldsDiff$removed4 = fieldsDiff.removed; _i34 < _fieldsDiff$removed4.length; _i34++) {\n var oldField = _fieldsDiff$removed4[_i34];\n schemaChanges.push({\n type: BreakingChangeType.FIELD_REMOVED,\n description: \"\".concat(oldType.name, \".\").concat(oldField.name, \" was removed.\")\n });\n }\n\n for (var _i36 = 0, _fieldsDiff$persisted4 = fieldsDiff.persisted; _i36 < _fieldsDiff$persisted4.length; _i36++) {\n var _ref8 = _fieldsDiff$persisted4[_i36];\n var _oldField2 = _ref8[0];\n var newField = _ref8[1];\n schemaChanges.push.apply(schemaChanges, findArgChanges(oldType, _oldField2, newField));\n var isSafe = isChangeSafeForObjectOrInterfaceField(_oldField2.type, newField.type);\n\n if (!isSafe) {\n schemaChanges.push({\n type: BreakingChangeType.FIELD_CHANGED_KIND,\n description: \"\".concat(oldType.name, \".\").concat(_oldField2.name, \" changed type from \") + \"\".concat(String(_oldField2.type), \" to \").concat(String(newField.type), \".\")\n });\n }\n }\n\n return schemaChanges;\n}\n\nfunction findArgChanges(oldType, oldField, newField) {\n var schemaChanges = [];\n var argsDiff = diff(oldField.args, newField.args);\n\n for (var _i38 = 0, _argsDiff$removed4 = argsDiff.removed; _i38 < _argsDiff$removed4.length; _i38++) {\n var oldArg = _argsDiff$removed4[_i38];\n schemaChanges.push({\n type: BreakingChangeType.ARG_REMOVED,\n description: \"\".concat(oldType.name, \".\").concat(oldField.name, \" arg \").concat(oldArg.name, \" was removed.\")\n });\n }\n\n for (var _i40 = 0, _argsDiff$persisted2 = argsDiff.persisted; _i40 < _argsDiff$persisted2.length; _i40++) {\n var _ref10 = _argsDiff$persisted2[_i40];\n var _oldArg = _ref10[0];\n var newArg = _ref10[1];\n var isSafe = isChangeSafeForInputObjectFieldOrFieldArg(_oldArg.type, newArg.type);\n\n if (!isSafe) {\n schemaChanges.push({\n type: BreakingChangeType.ARG_CHANGED_KIND,\n description: \"\".concat(oldType.name, \".\").concat(oldField.name, \" arg \").concat(_oldArg.name, \" has changed type from \") + \"\".concat(String(_oldArg.type), \" to \").concat(String(newArg.type), \".\")\n });\n } else if (_oldArg.defaultValue !== undefined) {\n if (newArg.defaultValue === undefined) {\n schemaChanges.push({\n type: DangerousChangeType.ARG_DEFAULT_VALUE_CHANGE,\n description: \"\".concat(oldType.name, \".\").concat(oldField.name, \" arg \").concat(_oldArg.name, \" defaultValue was removed.\")\n });\n } else {\n // Since we looking only for client's observable changes we should\n // compare default values in the same representation as they are\n // represented inside introspection.\n var oldValueStr = stringifyValue(_oldArg.defaultValue, _oldArg.type);\n var newValueStr = stringifyValue(newArg.defaultValue, newArg.type);\n\n if (oldValueStr !== newValueStr) {\n schemaChanges.push({\n type: DangerousChangeType.ARG_DEFAULT_VALUE_CHANGE,\n description: \"\".concat(oldType.name, \".\").concat(oldField.name, \" arg \").concat(_oldArg.name, \" has changed defaultValue from \").concat(oldValueStr, \" to \").concat(newValueStr, \".\")\n });\n }\n }\n }\n }\n\n for (var _i42 = 0, _argsDiff$added4 = argsDiff.added; _i42 < _argsDiff$added4.length; _i42++) {\n var _newArg = _argsDiff$added4[_i42];\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isRequiredArgument\"])(_newArg)) {\n schemaChanges.push({\n type: BreakingChangeType.REQUIRED_ARG_ADDED,\n description: \"A required arg \".concat(_newArg.name, \" on \").concat(oldType.name, \".\").concat(oldField.name, \" was added.\")\n });\n } else {\n schemaChanges.push({\n type: DangerousChangeType.OPTIONAL_ARG_ADDED,\n description: \"An optional arg \".concat(_newArg.name, \" on \").concat(oldType.name, \".\").concat(oldField.name, \" was added.\")\n });\n }\n }\n\n return schemaChanges;\n}\n\nfunction isChangeSafeForObjectOrInterfaceField(oldType, newType) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isListType\"])(oldType)) {\n return (// if they're both lists, make sure the underlying types are compatible\n Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isListType\"])(newType) && isChangeSafeForObjectOrInterfaceField(oldType.ofType, newType.ofType) || // moving from nullable to non-null of the same underlying type is safe\n Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNonNullType\"])(newType) && isChangeSafeForObjectOrInterfaceField(oldType, newType.ofType)\n );\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNonNullType\"])(oldType)) {\n // if they're both non-null, make sure the underlying types are compatible\n return Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNonNullType\"])(newType) && isChangeSafeForObjectOrInterfaceField(oldType.ofType, newType.ofType);\n }\n\n return (// if they're both named types, see if their names are equivalent\n Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNamedType\"])(newType) && oldType.name === newType.name || // moving from nullable to non-null of the same underlying type is safe\n Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNonNullType\"])(newType) && isChangeSafeForObjectOrInterfaceField(oldType, newType.ofType)\n );\n}\n\nfunction isChangeSafeForInputObjectFieldOrFieldArg(oldType, newType) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isListType\"])(oldType)) {\n // if they're both lists, make sure the underlying types are compatible\n return Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isListType\"])(newType) && isChangeSafeForInputObjectFieldOrFieldArg(oldType.ofType, newType.ofType);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNonNullType\"])(oldType)) {\n return (// if they're both non-null, make sure the underlying types are\n // compatible\n Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNonNullType\"])(newType) && isChangeSafeForInputObjectFieldOrFieldArg(oldType.ofType, newType.ofType) || // moving from non-null to nullable of the same underlying type is safe\n !Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNonNullType\"])(newType) && isChangeSafeForInputObjectFieldOrFieldArg(oldType.ofType, newType)\n );\n } // if they're both named types, see if their names are equivalent\n\n\n return Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNamedType\"])(newType) && oldType.name === newType.name;\n}\n\nfunction typeKindName(type) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isScalarType\"])(type)) {\n return 'a Scalar type';\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isObjectType\"])(type)) {\n return 'an Object type';\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInterfaceType\"])(type)) {\n return 'an Interface type';\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isUnionType\"])(type)) {\n return 'a Union type';\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isEnumType\"])(type)) {\n return 'an Enum type';\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInputObjectType\"])(type)) {\n return 'an Input type';\n } // istanbul ignore next (Not reachable. All possible named types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(0, 'Unexpected type: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type));\n}\n\nfunction stringifyValue(value, type) {\n var ast = Object(_astFromValue_mjs__WEBPACK_IMPORTED_MODULE_9__[\"astFromValue\"])(value, type);\n ast != null || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(0);\n var sortedAST = Object(_language_visitor_mjs__WEBPACK_IMPORTED_MODULE_6__[\"visit\"])(ast, {\n ObjectValue: function ObjectValue(objectNode) {\n // Make a copy since sort mutates array\n var fields = [].concat(objectNode.fields);\n fields.sort(function (fieldA, fieldB) {\n return Object(_jsutils_naturalCompare_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(fieldA.name.value, fieldB.name.value);\n });\n return _objectSpread(_objectSpread({}, objectNode), {}, {\n fields: fields\n });\n }\n });\n return Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__[\"print\"])(sortedAST);\n}\n\nfunction diff(oldArray, newArray) {\n var added = [];\n var removed = [];\n var persisted = [];\n var oldMap = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(oldArray, function (_ref11) {\n var name = _ref11.name;\n return name;\n });\n var newMap = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(newArray, function (_ref12) {\n var name = _ref12.name;\n return name;\n });\n\n for (var _i44 = 0; _i44 < oldArray.length; _i44++) {\n var oldItem = oldArray[_i44];\n var newItem = newMap[oldItem.name];\n\n if (newItem === undefined) {\n removed.push(oldItem);\n } else {\n persisted.push([oldItem, newItem]);\n }\n }\n\n for (var _i46 = 0; _i46 < newArray.length; _i46++) {\n var _newItem = newArray[_i46];\n\n if (oldMap[_newItem.name] === undefined) {\n added.push(_newItem);\n }\n }\n\n return {\n added: added,\n persisted: persisted,\n removed: removed\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/findBreakingChanges.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/findDeprecatedUsages.mjs": /*!*****************************************************************!*\ !*** ./node_modules/graphql/utilities/findDeprecatedUsages.mjs ***! \*****************************************************************/ /*! exports provided: findDeprecatedUsages */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"findDeprecatedUsages\", function() { return findDeprecatedUsages; });\n/* harmony import */ var _validation_validate_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../validation/validate.mjs */ \"./node_modules/graphql/validation/validate.mjs\");\n/* harmony import */ var _validation_rules_custom_NoDeprecatedCustomRule_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../validation/rules/custom/NoDeprecatedCustomRule.mjs */ \"./node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs\");\n\n\n/**\n * A validation rule which reports deprecated usages.\n *\n * Returns a list of GraphQLError instances describing each deprecated use.\n *\n * @deprecated Please use `validate` with `NoDeprecatedCustomRule` instead:\n *\n * ```\n * import { validate, NoDeprecatedCustomRule } from 'graphql'\n *\n * const errors = validate(schema, document, [NoDeprecatedCustomRule])\n * ```\n */\n\nfunction findDeprecatedUsages(schema, ast) {\n return Object(_validation_validate_mjs__WEBPACK_IMPORTED_MODULE_0__[\"validate\"])(schema, ast, [_validation_rules_custom_NoDeprecatedCustomRule_mjs__WEBPACK_IMPORTED_MODULE_1__[\"NoDeprecatedCustomRule\"]]);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/findDeprecatedUsages.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/getIntrospectionQuery.mjs": /*!******************************************************************!*\ !*** ./node_modules/graphql/utilities/getIntrospectionQuery.mjs ***! \******************************************************************/ /*! exports provided: getIntrospectionQuery */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getIntrospectionQuery\", function() { return getIntrospectionQuery; });\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction getIntrospectionQuery(options) {\n var optionsWithDefault = _objectSpread({\n descriptions: true,\n specifiedByUrl: false,\n directiveIsRepeatable: false,\n schemaDescription: false,\n inputValueDeprecation: false\n }, options);\n\n var descriptions = optionsWithDefault.descriptions ? 'description' : '';\n var specifiedByUrl = optionsWithDefault.specifiedByUrl ? 'specifiedByUrl' : '';\n var directiveIsRepeatable = optionsWithDefault.directiveIsRepeatable ? 'isRepeatable' : '';\n var schemaDescription = optionsWithDefault.schemaDescription ? descriptions : '';\n\n function inputDeprecation(str) {\n return optionsWithDefault.inputValueDeprecation ? str : '';\n }\n\n return \"\\n query IntrospectionQuery {\\n __schema {\\n \".concat(schemaDescription, \"\\n queryType { name }\\n mutationType { name }\\n subscriptionType { name }\\n types {\\n ...FullType\\n }\\n directives {\\n name\\n \").concat(descriptions, \"\\n \").concat(directiveIsRepeatable, \"\\n locations\\n args\").concat(inputDeprecation('(includeDeprecated: true)'), \" {\\n ...InputValue\\n }\\n }\\n }\\n }\\n\\n fragment FullType on __Type {\\n kind\\n name\\n \").concat(descriptions, \"\\n \").concat(specifiedByUrl, \"\\n fields(includeDeprecated: true) {\\n name\\n \").concat(descriptions, \"\\n args\").concat(inputDeprecation('(includeDeprecated: true)'), \" {\\n ...InputValue\\n }\\n type {\\n ...TypeRef\\n }\\n isDeprecated\\n deprecationReason\\n }\\n inputFields\").concat(inputDeprecation('(includeDeprecated: true)'), \" {\\n ...InputValue\\n }\\n interfaces {\\n ...TypeRef\\n }\\n enumValues(includeDeprecated: true) {\\n name\\n \").concat(descriptions, \"\\n isDeprecated\\n deprecationReason\\n }\\n possibleTypes {\\n ...TypeRef\\n }\\n }\\n\\n fragment InputValue on __InputValue {\\n name\\n \").concat(descriptions, \"\\n type { ...TypeRef }\\n defaultValue\\n \").concat(inputDeprecation('isDeprecated'), \"\\n \").concat(inputDeprecation('deprecationReason'), \"\\n }\\n\\n fragment TypeRef on __Type {\\n kind\\n name\\n ofType {\\n kind\\n name\\n ofType {\\n kind\\n name\\n ofType {\\n kind\\n name\\n ofType {\\n kind\\n name\\n ofType {\\n kind\\n name\\n ofType {\\n kind\\n name\\n ofType {\\n kind\\n name\\n }\\n }\\n }\\n }\\n }\\n }\\n }\\n }\\n \");\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/getIntrospectionQuery.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/getOperationAST.mjs": /*!************************************************************!*\ !*** ./node_modules/graphql/utilities/getOperationAST.mjs ***! \************************************************************/ /*! exports provided: getOperationAST */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getOperationAST\", function() { return getOperationAST; });\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n\n/**\n * Returns an operation AST given a document AST and optionally an operation\n * name. If a name is not provided, an operation is only returned if only one is\n * provided in the document.\n */\n\nfunction getOperationAST(documentAST, operationName) {\n var operation = null;\n\n for (var _i2 = 0, _documentAST$definiti2 = documentAST.definitions; _i2 < _documentAST$definiti2.length; _i2++) {\n var definition = _documentAST$definiti2[_i2];\n\n if (definition.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].OPERATION_DEFINITION) {\n var _definition$name;\n\n if (operationName == null) {\n // If no operation name was provided, only return an Operation if there\n // is one defined in the document. Upon encountering the second, return\n // null.\n if (operation) {\n return null;\n }\n\n operation = definition;\n } else if (((_definition$name = definition.name) === null || _definition$name === void 0 ? void 0 : _definition$name.value) === operationName) {\n return definition;\n }\n }\n }\n\n return operation;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/getOperationAST.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/getOperationRootType.mjs": /*!*****************************************************************!*\ !*** ./node_modules/graphql/utilities/getOperationRootType.mjs ***! \*****************************************************************/ /*! exports provided: getOperationRootType */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getOperationRootType\", function() { return getOperationRootType; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Extracts the root type of the operation from the schema.\n */\nfunction getOperationRootType(schema, operation) {\n if (operation.operation === 'query') {\n var queryType = schema.getQueryType();\n\n if (!queryType) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"]('Schema does not define the required query root type.', operation);\n }\n\n return queryType;\n }\n\n if (operation.operation === 'mutation') {\n var mutationType = schema.getMutationType();\n\n if (!mutationType) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"]('Schema is not configured for mutations.', operation);\n }\n\n return mutationType;\n }\n\n if (operation.operation === 'subscription') {\n var subscriptionType = schema.getSubscriptionType();\n\n if (!subscriptionType) {\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"]('Schema is not configured for subscriptions.', operation);\n }\n\n return subscriptionType;\n }\n\n throw new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"]('Can only have query, mutation and subscription operations.', operation);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/getOperationRootType.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/index.mjs": /*!**************************************************!*\ !*** ./node_modules/graphql/utilities/index.mjs ***! \**************************************************/ /*! exports provided: getIntrospectionQuery, getOperationAST, getOperationRootType, introspectionFromSchema, buildClientSchema, buildASTSchema, buildSchema, extendSchema, getDescription, lexicographicSortSchema, printSchema, printType, printIntrospectionSchema, typeFromAST, valueFromAST, valueFromASTUntyped, astFromValue, TypeInfo, visitWithTypeInfo, coerceInputValue, concatAST, separateOperations, stripIgnoredCharacters, isEqualType, isTypeSubTypeOf, doTypesOverlap, assertValidName, isValidNameError, BreakingChangeType, DangerousChangeType, findBreakingChanges, findDangerousChanges, findDeprecatedUsages */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _getIntrospectionQuery_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getIntrospectionQuery.mjs */ \"./node_modules/graphql/utilities/getIntrospectionQuery.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getIntrospectionQuery\", function() { return _getIntrospectionQuery_mjs__WEBPACK_IMPORTED_MODULE_0__[\"getIntrospectionQuery\"]; });\n\n/* harmony import */ var _getOperationAST_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getOperationAST.mjs */ \"./node_modules/graphql/utilities/getOperationAST.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getOperationAST\", function() { return _getOperationAST_mjs__WEBPACK_IMPORTED_MODULE_1__[\"getOperationAST\"]; });\n\n/* harmony import */ var _getOperationRootType_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getOperationRootType.mjs */ \"./node_modules/graphql/utilities/getOperationRootType.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getOperationRootType\", function() { return _getOperationRootType_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getOperationRootType\"]; });\n\n/* harmony import */ var _introspectionFromSchema_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./introspectionFromSchema.mjs */ \"./node_modules/graphql/utilities/introspectionFromSchema.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"introspectionFromSchema\", function() { return _introspectionFromSchema_mjs__WEBPACK_IMPORTED_MODULE_3__[\"introspectionFromSchema\"]; });\n\n/* harmony import */ var _buildClientSchema_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./buildClientSchema.mjs */ \"./node_modules/graphql/utilities/buildClientSchema.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildClientSchema\", function() { return _buildClientSchema_mjs__WEBPACK_IMPORTED_MODULE_4__[\"buildClientSchema\"]; });\n\n/* harmony import */ var _buildASTSchema_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./buildASTSchema.mjs */ \"./node_modules/graphql/utilities/buildASTSchema.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildASTSchema\", function() { return _buildASTSchema_mjs__WEBPACK_IMPORTED_MODULE_5__[\"buildASTSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildSchema\", function() { return _buildASTSchema_mjs__WEBPACK_IMPORTED_MODULE_5__[\"buildSchema\"]; });\n\n/* harmony import */ var _extendSchema_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./extendSchema.mjs */ \"./node_modules/graphql/utilities/extendSchema.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"extendSchema\", function() { return _extendSchema_mjs__WEBPACK_IMPORTED_MODULE_6__[\"extendSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getDescription\", function() { return _extendSchema_mjs__WEBPACK_IMPORTED_MODULE_6__[\"getDescription\"]; });\n\n/* harmony import */ var _lexicographicSortSchema_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./lexicographicSortSchema.mjs */ \"./node_modules/graphql/utilities/lexicographicSortSchema.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"lexicographicSortSchema\", function() { return _lexicographicSortSchema_mjs__WEBPACK_IMPORTED_MODULE_7__[\"lexicographicSortSchema\"]; });\n\n/* harmony import */ var _printSchema_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./printSchema.mjs */ \"./node_modules/graphql/utilities/printSchema.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printSchema\", function() { return _printSchema_mjs__WEBPACK_IMPORTED_MODULE_8__[\"printSchema\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printType\", function() { return _printSchema_mjs__WEBPACK_IMPORTED_MODULE_8__[\"printType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"printIntrospectionSchema\", function() { return _printSchema_mjs__WEBPACK_IMPORTED_MODULE_8__[\"printIntrospectionSchema\"]; });\n\n/* harmony import */ var _typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./typeFromAST.mjs */ \"./node_modules/graphql/utilities/typeFromAST.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"typeFromAST\", function() { return _typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_9__[\"typeFromAST\"]; });\n\n/* harmony import */ var _valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./valueFromAST.mjs */ \"./node_modules/graphql/utilities/valueFromAST.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"valueFromAST\", function() { return _valueFromAST_mjs__WEBPACK_IMPORTED_MODULE_10__[\"valueFromAST\"]; });\n\n/* harmony import */ var _valueFromASTUntyped_mjs__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./valueFromASTUntyped.mjs */ \"./node_modules/graphql/utilities/valueFromASTUntyped.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"valueFromASTUntyped\", function() { return _valueFromASTUntyped_mjs__WEBPACK_IMPORTED_MODULE_11__[\"valueFromASTUntyped\"]; });\n\n/* harmony import */ var _astFromValue_mjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./astFromValue.mjs */ \"./node_modules/graphql/utilities/astFromValue.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"astFromValue\", function() { return _astFromValue_mjs__WEBPACK_IMPORTED_MODULE_12__[\"astFromValue\"]; });\n\n/* harmony import */ var _TypeInfo_mjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./TypeInfo.mjs */ \"./node_modules/graphql/utilities/TypeInfo.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TypeInfo\", function() { return _TypeInfo_mjs__WEBPACK_IMPORTED_MODULE_13__[\"TypeInfo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"visitWithTypeInfo\", function() { return _TypeInfo_mjs__WEBPACK_IMPORTED_MODULE_13__[\"visitWithTypeInfo\"]; });\n\n/* harmony import */ var _coerceInputValue_mjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./coerceInputValue.mjs */ \"./node_modules/graphql/utilities/coerceInputValue.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"coerceInputValue\", function() { return _coerceInputValue_mjs__WEBPACK_IMPORTED_MODULE_14__[\"coerceInputValue\"]; });\n\n/* harmony import */ var _concatAST_mjs__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./concatAST.mjs */ \"./node_modules/graphql/utilities/concatAST.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"concatAST\", function() { return _concatAST_mjs__WEBPACK_IMPORTED_MODULE_15__[\"concatAST\"]; });\n\n/* harmony import */ var _separateOperations_mjs__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./separateOperations.mjs */ \"./node_modules/graphql/utilities/separateOperations.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"separateOperations\", function() { return _separateOperations_mjs__WEBPACK_IMPORTED_MODULE_16__[\"separateOperations\"]; });\n\n/* harmony import */ var _stripIgnoredCharacters_mjs__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./stripIgnoredCharacters.mjs */ \"./node_modules/graphql/utilities/stripIgnoredCharacters.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"stripIgnoredCharacters\", function() { return _stripIgnoredCharacters_mjs__WEBPACK_IMPORTED_MODULE_17__[\"stripIgnoredCharacters\"]; });\n\n/* harmony import */ var _typeComparators_mjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./typeComparators.mjs */ \"./node_modules/graphql/utilities/typeComparators.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isEqualType\", function() { return _typeComparators_mjs__WEBPACK_IMPORTED_MODULE_18__[\"isEqualType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isTypeSubTypeOf\", function() { return _typeComparators_mjs__WEBPACK_IMPORTED_MODULE_18__[\"isTypeSubTypeOf\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"doTypesOverlap\", function() { return _typeComparators_mjs__WEBPACK_IMPORTED_MODULE_18__[\"doTypesOverlap\"]; });\n\n/* harmony import */ var _assertValidName_mjs__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./assertValidName.mjs */ \"./node_modules/graphql/utilities/assertValidName.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertValidName\", function() { return _assertValidName_mjs__WEBPACK_IMPORTED_MODULE_19__[\"assertValidName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValidNameError\", function() { return _assertValidName_mjs__WEBPACK_IMPORTED_MODULE_19__[\"isValidNameError\"]; });\n\n/* harmony import */ var _findBreakingChanges_mjs__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./findBreakingChanges.mjs */ \"./node_modules/graphql/utilities/findBreakingChanges.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BreakingChangeType\", function() { return _findBreakingChanges_mjs__WEBPACK_IMPORTED_MODULE_20__[\"BreakingChangeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DangerousChangeType\", function() { return _findBreakingChanges_mjs__WEBPACK_IMPORTED_MODULE_20__[\"DangerousChangeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findBreakingChanges\", function() { return _findBreakingChanges_mjs__WEBPACK_IMPORTED_MODULE_20__[\"findBreakingChanges\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findDangerousChanges\", function() { return _findBreakingChanges_mjs__WEBPACK_IMPORTED_MODULE_20__[\"findDangerousChanges\"]; });\n\n/* harmony import */ var _findDeprecatedUsages_mjs__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./findDeprecatedUsages.mjs */ \"./node_modules/graphql/utilities/findDeprecatedUsages.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findDeprecatedUsages\", function() { return _findDeprecatedUsages_mjs__WEBPACK_IMPORTED_MODULE_21__[\"findDeprecatedUsages\"]; });\n\n// Produce the GraphQL query recommended for a full schema introspection.\n// Accepts optional IntrospectionOptions.\n\n// Gets the target Operation from a Document.\n // Gets the Type for the target Operation AST.\n\n // Convert a GraphQLSchema to an IntrospectionQuery.\n\n // Build a GraphQLSchema from an introspection result.\n\n // Build a GraphQLSchema from GraphQL Schema language.\n\n\n// Extends an existing GraphQLSchema from a parsed GraphQL Schema language AST.\n // Sort a GraphQLSchema.\n\n // Print a GraphQLSchema to GraphQL Schema language.\n\n // Create a GraphQLType from a GraphQL language AST.\n\n // Create a JavaScript value from a GraphQL language AST with a type.\n\n // Create a JavaScript value from a GraphQL language AST without a type.\n\n // Create a GraphQL language AST from a JavaScript value.\n\n // A helper to use within recursive-descent visitors which need to be aware of\n// the GraphQL type system.\n\n // Coerces a JavaScript value to a GraphQL type, or produces errors.\n\n // Concatenates multiple AST together.\n\n // Separates an AST into an AST per Operation.\n\n // Strips characters that are not significant to the validity or execution\n// of a GraphQL document.\n\n // Comparators for types\n\n // Asserts that a string is a valid GraphQL name\n\n // Compares two GraphQLSchemas and detects breaking changes.\n\n\n// @deprecated: Report all deprecated usage within a GraphQL document.\n\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/index.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/introspectionFromSchema.mjs": /*!********************************************************************!*\ !*** ./node_modules/graphql/utilities/introspectionFromSchema.mjs ***! \********************************************************************/ /*! exports provided: introspectionFromSchema */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"introspectionFromSchema\", function() { return introspectionFromSchema; });\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _language_parser_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../language/parser.mjs */ \"./node_modules/graphql/language/parser.mjs\");\n/* harmony import */ var _execution_execute_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../execution/execute.mjs */ \"./node_modules/graphql/execution/execute.mjs\");\n/* harmony import */ var _getIntrospectionQuery_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getIntrospectionQuery.mjs */ \"./node_modules/graphql/utilities/getIntrospectionQuery.mjs\");\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n\n\n\n\n/**\n * Build an IntrospectionQuery from a GraphQLSchema\n *\n * IntrospectionQuery is useful for utilities that care about type and field\n * relationships, but do not need to traverse through those relationships.\n *\n * This is the inverse of buildClientSchema. The primary use case is outside\n * of the server context, for instance when doing schema comparisons.\n */\n\nfunction introspectionFromSchema(schema, options) {\n var optionsWithDefaults = _objectSpread({\n specifiedByUrl: true,\n directiveIsRepeatable: true,\n schemaDescription: true,\n inputValueDeprecation: true\n }, options);\n\n var document = Object(_language_parser_mjs__WEBPACK_IMPORTED_MODULE_1__[\"parse\"])(Object(_getIntrospectionQuery_mjs__WEBPACK_IMPORTED_MODULE_3__[\"getIntrospectionQuery\"])(optionsWithDefaults));\n var result = Object(_execution_execute_mjs__WEBPACK_IMPORTED_MODULE_2__[\"executeSync\"])({\n schema: schema,\n document: document\n });\n !result.errors && result.data || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(0);\n return result.data;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/introspectionFromSchema.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/lexicographicSortSchema.mjs": /*!********************************************************************!*\ !*** ./node_modules/graphql/utilities/lexicographicSortSchema.mjs ***! \********************************************************************/ /*! exports provided: lexicographicSortSchema */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"lexicographicSortSchema\", function() { return lexicographicSortSchema; });\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/keyValMap.mjs */ \"./node_modules/graphql/jsutils/keyValMap.mjs\");\n/* harmony import */ var _jsutils_naturalCompare_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../jsutils/naturalCompare.mjs */ \"./node_modules/graphql/jsutils/naturalCompare.mjs\");\n/* harmony import */ var _type_schema_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../type/schema.mjs */ \"./node_modules/graphql/type/schema.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony import */ var _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../type/introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n\n\n\n\n\n\n\n\n\n/**\n * Sort GraphQLSchema.\n *\n * This function returns a sorted copy of the given GraphQLSchema.\n */\n\nfunction lexicographicSortSchema(schema) {\n var schemaConfig = schema.toConfig();\n var typeMap = Object(_jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(sortByName(schemaConfig.types), function (type) {\n return type.name;\n }, sortNamedType);\n return new _type_schema_mjs__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLSchema\"](_objectSpread(_objectSpread({}, schemaConfig), {}, {\n types: Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(typeMap),\n directives: sortByName(schemaConfig.directives).map(sortDirective),\n query: replaceMaybeType(schemaConfig.query),\n mutation: replaceMaybeType(schemaConfig.mutation),\n subscription: replaceMaybeType(schemaConfig.subscription)\n }));\n\n function replaceType(type) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isListType\"])(type)) {\n // $FlowFixMe[incompatible-return]\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"GraphQLList\"](replaceType(type.ofType));\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isNonNullType\"])(type)) {\n // $FlowFixMe[incompatible-return]\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"GraphQLNonNull\"](replaceType(type.ofType));\n }\n\n return replaceNamedType(type);\n }\n\n function replaceNamedType(type) {\n return typeMap[type.name];\n }\n\n function replaceMaybeType(maybeType) {\n return maybeType && replaceNamedType(maybeType);\n }\n\n function sortDirective(directive) {\n var config = directive.toConfig();\n return new _type_directives_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLDirective\"](_objectSpread(_objectSpread({}, config), {}, {\n locations: sortBy(config.locations, function (x) {\n return x;\n }),\n args: sortArgs(config.args)\n }));\n }\n\n function sortArgs(args) {\n return sortObjMap(args, function (arg) {\n return _objectSpread(_objectSpread({}, arg), {}, {\n type: replaceType(arg.type)\n });\n });\n }\n\n function sortFields(fieldsMap) {\n return sortObjMap(fieldsMap, function (field) {\n return _objectSpread(_objectSpread({}, field), {}, {\n type: replaceType(field.type),\n args: sortArgs(field.args)\n });\n });\n }\n\n function sortInputFields(fieldsMap) {\n return sortObjMap(fieldsMap, function (field) {\n return _objectSpread(_objectSpread({}, field), {}, {\n type: replaceType(field.type)\n });\n });\n }\n\n function sortTypes(arr) {\n return sortByName(arr).map(replaceNamedType);\n }\n\n function sortNamedType(type) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isScalarType\"])(type) || Object(_type_introspection_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isIntrospectionType\"])(type)) {\n return type;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isObjectType\"])(type)) {\n var config = type.toConfig();\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"GraphQLObjectType\"](_objectSpread(_objectSpread({}, config), {}, {\n interfaces: function interfaces() {\n return sortTypes(config.interfaces);\n },\n fields: function fields() {\n return sortFields(config.fields);\n }\n }));\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInterfaceType\"])(type)) {\n var _config = type.toConfig();\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"GraphQLInterfaceType\"](_objectSpread(_objectSpread({}, _config), {}, {\n interfaces: function interfaces() {\n return sortTypes(_config.interfaces);\n },\n fields: function fields() {\n return sortFields(_config.fields);\n }\n }));\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isUnionType\"])(type)) {\n var _config2 = type.toConfig();\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"GraphQLUnionType\"](_objectSpread(_objectSpread({}, _config2), {}, {\n types: function types() {\n return sortTypes(_config2.types);\n }\n }));\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isEnumType\"])(type)) {\n var _config3 = type.toConfig();\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"GraphQLEnumType\"](_objectSpread(_objectSpread({}, _config3), {}, {\n values: sortObjMap(_config3.values)\n }));\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInputObjectType\"])(type)) {\n var _config4 = type.toConfig();\n\n return new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"GraphQLInputObjectType\"](_objectSpread(_objectSpread({}, _config4), {}, {\n fields: function fields() {\n return sortInputFields(_config4.fields);\n }\n }));\n } // istanbul ignore next (Not reachable. All possible types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, 'Unexpected type: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type));\n }\n}\n\nfunction sortObjMap(map, sortValueFn) {\n var sortedMap = Object.create(null);\n var sortedKeys = sortBy(Object.keys(map), function (x) {\n return x;\n });\n\n for (var _i2 = 0; _i2 < sortedKeys.length; _i2++) {\n var key = sortedKeys[_i2];\n var value = map[key];\n sortedMap[key] = sortValueFn ? sortValueFn(value) : value;\n }\n\n return sortedMap;\n}\n\nfunction sortByName(array) {\n return sortBy(array, function (obj) {\n return obj.name;\n });\n}\n\nfunction sortBy(array, mapToKey) {\n return array.slice().sort(function (obj1, obj2) {\n var key1 = mapToKey(obj1);\n var key2 = mapToKey(obj2);\n return Object(_jsutils_naturalCompare_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(key1, key2);\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/lexicographicSortSchema.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/printSchema.mjs": /*!********************************************************!*\ !*** ./node_modules/graphql/utilities/printSchema.mjs ***! \********************************************************/ /*! exports provided: printSchema, printIntrospectionSchema, printType */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"printSchema\", function() { return printSchema; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"printIntrospectionSchema\", function() { return printIntrospectionSchema; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"printType\", function() { return printType; });\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _language_blockString_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../language/blockString.mjs */ \"./node_modules/graphql/language/blockString.mjs\");\n/* harmony import */ var _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../type/introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n/* harmony import */ var _type_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../type/scalars.mjs */ \"./node_modules/graphql/type/scalars.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _astFromValue_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./astFromValue.mjs */ \"./node_modules/graphql/utilities/astFromValue.mjs\");\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Accepts options as a second argument:\n *\n * - commentDescriptions:\n * Provide true to use preceding comments as the description.\n *\n */\nfunction printSchema(schema, options) {\n return printFilteredSchema(schema, function (n) {\n return !Object(_type_directives_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isSpecifiedDirective\"])(n);\n }, isDefinedType, options);\n}\nfunction printIntrospectionSchema(schema, options) {\n return printFilteredSchema(schema, _type_directives_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isSpecifiedDirective\"], _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isIntrospectionType\"], options);\n}\n\nfunction isDefinedType(type) {\n return !Object(_type_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isSpecifiedScalarType\"])(type) && !Object(_type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isIntrospectionType\"])(type);\n}\n\nfunction printFilteredSchema(schema, directiveFilter, typeFilter, options) {\n var directives = schema.getDirectives().filter(directiveFilter);\n var types = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(schema.getTypeMap()).filter(typeFilter);\n return [printSchemaDefinition(schema)].concat(directives.map(function (directive) {\n return printDirective(directive, options);\n }), types.map(function (type) {\n return printType(type, options);\n })).filter(Boolean).join('\\n\\n') + '\\n';\n}\n\nfunction printSchemaDefinition(schema) {\n if (schema.description == null && isSchemaOfCommonNames(schema)) {\n return;\n }\n\n var operationTypes = [];\n var queryType = schema.getQueryType();\n\n if (queryType) {\n operationTypes.push(\" query: \".concat(queryType.name));\n }\n\n var mutationType = schema.getMutationType();\n\n if (mutationType) {\n operationTypes.push(\" mutation: \".concat(mutationType.name));\n }\n\n var subscriptionType = schema.getSubscriptionType();\n\n if (subscriptionType) {\n operationTypes.push(\" subscription: \".concat(subscriptionType.name));\n }\n\n return printDescription({}, schema) + \"schema {\\n\".concat(operationTypes.join('\\n'), \"\\n}\");\n}\n/**\n * GraphQL schema define root types for each type of operation. These types are\n * the same as any other type and can be named in any manner, however there is\n * a common naming convention:\n *\n * schema {\n * query: Query\n * mutation: Mutation\n * }\n *\n * When using this naming convention, the schema description can be omitted.\n */\n\n\nfunction isSchemaOfCommonNames(schema) {\n var queryType = schema.getQueryType();\n\n if (queryType && queryType.name !== 'Query') {\n return false;\n }\n\n var mutationType = schema.getMutationType();\n\n if (mutationType && mutationType.name !== 'Mutation') {\n return false;\n }\n\n var subscriptionType = schema.getSubscriptionType();\n\n if (subscriptionType && subscriptionType.name !== 'Subscription') {\n return false;\n }\n\n return true;\n}\n\nfunction printType(type, options) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isScalarType\"])(type)) {\n return printScalar(type, options);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isObjectType\"])(type)) {\n return printObject(type, options);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInterfaceType\"])(type)) {\n return printInterface(type, options);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isUnionType\"])(type)) {\n return printUnion(type, options);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isEnumType\"])(type)) {\n return printEnum(type, options);\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_8__[\"isInputObjectType\"])(type)) {\n return printInputObject(type, options);\n } // istanbul ignore next (Not reachable. All possible types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, 'Unexpected type: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(type));\n}\n\nfunction printScalar(type, options) {\n return printDescription(options, type) + \"scalar \".concat(type.name) + printSpecifiedByUrl(type);\n}\n\nfunction printImplementedInterfaces(type) {\n var interfaces = type.getInterfaces();\n return interfaces.length ? ' implements ' + interfaces.map(function (i) {\n return i.name;\n }).join(' & ') : '';\n}\n\nfunction printObject(type, options) {\n return printDescription(options, type) + \"type \".concat(type.name) + printImplementedInterfaces(type) + printFields(options, type);\n}\n\nfunction printInterface(type, options) {\n return printDescription(options, type) + \"interface \".concat(type.name) + printImplementedInterfaces(type) + printFields(options, type);\n}\n\nfunction printUnion(type, options) {\n var types = type.getTypes();\n var possibleTypes = types.length ? ' = ' + types.join(' | ') : '';\n return printDescription(options, type) + 'union ' + type.name + possibleTypes;\n}\n\nfunction printEnum(type, options) {\n var values = type.getValues().map(function (value, i) {\n return printDescription(options, value, ' ', !i) + ' ' + value.name + printDeprecated(value.deprecationReason);\n });\n return printDescription(options, type) + \"enum \".concat(type.name) + printBlock(values);\n}\n\nfunction printInputObject(type, options) {\n var fields = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type.getFields()).map(function (f, i) {\n return printDescription(options, f, ' ', !i) + ' ' + printInputValue(f);\n });\n return printDescription(options, type) + \"input \".concat(type.name) + printBlock(fields);\n}\n\nfunction printFields(options, type) {\n var fields = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type.getFields()).map(function (f, i) {\n return printDescription(options, f, ' ', !i) + ' ' + f.name + printArgs(options, f.args, ' ') + ': ' + String(f.type) + printDeprecated(f.deprecationReason);\n });\n return printBlock(fields);\n}\n\nfunction printBlock(items) {\n return items.length !== 0 ? ' {\\n' + items.join('\\n') + '\\n}' : '';\n}\n\nfunction printArgs(options, args) {\n var indentation = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';\n\n if (args.length === 0) {\n return '';\n } // If every arg does not have a description, print them on one line.\n\n\n if (args.every(function (arg) {\n return !arg.description;\n })) {\n return '(' + args.map(printInputValue).join(', ') + ')';\n }\n\n return '(\\n' + args.map(function (arg, i) {\n return printDescription(options, arg, ' ' + indentation, !i) + ' ' + indentation + printInputValue(arg);\n }).join('\\n') + '\\n' + indentation + ')';\n}\n\nfunction printInputValue(arg) {\n var defaultAST = Object(_astFromValue_mjs__WEBPACK_IMPORTED_MODULE_9__[\"astFromValue\"])(arg.defaultValue, arg.type);\n var argDecl = arg.name + ': ' + String(arg.type);\n\n if (defaultAST) {\n argDecl += \" = \".concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_3__[\"print\"])(defaultAST));\n }\n\n return argDecl + printDeprecated(arg.deprecationReason);\n}\n\nfunction printDirective(directive, options) {\n return printDescription(options, directive) + 'directive @' + directive.name + printArgs(options, directive.args) + (directive.isRepeatable ? ' repeatable' : '') + ' on ' + directive.locations.join(' | ');\n}\n\nfunction printDeprecated(reason) {\n if (reason == null) {\n return '';\n }\n\n var reasonAST = Object(_astFromValue_mjs__WEBPACK_IMPORTED_MODULE_9__[\"astFromValue\"])(reason, _type_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"]);\n\n if (reasonAST && reason !== _type_directives_mjs__WEBPACK_IMPORTED_MODULE_7__[\"DEFAULT_DEPRECATION_REASON\"]) {\n return ' @deprecated(reason: ' + Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_3__[\"print\"])(reasonAST) + ')';\n }\n\n return ' @deprecated';\n}\n\nfunction printSpecifiedByUrl(scalar) {\n if (scalar.specifiedByUrl == null) {\n return '';\n }\n\n var url = scalar.specifiedByUrl;\n var urlAST = Object(_astFromValue_mjs__WEBPACK_IMPORTED_MODULE_9__[\"astFromValue\"])(url, _type_scalars_mjs__WEBPACK_IMPORTED_MODULE_6__[\"GraphQLString\"]);\n urlAST || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(0, 'Unexpected null value returned from `astFromValue` for specifiedByUrl');\n return ' @specifiedBy(url: ' + Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_3__[\"print\"])(urlAST) + ')';\n}\n\nfunction printDescription(options, def) {\n var indentation = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';\n var firstInBlock = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;\n var description = def.description;\n\n if (description == null) {\n return '';\n }\n\n if ((options === null || options === void 0 ? void 0 : options.commentDescriptions) === true) {\n return printDescriptionWithComments(description, indentation, firstInBlock);\n }\n\n var preferMultipleLines = description.length > 70;\n var blockString = Object(_language_blockString_mjs__WEBPACK_IMPORTED_MODULE_4__[\"printBlockString\"])(description, '', preferMultipleLines);\n var prefix = indentation && !firstInBlock ? '\\n' + indentation : indentation;\n return prefix + blockString.replace(/\\n/g, '\\n' + indentation) + '\\n';\n}\n\nfunction printDescriptionWithComments(description, indentation, firstInBlock) {\n var prefix = indentation && !firstInBlock ? '\\n' : '';\n var comment = description.split('\\n').map(function (line) {\n return indentation + (line !== '' ? '# ' + line : '#');\n }).join('\\n');\n return prefix + comment + '\\n';\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/printSchema.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/separateOperations.mjs": /*!***************************************************************!*\ !*** ./node_modules/graphql/utilities/separateOperations.mjs ***! \***************************************************************/ /*! exports provided: separateOperations */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"separateOperations\", function() { return separateOperations; });\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_visitor_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../language/visitor.mjs */ \"./node_modules/graphql/language/visitor.mjs\");\n\n\n/**\n * separateOperations accepts a single AST document which may contain many\n * operations and fragments and returns a collection of AST documents each of\n * which contains a single operation as well the fragment definitions it\n * refers to.\n */\n\nfunction separateOperations(documentAST) {\n var operations = [];\n var depGraph = Object.create(null); // Populate metadata and build a dependency graph.\n\n for (var _i2 = 0, _documentAST$definiti2 = documentAST.definitions; _i2 < _documentAST$definiti2.length; _i2++) {\n var definitionNode = _documentAST$definiti2[_i2];\n\n switch (definitionNode.kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].OPERATION_DEFINITION:\n operations.push(definitionNode);\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].FRAGMENT_DEFINITION:\n depGraph[definitionNode.name.value] = collectDependencies(definitionNode.selectionSet);\n break;\n }\n } // For each operation, produce a new synthesized AST which includes only what\n // is necessary for completing that operation.\n\n\n var separatedDocumentASTs = Object.create(null);\n\n var _loop = function _loop(_i4) {\n var operation = operations[_i4];\n var dependencies = new Set();\n\n for (var _i6 = 0, _collectDependencies2 = collectDependencies(operation.selectionSet); _i6 < _collectDependencies2.length; _i6++) {\n var fragmentName = _collectDependencies2[_i6];\n collectTransitiveDependencies(dependencies, depGraph, fragmentName);\n } // Provides the empty string for anonymous operations.\n\n\n var operationName = operation.name ? operation.name.value : ''; // The list of definition nodes to be included for this operation, sorted\n // to retain the same order as the original document.\n\n separatedDocumentASTs[operationName] = {\n kind: _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].DOCUMENT,\n definitions: documentAST.definitions.filter(function (node) {\n return node === operation || node.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].FRAGMENT_DEFINITION && dependencies.has(node.name.value);\n })\n };\n };\n\n for (var _i4 = 0; _i4 < operations.length; _i4++) {\n _loop(_i4);\n }\n\n return separatedDocumentASTs;\n}\n\n// From a dependency graph, collects a list of transitive dependencies by\n// recursing through a dependency graph.\nfunction collectTransitiveDependencies(collected, depGraph, fromName) {\n if (!collected.has(fromName)) {\n collected.add(fromName);\n var immediateDeps = depGraph[fromName];\n\n if (immediateDeps !== undefined) {\n for (var _i8 = 0; _i8 < immediateDeps.length; _i8++) {\n var toName = immediateDeps[_i8];\n collectTransitiveDependencies(collected, depGraph, toName);\n }\n }\n }\n}\n\nfunction collectDependencies(selectionSet) {\n var dependencies = [];\n Object(_language_visitor_mjs__WEBPACK_IMPORTED_MODULE_1__[\"visit\"])(selectionSet, {\n FragmentSpread: function FragmentSpread(node) {\n dependencies.push(node.name.value);\n }\n });\n return dependencies;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/separateOperations.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/stripIgnoredCharacters.mjs": /*!*******************************************************************!*\ !*** ./node_modules/graphql/utilities/stripIgnoredCharacters.mjs ***! \*******************************************************************/ /*! exports provided: stripIgnoredCharacters */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"stripIgnoredCharacters\", function() { return stripIgnoredCharacters; });\n/* harmony import */ var _language_source_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../language/source.mjs */ \"./node_modules/graphql/language/source.mjs\");\n/* harmony import */ var _language_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../language/tokenKind.mjs */ \"./node_modules/graphql/language/tokenKind.mjs\");\n/* harmony import */ var _language_lexer_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../language/lexer.mjs */ \"./node_modules/graphql/language/lexer.mjs\");\n/* harmony import */ var _language_blockString_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../language/blockString.mjs */ \"./node_modules/graphql/language/blockString.mjs\");\n\n\n\n\n/**\n * Strips characters that are not significant to the validity or execution\n * of a GraphQL document:\n * - UnicodeBOM\n * - WhiteSpace\n * - LineTerminator\n * - Comment\n * - Comma\n * - BlockString indentation\n *\n * Note: It is required to have a delimiter character between neighboring\n * non-punctuator tokens and this function always uses single space as delimiter.\n *\n * It is guaranteed that both input and output documents if parsed would result\n * in the exact same AST except for nodes location.\n *\n * Warning: It is guaranteed that this function will always produce stable results.\n * However, it's not guaranteed that it will stay the same between different\n * releases due to bugfixes or changes in the GraphQL specification.\n *\n * Query example:\n *\n * query SomeQuery($foo: String!, $bar: String) {\n * someField(foo: $foo, bar: $bar) {\n * a\n * b {\n * c\n * d\n * }\n * }\n * }\n *\n * Becomes:\n *\n * query SomeQuery($foo:String!$bar:String){someField(foo:$foo bar:$bar){a b{c d}}}\n *\n * SDL example:\n *\n * \"\"\"\n * Type description\n * \"\"\"\n * type Foo {\n * \"\"\"\n * Field description\n * \"\"\"\n * bar: String\n * }\n *\n * Becomes:\n *\n * \"\"\"Type description\"\"\" type Foo{\"\"\"Field description\"\"\" bar:String}\n */\n\nfunction stripIgnoredCharacters(source) {\n var sourceObj = Object(_language_source_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isSource\"])(source) ? source : new _language_source_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Source\"](source);\n var body = sourceObj.body;\n var lexer = new _language_lexer_mjs__WEBPACK_IMPORTED_MODULE_2__[\"Lexer\"](sourceObj);\n var strippedBody = '';\n var wasLastAddedTokenNonPunctuator = false;\n\n while (lexer.advance().kind !== _language_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_1__[\"TokenKind\"].EOF) {\n var currentToken = lexer.token;\n var tokenKind = currentToken.kind;\n /**\n * Every two non-punctuator tokens should have space between them.\n * Also prevent case of non-punctuator token following by spread resulting\n * in invalid token (e.g. `1...` is invalid Float token).\n */\n\n var isNonPunctuator = !Object(_language_lexer_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isPunctuatorTokenKind\"])(currentToken.kind);\n\n if (wasLastAddedTokenNonPunctuator) {\n if (isNonPunctuator || currentToken.kind === _language_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_1__[\"TokenKind\"].SPREAD) {\n strippedBody += ' ';\n }\n }\n\n var tokenBody = body.slice(currentToken.start, currentToken.end);\n\n if (tokenKind === _language_tokenKind_mjs__WEBPACK_IMPORTED_MODULE_1__[\"TokenKind\"].BLOCK_STRING) {\n strippedBody += dedentBlockString(tokenBody);\n } else {\n strippedBody += tokenBody;\n }\n\n wasLastAddedTokenNonPunctuator = isNonPunctuator;\n }\n\n return strippedBody;\n}\n\nfunction dedentBlockString(blockStr) {\n // skip leading and trailing triple quotations\n var rawStr = blockStr.slice(3, -3);\n var body = Object(_language_blockString_mjs__WEBPACK_IMPORTED_MODULE_3__[\"dedentBlockStringValue\"])(rawStr);\n\n if (Object(_language_blockString_mjs__WEBPACK_IMPORTED_MODULE_3__[\"getBlockStringIndentation\"])(body) > 0) {\n body = '\\n' + body;\n }\n\n var lastChar = body[body.length - 1];\n var hasTrailingQuote = lastChar === '\"' && body.slice(-4) !== '\\\\\"\"\"';\n\n if (hasTrailingQuote || lastChar === '\\\\') {\n body += '\\n';\n }\n\n return '\"\"\"' + body + '\"\"\"';\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/stripIgnoredCharacters.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/typeComparators.mjs": /*!************************************************************!*\ !*** ./node_modules/graphql/utilities/typeComparators.mjs ***! \************************************************************/ /*! exports provided: isEqualType, isTypeSubTypeOf, doTypesOverlap */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isEqualType\", function() { return isEqualType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isTypeSubTypeOf\", function() { return isTypeSubTypeOf; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doTypesOverlap\", function() { return doTypesOverlap; });\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n/**\n * Provided two types, return true if the types are equal (invariant).\n */\n\nfunction isEqualType(typeA, typeB) {\n // Equivalent types are equal.\n if (typeA === typeB) {\n return true;\n } // If either type is non-null, the other must also be non-null.\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isNonNullType\"])(typeA) && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isNonNullType\"])(typeB)) {\n return isEqualType(typeA.ofType, typeB.ofType);\n } // If either type is a list, the other must also be a list.\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isListType\"])(typeA) && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isListType\"])(typeB)) {\n return isEqualType(typeA.ofType, typeB.ofType);\n } // Otherwise the types are not equal.\n\n\n return false;\n}\n/**\n * Provided a type and a super type, return true if the first type is either\n * equal or a subset of the second super type (covariant).\n */\n\nfunction isTypeSubTypeOf(schema, maybeSubType, superType) {\n // Equivalent type is a valid subtype\n if (maybeSubType === superType) {\n return true;\n } // If superType is non-null, maybeSubType must also be non-null.\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isNonNullType\"])(superType)) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isNonNullType\"])(maybeSubType)) {\n return isTypeSubTypeOf(schema, maybeSubType.ofType, superType.ofType);\n }\n\n return false;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isNonNullType\"])(maybeSubType)) {\n // If superType is nullable, maybeSubType may be non-null or nullable.\n return isTypeSubTypeOf(schema, maybeSubType.ofType, superType);\n } // If superType type is a list, maybeSubType type must also be a list.\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isListType\"])(superType)) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isListType\"])(maybeSubType)) {\n return isTypeSubTypeOf(schema, maybeSubType.ofType, superType.ofType);\n }\n\n return false;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isListType\"])(maybeSubType)) {\n // If superType is not a list, maybeSubType must also be not a list.\n return false;\n } // If superType type is an abstract type, check if it is super type of maybeSubType.\n // Otherwise, the child type is not a valid subtype of the parent type.\n\n\n return Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isAbstractType\"])(superType) && (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isInterfaceType\"])(maybeSubType) || Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isObjectType\"])(maybeSubType)) && schema.isSubType(superType, maybeSubType);\n}\n/**\n * Provided two composite types, determine if they \"overlap\". Two composite\n * types overlap when the Sets of possible concrete types for each intersect.\n *\n * This is often used to determine if a fragment of a given type could possibly\n * be visited in a context of another type.\n *\n * This function is commutative.\n */\n\nfunction doTypesOverlap(schema, typeA, typeB) {\n // Equivalent types overlap\n if (typeA === typeB) {\n return true;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isAbstractType\"])(typeA)) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isAbstractType\"])(typeB)) {\n // If both types are abstract, then determine if there is any intersection\n // between possible concrete types of each.\n return schema.getPossibleTypes(typeA).some(function (type) {\n return schema.isSubType(typeB, type);\n });\n } // Determine if the latter type is a possible concrete type of the former.\n\n\n return schema.isSubType(typeA, typeB);\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_0__[\"isAbstractType\"])(typeB)) {\n // Determine if the former type is a possible concrete type of the latter.\n return schema.isSubType(typeB, typeA);\n } // Otherwise the types do not overlap.\n\n\n return false;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/typeComparators.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/typeFromAST.mjs": /*!********************************************************!*\ !*** ./node_modules/graphql/utilities/typeFromAST.mjs ***! \********************************************************/ /*! exports provided: typeFromAST */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"typeFromAST\", function() { return typeFromAST; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n/**\n * Given a Schema and an AST node describing a type, return a GraphQLType\n * definition which applies to that type. For example, if provided the parsed\n * AST node for `[User]`, a GraphQLList instance will be returned, containing\n * the type called \"User\" found in the schema. If a type called \"User\" is not\n * found in the schema, then undefined will be returned.\n */\n\n/* eslint-disable no-redeclare */\n\nfunction typeFromAST(schema, typeNode) {\n /* eslint-enable no-redeclare */\n var innerType;\n\n if (typeNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_2__[\"Kind\"].LIST_TYPE) {\n innerType = typeFromAST(schema, typeNode.type);\n return innerType && new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLList\"](innerType);\n }\n\n if (typeNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_2__[\"Kind\"].NON_NULL_TYPE) {\n innerType = typeFromAST(schema, typeNode.type);\n return innerType && new _type_definition_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLNonNull\"](innerType);\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (typeNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_2__[\"Kind\"].NAMED_TYPE) {\n return schema.getType(typeNode.name.value);\n } // istanbul ignore next (Not reachable. All possible type nodes have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(0, 'Unexpected type node: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(typeNode));\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/typeFromAST.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/valueFromAST.mjs": /*!*********************************************************!*\ !*** ./node_modules/graphql/utilities/valueFromAST.mjs ***! \*********************************************************/ /*! exports provided: valueFromAST */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"valueFromAST\", function() { return valueFromAST; });\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/keyMap.mjs */ \"./node_modules/graphql/jsutils/keyMap.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n\n\n/**\n * Produces a JavaScript value given a GraphQL Value AST.\n *\n * A GraphQL type must be provided, which will be used to interpret different\n * GraphQL Value literals.\n *\n * Returns `undefined` when the value could not be validly coerced according to\n * the provided type.\n *\n * | GraphQL Value | JSON Value |\n * | -------------------- | ------------- |\n * | Input Object | Object |\n * | List | Array |\n * | Boolean | Boolean |\n * | String | String |\n * | Int / Float | Number |\n * | Enum Value | Mixed |\n * | NullValue | null |\n *\n */\n\nfunction valueFromAST(valueNode, type, variables) {\n if (!valueNode) {\n // When there is no node, then there is also no value.\n // Importantly, this is different from returning the value null.\n return;\n }\n\n if (valueNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].VARIABLE) {\n var variableName = valueNode.name.value;\n\n if (variables == null || variables[variableName] === undefined) {\n // No valid return value.\n return;\n }\n\n var variableValue = variables[variableName];\n\n if (variableValue === null && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isNonNullType\"])(type)) {\n return; // Invalid: intentionally return no value.\n } // Note: This does no further checking that this variable is correct.\n // This assumes that this query has been validated and the variable\n // usage here is of the correct type.\n\n\n return variableValue;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isNonNullType\"])(type)) {\n if (valueNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].NULL) {\n return; // Invalid: intentionally return no value.\n }\n\n return valueFromAST(valueNode, type.ofType, variables);\n }\n\n if (valueNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].NULL) {\n // This is explicitly returning the value null.\n return null;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isListType\"])(type)) {\n var itemType = type.ofType;\n\n if (valueNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].LIST) {\n var coercedValues = [];\n\n for (var _i2 = 0, _valueNode$values2 = valueNode.values; _i2 < _valueNode$values2.length; _i2++) {\n var itemNode = _valueNode$values2[_i2];\n\n if (isMissingVariable(itemNode, variables)) {\n // If an array contains a missing variable, it is either coerced to\n // null or if the item type is non-null, it considered invalid.\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isNonNullType\"])(itemType)) {\n return; // Invalid: intentionally return no value.\n }\n\n coercedValues.push(null);\n } else {\n var itemValue = valueFromAST(itemNode, itemType, variables);\n\n if (itemValue === undefined) {\n return; // Invalid: intentionally return no value.\n }\n\n coercedValues.push(itemValue);\n }\n }\n\n return coercedValues;\n }\n\n var coercedValue = valueFromAST(valueNode, itemType, variables);\n\n if (coercedValue === undefined) {\n return; // Invalid: intentionally return no value.\n }\n\n return [coercedValue];\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isInputObjectType\"])(type)) {\n if (valueNode.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].OBJECT) {\n return; // Invalid: intentionally return no value.\n }\n\n var coercedObj = Object.create(null);\n var fieldNodes = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(valueNode.fields, function (field) {\n return field.name.value;\n });\n\n for (var _i4 = 0, _objectValues2 = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type.getFields()); _i4 < _objectValues2.length; _i4++) {\n var field = _objectValues2[_i4];\n var fieldNode = fieldNodes[field.name];\n\n if (!fieldNode || isMissingVariable(fieldNode.value, variables)) {\n if (field.defaultValue !== undefined) {\n coercedObj[field.name] = field.defaultValue;\n } else if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isNonNullType\"])(field.type)) {\n return; // Invalid: intentionally return no value.\n }\n\n continue;\n }\n\n var fieldValue = valueFromAST(fieldNode.value, field.type, variables);\n\n if (fieldValue === undefined) {\n return; // Invalid: intentionally return no value.\n }\n\n coercedObj[field.name] = fieldValue;\n }\n\n return coercedObj;\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isLeafType\"])(type)) {\n // Scalars and Enums fulfill parsing a literal value via parseLiteral().\n // Invalid values represent a failure to parse correctly, in which case\n // no value is returned.\n var result;\n\n try {\n result = type.parseLiteral(valueNode, variables);\n } catch (_error) {\n return; // Invalid: intentionally return no value.\n }\n\n if (result === undefined) {\n return; // Invalid: intentionally return no value.\n }\n\n return result;\n } // istanbul ignore next (Not reachable. All possible input types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(0, 'Unexpected input type: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type));\n} // Returns true if the provided valueNode is a variable which is not defined\n// in the set of variables.\n\nfunction isMissingVariable(valueNode, variables) {\n return valueNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].VARIABLE && (variables == null || variables[valueNode.name.value] === undefined);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/valueFromAST.mjs?"); /***/ }), /***/ "./node_modules/graphql/utilities/valueFromASTUntyped.mjs": /*!****************************************************************!*\ !*** ./node_modules/graphql/utilities/valueFromASTUntyped.mjs ***! \****************************************************************/ /*! exports provided: valueFromASTUntyped */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"valueFromASTUntyped\", function() { return valueFromASTUntyped; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../jsutils/keyValMap.mjs */ \"./node_modules/graphql/jsutils/keyValMap.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n\n\n\n\n\n/**\n * Produces a JavaScript value given a GraphQL Value AST.\n *\n * Unlike `valueFromAST()`, no type is provided. The resulting JavaScript value\n * will reflect the provided GraphQL value AST.\n *\n * | GraphQL Value | JavaScript Value |\n * | -------------------- | ---------------- |\n * | Input Object | Object |\n * | List | Array |\n * | Boolean | Boolean |\n * | String / Enum | String |\n * | Int / Float | Number |\n * | Null | null |\n *\n */\nfunction valueFromASTUntyped(valueNode, variables) {\n switch (valueNode.kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].NULL:\n return null;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].INT:\n return parseInt(valueNode.value, 10);\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].FLOAT:\n return parseFloat(valueNode.value);\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].STRING:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].ENUM:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].BOOLEAN:\n return valueNode.value;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].LIST:\n return valueNode.values.map(function (node) {\n return valueFromASTUntyped(node, variables);\n });\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].OBJECT:\n return Object(_jsutils_keyValMap_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(valueNode.fields, function (field) {\n return field.name.value;\n }, function (field) {\n return valueFromASTUntyped(field.value, variables);\n });\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].VARIABLE:\n return variables === null || variables === void 0 ? void 0 : variables[valueNode.name.value];\n } // istanbul ignore next (Not reachable. All possible value nodes have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(0, 'Unexpected value node: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(valueNode));\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/utilities/valueFromASTUntyped.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/ValidationContext.mjs": /*!***************************************************************!*\ !*** ./node_modules/graphql/validation/ValidationContext.mjs ***! \***************************************************************/ /*! exports provided: ASTValidationContext, SDLValidationContext, ValidationContext */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ASTValidationContext\", function() { return ASTValidationContext; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SDLValidationContext\", function() { return SDLValidationContext; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ValidationContext\", function() { return ValidationContext; });\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_visitor_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../language/visitor.mjs */ \"./node_modules/graphql/language/visitor.mjs\");\n/* harmony import */ var _utilities_TypeInfo_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utilities/TypeInfo.mjs */ \"./node_modules/graphql/utilities/TypeInfo.mjs\");\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\n\n\n\n\n/**\n * An instance of this class is passed as the \"this\" context to all validators,\n * allowing access to commonly useful contextual information from within a\n * validation rule.\n */\nvar ASTValidationContext = /*#__PURE__*/function () {\n function ASTValidationContext(ast, onError) {\n this._ast = ast;\n this._fragments = undefined;\n this._fragmentSpreads = new Map();\n this._recursivelyReferencedFragments = new Map();\n this._onError = onError;\n }\n\n var _proto = ASTValidationContext.prototype;\n\n _proto.reportError = function reportError(error) {\n this._onError(error);\n };\n\n _proto.getDocument = function getDocument() {\n return this._ast;\n };\n\n _proto.getFragment = function getFragment(name) {\n var fragments = this._fragments;\n\n if (!fragments) {\n this._fragments = fragments = this.getDocument().definitions.reduce(function (frags, statement) {\n if (statement.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].FRAGMENT_DEFINITION) {\n frags[statement.name.value] = statement;\n }\n\n return frags;\n }, Object.create(null));\n }\n\n return fragments[name];\n };\n\n _proto.getFragmentSpreads = function getFragmentSpreads(node) {\n var spreads = this._fragmentSpreads.get(node);\n\n if (!spreads) {\n spreads = [];\n var setsToVisit = [node];\n\n while (setsToVisit.length !== 0) {\n var set = setsToVisit.pop();\n\n for (var _i2 = 0, _set$selections2 = set.selections; _i2 < _set$selections2.length; _i2++) {\n var selection = _set$selections2[_i2];\n\n if (selection.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Kind\"].FRAGMENT_SPREAD) {\n spreads.push(selection);\n } else if (selection.selectionSet) {\n setsToVisit.push(selection.selectionSet);\n }\n }\n }\n\n this._fragmentSpreads.set(node, spreads);\n }\n\n return spreads;\n };\n\n _proto.getRecursivelyReferencedFragments = function getRecursivelyReferencedFragments(operation) {\n var fragments = this._recursivelyReferencedFragments.get(operation);\n\n if (!fragments) {\n fragments = [];\n var collectedNames = Object.create(null);\n var nodesToVisit = [operation.selectionSet];\n\n while (nodesToVisit.length !== 0) {\n var node = nodesToVisit.pop();\n\n for (var _i4 = 0, _this$getFragmentSpre2 = this.getFragmentSpreads(node); _i4 < _this$getFragmentSpre2.length; _i4++) {\n var spread = _this$getFragmentSpre2[_i4];\n var fragName = spread.name.value;\n\n if (collectedNames[fragName] !== true) {\n collectedNames[fragName] = true;\n var fragment = this.getFragment(fragName);\n\n if (fragment) {\n fragments.push(fragment);\n nodesToVisit.push(fragment.selectionSet);\n }\n }\n }\n }\n\n this._recursivelyReferencedFragments.set(operation, fragments);\n }\n\n return fragments;\n };\n\n return ASTValidationContext;\n}();\nvar SDLValidationContext = /*#__PURE__*/function (_ASTValidationContext) {\n _inheritsLoose(SDLValidationContext, _ASTValidationContext);\n\n function SDLValidationContext(ast, schema, onError) {\n var _this;\n\n _this = _ASTValidationContext.call(this, ast, onError) || this;\n _this._schema = schema;\n return _this;\n }\n\n var _proto2 = SDLValidationContext.prototype;\n\n _proto2.getSchema = function getSchema() {\n return this._schema;\n };\n\n return SDLValidationContext;\n}(ASTValidationContext);\nvar ValidationContext = /*#__PURE__*/function (_ASTValidationContext2) {\n _inheritsLoose(ValidationContext, _ASTValidationContext2);\n\n function ValidationContext(schema, ast, typeInfo, onError) {\n var _this2;\n\n _this2 = _ASTValidationContext2.call(this, ast, onError) || this;\n _this2._schema = schema;\n _this2._typeInfo = typeInfo;\n _this2._variableUsages = new Map();\n _this2._recursiveVariableUsages = new Map();\n return _this2;\n }\n\n var _proto3 = ValidationContext.prototype;\n\n _proto3.getSchema = function getSchema() {\n return this._schema;\n };\n\n _proto3.getVariableUsages = function getVariableUsages(node) {\n var usages = this._variableUsages.get(node);\n\n if (!usages) {\n var newUsages = [];\n var typeInfo = new _utilities_TypeInfo_mjs__WEBPACK_IMPORTED_MODULE_2__[\"TypeInfo\"](this._schema);\n Object(_language_visitor_mjs__WEBPACK_IMPORTED_MODULE_1__[\"visit\"])(node, Object(_utilities_TypeInfo_mjs__WEBPACK_IMPORTED_MODULE_2__[\"visitWithTypeInfo\"])(typeInfo, {\n VariableDefinition: function VariableDefinition() {\n return false;\n },\n Variable: function Variable(variable) {\n newUsages.push({\n node: variable,\n type: typeInfo.getInputType(),\n defaultValue: typeInfo.getDefaultValue()\n });\n }\n }));\n usages = newUsages;\n\n this._variableUsages.set(node, usages);\n }\n\n return usages;\n };\n\n _proto3.getRecursiveVariableUsages = function getRecursiveVariableUsages(operation) {\n var usages = this._recursiveVariableUsages.get(operation);\n\n if (!usages) {\n usages = this.getVariableUsages(operation);\n\n for (var _i6 = 0, _this$getRecursivelyR2 = this.getRecursivelyReferencedFragments(operation); _i6 < _this$getRecursivelyR2.length; _i6++) {\n var frag = _this$getRecursivelyR2[_i6];\n usages = usages.concat(this.getVariableUsages(frag));\n }\n\n this._recursiveVariableUsages.set(operation, usages);\n }\n\n return usages;\n };\n\n _proto3.getType = function getType() {\n return this._typeInfo.getType();\n };\n\n _proto3.getParentType = function getParentType() {\n return this._typeInfo.getParentType();\n };\n\n _proto3.getInputType = function getInputType() {\n return this._typeInfo.getInputType();\n };\n\n _proto3.getParentInputType = function getParentInputType() {\n return this._typeInfo.getParentInputType();\n };\n\n _proto3.getFieldDef = function getFieldDef() {\n return this._typeInfo.getFieldDef();\n };\n\n _proto3.getDirective = function getDirective() {\n return this._typeInfo.getDirective();\n };\n\n _proto3.getArgument = function getArgument() {\n return this._typeInfo.getArgument();\n };\n\n _proto3.getEnumValue = function getEnumValue() {\n return this._typeInfo.getEnumValue();\n };\n\n return ValidationContext;\n}(ASTValidationContext);\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/ValidationContext.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/index.mjs": /*!***************************************************!*\ !*** ./node_modules/graphql/validation/index.mjs ***! \***************************************************/ /*! exports provided: validate, ValidationContext, specifiedRules, ExecutableDefinitionsRule, FieldsOnCorrectTypeRule, FragmentsOnCompositeTypesRule, KnownArgumentNamesRule, KnownDirectivesRule, KnownFragmentNamesRule, KnownTypeNamesRule, LoneAnonymousOperationRule, NoFragmentCyclesRule, NoUndefinedVariablesRule, NoUnusedFragmentsRule, NoUnusedVariablesRule, OverlappingFieldsCanBeMergedRule, PossibleFragmentSpreadsRule, ProvidedRequiredArgumentsRule, ScalarLeafsRule, SingleFieldSubscriptionsRule, UniqueArgumentNamesRule, UniqueDirectivesPerLocationRule, UniqueFragmentNamesRule, UniqueInputFieldNamesRule, UniqueOperationNamesRule, UniqueVariableNamesRule, ValuesOfCorrectTypeRule, VariablesAreInputTypesRule, VariablesInAllowedPositionRule, LoneSchemaDefinitionRule, UniqueOperationTypesRule, UniqueTypeNamesRule, UniqueEnumValueNamesRule, UniqueFieldDefinitionNamesRule, UniqueDirectiveNamesRule, PossibleTypeExtensionsRule, NoDeprecatedCustomRule, NoSchemaIntrospectionCustomRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _validate_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.mjs */ \"./node_modules/graphql/validation/validate.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"validate\", function() { return _validate_mjs__WEBPACK_IMPORTED_MODULE_0__[\"validate\"]; });\n\n/* harmony import */ var _ValidationContext_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ValidationContext.mjs */ \"./node_modules/graphql/validation/ValidationContext.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationContext\", function() { return _ValidationContext_mjs__WEBPACK_IMPORTED_MODULE_1__[\"ValidationContext\"]; });\n\n/* harmony import */ var _specifiedRules_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./specifiedRules.mjs */ \"./node_modules/graphql/validation/specifiedRules.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"specifiedRules\", function() { return _specifiedRules_mjs__WEBPACK_IMPORTED_MODULE_2__[\"specifiedRules\"]; });\n\n/* harmony import */ var _rules_ExecutableDefinitionsRule_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./rules/ExecutableDefinitionsRule.mjs */ \"./node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExecutableDefinitionsRule\", function() { return _rules_ExecutableDefinitionsRule_mjs__WEBPACK_IMPORTED_MODULE_3__[\"ExecutableDefinitionsRule\"]; });\n\n/* harmony import */ var _rules_FieldsOnCorrectTypeRule_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./rules/FieldsOnCorrectTypeRule.mjs */ \"./node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FieldsOnCorrectTypeRule\", function() { return _rules_FieldsOnCorrectTypeRule_mjs__WEBPACK_IMPORTED_MODULE_4__[\"FieldsOnCorrectTypeRule\"]; });\n\n/* harmony import */ var _rules_FragmentsOnCompositeTypesRule_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./rules/FragmentsOnCompositeTypesRule.mjs */ \"./node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FragmentsOnCompositeTypesRule\", function() { return _rules_FragmentsOnCompositeTypesRule_mjs__WEBPACK_IMPORTED_MODULE_5__[\"FragmentsOnCompositeTypesRule\"]; });\n\n/* harmony import */ var _rules_KnownArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./rules/KnownArgumentNamesRule.mjs */ \"./node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KnownArgumentNamesRule\", function() { return _rules_KnownArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_6__[\"KnownArgumentNamesRule\"]; });\n\n/* harmony import */ var _rules_KnownDirectivesRule_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./rules/KnownDirectivesRule.mjs */ \"./node_modules/graphql/validation/rules/KnownDirectivesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KnownDirectivesRule\", function() { return _rules_KnownDirectivesRule_mjs__WEBPACK_IMPORTED_MODULE_7__[\"KnownDirectivesRule\"]; });\n\n/* harmony import */ var _rules_KnownFragmentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./rules/KnownFragmentNamesRule.mjs */ \"./node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KnownFragmentNamesRule\", function() { return _rules_KnownFragmentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_8__[\"KnownFragmentNamesRule\"]; });\n\n/* harmony import */ var _rules_KnownTypeNamesRule_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./rules/KnownTypeNamesRule.mjs */ \"./node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KnownTypeNamesRule\", function() { return _rules_KnownTypeNamesRule_mjs__WEBPACK_IMPORTED_MODULE_9__[\"KnownTypeNamesRule\"]; });\n\n/* harmony import */ var _rules_LoneAnonymousOperationRule_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./rules/LoneAnonymousOperationRule.mjs */ \"./node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LoneAnonymousOperationRule\", function() { return _rules_LoneAnonymousOperationRule_mjs__WEBPACK_IMPORTED_MODULE_10__[\"LoneAnonymousOperationRule\"]; });\n\n/* harmony import */ var _rules_NoFragmentCyclesRule_mjs__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./rules/NoFragmentCyclesRule.mjs */ \"./node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoFragmentCyclesRule\", function() { return _rules_NoFragmentCyclesRule_mjs__WEBPACK_IMPORTED_MODULE_11__[\"NoFragmentCyclesRule\"]; });\n\n/* harmony import */ var _rules_NoUndefinedVariablesRule_mjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./rules/NoUndefinedVariablesRule.mjs */ \"./node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoUndefinedVariablesRule\", function() { return _rules_NoUndefinedVariablesRule_mjs__WEBPACK_IMPORTED_MODULE_12__[\"NoUndefinedVariablesRule\"]; });\n\n/* harmony import */ var _rules_NoUnusedFragmentsRule_mjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./rules/NoUnusedFragmentsRule.mjs */ \"./node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoUnusedFragmentsRule\", function() { return _rules_NoUnusedFragmentsRule_mjs__WEBPACK_IMPORTED_MODULE_13__[\"NoUnusedFragmentsRule\"]; });\n\n/* harmony import */ var _rules_NoUnusedVariablesRule_mjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./rules/NoUnusedVariablesRule.mjs */ \"./node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoUnusedVariablesRule\", function() { return _rules_NoUnusedVariablesRule_mjs__WEBPACK_IMPORTED_MODULE_14__[\"NoUnusedVariablesRule\"]; });\n\n/* harmony import */ var _rules_OverlappingFieldsCanBeMergedRule_mjs__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./rules/OverlappingFieldsCanBeMergedRule.mjs */ \"./node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OverlappingFieldsCanBeMergedRule\", function() { return _rules_OverlappingFieldsCanBeMergedRule_mjs__WEBPACK_IMPORTED_MODULE_15__[\"OverlappingFieldsCanBeMergedRule\"]; });\n\n/* harmony import */ var _rules_PossibleFragmentSpreadsRule_mjs__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./rules/PossibleFragmentSpreadsRule.mjs */ \"./node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PossibleFragmentSpreadsRule\", function() { return _rules_PossibleFragmentSpreadsRule_mjs__WEBPACK_IMPORTED_MODULE_16__[\"PossibleFragmentSpreadsRule\"]; });\n\n/* harmony import */ var _rules_ProvidedRequiredArgumentsRule_mjs__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./rules/ProvidedRequiredArgumentsRule.mjs */ \"./node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProvidedRequiredArgumentsRule\", function() { return _rules_ProvidedRequiredArgumentsRule_mjs__WEBPACK_IMPORTED_MODULE_17__[\"ProvidedRequiredArgumentsRule\"]; });\n\n/* harmony import */ var _rules_ScalarLeafsRule_mjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./rules/ScalarLeafsRule.mjs */ \"./node_modules/graphql/validation/rules/ScalarLeafsRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScalarLeafsRule\", function() { return _rules_ScalarLeafsRule_mjs__WEBPACK_IMPORTED_MODULE_18__[\"ScalarLeafsRule\"]; });\n\n/* harmony import */ var _rules_SingleFieldSubscriptionsRule_mjs__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./rules/SingleFieldSubscriptionsRule.mjs */ \"./node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SingleFieldSubscriptionsRule\", function() { return _rules_SingleFieldSubscriptionsRule_mjs__WEBPACK_IMPORTED_MODULE_19__[\"SingleFieldSubscriptionsRule\"]; });\n\n/* harmony import */ var _rules_UniqueArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./rules/UniqueArgumentNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueArgumentNamesRule\", function() { return _rules_UniqueArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_20__[\"UniqueArgumentNamesRule\"]; });\n\n/* harmony import */ var _rules_UniqueDirectivesPerLocationRule_mjs__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./rules/UniqueDirectivesPerLocationRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueDirectivesPerLocationRule\", function() { return _rules_UniqueDirectivesPerLocationRule_mjs__WEBPACK_IMPORTED_MODULE_21__[\"UniqueDirectivesPerLocationRule\"]; });\n\n/* harmony import */ var _rules_UniqueFragmentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./rules/UniqueFragmentNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueFragmentNamesRule\", function() { return _rules_UniqueFragmentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_22__[\"UniqueFragmentNamesRule\"]; });\n\n/* harmony import */ var _rules_UniqueInputFieldNamesRule_mjs__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./rules/UniqueInputFieldNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueInputFieldNamesRule\", function() { return _rules_UniqueInputFieldNamesRule_mjs__WEBPACK_IMPORTED_MODULE_23__[\"UniqueInputFieldNamesRule\"]; });\n\n/* harmony import */ var _rules_UniqueOperationNamesRule_mjs__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./rules/UniqueOperationNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueOperationNamesRule\", function() { return _rules_UniqueOperationNamesRule_mjs__WEBPACK_IMPORTED_MODULE_24__[\"UniqueOperationNamesRule\"]; });\n\n/* harmony import */ var _rules_UniqueVariableNamesRule_mjs__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./rules/UniqueVariableNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueVariableNamesRule\", function() { return _rules_UniqueVariableNamesRule_mjs__WEBPACK_IMPORTED_MODULE_25__[\"UniqueVariableNamesRule\"]; });\n\n/* harmony import */ var _rules_ValuesOfCorrectTypeRule_mjs__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./rules/ValuesOfCorrectTypeRule.mjs */ \"./node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValuesOfCorrectTypeRule\", function() { return _rules_ValuesOfCorrectTypeRule_mjs__WEBPACK_IMPORTED_MODULE_26__[\"ValuesOfCorrectTypeRule\"]; });\n\n/* harmony import */ var _rules_VariablesAreInputTypesRule_mjs__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./rules/VariablesAreInputTypesRule.mjs */ \"./node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VariablesAreInputTypesRule\", function() { return _rules_VariablesAreInputTypesRule_mjs__WEBPACK_IMPORTED_MODULE_27__[\"VariablesAreInputTypesRule\"]; });\n\n/* harmony import */ var _rules_VariablesInAllowedPositionRule_mjs__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./rules/VariablesInAllowedPositionRule.mjs */ \"./node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VariablesInAllowedPositionRule\", function() { return _rules_VariablesInAllowedPositionRule_mjs__WEBPACK_IMPORTED_MODULE_28__[\"VariablesInAllowedPositionRule\"]; });\n\n/* harmony import */ var _rules_LoneSchemaDefinitionRule_mjs__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./rules/LoneSchemaDefinitionRule.mjs */ \"./node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LoneSchemaDefinitionRule\", function() { return _rules_LoneSchemaDefinitionRule_mjs__WEBPACK_IMPORTED_MODULE_29__[\"LoneSchemaDefinitionRule\"]; });\n\n/* harmony import */ var _rules_UniqueOperationTypesRule_mjs__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./rules/UniqueOperationTypesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueOperationTypesRule\", function() { return _rules_UniqueOperationTypesRule_mjs__WEBPACK_IMPORTED_MODULE_30__[\"UniqueOperationTypesRule\"]; });\n\n/* harmony import */ var _rules_UniqueTypeNamesRule_mjs__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./rules/UniqueTypeNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueTypeNamesRule\", function() { return _rules_UniqueTypeNamesRule_mjs__WEBPACK_IMPORTED_MODULE_31__[\"UniqueTypeNamesRule\"]; });\n\n/* harmony import */ var _rules_UniqueEnumValueNamesRule_mjs__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./rules/UniqueEnumValueNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueEnumValueNamesRule\", function() { return _rules_UniqueEnumValueNamesRule_mjs__WEBPACK_IMPORTED_MODULE_32__[\"UniqueEnumValueNamesRule\"]; });\n\n/* harmony import */ var _rules_UniqueFieldDefinitionNamesRule_mjs__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./rules/UniqueFieldDefinitionNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueFieldDefinitionNamesRule\", function() { return _rules_UniqueFieldDefinitionNamesRule_mjs__WEBPACK_IMPORTED_MODULE_33__[\"UniqueFieldDefinitionNamesRule\"]; });\n\n/* harmony import */ var _rules_UniqueDirectiveNamesRule_mjs__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./rules/UniqueDirectiveNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UniqueDirectiveNamesRule\", function() { return _rules_UniqueDirectiveNamesRule_mjs__WEBPACK_IMPORTED_MODULE_34__[\"UniqueDirectiveNamesRule\"]; });\n\n/* harmony import */ var _rules_PossibleTypeExtensionsRule_mjs__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./rules/PossibleTypeExtensionsRule.mjs */ \"./node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PossibleTypeExtensionsRule\", function() { return _rules_PossibleTypeExtensionsRule_mjs__WEBPACK_IMPORTED_MODULE_35__[\"PossibleTypeExtensionsRule\"]; });\n\n/* harmony import */ var _rules_custom_NoDeprecatedCustomRule_mjs__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./rules/custom/NoDeprecatedCustomRule.mjs */ \"./node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoDeprecatedCustomRule\", function() { return _rules_custom_NoDeprecatedCustomRule_mjs__WEBPACK_IMPORTED_MODULE_36__[\"NoDeprecatedCustomRule\"]; });\n\n/* harmony import */ var _rules_custom_NoSchemaIntrospectionCustomRule_mjs__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./rules/custom/NoSchemaIntrospectionCustomRule.mjs */ \"./node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NoSchemaIntrospectionCustomRule\", function() { return _rules_custom_NoSchemaIntrospectionCustomRule_mjs__WEBPACK_IMPORTED_MODULE_37__[\"NoSchemaIntrospectionCustomRule\"]; });\n\n\n\n// All validation rules in the GraphQL Specification.\n // Spec Section: \"Executable Definitions\"\n\n // Spec Section: \"Field Selections on Objects, Interfaces, and Unions Types\"\n\n // Spec Section: \"Fragments on Composite Types\"\n\n // Spec Section: \"Argument Names\"\n\n // Spec Section: \"Directives Are Defined\"\n\n // Spec Section: \"Fragment spread target defined\"\n\n // Spec Section: \"Fragment Spread Type Existence\"\n\n // Spec Section: \"Lone Anonymous Operation\"\n\n // Spec Section: \"Fragments must not form cycles\"\n\n // Spec Section: \"All Variable Used Defined\"\n\n // Spec Section: \"Fragments must be used\"\n\n // Spec Section: \"All Variables Used\"\n\n // Spec Section: \"Field Selection Merging\"\n\n // Spec Section: \"Fragment spread is possible\"\n\n // Spec Section: \"Argument Optionality\"\n\n // Spec Section: \"Leaf Field Selections\"\n\n // Spec Section: \"Subscriptions with Single Root Field\"\n\n // Spec Section: \"Argument Uniqueness\"\n\n // Spec Section: \"Directives Are Unique Per Location\"\n\n // Spec Section: \"Fragment Name Uniqueness\"\n\n // Spec Section: \"Input Object Field Uniqueness\"\n\n // Spec Section: \"Operation Name Uniqueness\"\n\n // Spec Section: \"Variable Uniqueness\"\n\n // Spec Section: \"Values Type Correctness\"\n\n // Spec Section: \"Variables are Input Types\"\n\n // Spec Section: \"All Variable Usages Are Allowed\"\n\n // SDL-specific validation rules\n\n\n\n\n\n\n\n // Optional rules not defined by the GraphQL Specification\n\n\n\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/index.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs": /*!*****************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs ***! \*****************************************************************************/ /*! exports provided: ExecutableDefinitionsRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExecutableDefinitionsRule\", function() { return ExecutableDefinitionsRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_predicates_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../language/predicates.mjs */ \"./node_modules/graphql/language/predicates.mjs\");\n\n\n\n\n/**\n * Executable definitions\n *\n * A GraphQL document is only valid for execution if all definitions are either\n * operation or fragment definitions.\n */\nfunction ExecutableDefinitionsRule(context) {\n return {\n Document: function Document(node) {\n for (var _i2 = 0, _node$definitions2 = node.definitions; _i2 < _node$definitions2.length; _i2++) {\n var definition = _node$definitions2[_i2];\n\n if (!Object(_language_predicates_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isExecutableDefinitionNode\"])(definition)) {\n var defName = definition.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SCHEMA_DEFINITION || definition.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SCHEMA_EXTENSION ? 'schema' : '\"' + definition.name.value + '\"';\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"The \".concat(defName, \" definition is not executable.\"), definition));\n }\n }\n\n return false;\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs": /*!***************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs ***! \***************************************************************************/ /*! exports provided: FieldsOnCorrectTypeRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FieldsOnCorrectTypeRule\", function() { return FieldsOnCorrectTypeRule; });\n/* harmony import */ var _polyfills_arrayFrom_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../polyfills/arrayFrom.mjs */ \"./node_modules/graphql/polyfills/arrayFrom.mjs\");\n/* harmony import */ var _jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../jsutils/didYouMean.mjs */ \"./node_modules/graphql/jsutils/didYouMean.mjs\");\n/* harmony import */ var _jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../jsutils/suggestionList.mjs */ \"./node_modules/graphql/jsutils/suggestionList.mjs\");\n/* harmony import */ var _jsutils_naturalCompare_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../jsutils/naturalCompare.mjs */ \"./node_modules/graphql/jsutils/naturalCompare.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n\n\n\n/**\n * Fields on correct type\n *\n * A GraphQL document is only valid if all fields selected are defined by the\n * parent type, or are an allowed meta field such as __typename.\n */\nfunction FieldsOnCorrectTypeRule(context) {\n return {\n Field: function Field(node) {\n var type = context.getParentType();\n\n if (type) {\n var fieldDef = context.getFieldDef();\n\n if (!fieldDef) {\n // This field doesn't exist, lets look for suggestions.\n var schema = context.getSchema();\n var fieldName = node.name.value; // First determine if there are any suggested types to condition on.\n\n var suggestion = Object(_jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])('to use an inline fragment on', getSuggestedTypeNames(schema, type, fieldName)); // If there are no suggested types, then perhaps this was a typo?\n\n if (suggestion === '') {\n suggestion = Object(_jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(getSuggestedFieldNames(type, fieldName));\n } // Report an error, including helpful suggestions.\n\n\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Cannot query field \\\"\".concat(fieldName, \"\\\" on type \\\"\").concat(type.name, \"\\\".\") + suggestion, node));\n }\n }\n }\n };\n}\n/**\n * Go through all of the implementations of type, as well as the interfaces that\n * they implement. If any of those types include the provided field, suggest them,\n * sorted by how often the type is referenced.\n */\n\nfunction getSuggestedTypeNames(schema, type, fieldName) {\n if (!Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isAbstractType\"])(type)) {\n // Must be an Object type, which does not have possible fields.\n return [];\n }\n\n var suggestedTypes = new Set();\n var usageCount = Object.create(null);\n\n for (var _i2 = 0, _schema$getPossibleTy2 = schema.getPossibleTypes(type); _i2 < _schema$getPossibleTy2.length; _i2++) {\n var possibleType = _schema$getPossibleTy2[_i2];\n\n if (!possibleType.getFields()[fieldName]) {\n continue;\n } // This object type defines this field.\n\n\n suggestedTypes.add(possibleType);\n usageCount[possibleType.name] = 1;\n\n for (var _i4 = 0, _possibleType$getInte2 = possibleType.getInterfaces(); _i4 < _possibleType$getInte2.length; _i4++) {\n var _usageCount$possibleI;\n\n var possibleInterface = _possibleType$getInte2[_i4];\n\n if (!possibleInterface.getFields()[fieldName]) {\n continue;\n } // This interface type defines this field.\n\n\n suggestedTypes.add(possibleInterface);\n usageCount[possibleInterface.name] = ((_usageCount$possibleI = usageCount[possibleInterface.name]) !== null && _usageCount$possibleI !== void 0 ? _usageCount$possibleI : 0) + 1;\n }\n }\n\n return Object(_polyfills_arrayFrom_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(suggestedTypes).sort(function (typeA, typeB) {\n // Suggest both interface and object types based on how common they are.\n var usageCountDiff = usageCount[typeB.name] - usageCount[typeA.name];\n\n if (usageCountDiff !== 0) {\n return usageCountDiff;\n } // Suggest super types first followed by subtypes\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isInterfaceType\"])(typeA) && schema.isSubType(typeA, typeB)) {\n return -1;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isInterfaceType\"])(typeB) && schema.isSubType(typeB, typeA)) {\n return 1;\n }\n\n return Object(_jsutils_naturalCompare_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(typeA.name, typeB.name);\n }).map(function (x) {\n return x.name;\n });\n}\n/**\n * For the field name provided, determine if there are any similar field names\n * that may be the result of a typo.\n */\n\n\nfunction getSuggestedFieldNames(type, fieldName) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isObjectType\"])(type) || Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isInterfaceType\"])(type)) {\n var possibleFieldNames = Object.keys(type.getFields());\n return Object(_jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(fieldName, possibleFieldNames);\n } // Otherwise, must be a Union type, which does not define fields.\n\n\n return [];\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs": /*!*********************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs ***! \*********************************************************************************/ /*! exports provided: FragmentsOnCompositeTypesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FragmentsOnCompositeTypesRule\", function() { return FragmentsOnCompositeTypesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../utilities/typeFromAST.mjs */ \"./node_modules/graphql/utilities/typeFromAST.mjs\");\n\n\n\n\n\n/**\n * Fragments on composite type\n *\n * Fragments use a type condition to determine if they apply, since fragments\n * can only be spread into a composite type (object, interface, or union), the\n * type condition must also be a composite type.\n */\nfunction FragmentsOnCompositeTypesRule(context) {\n return {\n InlineFragment: function InlineFragment(node) {\n var typeCondition = node.typeCondition;\n\n if (typeCondition) {\n var type = Object(_utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_3__[\"typeFromAST\"])(context.getSchema(), typeCondition);\n\n if (type && !Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isCompositeType\"])(type)) {\n var typeStr = Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_1__[\"print\"])(typeCondition);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Fragment cannot condition on non composite type \\\"\".concat(typeStr, \"\\\".\"), typeCondition));\n }\n }\n },\n FragmentDefinition: function FragmentDefinition(node) {\n var type = Object(_utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_3__[\"typeFromAST\"])(context.getSchema(), node.typeCondition);\n\n if (type && !Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isCompositeType\"])(type)) {\n var typeStr = Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_1__[\"print\"])(node.typeCondition);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Fragment \\\"\".concat(node.name.value, \"\\\" cannot condition on non composite type \\\"\").concat(typeStr, \"\\\".\"), node.typeCondition));\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs": /*!**************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs ***! \**************************************************************************/ /*! exports provided: KnownArgumentNamesRule, KnownArgumentNamesOnDirectivesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KnownArgumentNamesRule\", function() { return KnownArgumentNamesRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KnownArgumentNamesOnDirectivesRule\", function() { return KnownArgumentNamesOnDirectivesRule; });\n/* harmony import */ var _jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../jsutils/didYouMean.mjs */ \"./node_modules/graphql/jsutils/didYouMean.mjs\");\n/* harmony import */ var _jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../jsutils/suggestionList.mjs */ \"./node_modules/graphql/jsutils/suggestionList.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n\n\n\n\n\n\n/**\n * Known argument names\n *\n * A GraphQL field is only valid if all supplied arguments are defined by\n * that field.\n */\nfunction KnownArgumentNamesRule(context) {\n return _objectSpread(_objectSpread({}, KnownArgumentNamesOnDirectivesRule(context)), {}, {\n Argument: function Argument(argNode) {\n var argDef = context.getArgument();\n var fieldDef = context.getFieldDef();\n var parentType = context.getParentType();\n\n if (!argDef && fieldDef && parentType) {\n var argName = argNode.name.value;\n var knownArgsNames = fieldDef.args.map(function (arg) {\n return arg.name;\n });\n var suggestions = Object(_jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(argName, knownArgsNames);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLError\"](\"Unknown argument \\\"\".concat(argName, \"\\\" on field \\\"\").concat(parentType.name, \".\").concat(fieldDef.name, \"\\\".\") + Object(_jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(suggestions), argNode));\n }\n }\n });\n}\n/**\n * @internal\n */\n\nfunction KnownArgumentNamesOnDirectivesRule(context) {\n var directiveArgs = Object.create(null);\n var schema = context.getSchema();\n var definedDirectives = schema ? schema.getDirectives() : _type_directives_mjs__WEBPACK_IMPORTED_MODULE_4__[\"specifiedDirectives\"];\n\n for (var _i2 = 0; _i2 < definedDirectives.length; _i2++) {\n var directive = definedDirectives[_i2];\n directiveArgs[directive.name] = directive.args.map(function (arg) {\n return arg.name;\n });\n }\n\n var astDefinitions = context.getDocument().definitions;\n\n for (var _i4 = 0; _i4 < astDefinitions.length; _i4++) {\n var def = astDefinitions[_i4];\n\n if (def.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].DIRECTIVE_DEFINITION) {\n var _def$arguments;\n\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var argsNodes = (_def$arguments = def.arguments) !== null && _def$arguments !== void 0 ? _def$arguments : [];\n directiveArgs[def.name.value] = argsNodes.map(function (arg) {\n return arg.name.value;\n });\n }\n }\n\n return {\n Directive: function Directive(directiveNode) {\n var directiveName = directiveNode.name.value;\n var knownArgs = directiveArgs[directiveName];\n\n if (directiveNode.arguments && knownArgs) {\n for (var _i6 = 0, _directiveNode$argume2 = directiveNode.arguments; _i6 < _directiveNode$argume2.length; _i6++) {\n var argNode = _directiveNode$argume2[_i6];\n var argName = argNode.name.value;\n\n if (knownArgs.indexOf(argName) === -1) {\n var suggestions = Object(_jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(argName, knownArgs);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLError\"](\"Unknown argument \\\"\".concat(argName, \"\\\" on directive \\\"@\").concat(directiveName, \"\\\".\") + Object(_jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(suggestions), argNode));\n }\n }\n }\n\n return false;\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/KnownDirectivesRule.mjs": /*!***********************************************************************!*\ !*** ./node_modules/graphql/validation/rules/KnownDirectivesRule.mjs ***! \***********************************************************************/ /*! exports provided: KnownDirectivesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KnownDirectivesRule\", function() { return KnownDirectivesRule; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../language/directiveLocation.mjs */ \"./node_modules/graphql/language/directiveLocation.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n\n\n\n\n\n\n\n/**\n * Known directives\n *\n * A GraphQL document is only valid if all `@directives` are known by the\n * schema and legally positioned.\n */\nfunction KnownDirectivesRule(context) {\n var locationsMap = Object.create(null);\n var schema = context.getSchema();\n var definedDirectives = schema ? schema.getDirectives() : _type_directives_mjs__WEBPACK_IMPORTED_MODULE_5__[\"specifiedDirectives\"];\n\n for (var _i2 = 0; _i2 < definedDirectives.length; _i2++) {\n var directive = definedDirectives[_i2];\n locationsMap[directive.name] = directive.locations;\n }\n\n var astDefinitions = context.getDocument().definitions;\n\n for (var _i4 = 0; _i4 < astDefinitions.length; _i4++) {\n var def = astDefinitions[_i4];\n\n if (def.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].DIRECTIVE_DEFINITION) {\n locationsMap[def.name.value] = def.locations.map(function (name) {\n return name.value;\n });\n }\n }\n\n return {\n Directive: function Directive(node, _key, _parent, _path, ancestors) {\n var name = node.name.value;\n var locations = locationsMap[name];\n\n if (!locations) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLError\"](\"Unknown directive \\\"@\".concat(name, \"\\\".\"), node));\n return;\n }\n\n var candidateLocation = getDirectiveLocationForASTPath(ancestors);\n\n if (candidateLocation && locations.indexOf(candidateLocation) === -1) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLError\"](\"Directive \\\"@\".concat(name, \"\\\" may not be used on \").concat(candidateLocation, \".\"), node));\n }\n }\n };\n}\n\nfunction getDirectiveLocationForASTPath(ancestors) {\n var appliedTo = ancestors[ancestors.length - 1];\n !Array.isArray(appliedTo) || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(0);\n\n switch (appliedTo.kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].OPERATION_DEFINITION:\n return getDirectiveLocationForOperation(appliedTo.operation);\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].FIELD:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].FIELD;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].FRAGMENT_SPREAD:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].FRAGMENT_SPREAD;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].INLINE_FRAGMENT:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].INLINE_FRAGMENT;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].FRAGMENT_DEFINITION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].FRAGMENT_DEFINITION;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].VARIABLE_DEFINITION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].VARIABLE_DEFINITION;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].SCHEMA_DEFINITION:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].SCHEMA_EXTENSION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].SCHEMA;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].SCALAR_TYPE_DEFINITION:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].SCALAR_TYPE_EXTENSION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].SCALAR;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].OBJECT_TYPE_DEFINITION:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].OBJECT_TYPE_EXTENSION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].OBJECT;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].FIELD_DEFINITION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].FIELD_DEFINITION;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].INTERFACE_TYPE_DEFINITION:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].INTERFACE_TYPE_EXTENSION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].INTERFACE;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].UNION_TYPE_DEFINITION:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].UNION_TYPE_EXTENSION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].UNION;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].ENUM_TYPE_DEFINITION:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].ENUM_TYPE_EXTENSION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].ENUM;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].ENUM_VALUE_DEFINITION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].ENUM_VALUE;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].INPUT_OBJECT_TYPE_DEFINITION:\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].INPUT_OBJECT_TYPE_EXTENSION:\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].INPUT_OBJECT;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].INPUT_VALUE_DEFINITION:\n {\n var parentNode = ancestors[ancestors.length - 3];\n return parentNode.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].INPUT_OBJECT_TYPE_DEFINITION ? _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].INPUT_FIELD_DEFINITION : _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].ARGUMENT_DEFINITION;\n }\n }\n}\n\nfunction getDirectiveLocationForOperation(operation) {\n switch (operation) {\n case 'query':\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].QUERY;\n\n case 'mutation':\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].MUTATION;\n\n case 'subscription':\n return _language_directiveLocation_mjs__WEBPACK_IMPORTED_MODULE_4__[\"DirectiveLocation\"].SUBSCRIPTION;\n } // istanbul ignore next (Not reachable. All possible types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(0, 'Unexpected operation: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(operation));\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/KnownDirectivesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs": /*!**************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs ***! \**************************************************************************/ /*! exports provided: KnownFragmentNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KnownFragmentNamesRule\", function() { return KnownFragmentNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Known fragment names\n *\n * A GraphQL document is only valid if all `...Fragment` fragment spreads refer\n * to fragments defined in the same document.\n */\nfunction KnownFragmentNamesRule(context) {\n return {\n FragmentSpread: function FragmentSpread(node) {\n var fragmentName = node.name.value;\n var fragment = context.getFragment(fragmentName);\n\n if (!fragment) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Unknown fragment \\\"\".concat(fragmentName, \"\\\".\"), node.name));\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs": /*!**********************************************************************!*\ !*** ./node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs ***! \**********************************************************************/ /*! exports provided: KnownTypeNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KnownTypeNamesRule\", function() { return KnownTypeNamesRule; });\n/* harmony import */ var _jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../jsutils/didYouMean.mjs */ \"./node_modules/graphql/jsutils/didYouMean.mjs\");\n/* harmony import */ var _jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../jsutils/suggestionList.mjs */ \"./node_modules/graphql/jsutils/suggestionList.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_predicates_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../language/predicates.mjs */ \"./node_modules/graphql/language/predicates.mjs\");\n/* harmony import */ var _type_scalars_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../type/scalars.mjs */ \"./node_modules/graphql/type/scalars.mjs\");\n/* harmony import */ var _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../type/introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n\n\n\n\n\n\n\n/**\n * Known type names\n *\n * A GraphQL document is only valid if referenced types (specifically\n * variable definitions and fragment conditions) are defined by the type schema.\n */\nfunction KnownTypeNamesRule(context) {\n var schema = context.getSchema();\n var existingTypesMap = schema ? schema.getTypeMap() : Object.create(null);\n var definedTypes = Object.create(null);\n\n for (var _i2 = 0, _context$getDocument$2 = context.getDocument().definitions; _i2 < _context$getDocument$2.length; _i2++) {\n var def = _context$getDocument$2[_i2];\n\n if (Object(_language_predicates_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isTypeDefinitionNode\"])(def)) {\n definedTypes[def.name.value] = true;\n }\n }\n\n var typeNames = Object.keys(existingTypesMap).concat(Object.keys(definedTypes));\n return {\n NamedType: function NamedType(node, _1, parent, _2, ancestors) {\n var typeName = node.name.value;\n\n if (!existingTypesMap[typeName] && !definedTypes[typeName]) {\n var _ancestors$;\n\n var definitionNode = (_ancestors$ = ancestors[2]) !== null && _ancestors$ !== void 0 ? _ancestors$ : parent;\n var isSDL = definitionNode != null && isSDLNode(definitionNode);\n\n if (isSDL && isStandardTypeName(typeName)) {\n return;\n }\n\n var suggestedTypes = Object(_jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(typeName, isSDL ? standardTypeNames.concat(typeNames) : typeNames);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLError\"](\"Unknown type \\\"\".concat(typeName, \"\\\".\") + Object(_jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(suggestedTypes), node));\n }\n }\n };\n}\nvar standardTypeNames = [].concat(_type_scalars_mjs__WEBPACK_IMPORTED_MODULE_4__[\"specifiedScalarTypes\"], _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_5__[\"introspectionTypes\"]).map(function (type) {\n return type.name;\n});\n\nfunction isStandardTypeName(typeName) {\n return standardTypeNames.indexOf(typeName) !== -1;\n}\n\nfunction isSDLNode(value) {\n return !Array.isArray(value) && (Object(_language_predicates_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isTypeSystemDefinitionNode\"])(value) || Object(_language_predicates_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isTypeSystemExtensionNode\"])(value));\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs": /*!******************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs ***! \******************************************************************************/ /*! exports provided: LoneAnonymousOperationRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LoneAnonymousOperationRule\", function() { return LoneAnonymousOperationRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n\n\n\n/**\n * Lone anonymous operation\n *\n * A GraphQL document is only valid if when it contains an anonymous operation\n * (the query short-hand) that it contains only that one operation definition.\n */\nfunction LoneAnonymousOperationRule(context) {\n var operationCount = 0;\n return {\n Document: function Document(node) {\n operationCount = node.definitions.filter(function (definition) {\n return definition.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].OPERATION_DEFINITION;\n }).length;\n },\n OperationDefinition: function OperationDefinition(node) {\n if (!node.name && operationCount > 1) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"]('This anonymous operation must be the only defined operation.', node));\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs": /*!****************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs ***! \****************************************************************************/ /*! exports provided: LoneSchemaDefinitionRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LoneSchemaDefinitionRule\", function() { return LoneSchemaDefinitionRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Lone Schema definition\n *\n * A GraphQL document is only valid if it contains only one schema definition.\n */\nfunction LoneSchemaDefinitionRule(context) {\n var _ref, _ref2, _oldSchema$astNode;\n\n var oldSchema = context.getSchema();\n var alreadyDefined = (_ref = (_ref2 = (_oldSchema$astNode = oldSchema === null || oldSchema === void 0 ? void 0 : oldSchema.astNode) !== null && _oldSchema$astNode !== void 0 ? _oldSchema$astNode : oldSchema === null || oldSchema === void 0 ? void 0 : oldSchema.getQueryType()) !== null && _ref2 !== void 0 ? _ref2 : oldSchema === null || oldSchema === void 0 ? void 0 : oldSchema.getMutationType()) !== null && _ref !== void 0 ? _ref : oldSchema === null || oldSchema === void 0 ? void 0 : oldSchema.getSubscriptionType();\n var schemaDefinitionsCount = 0;\n return {\n SchemaDefinition: function SchemaDefinition(node) {\n if (alreadyDefined) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"]('Cannot define a new schema within a schema extension.', node));\n return;\n }\n\n if (schemaDefinitionsCount > 0) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"]('Must provide only one schema definition.', node));\n }\n\n ++schemaDefinitionsCount;\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs": /*!************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs ***! \************************************************************************/ /*! exports provided: NoFragmentCyclesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoFragmentCyclesRule\", function() { return NoFragmentCyclesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\nfunction NoFragmentCyclesRule(context) {\n // Tracks already visited fragments to maintain O(N) and to ensure that cycles\n // are not redundantly reported.\n var visitedFrags = Object.create(null); // Array of AST nodes used to produce meaningful errors\n\n var spreadPath = []; // Position in the spread path\n\n var spreadPathIndexByName = Object.create(null);\n return {\n OperationDefinition: function OperationDefinition() {\n return false;\n },\n FragmentDefinition: function FragmentDefinition(node) {\n detectCycleRecursive(node);\n return false;\n }\n }; // This does a straight-forward DFS to find cycles.\n // It does not terminate when a cycle was found but continues to explore\n // the graph to find all possible cycles.\n\n function detectCycleRecursive(fragment) {\n if (visitedFrags[fragment.name.value]) {\n return;\n }\n\n var fragmentName = fragment.name.value;\n visitedFrags[fragmentName] = true;\n var spreadNodes = context.getFragmentSpreads(fragment.selectionSet);\n\n if (spreadNodes.length === 0) {\n return;\n }\n\n spreadPathIndexByName[fragmentName] = spreadPath.length;\n\n for (var _i2 = 0; _i2 < spreadNodes.length; _i2++) {\n var spreadNode = spreadNodes[_i2];\n var spreadName = spreadNode.name.value;\n var cycleIndex = spreadPathIndexByName[spreadName];\n spreadPath.push(spreadNode);\n\n if (cycleIndex === undefined) {\n var spreadFragment = context.getFragment(spreadName);\n\n if (spreadFragment) {\n detectCycleRecursive(spreadFragment);\n }\n } else {\n var cyclePath = spreadPath.slice(cycleIndex);\n var viaPath = cyclePath.slice(0, -1).map(function (s) {\n return '\"' + s.name.value + '\"';\n }).join(', ');\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Cannot spread fragment \\\"\".concat(spreadName, \"\\\" within itself\") + (viaPath !== '' ? \" via \".concat(viaPath, \".\") : '.'), cyclePath));\n }\n\n spreadPath.pop();\n }\n\n spreadPathIndexByName[fragmentName] = undefined;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs": /*!****************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs ***! \****************************************************************************/ /*! exports provided: NoUndefinedVariablesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoUndefinedVariablesRule\", function() { return NoUndefinedVariablesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * No undefined variables\n *\n * A GraphQL operation is only valid if all variables encountered, both directly\n * and via fragment spreads, are defined by that operation.\n */\nfunction NoUndefinedVariablesRule(context) {\n var variableNameDefined = Object.create(null);\n return {\n OperationDefinition: {\n enter: function enter() {\n variableNameDefined = Object.create(null);\n },\n leave: function leave(operation) {\n var usages = context.getRecursiveVariableUsages(operation);\n\n for (var _i2 = 0; _i2 < usages.length; _i2++) {\n var _ref2 = usages[_i2];\n var node = _ref2.node;\n var varName = node.name.value;\n\n if (variableNameDefined[varName] !== true) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](operation.name ? \"Variable \\\"$\".concat(varName, \"\\\" is not defined by operation \\\"\").concat(operation.name.value, \"\\\".\") : \"Variable \\\"$\".concat(varName, \"\\\" is not defined.\"), [node, operation]));\n }\n }\n }\n },\n VariableDefinition: function VariableDefinition(node) {\n variableNameDefined[node.variable.name.value] = true;\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs": /*!*************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs ***! \*************************************************************************/ /*! exports provided: NoUnusedFragmentsRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoUnusedFragmentsRule\", function() { return NoUnusedFragmentsRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * No unused fragments\n *\n * A GraphQL document is only valid if all fragment definitions are spread\n * within operations, or spread within other fragments spread within operations.\n */\nfunction NoUnusedFragmentsRule(context) {\n var operationDefs = [];\n var fragmentDefs = [];\n return {\n OperationDefinition: function OperationDefinition(node) {\n operationDefs.push(node);\n return false;\n },\n FragmentDefinition: function FragmentDefinition(node) {\n fragmentDefs.push(node);\n return false;\n },\n Document: {\n leave: function leave() {\n var fragmentNameUsed = Object.create(null);\n\n for (var _i2 = 0; _i2 < operationDefs.length; _i2++) {\n var operation = operationDefs[_i2];\n\n for (var _i4 = 0, _context$getRecursive2 = context.getRecursivelyReferencedFragments(operation); _i4 < _context$getRecursive2.length; _i4++) {\n var fragment = _context$getRecursive2[_i4];\n fragmentNameUsed[fragment.name.value] = true;\n }\n }\n\n for (var _i6 = 0; _i6 < fragmentDefs.length; _i6++) {\n var fragmentDef = fragmentDefs[_i6];\n var fragName = fragmentDef.name.value;\n\n if (fragmentNameUsed[fragName] !== true) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Fragment \\\"\".concat(fragName, \"\\\" is never used.\"), fragmentDef));\n }\n }\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs": /*!*************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs ***! \*************************************************************************/ /*! exports provided: NoUnusedVariablesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoUnusedVariablesRule\", function() { return NoUnusedVariablesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * No unused variables\n *\n * A GraphQL operation is only valid if all variables defined by an operation\n * are used, either directly or within a spread fragment.\n */\nfunction NoUnusedVariablesRule(context) {\n var variableDefs = [];\n return {\n OperationDefinition: {\n enter: function enter() {\n variableDefs = [];\n },\n leave: function leave(operation) {\n var variableNameUsed = Object.create(null);\n var usages = context.getRecursiveVariableUsages(operation);\n\n for (var _i2 = 0; _i2 < usages.length; _i2++) {\n var _ref2 = usages[_i2];\n var node = _ref2.node;\n variableNameUsed[node.name.value] = true;\n }\n\n for (var _i4 = 0, _variableDefs2 = variableDefs; _i4 < _variableDefs2.length; _i4++) {\n var variableDef = _variableDefs2[_i4];\n var variableName = variableDef.variable.name.value;\n\n if (variableNameUsed[variableName] !== true) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](operation.name ? \"Variable \\\"$\".concat(variableName, \"\\\" is never used in operation \\\"\").concat(operation.name.value, \"\\\".\") : \"Variable \\\"$\".concat(variableName, \"\\\" is never used.\"), variableDef));\n }\n }\n }\n },\n VariableDefinition: function VariableDefinition(def) {\n variableDefs.push(def);\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs": /*!************************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs ***! \************************************************************************************/ /*! exports provided: OverlappingFieldsCanBeMergedRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"OverlappingFieldsCanBeMergedRule\", function() { return OverlappingFieldsCanBeMergedRule; });\n/* harmony import */ var _polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../polyfills/find.mjs */ \"./node_modules/graphql/polyfills/find.mjs\");\n/* harmony import */ var _polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../polyfills/objectEntries.mjs */ \"./node_modules/graphql/polyfills/objectEntries.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../utilities/typeFromAST.mjs */ \"./node_modules/graphql/utilities/typeFromAST.mjs\");\n\n\n\n\n\n\n\n\n\nfunction reasonMessage(reason) {\n if (Array.isArray(reason)) {\n return reason.map(function (_ref) {\n var responseName = _ref[0],\n subReason = _ref[1];\n return \"subfields \\\"\".concat(responseName, \"\\\" conflict because \") + reasonMessage(subReason);\n }).join(' and ');\n }\n\n return reason;\n}\n/**\n * Overlapping fields can be merged\n *\n * A selection set is only valid if all fields (including spreading any\n * fragments) either correspond to distinct response names or can be merged\n * without ambiguity.\n */\n\n\nfunction OverlappingFieldsCanBeMergedRule(context) {\n // A memoization for when two fragments are compared \"between\" each other for\n // conflicts. Two fragments may be compared many times, so memoizing this can\n // dramatically improve the performance of this validator.\n var comparedFragmentPairs = new PairSet(); // A cache for the \"field map\" and list of fragment names found in any given\n // selection set. Selection sets may be asked for this information multiple\n // times, so this improves the performance of this validator.\n\n var cachedFieldsAndFragmentNames = new Map();\n return {\n SelectionSet: function SelectionSet(selectionSet) {\n var conflicts = findConflictsWithinSelectionSet(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, context.getParentType(), selectionSet);\n\n for (var _i2 = 0; _i2 < conflicts.length; _i2++) {\n var _ref3 = conflicts[_i2];\n var _ref2$ = _ref3[0];\n var responseName = _ref2$[0];\n var reason = _ref2$[1];\n var fields1 = _ref3[1];\n var fields2 = _ref3[2];\n var reasonMsg = reasonMessage(reason);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_3__[\"GraphQLError\"](\"Fields \\\"\".concat(responseName, \"\\\" conflict because \").concat(reasonMsg, \". Use different aliases on the fields to fetch both if this was intentional.\"), fields1.concat(fields2)));\n }\n }\n };\n}\n\n/**\n * Algorithm:\n *\n * Conflicts occur when two fields exist in a query which will produce the same\n * response name, but represent differing values, thus creating a conflict.\n * The algorithm below finds all conflicts via making a series of comparisons\n * between fields. In order to compare as few fields as possible, this makes\n * a series of comparisons \"within\" sets of fields and \"between\" sets of fields.\n *\n * Given any selection set, a collection produces both a set of fields by\n * also including all inline fragments, as well as a list of fragments\n * referenced by fragment spreads.\n *\n * A) Each selection set represented in the document first compares \"within\" its\n * collected set of fields, finding any conflicts between every pair of\n * overlapping fields.\n * Note: This is the *only time* that a the fields \"within\" a set are compared\n * to each other. After this only fields \"between\" sets are compared.\n *\n * B) Also, if any fragment is referenced in a selection set, then a\n * comparison is made \"between\" the original set of fields and the\n * referenced fragment.\n *\n * C) Also, if multiple fragments are referenced, then comparisons\n * are made \"between\" each referenced fragment.\n *\n * D) When comparing \"between\" a set of fields and a referenced fragment, first\n * a comparison is made between each field in the original set of fields and\n * each field in the the referenced set of fields.\n *\n * E) Also, if any fragment is referenced in the referenced selection set,\n * then a comparison is made \"between\" the original set of fields and the\n * referenced fragment (recursively referring to step D).\n *\n * F) When comparing \"between\" two fragments, first a comparison is made between\n * each field in the first referenced set of fields and each field in the the\n * second referenced set of fields.\n *\n * G) Also, any fragments referenced by the first must be compared to the\n * second, and any fragments referenced by the second must be compared to the\n * first (recursively referring to step F).\n *\n * H) When comparing two fields, if both have selection sets, then a comparison\n * is made \"between\" both selection sets, first comparing the set of fields in\n * the first selection set with the set of fields in the second.\n *\n * I) Also, if any fragment is referenced in either selection set, then a\n * comparison is made \"between\" the other set of fields and the\n * referenced fragment.\n *\n * J) Also, if two fragments are referenced in both selection sets, then a\n * comparison is made \"between\" the two fragments.\n *\n */\n// Find all conflicts found \"within\" a selection set, including those found\n// via spreading in fragments. Called when visiting each SelectionSet in the\n// GraphQL Document.\nfunction findConflictsWithinSelectionSet(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, parentType, selectionSet) {\n var conflicts = [];\n\n var _getFieldsAndFragment = getFieldsAndFragmentNames(context, cachedFieldsAndFragmentNames, parentType, selectionSet),\n fieldMap = _getFieldsAndFragment[0],\n fragmentNames = _getFieldsAndFragment[1]; // (A) Find find all conflicts \"within\" the fields of this selection set.\n // Note: this is the *only place* `collectConflictsWithin` is called.\n\n\n collectConflictsWithin(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, fieldMap);\n\n if (fragmentNames.length !== 0) {\n // (B) Then collect conflicts between these fields and those represented by\n // each spread fragment name found.\n for (var i = 0; i < fragmentNames.length; i++) {\n collectConflictsBetweenFieldsAndFragment(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, false, fieldMap, fragmentNames[i]); // (C) Then compare this fragment with all other fragments found in this\n // selection set to collect conflicts between fragments spread together.\n // This compares each item in the list of fragment names to every other\n // item in that same list (except for itself).\n\n for (var j = i + 1; j < fragmentNames.length; j++) {\n collectConflictsBetweenFragments(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, false, fragmentNames[i], fragmentNames[j]);\n }\n }\n }\n\n return conflicts;\n} // Collect all conflicts found between a set of fields and a fragment reference\n// including via spreading in any nested fragments.\n\n\nfunction collectConflictsBetweenFieldsAndFragment(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fieldMap, fragmentName) {\n var fragment = context.getFragment(fragmentName);\n\n if (!fragment) {\n return;\n }\n\n var _getReferencedFieldsA = getReferencedFieldsAndFragmentNames(context, cachedFieldsAndFragmentNames, fragment),\n fieldMap2 = _getReferencedFieldsA[0],\n fragmentNames2 = _getReferencedFieldsA[1]; // Do not compare a fragment's fieldMap to itself.\n\n\n if (fieldMap === fieldMap2) {\n return;\n } // (D) First collect any conflicts between the provided collection of fields\n // and the collection of fields represented by the given fragment.\n\n\n collectConflictsBetween(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fieldMap, fieldMap2); // (E) Then collect any conflicts between the provided collection of fields\n // and any fragment names found in the given fragment.\n\n for (var i = 0; i < fragmentNames2.length; i++) {\n collectConflictsBetweenFieldsAndFragment(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fieldMap, fragmentNames2[i]);\n }\n} // Collect all conflicts found between two fragments, including via spreading in\n// any nested fragments.\n\n\nfunction collectConflictsBetweenFragments(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fragmentName1, fragmentName2) {\n // No need to compare a fragment to itself.\n if (fragmentName1 === fragmentName2) {\n return;\n } // Memoize so two fragments are not compared for conflicts more than once.\n\n\n if (comparedFragmentPairs.has(fragmentName1, fragmentName2, areMutuallyExclusive)) {\n return;\n }\n\n comparedFragmentPairs.add(fragmentName1, fragmentName2, areMutuallyExclusive);\n var fragment1 = context.getFragment(fragmentName1);\n var fragment2 = context.getFragment(fragmentName2);\n\n if (!fragment1 || !fragment2) {\n return;\n }\n\n var _getReferencedFieldsA2 = getReferencedFieldsAndFragmentNames(context, cachedFieldsAndFragmentNames, fragment1),\n fieldMap1 = _getReferencedFieldsA2[0],\n fragmentNames1 = _getReferencedFieldsA2[1];\n\n var _getReferencedFieldsA3 = getReferencedFieldsAndFragmentNames(context, cachedFieldsAndFragmentNames, fragment2),\n fieldMap2 = _getReferencedFieldsA3[0],\n fragmentNames2 = _getReferencedFieldsA3[1]; // (F) First, collect all conflicts between these two collections of fields\n // (not including any nested fragments).\n\n\n collectConflictsBetween(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fieldMap1, fieldMap2); // (G) Then collect conflicts between the first fragment and any nested\n // fragments spread in the second fragment.\n\n for (var j = 0; j < fragmentNames2.length; j++) {\n collectConflictsBetweenFragments(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fragmentName1, fragmentNames2[j]);\n } // (G) Then collect conflicts between the second fragment and any nested\n // fragments spread in the first fragment.\n\n\n for (var i = 0; i < fragmentNames1.length; i++) {\n collectConflictsBetweenFragments(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fragmentNames1[i], fragmentName2);\n }\n} // Find all conflicts found between two selection sets, including those found\n// via spreading in fragments. Called when determining if conflicts exist\n// between the sub-fields of two overlapping fields.\n\n\nfunction findConflictsBetweenSubSelectionSets(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, parentType1, selectionSet1, parentType2, selectionSet2) {\n var conflicts = [];\n\n var _getFieldsAndFragment2 = getFieldsAndFragmentNames(context, cachedFieldsAndFragmentNames, parentType1, selectionSet1),\n fieldMap1 = _getFieldsAndFragment2[0],\n fragmentNames1 = _getFieldsAndFragment2[1];\n\n var _getFieldsAndFragment3 = getFieldsAndFragmentNames(context, cachedFieldsAndFragmentNames, parentType2, selectionSet2),\n fieldMap2 = _getFieldsAndFragment3[0],\n fragmentNames2 = _getFieldsAndFragment3[1]; // (H) First, collect all conflicts between these two collections of field.\n\n\n collectConflictsBetween(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fieldMap1, fieldMap2); // (I) Then collect conflicts between the first collection of fields and\n // those referenced by each fragment name associated with the second.\n\n if (fragmentNames2.length !== 0) {\n for (var j = 0; j < fragmentNames2.length; j++) {\n collectConflictsBetweenFieldsAndFragment(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fieldMap1, fragmentNames2[j]);\n }\n } // (I) Then collect conflicts between the second collection of fields and\n // those referenced by each fragment name associated with the first.\n\n\n if (fragmentNames1.length !== 0) {\n for (var i = 0; i < fragmentNames1.length; i++) {\n collectConflictsBetweenFieldsAndFragment(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fieldMap2, fragmentNames1[i]);\n }\n } // (J) Also collect conflicts between any fragment names by the first and\n // fragment names by the second. This compares each item in the first set of\n // names to each item in the second set of names.\n\n\n for (var _i3 = 0; _i3 < fragmentNames1.length; _i3++) {\n for (var _j = 0; _j < fragmentNames2.length; _j++) {\n collectConflictsBetweenFragments(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fragmentNames1[_i3], fragmentNames2[_j]);\n }\n }\n\n return conflicts;\n} // Collect all Conflicts \"within\" one collection of fields.\n\n\nfunction collectConflictsWithin(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, fieldMap) {\n // A field map is a keyed collection, where each key represents a response\n // name and the value at that key is a list of all fields which provide that\n // response name. For every response name, if there are multiple fields, they\n // must be compared to find a potential conflict.\n for (var _i5 = 0, _objectEntries2 = Object(_polyfills_objectEntries_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(fieldMap); _i5 < _objectEntries2.length; _i5++) {\n var _ref5 = _objectEntries2[_i5];\n var responseName = _ref5[0];\n var fields = _ref5[1];\n\n // This compares every field in the list to every other field in this list\n // (except to itself). If the list only has one item, nothing needs to\n // be compared.\n if (fields.length > 1) {\n for (var i = 0; i < fields.length; i++) {\n for (var j = i + 1; j < fields.length; j++) {\n var conflict = findConflict(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, false, // within one collection is never mutually exclusive\n responseName, fields[i], fields[j]);\n\n if (conflict) {\n conflicts.push(conflict);\n }\n }\n }\n }\n }\n} // Collect all Conflicts between two collections of fields. This is similar to,\n// but different from the `collectConflictsWithin` function above. This check\n// assumes that `collectConflictsWithin` has already been called on each\n// provided collection of fields. This is true because this validator traverses\n// each individual selection set.\n\n\nfunction collectConflictsBetween(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, parentFieldsAreMutuallyExclusive, fieldMap1, fieldMap2) {\n // A field map is a keyed collection, where each key represents a response\n // name and the value at that key is a list of all fields which provide that\n // response name. For any response name which appears in both provided field\n // maps, each field from the first field map must be compared to every field\n // in the second field map to find potential conflicts.\n for (var _i7 = 0, _Object$keys2 = Object.keys(fieldMap1); _i7 < _Object$keys2.length; _i7++) {\n var responseName = _Object$keys2[_i7];\n var fields2 = fieldMap2[responseName];\n\n if (fields2) {\n var fields1 = fieldMap1[responseName];\n\n for (var i = 0; i < fields1.length; i++) {\n for (var j = 0; j < fields2.length; j++) {\n var conflict = findConflict(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, parentFieldsAreMutuallyExclusive, responseName, fields1[i], fields2[j]);\n\n if (conflict) {\n conflicts.push(conflict);\n }\n }\n }\n }\n }\n} // Determines if there is a conflict between two particular fields, including\n// comparing their sub-fields.\n\n\nfunction findConflict(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, parentFieldsAreMutuallyExclusive, responseName, field1, field2) {\n var parentType1 = field1[0],\n node1 = field1[1],\n def1 = field1[2];\n var parentType2 = field2[0],\n node2 = field2[1],\n def2 = field2[2]; // If it is known that two fields could not possibly apply at the same\n // time, due to the parent types, then it is safe to permit them to diverge\n // in aliased field or arguments used as they will not present any ambiguity\n // by differing.\n // It is known that two parent types could never overlap if they are\n // different Object types. Interface or Union types might overlap - if not\n // in the current state of the schema, then perhaps in some future version,\n // thus may not safely diverge.\n\n var areMutuallyExclusive = parentFieldsAreMutuallyExclusive || parentType1 !== parentType2 && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isObjectType\"])(parentType1) && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isObjectType\"])(parentType2);\n\n if (!areMutuallyExclusive) {\n var _node1$arguments, _node2$arguments;\n\n // Two aliases must refer to the same field.\n var name1 = node1.name.value;\n var name2 = node2.name.value;\n\n if (name1 !== name2) {\n return [[responseName, \"\\\"\".concat(name1, \"\\\" and \\\"\").concat(name2, \"\\\" are different fields\")], [node1], [node2]];\n } // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n\n\n var args1 = (_node1$arguments = node1.arguments) !== null && _node1$arguments !== void 0 ? _node1$arguments : []; // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n\n var args2 = (_node2$arguments = node2.arguments) !== null && _node2$arguments !== void 0 ? _node2$arguments : []; // Two field calls must have the same arguments.\n\n if (!sameArguments(args1, args2)) {\n return [[responseName, 'they have differing arguments'], [node1], [node2]];\n }\n } // The return type for each field.\n\n\n var type1 = def1 === null || def1 === void 0 ? void 0 : def1.type;\n var type2 = def2 === null || def2 === void 0 ? void 0 : def2.type;\n\n if (type1 && type2 && doTypesConflict(type1, type2)) {\n return [[responseName, \"they return conflicting types \\\"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type1), \"\\\" and \\\"\").concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type2), \"\\\"\")], [node1], [node2]];\n } // Collect and compare sub-fields. Use the same \"visited fragment names\" list\n // for both collections so fields in a fragment reference are never\n // compared to themselves.\n\n\n var selectionSet1 = node1.selectionSet;\n var selectionSet2 = node2.selectionSet;\n\n if (selectionSet1 && selectionSet2) {\n var conflicts = findConflictsBetweenSubSelectionSets(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"getNamedType\"])(type1), selectionSet1, Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"getNamedType\"])(type2), selectionSet2);\n return subfieldConflicts(conflicts, responseName, node1, node2);\n }\n}\n\nfunction sameArguments(arguments1, arguments2) {\n if (arguments1.length !== arguments2.length) {\n return false;\n }\n\n return arguments1.every(function (argument1) {\n var argument2 = Object(_polyfills_find_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(arguments2, function (argument) {\n return argument.name.value === argument1.name.value;\n });\n\n if (!argument2) {\n return false;\n }\n\n return sameValue(argument1.value, argument2.value);\n });\n}\n\nfunction sameValue(value1, value2) {\n return Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__[\"print\"])(value1) === Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_5__[\"print\"])(value2);\n} // Two types conflict if both types could not apply to a value simultaneously.\n// Composite types are ignored as their individual field types will be compared\n// later recursively. However List and Non-Null types must match.\n\n\nfunction doTypesConflict(type1, type2) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isListType\"])(type1)) {\n return Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isListType\"])(type2) ? doTypesConflict(type1.ofType, type2.ofType) : true;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isListType\"])(type2)) {\n return true;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isNonNullType\"])(type1)) {\n return Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isNonNullType\"])(type2) ? doTypesConflict(type1.ofType, type2.ofType) : true;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isNonNullType\"])(type2)) {\n return true;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isLeafType\"])(type1) || Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isLeafType\"])(type2)) {\n return type1 !== type2;\n }\n\n return false;\n} // Given a selection set, return the collection of fields (a mapping of response\n// name to field nodes and definitions) as well as a list of fragment names\n// referenced via fragment spreads.\n\n\nfunction getFieldsAndFragmentNames(context, cachedFieldsAndFragmentNames, parentType, selectionSet) {\n var cached = cachedFieldsAndFragmentNames.get(selectionSet);\n\n if (!cached) {\n var nodeAndDefs = Object.create(null);\n var fragmentNames = Object.create(null);\n\n _collectFieldsAndFragmentNames(context, parentType, selectionSet, nodeAndDefs, fragmentNames);\n\n cached = [nodeAndDefs, Object.keys(fragmentNames)];\n cachedFieldsAndFragmentNames.set(selectionSet, cached);\n }\n\n return cached;\n} // Given a reference to a fragment, return the represented collection of fields\n// as well as a list of nested fragment names referenced via fragment spreads.\n\n\nfunction getReferencedFieldsAndFragmentNames(context, cachedFieldsAndFragmentNames, fragment) {\n // Short-circuit building a type from the node if possible.\n var cached = cachedFieldsAndFragmentNames.get(fragment.selectionSet);\n\n if (cached) {\n return cached;\n }\n\n var fragmentType = Object(_utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_7__[\"typeFromAST\"])(context.getSchema(), fragment.typeCondition);\n return getFieldsAndFragmentNames(context, cachedFieldsAndFragmentNames, fragmentType, fragment.selectionSet);\n}\n\nfunction _collectFieldsAndFragmentNames(context, parentType, selectionSet, nodeAndDefs, fragmentNames) {\n for (var _i9 = 0, _selectionSet$selecti2 = selectionSet.selections; _i9 < _selectionSet$selecti2.length; _i9++) {\n var selection = _selectionSet$selecti2[_i9];\n\n switch (selection.kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].FIELD:\n {\n var fieldName = selection.name.value;\n var fieldDef = void 0;\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isObjectType\"])(parentType) || Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isInterfaceType\"])(parentType)) {\n fieldDef = parentType.getFields()[fieldName];\n }\n\n var responseName = selection.alias ? selection.alias.value : fieldName;\n\n if (!nodeAndDefs[responseName]) {\n nodeAndDefs[responseName] = [];\n }\n\n nodeAndDefs[responseName].push([parentType, selection, fieldDef]);\n break;\n }\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].FRAGMENT_SPREAD:\n fragmentNames[selection.name.value] = true;\n break;\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Kind\"].INLINE_FRAGMENT:\n {\n var typeCondition = selection.typeCondition;\n var inlineFragmentType = typeCondition ? Object(_utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_7__[\"typeFromAST\"])(context.getSchema(), typeCondition) : parentType;\n\n _collectFieldsAndFragmentNames(context, inlineFragmentType, selection.selectionSet, nodeAndDefs, fragmentNames);\n\n break;\n }\n }\n }\n} // Given a series of Conflicts which occurred between two sub-fields, generate\n// a single Conflict.\n\n\nfunction subfieldConflicts(conflicts, responseName, node1, node2) {\n if (conflicts.length > 0) {\n return [[responseName, conflicts.map(function (_ref6) {\n var reason = _ref6[0];\n return reason;\n })], conflicts.reduce(function (allFields, _ref7) {\n var fields1 = _ref7[1];\n return allFields.concat(fields1);\n }, [node1]), conflicts.reduce(function (allFields, _ref8) {\n var fields2 = _ref8[2];\n return allFields.concat(fields2);\n }, [node2])];\n }\n}\n/**\n * A way to keep track of pairs of things when the ordering of the pair does\n * not matter. We do this by maintaining a sort of double adjacency sets.\n */\n\n\nvar PairSet = /*#__PURE__*/function () {\n function PairSet() {\n this._data = Object.create(null);\n }\n\n var _proto = PairSet.prototype;\n\n _proto.has = function has(a, b, areMutuallyExclusive) {\n var first = this._data[a];\n var result = first && first[b];\n\n if (result === undefined) {\n return false;\n } // areMutuallyExclusive being false is a superset of being true,\n // hence if we want to know if this PairSet \"has\" these two with no\n // exclusivity, we have to ensure it was added as such.\n\n\n if (areMutuallyExclusive === false) {\n return result === false;\n }\n\n return true;\n };\n\n _proto.add = function add(a, b, areMutuallyExclusive) {\n this._pairSetAdd(a, b, areMutuallyExclusive);\n\n this._pairSetAdd(b, a, areMutuallyExclusive);\n };\n\n _proto._pairSetAdd = function _pairSetAdd(a, b, areMutuallyExclusive) {\n var map = this._data[a];\n\n if (!map) {\n map = Object.create(null);\n this._data[a] = map;\n }\n\n map[b] = areMutuallyExclusive;\n };\n\n return PairSet;\n}();\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs": /*!*******************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs ***! \*******************************************************************************/ /*! exports provided: PossibleFragmentSpreadsRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PossibleFragmentSpreadsRule\", function() { return PossibleFragmentSpreadsRule; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../utilities/typeFromAST.mjs */ \"./node_modules/graphql/utilities/typeFromAST.mjs\");\n/* harmony import */ var _utilities_typeComparators_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../utilities/typeComparators.mjs */ \"./node_modules/graphql/utilities/typeComparators.mjs\");\n\n\n\n\n\n\n/**\n * Possible fragment spread\n *\n * A fragment spread is only valid if the type condition could ever possibly\n * be true: if there is a non-empty intersection of the possible parent types,\n * and possible types which pass the type condition.\n */\nfunction PossibleFragmentSpreadsRule(context) {\n return {\n InlineFragment: function InlineFragment(node) {\n var fragType = context.getType();\n var parentType = context.getParentType();\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isCompositeType\"])(fragType) && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isCompositeType\"])(parentType) && !Object(_utilities_typeComparators_mjs__WEBPACK_IMPORTED_MODULE_4__[\"doTypesOverlap\"])(context.getSchema(), fragType, parentType)) {\n var parentTypeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(parentType);\n var fragTypeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(fragType);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Fragment cannot be spread here as objects of type \\\"\".concat(parentTypeStr, \"\\\" can never be of type \\\"\").concat(fragTypeStr, \"\\\".\"), node));\n }\n },\n FragmentSpread: function FragmentSpread(node) {\n var fragName = node.name.value;\n var fragType = getFragmentType(context, fragName);\n var parentType = context.getParentType();\n\n if (fragType && parentType && !Object(_utilities_typeComparators_mjs__WEBPACK_IMPORTED_MODULE_4__[\"doTypesOverlap\"])(context.getSchema(), fragType, parentType)) {\n var parentTypeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(parentType);\n var fragTypeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(fragType);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Fragment \\\"\".concat(fragName, \"\\\" cannot be spread here as objects of type \\\"\").concat(parentTypeStr, \"\\\" can never be of type \\\"\").concat(fragTypeStr, \"\\\".\"), node));\n }\n }\n };\n}\n\nfunction getFragmentType(context, name) {\n var frag = context.getFragment(name);\n\n if (frag) {\n var type = Object(_utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_3__[\"typeFromAST\"])(context.getSchema(), frag.typeCondition);\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isCompositeType\"])(type)) {\n return type;\n }\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs": /*!******************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs ***! \******************************************************************************/ /*! exports provided: PossibleTypeExtensionsRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PossibleTypeExtensionsRule\", function() { return PossibleTypeExtensionsRule; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../jsutils/didYouMean.mjs */ \"./node_modules/graphql/jsutils/didYouMean.mjs\");\n/* harmony import */ var _jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../jsutils/suggestionList.mjs */ \"./node_modules/graphql/jsutils/suggestionList.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_predicates_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../language/predicates.mjs */ \"./node_modules/graphql/language/predicates.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\nvar _defKindToExtKind;\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n\n\n\n\n\n\n\n\n\n/**\n * Possible type extension\n *\n * A type extension is only valid if the type is defined and has the same kind.\n */\nfunction PossibleTypeExtensionsRule(context) {\n var schema = context.getSchema();\n var definedTypes = Object.create(null);\n\n for (var _i2 = 0, _context$getDocument$2 = context.getDocument().definitions; _i2 < _context$getDocument$2.length; _i2++) {\n var def = _context$getDocument$2[_i2];\n\n if (Object(_language_predicates_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isTypeDefinitionNode\"])(def)) {\n definedTypes[def.name.value] = def;\n }\n }\n\n return {\n ScalarTypeExtension: checkExtension,\n ObjectTypeExtension: checkExtension,\n InterfaceTypeExtension: checkExtension,\n UnionTypeExtension: checkExtension,\n EnumTypeExtension: checkExtension,\n InputObjectTypeExtension: checkExtension\n };\n\n function checkExtension(node) {\n var typeName = node.name.value;\n var defNode = definedTypes[typeName];\n var existingType = schema === null || schema === void 0 ? void 0 : schema.getType(typeName);\n var expectedKind;\n\n if (defNode) {\n expectedKind = defKindToExtKind[defNode.kind];\n } else if (existingType) {\n expectedKind = typeToExtKind(existingType);\n }\n\n if (expectedKind) {\n if (expectedKind !== node.kind) {\n var kindStr = extensionKindToTypeName(node.kind);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Cannot extend non-\".concat(kindStr, \" type \\\"\").concat(typeName, \"\\\".\"), defNode ? [defNode, node] : node));\n }\n } else {\n var allTypeNames = Object.keys(definedTypes);\n\n if (schema) {\n allTypeNames = allTypeNames.concat(Object.keys(schema.getTypeMap()));\n }\n\n var suggestedTypes = Object(_jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(typeName, allTypeNames);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_4__[\"GraphQLError\"](\"Cannot extend type \\\"\".concat(typeName, \"\\\" because it is not defined.\") + Object(_jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(suggestedTypes), node.name));\n }\n }\n}\nvar defKindToExtKind = (_defKindToExtKind = {}, _defineProperty(_defKindToExtKind, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].SCALAR_TYPE_DEFINITION, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].SCALAR_TYPE_EXTENSION), _defineProperty(_defKindToExtKind, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].OBJECT_TYPE_DEFINITION, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].OBJECT_TYPE_EXTENSION), _defineProperty(_defKindToExtKind, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].INTERFACE_TYPE_DEFINITION, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].INTERFACE_TYPE_EXTENSION), _defineProperty(_defKindToExtKind, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].UNION_TYPE_DEFINITION, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].UNION_TYPE_EXTENSION), _defineProperty(_defKindToExtKind, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].ENUM_TYPE_DEFINITION, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].ENUM_TYPE_EXTENSION), _defineProperty(_defKindToExtKind, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].INPUT_OBJECT_TYPE_DEFINITION, _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].INPUT_OBJECT_TYPE_EXTENSION), _defKindToExtKind);\n\nfunction typeToExtKind(type) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isScalarType\"])(type)) {\n return _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].SCALAR_TYPE_EXTENSION;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isObjectType\"])(type)) {\n return _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].OBJECT_TYPE_EXTENSION;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInterfaceType\"])(type)) {\n return _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].INTERFACE_TYPE_EXTENSION;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isUnionType\"])(type)) {\n return _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].UNION_TYPE_EXTENSION;\n }\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isEnumType\"])(type)) {\n return _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].ENUM_TYPE_EXTENSION;\n } // istanbul ignore else (See: 'https://github.com/graphql/graphql-js/issues/2618')\n\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInputObjectType\"])(type)) {\n return _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].INPUT_OBJECT_TYPE_EXTENSION;\n } // istanbul ignore next (Not reachable. All possible types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(0, 'Unexpected type: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type));\n}\n\nfunction extensionKindToTypeName(kind) {\n switch (kind) {\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].SCALAR_TYPE_EXTENSION:\n return 'scalar';\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].OBJECT_TYPE_EXTENSION:\n return 'object';\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].INTERFACE_TYPE_EXTENSION:\n return 'interface';\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].UNION_TYPE_EXTENSION:\n return 'union';\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].ENUM_TYPE_EXTENSION:\n return 'enum';\n\n case _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_5__[\"Kind\"].INPUT_OBJECT_TYPE_EXTENSION:\n return 'input object';\n } // istanbul ignore next (Not reachable. All possible types have been considered)\n\n\n false || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(0, 'Unexpected kind: ' + Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(kind));\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs": /*!*********************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs ***! \*********************************************************************************/ /*! exports provided: ProvidedRequiredArgumentsRule, ProvidedRequiredArgumentsOnDirectivesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProvidedRequiredArgumentsRule\", function() { return ProvidedRequiredArgumentsRule; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ProvidedRequiredArgumentsOnDirectivesRule\", function() { return ProvidedRequiredArgumentsOnDirectivesRule; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../jsutils/keyMap.mjs */ \"./node_modules/graphql/jsutils/keyMap.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n\n\n\n\n\n\n\n\n/**\n * Provided required arguments\n *\n * A field or directive is only valid if all required (non-null without a\n * default value) field arguments have been provided.\n */\nfunction ProvidedRequiredArgumentsRule(context) {\n return _objectSpread(_objectSpread({}, ProvidedRequiredArgumentsOnDirectivesRule(context)), {}, {\n Field: {\n // Validate on leave to allow for deeper errors to appear first.\n leave: function leave(fieldNode) {\n var _fieldNode$arguments;\n\n var fieldDef = context.getFieldDef();\n\n if (!fieldDef) {\n return false;\n } // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n\n\n var argNodes = (_fieldNode$arguments = fieldNode.arguments) !== null && _fieldNode$arguments !== void 0 ? _fieldNode$arguments : [];\n var argNodeMap = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(argNodes, function (arg) {\n return arg.name.value;\n });\n\n for (var _i2 = 0, _fieldDef$args2 = fieldDef.args; _i2 < _fieldDef$args2.length; _i2++) {\n var argDef = _fieldDef$args2[_i2];\n var argNode = argNodeMap[argDef.name];\n\n if (!argNode && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isRequiredArgument\"])(argDef)) {\n var argTypeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(argDef.type);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLError\"](\"Field \\\"\".concat(fieldDef.name, \"\\\" argument \\\"\").concat(argDef.name, \"\\\" of type \\\"\").concat(argTypeStr, \"\\\" is required, but it was not provided.\"), fieldNode));\n }\n }\n }\n }\n });\n}\n/**\n * @internal\n */\n\nfunction ProvidedRequiredArgumentsOnDirectivesRule(context) {\n var requiredArgsMap = Object.create(null);\n var schema = context.getSchema();\n var definedDirectives = schema ? schema.getDirectives() : _type_directives_mjs__WEBPACK_IMPORTED_MODULE_5__[\"specifiedDirectives\"];\n\n for (var _i4 = 0; _i4 < definedDirectives.length; _i4++) {\n var directive = definedDirectives[_i4];\n requiredArgsMap[directive.name] = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(directive.args.filter(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isRequiredArgument\"]), function (arg) {\n return arg.name;\n });\n }\n\n var astDefinitions = context.getDocument().definitions;\n\n for (var _i6 = 0; _i6 < astDefinitions.length; _i6++) {\n var def = astDefinitions[_i6];\n\n if (def.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].DIRECTIVE_DEFINITION) {\n var _def$arguments;\n\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var argNodes = (_def$arguments = def.arguments) !== null && _def$arguments !== void 0 ? _def$arguments : [];\n requiredArgsMap[def.name.value] = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(argNodes.filter(isRequiredArgumentNode), function (arg) {\n return arg.name.value;\n });\n }\n }\n\n return {\n Directive: {\n // Validate on leave to allow for deeper errors to appear first.\n leave: function leave(directiveNode) {\n var directiveName = directiveNode.name.value;\n var requiredArgs = requiredArgsMap[directiveName];\n\n if (requiredArgs) {\n var _directiveNode$argume;\n\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var _argNodes = (_directiveNode$argume = directiveNode.arguments) !== null && _directiveNode$argume !== void 0 ? _directiveNode$argume : [];\n\n var argNodeMap = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(_argNodes, function (arg) {\n return arg.name.value;\n });\n\n for (var _i8 = 0, _Object$keys2 = Object.keys(requiredArgs); _i8 < _Object$keys2.length; _i8++) {\n var argName = _Object$keys2[_i8];\n\n if (!argNodeMap[argName]) {\n var argType = requiredArgs[argName].type;\n var argTypeStr = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_6__[\"isType\"])(argType) ? Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(argType) : Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_4__[\"print\"])(argType);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_2__[\"GraphQLError\"](\"Directive \\\"@\".concat(directiveName, \"\\\" argument \\\"\").concat(argName, \"\\\" of type \\\"\").concat(argTypeStr, \"\\\" is required, but it was not provided.\"), directiveNode));\n }\n }\n }\n }\n }\n };\n}\n\nfunction isRequiredArgumentNode(arg) {\n return arg.type.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Kind\"].NON_NULL_TYPE && arg.defaultValue == null;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/ScalarLeafsRule.mjs": /*!*******************************************************************!*\ !*** ./node_modules/graphql/validation/rules/ScalarLeafsRule.mjs ***! \*******************************************************************/ /*! exports provided: ScalarLeafsRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScalarLeafsRule\", function() { return ScalarLeafsRule; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n/**\n * Scalar leafs\n *\n * A GraphQL document is valid only if all leaf fields (fields without\n * sub selections) are of scalar or enum types.\n */\nfunction ScalarLeafsRule(context) {\n return {\n Field: function Field(node) {\n var type = context.getType();\n var selectionSet = node.selectionSet;\n\n if (type) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isLeafType\"])(Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getNamedType\"])(type))) {\n if (selectionSet) {\n var fieldName = node.name.value;\n var typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Field \\\"\".concat(fieldName, \"\\\" must not have a selection since type \\\"\").concat(typeStr, \"\\\" has no subfields.\"), selectionSet));\n }\n } else if (!selectionSet) {\n var _fieldName = node.name.value;\n\n var _typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type);\n\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Field \\\"\".concat(_fieldName, \"\\\" of type \\\"\").concat(_typeStr, \"\\\" must have a selection of subfields. Did you mean \\\"\").concat(_fieldName, \" { ... }\\\"?\"), node));\n }\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/ScalarLeafsRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs": /*!********************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs ***! \********************************************************************************/ /*! exports provided: SingleFieldSubscriptionsRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SingleFieldSubscriptionsRule\", function() { return SingleFieldSubscriptionsRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Subscriptions must only include one field.\n *\n * A GraphQL subscription is valid only if it contains a single root field.\n */\nfunction SingleFieldSubscriptionsRule(context) {\n return {\n OperationDefinition: function OperationDefinition(node) {\n if (node.operation === 'subscription') {\n if (node.selectionSet.selections.length !== 1) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](node.name ? \"Subscription \\\"\".concat(node.name.value, \"\\\" must select only one top level field.\") : 'Anonymous Subscription must select only one top level field.', node.selectionSet.selections.slice(1)));\n }\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs": /*!***************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs ***! \***************************************************************************/ /*! exports provided: UniqueArgumentNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueArgumentNamesRule\", function() { return UniqueArgumentNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Unique argument names\n *\n * A GraphQL field or directive is only valid if all supplied arguments are\n * uniquely named.\n */\nfunction UniqueArgumentNamesRule(context) {\n var knownArgNames = Object.create(null);\n return {\n Field: function Field() {\n knownArgNames = Object.create(null);\n },\n Directive: function Directive() {\n knownArgNames = Object.create(null);\n },\n Argument: function Argument(node) {\n var argName = node.name.value;\n\n if (knownArgNames[argName]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"There can be only one argument named \\\"\".concat(argName, \"\\\".\"), [knownArgNames[argName], node.name]));\n } else {\n knownArgNames[argName] = node.name;\n }\n\n return false;\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs": /*!****************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs ***! \****************************************************************************/ /*! exports provided: UniqueDirectiveNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueDirectiveNamesRule\", function() { return UniqueDirectiveNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Unique directive names\n *\n * A GraphQL document is only valid if all defined directives have unique names.\n */\nfunction UniqueDirectiveNamesRule(context) {\n var knownDirectiveNames = Object.create(null);\n var schema = context.getSchema();\n return {\n DirectiveDefinition: function DirectiveDefinition(node) {\n var directiveName = node.name.value;\n\n if (schema !== null && schema !== void 0 && schema.getDirective(directiveName)) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Directive \\\"@\".concat(directiveName, \"\\\" already exists in the schema. It cannot be redefined.\"), node.name));\n return;\n }\n\n if (knownDirectiveNames[directiveName]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"There can be only one directive named \\\"@\".concat(directiveName, \"\\\".\"), [knownDirectiveNames[directiveName], node.name]));\n } else {\n knownDirectiveNames[directiveName] = node.name;\n }\n\n return false;\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs": /*!***********************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs ***! \***********************************************************************************/ /*! exports provided: UniqueDirectivesPerLocationRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueDirectivesPerLocationRule\", function() { return UniqueDirectivesPerLocationRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _language_predicates_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../language/predicates.mjs */ \"./node_modules/graphql/language/predicates.mjs\");\n/* harmony import */ var _type_directives_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../type/directives.mjs */ \"./node_modules/graphql/type/directives.mjs\");\n\n\n\n\n\n/**\n * Unique directive names per location\n *\n * A GraphQL document is only valid if all non-repeatable directives at\n * a given location are uniquely named.\n */\nfunction UniqueDirectivesPerLocationRule(context) {\n var uniqueDirectiveMap = Object.create(null);\n var schema = context.getSchema();\n var definedDirectives = schema ? schema.getDirectives() : _type_directives_mjs__WEBPACK_IMPORTED_MODULE_3__[\"specifiedDirectives\"];\n\n for (var _i2 = 0; _i2 < definedDirectives.length; _i2++) {\n var directive = definedDirectives[_i2];\n uniqueDirectiveMap[directive.name] = !directive.isRepeatable;\n }\n\n var astDefinitions = context.getDocument().definitions;\n\n for (var _i4 = 0; _i4 < astDefinitions.length; _i4++) {\n var def = astDefinitions[_i4];\n\n if (def.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].DIRECTIVE_DEFINITION) {\n uniqueDirectiveMap[def.name.value] = !def.repeatable;\n }\n }\n\n var schemaDirectives = Object.create(null);\n var typeDirectivesMap = Object.create(null);\n return {\n // Many different AST nodes may contain directives. Rather than listing\n // them all, just listen for entering any node, and check to see if it\n // defines any directives.\n enter: function enter(node) {\n if (node.directives == null) {\n return;\n }\n\n var seenDirectives;\n\n if (node.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SCHEMA_DEFINITION || node.kind === _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_1__[\"Kind\"].SCHEMA_EXTENSION) {\n seenDirectives = schemaDirectives;\n } else if (Object(_language_predicates_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isTypeDefinitionNode\"])(node) || Object(_language_predicates_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isTypeExtensionNode\"])(node)) {\n var typeName = node.name.value;\n seenDirectives = typeDirectivesMap[typeName];\n\n if (seenDirectives === undefined) {\n typeDirectivesMap[typeName] = seenDirectives = Object.create(null);\n }\n } else {\n seenDirectives = Object.create(null);\n }\n\n for (var _i6 = 0, _node$directives2 = node.directives; _i6 < _node$directives2.length; _i6++) {\n var _directive = _node$directives2[_i6];\n var directiveName = _directive.name.value;\n\n if (uniqueDirectiveMap[directiveName]) {\n if (seenDirectives[directiveName]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"The directive \\\"@\".concat(directiveName, \"\\\" can only be used once at this location.\"), [seenDirectives[directiveName], _directive]));\n } else {\n seenDirectives[directiveName] = _directive;\n }\n }\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs": /*!****************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs ***! \****************************************************************************/ /*! exports provided: UniqueEnumValueNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueEnumValueNamesRule\", function() { return UniqueEnumValueNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n/**\n * Unique enum value names\n *\n * A GraphQL enum type is only valid if all its values are uniquely named.\n */\nfunction UniqueEnumValueNamesRule(context) {\n var schema = context.getSchema();\n var existingTypeMap = schema ? schema.getTypeMap() : Object.create(null);\n var knownValueNames = Object.create(null);\n return {\n EnumTypeDefinition: checkValueUniqueness,\n EnumTypeExtension: checkValueUniqueness\n };\n\n function checkValueUniqueness(node) {\n var _node$values;\n\n var typeName = node.name.value;\n\n if (!knownValueNames[typeName]) {\n knownValueNames[typeName] = Object.create(null);\n } // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n\n\n var valueNodes = (_node$values = node.values) !== null && _node$values !== void 0 ? _node$values : [];\n var valueNames = knownValueNames[typeName];\n\n for (var _i2 = 0; _i2 < valueNodes.length; _i2++) {\n var valueDef = valueNodes[_i2];\n var valueName = valueDef.name.value;\n var existingType = existingTypeMap[typeName];\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isEnumType\"])(existingType) && existingType.getValue(valueName)) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Enum value \\\"\".concat(typeName, \".\").concat(valueName, \"\\\" already exists in the schema. It cannot also be defined in this type extension.\"), valueDef.name));\n } else if (valueNames[valueName]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Enum value \\\"\".concat(typeName, \".\").concat(valueName, \"\\\" can only be defined once.\"), [valueNames[valueName], valueDef.name]));\n } else {\n valueNames[valueName] = valueDef.name;\n }\n }\n\n return false;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs": /*!**********************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs ***! \**********************************************************************************/ /*! exports provided: UniqueFieldDefinitionNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueFieldDefinitionNamesRule\", function() { return UniqueFieldDefinitionNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n/**\n * Unique field definition names\n *\n * A GraphQL complex type is only valid if all its fields are uniquely named.\n */\nfunction UniqueFieldDefinitionNamesRule(context) {\n var schema = context.getSchema();\n var existingTypeMap = schema ? schema.getTypeMap() : Object.create(null);\n var knownFieldNames = Object.create(null);\n return {\n InputObjectTypeDefinition: checkFieldUniqueness,\n InputObjectTypeExtension: checkFieldUniqueness,\n InterfaceTypeDefinition: checkFieldUniqueness,\n InterfaceTypeExtension: checkFieldUniqueness,\n ObjectTypeDefinition: checkFieldUniqueness,\n ObjectTypeExtension: checkFieldUniqueness\n };\n\n function checkFieldUniqueness(node) {\n var _node$fields;\n\n var typeName = node.name.value;\n\n if (!knownFieldNames[typeName]) {\n knownFieldNames[typeName] = Object.create(null);\n } // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n\n\n var fieldNodes = (_node$fields = node.fields) !== null && _node$fields !== void 0 ? _node$fields : [];\n var fieldNames = knownFieldNames[typeName];\n\n for (var _i2 = 0; _i2 < fieldNodes.length; _i2++) {\n var fieldDef = fieldNodes[_i2];\n var fieldName = fieldDef.name.value;\n\n if (hasField(existingTypeMap[typeName], fieldName)) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Field \\\"\".concat(typeName, \".\").concat(fieldName, \"\\\" already exists in the schema. It cannot also be defined in this type extension.\"), fieldDef.name));\n } else if (fieldNames[fieldName]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Field \\\"\".concat(typeName, \".\").concat(fieldName, \"\\\" can only be defined once.\"), [fieldNames[fieldName], fieldDef.name]));\n } else {\n fieldNames[fieldName] = fieldDef.name;\n }\n }\n\n return false;\n }\n}\n\nfunction hasField(type, fieldName) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isObjectType\"])(type) || Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isInterfaceType\"])(type) || Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"isInputObjectType\"])(type)) {\n return type.getFields()[fieldName] != null;\n }\n\n return false;\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs": /*!***************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs ***! \***************************************************************************/ /*! exports provided: UniqueFragmentNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueFragmentNamesRule\", function() { return UniqueFragmentNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Unique fragment names\n *\n * A GraphQL document is only valid if all defined fragments have unique names.\n */\nfunction UniqueFragmentNamesRule(context) {\n var knownFragmentNames = Object.create(null);\n return {\n OperationDefinition: function OperationDefinition() {\n return false;\n },\n FragmentDefinition: function FragmentDefinition(node) {\n var fragmentName = node.name.value;\n\n if (knownFragmentNames[fragmentName]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"There can be only one fragment named \\\"\".concat(fragmentName, \"\\\".\"), [knownFragmentNames[fragmentName], node.name]));\n } else {\n knownFragmentNames[fragmentName] = node.name;\n }\n\n return false;\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs": /*!*****************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs ***! \*****************************************************************************/ /*! exports provided: UniqueInputFieldNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueInputFieldNamesRule\", function() { return UniqueInputFieldNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Unique input field names\n *\n * A GraphQL input object value is only valid if all supplied fields are\n * uniquely named.\n */\nfunction UniqueInputFieldNamesRule(context) {\n var knownNameStack = [];\n var knownNames = Object.create(null);\n return {\n ObjectValue: {\n enter: function enter() {\n knownNameStack.push(knownNames);\n knownNames = Object.create(null);\n },\n leave: function leave() {\n knownNames = knownNameStack.pop();\n }\n },\n ObjectField: function ObjectField(node) {\n var fieldName = node.name.value;\n\n if (knownNames[fieldName]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"There can be only one input field named \\\"\".concat(fieldName, \"\\\".\"), [knownNames[fieldName], node.name]));\n } else {\n knownNames[fieldName] = node.name;\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs": /*!****************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs ***! \****************************************************************************/ /*! exports provided: UniqueOperationNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueOperationNamesRule\", function() { return UniqueOperationNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Unique operation names\n *\n * A GraphQL document is only valid if all defined operations have unique names.\n */\nfunction UniqueOperationNamesRule(context) {\n var knownOperationNames = Object.create(null);\n return {\n OperationDefinition: function OperationDefinition(node) {\n var operationName = node.name;\n\n if (operationName) {\n if (knownOperationNames[operationName.value]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"There can be only one operation named \\\"\".concat(operationName.value, \"\\\".\"), [knownOperationNames[operationName.value], operationName]));\n } else {\n knownOperationNames[operationName.value] = operationName;\n }\n }\n\n return false;\n },\n FragmentDefinition: function FragmentDefinition() {\n return false;\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs": /*!****************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs ***! \****************************************************************************/ /*! exports provided: UniqueOperationTypesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueOperationTypesRule\", function() { return UniqueOperationTypesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Unique operation types\n *\n * A GraphQL document is only valid if it has only one type per operation.\n */\nfunction UniqueOperationTypesRule(context) {\n var schema = context.getSchema();\n var definedOperationTypes = Object.create(null);\n var existingOperationTypes = schema ? {\n query: schema.getQueryType(),\n mutation: schema.getMutationType(),\n subscription: schema.getSubscriptionType()\n } : {};\n return {\n SchemaDefinition: checkOperationTypes,\n SchemaExtension: checkOperationTypes\n };\n\n function checkOperationTypes(node) {\n var _node$operationTypes;\n\n // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2203')\n var operationTypesNodes = (_node$operationTypes = node.operationTypes) !== null && _node$operationTypes !== void 0 ? _node$operationTypes : [];\n\n for (var _i2 = 0; _i2 < operationTypesNodes.length; _i2++) {\n var operationType = operationTypesNodes[_i2];\n var operation = operationType.operation;\n var alreadyDefinedOperationType = definedOperationTypes[operation];\n\n if (existingOperationTypes[operation]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Type for \".concat(operation, \" already defined in the schema. It cannot be redefined.\"), operationType));\n } else if (alreadyDefinedOperationType) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"There can be only one \".concat(operation, \" type in schema.\"), [alreadyDefinedOperationType, operationType]));\n } else {\n definedOperationTypes[operation] = operationType;\n }\n }\n\n return false;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs": /*!***********************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs ***! \***********************************************************************/ /*! exports provided: UniqueTypeNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueTypeNamesRule\", function() { return UniqueTypeNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Unique type names\n *\n * A GraphQL document is only valid if all defined types have unique names.\n */\nfunction UniqueTypeNamesRule(context) {\n var knownTypeNames = Object.create(null);\n var schema = context.getSchema();\n return {\n ScalarTypeDefinition: checkTypeName,\n ObjectTypeDefinition: checkTypeName,\n InterfaceTypeDefinition: checkTypeName,\n UnionTypeDefinition: checkTypeName,\n EnumTypeDefinition: checkTypeName,\n InputObjectTypeDefinition: checkTypeName\n };\n\n function checkTypeName(node) {\n var typeName = node.name.value;\n\n if (schema !== null && schema !== void 0 && schema.getType(typeName)) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Type \\\"\".concat(typeName, \"\\\" already exists in the schema. It cannot also be defined in this type definition.\"), node.name));\n return;\n }\n\n if (knownTypeNames[typeName]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"There can be only one type named \\\"\".concat(typeName, \"\\\".\"), [knownTypeNames[typeName], node.name]));\n } else {\n knownTypeNames[typeName] = node.name;\n }\n\n return false;\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs": /*!***************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs ***! \***************************************************************************/ /*! exports provided: UniqueVariableNamesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UniqueVariableNamesRule\", function() { return UniqueVariableNamesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n\n\n/**\n * Unique variable names\n *\n * A GraphQL operation is only valid if all its variables are uniquely named.\n */\nfunction UniqueVariableNamesRule(context) {\n var knownVariableNames = Object.create(null);\n return {\n OperationDefinition: function OperationDefinition() {\n knownVariableNames = Object.create(null);\n },\n VariableDefinition: function VariableDefinition(node) {\n var variableName = node.variable.name.value;\n\n if (knownVariableNames[variableName]) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"There can be only one variable named \\\"$\".concat(variableName, \"\\\".\"), [knownVariableNames[variableName], node.variable.name]));\n } else {\n knownVariableNames[variableName] = node.variable.name;\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs": /*!***************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs ***! \***************************************************************************/ /*! exports provided: ValuesOfCorrectTypeRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ValuesOfCorrectTypeRule\", function() { return ValuesOfCorrectTypeRule; });\n/* harmony import */ var _polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../polyfills/objectValues.mjs */ \"./node_modules/graphql/polyfills/objectValues.mjs\");\n/* harmony import */ var _jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../jsutils/keyMap.mjs */ \"./node_modules/graphql/jsutils/keyMap.mjs\");\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../jsutils/didYouMean.mjs */ \"./node_modules/graphql/jsutils/didYouMean.mjs\");\n/* harmony import */ var _jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../jsutils/suggestionList.mjs */ \"./node_modules/graphql/jsutils/suggestionList.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n\n\n\n\n\n/**\n * Value literals of correct type\n *\n * A GraphQL document is only valid if all value literals are of the type\n * expected at their position.\n */\nfunction ValuesOfCorrectTypeRule(context) {\n return {\n ListValue: function ListValue(node) {\n // Note: TypeInfo will traverse into a list's item type, so look to the\n // parent input type to check if it is a list.\n var type = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"getNullableType\"])(context.getParentInputType());\n\n if (!Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isListType\"])(type)) {\n isValidValueNode(context, node);\n return false; // Don't traverse further.\n }\n },\n ObjectValue: function ObjectValue(node) {\n var type = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"getNamedType\"])(context.getInputType());\n\n if (!Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInputObjectType\"])(type)) {\n isValidValueNode(context, node);\n return false; // Don't traverse further.\n } // Ensure every required field exists.\n\n\n var fieldNodeMap = Object(_jsutils_keyMap_mjs__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(node.fields, function (field) {\n return field.name.value;\n });\n\n for (var _i2 = 0, _objectValues2 = Object(_polyfills_objectValues_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type.getFields()); _i2 < _objectValues2.length; _i2++) {\n var fieldDef = _objectValues2[_i2];\n var fieldNode = fieldNodeMap[fieldDef.name];\n\n if (!fieldNode && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isRequiredInputField\"])(fieldDef)) {\n var typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(fieldDef.type);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLError\"](\"Field \\\"\".concat(type.name, \".\").concat(fieldDef.name, \"\\\" of required type \\\"\").concat(typeStr, \"\\\" was not provided.\"), node));\n }\n }\n },\n ObjectField: function ObjectField(node) {\n var parentType = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"getNamedType\"])(context.getParentInputType());\n var fieldType = context.getInputType();\n\n if (!fieldType && Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isInputObjectType\"])(parentType)) {\n var suggestions = Object(_jsutils_suggestionList_mjs__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(node.name.value, Object.keys(parentType.getFields()));\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLError\"](\"Field \\\"\".concat(node.name.value, \"\\\" is not defined by type \\\"\").concat(parentType.name, \"\\\".\") + Object(_jsutils_didYouMean_mjs__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(suggestions), node));\n }\n },\n NullValue: function NullValue(node) {\n var type = context.getInputType();\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isNonNullType\"])(type)) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLError\"](\"Expected value of type \\\"\".concat(Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(type), \"\\\", found \").concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_6__[\"print\"])(node), \".\"), node));\n }\n },\n EnumValue: function EnumValue(node) {\n return isValidValueNode(context, node);\n },\n IntValue: function IntValue(node) {\n return isValidValueNode(context, node);\n },\n FloatValue: function FloatValue(node) {\n return isValidValueNode(context, node);\n },\n StringValue: function StringValue(node) {\n return isValidValueNode(context, node);\n },\n BooleanValue: function BooleanValue(node) {\n return isValidValueNode(context, node);\n }\n };\n}\n/**\n * Any value literal may be a valid representation of a Scalar, depending on\n * that scalar type.\n */\n\nfunction isValidValueNode(context, node) {\n // Report any error at the full type expected by the location.\n var locationType = context.getInputType();\n\n if (!locationType) {\n return;\n }\n\n var type = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"getNamedType\"])(locationType);\n\n if (!Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_7__[\"isLeafType\"])(type)) {\n var typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(locationType);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLError\"](\"Expected value of type \\\"\".concat(typeStr, \"\\\", found \").concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_6__[\"print\"])(node), \".\"), node));\n return;\n } // Scalars and Enums determine if a literal value is valid via parseLiteral(),\n // which may throw or return an invalid value to indicate failure.\n\n\n try {\n var parseResult = type.parseLiteral(node, undefined\n /* variables */\n );\n\n if (parseResult === undefined) {\n var _typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(locationType);\n\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLError\"](\"Expected value of type \\\"\".concat(_typeStr, \"\\\", found \").concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_6__[\"print\"])(node), \".\"), node));\n }\n } catch (error) {\n var _typeStr2 = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(locationType);\n\n if (error instanceof _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLError\"]) {\n context.reportError(error);\n } else {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_5__[\"GraphQLError\"](\"Expected value of type \\\"\".concat(_typeStr2, \"\\\", found \").concat(Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_6__[\"print\"])(node), \"; \") + error.message, node, undefined, undefined, undefined, error));\n }\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs": /*!******************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs ***! \******************************************************************************/ /*! exports provided: VariablesAreInputTypesRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VariablesAreInputTypesRule\", function() { return VariablesAreInputTypesRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_printer_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../language/printer.mjs */ \"./node_modules/graphql/language/printer.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../utilities/typeFromAST.mjs */ \"./node_modules/graphql/utilities/typeFromAST.mjs\");\n\n\n\n\n\n/**\n * Variables are input types\n *\n * A GraphQL operation is only valid if all the variables it defines are of\n * input types (scalar, enum, or input object).\n */\nfunction VariablesAreInputTypesRule(context) {\n return {\n VariableDefinition: function VariableDefinition(node) {\n var type = Object(_utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_3__[\"typeFromAST\"])(context.getSchema(), node.type);\n\n if (type && !Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isInputType\"])(type)) {\n var variableName = node.variable.name.value;\n var typeName = Object(_language_printer_mjs__WEBPACK_IMPORTED_MODULE_1__[\"print\"])(node.type);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"Variable \\\"$\".concat(variableName, \"\\\" cannot be non-input type \\\"\").concat(typeName, \"\\\".\"), node.type));\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs": /*!**********************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs ***! \**********************************************************************************/ /*! exports provided: VariablesInAllowedPositionRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VariablesInAllowedPositionRule\", function() { return VariablesInAllowedPositionRule; });\n/* harmony import */ var _jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../jsutils/inspect.mjs */ \"./node_modules/graphql/jsutils/inspect.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../language/kinds.mjs */ \"./node_modules/graphql/language/kinds.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../utilities/typeFromAST.mjs */ \"./node_modules/graphql/utilities/typeFromAST.mjs\");\n/* harmony import */ var _utilities_typeComparators_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../utilities/typeComparators.mjs */ \"./node_modules/graphql/utilities/typeComparators.mjs\");\n\n\n\n\n\n\n\n/**\n * Variables passed to field arguments conform to type\n */\nfunction VariablesInAllowedPositionRule(context) {\n var varDefMap = Object.create(null);\n return {\n OperationDefinition: {\n enter: function enter() {\n varDefMap = Object.create(null);\n },\n leave: function leave(operation) {\n var usages = context.getRecursiveVariableUsages(operation);\n\n for (var _i2 = 0; _i2 < usages.length; _i2++) {\n var _ref2 = usages[_i2];\n var node = _ref2.node;\n var type = _ref2.type;\n var defaultValue = _ref2.defaultValue;\n var varName = node.name.value;\n var varDef = varDefMap[varName];\n\n if (varDef && type) {\n // A var type is allowed if it is the same or more strict (e.g. is\n // a subtype of) than the expected type. It can be more strict if\n // the variable type is non-null when the expected type is nullable.\n // If both are list types, the variable item type can be more strict\n // than the expected item type (contravariant).\n var schema = context.getSchema();\n var varType = Object(_utilities_typeFromAST_mjs__WEBPACK_IMPORTED_MODULE_4__[\"typeFromAST\"])(schema, varDef.type);\n\n if (varType && !allowedVariableUsage(schema, varType, varDef.defaultValue, type, defaultValue)) {\n var varTypeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(varType);\n var typeStr = Object(_jsutils_inspect_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(type);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Variable \\\"$\".concat(varName, \"\\\" of type \\\"\").concat(varTypeStr, \"\\\" used in position expecting type \\\"\").concat(typeStr, \"\\\".\"), [varDef, node]));\n }\n }\n }\n }\n },\n VariableDefinition: function VariableDefinition(node) {\n varDefMap[node.variable.name.value] = node;\n }\n };\n}\n/**\n * Returns true if the variable is allowed in the location it was found,\n * which includes considering if default values exist for either the variable\n * or the location at which it is located.\n */\n\nfunction allowedVariableUsage(schema, varType, varDefaultValue, locationType, locationDefaultValue) {\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isNonNullType\"])(locationType) && !Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_3__[\"isNonNullType\"])(varType)) {\n var hasNonNullVariableDefaultValue = varDefaultValue != null && varDefaultValue.kind !== _language_kinds_mjs__WEBPACK_IMPORTED_MODULE_2__[\"Kind\"].NULL;\n var hasLocationDefaultValue = locationDefaultValue !== undefined;\n\n if (!hasNonNullVariableDefaultValue && !hasLocationDefaultValue) {\n return false;\n }\n\n var nullableLocationType = locationType.ofType;\n return Object(_utilities_typeComparators_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isTypeSubTypeOf\"])(schema, varType, nullableLocationType);\n }\n\n return Object(_utilities_typeComparators_mjs__WEBPACK_IMPORTED_MODULE_5__[\"isTypeSubTypeOf\"])(schema, varType, locationType);\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs": /*!*********************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs ***! \*********************************************************************************/ /*! exports provided: NoDeprecatedCustomRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoDeprecatedCustomRule\", function() { return NoDeprecatedCustomRule; });\n/* harmony import */ var _jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../jsutils/invariant.mjs */ \"./node_modules/graphql/jsutils/invariant.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n\n\n\n\n/**\n * No deprecated\n *\n * A GraphQL document is only valid if all selected fields and all used enum values have not been\n * deprecated.\n *\n * Note: This rule is optional and is not part of the Validation section of the GraphQL\n * Specification. The main purpose of this rule is detection of deprecated usages and not\n * necessarily to forbid their use when querying a service.\n */\nfunction NoDeprecatedCustomRule(context) {\n return {\n Field: function Field(node) {\n var fieldDef = context.getFieldDef();\n var deprecationReason = fieldDef === null || fieldDef === void 0 ? void 0 : fieldDef.deprecationReason;\n\n if (fieldDef && deprecationReason != null) {\n var parentType = context.getParentType();\n parentType != null || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(0);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"The field \".concat(parentType.name, \".\").concat(fieldDef.name, \" is deprecated. \").concat(deprecationReason), node));\n }\n },\n Argument: function Argument(node) {\n var argDef = context.getArgument();\n var deprecationReason = argDef === null || argDef === void 0 ? void 0 : argDef.deprecationReason;\n\n if (argDef && deprecationReason != null) {\n var directiveDef = context.getDirective();\n\n if (directiveDef != null) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Directive \\\"@\".concat(directiveDef.name, \"\\\" argument \\\"\").concat(argDef.name, \"\\\" is deprecated. \").concat(deprecationReason), node));\n } else {\n var parentType = context.getParentType();\n var fieldDef = context.getFieldDef();\n parentType != null && fieldDef != null || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(0);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"Field \\\"\".concat(parentType.name, \".\").concat(fieldDef.name, \"\\\" argument \\\"\").concat(argDef.name, \"\\\" is deprecated. \").concat(deprecationReason), node));\n }\n }\n },\n ObjectField: function ObjectField(node) {\n var inputObjectDef = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getNamedType\"])(context.getParentInputType());\n\n if (Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isInputObjectType\"])(inputObjectDef)) {\n var inputFieldDef = inputObjectDef.getFields()[node.name.value]; // flowlint-next-line unnecessary-optional-chain:off\n\n var deprecationReason = inputFieldDef === null || inputFieldDef === void 0 ? void 0 : inputFieldDef.deprecationReason;\n\n if (deprecationReason != null) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"The input field \".concat(inputObjectDef.name, \".\").concat(inputFieldDef.name, \" is deprecated. \").concat(deprecationReason), node));\n }\n }\n },\n EnumValue: function EnumValue(node) {\n var enumValueDef = context.getEnumValue();\n var deprecationReason = enumValueDef === null || enumValueDef === void 0 ? void 0 : enumValueDef.deprecationReason;\n\n if (enumValueDef && deprecationReason != null) {\n var enumTypeDef = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getNamedType\"])(context.getInputType());\n enumTypeDef != null || Object(_jsutils_invariant_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(0);\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"](\"The enum value \\\"\".concat(enumTypeDef.name, \".\").concat(enumValueDef.name, \"\\\" is deprecated. \").concat(deprecationReason), node));\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs": /*!******************************************************************************************!*\ !*** ./node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs ***! \******************************************************************************************/ /*! exports provided: NoSchemaIntrospectionCustomRule */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NoSchemaIntrospectionCustomRule\", function() { return NoSchemaIntrospectionCustomRule; });\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _type_definition_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../type/definition.mjs */ \"./node_modules/graphql/type/definition.mjs\");\n/* harmony import */ var _type_introspection_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../type/introspection.mjs */ \"./node_modules/graphql/type/introspection.mjs\");\n\n\n\n\n/**\n * Prohibit introspection queries\n *\n * A GraphQL document is only valid if all fields selected are not fields that\n * return an introspection type.\n *\n * Note: This rule is optional and is not part of the Validation section of the\n * GraphQL Specification. This rule effectively disables introspection, which\n * does not reflect best practices and should only be done if absolutely necessary.\n */\nfunction NoSchemaIntrospectionCustomRule(context) {\n return {\n Field: function Field(node) {\n var type = Object(_type_definition_mjs__WEBPACK_IMPORTED_MODULE_1__[\"getNamedType\"])(context.getType());\n\n if (type && Object(_type_introspection_mjs__WEBPACK_IMPORTED_MODULE_2__[\"isIntrospectionType\"])(type)) {\n context.reportError(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"GraphQLError\"](\"GraphQL introspection has been disabled, but the requested query contained the field \\\"\".concat(node.name.value, \"\\\".\"), node));\n }\n }\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/specifiedRules.mjs": /*!************************************************************!*\ !*** ./node_modules/graphql/validation/specifiedRules.mjs ***! \************************************************************/ /*! exports provided: specifiedRules, specifiedSDLRules */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"specifiedRules\", function() { return specifiedRules; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"specifiedSDLRules\", function() { return specifiedSDLRules; });\n/* harmony import */ var _rules_ExecutableDefinitionsRule_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./rules/ExecutableDefinitionsRule.mjs */ \"./node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs\");\n/* harmony import */ var _rules_UniqueOperationNamesRule_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./rules/UniqueOperationNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs\");\n/* harmony import */ var _rules_LoneAnonymousOperationRule_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./rules/LoneAnonymousOperationRule.mjs */ \"./node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs\");\n/* harmony import */ var _rules_SingleFieldSubscriptionsRule_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./rules/SingleFieldSubscriptionsRule.mjs */ \"./node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs\");\n/* harmony import */ var _rules_KnownTypeNamesRule_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./rules/KnownTypeNamesRule.mjs */ \"./node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs\");\n/* harmony import */ var _rules_FragmentsOnCompositeTypesRule_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./rules/FragmentsOnCompositeTypesRule.mjs */ \"./node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs\");\n/* harmony import */ var _rules_VariablesAreInputTypesRule_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./rules/VariablesAreInputTypesRule.mjs */ \"./node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs\");\n/* harmony import */ var _rules_ScalarLeafsRule_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./rules/ScalarLeafsRule.mjs */ \"./node_modules/graphql/validation/rules/ScalarLeafsRule.mjs\");\n/* harmony import */ var _rules_FieldsOnCorrectTypeRule_mjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./rules/FieldsOnCorrectTypeRule.mjs */ \"./node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs\");\n/* harmony import */ var _rules_UniqueFragmentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./rules/UniqueFragmentNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs\");\n/* harmony import */ var _rules_KnownFragmentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./rules/KnownFragmentNamesRule.mjs */ \"./node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs\");\n/* harmony import */ var _rules_NoUnusedFragmentsRule_mjs__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./rules/NoUnusedFragmentsRule.mjs */ \"./node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs\");\n/* harmony import */ var _rules_PossibleFragmentSpreadsRule_mjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./rules/PossibleFragmentSpreadsRule.mjs */ \"./node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs\");\n/* harmony import */ var _rules_NoFragmentCyclesRule_mjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./rules/NoFragmentCyclesRule.mjs */ \"./node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs\");\n/* harmony import */ var _rules_UniqueVariableNamesRule_mjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./rules/UniqueVariableNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs\");\n/* harmony import */ var _rules_NoUndefinedVariablesRule_mjs__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./rules/NoUndefinedVariablesRule.mjs */ \"./node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs\");\n/* harmony import */ var _rules_NoUnusedVariablesRule_mjs__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./rules/NoUnusedVariablesRule.mjs */ \"./node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs\");\n/* harmony import */ var _rules_KnownDirectivesRule_mjs__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./rules/KnownDirectivesRule.mjs */ \"./node_modules/graphql/validation/rules/KnownDirectivesRule.mjs\");\n/* harmony import */ var _rules_UniqueDirectivesPerLocationRule_mjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./rules/UniqueDirectivesPerLocationRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs\");\n/* harmony import */ var _rules_KnownArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./rules/KnownArgumentNamesRule.mjs */ \"./node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs\");\n/* harmony import */ var _rules_UniqueArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./rules/UniqueArgumentNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs\");\n/* harmony import */ var _rules_ValuesOfCorrectTypeRule_mjs__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./rules/ValuesOfCorrectTypeRule.mjs */ \"./node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs\");\n/* harmony import */ var _rules_ProvidedRequiredArgumentsRule_mjs__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./rules/ProvidedRequiredArgumentsRule.mjs */ \"./node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs\");\n/* harmony import */ var _rules_VariablesInAllowedPositionRule_mjs__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./rules/VariablesInAllowedPositionRule.mjs */ \"./node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs\");\n/* harmony import */ var _rules_OverlappingFieldsCanBeMergedRule_mjs__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./rules/OverlappingFieldsCanBeMergedRule.mjs */ \"./node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs\");\n/* harmony import */ var _rules_UniqueInputFieldNamesRule_mjs__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./rules/UniqueInputFieldNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs\");\n/* harmony import */ var _rules_LoneSchemaDefinitionRule_mjs__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./rules/LoneSchemaDefinitionRule.mjs */ \"./node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs\");\n/* harmony import */ var _rules_UniqueOperationTypesRule_mjs__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./rules/UniqueOperationTypesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs\");\n/* harmony import */ var _rules_UniqueTypeNamesRule_mjs__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./rules/UniqueTypeNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs\");\n/* harmony import */ var _rules_UniqueEnumValueNamesRule_mjs__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./rules/UniqueEnumValueNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs\");\n/* harmony import */ var _rules_UniqueFieldDefinitionNamesRule_mjs__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./rules/UniqueFieldDefinitionNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs\");\n/* harmony import */ var _rules_UniqueDirectiveNamesRule_mjs__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./rules/UniqueDirectiveNamesRule.mjs */ \"./node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs\");\n/* harmony import */ var _rules_PossibleTypeExtensionsRule_mjs__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./rules/PossibleTypeExtensionsRule.mjs */ \"./node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs\");\n// Spec Section: \"Executable Definitions\"\n // Spec Section: \"Operation Name Uniqueness\"\n\n // Spec Section: \"Lone Anonymous Operation\"\n\n // Spec Section: \"Subscriptions with Single Root Field\"\n\n // Spec Section: \"Fragment Spread Type Existence\"\n\n // Spec Section: \"Fragments on Composite Types\"\n\n // Spec Section: \"Variables are Input Types\"\n\n // Spec Section: \"Leaf Field Selections\"\n\n // Spec Section: \"Field Selections on Objects, Interfaces, and Unions Types\"\n\n // Spec Section: \"Fragment Name Uniqueness\"\n\n // Spec Section: \"Fragment spread target defined\"\n\n // Spec Section: \"Fragments must be used\"\n\n // Spec Section: \"Fragment spread is possible\"\n\n // Spec Section: \"Fragments must not form cycles\"\n\n // Spec Section: \"Variable Uniqueness\"\n\n // Spec Section: \"All Variable Used Defined\"\n\n // Spec Section: \"All Variables Used\"\n\n // Spec Section: \"Directives Are Defined\"\n\n // Spec Section: \"Directives Are Unique Per Location\"\n\n // Spec Section: \"Argument Names\"\n\n // Spec Section: \"Argument Uniqueness\"\n\n // Spec Section: \"Value Type Correctness\"\n\n // Spec Section: \"Argument Optionality\"\n\n // Spec Section: \"All Variable Usages Are Allowed\"\n\n // Spec Section: \"Field Selection Merging\"\n\n // Spec Section: \"Input Object Field Uniqueness\"\n\n // SDL-specific validation rules\n\n\n\n\n\n\n\n\n/**\n * This set includes all validation rules defined by the GraphQL spec.\n *\n * The order of the rules in this list has been adjusted to lead to the\n * most clear output when encountering multiple validation errors.\n */\n\nvar specifiedRules = Object.freeze([_rules_ExecutableDefinitionsRule_mjs__WEBPACK_IMPORTED_MODULE_0__[\"ExecutableDefinitionsRule\"], _rules_UniqueOperationNamesRule_mjs__WEBPACK_IMPORTED_MODULE_1__[\"UniqueOperationNamesRule\"], _rules_LoneAnonymousOperationRule_mjs__WEBPACK_IMPORTED_MODULE_2__[\"LoneAnonymousOperationRule\"], _rules_SingleFieldSubscriptionsRule_mjs__WEBPACK_IMPORTED_MODULE_3__[\"SingleFieldSubscriptionsRule\"], _rules_KnownTypeNamesRule_mjs__WEBPACK_IMPORTED_MODULE_4__[\"KnownTypeNamesRule\"], _rules_FragmentsOnCompositeTypesRule_mjs__WEBPACK_IMPORTED_MODULE_5__[\"FragmentsOnCompositeTypesRule\"], _rules_VariablesAreInputTypesRule_mjs__WEBPACK_IMPORTED_MODULE_6__[\"VariablesAreInputTypesRule\"], _rules_ScalarLeafsRule_mjs__WEBPACK_IMPORTED_MODULE_7__[\"ScalarLeafsRule\"], _rules_FieldsOnCorrectTypeRule_mjs__WEBPACK_IMPORTED_MODULE_8__[\"FieldsOnCorrectTypeRule\"], _rules_UniqueFragmentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_9__[\"UniqueFragmentNamesRule\"], _rules_KnownFragmentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_10__[\"KnownFragmentNamesRule\"], _rules_NoUnusedFragmentsRule_mjs__WEBPACK_IMPORTED_MODULE_11__[\"NoUnusedFragmentsRule\"], _rules_PossibleFragmentSpreadsRule_mjs__WEBPACK_IMPORTED_MODULE_12__[\"PossibleFragmentSpreadsRule\"], _rules_NoFragmentCyclesRule_mjs__WEBPACK_IMPORTED_MODULE_13__[\"NoFragmentCyclesRule\"], _rules_UniqueVariableNamesRule_mjs__WEBPACK_IMPORTED_MODULE_14__[\"UniqueVariableNamesRule\"], _rules_NoUndefinedVariablesRule_mjs__WEBPACK_IMPORTED_MODULE_15__[\"NoUndefinedVariablesRule\"], _rules_NoUnusedVariablesRule_mjs__WEBPACK_IMPORTED_MODULE_16__[\"NoUnusedVariablesRule\"], _rules_KnownDirectivesRule_mjs__WEBPACK_IMPORTED_MODULE_17__[\"KnownDirectivesRule\"], _rules_UniqueDirectivesPerLocationRule_mjs__WEBPACK_IMPORTED_MODULE_18__[\"UniqueDirectivesPerLocationRule\"], _rules_KnownArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_19__[\"KnownArgumentNamesRule\"], _rules_UniqueArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_20__[\"UniqueArgumentNamesRule\"], _rules_ValuesOfCorrectTypeRule_mjs__WEBPACK_IMPORTED_MODULE_21__[\"ValuesOfCorrectTypeRule\"], _rules_ProvidedRequiredArgumentsRule_mjs__WEBPACK_IMPORTED_MODULE_22__[\"ProvidedRequiredArgumentsRule\"], _rules_VariablesInAllowedPositionRule_mjs__WEBPACK_IMPORTED_MODULE_23__[\"VariablesInAllowedPositionRule\"], _rules_OverlappingFieldsCanBeMergedRule_mjs__WEBPACK_IMPORTED_MODULE_24__[\"OverlappingFieldsCanBeMergedRule\"], _rules_UniqueInputFieldNamesRule_mjs__WEBPACK_IMPORTED_MODULE_25__[\"UniqueInputFieldNamesRule\"]]);\n/**\n * @internal\n */\n\nvar specifiedSDLRules = Object.freeze([_rules_LoneSchemaDefinitionRule_mjs__WEBPACK_IMPORTED_MODULE_26__[\"LoneSchemaDefinitionRule\"], _rules_UniqueOperationTypesRule_mjs__WEBPACK_IMPORTED_MODULE_27__[\"UniqueOperationTypesRule\"], _rules_UniqueTypeNamesRule_mjs__WEBPACK_IMPORTED_MODULE_28__[\"UniqueTypeNamesRule\"], _rules_UniqueEnumValueNamesRule_mjs__WEBPACK_IMPORTED_MODULE_29__[\"UniqueEnumValueNamesRule\"], _rules_UniqueFieldDefinitionNamesRule_mjs__WEBPACK_IMPORTED_MODULE_30__[\"UniqueFieldDefinitionNamesRule\"], _rules_UniqueDirectiveNamesRule_mjs__WEBPACK_IMPORTED_MODULE_31__[\"UniqueDirectiveNamesRule\"], _rules_KnownTypeNamesRule_mjs__WEBPACK_IMPORTED_MODULE_4__[\"KnownTypeNamesRule\"], _rules_KnownDirectivesRule_mjs__WEBPACK_IMPORTED_MODULE_17__[\"KnownDirectivesRule\"], _rules_UniqueDirectivesPerLocationRule_mjs__WEBPACK_IMPORTED_MODULE_18__[\"UniqueDirectivesPerLocationRule\"], _rules_PossibleTypeExtensionsRule_mjs__WEBPACK_IMPORTED_MODULE_32__[\"PossibleTypeExtensionsRule\"], _rules_KnownArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_19__[\"KnownArgumentNamesOnDirectivesRule\"], _rules_UniqueArgumentNamesRule_mjs__WEBPACK_IMPORTED_MODULE_20__[\"UniqueArgumentNamesRule\"], _rules_UniqueInputFieldNamesRule_mjs__WEBPACK_IMPORTED_MODULE_25__[\"UniqueInputFieldNamesRule\"], _rules_ProvidedRequiredArgumentsRule_mjs__WEBPACK_IMPORTED_MODULE_22__[\"ProvidedRequiredArgumentsOnDirectivesRule\"]]);\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/specifiedRules.mjs?"); /***/ }), /***/ "./node_modules/graphql/validation/validate.mjs": /*!******************************************************!*\ !*** ./node_modules/graphql/validation/validate.mjs ***! \******************************************************/ /*! exports provided: validate, validateSDL, assertValidSDL, assertValidSDLExtension */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validate\", function() { return validate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"validateSDL\", function() { return validateSDL; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertValidSDL\", function() { return assertValidSDL; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertValidSDLExtension\", function() { return assertValidSDLExtension; });\n/* harmony import */ var _jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../jsutils/devAssert.mjs */ \"./node_modules/graphql/jsutils/devAssert.mjs\");\n/* harmony import */ var _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../error/GraphQLError.mjs */ \"./node_modules/graphql/error/GraphQLError.mjs\");\n/* harmony import */ var _language_visitor_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../language/visitor.mjs */ \"./node_modules/graphql/language/visitor.mjs\");\n/* harmony import */ var _type_validate_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../type/validate.mjs */ \"./node_modules/graphql/type/validate.mjs\");\n/* harmony import */ var _utilities_TypeInfo_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utilities/TypeInfo.mjs */ \"./node_modules/graphql/utilities/TypeInfo.mjs\");\n/* harmony import */ var _specifiedRules_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./specifiedRules.mjs */ \"./node_modules/graphql/validation/specifiedRules.mjs\");\n/* harmony import */ var _ValidationContext_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./ValidationContext.mjs */ \"./node_modules/graphql/validation/ValidationContext.mjs\");\n\n\n\n\n\n\n\n/**\n * Implements the \"Validation\" section of the spec.\n *\n * Validation runs synchronously, returning an array of encountered errors, or\n * an empty array if no errors were encountered and the document is valid.\n *\n * A list of specific validation rules may be provided. If not provided, the\n * default list of rules defined by the GraphQL specification will be used.\n *\n * Each validation rules is a function which returns a visitor\n * (see the language/visitor API). Visitor methods are expected to return\n * GraphQLErrors, or Arrays of GraphQLErrors when invalid.\n *\n * Optionally a custom TypeInfo instance may be provided. If not provided, one\n * will be created from the provided schema.\n */\n\nfunction validate(schema, documentAST) {\n var rules = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _specifiedRules_mjs__WEBPACK_IMPORTED_MODULE_5__[\"specifiedRules\"];\n var typeInfo = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : new _utilities_TypeInfo_mjs__WEBPACK_IMPORTED_MODULE_4__[\"TypeInfo\"](schema);\n var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {\n maxErrors: undefined\n };\n documentAST || Object(_jsutils_devAssert_mjs__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(0, 'Must provide document.'); // If the schema used for validation is invalid, throw an error.\n\n Object(_type_validate_mjs__WEBPACK_IMPORTED_MODULE_3__[\"assertValidSchema\"])(schema);\n var abortObj = Object.freeze({});\n var errors = [];\n var context = new _ValidationContext_mjs__WEBPACK_IMPORTED_MODULE_6__[\"ValidationContext\"](schema, documentAST, typeInfo, function (error) {\n if (options.maxErrors != null && errors.length >= options.maxErrors) {\n errors.push(new _error_GraphQLError_mjs__WEBPACK_IMPORTED_MODULE_1__[\"GraphQLError\"]('Too many validation errors, error limit reached. Validation aborted.'));\n throw abortObj;\n }\n\n errors.push(error);\n }); // This uses a specialized visitor which runs multiple visitors in parallel,\n // while maintaining the visitor skip and break API.\n\n var visitor = Object(_language_visitor_mjs__WEBPACK_IMPORTED_MODULE_2__[\"visitInParallel\"])(rules.map(function (rule) {\n return rule(context);\n })); // Visit the whole document with each instance of all provided rules.\n\n try {\n Object(_language_visitor_mjs__WEBPACK_IMPORTED_MODULE_2__[\"visit\"])(documentAST, Object(_utilities_TypeInfo_mjs__WEBPACK_IMPORTED_MODULE_4__[\"visitWithTypeInfo\"])(typeInfo, visitor));\n } catch (e) {\n if (e !== abortObj) {\n throw e;\n }\n }\n\n return errors;\n}\n/**\n * @internal\n */\n\nfunction validateSDL(documentAST, schemaToExtend) {\n var rules = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _specifiedRules_mjs__WEBPACK_IMPORTED_MODULE_5__[\"specifiedSDLRules\"];\n var errors = [];\n var context = new _ValidationContext_mjs__WEBPACK_IMPORTED_MODULE_6__[\"SDLValidationContext\"](documentAST, schemaToExtend, function (error) {\n errors.push(error);\n });\n var visitors = rules.map(function (rule) {\n return rule(context);\n });\n Object(_language_visitor_mjs__WEBPACK_IMPORTED_MODULE_2__[\"visit\"])(documentAST, Object(_language_visitor_mjs__WEBPACK_IMPORTED_MODULE_2__[\"visitInParallel\"])(visitors));\n return errors;\n}\n/**\n * Utility function which asserts a SDL document is valid by throwing an error\n * if it is invalid.\n *\n * @internal\n */\n\nfunction assertValidSDL(documentAST) {\n var errors = validateSDL(documentAST);\n\n if (errors.length !== 0) {\n throw new Error(errors.map(function (error) {\n return error.message;\n }).join('\\n\\n'));\n }\n}\n/**\n * Utility function which asserts a SDL document is valid by throwing an error\n * if it is invalid.\n *\n * @internal\n */\n\nfunction assertValidSDLExtension(documentAST, schema) {\n var errors = validateSDL(documentAST, schema);\n\n if (errors.length !== 0) {\n throw new Error(errors.map(function (error) {\n return error.message;\n }).join('\\n\\n'));\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/graphql/validation/validate.mjs?"); /***/ }), /***/ "./node_modules/graphql/version.mjs": /*!******************************************!*\ !*** ./node_modules/graphql/version.mjs ***! \******************************************/ /*! exports provided: version, versionInfo */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return version; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"versionInfo\", function() { return versionInfo; });\n/**\n * Note: This file is autogenerated using \"resources/gen-version.js\" script and\n * automatically updated by \"npm version\" command.\n */\n\n/**\n * A string containing the version of the GraphQL.js library\n */\nvar version = '15.8.0';\n/**\n * An object containing the components of the GraphQL.js version string\n */\n\nvar versionInfo = Object.freeze({\n major: 15,\n minor: 8,\n patch: 0,\n preReleaseTag: null\n});\n\n\n//# sourceURL=webpack:///./node_modules/graphql/version.mjs?"); /***/ }), /***/ "./node_modules/has-property-descriptors/index.js": /*!********************************************************!*\ !*** ./node_modules/has-property-descriptors/index.js ***! \********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar GetIntrinsic = __webpack_require__(/*! get-intrinsic */ \"./node_modules/get-intrinsic/index.js\");\n\nvar $defineProperty = GetIntrinsic('%Object.defineProperty%', true);\n\nvar hasPropertyDescriptors = function hasPropertyDescriptors() {\n\tif ($defineProperty) {\n\t\ttry {\n\t\t\t$defineProperty({}, 'a', { value: 1 });\n\t\t\treturn true;\n\t\t} catch (e) {\n\t\t\t// IE 8 has a broken defineProperty\n\t\t\treturn false;\n\t\t}\n\t}\n\treturn false;\n};\n\nhasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() {\n\t// node v0.6 has a bug where array lengths can be Set but not Defined\n\tif (!hasPropertyDescriptors()) {\n\t\treturn null;\n\t}\n\ttry {\n\t\treturn $defineProperty([], 'length', { value: 1 }).length !== 1;\n\t} catch (e) {\n\t\t// In Firefox 4-22, defining length on an array throws an exception.\n\t\treturn true;\n\t}\n};\n\nmodule.exports = hasPropertyDescriptors;\n\n\n//# sourceURL=webpack:///./node_modules/has-property-descriptors/index.js?"); /***/ }), /***/ "./node_modules/has-proto/index.js": /*!*****************************************!*\ !*** ./node_modules/has-proto/index.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar test = {\n\tfoo: {}\n};\n\nvar $Object = Object;\n\nmodule.exports = function hasProto() {\n\treturn { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object);\n};\n\n\n//# sourceURL=webpack:///./node_modules/has-proto/index.js?"); /***/ }), /***/ "./node_modules/has-symbols/index.js": /*!*******************************************!*\ !*** ./node_modules/has-symbols/index.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar origSymbol = typeof Symbol !== 'undefined' && Symbol;\nvar hasSymbolSham = __webpack_require__(/*! ./shams */ \"./node_modules/has-symbols/shams.js\");\n\nmodule.exports = function hasNativeSymbols() {\n\tif (typeof origSymbol !== 'function') { return false; }\n\tif (typeof Symbol !== 'function') { return false; }\n\tif (typeof origSymbol('foo') !== 'symbol') { return false; }\n\tif (typeof Symbol('bar') !== 'symbol') { return false; }\n\n\treturn hasSymbolSham();\n};\n\n\n//# sourceURL=webpack:///./node_modules/has-symbols/index.js?"); /***/ }), /***/ "./node_modules/has-symbols/shams.js": /*!*******************************************!*\ !*** ./node_modules/has-symbols/shams.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/* eslint complexity: [2, 18], max-statements: [2, 33] */\nmodule.exports = function hasSymbols() {\n\tif (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }\n\tif (typeof Symbol.iterator === 'symbol') { return true; }\n\n\tvar obj = {};\n\tvar sym = Symbol('test');\n\tvar symObj = Object(sym);\n\tif (typeof sym === 'string') { return false; }\n\n\tif (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }\n\tif (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }\n\n\t// temp disabled per https://github.com/ljharb/object.assign/issues/17\n\t// if (sym instanceof Symbol) { return false; }\n\t// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4\n\t// if (!(symObj instanceof Symbol)) { return false; }\n\n\t// if (typeof Symbol.prototype.toString !== 'function') { return false; }\n\t// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }\n\n\tvar symVal = 42;\n\tobj[sym] = symVal;\n\tfor (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop\n\tif (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }\n\n\tif (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }\n\n\tvar syms = Object.getOwnPropertySymbols(obj);\n\tif (syms.length !== 1 || syms[0] !== sym) { return false; }\n\n\tif (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }\n\n\tif (typeof Object.getOwnPropertyDescriptor === 'function') {\n\t\tvar descriptor = Object.getOwnPropertyDescriptor(obj, sym);\n\t\tif (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }\n\t}\n\n\treturn true;\n};\n\n\n//# sourceURL=webpack:///./node_modules/has-symbols/shams.js?"); /***/ }), /***/ "./node_modules/hasown/index.js": /*!**************************************!*\ !*** ./node_modules/hasown/index.js ***! \**************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar call = Function.prototype.call;\nvar $hasOwn = Object.prototype.hasOwnProperty;\nvar bind = __webpack_require__(/*! function-bind */ \"./node_modules/function-bind/index.js\");\n\n/** @type {(o: {}, p: PropertyKey) => p is keyof o} */\nmodule.exports = bind.call(call, $hasOwn);\n\n\n//# sourceURL=webpack:///./node_modules/hasown/index.js?"); /***/ }), /***/ "./node_modules/idb/build/esm/index.js": /*!*********************************************!*\ !*** ./node_modules/idb/build/esm/index.js ***! \*********************************************/ /*! exports provided: unwrap, wrap, deleteDB, openDB */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deleteDB\", function() { return deleteDB; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"openDB\", function() { return openDB; });\n/* harmony import */ var _wrap_idb_value_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./wrap-idb-value.js */ \"./node_modules/idb/build/esm/wrap-idb-value.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"unwrap\", function() { return _wrap_idb_value_js__WEBPACK_IMPORTED_MODULE_0__[\"u\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"wrap\", function() { return _wrap_idb_value_js__WEBPACK_IMPORTED_MODULE_0__[\"w\"]; });\n\n\n\n\n/**\n * Open a database.\n *\n * @param name Name of the database.\n * @param version Schema version.\n * @param callbacks Additional callbacks.\n */\nfunction openDB(name, version, { blocked, upgrade, blocking, terminated } = {}) {\n const request = indexedDB.open(name, version);\n const openPromise = Object(_wrap_idb_value_js__WEBPACK_IMPORTED_MODULE_0__[\"w\"])(request);\n if (upgrade) {\n request.addEventListener('upgradeneeded', (event) => {\n upgrade(Object(_wrap_idb_value_js__WEBPACK_IMPORTED_MODULE_0__[\"w\"])(request.result), event.oldVersion, event.newVersion, Object(_wrap_idb_value_js__WEBPACK_IMPORTED_MODULE_0__[\"w\"])(request.transaction));\n });\n }\n if (blocked)\n request.addEventListener('blocked', () => blocked());\n openPromise\n .then((db) => {\n if (terminated)\n db.addEventListener('close', () => terminated());\n if (blocking)\n db.addEventListener('versionchange', () => blocking());\n })\n .catch(() => { });\n return openPromise;\n}\n/**\n * Delete a database.\n *\n * @param name Name of the database.\n */\nfunction deleteDB(name, { blocked } = {}) {\n const request = indexedDB.deleteDatabase(name);\n if (blocked)\n request.addEventListener('blocked', () => blocked());\n return Object(_wrap_idb_value_js__WEBPACK_IMPORTED_MODULE_0__[\"w\"])(request).then(() => undefined);\n}\n\nconst readMethods = ['get', 'getKey', 'getAll', 'getAllKeys', 'count'];\nconst writeMethods = ['put', 'add', 'delete', 'clear'];\nconst cachedMethods = new Map();\nfunction getMethod(target, prop) {\n if (!(target instanceof IDBDatabase &&\n !(prop in target) &&\n typeof prop === 'string')) {\n return;\n }\n if (cachedMethods.get(prop))\n return cachedMethods.get(prop);\n const targetFuncName = prop.replace(/FromIndex$/, '');\n const useIndex = prop !== targetFuncName;\n const isWrite = writeMethods.includes(targetFuncName);\n if (\n // Bail if the target doesn't exist on the target. Eg, getAll isn't in Edge.\n !(targetFuncName in (useIndex ? IDBIndex : IDBObjectStore).prototype) ||\n !(isWrite || readMethods.includes(targetFuncName))) {\n return;\n }\n const method = async function (storeName, ...args) {\n // isWrite ? 'readwrite' : undefined gzipps better, but fails in Edge :(\n const tx = this.transaction(storeName, isWrite ? 'readwrite' : 'readonly');\n let target = tx.store;\n if (useIndex)\n target = target.index(args.shift());\n const returnVal = await target[targetFuncName](...args);\n if (isWrite)\n await tx.done;\n return returnVal;\n };\n cachedMethods.set(prop, method);\n return method;\n}\nObject(_wrap_idb_value_js__WEBPACK_IMPORTED_MODULE_0__[\"r\"])((oldTraps) => ({\n ...oldTraps,\n get: (target, prop, receiver) => getMethod(target, prop) || oldTraps.get(target, prop, receiver),\n has: (target, prop) => !!getMethod(target, prop) || oldTraps.has(target, prop),\n}));\n\n\n\n\n//# sourceURL=webpack:///./node_modules/idb/build/esm/index.js?"); /***/ }), /***/ "./node_modules/idb/build/esm/wrap-idb-value.js": /*!******************************************************!*\ !*** ./node_modules/idb/build/esm/wrap-idb-value.js ***! \******************************************************/ /*! exports provided: a, i, r, u, w */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"a\", function() { return reverseTransformCache; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"i\", function() { return instanceOfAny; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"r\", function() { return replaceTraps; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"u\", function() { return unwrap; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"w\", function() { return wrap; });\nconst instanceOfAny = (object, constructors) => constructors.some((c) => object instanceof c);\n\nlet idbProxyableTypes;\nlet cursorAdvanceMethods;\n// This is a function to prevent it throwing up in node environments.\nfunction getIdbProxyableTypes() {\n return (idbProxyableTypes ||\n (idbProxyableTypes = [\n IDBDatabase,\n IDBObjectStore,\n IDBIndex,\n IDBCursor,\n IDBTransaction,\n ]));\n}\n// This is a function to prevent it throwing up in node environments.\nfunction getCursorAdvanceMethods() {\n return (cursorAdvanceMethods ||\n (cursorAdvanceMethods = [\n IDBCursor.prototype.advance,\n IDBCursor.prototype.continue,\n IDBCursor.prototype.continuePrimaryKey,\n ]));\n}\nconst cursorRequestMap = new WeakMap();\nconst transactionDoneMap = new WeakMap();\nconst transactionStoreNamesMap = new WeakMap();\nconst transformCache = new WeakMap();\nconst reverseTransformCache = new WeakMap();\nfunction promisifyRequest(request) {\n const promise = new Promise((resolve, reject) => {\n const unlisten = () => {\n request.removeEventListener('success', success);\n request.removeEventListener('error', error);\n };\n const success = () => {\n resolve(wrap(request.result));\n unlisten();\n };\n const error = () => {\n reject(request.error);\n unlisten();\n };\n request.addEventListener('success', success);\n request.addEventListener('error', error);\n });\n promise\n .then((value) => {\n // Since cursoring reuses the IDBRequest (*sigh*), we cache it for later retrieval\n // (see wrapFunction).\n if (value instanceof IDBCursor) {\n cursorRequestMap.set(value, request);\n }\n // Catching to avoid \"Uncaught Promise exceptions\"\n })\n .catch(() => { });\n // This mapping exists in reverseTransformCache but doesn't doesn't exist in transformCache. This\n // is because we create many promises from a single IDBRequest.\n reverseTransformCache.set(promise, request);\n return promise;\n}\nfunction cacheDonePromiseForTransaction(tx) {\n // Early bail if we've already created a done promise for this transaction.\n if (transactionDoneMap.has(tx))\n return;\n const done = new Promise((resolve, reject) => {\n const unlisten = () => {\n tx.removeEventListener('complete', complete);\n tx.removeEventListener('error', error);\n tx.removeEventListener('abort', error);\n };\n const complete = () => {\n resolve();\n unlisten();\n };\n const error = () => {\n reject(tx.error || new DOMException('AbortError', 'AbortError'));\n unlisten();\n };\n tx.addEventListener('complete', complete);\n tx.addEventListener('error', error);\n tx.addEventListener('abort', error);\n });\n // Cache it for later retrieval.\n transactionDoneMap.set(tx, done);\n}\nlet idbProxyTraps = {\n get(target, prop, receiver) {\n if (target instanceof IDBTransaction) {\n // Special handling for transaction.done.\n if (prop === 'done')\n return transactionDoneMap.get(target);\n // Polyfill for objectStoreNames because of Edge.\n if (prop === 'objectStoreNames') {\n return target.objectStoreNames || transactionStoreNamesMap.get(target);\n }\n // Make tx.store return the only store in the transaction, or undefined if there are many.\n if (prop === 'store') {\n return receiver.objectStoreNames[1]\n ? undefined\n : receiver.objectStore(receiver.objectStoreNames[0]);\n }\n }\n // Else transform whatever we get back.\n return wrap(target[prop]);\n },\n set(target, prop, value) {\n target[prop] = value;\n return true;\n },\n has(target, prop) {\n if (target instanceof IDBTransaction &&\n (prop === 'done' || prop === 'store')) {\n return true;\n }\n return prop in target;\n },\n};\nfunction replaceTraps(callback) {\n idbProxyTraps = callback(idbProxyTraps);\n}\nfunction wrapFunction(func) {\n // Due to expected object equality (which is enforced by the caching in `wrap`), we\n // only create one new func per func.\n // Edge doesn't support objectStoreNames (booo), so we polyfill it here.\n if (func === IDBDatabase.prototype.transaction &&\n !('objectStoreNames' in IDBTransaction.prototype)) {\n return function (storeNames, ...args) {\n const tx = func.call(unwrap(this), storeNames, ...args);\n transactionStoreNamesMap.set(tx, storeNames.sort ? storeNames.sort() : [storeNames]);\n return wrap(tx);\n };\n }\n // Cursor methods are special, as the behaviour is a little more different to standard IDB. In\n // IDB, you advance the cursor and wait for a new 'success' on the IDBRequest that gave you the\n // cursor. It's kinda like a promise that can resolve with many values. That doesn't make sense\n // with real promises, so each advance methods returns a new promise for the cursor object, or\n // undefined if the end of the cursor has been reached.\n if (getCursorAdvanceMethods().includes(func)) {\n return function (...args) {\n // Calling the original function with the proxy as 'this' causes ILLEGAL INVOCATION, so we use\n // the original object.\n func.apply(unwrap(this), args);\n return wrap(cursorRequestMap.get(this));\n };\n }\n return function (...args) {\n // Calling the original function with the proxy as 'this' causes ILLEGAL INVOCATION, so we use\n // the original object.\n return wrap(func.apply(unwrap(this), args));\n };\n}\nfunction transformCachableValue(value) {\n if (typeof value === 'function')\n return wrapFunction(value);\n // This doesn't return, it just creates a 'done' promise for the transaction,\n // which is later returned for transaction.done (see idbObjectHandler).\n if (value instanceof IDBTransaction)\n cacheDonePromiseForTransaction(value);\n if (instanceOfAny(value, getIdbProxyableTypes()))\n return new Proxy(value, idbProxyTraps);\n // Return the same value back if we're not going to transform it.\n return value;\n}\nfunction wrap(value) {\n // We sometimes generate multiple promises from a single IDBRequest (eg when cursoring), because\n // IDB is weird and a single IDBRequest can yield many responses, so these can't be cached.\n if (value instanceof IDBRequest)\n return promisifyRequest(value);\n // If we've already transformed this value before, reuse the transformed value.\n // This is faster, but it also provides object equality.\n if (transformCache.has(value))\n return transformCache.get(value);\n const newValue = transformCachableValue(value);\n // Not all types are transformed.\n // These may be primitive types, so they can't be WeakMap keys.\n if (newValue !== value) {\n transformCache.set(value, newValue);\n reverseTransformCache.set(newValue, value);\n }\n return newValue;\n}\nconst unwrap = (value) => reverseTransformCache.get(value);\n\n\n\n\n//# sourceURL=webpack:///./node_modules/idb/build/esm/wrap-idb-value.js?"); /***/ }), /***/ "./node_modules/ieee754/index.js": /*!***************************************!*\ !*** ./node_modules/ieee754/index.js ***! \***************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */\nexports.read = function (buffer, offset, isLE, mLen, nBytes) {\n var e, m\n var eLen = (nBytes * 8) - mLen - 1\n var eMax = (1 << eLen) - 1\n var eBias = eMax >> 1\n var nBits = -7\n var i = isLE ? (nBytes - 1) : 0\n var d = isLE ? -1 : 1\n var s = buffer[offset + i]\n\n i += d\n\n e = s & ((1 << (-nBits)) - 1)\n s >>= (-nBits)\n nBits += eLen\n for (; nBits > 0; e = (e * 256) + buffer[offset + i], i += d, nBits -= 8) {}\n\n m = e & ((1 << (-nBits)) - 1)\n e >>= (-nBits)\n nBits += mLen\n for (; nBits > 0; m = (m * 256) + buffer[offset + i], i += d, nBits -= 8) {}\n\n if (e === 0) {\n e = 1 - eBias\n } else if (e === eMax) {\n return m ? NaN : ((s ? -1 : 1) * Infinity)\n } else {\n m = m + Math.pow(2, mLen)\n e = e - eBias\n }\n return (s ? -1 : 1) * m * Math.pow(2, e - mLen)\n}\n\nexports.write = function (buffer, value, offset, isLE, mLen, nBytes) {\n var e, m, c\n var eLen = (nBytes * 8) - mLen - 1\n var eMax = (1 << eLen) - 1\n var eBias = eMax >> 1\n var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0)\n var i = isLE ? 0 : (nBytes - 1)\n var d = isLE ? 1 : -1\n var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0\n\n value = Math.abs(value)\n\n if (isNaN(value) || value === Infinity) {\n m = isNaN(value) ? 1 : 0\n e = eMax\n } else {\n e = Math.floor(Math.log(value) / Math.LN2)\n if (value * (c = Math.pow(2, -e)) < 1) {\n e--\n c *= 2\n }\n if (e + eBias >= 1) {\n value += rt / c\n } else {\n value += rt * Math.pow(2, 1 - eBias)\n }\n if (value * c >= 2) {\n e++\n c /= 2\n }\n\n if (e + eBias >= eMax) {\n m = 0\n e = eMax\n } else if (e + eBias >= 1) {\n m = ((value * c) - 1) * Math.pow(2, mLen)\n e = e + eBias\n } else {\n m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen)\n e = 0\n }\n }\n\n for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {}\n\n e = (e << mLen) | m\n eLen += mLen\n for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {}\n\n buffer[offset + i - d] |= s * 128\n}\n\n\n//# sourceURL=webpack:///./node_modules/ieee754/index.js?"); /***/ }), /***/ "./node_modules/immer/dist/immer.esm.js": /*!**********************************************!*\ !*** ./node_modules/immer/dist/immer.esm.js ***! \**********************************************/ /*! exports provided: default, Immer, applyPatches, castDraft, castImmutable, createDraft, current, enableAllPlugins, enableES5, enableMapSet, enablePatches, finishDraft, freeze, immerable, isDraft, isDraftable, nothing, original, produce, produceWithPatches, setAutoFreeze, setUseProxies */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Immer\", function() { return un; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"applyPatches\", function() { return pn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"castDraft\", function() { return K; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"castImmutable\", function() { return $; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createDraft\", function() { return ln; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"current\", function() { return D; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"enableAllPlugins\", function() { return J; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"enableES5\", function() { return N; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"enableMapSet\", function() { return C; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"enablePatches\", function() { return T; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"finishDraft\", function() { return dn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"freeze\", function() { return d; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"immerable\", function() { return L; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isDraft\", function() { return t; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isDraftable\", function() { return r; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"nothing\", function() { return H; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"original\", function() { return e; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"produce\", function() { return fn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"produceWithPatches\", function() { return cn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setAutoFreeze\", function() { return sn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setUseProxies\", function() { return vn; });\nfunction n(n){for(var t=arguments.length,r=Array(t>1?t-1:0),e=1;e3?t.i-4:t.i:Array.isArray(n)?1:s(n)?2:v(n)?3:0}function u(n,t){return 2===o(n)?n.has(t):Object.prototype.hasOwnProperty.call(n,t)}function a(n,t){return 2===o(n)?n.get(t):n[t]}function f(n,t,r){var e=o(n);2===e?n.set(t,r):3===e?(n.delete(t),n.add(r)):n[t]=r}function c(n,t){return n===t?0!==n||1/n==1/t:n!=n&&t!=t}function s(n){return X&&n instanceof Map}function v(n){return q&&n instanceof Set}function p(n){return n.o||n.t}function l(n){if(Array.isArray(n))return Array.prototype.slice.call(n);var t=tn(n);delete t[Q];for(var r=nn(t),e=0;e1&&(n.set=n.add=n.clear=n.delete=h),Object.freeze(n),e&&i(n,(function(n,t){return d(t,!0)}),!0),n)}function h(){n(2)}function y(n){return null==n||\"object\"!=typeof n||Object.isFrozen(n)}function b(t){var r=rn[t];return r||n(18,t),r}function m(n,t){rn[n]||(rn[n]=t)}function _(){return false||U||n(0),U}function j(n,t){t&&(b(\"Patches\"),n.u=[],n.s=[],n.v=t)}function O(n){g(n),n.p.forEach(S),n.p=null}function g(n){n===U&&(U=n.l)}function w(n){return U={p:[],l:U,h:n,m:!0,_:0}}function S(n){var t=n[Q];0===t.i||1===t.i?t.j():t.O=!0}function P(t,e){e._=e.p.length;var i=e.p[0],o=void 0!==t&&t!==i;return e.h.g||b(\"ES5\").S(e,t,o),o?(i[Q].P&&(O(e),n(4)),r(t)&&(t=M(e,t),e.l||x(e,t)),e.u&&b(\"Patches\").M(i[Q],t,e.u,e.s)):t=M(e,i,[]),O(e),e.u&&e.v(e.u,e.s),t!==H?t:void 0}function M(n,t,r){if(y(t))return t;var e=t[Q];if(!e)return i(t,(function(i,o){return A(n,e,t,i,o,r)}),!0),t;if(e.A!==n)return t;if(!e.P)return x(n,e.t,!0),e.t;if(!e.I){e.I=!0,e.A._--;var o=4===e.i||5===e.i?e.o=l(e.k):e.o;i(3===e.i?new Set(o):o,(function(t,i){return A(n,e,o,t,i,r)})),x(n,o,!1),r&&n.u&&b(\"Patches\").R(e,r,n.u,n.s)}return e.o}function A(e,i,o,a,c,s){if( true&&c===o&&n(5),t(c)){var v=M(e,c,s&&i&&3!==i.i&&!u(i.D,a)?s.concat(a):void 0);if(f(o,a,v),!t(v))return;e.m=!1}if(r(c)&&!y(c)){if(!e.h.F&&e._<1)return;M(e,c),i&&i.A.l||x(e,c)}}function x(n,t,r){void 0===r&&(r=!1),n.h.F&&n.m&&d(t,r)}function z(n,t){var r=n[Q];return(r?p(r):n)[t]}function I(n,t){if(t in n)for(var r=Object.getPrototypeOf(n);r;){var e=Object.getOwnPropertyDescriptor(r,t);if(e)return e;r=Object.getPrototypeOf(r)}}function k(n){n.P||(n.P=!0,n.l&&k(n.l))}function E(n){n.o||(n.o=l(n.t))}function R(n,t,r){var e=s(t)?b(\"MapSet\").N(t,r):v(t)?b(\"MapSet\").T(t,r):n.g?function(n,t){var r=Array.isArray(n),e={i:r?1:0,A:t?t.A:_(),P:!1,I:!1,D:{},l:t,t:n,k:null,o:null,j:null,C:!1},i=e,o=en;r&&(i=[e],o=on);var u=Proxy.revocable(i,o),a=u.revoke,f=u.proxy;return e.k=f,e.j=a,f}(t,r):b(\"ES5\").J(t,r);return(r?r.A:_()).p.push(e),e}function D(e){return t(e)||n(22,e),function n(t){if(!r(t))return t;var e,u=t[Q],c=o(t);if(u){if(!u.P&&(u.i<4||!b(\"ES5\").K(u)))return u.t;u.I=!0,e=F(t,c),u.I=!1}else e=F(t,c);return i(e,(function(t,r){u&&a(u.t,t)===r||f(e,t,n(r))})),3===c?new Set(e):e}(e)}function F(n,t){switch(t){case 2:return new Map(n);case 3:return Array.from(n)}return l(n)}function N(){function r(n,t){var r=s[n];return r?r.enumerable=t:s[n]=r={configurable:!0,enumerable:t,get:function(){var t=this[Q];return true&&f(t),en.get(t,n)},set:function(t){var r=this[Q]; true&&f(r),en.set(r,n,t)}},r}function e(n){for(var t=n.length-1;t>=0;t--){var r=n[t][Q];if(!r.P)switch(r.i){case 5:a(r)&&k(r);break;case 4:o(r)&&k(r)}}}function o(n){for(var t=n.t,r=n.k,e=nn(r),i=e.length-1;i>=0;i--){var o=e[i];if(o!==Q){var a=t[o];if(void 0===a&&!u(t,o))return!0;var f=r[o],s=f&&f[Q];if(s?s.t!==a:!c(f,a))return!0}}var v=!!t[Q];return e.length!==nn(t).length+(v?0:1)}function a(n){var t=n.k;if(t.length!==n.t.length)return!0;var r=Object.getOwnPropertyDescriptor(t,t.length-1);return!(!r||r.get)}function f(t){t.O&&n(3,JSON.stringify(p(t)))}var s={};m(\"ES5\",{J:function(n,t){var e=Array.isArray(n),i=function(n,t){if(n){for(var e=Array(t.length),i=0;i1?r-1:0),o=1;o1?r-1:0),o=1;o=0;e--){var i=r[e];if(0===i.path.length&&\"replace\"===i.op){n=i.value;break}}var o=b(\"Patches\").$;return t(n)?o(n,r):this.produce(n,(function(n){return o(n,r.slice(e+1))}))},e}(),an=new un,fn=an.produce,cn=an.produceWithPatches.bind(an),sn=an.setAutoFreeze.bind(an),vn=an.setUseProxies.bind(an),pn=an.applyPatches.bind(an),ln=an.createDraft.bind(an),dn=an.finishDraft.bind(an);/* harmony default export */ __webpack_exports__[\"default\"] = (fn);\n//# sourceMappingURL=immer.esm.js.map\n\n\n//# sourceURL=webpack:///./node_modules/immer/dist/immer.esm.js?"); /***/ }), /***/ "./node_modules/isarray/index.js": /*!***************************************!*\ !*** ./node_modules/isarray/index.js ***! \***************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("var toString = {}.toString;\n\nmodule.exports = Array.isArray || function (arr) {\n return toString.call(arr) == '[object Array]';\n};\n\n\n//# sourceURL=webpack:///./node_modules/isarray/index.js?"); /***/ }), /***/ "./node_modules/isomorphic-unfetch/browser.js": /*!****************************************************!*\ !*** ./node_modules/isomorphic-unfetch/browser.js ***! \****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("module.exports = self.fetch || (self.fetch = __webpack_require__(/*! unfetch */ \"./node_modules/unfetch/dist/unfetch.module.js\").default || __webpack_require__(/*! unfetch */ \"./node_modules/unfetch/dist/unfetch.module.js\"));\n\n\n//# sourceURL=webpack:///./node_modules/isomorphic-unfetch/browser.js?"); /***/ }), /***/ "./node_modules/js-cookie/src/js.cookie.js": /*!*************************************************!*\ !*** ./node_modules/js-cookie/src/js.cookie.js ***! \*************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!\n * JavaScript Cookie v2.2.1\n * https://github.com/js-cookie/js-cookie\n *\n * Copyright 2006, 2015 Klaus Hartl & Fagner Brack\n * Released under the MIT license\n */\n;(function (factory) {\n\tvar registeredInModuleLoader;\n\tif (true) {\n\t\t!(__WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\n\t\t\t\t(__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) :\n\t\t\t\t__WEBPACK_AMD_DEFINE_FACTORY__),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t\tregisteredInModuleLoader = true;\n\t}\n\tif (true) {\n\t\tmodule.exports = factory();\n\t\tregisteredInModuleLoader = true;\n\t}\n\tif (!registeredInModuleLoader) {\n\t\tvar OldCookies = window.Cookies;\n\t\tvar api = window.Cookies = factory();\n\t\tapi.noConflict = function () {\n\t\t\twindow.Cookies = OldCookies;\n\t\t\treturn api;\n\t\t};\n\t}\n}(function () {\n\tfunction extend () {\n\t\tvar i = 0;\n\t\tvar result = {};\n\t\tfor (; i < arguments.length; i++) {\n\t\t\tvar attributes = arguments[ i ];\n\t\t\tfor (var key in attributes) {\n\t\t\t\tresult[key] = attributes[key];\n\t\t\t}\n\t\t}\n\t\treturn result;\n\t}\n\n\tfunction decode (s) {\n\t\treturn s.replace(/(%[0-9A-Z]{2})+/g, decodeURIComponent);\n\t}\n\n\tfunction init (converter) {\n\t\tfunction api() {}\n\n\t\tfunction set (key, value, attributes) {\n\t\t\tif (typeof document === 'undefined') {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tattributes = extend({\n\t\t\t\tpath: '/'\n\t\t\t}, api.defaults, attributes);\n\n\t\t\tif (typeof attributes.expires === 'number') {\n\t\t\t\tattributes.expires = new Date(new Date() * 1 + attributes.expires * 864e+5);\n\t\t\t}\n\n\t\t\t// We're using \"expires\" because \"max-age\" is not supported by IE\n\t\t\tattributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';\n\n\t\t\ttry {\n\t\t\t\tvar result = JSON.stringify(value);\n\t\t\t\tif (/^[\\{\\[]/.test(result)) {\n\t\t\t\t\tvalue = result;\n\t\t\t\t}\n\t\t\t} catch (e) {}\n\n\t\t\tvalue = converter.write ?\n\t\t\t\tconverter.write(value, key) :\n\t\t\t\tencodeURIComponent(String(value))\n\t\t\t\t\t.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);\n\n\t\t\tkey = encodeURIComponent(String(key))\n\t\t\t\t.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent)\n\t\t\t\t.replace(/[\\(\\)]/g, escape);\n\n\t\t\tvar stringifiedAttributes = '';\n\t\t\tfor (var attributeName in attributes) {\n\t\t\t\tif (!attributes[attributeName]) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tstringifiedAttributes += '; ' + attributeName;\n\t\t\t\tif (attributes[attributeName] === true) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Considers RFC 6265 section 5.2:\n\t\t\t\t// ...\n\t\t\t\t// 3. If the remaining unparsed-attributes contains a %x3B (\";\")\n\t\t\t\t// character:\n\t\t\t\t// Consume the characters of the unparsed-attributes up to,\n\t\t\t\t// not including, the first %x3B (\";\") character.\n\t\t\t\t// ...\n\t\t\t\tstringifiedAttributes += '=' + attributes[attributeName].split(';')[0];\n\t\t\t}\n\n\t\t\treturn (document.cookie = key + '=' + value + stringifiedAttributes);\n\t\t}\n\n\t\tfunction get (key, json) {\n\t\t\tif (typeof document === 'undefined') {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar jar = {};\n\t\t\t// To prevent the for loop in the first place assign an empty array\n\t\t\t// in case there are no cookies at all.\n\t\t\tvar cookies = document.cookie ? document.cookie.split('; ') : [];\n\t\t\tvar i = 0;\n\n\t\t\tfor (; i < cookies.length; i++) {\n\t\t\t\tvar parts = cookies[i].split('=');\n\t\t\t\tvar cookie = parts.slice(1).join('=');\n\n\t\t\t\tif (!json && cookie.charAt(0) === '\"') {\n\t\t\t\t\tcookie = cookie.slice(1, -1);\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tvar name = decode(parts[0]);\n\t\t\t\t\tcookie = (converter.read || converter)(cookie, name) ||\n\t\t\t\t\t\tdecode(cookie);\n\n\t\t\t\t\tif (json) {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tcookie = JSON.parse(cookie);\n\t\t\t\t\t\t} catch (e) {}\n\t\t\t\t\t}\n\n\t\t\t\t\tjar[name] = cookie;\n\n\t\t\t\t\tif (key === name) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t} catch (e) {}\n\t\t\t}\n\n\t\t\treturn key ? jar[key] : jar;\n\t\t}\n\n\t\tapi.set = set;\n\t\tapi.get = function (key) {\n\t\t\treturn get(key, false /* read as raw */);\n\t\t};\n\t\tapi.getJSON = function (key) {\n\t\t\treturn get(key, true /* read as json */);\n\t\t};\n\t\tapi.remove = function (key, attributes) {\n\t\t\tset(key, '', extend(attributes, {\n\t\t\t\texpires: -1\n\t\t\t}));\n\t\t};\n\n\t\tapi.defaults = {};\n\n\t\tapi.withConverter = init;\n\n\t\treturn api;\n\t}\n\n\treturn init(function () {});\n}));\n\n\n//# sourceURL=webpack:///./node_modules/js-cookie/src/js.cookie.js?"); /***/ }), /***/ "./node_modules/lodash/_DataView.js": /*!******************************************!*\ !*** ./node_modules/lodash/_DataView.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getNative = __webpack_require__(/*! ./_getNative */ \"./node_modules/lodash/_getNative.js\"),\n root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/* Built-in method references that are verified to be native. */\nvar DataView = getNative(root, 'DataView');\n\nmodule.exports = DataView;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_DataView.js?"); /***/ }), /***/ "./node_modules/lodash/_Hash.js": /*!**************************************!*\ !*** ./node_modules/lodash/_Hash.js ***! \**************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var hashClear = __webpack_require__(/*! ./_hashClear */ \"./node_modules/lodash/_hashClear.js\"),\n hashDelete = __webpack_require__(/*! ./_hashDelete */ \"./node_modules/lodash/_hashDelete.js\"),\n hashGet = __webpack_require__(/*! ./_hashGet */ \"./node_modules/lodash/_hashGet.js\"),\n hashHas = __webpack_require__(/*! ./_hashHas */ \"./node_modules/lodash/_hashHas.js\"),\n hashSet = __webpack_require__(/*! ./_hashSet */ \"./node_modules/lodash/_hashSet.js\");\n\n/**\n * Creates a hash object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Hash(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n// Add methods to `Hash`.\nHash.prototype.clear = hashClear;\nHash.prototype['delete'] = hashDelete;\nHash.prototype.get = hashGet;\nHash.prototype.has = hashHas;\nHash.prototype.set = hashSet;\n\nmodule.exports = Hash;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_Hash.js?"); /***/ }), /***/ "./node_modules/lodash/_ListCache.js": /*!*******************************************!*\ !*** ./node_modules/lodash/_ListCache.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var listCacheClear = __webpack_require__(/*! ./_listCacheClear */ \"./node_modules/lodash/_listCacheClear.js\"),\n listCacheDelete = __webpack_require__(/*! ./_listCacheDelete */ \"./node_modules/lodash/_listCacheDelete.js\"),\n listCacheGet = __webpack_require__(/*! ./_listCacheGet */ \"./node_modules/lodash/_listCacheGet.js\"),\n listCacheHas = __webpack_require__(/*! ./_listCacheHas */ \"./node_modules/lodash/_listCacheHas.js\"),\n listCacheSet = __webpack_require__(/*! ./_listCacheSet */ \"./node_modules/lodash/_listCacheSet.js\");\n\n/**\n * Creates an list cache object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction ListCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n// Add methods to `ListCache`.\nListCache.prototype.clear = listCacheClear;\nListCache.prototype['delete'] = listCacheDelete;\nListCache.prototype.get = listCacheGet;\nListCache.prototype.has = listCacheHas;\nListCache.prototype.set = listCacheSet;\n\nmodule.exports = ListCache;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_ListCache.js?"); /***/ }), /***/ "./node_modules/lodash/_Map.js": /*!*************************************!*\ !*** ./node_modules/lodash/_Map.js ***! \*************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getNative = __webpack_require__(/*! ./_getNative */ \"./node_modules/lodash/_getNative.js\"),\n root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/* Built-in method references that are verified to be native. */\nvar Map = getNative(root, 'Map');\n\nmodule.exports = Map;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_Map.js?"); /***/ }), /***/ "./node_modules/lodash/_MapCache.js": /*!******************************************!*\ !*** ./node_modules/lodash/_MapCache.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var mapCacheClear = __webpack_require__(/*! ./_mapCacheClear */ \"./node_modules/lodash/_mapCacheClear.js\"),\n mapCacheDelete = __webpack_require__(/*! ./_mapCacheDelete */ \"./node_modules/lodash/_mapCacheDelete.js\"),\n mapCacheGet = __webpack_require__(/*! ./_mapCacheGet */ \"./node_modules/lodash/_mapCacheGet.js\"),\n mapCacheHas = __webpack_require__(/*! ./_mapCacheHas */ \"./node_modules/lodash/_mapCacheHas.js\"),\n mapCacheSet = __webpack_require__(/*! ./_mapCacheSet */ \"./node_modules/lodash/_mapCacheSet.js\");\n\n/**\n * Creates a map cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction MapCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n// Add methods to `MapCache`.\nMapCache.prototype.clear = mapCacheClear;\nMapCache.prototype['delete'] = mapCacheDelete;\nMapCache.prototype.get = mapCacheGet;\nMapCache.prototype.has = mapCacheHas;\nMapCache.prototype.set = mapCacheSet;\n\nmodule.exports = MapCache;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_MapCache.js?"); /***/ }), /***/ "./node_modules/lodash/_Promise.js": /*!*****************************************!*\ !*** ./node_modules/lodash/_Promise.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getNative = __webpack_require__(/*! ./_getNative */ \"./node_modules/lodash/_getNative.js\"),\n root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/* Built-in method references that are verified to be native. */\nvar Promise = getNative(root, 'Promise');\n\nmodule.exports = Promise;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_Promise.js?"); /***/ }), /***/ "./node_modules/lodash/_Set.js": /*!*************************************!*\ !*** ./node_modules/lodash/_Set.js ***! \*************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getNative = __webpack_require__(/*! ./_getNative */ \"./node_modules/lodash/_getNative.js\"),\n root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/* Built-in method references that are verified to be native. */\nvar Set = getNative(root, 'Set');\n\nmodule.exports = Set;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_Set.js?"); /***/ }), /***/ "./node_modules/lodash/_SetCache.js": /*!******************************************!*\ !*** ./node_modules/lodash/_SetCache.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var MapCache = __webpack_require__(/*! ./_MapCache */ \"./node_modules/lodash/_MapCache.js\"),\n setCacheAdd = __webpack_require__(/*! ./_setCacheAdd */ \"./node_modules/lodash/_setCacheAdd.js\"),\n setCacheHas = __webpack_require__(/*! ./_setCacheHas */ \"./node_modules/lodash/_setCacheHas.js\");\n\n/**\n *\n * Creates an array cache object to store unique values.\n *\n * @private\n * @constructor\n * @param {Array} [values] The values to cache.\n */\nfunction SetCache(values) {\n var index = -1,\n length = values == null ? 0 : values.length;\n\n this.__data__ = new MapCache;\n while (++index < length) {\n this.add(values[index]);\n }\n}\n\n// Add methods to `SetCache`.\nSetCache.prototype.add = SetCache.prototype.push = setCacheAdd;\nSetCache.prototype.has = setCacheHas;\n\nmodule.exports = SetCache;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_SetCache.js?"); /***/ }), /***/ "./node_modules/lodash/_Stack.js": /*!***************************************!*\ !*** ./node_modules/lodash/_Stack.js ***! \***************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var ListCache = __webpack_require__(/*! ./_ListCache */ \"./node_modules/lodash/_ListCache.js\"),\n stackClear = __webpack_require__(/*! ./_stackClear */ \"./node_modules/lodash/_stackClear.js\"),\n stackDelete = __webpack_require__(/*! ./_stackDelete */ \"./node_modules/lodash/_stackDelete.js\"),\n stackGet = __webpack_require__(/*! ./_stackGet */ \"./node_modules/lodash/_stackGet.js\"),\n stackHas = __webpack_require__(/*! ./_stackHas */ \"./node_modules/lodash/_stackHas.js\"),\n stackSet = __webpack_require__(/*! ./_stackSet */ \"./node_modules/lodash/_stackSet.js\");\n\n/**\n * Creates a stack cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Stack(entries) {\n var data = this.__data__ = new ListCache(entries);\n this.size = data.size;\n}\n\n// Add methods to `Stack`.\nStack.prototype.clear = stackClear;\nStack.prototype['delete'] = stackDelete;\nStack.prototype.get = stackGet;\nStack.prototype.has = stackHas;\nStack.prototype.set = stackSet;\n\nmodule.exports = Stack;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_Stack.js?"); /***/ }), /***/ "./node_modules/lodash/_Symbol.js": /*!****************************************!*\ !*** ./node_modules/lodash/_Symbol.js ***! \****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/** Built-in value references. */\nvar Symbol = root.Symbol;\n\nmodule.exports = Symbol;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_Symbol.js?"); /***/ }), /***/ "./node_modules/lodash/_Uint8Array.js": /*!********************************************!*\ !*** ./node_modules/lodash/_Uint8Array.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/** Built-in value references. */\nvar Uint8Array = root.Uint8Array;\n\nmodule.exports = Uint8Array;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_Uint8Array.js?"); /***/ }), /***/ "./node_modules/lodash/_WeakMap.js": /*!*****************************************!*\ !*** ./node_modules/lodash/_WeakMap.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getNative = __webpack_require__(/*! ./_getNative */ \"./node_modules/lodash/_getNative.js\"),\n root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/* Built-in method references that are verified to be native. */\nvar WeakMap = getNative(root, 'WeakMap');\n\nmodule.exports = WeakMap;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_WeakMap.js?"); /***/ }), /***/ "./node_modules/lodash/_arrayFilter.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_arrayFilter.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * A specialized version of `_.filter` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n */\nfunction arrayFilter(array, predicate) {\n var index = -1,\n length = array == null ? 0 : array.length,\n resIndex = 0,\n result = [];\n\n while (++index < length) {\n var value = array[index];\n if (predicate(value, index, array)) {\n result[resIndex++] = value;\n }\n }\n return result;\n}\n\nmodule.exports = arrayFilter;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_arrayFilter.js?"); /***/ }), /***/ "./node_modules/lodash/_arrayLikeKeys.js": /*!***********************************************!*\ !*** ./node_modules/lodash/_arrayLikeKeys.js ***! \***********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseTimes = __webpack_require__(/*! ./_baseTimes */ \"./node_modules/lodash/_baseTimes.js\"),\n isArguments = __webpack_require__(/*! ./isArguments */ \"./node_modules/lodash/isArguments.js\"),\n isArray = __webpack_require__(/*! ./isArray */ \"./node_modules/lodash/isArray.js\"),\n isBuffer = __webpack_require__(/*! ./isBuffer */ \"./node_modules/lodash/isBuffer.js\"),\n isIndex = __webpack_require__(/*! ./_isIndex */ \"./node_modules/lodash/_isIndex.js\"),\n isTypedArray = __webpack_require__(/*! ./isTypedArray */ \"./node_modules/lodash/isTypedArray.js\");\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Creates an array of the enumerable property names of the array-like `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @param {boolean} inherited Specify returning inherited property names.\n * @returns {Array} Returns the array of property names.\n */\nfunction arrayLikeKeys(value, inherited) {\n var isArr = isArray(value),\n isArg = !isArr && isArguments(value),\n isBuff = !isArr && !isArg && isBuffer(value),\n isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n skipIndexes = isArr || isArg || isBuff || isType,\n result = skipIndexes ? baseTimes(value.length, String) : [],\n length = result.length;\n\n for (var key in value) {\n if ((inherited || hasOwnProperty.call(value, key)) &&\n !(skipIndexes && (\n // Safari 9 has enumerable `arguments.length` in strict mode.\n key == 'length' ||\n // Node.js 0.10 has enumerable non-index properties on buffers.\n (isBuff && (key == 'offset' || key == 'parent')) ||\n // PhantomJS 2 has enumerable non-index properties on typed arrays.\n (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\n // Skip index properties.\n isIndex(key, length)\n ))) {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = arrayLikeKeys;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_arrayLikeKeys.js?"); /***/ }), /***/ "./node_modules/lodash/_arrayMap.js": /*!******************************************!*\ !*** ./node_modules/lodash/_arrayMap.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * A specialized version of `_.map` for arrays without support for iteratee\n * shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the new mapped array.\n */\nfunction arrayMap(array, iteratee) {\n var index = -1,\n length = array == null ? 0 : array.length,\n result = Array(length);\n\n while (++index < length) {\n result[index] = iteratee(array[index], index, array);\n }\n return result;\n}\n\nmodule.exports = arrayMap;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_arrayMap.js?"); /***/ }), /***/ "./node_modules/lodash/_arrayPush.js": /*!*******************************************!*\ !*** ./node_modules/lodash/_arrayPush.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Appends the elements of `values` to `array`.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {Array} values The values to append.\n * @returns {Array} Returns `array`.\n */\nfunction arrayPush(array, values) {\n var index = -1,\n length = values.length,\n offset = array.length;\n\n while (++index < length) {\n array[offset + index] = values[index];\n }\n return array;\n}\n\nmodule.exports = arrayPush;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_arrayPush.js?"); /***/ }), /***/ "./node_modules/lodash/_arraySome.js": /*!*******************************************!*\ !*** ./node_modules/lodash/_arraySome.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * A specialized version of `_.some` for arrays without support for iteratee\n * shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {boolean} Returns `true` if any element passes the predicate check,\n * else `false`.\n */\nfunction arraySome(array, predicate) {\n var index = -1,\n length = array == null ? 0 : array.length;\n\n while (++index < length) {\n if (predicate(array[index], index, array)) {\n return true;\n }\n }\n return false;\n}\n\nmodule.exports = arraySome;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_arraySome.js?"); /***/ }), /***/ "./node_modules/lodash/_assocIndexOf.js": /*!**********************************************!*\ !*** ./node_modules/lodash/_assocIndexOf.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var eq = __webpack_require__(/*! ./eq */ \"./node_modules/lodash/eq.js\");\n\n/**\n * Gets the index at which the `key` is found in `array` of key-value pairs.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} key The key to search for.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction assocIndexOf(array, key) {\n var length = array.length;\n while (length--) {\n if (eq(array[length][0], key)) {\n return length;\n }\n }\n return -1;\n}\n\nmodule.exports = assocIndexOf;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_assocIndexOf.js?"); /***/ }), /***/ "./node_modules/lodash/_baseGet.js": /*!*****************************************!*\ !*** ./node_modules/lodash/_baseGet.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var castPath = __webpack_require__(/*! ./_castPath */ \"./node_modules/lodash/_castPath.js\"),\n toKey = __webpack_require__(/*! ./_toKey */ \"./node_modules/lodash/_toKey.js\");\n\n/**\n * The base implementation of `_.get` without support for default values.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the property to get.\n * @returns {*} Returns the resolved value.\n */\nfunction baseGet(object, path) {\n path = castPath(path, object);\n\n var index = 0,\n length = path.length;\n\n while (object != null && index < length) {\n object = object[toKey(path[index++])];\n }\n return (index && index == length) ? object : undefined;\n}\n\nmodule.exports = baseGet;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseGet.js?"); /***/ }), /***/ "./node_modules/lodash/_baseGetAllKeys.js": /*!************************************************!*\ !*** ./node_modules/lodash/_baseGetAllKeys.js ***! \************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var arrayPush = __webpack_require__(/*! ./_arrayPush */ \"./node_modules/lodash/_arrayPush.js\"),\n isArray = __webpack_require__(/*! ./isArray */ \"./node_modules/lodash/isArray.js\");\n\n/**\n * The base implementation of `getAllKeys` and `getAllKeysIn` which uses\n * `keysFunc` and `symbolsFunc` to get the enumerable property names and\n * symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @param {Function} symbolsFunc The function to get the symbols of `object`.\n * @returns {Array} Returns the array of property names and symbols.\n */\nfunction baseGetAllKeys(object, keysFunc, symbolsFunc) {\n var result = keysFunc(object);\n return isArray(object) ? result : arrayPush(result, symbolsFunc(object));\n}\n\nmodule.exports = baseGetAllKeys;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseGetAllKeys.js?"); /***/ }), /***/ "./node_modules/lodash/_baseGetTag.js": /*!********************************************!*\ !*** ./node_modules/lodash/_baseGetTag.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var Symbol = __webpack_require__(/*! ./_Symbol */ \"./node_modules/lodash/_Symbol.js\"),\n getRawTag = __webpack_require__(/*! ./_getRawTag */ \"./node_modules/lodash/_getRawTag.js\"),\n objectToString = __webpack_require__(/*! ./_objectToString */ \"./node_modules/lodash/_objectToString.js\");\n\n/** `Object#toString` result references. */\nvar nullTag = '[object Null]',\n undefinedTag = '[object Undefined]';\n\n/** Built-in value references. */\nvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n/**\n * The base implementation of `getTag` without fallbacks for buggy environments.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nfunction baseGetTag(value) {\n if (value == null) {\n return value === undefined ? undefinedTag : nullTag;\n }\n return (symToStringTag && symToStringTag in Object(value))\n ? getRawTag(value)\n : objectToString(value);\n}\n\nmodule.exports = baseGetTag;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseGetTag.js?"); /***/ }), /***/ "./node_modules/lodash/_baseIsArguments.js": /*!*************************************************!*\ !*** ./node_modules/lodash/_baseIsArguments.js ***! \*************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ \"./node_modules/lodash/_baseGetTag.js\"),\n isObjectLike = __webpack_require__(/*! ./isObjectLike */ \"./node_modules/lodash/isObjectLike.js\");\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]';\n\n/**\n * The base implementation of `_.isArguments`.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n */\nfunction baseIsArguments(value) {\n return isObjectLike(value) && baseGetTag(value) == argsTag;\n}\n\nmodule.exports = baseIsArguments;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseIsArguments.js?"); /***/ }), /***/ "./node_modules/lodash/_baseIsEqual.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_baseIsEqual.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseIsEqualDeep = __webpack_require__(/*! ./_baseIsEqualDeep */ \"./node_modules/lodash/_baseIsEqualDeep.js\"),\n isObjectLike = __webpack_require__(/*! ./isObjectLike */ \"./node_modules/lodash/isObjectLike.js\");\n\n/**\n * The base implementation of `_.isEqual` which supports partial comparisons\n * and tracks traversed objects.\n *\n * @private\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @param {boolean} bitmask The bitmask flags.\n * 1 - Unordered comparison\n * 2 - Partial comparison\n * @param {Function} [customizer] The function to customize comparisons.\n * @param {Object} [stack] Tracks traversed `value` and `other` objects.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n */\nfunction baseIsEqual(value, other, bitmask, customizer, stack) {\n if (value === other) {\n return true;\n }\n if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) {\n return value !== value && other !== other;\n }\n return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);\n}\n\nmodule.exports = baseIsEqual;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseIsEqual.js?"); /***/ }), /***/ "./node_modules/lodash/_baseIsEqualDeep.js": /*!*************************************************!*\ !*** ./node_modules/lodash/_baseIsEqualDeep.js ***! \*************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var Stack = __webpack_require__(/*! ./_Stack */ \"./node_modules/lodash/_Stack.js\"),\n equalArrays = __webpack_require__(/*! ./_equalArrays */ \"./node_modules/lodash/_equalArrays.js\"),\n equalByTag = __webpack_require__(/*! ./_equalByTag */ \"./node_modules/lodash/_equalByTag.js\"),\n equalObjects = __webpack_require__(/*! ./_equalObjects */ \"./node_modules/lodash/_equalObjects.js\"),\n getTag = __webpack_require__(/*! ./_getTag */ \"./node_modules/lodash/_getTag.js\"),\n isArray = __webpack_require__(/*! ./isArray */ \"./node_modules/lodash/isArray.js\"),\n isBuffer = __webpack_require__(/*! ./isBuffer */ \"./node_modules/lodash/isBuffer.js\"),\n isTypedArray = __webpack_require__(/*! ./isTypedArray */ \"./node_modules/lodash/isTypedArray.js\");\n\n/** Used to compose bitmasks for value comparisons. */\nvar COMPARE_PARTIAL_FLAG = 1;\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n objectTag = '[object Object]';\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * A specialized version of `baseIsEqual` for arrays and objects which performs\n * deep comparisons and tracks traversed objects enabling objects with circular\n * references to be compared.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n * @param {Function} customizer The function to customize comparisons.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Object} [stack] Tracks traversed `object` and `other` objects.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\nfunction baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {\n var objIsArr = isArray(object),\n othIsArr = isArray(other),\n objTag = objIsArr ? arrayTag : getTag(object),\n othTag = othIsArr ? arrayTag : getTag(other);\n\n objTag = objTag == argsTag ? objectTag : objTag;\n othTag = othTag == argsTag ? objectTag : othTag;\n\n var objIsObj = objTag == objectTag,\n othIsObj = othTag == objectTag,\n isSameTag = objTag == othTag;\n\n if (isSameTag && isBuffer(object)) {\n if (!isBuffer(other)) {\n return false;\n }\n objIsArr = true;\n objIsObj = false;\n }\n if (isSameTag && !objIsObj) {\n stack || (stack = new Stack);\n return (objIsArr || isTypedArray(object))\n ? equalArrays(object, other, bitmask, customizer, equalFunc, stack)\n : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);\n }\n if (!(bitmask & COMPARE_PARTIAL_FLAG)) {\n var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),\n othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');\n\n if (objIsWrapped || othIsWrapped) {\n var objUnwrapped = objIsWrapped ? object.value() : object,\n othUnwrapped = othIsWrapped ? other.value() : other;\n\n stack || (stack = new Stack);\n return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);\n }\n }\n if (!isSameTag) {\n return false;\n }\n stack || (stack = new Stack);\n return equalObjects(object, other, bitmask, customizer, equalFunc, stack);\n}\n\nmodule.exports = baseIsEqualDeep;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseIsEqualDeep.js?"); /***/ }), /***/ "./node_modules/lodash/_baseIsNative.js": /*!**********************************************!*\ !*** ./node_modules/lodash/_baseIsNative.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var isFunction = __webpack_require__(/*! ./isFunction */ \"./node_modules/lodash/isFunction.js\"),\n isMasked = __webpack_require__(/*! ./_isMasked */ \"./node_modules/lodash/_isMasked.js\"),\n isObject = __webpack_require__(/*! ./isObject */ \"./node_modules/lodash/isObject.js\"),\n toSource = __webpack_require__(/*! ./_toSource */ \"./node_modules/lodash/_toSource.js\");\n\n/**\n * Used to match `RegExp`\n * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n */\nvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n/** Used to detect host constructors (Safari). */\nvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n/** Used for built-in method references. */\nvar funcProto = Function.prototype,\n objectProto = Object.prototype;\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Used to detect if a method is native. */\nvar reIsNative = RegExp('^' +\n funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&')\n .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n);\n\n/**\n * The base implementation of `_.isNative` without bad shim checks.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a native function,\n * else `false`.\n */\nfunction baseIsNative(value) {\n if (!isObject(value) || isMasked(value)) {\n return false;\n }\n var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n return pattern.test(toSource(value));\n}\n\nmodule.exports = baseIsNative;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseIsNative.js?"); /***/ }), /***/ "./node_modules/lodash/_baseIsTypedArray.js": /*!**************************************************!*\ !*** ./node_modules/lodash/_baseIsTypedArray.js ***! \**************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ \"./node_modules/lodash/_baseGetTag.js\"),\n isLength = __webpack_require__(/*! ./isLength */ \"./node_modules/lodash/isLength.js\"),\n isObjectLike = __webpack_require__(/*! ./isObjectLike */ \"./node_modules/lodash/isObjectLike.js\");\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n errorTag = '[object Error]',\n funcTag = '[object Function]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n objectTag = '[object Object]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n weakMapTag = '[object WeakMap]';\n\nvar arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n/** Used to identify `toStringTag` values of typed arrays. */\nvar typedArrayTags = {};\ntypedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\ntypedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\ntypedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\ntypedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\ntypedArrayTags[uint32Tag] = true;\ntypedArrayTags[argsTag] = typedArrayTags[arrayTag] =\ntypedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\ntypedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\ntypedArrayTags[errorTag] = typedArrayTags[funcTag] =\ntypedArrayTags[mapTag] = typedArrayTags[numberTag] =\ntypedArrayTags[objectTag] = typedArrayTags[regexpTag] =\ntypedArrayTags[setTag] = typedArrayTags[stringTag] =\ntypedArrayTags[weakMapTag] = false;\n\n/**\n * The base implementation of `_.isTypedArray` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n */\nfunction baseIsTypedArray(value) {\n return isObjectLike(value) &&\n isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n}\n\nmodule.exports = baseIsTypedArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseIsTypedArray.js?"); /***/ }), /***/ "./node_modules/lodash/_baseKeys.js": /*!******************************************!*\ !*** ./node_modules/lodash/_baseKeys.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var isPrototype = __webpack_require__(/*! ./_isPrototype */ \"./node_modules/lodash/_isPrototype.js\"),\n nativeKeys = __webpack_require__(/*! ./_nativeKeys */ \"./node_modules/lodash/_nativeKeys.js\");\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction baseKeys(object) {\n if (!isPrototype(object)) {\n return nativeKeys(object);\n }\n var result = [];\n for (var key in Object(object)) {\n if (hasOwnProperty.call(object, key) && key != 'constructor') {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = baseKeys;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseKeys.js?"); /***/ }), /***/ "./node_modules/lodash/_baseTimes.js": /*!*******************************************!*\ !*** ./node_modules/lodash/_baseTimes.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * The base implementation of `_.times` without support for iteratee shorthands\n * or max array length checks.\n *\n * @private\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the array of results.\n */\nfunction baseTimes(n, iteratee) {\n var index = -1,\n result = Array(n);\n\n while (++index < n) {\n result[index] = iteratee(index);\n }\n return result;\n}\n\nmodule.exports = baseTimes;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseTimes.js?"); /***/ }), /***/ "./node_modules/lodash/_baseToString.js": /*!**********************************************!*\ !*** ./node_modules/lodash/_baseToString.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var Symbol = __webpack_require__(/*! ./_Symbol */ \"./node_modules/lodash/_Symbol.js\"),\n arrayMap = __webpack_require__(/*! ./_arrayMap */ \"./node_modules/lodash/_arrayMap.js\"),\n isArray = __webpack_require__(/*! ./isArray */ \"./node_modules/lodash/isArray.js\"),\n isSymbol = __webpack_require__(/*! ./isSymbol */ \"./node_modules/lodash/isSymbol.js\");\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/** Used to convert symbols to primitives and strings. */\nvar symbolProto = Symbol ? Symbol.prototype : undefined,\n symbolToString = symbolProto ? symbolProto.toString : undefined;\n\n/**\n * The base implementation of `_.toString` which doesn't convert nullish\n * values to empty strings.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {string} Returns the string.\n */\nfunction baseToString(value) {\n // Exit early for strings to avoid a performance hit in some environments.\n if (typeof value == 'string') {\n return value;\n }\n if (isArray(value)) {\n // Recursively convert values (susceptible to call stack limits).\n return arrayMap(value, baseToString) + '';\n }\n if (isSymbol(value)) {\n return symbolToString ? symbolToString.call(value) : '';\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\nmodule.exports = baseToString;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseToString.js?"); /***/ }), /***/ "./node_modules/lodash/_baseUnary.js": /*!*******************************************!*\ !*** ./node_modules/lodash/_baseUnary.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * The base implementation of `_.unary` without support for storing metadata.\n *\n * @private\n * @param {Function} func The function to cap arguments for.\n * @returns {Function} Returns the new capped function.\n */\nfunction baseUnary(func) {\n return function(value) {\n return func(value);\n };\n}\n\nmodule.exports = baseUnary;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_baseUnary.js?"); /***/ }), /***/ "./node_modules/lodash/_cacheHas.js": /*!******************************************!*\ !*** ./node_modules/lodash/_cacheHas.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Checks if a `cache` value for `key` exists.\n *\n * @private\n * @param {Object} cache The cache to query.\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction cacheHas(cache, key) {\n return cache.has(key);\n}\n\nmodule.exports = cacheHas;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_cacheHas.js?"); /***/ }), /***/ "./node_modules/lodash/_castPath.js": /*!******************************************!*\ !*** ./node_modules/lodash/_castPath.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var isArray = __webpack_require__(/*! ./isArray */ \"./node_modules/lodash/isArray.js\"),\n isKey = __webpack_require__(/*! ./_isKey */ \"./node_modules/lodash/_isKey.js\"),\n stringToPath = __webpack_require__(/*! ./_stringToPath */ \"./node_modules/lodash/_stringToPath.js\"),\n toString = __webpack_require__(/*! ./toString */ \"./node_modules/lodash/toString.js\");\n\n/**\n * Casts `value` to a path array if it's not one.\n *\n * @private\n * @param {*} value The value to inspect.\n * @param {Object} [object] The object to query keys on.\n * @returns {Array} Returns the cast property path array.\n */\nfunction castPath(value, object) {\n if (isArray(value)) {\n return value;\n }\n return isKey(value, object) ? [value] : stringToPath(toString(value));\n}\n\nmodule.exports = castPath;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_castPath.js?"); /***/ }), /***/ "./node_modules/lodash/_coreJsData.js": /*!********************************************!*\ !*** ./node_modules/lodash/_coreJsData.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\");\n\n/** Used to detect overreaching core-js shims. */\nvar coreJsData = root['__core-js_shared__'];\n\nmodule.exports = coreJsData;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_coreJsData.js?"); /***/ }), /***/ "./node_modules/lodash/_equalArrays.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_equalArrays.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var SetCache = __webpack_require__(/*! ./_SetCache */ \"./node_modules/lodash/_SetCache.js\"),\n arraySome = __webpack_require__(/*! ./_arraySome */ \"./node_modules/lodash/_arraySome.js\"),\n cacheHas = __webpack_require__(/*! ./_cacheHas */ \"./node_modules/lodash/_cacheHas.js\");\n\n/** Used to compose bitmasks for value comparisons. */\nvar COMPARE_PARTIAL_FLAG = 1,\n COMPARE_UNORDERED_FLAG = 2;\n\n/**\n * A specialized version of `baseIsEqualDeep` for arrays with support for\n * partial deep comparisons.\n *\n * @private\n * @param {Array} array The array to compare.\n * @param {Array} other The other array to compare.\n * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n * @param {Function} customizer The function to customize comparisons.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Object} stack Tracks traversed `array` and `other` objects.\n * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.\n */\nfunction equalArrays(array, other, bitmask, customizer, equalFunc, stack) {\n var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n arrLength = array.length,\n othLength = other.length;\n\n if (arrLength != othLength && !(isPartial && othLength > arrLength)) {\n return false;\n }\n // Check that cyclic values are equal.\n var arrStacked = stack.get(array);\n var othStacked = stack.get(other);\n if (arrStacked && othStacked) {\n return arrStacked == other && othStacked == array;\n }\n var index = -1,\n result = true,\n seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined;\n\n stack.set(array, other);\n stack.set(other, array);\n\n // Ignore non-index properties.\n while (++index < arrLength) {\n var arrValue = array[index],\n othValue = other[index];\n\n if (customizer) {\n var compared = isPartial\n ? customizer(othValue, arrValue, index, other, array, stack)\n : customizer(arrValue, othValue, index, array, other, stack);\n }\n if (compared !== undefined) {\n if (compared) {\n continue;\n }\n result = false;\n break;\n }\n // Recursively compare arrays (susceptible to call stack limits).\n if (seen) {\n if (!arraySome(other, function(othValue, othIndex) {\n if (!cacheHas(seen, othIndex) &&\n (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {\n return seen.push(othIndex);\n }\n })) {\n result = false;\n break;\n }\n } else if (!(\n arrValue === othValue ||\n equalFunc(arrValue, othValue, bitmask, customizer, stack)\n )) {\n result = false;\n break;\n }\n }\n stack['delete'](array);\n stack['delete'](other);\n return result;\n}\n\nmodule.exports = equalArrays;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_equalArrays.js?"); /***/ }), /***/ "./node_modules/lodash/_equalByTag.js": /*!********************************************!*\ !*** ./node_modules/lodash/_equalByTag.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var Symbol = __webpack_require__(/*! ./_Symbol */ \"./node_modules/lodash/_Symbol.js\"),\n Uint8Array = __webpack_require__(/*! ./_Uint8Array */ \"./node_modules/lodash/_Uint8Array.js\"),\n eq = __webpack_require__(/*! ./eq */ \"./node_modules/lodash/eq.js\"),\n equalArrays = __webpack_require__(/*! ./_equalArrays */ \"./node_modules/lodash/_equalArrays.js\"),\n mapToArray = __webpack_require__(/*! ./_mapToArray */ \"./node_modules/lodash/_mapToArray.js\"),\n setToArray = __webpack_require__(/*! ./_setToArray */ \"./node_modules/lodash/_setToArray.js\");\n\n/** Used to compose bitmasks for value comparisons. */\nvar COMPARE_PARTIAL_FLAG = 1,\n COMPARE_UNORDERED_FLAG = 2;\n\n/** `Object#toString` result references. */\nvar boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n errorTag = '[object Error]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n symbolTag = '[object Symbol]';\n\nvar arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]';\n\n/** Used to convert symbols to primitives and strings. */\nvar symbolProto = Symbol ? Symbol.prototype : undefined,\n symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;\n\n/**\n * A specialized version of `baseIsEqualDeep` for comparing objects of\n * the same `toStringTag`.\n *\n * **Note:** This function only supports comparing values with tags of\n * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {string} tag The `toStringTag` of the objects to compare.\n * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n * @param {Function} customizer The function to customize comparisons.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Object} stack Tracks traversed `object` and `other` objects.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\nfunction equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {\n switch (tag) {\n case dataViewTag:\n if ((object.byteLength != other.byteLength) ||\n (object.byteOffset != other.byteOffset)) {\n return false;\n }\n object = object.buffer;\n other = other.buffer;\n\n case arrayBufferTag:\n if ((object.byteLength != other.byteLength) ||\n !equalFunc(new Uint8Array(object), new Uint8Array(other))) {\n return false;\n }\n return true;\n\n case boolTag:\n case dateTag:\n case numberTag:\n // Coerce booleans to `1` or `0` and dates to milliseconds.\n // Invalid dates are coerced to `NaN`.\n return eq(+object, +other);\n\n case errorTag:\n return object.name == other.name && object.message == other.message;\n\n case regexpTag:\n case stringTag:\n // Coerce regexes to strings and treat strings, primitives and objects,\n // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring\n // for more details.\n return object == (other + '');\n\n case mapTag:\n var convert = mapToArray;\n\n case setTag:\n var isPartial = bitmask & COMPARE_PARTIAL_FLAG;\n convert || (convert = setToArray);\n\n if (object.size != other.size && !isPartial) {\n return false;\n }\n // Assume cyclic values are equal.\n var stacked = stack.get(object);\n if (stacked) {\n return stacked == other;\n }\n bitmask |= COMPARE_UNORDERED_FLAG;\n\n // Recursively compare objects (susceptible to call stack limits).\n stack.set(object, other);\n var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);\n stack['delete'](object);\n return result;\n\n case symbolTag:\n if (symbolValueOf) {\n return symbolValueOf.call(object) == symbolValueOf.call(other);\n }\n }\n return false;\n}\n\nmodule.exports = equalByTag;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_equalByTag.js?"); /***/ }), /***/ "./node_modules/lodash/_equalObjects.js": /*!**********************************************!*\ !*** ./node_modules/lodash/_equalObjects.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getAllKeys = __webpack_require__(/*! ./_getAllKeys */ \"./node_modules/lodash/_getAllKeys.js\");\n\n/** Used to compose bitmasks for value comparisons. */\nvar COMPARE_PARTIAL_FLAG = 1;\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * A specialized version of `baseIsEqualDeep` for objects with support for\n * partial deep comparisons.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n * @param {Function} customizer The function to customize comparisons.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Object} stack Tracks traversed `object` and `other` objects.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\nfunction equalObjects(object, other, bitmask, customizer, equalFunc, stack) {\n var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n objProps = getAllKeys(object),\n objLength = objProps.length,\n othProps = getAllKeys(other),\n othLength = othProps.length;\n\n if (objLength != othLength && !isPartial) {\n return false;\n }\n var index = objLength;\n while (index--) {\n var key = objProps[index];\n if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {\n return false;\n }\n }\n // Check that cyclic values are equal.\n var objStacked = stack.get(object);\n var othStacked = stack.get(other);\n if (objStacked && othStacked) {\n return objStacked == other && othStacked == object;\n }\n var result = true;\n stack.set(object, other);\n stack.set(other, object);\n\n var skipCtor = isPartial;\n while (++index < objLength) {\n key = objProps[index];\n var objValue = object[key],\n othValue = other[key];\n\n if (customizer) {\n var compared = isPartial\n ? customizer(othValue, objValue, key, other, object, stack)\n : customizer(objValue, othValue, key, object, other, stack);\n }\n // Recursively compare objects (susceptible to call stack limits).\n if (!(compared === undefined\n ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack))\n : compared\n )) {\n result = false;\n break;\n }\n skipCtor || (skipCtor = key == 'constructor');\n }\n if (result && !skipCtor) {\n var objCtor = object.constructor,\n othCtor = other.constructor;\n\n // Non `Object` object instances with different constructors are not equal.\n if (objCtor != othCtor &&\n ('constructor' in object && 'constructor' in other) &&\n !(typeof objCtor == 'function' && objCtor instanceof objCtor &&\n typeof othCtor == 'function' && othCtor instanceof othCtor)) {\n result = false;\n }\n }\n stack['delete'](object);\n stack['delete'](other);\n return result;\n}\n\nmodule.exports = equalObjects;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_equalObjects.js?"); /***/ }), /***/ "./node_modules/lodash/_freeGlobal.js": /*!********************************************!*\ !*** ./node_modules/lodash/_freeGlobal.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("/* WEBPACK VAR INJECTION */(function(global) {/** Detect free variable `global` from Node.js. */\nvar freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\n\nmodule.exports = freeGlobal;\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/lodash/_freeGlobal.js?"); /***/ }), /***/ "./node_modules/lodash/_getAllKeys.js": /*!********************************************!*\ !*** ./node_modules/lodash/_getAllKeys.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */ \"./node_modules/lodash/_baseGetAllKeys.js\"),\n getSymbols = __webpack_require__(/*! ./_getSymbols */ \"./node_modules/lodash/_getSymbols.js\"),\n keys = __webpack_require__(/*! ./keys */ \"./node_modules/lodash/keys.js\");\n\n/**\n * Creates an array of own enumerable property names and symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names and symbols.\n */\nfunction getAllKeys(object) {\n return baseGetAllKeys(object, keys, getSymbols);\n}\n\nmodule.exports = getAllKeys;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_getAllKeys.js?"); /***/ }), /***/ "./node_modules/lodash/_getMapData.js": /*!********************************************!*\ !*** ./node_modules/lodash/_getMapData.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var isKeyable = __webpack_require__(/*! ./_isKeyable */ \"./node_modules/lodash/_isKeyable.js\");\n\n/**\n * Gets the data for `map`.\n *\n * @private\n * @param {Object} map The map to query.\n * @param {string} key The reference key.\n * @returns {*} Returns the map data.\n */\nfunction getMapData(map, key) {\n var data = map.__data__;\n return isKeyable(key)\n ? data[typeof key == 'string' ? 'string' : 'hash']\n : data.map;\n}\n\nmodule.exports = getMapData;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_getMapData.js?"); /***/ }), /***/ "./node_modules/lodash/_getNative.js": /*!*******************************************!*\ !*** ./node_modules/lodash/_getNative.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseIsNative = __webpack_require__(/*! ./_baseIsNative */ \"./node_modules/lodash/_baseIsNative.js\"),\n getValue = __webpack_require__(/*! ./_getValue */ \"./node_modules/lodash/_getValue.js\");\n\n/**\n * Gets the native function at `key` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the method to get.\n * @returns {*} Returns the function if it's native, else `undefined`.\n */\nfunction getNative(object, key) {\n var value = getValue(object, key);\n return baseIsNative(value) ? value : undefined;\n}\n\nmodule.exports = getNative;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_getNative.js?"); /***/ }), /***/ "./node_modules/lodash/_getRawTag.js": /*!*******************************************!*\ !*** ./node_modules/lodash/_getRawTag.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var Symbol = __webpack_require__(/*! ./_Symbol */ \"./node_modules/lodash/_Symbol.js\");\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/** Built-in value references. */\nvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n/**\n * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the raw `toStringTag`.\n */\nfunction getRawTag(value) {\n var isOwn = hasOwnProperty.call(value, symToStringTag),\n tag = value[symToStringTag];\n\n try {\n value[symToStringTag] = undefined;\n var unmasked = true;\n } catch (e) {}\n\n var result = nativeObjectToString.call(value);\n if (unmasked) {\n if (isOwn) {\n value[symToStringTag] = tag;\n } else {\n delete value[symToStringTag];\n }\n }\n return result;\n}\n\nmodule.exports = getRawTag;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_getRawTag.js?"); /***/ }), /***/ "./node_modules/lodash/_getSymbols.js": /*!********************************************!*\ !*** ./node_modules/lodash/_getSymbols.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var arrayFilter = __webpack_require__(/*! ./_arrayFilter */ \"./node_modules/lodash/_arrayFilter.js\"),\n stubArray = __webpack_require__(/*! ./stubArray */ \"./node_modules/lodash/stubArray.js\");\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Built-in value references. */\nvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n/**\n * Creates an array of the own enumerable symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of symbols.\n */\nvar getSymbols = !nativeGetSymbols ? stubArray : function(object) {\n if (object == null) {\n return [];\n }\n object = Object(object);\n return arrayFilter(nativeGetSymbols(object), function(symbol) {\n return propertyIsEnumerable.call(object, symbol);\n });\n};\n\nmodule.exports = getSymbols;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_getSymbols.js?"); /***/ }), /***/ "./node_modules/lodash/_getTag.js": /*!****************************************!*\ !*** ./node_modules/lodash/_getTag.js ***! \****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var DataView = __webpack_require__(/*! ./_DataView */ \"./node_modules/lodash/_DataView.js\"),\n Map = __webpack_require__(/*! ./_Map */ \"./node_modules/lodash/_Map.js\"),\n Promise = __webpack_require__(/*! ./_Promise */ \"./node_modules/lodash/_Promise.js\"),\n Set = __webpack_require__(/*! ./_Set */ \"./node_modules/lodash/_Set.js\"),\n WeakMap = __webpack_require__(/*! ./_WeakMap */ \"./node_modules/lodash/_WeakMap.js\"),\n baseGetTag = __webpack_require__(/*! ./_baseGetTag */ \"./node_modules/lodash/_baseGetTag.js\"),\n toSource = __webpack_require__(/*! ./_toSource */ \"./node_modules/lodash/_toSource.js\");\n\n/** `Object#toString` result references. */\nvar mapTag = '[object Map]',\n objectTag = '[object Object]',\n promiseTag = '[object Promise]',\n setTag = '[object Set]',\n weakMapTag = '[object WeakMap]';\n\nvar dataViewTag = '[object DataView]';\n\n/** Used to detect maps, sets, and weakmaps. */\nvar dataViewCtorString = toSource(DataView),\n mapCtorString = toSource(Map),\n promiseCtorString = toSource(Promise),\n setCtorString = toSource(Set),\n weakMapCtorString = toSource(WeakMap);\n\n/**\n * Gets the `toStringTag` of `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nvar getTag = baseGetTag;\n\n// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\nif ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||\n (Map && getTag(new Map) != mapTag) ||\n (Promise && getTag(Promise.resolve()) != promiseTag) ||\n (Set && getTag(new Set) != setTag) ||\n (WeakMap && getTag(new WeakMap) != weakMapTag)) {\n getTag = function(value) {\n var result = baseGetTag(value),\n Ctor = result == objectTag ? value.constructor : undefined,\n ctorString = Ctor ? toSource(Ctor) : '';\n\n if (ctorString) {\n switch (ctorString) {\n case dataViewCtorString: return dataViewTag;\n case mapCtorString: return mapTag;\n case promiseCtorString: return promiseTag;\n case setCtorString: return setTag;\n case weakMapCtorString: return weakMapTag;\n }\n }\n return result;\n };\n}\n\nmodule.exports = getTag;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_getTag.js?"); /***/ }), /***/ "./node_modules/lodash/_getValue.js": /*!******************************************!*\ !*** ./node_modules/lodash/_getValue.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Gets the value at `key` of `object`.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction getValue(object, key) {\n return object == null ? undefined : object[key];\n}\n\nmodule.exports = getValue;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_getValue.js?"); /***/ }), /***/ "./node_modules/lodash/_hashClear.js": /*!*******************************************!*\ !*** ./node_modules/lodash/_hashClear.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var nativeCreate = __webpack_require__(/*! ./_nativeCreate */ \"./node_modules/lodash/_nativeCreate.js\");\n\n/**\n * Removes all key-value entries from the hash.\n *\n * @private\n * @name clear\n * @memberOf Hash\n */\nfunction hashClear() {\n this.__data__ = nativeCreate ? nativeCreate(null) : {};\n this.size = 0;\n}\n\nmodule.exports = hashClear;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_hashClear.js?"); /***/ }), /***/ "./node_modules/lodash/_hashDelete.js": /*!********************************************!*\ !*** ./node_modules/lodash/_hashDelete.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Removes `key` and its value from the hash.\n *\n * @private\n * @name delete\n * @memberOf Hash\n * @param {Object} hash The hash to modify.\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction hashDelete(key) {\n var result = this.has(key) && delete this.__data__[key];\n this.size -= result ? 1 : 0;\n return result;\n}\n\nmodule.exports = hashDelete;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_hashDelete.js?"); /***/ }), /***/ "./node_modules/lodash/_hashGet.js": /*!*****************************************!*\ !*** ./node_modules/lodash/_hashGet.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var nativeCreate = __webpack_require__(/*! ./_nativeCreate */ \"./node_modules/lodash/_nativeCreate.js\");\n\n/** Used to stand-in for `undefined` hash values. */\nvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Gets the hash value for `key`.\n *\n * @private\n * @name get\n * @memberOf Hash\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction hashGet(key) {\n var data = this.__data__;\n if (nativeCreate) {\n var result = data[key];\n return result === HASH_UNDEFINED ? undefined : result;\n }\n return hasOwnProperty.call(data, key) ? data[key] : undefined;\n}\n\nmodule.exports = hashGet;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_hashGet.js?"); /***/ }), /***/ "./node_modules/lodash/_hashHas.js": /*!*****************************************!*\ !*** ./node_modules/lodash/_hashHas.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var nativeCreate = __webpack_require__(/*! ./_nativeCreate */ \"./node_modules/lodash/_nativeCreate.js\");\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Checks if a hash value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Hash\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction hashHas(key) {\n var data = this.__data__;\n return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\n}\n\nmodule.exports = hashHas;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_hashHas.js?"); /***/ }), /***/ "./node_modules/lodash/_hashSet.js": /*!*****************************************!*\ !*** ./node_modules/lodash/_hashSet.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var nativeCreate = __webpack_require__(/*! ./_nativeCreate */ \"./node_modules/lodash/_nativeCreate.js\");\n\n/** Used to stand-in for `undefined` hash values. */\nvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n/**\n * Sets the hash `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Hash\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the hash instance.\n */\nfunction hashSet(key, value) {\n var data = this.__data__;\n this.size += this.has(key) ? 0 : 1;\n data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\n return this;\n}\n\nmodule.exports = hashSet;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_hashSet.js?"); /***/ }), /***/ "./node_modules/lodash/_isIndex.js": /*!*****************************************!*\ !*** ./node_modules/lodash/_isIndex.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/** Used as references for various `Number` constants. */\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/** Used to detect unsigned integer values. */\nvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n/**\n * Checks if `value` is a valid array-like index.\n *\n * @private\n * @param {*} value The value to check.\n * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n */\nfunction isIndex(value, length) {\n var type = typeof value;\n length = length == null ? MAX_SAFE_INTEGER : length;\n\n return !!length &&\n (type == 'number' ||\n (type != 'symbol' && reIsUint.test(value))) &&\n (value > -1 && value % 1 == 0 && value < length);\n}\n\nmodule.exports = isIndex;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_isIndex.js?"); /***/ }), /***/ "./node_modules/lodash/_isKey.js": /*!***************************************!*\ !*** ./node_modules/lodash/_isKey.js ***! \***************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var isArray = __webpack_require__(/*! ./isArray */ \"./node_modules/lodash/isArray.js\"),\n isSymbol = __webpack_require__(/*! ./isSymbol */ \"./node_modules/lodash/isSymbol.js\");\n\n/** Used to match property names within property paths. */\nvar reIsDeepProp = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,\n reIsPlainProp = /^\\w*$/;\n\n/**\n * Checks if `value` is a property name and not a property path.\n *\n * @private\n * @param {*} value The value to check.\n * @param {Object} [object] The object to query keys on.\n * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\n */\nfunction isKey(value, object) {\n if (isArray(value)) {\n return false;\n }\n var type = typeof value;\n if (type == 'number' || type == 'symbol' || type == 'boolean' ||\n value == null || isSymbol(value)) {\n return true;\n }\n return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||\n (object != null && value in Object(object));\n}\n\nmodule.exports = isKey;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_isKey.js?"); /***/ }), /***/ "./node_modules/lodash/_isKeyable.js": /*!*******************************************!*\ !*** ./node_modules/lodash/_isKeyable.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Checks if `value` is suitable for use as unique object key.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n */\nfunction isKeyable(value) {\n var type = typeof value;\n return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\n ? (value !== '__proto__')\n : (value === null);\n}\n\nmodule.exports = isKeyable;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_isKeyable.js?"); /***/ }), /***/ "./node_modules/lodash/_isMasked.js": /*!******************************************!*\ !*** ./node_modules/lodash/_isMasked.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var coreJsData = __webpack_require__(/*! ./_coreJsData */ \"./node_modules/lodash/_coreJsData.js\");\n\n/** Used to detect methods masquerading as native. */\nvar maskSrcKey = (function() {\n var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n return uid ? ('Symbol(src)_1.' + uid) : '';\n}());\n\n/**\n * Checks if `func` has its source masked.\n *\n * @private\n * @param {Function} func The function to check.\n * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n */\nfunction isMasked(func) {\n return !!maskSrcKey && (maskSrcKey in func);\n}\n\nmodule.exports = isMasked;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_isMasked.js?"); /***/ }), /***/ "./node_modules/lodash/_isPrototype.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_isPrototype.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Checks if `value` is likely a prototype object.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n */\nfunction isPrototype(value) {\n var Ctor = value && value.constructor,\n proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\n\n return value === proto;\n}\n\nmodule.exports = isPrototype;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_isPrototype.js?"); /***/ }), /***/ "./node_modules/lodash/_listCacheClear.js": /*!************************************************!*\ !*** ./node_modules/lodash/_listCacheClear.js ***! \************************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Removes all key-value entries from the list cache.\n *\n * @private\n * @name clear\n * @memberOf ListCache\n */\nfunction listCacheClear() {\n this.__data__ = [];\n this.size = 0;\n}\n\nmodule.exports = listCacheClear;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_listCacheClear.js?"); /***/ }), /***/ "./node_modules/lodash/_listCacheDelete.js": /*!*************************************************!*\ !*** ./node_modules/lodash/_listCacheDelete.js ***! \*************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */ \"./node_modules/lodash/_assocIndexOf.js\");\n\n/** Used for built-in method references. */\nvar arrayProto = Array.prototype;\n\n/** Built-in value references. */\nvar splice = arrayProto.splice;\n\n/**\n * Removes `key` and its value from the list cache.\n *\n * @private\n * @name delete\n * @memberOf ListCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction listCacheDelete(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n return false;\n }\n var lastIndex = data.length - 1;\n if (index == lastIndex) {\n data.pop();\n } else {\n splice.call(data, index, 1);\n }\n --this.size;\n return true;\n}\n\nmodule.exports = listCacheDelete;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_listCacheDelete.js?"); /***/ }), /***/ "./node_modules/lodash/_listCacheGet.js": /*!**********************************************!*\ !*** ./node_modules/lodash/_listCacheGet.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */ \"./node_modules/lodash/_assocIndexOf.js\");\n\n/**\n * Gets the list cache value for `key`.\n *\n * @private\n * @name get\n * @memberOf ListCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction listCacheGet(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n return index < 0 ? undefined : data[index][1];\n}\n\nmodule.exports = listCacheGet;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_listCacheGet.js?"); /***/ }), /***/ "./node_modules/lodash/_listCacheHas.js": /*!**********************************************!*\ !*** ./node_modules/lodash/_listCacheHas.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */ \"./node_modules/lodash/_assocIndexOf.js\");\n\n/**\n * Checks if a list cache value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf ListCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction listCacheHas(key) {\n return assocIndexOf(this.__data__, key) > -1;\n}\n\nmodule.exports = listCacheHas;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_listCacheHas.js?"); /***/ }), /***/ "./node_modules/lodash/_listCacheSet.js": /*!**********************************************!*\ !*** ./node_modules/lodash/_listCacheSet.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */ \"./node_modules/lodash/_assocIndexOf.js\");\n\n/**\n * Sets the list cache `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf ListCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the list cache instance.\n */\nfunction listCacheSet(key, value) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n ++this.size;\n data.push([key, value]);\n } else {\n data[index][1] = value;\n }\n return this;\n}\n\nmodule.exports = listCacheSet;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_listCacheSet.js?"); /***/ }), /***/ "./node_modules/lodash/_mapCacheClear.js": /*!***********************************************!*\ !*** ./node_modules/lodash/_mapCacheClear.js ***! \***********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var Hash = __webpack_require__(/*! ./_Hash */ \"./node_modules/lodash/_Hash.js\"),\n ListCache = __webpack_require__(/*! ./_ListCache */ \"./node_modules/lodash/_ListCache.js\"),\n Map = __webpack_require__(/*! ./_Map */ \"./node_modules/lodash/_Map.js\");\n\n/**\n * Removes all key-value entries from the map.\n *\n * @private\n * @name clear\n * @memberOf MapCache\n */\nfunction mapCacheClear() {\n this.size = 0;\n this.__data__ = {\n 'hash': new Hash,\n 'map': new (Map || ListCache),\n 'string': new Hash\n };\n}\n\nmodule.exports = mapCacheClear;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_mapCacheClear.js?"); /***/ }), /***/ "./node_modules/lodash/_mapCacheDelete.js": /*!************************************************!*\ !*** ./node_modules/lodash/_mapCacheDelete.js ***! \************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getMapData = __webpack_require__(/*! ./_getMapData */ \"./node_modules/lodash/_getMapData.js\");\n\n/**\n * Removes `key` and its value from the map.\n *\n * @private\n * @name delete\n * @memberOf MapCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction mapCacheDelete(key) {\n var result = getMapData(this, key)['delete'](key);\n this.size -= result ? 1 : 0;\n return result;\n}\n\nmodule.exports = mapCacheDelete;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_mapCacheDelete.js?"); /***/ }), /***/ "./node_modules/lodash/_mapCacheGet.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_mapCacheGet.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getMapData = __webpack_require__(/*! ./_getMapData */ \"./node_modules/lodash/_getMapData.js\");\n\n/**\n * Gets the map value for `key`.\n *\n * @private\n * @name get\n * @memberOf MapCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction mapCacheGet(key) {\n return getMapData(this, key).get(key);\n}\n\nmodule.exports = mapCacheGet;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_mapCacheGet.js?"); /***/ }), /***/ "./node_modules/lodash/_mapCacheHas.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_mapCacheHas.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getMapData = __webpack_require__(/*! ./_getMapData */ \"./node_modules/lodash/_getMapData.js\");\n\n/**\n * Checks if a map value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf MapCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction mapCacheHas(key) {\n return getMapData(this, key).has(key);\n}\n\nmodule.exports = mapCacheHas;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_mapCacheHas.js?"); /***/ }), /***/ "./node_modules/lodash/_mapCacheSet.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_mapCacheSet.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getMapData = __webpack_require__(/*! ./_getMapData */ \"./node_modules/lodash/_getMapData.js\");\n\n/**\n * Sets the map `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf MapCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the map cache instance.\n */\nfunction mapCacheSet(key, value) {\n var data = getMapData(this, key),\n size = data.size;\n\n data.set(key, value);\n this.size += data.size == size ? 0 : 1;\n return this;\n}\n\nmodule.exports = mapCacheSet;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_mapCacheSet.js?"); /***/ }), /***/ "./node_modules/lodash/_mapToArray.js": /*!********************************************!*\ !*** ./node_modules/lodash/_mapToArray.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Converts `map` to its key-value pairs.\n *\n * @private\n * @param {Object} map The map to convert.\n * @returns {Array} Returns the key-value pairs.\n */\nfunction mapToArray(map) {\n var index = -1,\n result = Array(map.size);\n\n map.forEach(function(value, key) {\n result[++index] = [key, value];\n });\n return result;\n}\n\nmodule.exports = mapToArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_mapToArray.js?"); /***/ }), /***/ "./node_modules/lodash/_memoizeCapped.js": /*!***********************************************!*\ !*** ./node_modules/lodash/_memoizeCapped.js ***! \***********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var memoize = __webpack_require__(/*! ./memoize */ \"./node_modules/lodash/memoize.js\");\n\n/** Used as the maximum memoize cache size. */\nvar MAX_MEMOIZE_SIZE = 500;\n\n/**\n * A specialized version of `_.memoize` which clears the memoized function's\n * cache when it exceeds `MAX_MEMOIZE_SIZE`.\n *\n * @private\n * @param {Function} func The function to have its output memoized.\n * @returns {Function} Returns the new memoized function.\n */\nfunction memoizeCapped(func) {\n var result = memoize(func, function(key) {\n if (cache.size === MAX_MEMOIZE_SIZE) {\n cache.clear();\n }\n return key;\n });\n\n var cache = result.cache;\n return result;\n}\n\nmodule.exports = memoizeCapped;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_memoizeCapped.js?"); /***/ }), /***/ "./node_modules/lodash/_nativeCreate.js": /*!**********************************************!*\ !*** ./node_modules/lodash/_nativeCreate.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var getNative = __webpack_require__(/*! ./_getNative */ \"./node_modules/lodash/_getNative.js\");\n\n/* Built-in method references that are verified to be native. */\nvar nativeCreate = getNative(Object, 'create');\n\nmodule.exports = nativeCreate;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_nativeCreate.js?"); /***/ }), /***/ "./node_modules/lodash/_nativeKeys.js": /*!********************************************!*\ !*** ./node_modules/lodash/_nativeKeys.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var overArg = __webpack_require__(/*! ./_overArg */ \"./node_modules/lodash/_overArg.js\");\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeKeys = overArg(Object.keys, Object);\n\nmodule.exports = nativeKeys;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_nativeKeys.js?"); /***/ }), /***/ "./node_modules/lodash/_nodeUtil.js": /*!******************************************!*\ !*** ./node_modules/lodash/_nodeUtil.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("/* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(/*! ./_freeGlobal */ \"./node_modules/lodash/_freeGlobal.js\");\n\n/** Detect free variable `exports`. */\nvar freeExports = true && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Detect free variable `process` from Node.js. */\nvar freeProcess = moduleExports && freeGlobal.process;\n\n/** Used to access faster Node.js helpers. */\nvar nodeUtil = (function() {\n try {\n // Use `util.types` for Node.js 10+.\n var types = freeModule && freeModule.require && freeModule.require('util').types;\n\n if (types) {\n return types;\n }\n\n // Legacy `process.binding('util')` for Node.js < 10.\n return freeProcess && freeProcess.binding && freeProcess.binding('util');\n } catch (e) {}\n}());\n\nmodule.exports = nodeUtil;\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../webpack/buildin/module.js */ \"./node_modules/webpack/buildin/module.js\")(module)))\n\n//# sourceURL=webpack:///./node_modules/lodash/_nodeUtil.js?"); /***/ }), /***/ "./node_modules/lodash/_objectToString.js": /*!************************************************!*\ !*** ./node_modules/lodash/_objectToString.js ***! \************************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/**\n * Converts `value` to a string using `Object.prototype.toString`.\n *\n * @private\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n */\nfunction objectToString(value) {\n return nativeObjectToString.call(value);\n}\n\nmodule.exports = objectToString;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_objectToString.js?"); /***/ }), /***/ "./node_modules/lodash/_overArg.js": /*!*****************************************!*\ !*** ./node_modules/lodash/_overArg.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Creates a unary function that invokes `func` with its argument transformed.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {Function} transform The argument transform.\n * @returns {Function} Returns the new function.\n */\nfunction overArg(func, transform) {\n return function(arg) {\n return func(transform(arg));\n };\n}\n\nmodule.exports = overArg;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_overArg.js?"); /***/ }), /***/ "./node_modules/lodash/_root.js": /*!**************************************!*\ !*** ./node_modules/lodash/_root.js ***! \**************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var freeGlobal = __webpack_require__(/*! ./_freeGlobal */ \"./node_modules/lodash/_freeGlobal.js\");\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\nmodule.exports = root;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_root.js?"); /***/ }), /***/ "./node_modules/lodash/_setCacheAdd.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_setCacheAdd.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/** Used to stand-in for `undefined` hash values. */\nvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n/**\n * Adds `value` to the array cache.\n *\n * @private\n * @name add\n * @memberOf SetCache\n * @alias push\n * @param {*} value The value to cache.\n * @returns {Object} Returns the cache instance.\n */\nfunction setCacheAdd(value) {\n this.__data__.set(value, HASH_UNDEFINED);\n return this;\n}\n\nmodule.exports = setCacheAdd;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_setCacheAdd.js?"); /***/ }), /***/ "./node_modules/lodash/_setCacheHas.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_setCacheHas.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Checks if `value` is in the array cache.\n *\n * @private\n * @name has\n * @memberOf SetCache\n * @param {*} value The value to search for.\n * @returns {number} Returns `true` if `value` is found, else `false`.\n */\nfunction setCacheHas(value) {\n return this.__data__.has(value);\n}\n\nmodule.exports = setCacheHas;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_setCacheHas.js?"); /***/ }), /***/ "./node_modules/lodash/_setToArray.js": /*!********************************************!*\ !*** ./node_modules/lodash/_setToArray.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Converts `set` to an array of its values.\n *\n * @private\n * @param {Object} set The set to convert.\n * @returns {Array} Returns the values.\n */\nfunction setToArray(set) {\n var index = -1,\n result = Array(set.size);\n\n set.forEach(function(value) {\n result[++index] = value;\n });\n return result;\n}\n\nmodule.exports = setToArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_setToArray.js?"); /***/ }), /***/ "./node_modules/lodash/_stackClear.js": /*!********************************************!*\ !*** ./node_modules/lodash/_stackClear.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var ListCache = __webpack_require__(/*! ./_ListCache */ \"./node_modules/lodash/_ListCache.js\");\n\n/**\n * Removes all key-value entries from the stack.\n *\n * @private\n * @name clear\n * @memberOf Stack\n */\nfunction stackClear() {\n this.__data__ = new ListCache;\n this.size = 0;\n}\n\nmodule.exports = stackClear;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_stackClear.js?"); /***/ }), /***/ "./node_modules/lodash/_stackDelete.js": /*!*********************************************!*\ !*** ./node_modules/lodash/_stackDelete.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Removes `key` and its value from the stack.\n *\n * @private\n * @name delete\n * @memberOf Stack\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction stackDelete(key) {\n var data = this.__data__,\n result = data['delete'](key);\n\n this.size = data.size;\n return result;\n}\n\nmodule.exports = stackDelete;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_stackDelete.js?"); /***/ }), /***/ "./node_modules/lodash/_stackGet.js": /*!******************************************!*\ !*** ./node_modules/lodash/_stackGet.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Gets the stack value for `key`.\n *\n * @private\n * @name get\n * @memberOf Stack\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction stackGet(key) {\n return this.__data__.get(key);\n}\n\nmodule.exports = stackGet;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_stackGet.js?"); /***/ }), /***/ "./node_modules/lodash/_stackHas.js": /*!******************************************!*\ !*** ./node_modules/lodash/_stackHas.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Checks if a stack value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Stack\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction stackHas(key) {\n return this.__data__.has(key);\n}\n\nmodule.exports = stackHas;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_stackHas.js?"); /***/ }), /***/ "./node_modules/lodash/_stackSet.js": /*!******************************************!*\ !*** ./node_modules/lodash/_stackSet.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var ListCache = __webpack_require__(/*! ./_ListCache */ \"./node_modules/lodash/_ListCache.js\"),\n Map = __webpack_require__(/*! ./_Map */ \"./node_modules/lodash/_Map.js\"),\n MapCache = __webpack_require__(/*! ./_MapCache */ \"./node_modules/lodash/_MapCache.js\");\n\n/** Used as the size to enable large array optimizations. */\nvar LARGE_ARRAY_SIZE = 200;\n\n/**\n * Sets the stack `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Stack\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the stack cache instance.\n */\nfunction stackSet(key, value) {\n var data = this.__data__;\n if (data instanceof ListCache) {\n var pairs = data.__data__;\n if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\n pairs.push([key, value]);\n this.size = ++data.size;\n return this;\n }\n data = this.__data__ = new MapCache(pairs);\n }\n data.set(key, value);\n this.size = data.size;\n return this;\n}\n\nmodule.exports = stackSet;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_stackSet.js?"); /***/ }), /***/ "./node_modules/lodash/_stringToPath.js": /*!**********************************************!*\ !*** ./node_modules/lodash/_stringToPath.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var memoizeCapped = __webpack_require__(/*! ./_memoizeCapped */ \"./node_modules/lodash/_memoizeCapped.js\");\n\n/** Used to match property names within property paths. */\nvar rePropName = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g;\n\n/** Used to match backslashes in property paths. */\nvar reEscapeChar = /\\\\(\\\\)?/g;\n\n/**\n * Converts `string` to a property path array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the property path array.\n */\nvar stringToPath = memoizeCapped(function(string) {\n var result = [];\n if (string.charCodeAt(0) === 46 /* . */) {\n result.push('');\n }\n string.replace(rePropName, function(match, number, quote, subString) {\n result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match));\n });\n return result;\n});\n\nmodule.exports = stringToPath;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_stringToPath.js?"); /***/ }), /***/ "./node_modules/lodash/_toKey.js": /*!***************************************!*\ !*** ./node_modules/lodash/_toKey.js ***! \***************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var isSymbol = __webpack_require__(/*! ./isSymbol */ \"./node_modules/lodash/isSymbol.js\");\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/**\n * Converts `value` to a string key if it's not a string or symbol.\n *\n * @private\n * @param {*} value The value to inspect.\n * @returns {string|symbol} Returns the key.\n */\nfunction toKey(value) {\n if (typeof value == 'string' || isSymbol(value)) {\n return value;\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\nmodule.exports = toKey;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_toKey.js?"); /***/ }), /***/ "./node_modules/lodash/_toSource.js": /*!******************************************!*\ !*** ./node_modules/lodash/_toSource.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/** Used for built-in method references. */\nvar funcProto = Function.prototype;\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/**\n * Converts `func` to its source code.\n *\n * @private\n * @param {Function} func The function to convert.\n * @returns {string} Returns the source code.\n */\nfunction toSource(func) {\n if (func != null) {\n try {\n return funcToString.call(func);\n } catch (e) {}\n try {\n return (func + '');\n } catch (e) {}\n }\n return '';\n}\n\nmodule.exports = toSource;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/_toSource.js?"); /***/ }), /***/ "./node_modules/lodash/eq.js": /*!***********************************!*\ !*** ./node_modules/lodash/eq.js ***! \***********************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Performs a\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * comparison between two values to determine if they are equivalent.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.eq(object, object);\n * // => true\n *\n * _.eq(object, other);\n * // => false\n *\n * _.eq('a', 'a');\n * // => true\n *\n * _.eq('a', Object('a'));\n * // => false\n *\n * _.eq(NaN, NaN);\n * // => true\n */\nfunction eq(value, other) {\n return value === other || (value !== value && other !== other);\n}\n\nmodule.exports = eq;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/eq.js?"); /***/ }), /***/ "./node_modules/lodash/get.js": /*!************************************!*\ !*** ./node_modules/lodash/get.js ***! \************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseGet = __webpack_require__(/*! ./_baseGet */ \"./node_modules/lodash/_baseGet.js\");\n\n/**\n * Gets the value at `path` of `object`. If the resolved value is\n * `undefined`, the `defaultValue` is returned in its place.\n *\n * @static\n * @memberOf _\n * @since 3.7.0\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the property to get.\n * @param {*} [defaultValue] The value returned for `undefined` resolved values.\n * @returns {*} Returns the resolved value.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': 3 } }] };\n *\n * _.get(object, 'a[0].b.c');\n * // => 3\n *\n * _.get(object, ['a', '0', 'b', 'c']);\n * // => 3\n *\n * _.get(object, 'a.b.c', 'default');\n * // => 'default'\n */\nfunction get(object, path, defaultValue) {\n var result = object == null ? undefined : baseGet(object, path);\n return result === undefined ? defaultValue : result;\n}\n\nmodule.exports = get;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/get.js?"); /***/ }), /***/ "./node_modules/lodash/isArguments.js": /*!********************************************!*\ !*** ./node_modules/lodash/isArguments.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseIsArguments = __webpack_require__(/*! ./_baseIsArguments */ \"./node_modules/lodash/_baseIsArguments.js\"),\n isObjectLike = __webpack_require__(/*! ./isObjectLike */ \"./node_modules/lodash/isObjectLike.js\");\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Built-in value references. */\nvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n/**\n * Checks if `value` is likely an `arguments` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n * else `false`.\n * @example\n *\n * _.isArguments(function() { return arguments; }());\n * // => true\n *\n * _.isArguments([1, 2, 3]);\n * // => false\n */\nvar isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n !propertyIsEnumerable.call(value, 'callee');\n};\n\nmodule.exports = isArguments;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isArguments.js?"); /***/ }), /***/ "./node_modules/lodash/isArray.js": /*!****************************************!*\ !*** ./node_modules/lodash/isArray.js ***! \****************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(document.body.children);\n * // => false\n *\n * _.isArray('abc');\n * // => false\n *\n * _.isArray(_.noop);\n * // => false\n */\nvar isArray = Array.isArray;\n\nmodule.exports = isArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isArray.js?"); /***/ }), /***/ "./node_modules/lodash/isArrayLike.js": /*!********************************************!*\ !*** ./node_modules/lodash/isArrayLike.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var isFunction = __webpack_require__(/*! ./isFunction */ \"./node_modules/lodash/isFunction.js\"),\n isLength = __webpack_require__(/*! ./isLength */ \"./node_modules/lodash/isLength.js\");\n\n/**\n * Checks if `value` is array-like. A value is considered array-like if it's\n * not a function and has a `value.length` that's an integer greater than or\n * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n * @example\n *\n * _.isArrayLike([1, 2, 3]);\n * // => true\n *\n * _.isArrayLike(document.body.children);\n * // => true\n *\n * _.isArrayLike('abc');\n * // => true\n *\n * _.isArrayLike(_.noop);\n * // => false\n */\nfunction isArrayLike(value) {\n return value != null && isLength(value.length) && !isFunction(value);\n}\n\nmodule.exports = isArrayLike;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isArrayLike.js?"); /***/ }), /***/ "./node_modules/lodash/isBuffer.js": /*!*****************************************!*\ !*** ./node_modules/lodash/isBuffer.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("/* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(/*! ./_root */ \"./node_modules/lodash/_root.js\"),\n stubFalse = __webpack_require__(/*! ./stubFalse */ \"./node_modules/lodash/stubFalse.js\");\n\n/** Detect free variable `exports`. */\nvar freeExports = true && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Built-in value references. */\nvar Buffer = moduleExports ? root.Buffer : undefined;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;\n\n/**\n * Checks if `value` is a buffer.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n * @example\n *\n * _.isBuffer(new Buffer(2));\n * // => true\n *\n * _.isBuffer(new Uint8Array(2));\n * // => false\n */\nvar isBuffer = nativeIsBuffer || stubFalse;\n\nmodule.exports = isBuffer;\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../webpack/buildin/module.js */ \"./node_modules/webpack/buildin/module.js\")(module)))\n\n//# sourceURL=webpack:///./node_modules/lodash/isBuffer.js?"); /***/ }), /***/ "./node_modules/lodash/isEmpty.js": /*!****************************************!*\ !*** ./node_modules/lodash/isEmpty.js ***! \****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseKeys = __webpack_require__(/*! ./_baseKeys */ \"./node_modules/lodash/_baseKeys.js\"),\n getTag = __webpack_require__(/*! ./_getTag */ \"./node_modules/lodash/_getTag.js\"),\n isArguments = __webpack_require__(/*! ./isArguments */ \"./node_modules/lodash/isArguments.js\"),\n isArray = __webpack_require__(/*! ./isArray */ \"./node_modules/lodash/isArray.js\"),\n isArrayLike = __webpack_require__(/*! ./isArrayLike */ \"./node_modules/lodash/isArrayLike.js\"),\n isBuffer = __webpack_require__(/*! ./isBuffer */ \"./node_modules/lodash/isBuffer.js\"),\n isPrototype = __webpack_require__(/*! ./_isPrototype */ \"./node_modules/lodash/_isPrototype.js\"),\n isTypedArray = __webpack_require__(/*! ./isTypedArray */ \"./node_modules/lodash/isTypedArray.js\");\n\n/** `Object#toString` result references. */\nvar mapTag = '[object Map]',\n setTag = '[object Set]';\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Checks if `value` is an empty object, collection, map, or set.\n *\n * Objects are considered empty if they have no own enumerable string keyed\n * properties.\n *\n * Array-like values such as `arguments` objects, arrays, buffers, strings, or\n * jQuery-like collections are considered empty if they have a `length` of `0`.\n * Similarly, maps and sets are considered empty if they have a `size` of `0`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is empty, else `false`.\n * @example\n *\n * _.isEmpty(null);\n * // => true\n *\n * _.isEmpty(true);\n * // => true\n *\n * _.isEmpty(1);\n * // => true\n *\n * _.isEmpty([1, 2, 3]);\n * // => false\n *\n * _.isEmpty({ 'a': 1 });\n * // => false\n */\nfunction isEmpty(value) {\n if (value == null) {\n return true;\n }\n if (isArrayLike(value) &&\n (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' ||\n isBuffer(value) || isTypedArray(value) || isArguments(value))) {\n return !value.length;\n }\n var tag = getTag(value);\n if (tag == mapTag || tag == setTag) {\n return !value.size;\n }\n if (isPrototype(value)) {\n return !baseKeys(value).length;\n }\n for (var key in value) {\n if (hasOwnProperty.call(value, key)) {\n return false;\n }\n }\n return true;\n}\n\nmodule.exports = isEmpty;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isEmpty.js?"); /***/ }), /***/ "./node_modules/lodash/isEqual.js": /*!****************************************!*\ !*** ./node_modules/lodash/isEqual.js ***! \****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */ \"./node_modules/lodash/_baseIsEqual.js\");\n\n/**\n * Performs a deep comparison between two values to determine if they are\n * equivalent.\n *\n * **Note:** This method supports comparing arrays, array buffers, booleans,\n * date objects, error objects, maps, numbers, `Object` objects, regexes,\n * sets, strings, symbols, and typed arrays. `Object` objects are compared\n * by their own, not inherited, enumerable properties. Functions and DOM\n * nodes are compared by strict equality, i.e. `===`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.isEqual(object, other);\n * // => true\n *\n * object === other;\n * // => false\n */\nfunction isEqual(value, other) {\n return baseIsEqual(value, other);\n}\n\nmodule.exports = isEqual;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isEqual.js?"); /***/ }), /***/ "./node_modules/lodash/isFunction.js": /*!*******************************************!*\ !*** ./node_modules/lodash/isFunction.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ \"./node_modules/lodash/_baseGetTag.js\"),\n isObject = __webpack_require__(/*! ./isObject */ \"./node_modules/lodash/isObject.js\");\n\n/** `Object#toString` result references. */\nvar asyncTag = '[object AsyncFunction]',\n funcTag = '[object Function]',\n genTag = '[object GeneratorFunction]',\n proxyTag = '[object Proxy]';\n\n/**\n * Checks if `value` is classified as a `Function` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n * @example\n *\n * _.isFunction(_);\n * // => true\n *\n * _.isFunction(/abc/);\n * // => false\n */\nfunction isFunction(value) {\n if (!isObject(value)) {\n return false;\n }\n // The use of `Object#toString` avoids issues with the `typeof` operator\n // in Safari 9 which returns 'object' for typed arrays and other constructors.\n var tag = baseGetTag(value);\n return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n}\n\nmodule.exports = isFunction;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isFunction.js?"); /***/ }), /***/ "./node_modules/lodash/isLength.js": /*!*****************************************!*\ !*** ./node_modules/lodash/isLength.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/** Used as references for various `Number` constants. */\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/**\n * Checks if `value` is a valid array-like length.\n *\n * **Note:** This method is loosely based on\n * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n * @example\n *\n * _.isLength(3);\n * // => true\n *\n * _.isLength(Number.MIN_VALUE);\n * // => false\n *\n * _.isLength(Infinity);\n * // => false\n *\n * _.isLength('3');\n * // => false\n */\nfunction isLength(value) {\n return typeof value == 'number' &&\n value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n}\n\nmodule.exports = isLength;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isLength.js?"); /***/ }), /***/ "./node_modules/lodash/isObject.js": /*!*****************************************!*\ !*** ./node_modules/lodash/isObject.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\nfunction isObject(value) {\n var type = typeof value;\n return value != null && (type == 'object' || type == 'function');\n}\n\nmodule.exports = isObject;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isObject.js?"); /***/ }), /***/ "./node_modules/lodash/isObjectLike.js": /*!*********************************************!*\ !*** ./node_modules/lodash/isObjectLike.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return value != null && typeof value == 'object';\n}\n\nmodule.exports = isObjectLike;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isObjectLike.js?"); /***/ }), /***/ "./node_modules/lodash/isSymbol.js": /*!*****************************************!*\ !*** ./node_modules/lodash/isSymbol.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ \"./node_modules/lodash/_baseGetTag.js\"),\n isObjectLike = __webpack_require__(/*! ./isObjectLike */ \"./node_modules/lodash/isObjectLike.js\");\n\n/** `Object#toString` result references. */\nvar symbolTag = '[object Symbol]';\n\n/**\n * Checks if `value` is classified as a `Symbol` primitive or object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n * @example\n *\n * _.isSymbol(Symbol.iterator);\n * // => true\n *\n * _.isSymbol('abc');\n * // => false\n */\nfunction isSymbol(value) {\n return typeof value == 'symbol' ||\n (isObjectLike(value) && baseGetTag(value) == symbolTag);\n}\n\nmodule.exports = isSymbol;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isSymbol.js?"); /***/ }), /***/ "./node_modules/lodash/isTypedArray.js": /*!*********************************************!*\ !*** ./node_modules/lodash/isTypedArray.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseIsTypedArray = __webpack_require__(/*! ./_baseIsTypedArray */ \"./node_modules/lodash/_baseIsTypedArray.js\"),\n baseUnary = __webpack_require__(/*! ./_baseUnary */ \"./node_modules/lodash/_baseUnary.js\"),\n nodeUtil = __webpack_require__(/*! ./_nodeUtil */ \"./node_modules/lodash/_nodeUtil.js\");\n\n/* Node.js helper references. */\nvar nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n/**\n * Checks if `value` is classified as a typed array.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n * @example\n *\n * _.isTypedArray(new Uint8Array);\n * // => true\n *\n * _.isTypedArray([]);\n * // => false\n */\nvar isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\nmodule.exports = isTypedArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/isTypedArray.js?"); /***/ }), /***/ "./node_modules/lodash/keys.js": /*!*************************************!*\ !*** ./node_modules/lodash/keys.js ***! \*************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */ \"./node_modules/lodash/_arrayLikeKeys.js\"),\n baseKeys = __webpack_require__(/*! ./_baseKeys */ \"./node_modules/lodash/_baseKeys.js\"),\n isArrayLike = __webpack_require__(/*! ./isArrayLike */ \"./node_modules/lodash/isArrayLike.js\");\n\n/**\n * Creates an array of the own enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects. See the\n * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * for more details.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keys(new Foo);\n * // => ['a', 'b'] (iteration order is not guaranteed)\n *\n * _.keys('hi');\n * // => ['0', '1']\n */\nfunction keys(object) {\n return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\n}\n\nmodule.exports = keys;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/keys.js?"); /***/ }), /***/ "./node_modules/lodash/memoize.js": /*!****************************************!*\ !*** ./node_modules/lodash/memoize.js ***! \****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var MapCache = __webpack_require__(/*! ./_MapCache */ \"./node_modules/lodash/_MapCache.js\");\n\n/** Error message constants. */\nvar FUNC_ERROR_TEXT = 'Expected a function';\n\n/**\n * Creates a function that memoizes the result of `func`. If `resolver` is\n * provided, it determines the cache key for storing the result based on the\n * arguments provided to the memoized function. By default, the first argument\n * provided to the memoized function is used as the map cache key. The `func`\n * is invoked with the `this` binding of the memoized function.\n *\n * **Note:** The cache is exposed as the `cache` property on the memoized\n * function. Its creation may be customized by replacing the `_.memoize.Cache`\n * constructor with one whose instances implement the\n * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\n * method interface of `clear`, `delete`, `get`, `has`, and `set`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to have its output memoized.\n * @param {Function} [resolver] The function to resolve the cache key.\n * @returns {Function} Returns the new memoized function.\n * @example\n *\n * var object = { 'a': 1, 'b': 2 };\n * var other = { 'c': 3, 'd': 4 };\n *\n * var values = _.memoize(_.values);\n * values(object);\n * // => [1, 2]\n *\n * values(other);\n * // => [3, 4]\n *\n * object.a = 2;\n * values(object);\n * // => [1, 2]\n *\n * // Modify the result cache.\n * values.cache.set(object, ['a', 'b']);\n * values(object);\n * // => ['a', 'b']\n *\n * // Replace `_.memoize.Cache`.\n * _.memoize.Cache = WeakMap;\n */\nfunction memoize(func, resolver) {\n if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n var memoized = function() {\n var args = arguments,\n key = resolver ? resolver.apply(this, args) : args[0],\n cache = memoized.cache;\n\n if (cache.has(key)) {\n return cache.get(key);\n }\n var result = func.apply(this, args);\n memoized.cache = cache.set(key, result) || cache;\n return result;\n };\n memoized.cache = new (memoize.Cache || MapCache);\n return memoized;\n}\n\n// Expose `MapCache`.\nmemoize.Cache = MapCache;\n\nmodule.exports = memoize;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/memoize.js?"); /***/ }), /***/ "./node_modules/lodash/stubArray.js": /*!******************************************!*\ !*** ./node_modules/lodash/stubArray.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * This method returns a new empty array.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {Array} Returns the new empty array.\n * @example\n *\n * var arrays = _.times(2, _.stubArray);\n *\n * console.log(arrays);\n * // => [[], []]\n *\n * console.log(arrays[0] === arrays[1]);\n * // => false\n */\nfunction stubArray() {\n return [];\n}\n\nmodule.exports = stubArray;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/stubArray.js?"); /***/ }), /***/ "./node_modules/lodash/stubFalse.js": /*!******************************************!*\ !*** ./node_modules/lodash/stubFalse.js ***! \******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * This method returns `false`.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {boolean} Returns `false`.\n * @example\n *\n * _.times(2, _.stubFalse);\n * // => [false, false]\n */\nfunction stubFalse() {\n return false;\n}\n\nmodule.exports = stubFalse;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/stubFalse.js?"); /***/ }), /***/ "./node_modules/lodash/toString.js": /*!*****************************************!*\ !*** ./node_modules/lodash/toString.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var baseToString = __webpack_require__(/*! ./_baseToString */ \"./node_modules/lodash/_baseToString.js\");\n\n/**\n * Converts `value` to a string. An empty string is returned for `null`\n * and `undefined` values. The sign of `-0` is preserved.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n * @example\n *\n * _.toString(null);\n * // => ''\n *\n * _.toString(-0);\n * // => '-0'\n *\n * _.toString([1, 2, 3]);\n * // => '1,2,3'\n */\nfunction toString(value) {\n return value == null ? '' : baseToString(value);\n}\n\nmodule.exports = toString;\n\n\n//# sourceURL=webpack:///./node_modules/lodash/toString.js?"); /***/ }), /***/ "./node_modules/map-obj/index.js": /*!***************************************!*\ !*** ./node_modules/map-obj/index.js ***! \***************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nconst isObject = value => typeof value === 'object' && value !== null;\nconst mapObjectSkip = Symbol('skip');\n\n// Customized for this use-case\nconst isObjectCustom = value =>\n\tisObject(value) &&\n\t!(value instanceof RegExp) &&\n\t!(value instanceof Error) &&\n\t!(value instanceof Date);\n\nconst mapObject = (object, mapper, options, isSeen = new WeakMap()) => {\n\toptions = {\n\t\tdeep: false,\n\t\ttarget: {},\n\t\t...options\n\t};\n\n\tif (isSeen.has(object)) {\n\t\treturn isSeen.get(object);\n\t}\n\n\tisSeen.set(object, options.target);\n\n\tconst {target} = options;\n\tdelete options.target;\n\n\tconst mapArray = array => array.map(element => isObjectCustom(element) ? mapObject(element, mapper, options, isSeen) : element);\n\tif (Array.isArray(object)) {\n\t\treturn mapArray(object);\n\t}\n\n\tfor (const [key, value] of Object.entries(object)) {\n\t\tconst mapResult = mapper(key, value, object);\n\n\t\tif (mapResult === mapObjectSkip) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tlet [newKey, newValue, {shouldRecurse = true} = {}] = mapResult;\n\n\t\t// Drop `__proto__` keys.\n\t\tif (newKey === '__proto__') {\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (options.deep && shouldRecurse && isObjectCustom(newValue)) {\n\t\t\tnewValue = Array.isArray(newValue) ?\n\t\t\t\tmapArray(newValue) :\n\t\t\t\tmapObject(newValue, mapper, options, isSeen);\n\t\t}\n\n\t\ttarget[newKey] = newValue;\n\t}\n\n\treturn target;\n};\n\nmodule.exports = (object, mapper, options) => {\n\tif (!isObject(object)) {\n\t\tthrow new TypeError(`Expected an object, got \\`${object}\\` (${typeof object})`);\n\t}\n\n\treturn mapObject(object, mapper, options);\n};\n\nmodule.exports.mapObjectSkip = mapObjectSkip;\n\n\n//# sourceURL=webpack:///./node_modules/map-obj/index.js?"); /***/ }), /***/ "./node_modules/node-libs-browser/mock/process.js": /*!********************************************************!*\ !*** ./node_modules/node-libs-browser/mock/process.js ***! \********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("exports.nextTick = function nextTick(fn) {\n var args = Array.prototype.slice.call(arguments);\n args.shift();\n setTimeout(function () {\n fn.apply(null, args);\n }, 0);\n};\n\nexports.platform = exports.arch = \nexports.execPath = exports.title = 'browser';\nexports.pid = 1;\nexports.browser = true;\nexports.env = {};\nexports.argv = [];\n\nexports.binding = function (name) {\n\tthrow new Error('No such module. (Possibly not yet loaded)')\n};\n\n(function () {\n var cwd = '/';\n var path;\n exports.cwd = function () { return cwd };\n exports.chdir = function (dir) {\n if (!path) path = __webpack_require__(/*! path */ \"./node_modules/path-browserify/index.js\");\n cwd = path.resolve(dir, cwd);\n };\n})();\n\nexports.exit = exports.kill = \nexports.umask = exports.dlopen = \nexports.uptime = exports.memoryUsage = \nexports.uvCounters = function() {};\nexports.features = {};\n\n\n//# sourceURL=webpack:///./node_modules/node-libs-browser/mock/process.js?"); /***/ }), /***/ "./node_modules/node-libs-browser/node_modules/punycode/punycode.js": /*!**************************************************************************!*\ !*** ./node_modules/node-libs-browser/node_modules/punycode/punycode.js ***! \**************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("/* WEBPACK VAR INJECTION */(function(module, global) {var __WEBPACK_AMD_DEFINE_RESULT__;/*! https://mths.be/punycode v1.4.1 by @mathias */\n;(function(root) {\n\n\t/** Detect free variables */\n\tvar freeExports = true && exports &&\n\t\t!exports.nodeType && exports;\n\tvar freeModule = true && module &&\n\t\t!module.nodeType && module;\n\tvar freeGlobal = typeof global == 'object' && global;\n\tif (\n\t\tfreeGlobal.global === freeGlobal ||\n\t\tfreeGlobal.window === freeGlobal ||\n\t\tfreeGlobal.self === freeGlobal\n\t) {\n\t\troot = freeGlobal;\n\t}\n\n\t/**\n\t * The `punycode` object.\n\t * @name punycode\n\t * @type Object\n\t */\n\tvar punycode,\n\n\t/** Highest positive signed 32-bit float value */\n\tmaxInt = 2147483647, // aka. 0x7FFFFFFF or 2^31-1\n\n\t/** Bootstring parameters */\n\tbase = 36,\n\ttMin = 1,\n\ttMax = 26,\n\tskew = 38,\n\tdamp = 700,\n\tinitialBias = 72,\n\tinitialN = 128, // 0x80\n\tdelimiter = '-', // '\\x2D'\n\n\t/** Regular expressions */\n\tregexPunycode = /^xn--/,\n\tregexNonASCII = /[^\\x20-\\x7E]/, // unprintable ASCII chars + non-ASCII chars\n\tregexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g, // RFC 3490 separators\n\n\t/** Error messages */\n\terrors = {\n\t\t'overflow': 'Overflow: input needs wider integers to process',\n\t\t'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n\t\t'invalid-input': 'Invalid input'\n\t},\n\n\t/** Convenience shortcuts */\n\tbaseMinusTMin = base - tMin,\n\tfloor = Math.floor,\n\tstringFromCharCode = String.fromCharCode,\n\n\t/** Temporary variable */\n\tkey;\n\n\t/*--------------------------------------------------------------------------*/\n\n\t/**\n\t * A generic error utility function.\n\t * @private\n\t * @param {String} type The error type.\n\t * @returns {Error} Throws a `RangeError` with the applicable error message.\n\t */\n\tfunction error(type) {\n\t\tthrow new RangeError(errors[type]);\n\t}\n\n\t/**\n\t * A generic `Array#map` utility function.\n\t * @private\n\t * @param {Array} array The array to iterate over.\n\t * @param {Function} callback The function that gets called for every array\n\t * item.\n\t * @returns {Array} A new array of values returned by the callback function.\n\t */\n\tfunction map(array, fn) {\n\t\tvar length = array.length;\n\t\tvar result = [];\n\t\twhile (length--) {\n\t\t\tresult[length] = fn(array[length]);\n\t\t}\n\t\treturn result;\n\t}\n\n\t/**\n\t * A simple `Array#map`-like wrapper to work with domain name strings or email\n\t * addresses.\n\t * @private\n\t * @param {String} domain The domain name or email address.\n\t * @param {Function} callback The function that gets called for every\n\t * character.\n\t * @returns {Array} A new string of characters returned by the callback\n\t * function.\n\t */\n\tfunction mapDomain(string, fn) {\n\t\tvar parts = string.split('@');\n\t\tvar result = '';\n\t\tif (parts.length > 1) {\n\t\t\t// In email addresses, only the domain name should be punycoded. Leave\n\t\t\t// the local part (i.e. everything up to `@`) intact.\n\t\t\tresult = parts[0] + '@';\n\t\t\tstring = parts[1];\n\t\t}\n\t\t// Avoid `split(regex)` for IE8 compatibility. See #17.\n\t\tstring = string.replace(regexSeparators, '\\x2E');\n\t\tvar labels = string.split('.');\n\t\tvar encoded = map(labels, fn).join('.');\n\t\treturn result + encoded;\n\t}\n\n\t/**\n\t * Creates an array containing the numeric code points of each Unicode\n\t * character in the string. While JavaScript uses UCS-2 internally,\n\t * this function will convert a pair of surrogate halves (each of which\n\t * UCS-2 exposes as separate characters) into a single code point,\n\t * matching UTF-16.\n\t * @see `punycode.ucs2.encode`\n\t * @see \n\t * @memberOf punycode.ucs2\n\t * @name decode\n\t * @param {String} string The Unicode input string (UCS-2).\n\t * @returns {Array} The new array of code points.\n\t */\n\tfunction ucs2decode(string) {\n\t\tvar output = [],\n\t\t counter = 0,\n\t\t length = string.length,\n\t\t value,\n\t\t extra;\n\t\twhile (counter < length) {\n\t\t\tvalue = string.charCodeAt(counter++);\n\t\t\tif (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n\t\t\t\t// high surrogate, and there is a next character\n\t\t\t\textra = string.charCodeAt(counter++);\n\t\t\t\tif ((extra & 0xFC00) == 0xDC00) { // low surrogate\n\t\t\t\t\toutput.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n\t\t\t\t} else {\n\t\t\t\t\t// unmatched surrogate; only append this code unit, in case the next\n\t\t\t\t\t// code unit is the high surrogate of a surrogate pair\n\t\t\t\t\toutput.push(value);\n\t\t\t\t\tcounter--;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\toutput.push(value);\n\t\t\t}\n\t\t}\n\t\treturn output;\n\t}\n\n\t/**\n\t * Creates a string based on an array of numeric code points.\n\t * @see `punycode.ucs2.decode`\n\t * @memberOf punycode.ucs2\n\t * @name encode\n\t * @param {Array} codePoints The array of numeric code points.\n\t * @returns {String} The new Unicode string (UCS-2).\n\t */\n\tfunction ucs2encode(array) {\n\t\treturn map(array, function(value) {\n\t\t\tvar output = '';\n\t\t\tif (value > 0xFFFF) {\n\t\t\t\tvalue -= 0x10000;\n\t\t\t\toutput += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n\t\t\t\tvalue = 0xDC00 | value & 0x3FF;\n\t\t\t}\n\t\t\toutput += stringFromCharCode(value);\n\t\t\treturn output;\n\t\t}).join('');\n\t}\n\n\t/**\n\t * Converts a basic code point into a digit/integer.\n\t * @see `digitToBasic()`\n\t * @private\n\t * @param {Number} codePoint The basic numeric code point value.\n\t * @returns {Number} The numeric value of a basic code point (for use in\n\t * representing integers) in the range `0` to `base - 1`, or `base` if\n\t * the code point does not represent a value.\n\t */\n\tfunction basicToDigit(codePoint) {\n\t\tif (codePoint - 48 < 10) {\n\t\t\treturn codePoint - 22;\n\t\t}\n\t\tif (codePoint - 65 < 26) {\n\t\t\treturn codePoint - 65;\n\t\t}\n\t\tif (codePoint - 97 < 26) {\n\t\t\treturn codePoint - 97;\n\t\t}\n\t\treturn base;\n\t}\n\n\t/**\n\t * Converts a digit/integer into a basic code point.\n\t * @see `basicToDigit()`\n\t * @private\n\t * @param {Number} digit The numeric value of a basic code point.\n\t * @returns {Number} The basic code point whose value (when used for\n\t * representing integers) is `digit`, which needs to be in the range\n\t * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n\t * used; else, the lowercase form is used. The behavior is undefined\n\t * if `flag` is non-zero and `digit` has no uppercase form.\n\t */\n\tfunction digitToBasic(digit, flag) {\n\t\t// 0..25 map to ASCII a..z or A..Z\n\t\t// 26..35 map to ASCII 0..9\n\t\treturn digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n\t}\n\n\t/**\n\t * Bias adaptation function as per section 3.4 of RFC 3492.\n\t * https://tools.ietf.org/html/rfc3492#section-3.4\n\t * @private\n\t */\n\tfunction adapt(delta, numPoints, firstTime) {\n\t\tvar k = 0;\n\t\tdelta = firstTime ? floor(delta / damp) : delta >> 1;\n\t\tdelta += floor(delta / numPoints);\n\t\tfor (/* no initialization */; delta > baseMinusTMin * tMax >> 1; k += base) {\n\t\t\tdelta = floor(delta / baseMinusTMin);\n\t\t}\n\t\treturn floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n\t}\n\n\t/**\n\t * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n\t * symbols.\n\t * @memberOf punycode\n\t * @param {String} input The Punycode string of ASCII-only symbols.\n\t * @returns {String} The resulting string of Unicode symbols.\n\t */\n\tfunction decode(input) {\n\t\t// Don't use UCS-2\n\t\tvar output = [],\n\t\t inputLength = input.length,\n\t\t out,\n\t\t i = 0,\n\t\t n = initialN,\n\t\t bias = initialBias,\n\t\t basic,\n\t\t j,\n\t\t index,\n\t\t oldi,\n\t\t w,\n\t\t k,\n\t\t digit,\n\t\t t,\n\t\t /** Cached calculation results */\n\t\t baseMinusT;\n\n\t\t// Handle the basic code points: let `basic` be the number of input code\n\t\t// points before the last delimiter, or `0` if there is none, then copy\n\t\t// the first basic code points to the output.\n\n\t\tbasic = input.lastIndexOf(delimiter);\n\t\tif (basic < 0) {\n\t\t\tbasic = 0;\n\t\t}\n\n\t\tfor (j = 0; j < basic; ++j) {\n\t\t\t// if it's not a basic code point\n\t\t\tif (input.charCodeAt(j) >= 0x80) {\n\t\t\t\terror('not-basic');\n\t\t\t}\n\t\t\toutput.push(input.charCodeAt(j));\n\t\t}\n\n\t\t// Main decoding loop: start just after the last delimiter if any basic code\n\t\t// points were copied; start at the beginning otherwise.\n\n\t\tfor (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) {\n\n\t\t\t// `index` is the index of the next character to be consumed.\n\t\t\t// Decode a generalized variable-length integer into `delta`,\n\t\t\t// which gets added to `i`. The overflow checking is easier\n\t\t\t// if we increase `i` as we go, then subtract off its starting\n\t\t\t// value at the end to obtain `delta`.\n\t\t\tfor (oldi = i, w = 1, k = base; /* no condition */; k += base) {\n\n\t\t\t\tif (index >= inputLength) {\n\t\t\t\t\terror('invalid-input');\n\t\t\t\t}\n\n\t\t\t\tdigit = basicToDigit(input.charCodeAt(index++));\n\n\t\t\t\tif (digit >= base || digit > floor((maxInt - i) / w)) {\n\t\t\t\t\terror('overflow');\n\t\t\t\t}\n\n\t\t\t\ti += digit * w;\n\t\t\t\tt = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n\t\t\t\tif (digit < t) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tbaseMinusT = base - t;\n\t\t\t\tif (w > floor(maxInt / baseMinusT)) {\n\t\t\t\t\terror('overflow');\n\t\t\t\t}\n\n\t\t\t\tw *= baseMinusT;\n\n\t\t\t}\n\n\t\t\tout = output.length + 1;\n\t\t\tbias = adapt(i - oldi, out, oldi == 0);\n\n\t\t\t// `i` was supposed to wrap around from `out` to `0`,\n\t\t\t// incrementing `n` each time, so we'll fix that now:\n\t\t\tif (floor(i / out) > maxInt - n) {\n\t\t\t\terror('overflow');\n\t\t\t}\n\n\t\t\tn += floor(i / out);\n\t\t\ti %= out;\n\n\t\t\t// Insert `n` at position `i` of the output\n\t\t\toutput.splice(i++, 0, n);\n\n\t\t}\n\n\t\treturn ucs2encode(output);\n\t}\n\n\t/**\n\t * Converts a string of Unicode symbols (e.g. a domain name label) to a\n\t * Punycode string of ASCII-only symbols.\n\t * @memberOf punycode\n\t * @param {String} input The string of Unicode symbols.\n\t * @returns {String} The resulting Punycode string of ASCII-only symbols.\n\t */\n\tfunction encode(input) {\n\t\tvar n,\n\t\t delta,\n\t\t handledCPCount,\n\t\t basicLength,\n\t\t bias,\n\t\t j,\n\t\t m,\n\t\t q,\n\t\t k,\n\t\t t,\n\t\t currentValue,\n\t\t output = [],\n\t\t /** `inputLength` will hold the number of code points in `input`. */\n\t\t inputLength,\n\t\t /** Cached calculation results */\n\t\t handledCPCountPlusOne,\n\t\t baseMinusT,\n\t\t qMinusT;\n\n\t\t// Convert the input in UCS-2 to Unicode\n\t\tinput = ucs2decode(input);\n\n\t\t// Cache the length\n\t\tinputLength = input.length;\n\n\t\t// Initialize the state\n\t\tn = initialN;\n\t\tdelta = 0;\n\t\tbias = initialBias;\n\n\t\t// Handle the basic code points\n\t\tfor (j = 0; j < inputLength; ++j) {\n\t\t\tcurrentValue = input[j];\n\t\t\tif (currentValue < 0x80) {\n\t\t\t\toutput.push(stringFromCharCode(currentValue));\n\t\t\t}\n\t\t}\n\n\t\thandledCPCount = basicLength = output.length;\n\n\t\t// `handledCPCount` is the number of code points that have been handled;\n\t\t// `basicLength` is the number of basic code points.\n\n\t\t// Finish the basic string - if it is not empty - with a delimiter\n\t\tif (basicLength) {\n\t\t\toutput.push(delimiter);\n\t\t}\n\n\t\t// Main encoding loop:\n\t\twhile (handledCPCount < inputLength) {\n\n\t\t\t// All non-basic code points < n have been handled already. Find the next\n\t\t\t// larger one:\n\t\t\tfor (m = maxInt, j = 0; j < inputLength; ++j) {\n\t\t\t\tcurrentValue = input[j];\n\t\t\t\tif (currentValue >= n && currentValue < m) {\n\t\t\t\t\tm = currentValue;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Increase `delta` enough to advance the decoder's state to ,\n\t\t\t// but guard against overflow\n\t\t\thandledCPCountPlusOne = handledCPCount + 1;\n\t\t\tif (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n\t\t\t\terror('overflow');\n\t\t\t}\n\n\t\t\tdelta += (m - n) * handledCPCountPlusOne;\n\t\t\tn = m;\n\n\t\t\tfor (j = 0; j < inputLength; ++j) {\n\t\t\t\tcurrentValue = input[j];\n\n\t\t\t\tif (currentValue < n && ++delta > maxInt) {\n\t\t\t\t\terror('overflow');\n\t\t\t\t}\n\n\t\t\t\tif (currentValue == n) {\n\t\t\t\t\t// Represent delta as a generalized variable-length integer\n\t\t\t\t\tfor (q = delta, k = base; /* no condition */; k += base) {\n\t\t\t\t\t\tt = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\t\t\t\t\t\tif (q < t) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tqMinusT = q - t;\n\t\t\t\t\t\tbaseMinusT = base - t;\n\t\t\t\t\t\toutput.push(\n\t\t\t\t\t\t\tstringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n\t\t\t\t\t\t);\n\t\t\t\t\t\tq = floor(qMinusT / baseMinusT);\n\t\t\t\t\t}\n\n\t\t\t\t\toutput.push(stringFromCharCode(digitToBasic(q, 0)));\n\t\t\t\t\tbias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n\t\t\t\t\tdelta = 0;\n\t\t\t\t\t++handledCPCount;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t++delta;\n\t\t\t++n;\n\n\t\t}\n\t\treturn output.join('');\n\t}\n\n\t/**\n\t * Converts a Punycode string representing a domain name or an email address\n\t * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n\t * it doesn't matter if you call it on a string that has already been\n\t * converted to Unicode.\n\t * @memberOf punycode\n\t * @param {String} input The Punycoded domain name or email address to\n\t * convert to Unicode.\n\t * @returns {String} The Unicode representation of the given Punycode\n\t * string.\n\t */\n\tfunction toUnicode(input) {\n\t\treturn mapDomain(input, function(string) {\n\t\t\treturn regexPunycode.test(string)\n\t\t\t\t? decode(string.slice(4).toLowerCase())\n\t\t\t\t: string;\n\t\t});\n\t}\n\n\t/**\n\t * Converts a Unicode string representing a domain name or an email address to\n\t * Punycode. Only the non-ASCII parts of the domain name will be converted,\n\t * i.e. it doesn't matter if you call it with a domain that's already in\n\t * ASCII.\n\t * @memberOf punycode\n\t * @param {String} input The domain name or email address to convert, as a\n\t * Unicode string.\n\t * @returns {String} The Punycode representation of the given domain name or\n\t * email address.\n\t */\n\tfunction toASCII(input) {\n\t\treturn mapDomain(input, function(string) {\n\t\t\treturn regexNonASCII.test(string)\n\t\t\t\t? 'xn--' + encode(string)\n\t\t\t\t: string;\n\t\t});\n\t}\n\n\t/*--------------------------------------------------------------------------*/\n\n\t/** Define the public API */\n\tpunycode = {\n\t\t/**\n\t\t * A string representing the current Punycode.js version number.\n\t\t * @memberOf punycode\n\t\t * @type String\n\t\t */\n\t\t'version': '1.4.1',\n\t\t/**\n\t\t * An object of methods to convert from JavaScript's internal character\n\t\t * representation (UCS-2) to Unicode code points, and back.\n\t\t * @see \n\t\t * @memberOf punycode\n\t\t * @type Object\n\t\t */\n\t\t'ucs2': {\n\t\t\t'decode': ucs2decode,\n\t\t\t'encode': ucs2encode\n\t\t},\n\t\t'decode': decode,\n\t\t'encode': encode,\n\t\t'toASCII': toASCII,\n\t\t'toUnicode': toUnicode\n\t};\n\n\t/** Expose `punycode` */\n\t// Some AMD build optimizers, like r.js, check for specific condition patterns\n\t// like the following:\n\tif (\n\t\ttrue\n\t) {\n\t\t!(__WEBPACK_AMD_DEFINE_RESULT__ = (function() {\n\t\t\treturn punycode;\n\t\t}).call(exports, __webpack_require__, exports, module),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t} else {}\n\n}(this));\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../webpack/buildin/module.js */ \"./node_modules/webpack/buildin/module.js\")(module), __webpack_require__(/*! ./../../../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/node-libs-browser/node_modules/punycode/punycode.js?"); /***/ }), /***/ "./node_modules/object-inspect/index.js": /*!**********************************************!*\ !*** ./node_modules/object-inspect/index.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("/* WEBPACK VAR INJECTION */(function(global) {var hasMap = typeof Map === 'function' && Map.prototype;\nvar mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;\nvar mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null;\nvar mapForEach = hasMap && Map.prototype.forEach;\nvar hasSet = typeof Set === 'function' && Set.prototype;\nvar setSizeDescriptor = Object.getOwnPropertyDescriptor && hasSet ? Object.getOwnPropertyDescriptor(Set.prototype, 'size') : null;\nvar setSize = hasSet && setSizeDescriptor && typeof setSizeDescriptor.get === 'function' ? setSizeDescriptor.get : null;\nvar setForEach = hasSet && Set.prototype.forEach;\nvar hasWeakMap = typeof WeakMap === 'function' && WeakMap.prototype;\nvar weakMapHas = hasWeakMap ? WeakMap.prototype.has : null;\nvar hasWeakSet = typeof WeakSet === 'function' && WeakSet.prototype;\nvar weakSetHas = hasWeakSet ? WeakSet.prototype.has : null;\nvar hasWeakRef = typeof WeakRef === 'function' && WeakRef.prototype;\nvar weakRefDeref = hasWeakRef ? WeakRef.prototype.deref : null;\nvar booleanValueOf = Boolean.prototype.valueOf;\nvar objectToString = Object.prototype.toString;\nvar functionToString = Function.prototype.toString;\nvar $match = String.prototype.match;\nvar $slice = String.prototype.slice;\nvar $replace = String.prototype.replace;\nvar $toUpperCase = String.prototype.toUpperCase;\nvar $toLowerCase = String.prototype.toLowerCase;\nvar $test = RegExp.prototype.test;\nvar $concat = Array.prototype.concat;\nvar $join = Array.prototype.join;\nvar $arrSlice = Array.prototype.slice;\nvar $floor = Math.floor;\nvar bigIntValueOf = typeof BigInt === 'function' ? BigInt.prototype.valueOf : null;\nvar gOPS = Object.getOwnPropertySymbols;\nvar symToString = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol' ? Symbol.prototype.toString : null;\nvar hasShammedSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'object';\n// ie, `has-tostringtag/shams\nvar toStringTag = typeof Symbol === 'function' && Symbol.toStringTag && (typeof Symbol.toStringTag === hasShammedSymbols ? 'object' : 'symbol')\n ? Symbol.toStringTag\n : null;\nvar isEnumerable = Object.prototype.propertyIsEnumerable;\n\nvar gPO = (typeof Reflect === 'function' ? Reflect.getPrototypeOf : Object.getPrototypeOf) || (\n [].__proto__ === Array.prototype // eslint-disable-line no-proto\n ? function (O) {\n return O.__proto__; // eslint-disable-line no-proto\n }\n : null\n);\n\nfunction addNumericSeparator(num, str) {\n if (\n num === Infinity\n || num === -Infinity\n || num !== num\n || (num && num > -1000 && num < 1000)\n || $test.call(/e/, str)\n ) {\n return str;\n }\n var sepRegex = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;\n if (typeof num === 'number') {\n var int = num < 0 ? -$floor(-num) : $floor(num); // trunc(num)\n if (int !== num) {\n var intStr = String(int);\n var dec = $slice.call(str, intStr.length + 1);\n return $replace.call(intStr, sepRegex, '$&_') + '.' + $replace.call($replace.call(dec, /([0-9]{3})/g, '$&_'), /_$/, '');\n }\n }\n return $replace.call(str, sepRegex, '$&_');\n}\n\nvar utilInspect = __webpack_require__(/*! ./util.inspect */ 1);\nvar inspectCustom = utilInspect.custom;\nvar inspectSymbol = isSymbol(inspectCustom) ? inspectCustom : null;\n\nmodule.exports = function inspect_(obj, options, depth, seen) {\n var opts = options || {};\n\n if (has(opts, 'quoteStyle') && (opts.quoteStyle !== 'single' && opts.quoteStyle !== 'double')) {\n throw new TypeError('option \"quoteStyle\" must be \"single\" or \"double\"');\n }\n if (\n has(opts, 'maxStringLength') && (typeof opts.maxStringLength === 'number'\n ? opts.maxStringLength < 0 && opts.maxStringLength !== Infinity\n : opts.maxStringLength !== null\n )\n ) {\n throw new TypeError('option \"maxStringLength\", if provided, must be a positive integer, Infinity, or `null`');\n }\n var customInspect = has(opts, 'customInspect') ? opts.customInspect : true;\n if (typeof customInspect !== 'boolean' && customInspect !== 'symbol') {\n throw new TypeError('option \"customInspect\", if provided, must be `true`, `false`, or `\\'symbol\\'`');\n }\n\n if (\n has(opts, 'indent')\n && opts.indent !== null\n && opts.indent !== '\\t'\n && !(parseInt(opts.indent, 10) === opts.indent && opts.indent > 0)\n ) {\n throw new TypeError('option \"indent\" must be \"\\\\t\", an integer > 0, or `null`');\n }\n if (has(opts, 'numericSeparator') && typeof opts.numericSeparator !== 'boolean') {\n throw new TypeError('option \"numericSeparator\", if provided, must be `true` or `false`');\n }\n var numericSeparator = opts.numericSeparator;\n\n if (typeof obj === 'undefined') {\n return 'undefined';\n }\n if (obj === null) {\n return 'null';\n }\n if (typeof obj === 'boolean') {\n return obj ? 'true' : 'false';\n }\n\n if (typeof obj === 'string') {\n return inspectString(obj, opts);\n }\n if (typeof obj === 'number') {\n if (obj === 0) {\n return Infinity / obj > 0 ? '0' : '-0';\n }\n var str = String(obj);\n return numericSeparator ? addNumericSeparator(obj, str) : str;\n }\n if (typeof obj === 'bigint') {\n var bigIntStr = String(obj) + 'n';\n return numericSeparator ? addNumericSeparator(obj, bigIntStr) : bigIntStr;\n }\n\n var maxDepth = typeof opts.depth === 'undefined' ? 5 : opts.depth;\n if (typeof depth === 'undefined') { depth = 0; }\n if (depth >= maxDepth && maxDepth > 0 && typeof obj === 'object') {\n return isArray(obj) ? '[Array]' : '[Object]';\n }\n\n var indent = getIndent(opts, depth);\n\n if (typeof seen === 'undefined') {\n seen = [];\n } else if (indexOf(seen, obj) >= 0) {\n return '[Circular]';\n }\n\n function inspect(value, from, noIndent) {\n if (from) {\n seen = $arrSlice.call(seen);\n seen.push(from);\n }\n if (noIndent) {\n var newOpts = {\n depth: opts.depth\n };\n if (has(opts, 'quoteStyle')) {\n newOpts.quoteStyle = opts.quoteStyle;\n }\n return inspect_(value, newOpts, depth + 1, seen);\n }\n return inspect_(value, opts, depth + 1, seen);\n }\n\n if (typeof obj === 'function' && !isRegExp(obj)) { // in older engines, regexes are callable\n var name = nameOf(obj);\n var keys = arrObjKeys(obj, inspect);\n return '[Function' + (name ? ': ' + name : ' (anonymous)') + ']' + (keys.length > 0 ? ' { ' + $join.call(keys, ', ') + ' }' : '');\n }\n if (isSymbol(obj)) {\n var symString = hasShammedSymbols ? $replace.call(String(obj), /^(Symbol\\(.*\\))_[^)]*$/, '$1') : symToString.call(obj);\n return typeof obj === 'object' && !hasShammedSymbols ? markBoxed(symString) : symString;\n }\n if (isElement(obj)) {\n var s = '<' + $toLowerCase.call(String(obj.nodeName));\n var attrs = obj.attributes || [];\n for (var i = 0; i < attrs.length; i++) {\n s += ' ' + attrs[i].name + '=' + wrapQuotes(quote(attrs[i].value), 'double', opts);\n }\n s += '>';\n if (obj.childNodes && obj.childNodes.length) { s += '...'; }\n s += '';\n return s;\n }\n if (isArray(obj)) {\n if (obj.length === 0) { return '[]'; }\n var xs = arrObjKeys(obj, inspect);\n if (indent && !singleLineValues(xs)) {\n return '[' + indentedJoin(xs, indent) + ']';\n }\n return '[ ' + $join.call(xs, ', ') + ' ]';\n }\n if (isError(obj)) {\n var parts = arrObjKeys(obj, inspect);\n if (!('cause' in Error.prototype) && 'cause' in obj && !isEnumerable.call(obj, 'cause')) {\n return '{ [' + String(obj) + '] ' + $join.call($concat.call('[cause]: ' + inspect(obj.cause), parts), ', ') + ' }';\n }\n if (parts.length === 0) { return '[' + String(obj) + ']'; }\n return '{ [' + String(obj) + '] ' + $join.call(parts, ', ') + ' }';\n }\n if (typeof obj === 'object' && customInspect) {\n if (inspectSymbol && typeof obj[inspectSymbol] === 'function' && utilInspect) {\n return utilInspect(obj, { depth: maxDepth - depth });\n } else if (customInspect !== 'symbol' && typeof obj.inspect === 'function') {\n return obj.inspect();\n }\n }\n if (isMap(obj)) {\n var mapParts = [];\n if (mapForEach) {\n mapForEach.call(obj, function (value, key) {\n mapParts.push(inspect(key, obj, true) + ' => ' + inspect(value, obj));\n });\n }\n return collectionOf('Map', mapSize.call(obj), mapParts, indent);\n }\n if (isSet(obj)) {\n var setParts = [];\n if (setForEach) {\n setForEach.call(obj, function (value) {\n setParts.push(inspect(value, obj));\n });\n }\n return collectionOf('Set', setSize.call(obj), setParts, indent);\n }\n if (isWeakMap(obj)) {\n return weakCollectionOf('WeakMap');\n }\n if (isWeakSet(obj)) {\n return weakCollectionOf('WeakSet');\n }\n if (isWeakRef(obj)) {\n return weakCollectionOf('WeakRef');\n }\n if (isNumber(obj)) {\n return markBoxed(inspect(Number(obj)));\n }\n if (isBigInt(obj)) {\n return markBoxed(inspect(bigIntValueOf.call(obj)));\n }\n if (isBoolean(obj)) {\n return markBoxed(booleanValueOf.call(obj));\n }\n if (isString(obj)) {\n return markBoxed(inspect(String(obj)));\n }\n // note: in IE 8, sometimes `global !== window` but both are the prototypes of each other\n /* eslint-env browser */\n if (typeof window !== 'undefined' && obj === window) {\n return '{ [object Window] }';\n }\n if (obj === global) {\n return '{ [object globalThis] }';\n }\n if (!isDate(obj) && !isRegExp(obj)) {\n var ys = arrObjKeys(obj, inspect);\n var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;\n var protoTag = obj instanceof Object ? '' : 'null prototype';\n var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? 'Object' : '';\n var constructorTag = isPlainObject || typeof obj.constructor !== 'function' ? '' : obj.constructor.name ? obj.constructor.name + ' ' : '';\n var tag = constructorTag + (stringTag || protoTag ? '[' + $join.call($concat.call([], stringTag || [], protoTag || []), ': ') + '] ' : '');\n if (ys.length === 0) { return tag + '{}'; }\n if (indent) {\n return tag + '{' + indentedJoin(ys, indent) + '}';\n }\n return tag + '{ ' + $join.call(ys, ', ') + ' }';\n }\n return String(obj);\n};\n\nfunction wrapQuotes(s, defaultStyle, opts) {\n var quoteChar = (opts.quoteStyle || defaultStyle) === 'double' ? '\"' : \"'\";\n return quoteChar + s + quoteChar;\n}\n\nfunction quote(s) {\n return $replace.call(String(s), /\"/g, '"');\n}\n\nfunction isArray(obj) { return toStr(obj) === '[object Array]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isDate(obj) { return toStr(obj) === '[object Date]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isRegExp(obj) { return toStr(obj) === '[object RegExp]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isError(obj) { return toStr(obj) === '[object Error]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isString(obj) { return toStr(obj) === '[object String]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isNumber(obj) { return toStr(obj) === '[object Number]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\nfunction isBoolean(obj) { return toStr(obj) === '[object Boolean]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }\n\n// Symbol and BigInt do have Symbol.toStringTag by spec, so that can't be used to eliminate false positives\nfunction isSymbol(obj) {\n if (hasShammedSymbols) {\n return obj && typeof obj === 'object' && obj instanceof Symbol;\n }\n if (typeof obj === 'symbol') {\n return true;\n }\n if (!obj || typeof obj !== 'object' || !symToString) {\n return false;\n }\n try {\n symToString.call(obj);\n return true;\n } catch (e) {}\n return false;\n}\n\nfunction isBigInt(obj) {\n if (!obj || typeof obj !== 'object' || !bigIntValueOf) {\n return false;\n }\n try {\n bigIntValueOf.call(obj);\n return true;\n } catch (e) {}\n return false;\n}\n\nvar hasOwn = Object.prototype.hasOwnProperty || function (key) { return key in this; };\nfunction has(obj, key) {\n return hasOwn.call(obj, key);\n}\n\nfunction toStr(obj) {\n return objectToString.call(obj);\n}\n\nfunction nameOf(f) {\n if (f.name) { return f.name; }\n var m = $match.call(functionToString.call(f), /^function\\s*([\\w$]+)/);\n if (m) { return m[1]; }\n return null;\n}\n\nfunction indexOf(xs, x) {\n if (xs.indexOf) { return xs.indexOf(x); }\n for (var i = 0, l = xs.length; i < l; i++) {\n if (xs[i] === x) { return i; }\n }\n return -1;\n}\n\nfunction isMap(x) {\n if (!mapSize || !x || typeof x !== 'object') {\n return false;\n }\n try {\n mapSize.call(x);\n try {\n setSize.call(x);\n } catch (s) {\n return true;\n }\n return x instanceof Map; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isWeakMap(x) {\n if (!weakMapHas || !x || typeof x !== 'object') {\n return false;\n }\n try {\n weakMapHas.call(x, weakMapHas);\n try {\n weakSetHas.call(x, weakSetHas);\n } catch (s) {\n return true;\n }\n return x instanceof WeakMap; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isWeakRef(x) {\n if (!weakRefDeref || !x || typeof x !== 'object') {\n return false;\n }\n try {\n weakRefDeref.call(x);\n return true;\n } catch (e) {}\n return false;\n}\n\nfunction isSet(x) {\n if (!setSize || !x || typeof x !== 'object') {\n return false;\n }\n try {\n setSize.call(x);\n try {\n mapSize.call(x);\n } catch (m) {\n return true;\n }\n return x instanceof Set; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isWeakSet(x) {\n if (!weakSetHas || !x || typeof x !== 'object') {\n return false;\n }\n try {\n weakSetHas.call(x, weakSetHas);\n try {\n weakMapHas.call(x, weakMapHas);\n } catch (s) {\n return true;\n }\n return x instanceof WeakSet; // core-js workaround, pre-v2.5.0\n } catch (e) {}\n return false;\n}\n\nfunction isElement(x) {\n if (!x || typeof x !== 'object') { return false; }\n if (typeof HTMLElement !== 'undefined' && x instanceof HTMLElement) {\n return true;\n }\n return typeof x.nodeName === 'string' && typeof x.getAttribute === 'function';\n}\n\nfunction inspectString(str, opts) {\n if (str.length > opts.maxStringLength) {\n var remaining = str.length - opts.maxStringLength;\n var trailer = '... ' + remaining + ' more character' + (remaining > 1 ? 's' : '');\n return inspectString($slice.call(str, 0, opts.maxStringLength), opts) + trailer;\n }\n // eslint-disable-next-line no-control-regex\n var s = $replace.call($replace.call(str, /(['\\\\])/g, '\\\\$1'), /[\\x00-\\x1f]/g, lowbyte);\n return wrapQuotes(s, 'single', opts);\n}\n\nfunction lowbyte(c) {\n var n = c.charCodeAt(0);\n var x = {\n 8: 'b',\n 9: 't',\n 10: 'n',\n 12: 'f',\n 13: 'r'\n }[n];\n if (x) { return '\\\\' + x; }\n return '\\\\x' + (n < 0x10 ? '0' : '') + $toUpperCase.call(n.toString(16));\n}\n\nfunction markBoxed(str) {\n return 'Object(' + str + ')';\n}\n\nfunction weakCollectionOf(type) {\n return type + ' { ? }';\n}\n\nfunction collectionOf(type, size, entries, indent) {\n var joinedEntries = indent ? indentedJoin(entries, indent) : $join.call(entries, ', ');\n return type + ' (' + size + ') {' + joinedEntries + '}';\n}\n\nfunction singleLineValues(xs) {\n for (var i = 0; i < xs.length; i++) {\n if (indexOf(xs[i], '\\n') >= 0) {\n return false;\n }\n }\n return true;\n}\n\nfunction getIndent(opts, depth) {\n var baseIndent;\n if (opts.indent === '\\t') {\n baseIndent = '\\t';\n } else if (typeof opts.indent === 'number' && opts.indent > 0) {\n baseIndent = $join.call(Array(opts.indent + 1), ' ');\n } else {\n return null;\n }\n return {\n base: baseIndent,\n prev: $join.call(Array(depth + 1), baseIndent)\n };\n}\n\nfunction indentedJoin(xs, indent) {\n if (xs.length === 0) { return ''; }\n var lineJoiner = '\\n' + indent.prev + indent.base;\n return lineJoiner + $join.call(xs, ',' + lineJoiner) + '\\n' + indent.prev;\n}\n\nfunction arrObjKeys(obj, inspect) {\n var isArr = isArray(obj);\n var xs = [];\n if (isArr) {\n xs.length = obj.length;\n for (var i = 0; i < obj.length; i++) {\n xs[i] = has(obj, i) ? inspect(obj[i], obj) : '';\n }\n }\n var syms = typeof gOPS === 'function' ? gOPS(obj) : [];\n var symMap;\n if (hasShammedSymbols) {\n symMap = {};\n for (var k = 0; k < syms.length; k++) {\n symMap['$' + syms[k]] = syms[k];\n }\n }\n\n for (var key in obj) { // eslint-disable-line no-restricted-syntax\n if (!has(obj, key)) { continue; } // eslint-disable-line no-restricted-syntax, no-continue\n if (isArr && String(Number(key)) === key && key < obj.length) { continue; } // eslint-disable-line no-restricted-syntax, no-continue\n if (hasShammedSymbols && symMap['$' + key] instanceof Symbol) {\n // this is to prevent shammed Symbols, which are stored as strings, from being included in the string key section\n continue; // eslint-disable-line no-restricted-syntax, no-continue\n } else if ($test.call(/[^\\w$]/, key)) {\n xs.push(inspect(key, obj) + ': ' + inspect(obj[key], obj));\n } else {\n xs.push(key + ': ' + inspect(obj[key], obj));\n }\n }\n if (typeof gOPS === 'function') {\n for (var j = 0; j < syms.length; j++) {\n if (isEnumerable.call(obj, syms[j])) {\n xs.push('[' + inspect(syms[j]) + ']: ' + inspect(obj[syms[j]], obj));\n }\n }\n }\n return xs;\n}\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/object-inspect/index.js?"); /***/ }), /***/ "./node_modules/paho-mqtt/paho-mqtt.js": /*!*********************************************!*\ !*** ./node_modules/paho-mqtt/paho-mqtt.js ***! \*********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("/* WEBPACK VAR INJECTION */(function(global) {/*******************************************************************************\n * Copyright (c) 2013 IBM Corp.\n *\n * All rights reserved. This program and the accompanying materials\n * are made available under the terms of the Eclipse Public License v1.0\n * and Eclipse Distribution License v1.0 which accompany this distribution.\n *\n * The Eclipse Public License is available at\n * http://www.eclipse.org/legal/epl-v10.html\n * and the Eclipse Distribution License is available at\n * http://www.eclipse.org/org/documents/edl-v10.php.\n *\n * Contributors:\n * Andrew Banks - initial API and implementation and initial documentation\n *******************************************************************************/\n\n\n// Only expose a single object name in the global namespace.\n// Everything must go through this module. Global Paho module\n// only has a single public function, client, which returns\n// a Paho client object given connection details.\n\n/**\n * Send and receive messages using web browsers.\n *

\n * This programming interface lets a JavaScript client application use the MQTT V3.1 or\n * V3.1.1 protocol to connect to an MQTT-supporting messaging server.\n *\n * The function supported includes:\n *

    \n *
  1. Connecting to and disconnecting from a server. The server is identified by its host name and port number.\n *
  2. Specifying options that relate to the communications link with the server,\n * for example the frequency of keep-alive heartbeats, and whether SSL/TLS is required.\n *
  3. Subscribing to and receiving messages from MQTT Topics.\n *
  4. Publishing messages to MQTT Topics.\n *
\n *

\n * The API consists of two main objects:\n *

\n *
{@link Paho.Client}
\n *
This contains methods that provide the functionality of the API,\n * including provision of callbacks that notify the application when a message\n * arrives from or is delivered to the messaging server,\n * or when the status of its connection to the messaging server changes.
\n *
{@link Paho.Message}
\n *
This encapsulates the payload of the message along with various attributes\n * associated with its delivery, in particular the destination to which it has\n * been (or is about to be) sent.
\n *
\n *

\n * The programming interface validates parameters passed to it, and will throw\n * an Error containing an error message intended for developer use, if it detects\n * an error with any parameter.\n *

\n * Example:\n *\n *

\nvar client = new Paho.MQTT.Client(location.hostname, Number(location.port), \"clientId\");\nclient.onConnectionLost = onConnectionLost;\nclient.onMessageArrived = onMessageArrived;\nclient.connect({onSuccess:onConnect});\n\nfunction onConnect() {\n  // Once a connection has been made, make a subscription and send a message.\n  console.log(\"onConnect\");\n  client.subscribe(\"/World\");\n  var message = new Paho.MQTT.Message(\"Hello\");\n  message.destinationName = \"/World\";\n  client.send(message);\n};\nfunction onConnectionLost(responseObject) {\n  if (responseObject.errorCode !== 0)\n\tconsole.log(\"onConnectionLost:\"+responseObject.errorMessage);\n};\nfunction onMessageArrived(message) {\n  console.log(\"onMessageArrived:\"+message.payloadString);\n  client.disconnect();\n};\n * 
\n * @namespace Paho\n */\n\n/* jshint shadow:true */\n(function ExportLibrary(root, factory) {\n\tif(true){\n\t\tmodule.exports = factory();\n\t} else {}\n})(this, function LibraryFactory(){\n\n\n\tvar PahoMQTT = (function (global) {\n\n\t// Private variables below, these are only visible inside the function closure\n\t// which is used to define the module.\n\tvar version = \"@VERSION@-@BUILDLEVEL@\";\n\n\t/**\n\t * @private\n\t */\n\tvar localStorage = global.localStorage || (function () {\n\t\tvar data = {};\n\n\t\treturn {\n\t\t\tsetItem: function (key, item) { data[key] = item; },\n\t\t\tgetItem: function (key) { return data[key]; },\n\t\t\tremoveItem: function (key) { delete data[key]; },\n\t\t};\n\t})();\n\n\t\t/**\n\t * Unique message type identifiers, with associated\n\t * associated integer values.\n\t * @private\n\t */\n\t\tvar MESSAGE_TYPE = {\n\t\t\tCONNECT: 1,\n\t\t\tCONNACK: 2,\n\t\t\tPUBLISH: 3,\n\t\t\tPUBACK: 4,\n\t\t\tPUBREC: 5,\n\t\t\tPUBREL: 6,\n\t\t\tPUBCOMP: 7,\n\t\t\tSUBSCRIBE: 8,\n\t\t\tSUBACK: 9,\n\t\t\tUNSUBSCRIBE: 10,\n\t\t\tUNSUBACK: 11,\n\t\t\tPINGREQ: 12,\n\t\t\tPINGRESP: 13,\n\t\t\tDISCONNECT: 14\n\t\t};\n\n\t\t// Collection of utility methods used to simplify module code\n\t\t// and promote the DRY pattern.\n\n\t\t/**\n\t * Validate an object's parameter names to ensure they\n\t * match a list of expected variables name for this option\n\t * type. Used to ensure option object passed into the API don't\n\t * contain erroneous parameters.\n\t * @param {Object} obj - User options object\n\t * @param {Object} keys - valid keys and types that may exist in obj.\n\t * @throws {Error} Invalid option parameter found.\n\t * @private\n\t */\n\t\tvar validate = function(obj, keys) {\n\t\t\tfor (var key in obj) {\n\t\t\t\tif (obj.hasOwnProperty(key)) {\n\t\t\t\t\tif (keys.hasOwnProperty(key)) {\n\t\t\t\t\t\tif (typeof obj[key] !== keys[key])\n\t\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof obj[key], key]));\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar errorStr = \"Unknown property, \" + key + \". Valid properties are:\";\n\t\t\t\t\t\tfor (var validKey in keys)\n\t\t\t\t\t\t\tif (keys.hasOwnProperty(validKey))\n\t\t\t\t\t\t\t\terrorStr = errorStr+\" \"+validKey;\n\t\t\t\t\t\tthrow new Error(errorStr);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\t/**\n\t * Return a new function which runs the user function bound\n\t * to a fixed scope.\n\t * @param {function} User function\n\t * @param {object} Function scope\n\t * @return {function} User function bound to another scope\n\t * @private\n\t */\n\t\tvar scope = function (f, scope) {\n\t\t\treturn function () {\n\t\t\t\treturn f.apply(scope, arguments);\n\t\t\t};\n\t\t};\n\n\t\t/**\n\t * Unique message type identifiers, with associated\n\t * associated integer values.\n\t * @private\n\t */\n\t\tvar ERROR = {\n\t\t\tOK: {code:0, text:\"AMQJSC0000I OK.\"},\n\t\t\tCONNECT_TIMEOUT: {code:1, text:\"AMQJSC0001E Connect timed out.\"},\n\t\t\tSUBSCRIBE_TIMEOUT: {code:2, text:\"AMQJS0002E Subscribe timed out.\"},\n\t\t\tUNSUBSCRIBE_TIMEOUT: {code:3, text:\"AMQJS0003E Unsubscribe timed out.\"},\n\t\t\tPING_TIMEOUT: {code:4, text:\"AMQJS0004E Ping timed out.\"},\n\t\t\tINTERNAL_ERROR: {code:5, text:\"AMQJS0005E Internal error. Error Message: {0}, Stack trace: {1}\"},\n\t\t\tCONNACK_RETURNCODE: {code:6, text:\"AMQJS0006E Bad Connack return code:{0} {1}.\"},\n\t\t\tSOCKET_ERROR: {code:7, text:\"AMQJS0007E Socket error:{0}.\"},\n\t\t\tSOCKET_CLOSE: {code:8, text:\"AMQJS0008I Socket closed.\"},\n\t\t\tMALFORMED_UTF: {code:9, text:\"AMQJS0009E Malformed UTF data:{0} {1} {2}.\"},\n\t\t\tUNSUPPORTED: {code:10, text:\"AMQJS0010E {0} is not supported by this browser.\"},\n\t\t\tINVALID_STATE: {code:11, text:\"AMQJS0011E Invalid state {0}.\"},\n\t\t\tINVALID_TYPE: {code:12, text:\"AMQJS0012E Invalid type {0} for {1}.\"},\n\t\t\tINVALID_ARGUMENT: {code:13, text:\"AMQJS0013E Invalid argument {0} for {1}.\"},\n\t\t\tUNSUPPORTED_OPERATION: {code:14, text:\"AMQJS0014E Unsupported operation.\"},\n\t\t\tINVALID_STORED_DATA: {code:15, text:\"AMQJS0015E Invalid data in local storage key={0} value={1}.\"},\n\t\t\tINVALID_MQTT_MESSAGE_TYPE: {code:16, text:\"AMQJS0016E Invalid MQTT message type {0}.\"},\n\t\t\tMALFORMED_UNICODE: {code:17, text:\"AMQJS0017E Malformed Unicode string:{0} {1}.\"},\n\t\t\tBUFFER_FULL: {code:18, text:\"AMQJS0018E Message buffer is full, maximum buffer size: {0}.\"},\n\t\t};\n\n\t\t/** CONNACK RC Meaning. */\n\t\tvar CONNACK_RC = {\n\t\t\t0:\"Connection Accepted\",\n\t\t\t1:\"Connection Refused: unacceptable protocol version\",\n\t\t\t2:\"Connection Refused: identifier rejected\",\n\t\t\t3:\"Connection Refused: server unavailable\",\n\t\t\t4:\"Connection Refused: bad user name or password\",\n\t\t\t5:\"Connection Refused: not authorized\"\n\t\t};\n\n\t/**\n\t * Format an error message text.\n\t * @private\n\t * @param {error} ERROR value above.\n\t * @param {substitutions} [array] substituted into the text.\n\t * @return the text with the substitutions made.\n\t */\n\t\tvar format = function(error, substitutions) {\n\t\t\tvar text = error.text;\n\t\t\tif (substitutions) {\n\t\t\t\tvar field,start;\n\t\t\t\tfor (var i=0; i 0) {\n\t\t\t\t\t\tvar part1 = text.substring(0,start);\n\t\t\t\t\t\tvar part2 = text.substring(start+field.length);\n\t\t\t\t\t\ttext = part1+substitutions[i]+part2;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn text;\n\t\t};\n\n\t\t//MQTT protocol and version 6 M Q I s d p 3\n\t\tvar MqttProtoIdentifierv3 = [0x00,0x06,0x4d,0x51,0x49,0x73,0x64,0x70,0x03];\n\t\t//MQTT proto/version for 311 4 M Q T T 4\n\t\tvar MqttProtoIdentifierv4 = [0x00,0x04,0x4d,0x51,0x54,0x54,0x04];\n\n\t\t/**\n\t * Construct an MQTT wire protocol message.\n\t * @param type MQTT packet type.\n\t * @param options optional wire message attributes.\n\t *\n\t * Optional properties\n\t *\n\t * messageIdentifier: message ID in the range [0..65535]\n\t * payloadMessage:\tApplication Message - PUBLISH only\n\t * connectStrings:\tarray of 0 or more Strings to be put into the CONNECT payload\n\t * topics:\t\t\tarray of strings (SUBSCRIBE, UNSUBSCRIBE)\n\t * requestQoS:\t\tarray of QoS values [0..2]\n\t *\n\t * \"Flag\" properties\n\t * cleanSession:\ttrue if present / false if absent (CONNECT)\n\t * willMessage: \ttrue if present / false if absent (CONNECT)\n\t * isRetained:\t\ttrue if present / false if absent (CONNECT)\n\t * userName:\t\ttrue if present / false if absent (CONNECT)\n\t * password:\t\ttrue if present / false if absent (CONNECT)\n\t * keepAliveInterval:\tinteger [0..65535] (CONNECT)\n\t *\n\t * @private\n\t * @ignore\n\t */\n\t\tvar WireMessage = function (type, options) {\n\t\t\tthis.type = type;\n\t\t\tfor (var name in options) {\n\t\t\t\tif (options.hasOwnProperty(name)) {\n\t\t\t\t\tthis[name] = options[name];\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\tWireMessage.prototype.encode = function() {\n\t\t// Compute the first byte of the fixed header\n\t\t\tvar first = ((this.type & 0x0f) << 4);\n\n\t\t\t/*\n\t\t * Now calculate the length of the variable header + payload by adding up the lengths\n\t\t * of all the component parts\n\t\t */\n\n\t\t\tvar remLength = 0;\n\t\t\tvar topicStrLength = [];\n\t\t\tvar destinationNameLength = 0;\n\t\t\tvar willMessagePayloadBytes;\n\n\t\t\t// if the message contains a messageIdentifier then we need two bytes for that\n\t\t\tif (this.messageIdentifier !== undefined)\n\t\t\t\tremLength += 2;\n\n\t\t\tswitch(this.type) {\n\t\t\t// If this a Connect then we need to include 12 bytes for its header\n\t\t\tcase MESSAGE_TYPE.CONNECT:\n\t\t\t\tswitch(this.mqttVersion) {\n\t\t\t\tcase 3:\n\t\t\t\t\tremLength += MqttProtoIdentifierv3.length + 3;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 4:\n\t\t\t\t\tremLength += MqttProtoIdentifierv4.length + 3;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tremLength += UTF8Length(this.clientId) + 2;\n\t\t\t\tif (this.willMessage !== undefined) {\n\t\t\t\t\tremLength += UTF8Length(this.willMessage.destinationName) + 2;\n\t\t\t\t\t// Will message is always a string, sent as UTF-8 characters with a preceding length.\n\t\t\t\t\twillMessagePayloadBytes = this.willMessage.payloadBytes;\n\t\t\t\t\tif (!(willMessagePayloadBytes instanceof Uint8Array))\n\t\t\t\t\t\twillMessagePayloadBytes = new Uint8Array(payloadBytes);\n\t\t\t\t\tremLength += willMessagePayloadBytes.byteLength +2;\n\t\t\t\t}\n\t\t\t\tif (this.userName !== undefined)\n\t\t\t\t\tremLength += UTF8Length(this.userName) + 2;\n\t\t\t\tif (this.password !== undefined)\n\t\t\t\t\tremLength += UTF8Length(this.password) + 2;\n\t\t\t\tbreak;\n\n\t\t\t// Subscribe, Unsubscribe can both contain topic strings\n\t\t\tcase MESSAGE_TYPE.SUBSCRIBE:\n\t\t\t\tfirst |= 0x02; // Qos = 1;\n\t\t\t\tfor ( var i = 0; i < this.topics.length; i++) {\n\t\t\t\t\ttopicStrLength[i] = UTF8Length(this.topics[i]);\n\t\t\t\t\tremLength += topicStrLength[i] + 2;\n\t\t\t\t}\n\t\t\t\tremLength += this.requestedQos.length; // 1 byte for each topic's Qos\n\t\t\t\t// QoS on Subscribe only\n\t\t\t\tbreak;\n\n\t\t\tcase MESSAGE_TYPE.UNSUBSCRIBE:\n\t\t\t\tfirst |= 0x02; // Qos = 1;\n\t\t\t\tfor ( var i = 0; i < this.topics.length; i++) {\n\t\t\t\t\ttopicStrLength[i] = UTF8Length(this.topics[i]);\n\t\t\t\t\tremLength += topicStrLength[i] + 2;\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\tcase MESSAGE_TYPE.PUBREL:\n\t\t\t\tfirst |= 0x02; // Qos = 1;\n\t\t\t\tbreak;\n\n\t\t\tcase MESSAGE_TYPE.PUBLISH:\n\t\t\t\tif (this.payloadMessage.duplicate) first |= 0x08;\n\t\t\t\tfirst = first |= (this.payloadMessage.qos << 1);\n\t\t\t\tif (this.payloadMessage.retained) first |= 0x01;\n\t\t\t\tdestinationNameLength = UTF8Length(this.payloadMessage.destinationName);\n\t\t\t\tremLength += destinationNameLength + 2;\n\t\t\t\tvar payloadBytes = this.payloadMessage.payloadBytes;\n\t\t\t\tremLength += payloadBytes.byteLength;\n\t\t\t\tif (payloadBytes instanceof ArrayBuffer)\n\t\t\t\t\tpayloadBytes = new Uint8Array(payloadBytes);\n\t\t\t\telse if (!(payloadBytes instanceof Uint8Array))\n\t\t\t\t\tpayloadBytes = new Uint8Array(payloadBytes.buffer);\n\t\t\t\tbreak;\n\n\t\t\tcase MESSAGE_TYPE.DISCONNECT:\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// Now we can allocate a buffer for the message\n\n\t\t\tvar mbi = encodeMBI(remLength); // Convert the length to MQTT MBI format\n\t\t\tvar pos = mbi.length + 1; // Offset of start of variable header\n\t\t\tvar buffer = new ArrayBuffer(remLength + pos);\n\t\t\tvar byteStream = new Uint8Array(buffer); // view it as a sequence of bytes\n\n\t\t\t//Write the fixed header into the buffer\n\t\t\tbyteStream[0] = first;\n\t\t\tbyteStream.set(mbi,1);\n\n\t\t\t// If this is a PUBLISH then the variable header starts with a topic\n\t\t\tif (this.type == MESSAGE_TYPE.PUBLISH)\n\t\t\t\tpos = writeString(this.payloadMessage.destinationName, destinationNameLength, byteStream, pos);\n\t\t\t// If this is a CONNECT then the variable header contains the protocol name/version, flags and keepalive time\n\n\t\t\telse if (this.type == MESSAGE_TYPE.CONNECT) {\n\t\t\t\tswitch (this.mqttVersion) {\n\t\t\t\tcase 3:\n\t\t\t\t\tbyteStream.set(MqttProtoIdentifierv3, pos);\n\t\t\t\t\tpos += MqttProtoIdentifierv3.length;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 4:\n\t\t\t\t\tbyteStream.set(MqttProtoIdentifierv4, pos);\n\t\t\t\t\tpos += MqttProtoIdentifierv4.length;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tvar connectFlags = 0;\n\t\t\t\tif (this.cleanSession)\n\t\t\t\t\tconnectFlags = 0x02;\n\t\t\t\tif (this.willMessage !== undefined ) {\n\t\t\t\t\tconnectFlags |= 0x04;\n\t\t\t\t\tconnectFlags |= (this.willMessage.qos<<3);\n\t\t\t\t\tif (this.willMessage.retained) {\n\t\t\t\t\t\tconnectFlags |= 0x20;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (this.userName !== undefined)\n\t\t\t\t\tconnectFlags |= 0x80;\n\t\t\t\tif (this.password !== undefined)\n\t\t\t\t\tconnectFlags |= 0x40;\n\t\t\t\tbyteStream[pos++] = connectFlags;\n\t\t\t\tpos = writeUint16 (this.keepAliveInterval, byteStream, pos);\n\t\t\t}\n\n\t\t\t// Output the messageIdentifier - if there is one\n\t\t\tif (this.messageIdentifier !== undefined)\n\t\t\t\tpos = writeUint16 (this.messageIdentifier, byteStream, pos);\n\n\t\t\tswitch(this.type) {\n\t\t\tcase MESSAGE_TYPE.CONNECT:\n\t\t\t\tpos = writeString(this.clientId, UTF8Length(this.clientId), byteStream, pos);\n\t\t\t\tif (this.willMessage !== undefined) {\n\t\t\t\t\tpos = writeString(this.willMessage.destinationName, UTF8Length(this.willMessage.destinationName), byteStream, pos);\n\t\t\t\t\tpos = writeUint16(willMessagePayloadBytes.byteLength, byteStream, pos);\n\t\t\t\t\tbyteStream.set(willMessagePayloadBytes, pos);\n\t\t\t\t\tpos += willMessagePayloadBytes.byteLength;\n\n\t\t\t\t}\n\t\t\t\tif (this.userName !== undefined)\n\t\t\t\t\tpos = writeString(this.userName, UTF8Length(this.userName), byteStream, pos);\n\t\t\t\tif (this.password !== undefined)\n\t\t\t\t\tpos = writeString(this.password, UTF8Length(this.password), byteStream, pos);\n\t\t\t\tbreak;\n\n\t\t\tcase MESSAGE_TYPE.PUBLISH:\n\t\t\t\t// PUBLISH has a text or binary payload, if text do not add a 2 byte length field, just the UTF characters.\n\t\t\t\tbyteStream.set(payloadBytes, pos);\n\n\t\t\t\tbreak;\n\n\t\t\t\t// \t case MESSAGE_TYPE.PUBREC:\n\t\t\t\t// \t case MESSAGE_TYPE.PUBREL:\n\t\t\t\t// \t case MESSAGE_TYPE.PUBCOMP:\n\t\t\t\t// \t \tbreak;\n\n\t\t\tcase MESSAGE_TYPE.SUBSCRIBE:\n\t\t\t\t// SUBSCRIBE has a list of topic strings and request QoS\n\t\t\t\tfor (var i=0; i> 4;\n\t\t\tvar messageInfo = first &= 0x0f;\n\t\t\tpos += 1;\n\n\n\t\t\t// Decode the remaining length (MBI format)\n\n\t\t\tvar digit;\n\t\t\tvar remLength = 0;\n\t\t\tvar multiplier = 1;\n\t\t\tdo {\n\t\t\t\tif (pos == input.length) {\n\t\t\t\t\treturn [null,startingPos];\n\t\t\t\t}\n\t\t\t\tdigit = input[pos++];\n\t\t\t\tremLength += ((digit & 0x7F) * multiplier);\n\t\t\t\tmultiplier *= 128;\n\t\t\t} while ((digit & 0x80) !== 0);\n\n\t\t\tvar endPos = pos+remLength;\n\t\t\tif (endPos > input.length) {\n\t\t\t\treturn [null,startingPos];\n\t\t\t}\n\n\t\t\tvar wireMessage = new WireMessage(type);\n\t\t\tswitch(type) {\n\t\t\tcase MESSAGE_TYPE.CONNACK:\n\t\t\t\tvar connectAcknowledgeFlags = input[pos++];\n\t\t\t\tif (connectAcknowledgeFlags & 0x01)\n\t\t\t\t\twireMessage.sessionPresent = true;\n\t\t\t\twireMessage.returnCode = input[pos++];\n\t\t\t\tbreak;\n\n\t\t\tcase MESSAGE_TYPE.PUBLISH:\n\t\t\t\tvar qos = (messageInfo >> 1) & 0x03;\n\n\t\t\t\tvar len = readUint16(input, pos);\n\t\t\t\tpos += 2;\n\t\t\t\tvar topicName = parseUTF8(input, pos, len);\n\t\t\t\tpos += len;\n\t\t\t\t// If QoS 1 or 2 there will be a messageIdentifier\n\t\t\t\tif (qos > 0) {\n\t\t\t\t\twireMessage.messageIdentifier = readUint16(input, pos);\n\t\t\t\t\tpos += 2;\n\t\t\t\t}\n\n\t\t\t\tvar message = new Message(input.subarray(pos, endPos));\n\t\t\t\tif ((messageInfo & 0x01) == 0x01)\n\t\t\t\t\tmessage.retained = true;\n\t\t\t\tif ((messageInfo & 0x08) == 0x08)\n\t\t\t\t\tmessage.duplicate = true;\n\t\t\t\tmessage.qos = qos;\n\t\t\t\tmessage.destinationName = topicName;\n\t\t\t\twireMessage.payloadMessage = message;\n\t\t\t\tbreak;\n\n\t\t\tcase MESSAGE_TYPE.PUBACK:\n\t\t\tcase MESSAGE_TYPE.PUBREC:\n\t\t\tcase MESSAGE_TYPE.PUBREL:\n\t\t\tcase MESSAGE_TYPE.PUBCOMP:\n\t\t\tcase MESSAGE_TYPE.UNSUBACK:\n\t\t\t\twireMessage.messageIdentifier = readUint16(input, pos);\n\t\t\t\tbreak;\n\n\t\t\tcase MESSAGE_TYPE.SUBACK:\n\t\t\t\twireMessage.messageIdentifier = readUint16(input, pos);\n\t\t\t\tpos += 2;\n\t\t\t\twireMessage.returnCode = input.subarray(pos, endPos);\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\treturn [wireMessage,endPos];\n\t\t}\n\n\t\tfunction writeUint16(input, buffer, offset) {\n\t\t\tbuffer[offset++] = input >> 8; //MSB\n\t\t\tbuffer[offset++] = input % 256; //LSB\n\t\t\treturn offset;\n\t\t}\n\n\t\tfunction writeString(input, utf8Length, buffer, offset) {\n\t\t\toffset = writeUint16(utf8Length, buffer, offset);\n\t\t\tstringToUTF8(input, buffer, offset);\n\t\t\treturn offset + utf8Length;\n\t\t}\n\n\t\tfunction readUint16(buffer, offset) {\n\t\t\treturn 256*buffer[offset] + buffer[offset+1];\n\t\t}\n\n\t\t/**\n\t * Encodes an MQTT Multi-Byte Integer\n\t * @private\n\t */\n\t\tfunction encodeMBI(number) {\n\t\t\tvar output = new Array(1);\n\t\t\tvar numBytes = 0;\n\n\t\t\tdo {\n\t\t\t\tvar digit = number % 128;\n\t\t\t\tnumber = number >> 7;\n\t\t\t\tif (number > 0) {\n\t\t\t\t\tdigit |= 0x80;\n\t\t\t\t}\n\t\t\t\toutput[numBytes++] = digit;\n\t\t\t} while ( (number > 0) && (numBytes<4) );\n\n\t\t\treturn output;\n\t\t}\n\n\t\t/**\n\t * Takes a String and calculates its length in bytes when encoded in UTF8.\n\t * @private\n\t */\n\t\tfunction UTF8Length(input) {\n\t\t\tvar output = 0;\n\t\t\tfor (var i = 0; i 0x7FF)\n\t\t\t\t{\n\t\t\t\t\t// Surrogate pair means its a 4 byte character\n\t\t\t\t\tif (0xD800 <= charCode && charCode <= 0xDBFF)\n\t\t\t\t\t{\n\t\t\t\t\t\ti++;\n\t\t\t\t\t\toutput++;\n\t\t\t\t\t}\n\t\t\t\t\toutput +=3;\n\t\t\t\t}\n\t\t\t\telse if (charCode > 0x7F)\n\t\t\t\t\toutput +=2;\n\t\t\t\telse\n\t\t\t\t\toutput++;\n\t\t\t}\n\t\t\treturn output;\n\t\t}\n\n\t\t/**\n\t * Takes a String and writes it into an array as UTF8 encoded bytes.\n\t * @private\n\t */\n\t\tfunction stringToUTF8(input, output, start) {\n\t\t\tvar pos = start;\n\t\t\tfor (var i = 0; i>6 & 0x1F | 0xC0;\n\t\t\t\t\toutput[pos++] = charCode & 0x3F | 0x80;\n\t\t\t\t} else if (charCode <= 0xFFFF) {\n\t\t\t\t\toutput[pos++] = charCode>>12 & 0x0F | 0xE0;\n\t\t\t\t\toutput[pos++] = charCode>>6 & 0x3F | 0x80;\n\t\t\t\t\toutput[pos++] = charCode & 0x3F | 0x80;\n\t\t\t\t} else {\n\t\t\t\t\toutput[pos++] = charCode>>18 & 0x07 | 0xF0;\n\t\t\t\t\toutput[pos++] = charCode>>12 & 0x3F | 0x80;\n\t\t\t\t\toutput[pos++] = charCode>>6 & 0x3F | 0x80;\n\t\t\t\t\toutput[pos++] = charCode & 0x3F | 0x80;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn output;\n\t\t}\n\n\t\tfunction parseUTF8(input, offset, length) {\n\t\t\tvar output = \"\";\n\t\t\tvar utf16;\n\t\t\tvar pos = offset;\n\n\t\t\twhile (pos < offset+length)\n\t\t\t{\n\t\t\t\tvar byte1 = input[pos++];\n\t\t\t\tif (byte1 < 128)\n\t\t\t\t\tutf16 = byte1;\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tvar byte2 = input[pos++]-128;\n\t\t\t\t\tif (byte2 < 0)\n\t\t\t\t\t\tthrow new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16),\"\"]));\n\t\t\t\t\tif (byte1 < 0xE0) // 2 byte character\n\t\t\t\t\t\tutf16 = 64*(byte1-0xC0) + byte2;\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tvar byte3 = input[pos++]-128;\n\t\t\t\t\t\tif (byte3 < 0)\n\t\t\t\t\t\t\tthrow new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16), byte3.toString(16)]));\n\t\t\t\t\t\tif (byte1 < 0xF0) // 3 byte character\n\t\t\t\t\t\t\tutf16 = 4096*(byte1-0xE0) + 64*byte2 + byte3;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tvar byte4 = input[pos++]-128;\n\t\t\t\t\t\t\tif (byte4 < 0)\n\t\t\t\t\t\t\t\tthrow new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16), byte3.toString(16), byte4.toString(16)]));\n\t\t\t\t\t\t\tif (byte1 < 0xF8) // 4 byte character\n\t\t\t\t\t\t\t\tutf16 = 262144*(byte1-0xF0) + 4096*byte2 + 64*byte3 + byte4;\n\t\t\t\t\t\t\telse // longer encodings are not supported\n\t\t\t\t\t\t\t\tthrow new Error(format(ERROR.MALFORMED_UTF, [byte1.toString(16), byte2.toString(16), byte3.toString(16), byte4.toString(16)]));\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (utf16 > 0xFFFF) // 4 byte character - express as a surrogate pair\n\t\t\t\t{\n\t\t\t\t\tutf16 -= 0x10000;\n\t\t\t\t\toutput += String.fromCharCode(0xD800 + (utf16 >> 10)); // lead character\n\t\t\t\t\tutf16 = 0xDC00 + (utf16 & 0x3FF); // trail character\n\t\t\t\t}\n\t\t\t\toutput += String.fromCharCode(utf16);\n\t\t\t}\n\t\t\treturn output;\n\t\t}\n\n\t\t/**\n\t * Repeat keepalive requests, monitor responses.\n\t * @ignore\n\t */\n\t\tvar Pinger = function(client, keepAliveInterval) {\n\t\t\tthis._client = client;\n\t\t\tthis._keepAliveInterval = keepAliveInterval*1000;\n\t\t\tthis.isReset = false;\n\n\t\t\tvar pingReq = new WireMessage(MESSAGE_TYPE.PINGREQ).encode();\n\n\t\t\tvar doTimeout = function (pinger) {\n\t\t\t\treturn function () {\n\t\t\t\t\treturn doPing.apply(pinger);\n\t\t\t\t};\n\t\t\t};\n\n\t\t\t/** @ignore */\n\t\t\tvar doPing = function() {\n\t\t\t\tif (!this.isReset) {\n\t\t\t\t\tthis._client._trace(\"Pinger.doPing\", \"Timed out\");\n\t\t\t\t\tthis._client._disconnected( ERROR.PING_TIMEOUT.code , format(ERROR.PING_TIMEOUT));\n\t\t\t\t} else {\n\t\t\t\t\tthis.isReset = false;\n\t\t\t\t\tthis._client._trace(\"Pinger.doPing\", \"send PINGREQ\");\n\t\t\t\t\tthis._client.socket.send(pingReq);\n\t\t\t\t\tthis.timeout = setTimeout(doTimeout(this), this._keepAliveInterval);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tthis.reset = function() {\n\t\t\t\tthis.isReset = true;\n\t\t\t\tclearTimeout(this.timeout);\n\t\t\t\tif (this._keepAliveInterval > 0)\n\t\t\t\t\tthis.timeout = setTimeout(doTimeout(this), this._keepAliveInterval);\n\t\t\t};\n\n\t\t\tthis.cancel = function() {\n\t\t\t\tclearTimeout(this.timeout);\n\t\t\t};\n\t\t};\n\n\t\t/**\n\t * Monitor request completion.\n\t * @ignore\n\t */\n\t\tvar Timeout = function(client, timeoutSeconds, action, args) {\n\t\t\tif (!timeoutSeconds)\n\t\t\t\ttimeoutSeconds = 30;\n\n\t\t\tvar doTimeout = function (action, client, args) {\n\t\t\t\treturn function () {\n\t\t\t\t\treturn action.apply(client, args);\n\t\t\t\t};\n\t\t\t};\n\t\t\tthis.timeout = setTimeout(doTimeout(action, client, args), timeoutSeconds * 1000);\n\n\t\t\tthis.cancel = function() {\n\t\t\t\tclearTimeout(this.timeout);\n\t\t\t};\n\t\t};\n\n\t/**\n\t * Internal implementation of the Websockets MQTT V3.1 client.\n\t *\n\t * @name Paho.ClientImpl @constructor\n\t * @param {String} host the DNS nameof the webSocket host.\n\t * @param {Number} port the port number for that host.\n\t * @param {String} clientId the MQ client identifier.\n\t */\n\t\tvar ClientImpl = function (uri, host, port, path, clientId) {\n\t\t// Check dependencies are satisfied in this browser.\n\t\t\tif (!(\"WebSocket\" in global && global.WebSocket !== null)) {\n\t\t\t\tthrow new Error(format(ERROR.UNSUPPORTED, [\"WebSocket\"]));\n\t\t\t}\n\t\t\tif (!(\"ArrayBuffer\" in global && global.ArrayBuffer !== null)) {\n\t\t\t\tthrow new Error(format(ERROR.UNSUPPORTED, [\"ArrayBuffer\"]));\n\t\t\t}\n\t\t\tthis._trace(\"Paho.Client\", uri, host, port, path, clientId);\n\n\t\t\tthis.host = host;\n\t\t\tthis.port = port;\n\t\t\tthis.path = path;\n\t\t\tthis.uri = uri;\n\t\t\tthis.clientId = clientId;\n\t\t\tthis._wsuri = null;\n\n\t\t\t// Local storagekeys are qualified with the following string.\n\t\t\t// The conditional inclusion of path in the key is for backward\n\t\t\t// compatibility to when the path was not configurable and assumed to\n\t\t\t// be /mqtt\n\t\t\tthis._localKey=host+\":\"+port+(path!=\"/mqtt\"?\":\"+path:\"\")+\":\"+clientId+\":\";\n\n\t\t\t// Create private instance-only message queue\n\t\t\t// Internal queue of messages to be sent, in sending order.\n\t\t\tthis._msg_queue = [];\n\t\t\tthis._buffered_msg_queue = [];\n\n\t\t\t// Messages we have sent and are expecting a response for, indexed by their respective message ids.\n\t\t\tthis._sentMessages = {};\n\n\t\t\t// Messages we have received and acknowleged and are expecting a confirm message for\n\t\t\t// indexed by their respective message ids.\n\t\t\tthis._receivedMessages = {};\n\n\t\t\t// Internal list of callbacks to be executed when messages\n\t\t\t// have been successfully sent over web socket, e.g. disconnect\n\t\t\t// when it doesn't have to wait for ACK, just message is dispatched.\n\t\t\tthis._notify_msg_sent = {};\n\n\t\t\t// Unique identifier for SEND messages, incrementing\n\t\t\t// counter as messages are sent.\n\t\t\tthis._message_identifier = 1;\n\n\t\t\t// Used to determine the transmission sequence of stored sent messages.\n\t\t\tthis._sequence = 0;\n\n\n\t\t\t// Load the local state, if any, from the saved version, only restore state relevant to this client.\n\t\t\tfor (var key in localStorage)\n\t\t\t\tif ( key.indexOf(\"Sent:\"+this._localKey) === 0 || key.indexOf(\"Received:\"+this._localKey) === 0)\n\t\t\t\t\tthis.restore(key);\n\t\t};\n\n\t\t// Messaging Client public instance members.\n\t\tClientImpl.prototype.host = null;\n\t\tClientImpl.prototype.port = null;\n\t\tClientImpl.prototype.path = null;\n\t\tClientImpl.prototype.uri = null;\n\t\tClientImpl.prototype.clientId = null;\n\n\t\t// Messaging Client private instance members.\n\t\tClientImpl.prototype.socket = null;\n\t\t/* true once we have received an acknowledgement to a CONNECT packet. */\n\t\tClientImpl.prototype.connected = false;\n\t\t/* The largest message identifier allowed, may not be larger than 2**16 but\n\t\t * if set smaller reduces the maximum number of outbound messages allowed.\n\t\t */\n\t\tClientImpl.prototype.maxMessageIdentifier = 65536;\n\t\tClientImpl.prototype.connectOptions = null;\n\t\tClientImpl.prototype.hostIndex = null;\n\t\tClientImpl.prototype.onConnected = null;\n\t\tClientImpl.prototype.onConnectionLost = null;\n\t\tClientImpl.prototype.onMessageDelivered = null;\n\t\tClientImpl.prototype.onMessageArrived = null;\n\t\tClientImpl.prototype.traceFunction = null;\n\t\tClientImpl.prototype._msg_queue = null;\n\t\tClientImpl.prototype._buffered_msg_queue = null;\n\t\tClientImpl.prototype._connectTimeout = null;\n\t\t/* The sendPinger monitors how long we allow before we send data to prove to the server that we are alive. */\n\t\tClientImpl.prototype.sendPinger = null;\n\t\t/* The receivePinger monitors how long we allow before we require evidence that the server is alive. */\n\t\tClientImpl.prototype.receivePinger = null;\n\t\tClientImpl.prototype._reconnectInterval = 1; // Reconnect Delay, starts at 1 second\n\t\tClientImpl.prototype._reconnecting = false;\n\t\tClientImpl.prototype._reconnectTimeout = null;\n\t\tClientImpl.prototype.disconnectedPublishing = false;\n\t\tClientImpl.prototype.disconnectedBufferSize = 5000;\n\n\t\tClientImpl.prototype.receiveBuffer = null;\n\n\t\tClientImpl.prototype._traceBuffer = null;\n\t\tClientImpl.prototype._MAX_TRACE_ENTRIES = 100;\n\n\t\tClientImpl.prototype.connect = function (connectOptions) {\n\t\t\tvar connectOptionsMasked = this._traceMask(connectOptions, \"password\");\n\t\t\tthis._trace(\"Client.connect\", connectOptionsMasked, this.socket, this.connected);\n\n\t\t\tif (this.connected)\n\t\t\t\tthrow new Error(format(ERROR.INVALID_STATE, [\"already connected\"]));\n\t\t\tif (this.socket)\n\t\t\t\tthrow new Error(format(ERROR.INVALID_STATE, [\"already connected\"]));\n\n\t\t\tif (this._reconnecting) {\n\t\t\t// connect() function is called while reconnect is in progress.\n\t\t\t// Terminate the auto reconnect process to use new connect options.\n\t\t\t\tthis._reconnectTimeout.cancel();\n\t\t\t\tthis._reconnectTimeout = null;\n\t\t\t\tthis._reconnecting = false;\n\t\t\t}\n\n\t\t\tthis.connectOptions = connectOptions;\n\t\t\tthis._reconnectInterval = 1;\n\t\t\tthis._reconnecting = false;\n\t\t\tif (connectOptions.uris) {\n\t\t\t\tthis.hostIndex = 0;\n\t\t\t\tthis._doConnect(connectOptions.uris[0]);\n\t\t\t} else {\n\t\t\t\tthis._doConnect(this.uri);\n\t\t\t}\n\n\t\t};\n\n\t\tClientImpl.prototype.subscribe = function (filter, subscribeOptions) {\n\t\t\tthis._trace(\"Client.subscribe\", filter, subscribeOptions);\n\n\t\t\tif (!this.connected)\n\t\t\t\tthrow new Error(format(ERROR.INVALID_STATE, [\"not connected\"]));\n\n var wireMessage = new WireMessage(MESSAGE_TYPE.SUBSCRIBE);\n wireMessage.topics = filter.constructor === Array ? filter : [filter];\n if (subscribeOptions.qos === undefined)\n subscribeOptions.qos = 0;\n wireMessage.requestedQos = [];\n for (var i = 0; i < wireMessage.topics.length; i++)\n wireMessage.requestedQos[i] = subscribeOptions.qos;\n\n\t\t\tif (subscribeOptions.onSuccess) {\n\t\t\t\twireMessage.onSuccess = function(grantedQos) {subscribeOptions.onSuccess({invocationContext:subscribeOptions.invocationContext,grantedQos:grantedQos});};\n\t\t\t}\n\n\t\t\tif (subscribeOptions.onFailure) {\n\t\t\t\twireMessage.onFailure = function(errorCode) {subscribeOptions.onFailure({invocationContext:subscribeOptions.invocationContext,errorCode:errorCode, errorMessage:format(errorCode)});};\n\t\t\t}\n\n\t\t\tif (subscribeOptions.timeout) {\n\t\t\t\twireMessage.timeOut = new Timeout(this, subscribeOptions.timeout, subscribeOptions.onFailure,\n\t\t\t\t\t[{invocationContext:subscribeOptions.invocationContext,\n\t\t\t\t\t\terrorCode:ERROR.SUBSCRIBE_TIMEOUT.code,\n\t\t\t\t\t\terrorMessage:format(ERROR.SUBSCRIBE_TIMEOUT)}]);\n\t\t\t}\n\n\t\t\t// All subscriptions return a SUBACK.\n\t\t\tthis._requires_ack(wireMessage);\n\t\t\tthis._schedule_message(wireMessage);\n\t\t};\n\n\t\t/** @ignore */\n\t\tClientImpl.prototype.unsubscribe = function(filter, unsubscribeOptions) {\n\t\t\tthis._trace(\"Client.unsubscribe\", filter, unsubscribeOptions);\n\n\t\t\tif (!this.connected)\n\t\t\t\tthrow new Error(format(ERROR.INVALID_STATE, [\"not connected\"]));\n\n var wireMessage = new WireMessage(MESSAGE_TYPE.UNSUBSCRIBE);\n wireMessage.topics = filter.constructor === Array ? filter : [filter];\n\n\t\t\tif (unsubscribeOptions.onSuccess) {\n\t\t\t\twireMessage.callback = function() {unsubscribeOptions.onSuccess({invocationContext:unsubscribeOptions.invocationContext});};\n\t\t\t}\n\t\t\tif (unsubscribeOptions.timeout) {\n\t\t\t\twireMessage.timeOut = new Timeout(this, unsubscribeOptions.timeout, unsubscribeOptions.onFailure,\n\t\t\t\t\t[{invocationContext:unsubscribeOptions.invocationContext,\n\t\t\t\t\t\terrorCode:ERROR.UNSUBSCRIBE_TIMEOUT.code,\n\t\t\t\t\t\terrorMessage:format(ERROR.UNSUBSCRIBE_TIMEOUT)}]);\n\t\t\t}\n\n\t\t\t// All unsubscribes return a SUBACK.\n\t\t\tthis._requires_ack(wireMessage);\n\t\t\tthis._schedule_message(wireMessage);\n\t\t};\n\n\t\tClientImpl.prototype.send = function (message) {\n\t\t\tthis._trace(\"Client.send\", message);\n\n\t\t\tvar wireMessage = new WireMessage(MESSAGE_TYPE.PUBLISH);\n\t\t\twireMessage.payloadMessage = message;\n\n\t\t\tif (this.connected) {\n\t\t\t// Mark qos 1 & 2 message as \"ACK required\"\n\t\t\t// For qos 0 message, invoke onMessageDelivered callback if there is one.\n\t\t\t// Then schedule the message.\n\t\t\t\tif (message.qos > 0) {\n\t\t\t\t\tthis._requires_ack(wireMessage);\n\t\t\t\t} else if (this.onMessageDelivered) {\n\t\t\t\t\tthis._notify_msg_sent[wireMessage] = this.onMessageDelivered(wireMessage.payloadMessage);\n\t\t\t\t}\n\t\t\t\tthis._schedule_message(wireMessage);\n\t\t\t} else {\n\t\t\t// Currently disconnected, will not schedule this message\n\t\t\t// Check if reconnecting is in progress and disconnected publish is enabled.\n\t\t\t\tif (this._reconnecting && this.disconnectedPublishing) {\n\t\t\t\t// Check the limit which include the \"required ACK\" messages\n\t\t\t\t\tvar messageCount = Object.keys(this._sentMessages).length + this._buffered_msg_queue.length;\n\t\t\t\t\tif (messageCount > this.disconnectedBufferSize) {\n\t\t\t\t\t\tthrow new Error(format(ERROR.BUFFER_FULL, [this.disconnectedBufferSize]));\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif (message.qos > 0) {\n\t\t\t\t\t\t// Mark this message as \"ACK required\"\n\t\t\t\t\t\t\tthis._requires_ack(wireMessage);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\twireMessage.sequence = ++this._sequence;\n\t\t\t\t\t\t\t// Add messages in fifo order to array, by adding to start\n\t\t\t\t\t\t\tthis._buffered_msg_queue.unshift(wireMessage);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tthrow new Error(format(ERROR.INVALID_STATE, [\"not connected\"]));\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\tClientImpl.prototype.disconnect = function () {\n\t\t\tthis._trace(\"Client.disconnect\");\n\n\t\t\tif (this._reconnecting) {\n\t\t\t// disconnect() function is called while reconnect is in progress.\n\t\t\t// Terminate the auto reconnect process.\n\t\t\t\tthis._reconnectTimeout.cancel();\n\t\t\t\tthis._reconnectTimeout = null;\n\t\t\t\tthis._reconnecting = false;\n\t\t\t}\n\n\t\t\tif (!this.socket)\n\t\t\t\tthrow new Error(format(ERROR.INVALID_STATE, [\"not connecting or connected\"]));\n\n\t\t\tvar wireMessage = new WireMessage(MESSAGE_TYPE.DISCONNECT);\n\n\t\t\t// Run the disconnected call back as soon as the message has been sent,\n\t\t\t// in case of a failure later on in the disconnect processing.\n\t\t\t// as a consequence, the _disconected call back may be run several times.\n\t\t\tthis._notify_msg_sent[wireMessage] = scope(this._disconnected, this);\n\n\t\t\tthis._schedule_message(wireMessage);\n\t\t};\n\n\t\tClientImpl.prototype.getTraceLog = function () {\n\t\t\tif ( this._traceBuffer !== null ) {\n\t\t\t\tthis._trace(\"Client.getTraceLog\", new Date());\n\t\t\t\tthis._trace(\"Client.getTraceLog in flight messages\", this._sentMessages.length);\n\t\t\t\tfor (var key in this._sentMessages)\n\t\t\t\t\tthis._trace(\"_sentMessages \",key, this._sentMessages[key]);\n\t\t\t\tfor (var key in this._receivedMessages)\n\t\t\t\t\tthis._trace(\"_receivedMessages \",key, this._receivedMessages[key]);\n\n\t\t\t\treturn this._traceBuffer;\n\t\t\t}\n\t\t};\n\n\t\tClientImpl.prototype.startTrace = function () {\n\t\t\tif ( this._traceBuffer === null ) {\n\t\t\t\tthis._traceBuffer = [];\n\t\t\t}\n\t\t\tthis._trace(\"Client.startTrace\", new Date(), version);\n\t\t};\n\n\t\tClientImpl.prototype.stopTrace = function () {\n\t\t\tdelete this._traceBuffer;\n\t\t};\n\n\t\tClientImpl.prototype._doConnect = function (wsurl) {\n\t\t// When the socket is open, this client will send the CONNECT WireMessage using the saved parameters.\n\t\t\tif (this.connectOptions.useSSL) {\n\t\t\t\tvar uriParts = wsurl.split(\":\");\n\t\t\t\turiParts[0] = \"wss\";\n\t\t\t\twsurl = uriParts.join(\":\");\n\t\t\t}\n\t\t\tthis._wsuri = wsurl;\n\t\t\tthis.connected = false;\n\n\n\n\t\t\tif (this.connectOptions.mqttVersion < 4) {\n\t\t\t\tthis.socket = new WebSocket(wsurl, [\"mqttv3.1\"]);\n\t\t\t} else {\n\t\t\t\tthis.socket = new WebSocket(wsurl, [\"mqtt\"]);\n\t\t\t}\n\t\t\tthis.socket.binaryType = \"arraybuffer\";\n\t\t\tthis.socket.onopen = scope(this._on_socket_open, this);\n\t\t\tthis.socket.onmessage = scope(this._on_socket_message, this);\n\t\t\tthis.socket.onerror = scope(this._on_socket_error, this);\n\t\t\tthis.socket.onclose = scope(this._on_socket_close, this);\n\n\t\t\tthis.sendPinger = new Pinger(this, this.connectOptions.keepAliveInterval);\n\t\t\tthis.receivePinger = new Pinger(this, this.connectOptions.keepAliveInterval);\n\t\t\tif (this._connectTimeout) {\n\t\t\t\tthis._connectTimeout.cancel();\n\t\t\t\tthis._connectTimeout = null;\n\t\t\t}\n\t\t\tthis._connectTimeout = new Timeout(this, this.connectOptions.timeout, this._disconnected, [ERROR.CONNECT_TIMEOUT.code, format(ERROR.CONNECT_TIMEOUT)]);\n\t\t};\n\n\n\t\t// Schedule a new message to be sent over the WebSockets\n\t\t// connection. CONNECT messages cause WebSocket connection\n\t\t// to be started. All other messages are queued internally\n\t\t// until this has happened. When WS connection starts, process\n\t\t// all outstanding messages.\n\t\tClientImpl.prototype._schedule_message = function (message) {\n\t\t\t// Add messages in fifo order to array, by adding to start\n\t\t\tthis._msg_queue.unshift(message);\n\t\t\t// Process outstanding messages in the queue if we have an open socket, and have received CONNACK.\n\t\t\tif (this.connected) {\n\t\t\t\tthis._process_queue();\n\t\t\t}\n\t\t};\n\n\t\tClientImpl.prototype.store = function(prefix, wireMessage) {\n\t\t\tvar storedMessage = {type:wireMessage.type, messageIdentifier:wireMessage.messageIdentifier, version:1};\n\n\t\t\tswitch(wireMessage.type) {\n\t\t\tcase MESSAGE_TYPE.PUBLISH:\n\t\t\t\tif(wireMessage.pubRecReceived)\n\t\t\t\t\tstoredMessage.pubRecReceived = true;\n\n\t\t\t\t// Convert the payload to a hex string.\n\t\t\t\tstoredMessage.payloadMessage = {};\n\t\t\t\tvar hex = \"\";\n\t\t\t\tvar messageBytes = wireMessage.payloadMessage.payloadBytes;\n\t\t\t\tfor (var i=0; i= 2) {\n\t\t\t\t\tvar x = parseInt(hex.substring(0, 2), 16);\n\t\t\t\t\thex = hex.substring(2, hex.length);\n\t\t\t\t\tbyteStream[i++] = x;\n\t\t\t\t}\n\t\t\t\tvar payloadMessage = new Message(byteStream);\n\n\t\t\t\tpayloadMessage.qos = storedMessage.payloadMessage.qos;\n\t\t\t\tpayloadMessage.destinationName = storedMessage.payloadMessage.destinationName;\n\t\t\t\tif (storedMessage.payloadMessage.duplicate)\n\t\t\t\t\tpayloadMessage.duplicate = true;\n\t\t\t\tif (storedMessage.payloadMessage.retained)\n\t\t\t\t\tpayloadMessage.retained = true;\n\t\t\t\twireMessage.payloadMessage = payloadMessage;\n\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tthrow Error(format(ERROR.INVALID_STORED_DATA, [key, value]));\n\t\t\t}\n\n\t\t\tif (key.indexOf(\"Sent:\"+this._localKey) === 0) {\n\t\t\t\twireMessage.payloadMessage.duplicate = true;\n\t\t\t\tthis._sentMessages[wireMessage.messageIdentifier] = wireMessage;\n\t\t\t} else if (key.indexOf(\"Received:\"+this._localKey) === 0) {\n\t\t\t\tthis._receivedMessages[wireMessage.messageIdentifier] = wireMessage;\n\t\t\t}\n\t\t};\n\n\t\tClientImpl.prototype._process_queue = function () {\n\t\t\tvar message = null;\n\n\t\t\t// Send all queued messages down socket connection\n\t\t\twhile ((message = this._msg_queue.pop())) {\n\t\t\t\tthis._socket_send(message);\n\t\t\t\t// Notify listeners that message was successfully sent\n\t\t\t\tif (this._notify_msg_sent[message]) {\n\t\t\t\t\tthis._notify_msg_sent[message]();\n\t\t\t\t\tdelete this._notify_msg_sent[message];\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\t/**\n\t * Expect an ACK response for this message. Add message to the set of in progress\n\t * messages and set an unused identifier in this message.\n\t * @ignore\n\t */\n\t\tClientImpl.prototype._requires_ack = function (wireMessage) {\n\t\t\tvar messageCount = Object.keys(this._sentMessages).length;\n\t\t\tif (messageCount > this.maxMessageIdentifier)\n\t\t\t\tthrow Error (\"Too many messages:\"+messageCount);\n\n\t\t\twhile(this._sentMessages[this._message_identifier] !== undefined) {\n\t\t\t\tthis._message_identifier++;\n\t\t\t}\n\t\t\twireMessage.messageIdentifier = this._message_identifier;\n\t\t\tthis._sentMessages[wireMessage.messageIdentifier] = wireMessage;\n\t\t\tif (wireMessage.type === MESSAGE_TYPE.PUBLISH) {\n\t\t\t\tthis.store(\"Sent:\", wireMessage);\n\t\t\t}\n\t\t\tif (this._message_identifier === this.maxMessageIdentifier) {\n\t\t\t\tthis._message_identifier = 1;\n\t\t\t}\n\t\t};\n\n\t\t/**\n\t * Called when the underlying websocket has been opened.\n\t * @ignore\n\t */\n\t\tClientImpl.prototype._on_socket_open = function () {\n\t\t// Create the CONNECT message object.\n\t\t\tvar wireMessage = new WireMessage(MESSAGE_TYPE.CONNECT, this.connectOptions);\n\t\t\twireMessage.clientId = this.clientId;\n\t\t\tthis._socket_send(wireMessage);\n\t\t};\n\n\t\t/**\n\t * Called when the underlying websocket has received a complete packet.\n\t * @ignore\n\t */\n\t\tClientImpl.prototype._on_socket_message = function (event) {\n\t\t\tthis._trace(\"Client._on_socket_message\", event.data);\n\t\t\tvar messages = this._deframeMessages(event.data);\n\t\t\tfor (var i = 0; i < messages.length; i+=1) {\n\t\t\t\tthis._handleMessage(messages[i]);\n\t\t\t}\n\t\t};\n\n\t\tClientImpl.prototype._deframeMessages = function(data) {\n\t\t\tvar byteArray = new Uint8Array(data);\n\t\t\tvar messages = [];\n\t\t\tif (this.receiveBuffer) {\n\t\t\t\tvar newData = new Uint8Array(this.receiveBuffer.length+byteArray.length);\n\t\t\t\tnewData.set(this.receiveBuffer);\n\t\t\t\tnewData.set(byteArray,this.receiveBuffer.length);\n\t\t\t\tbyteArray = newData;\n\t\t\t\tdelete this.receiveBuffer;\n\t\t\t}\n\t\t\ttry {\n\t\t\t\tvar offset = 0;\n\t\t\t\twhile(offset < byteArray.length) {\n\t\t\t\t\tvar result = decodeMessage(byteArray,offset);\n\t\t\t\t\tvar wireMessage = result[0];\n\t\t\t\t\toffset = result[1];\n\t\t\t\t\tif (wireMessage !== null) {\n\t\t\t\t\t\tmessages.push(wireMessage);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (offset < byteArray.length) {\n\t\t\t\t\tthis.receiveBuffer = byteArray.subarray(offset);\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tvar errorStack = ((error.hasOwnProperty(\"stack\") == \"undefined\") ? error.stack.toString() : \"No Error Stack Available\");\n\t\t\t\tthis._disconnected(ERROR.INTERNAL_ERROR.code , format(ERROR.INTERNAL_ERROR, [error.message,errorStack]));\n\t\t\t\treturn;\n\t\t\t}\n\t\t\treturn messages;\n\t\t};\n\n\t\tClientImpl.prototype._handleMessage = function(wireMessage) {\n\n\t\t\tthis._trace(\"Client._handleMessage\", wireMessage);\n\n\t\t\ttry {\n\t\t\t\tswitch(wireMessage.type) {\n\t\t\t\tcase MESSAGE_TYPE.CONNACK:\n\t\t\t\t\tthis._connectTimeout.cancel();\n\t\t\t\t\tif (this._reconnectTimeout)\n\t\t\t\t\t\tthis._reconnectTimeout.cancel();\n\n\t\t\t\t\t// If we have started using clean session then clear up the local state.\n\t\t\t\t\tif (this.connectOptions.cleanSession) {\n\t\t\t\t\t\tfor (var key in this._sentMessages) {\n\t\t\t\t\t\t\tvar sentMessage = this._sentMessages[key];\n\t\t\t\t\t\t\tlocalStorage.removeItem(\"Sent:\"+this._localKey+sentMessage.messageIdentifier);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tthis._sentMessages = {};\n\n\t\t\t\t\t\tfor (var key in this._receivedMessages) {\n\t\t\t\t\t\t\tvar receivedMessage = this._receivedMessages[key];\n\t\t\t\t\t\t\tlocalStorage.removeItem(\"Received:\"+this._localKey+receivedMessage.messageIdentifier);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tthis._receivedMessages = {};\n\t\t\t\t\t}\n\t\t\t\t\t// Client connected and ready for business.\n\t\t\t\t\tif (wireMessage.returnCode === 0) {\n\n\t\t\t\t\t\tthis.connected = true;\n\t\t\t\t\t\t// Jump to the end of the list of uris and stop looking for a good host.\n\n\t\t\t\t\t\tif (this.connectOptions.uris)\n\t\t\t\t\t\t\tthis.hostIndex = this.connectOptions.uris.length;\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis._disconnected(ERROR.CONNACK_RETURNCODE.code , format(ERROR.CONNACK_RETURNCODE, [wireMessage.returnCode, CONNACK_RC[wireMessage.returnCode]]));\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Resend messages.\n\t\t\t\t\tvar sequencedMessages = [];\n\t\t\t\t\tfor (var msgId in this._sentMessages) {\n\t\t\t\t\t\tif (this._sentMessages.hasOwnProperty(msgId))\n\t\t\t\t\t\t\tsequencedMessages.push(this._sentMessages[msgId]);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Also schedule qos 0 buffered messages if any\n\t\t\t\t\tif (this._buffered_msg_queue.length > 0) {\n\t\t\t\t\t\tvar msg = null;\n\t\t\t\t\t\twhile ((msg = this._buffered_msg_queue.pop())) {\n\t\t\t\t\t\t\tsequencedMessages.push(msg);\n\t\t\t\t\t\t\tif (this.onMessageDelivered)\n\t\t\t\t\t\t\t\tthis._notify_msg_sent[msg] = this.onMessageDelivered(msg.payloadMessage);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Sort sentMessages into the original sent order.\n\t\t\t\t\tvar sequencedMessages = sequencedMessages.sort(function(a,b) {return a.sequence - b.sequence;} );\n\t\t\t\t\tfor (var i=0, len=sequencedMessages.length; i\n\t * Most applications will create just one Client object and then call its connect() method,\n\t * however applications can create more than one Client object if they wish.\n\t * In this case the combination of host, port and clientId attributes must be different for each Client object.\n\t *

\n\t * The send, subscribe and unsubscribe methods are implemented as asynchronous JavaScript methods\n\t * (even though the underlying protocol exchange might be synchronous in nature).\n\t * This means they signal their completion by calling back to the application,\n\t * via Success or Failure callback functions provided by the application on the method in question.\n\t * Such callbacks are called at most once per method invocation and do not persist beyond the lifetime\n\t * of the script that made the invocation.\n\t *

\n\t * In contrast there are some callback functions, most notably onMessageArrived,\n\t * that are defined on the {@link Paho.Client} object.\n\t * These may get called multiple times, and aren't directly related to specific method invocations made by the client.\n\t *\n\t * @name Paho.Client\n\t *\n\t * @constructor\n\t *\n\t * @param {string} host - the address of the messaging server, as a fully qualified WebSocket URI, as a DNS name or dotted decimal IP address.\n\t * @param {number} port - the port number to connect to - only required if host is not a URI\n\t * @param {string} path - the path on the host to connect to - only used if host is not a URI. Default: '/mqtt'.\n\t * @param {string} clientId - the Messaging client identifier, between 1 and 23 characters in length.\n\t *\n\t * @property {string} host - read only the server's DNS hostname or dotted decimal IP address.\n\t * @property {number} port - read only the server's port.\n\t * @property {string} path - read only the server's path.\n\t * @property {string} clientId - read only used when connecting to the server.\n\t * @property {function} onConnectionLost - called when a connection has been lost.\n\t * after a connect() method has succeeded.\n\t * Establish the call back used when a connection has been lost. The connection may be\n\t * lost because the client initiates a disconnect or because the server or network\n\t * cause the client to be disconnected. The disconnect call back may be called without\n\t * the connectionComplete call back being invoked if, for example the client fails to\n\t * connect.\n\t * A single response object parameter is passed to the onConnectionLost callback containing the following fields:\n\t *

    \n\t *
  1. errorCode\n\t *
  2. errorMessage\n\t *
\n\t * @property {function} onMessageDelivered - called when a message has been delivered.\n\t * All processing that this Client will ever do has been completed. So, for example,\n\t * in the case of a Qos=2 message sent by this client, the PubComp flow has been received from the server\n\t * and the message has been removed from persistent storage before this callback is invoked.\n\t * Parameters passed to the onMessageDelivered callback are:\n\t *
    \n\t *
  1. {@link Paho.Message} that was delivered.\n\t *
\n\t * @property {function} onMessageArrived - called when a message has arrived in this Paho.client.\n\t * Parameters passed to the onMessageArrived callback are:\n\t *
    \n\t *
  1. {@link Paho.Message} that has arrived.\n\t *
\n\t * @property {function} onConnected - called when a connection is successfully made to the server.\n\t * after a connect() method.\n\t * Parameters passed to the onConnected callback are:\n\t *
    \n\t *
  1. reconnect (boolean) - If true, the connection was the result of a reconnect.
  2. \n\t *
  3. URI (string) - The URI used to connect to the server.
  4. \n\t *
\n\t * @property {boolean} disconnectedPublishing - if set, will enable disconnected publishing in\n\t * in the event that the connection to the server is lost.\n\t * @property {number} disconnectedBufferSize - Used to set the maximum number of messages that the disconnected\n\t * buffer will hold before rejecting new messages. Default size: 5000 messages\n\t * @property {function} trace - called whenever trace is called. TODO\n\t */\n\t\tvar Client = function (host, port, path, clientId) {\n\n\t\t\tvar uri;\n\n\t\t\tif (typeof host !== \"string\")\n\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof host, \"host\"]));\n\n\t\t\tif (arguments.length == 2) {\n\t\t\t// host: must be full ws:// uri\n\t\t\t// port: clientId\n\t\t\t\tclientId = port;\n\t\t\t\turi = host;\n\t\t\t\tvar match = uri.match(/^(wss?):\\/\\/((\\[(.+)\\])|([^\\/]+?))(:(\\d+))?(\\/.*)$/);\n\t\t\t\tif (match) {\n\t\t\t\t\thost = match[4]||match[2];\n\t\t\t\t\tport = parseInt(match[7]);\n\t\t\t\t\tpath = match[8];\n\t\t\t\t} else {\n\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT,[host,\"host\"]));\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (arguments.length == 3) {\n\t\t\t\t\tclientId = path;\n\t\t\t\t\tpath = \"/mqtt\";\n\t\t\t\t}\n\t\t\t\tif (typeof port !== \"number\" || port < 0)\n\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof port, \"port\"]));\n\t\t\t\tif (typeof path !== \"string\")\n\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof path, \"path\"]));\n\n\t\t\t\tvar ipv6AddSBracket = (host.indexOf(\":\") !== -1 && host.slice(0,1) !== \"[\" && host.slice(-1) !== \"]\");\n\t\t\t\turi = \"ws://\"+(ipv6AddSBracket?\"[\"+host+\"]\":host)+\":\"+port+path;\n\t\t\t}\n\n\t\t\tvar clientIdLength = 0;\n\t\t\tfor (var i = 0; i 65535)\n\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT, [clientId, \"clientId\"]));\n\n\t\t\tvar client = new ClientImpl(uri, host, port, path, clientId);\n\n\t\t\t//Public Properties\n\t\t\tObject.defineProperties(this,{\n\t\t\t\t\"host\":{\n\t\t\t\t\tget: function() { return host; },\n\t\t\t\t\tset: function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }\n\t\t\t\t},\n\t\t\t\t\"port\":{\n\t\t\t\t\tget: function() { return port; },\n\t\t\t\t\tset: function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }\n\t\t\t\t},\n\t\t\t\t\"path\":{\n\t\t\t\t\tget: function() { return path; },\n\t\t\t\t\tset: function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }\n\t\t\t\t},\n\t\t\t\t\"uri\":{\n\t\t\t\t\tget: function() { return uri; },\n\t\t\t\t\tset: function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }\n\t\t\t\t},\n\t\t\t\t\"clientId\":{\n\t\t\t\t\tget: function() { return client.clientId; },\n\t\t\t\t\tset: function() { throw new Error(format(ERROR.UNSUPPORTED_OPERATION)); }\n\t\t\t\t},\n\t\t\t\t\"onConnected\":{\n\t\t\t\t\tget: function() { return client.onConnected; },\n\t\t\t\t\tset: function(newOnConnected) {\n\t\t\t\t\t\tif (typeof newOnConnected === \"function\")\n\t\t\t\t\t\t\tclient.onConnected = newOnConnected;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof newOnConnected, \"onConnected\"]));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"disconnectedPublishing\":{\n\t\t\t\t\tget: function() { return client.disconnectedPublishing; },\n\t\t\t\t\tset: function(newDisconnectedPublishing) {\n\t\t\t\t\t\tclient.disconnectedPublishing = newDisconnectedPublishing;\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"disconnectedBufferSize\":{\n\t\t\t\t\tget: function() { return client.disconnectedBufferSize; },\n\t\t\t\t\tset: function(newDisconnectedBufferSize) {\n\t\t\t\t\t\tclient.disconnectedBufferSize = newDisconnectedBufferSize;\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"onConnectionLost\":{\n\t\t\t\t\tget: function() { return client.onConnectionLost; },\n\t\t\t\t\tset: function(newOnConnectionLost) {\n\t\t\t\t\t\tif (typeof newOnConnectionLost === \"function\")\n\t\t\t\t\t\t\tclient.onConnectionLost = newOnConnectionLost;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof newOnConnectionLost, \"onConnectionLost\"]));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"onMessageDelivered\":{\n\t\t\t\t\tget: function() { return client.onMessageDelivered; },\n\t\t\t\t\tset: function(newOnMessageDelivered) {\n\t\t\t\t\t\tif (typeof newOnMessageDelivered === \"function\")\n\t\t\t\t\t\t\tclient.onMessageDelivered = newOnMessageDelivered;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof newOnMessageDelivered, \"onMessageDelivered\"]));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"onMessageArrived\":{\n\t\t\t\t\tget: function() { return client.onMessageArrived; },\n\t\t\t\t\tset: function(newOnMessageArrived) {\n\t\t\t\t\t\tif (typeof newOnMessageArrived === \"function\")\n\t\t\t\t\t\t\tclient.onMessageArrived = newOnMessageArrived;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof newOnMessageArrived, \"onMessageArrived\"]));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"trace\":{\n\t\t\t\t\tget: function() { return client.traceFunction; },\n\t\t\t\t\tset: function(trace) {\n\t\t\t\t\t\tif(typeof trace === \"function\"){\n\t\t\t\t\t\t\tclient.traceFunction = trace;\n\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof trace, \"onTrace\"]));\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t});\n\n\t\t\t/**\n\t\t * Connect this Messaging client to its server.\n\t\t *\n\t\t * @name Paho.Client#connect\n\t\t * @function\n\t\t * @param {object} connectOptions - Attributes used with the connection.\n\t\t * @param {number} connectOptions.timeout - If the connect has not succeeded within this\n\t\t * number of seconds, it is deemed to have failed.\n\t\t * The default is 30 seconds.\n\t\t * @param {string} connectOptions.userName - Authentication username for this connection.\n\t\t * @param {string} connectOptions.password - Authentication password for this connection.\n\t\t * @param {Paho.Message} connectOptions.willMessage - sent by the server when the client\n\t\t * disconnects abnormally.\n\t\t * @param {number} connectOptions.keepAliveInterval - the server disconnects this client if\n\t\t * there is no activity for this number of seconds.\n\t\t * The default value of 60 seconds is assumed if not set.\n\t\t * @param {boolean} connectOptions.cleanSession - if true(default) the client and server\n\t\t * persistent state is deleted on successful connect.\n\t\t * @param {boolean} connectOptions.useSSL - if present and true, use an SSL Websocket connection.\n\t\t * @param {object} connectOptions.invocationContext - passed to the onSuccess callback or onFailure callback.\n\t\t * @param {function} connectOptions.onSuccess - called when the connect acknowledgement\n\t\t * has been received from the server.\n\t\t * A single response object parameter is passed to the onSuccess callback containing the following fields:\n\t\t *
    \n\t\t *
  1. invocationContext as passed in to the onSuccess method in the connectOptions.\n\t\t *
\n\t * @param {function} connectOptions.onFailure - called when the connect request has failed or timed out.\n\t\t * A single response object parameter is passed to the onFailure callback containing the following fields:\n\t\t *
    \n\t\t *
  1. invocationContext as passed in to the onFailure method in the connectOptions.\n\t\t *
  2. errorCode a number indicating the nature of the error.\n\t\t *
  3. errorMessage text describing the error.\n\t\t *
\n\t * @param {array} connectOptions.hosts - If present this contains either a set of hostnames or fully qualified\n\t\t * WebSocket URIs (ws://iot.eclipse.org:80/ws), that are tried in order in place\n\t\t * of the host and port paramater on the construtor. The hosts are tried one at at time in order until\n\t\t * one of then succeeds.\n\t * @param {array} connectOptions.ports - If present the set of ports matching the hosts. If hosts contains URIs, this property\n\t\t * is not used.\n\t * @param {boolean} connectOptions.reconnect - Sets whether the client will automatically attempt to reconnect\n\t * to the server if the connection is lost.\n\t *
    \n\t *
  • If set to false, the client will not attempt to automatically reconnect to the server in the event that the\n\t * connection is lost.
  • \n\t *
  • If set to true, in the event that the connection is lost, the client will attempt to reconnect to the server.\n\t * It will initially wait 1 second before it attempts to reconnect, for every failed reconnect attempt, the delay\n\t * will double until it is at 2 minutes at which point the delay will stay at 2 minutes.
  • \n\t *
\n\t * @param {number} connectOptions.mqttVersion - The version of MQTT to use to connect to the MQTT Broker.\n\t *
    \n\t *
  • 3 - MQTT V3.1
  • \n\t *
  • 4 - MQTT V3.1.1
  • \n\t *
\n\t * @param {boolean} connectOptions.mqttVersionExplicit - If set to true, will force the connection to use the\n\t * selected MQTT Version or will fail to connect.\n\t * @param {array} connectOptions.uris - If present, should contain a list of fully qualified WebSocket uris\n\t * (e.g. ws://iot.eclipse.org:80/ws), that are tried in order in place of the host and port parameter of the construtor.\n\t * The uris are tried one at a time in order until one of them succeeds. Do not use this in conjunction with hosts as\n\t * the hosts array will be converted to uris and will overwrite this property.\n\t\t * @throws {InvalidState} If the client is not in disconnected state. The client must have received connectionLost\n\t\t * or disconnected before calling connect for a second or subsequent time.\n\t\t */\n\t\t\tthis.connect = function (connectOptions) {\n\t\t\t\tconnectOptions = connectOptions || {} ;\n\t\t\t\tvalidate(connectOptions, {timeout:\"number\",\n\t\t\t\t\tuserName:\"string\",\n\t\t\t\t\tpassword:\"string\",\n\t\t\t\t\twillMessage:\"object\",\n\t\t\t\t\tkeepAliveInterval:\"number\",\n\t\t\t\t\tcleanSession:\"boolean\",\n\t\t\t\t\tuseSSL:\"boolean\",\n\t\t\t\t\tinvocationContext:\"object\",\n\t\t\t\t\tonSuccess:\"function\",\n\t\t\t\t\tonFailure:\"function\",\n\t\t\t\t\thosts:\"object\",\n\t\t\t\t\tports:\"object\",\n\t\t\t\t\treconnect:\"boolean\",\n\t\t\t\t\tmqttVersion:\"number\",\n\t\t\t\t\tmqttVersionExplicit:\"boolean\",\n\t\t\t\t\turis: \"object\"});\n\n\t\t\t\t// If no keep alive interval is set, assume 60 seconds.\n\t\t\t\tif (connectOptions.keepAliveInterval === undefined)\n\t\t\t\t\tconnectOptions.keepAliveInterval = 60;\n\n\t\t\t\tif (connectOptions.mqttVersion > 4 || connectOptions.mqttVersion < 3) {\n\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.mqttVersion, \"connectOptions.mqttVersion\"]));\n\t\t\t\t}\n\n\t\t\t\tif (connectOptions.mqttVersion === undefined) {\n\t\t\t\t\tconnectOptions.mqttVersionExplicit = false;\n\t\t\t\t\tconnectOptions.mqttVersion = 4;\n\t\t\t\t} else {\n\t\t\t\t\tconnectOptions.mqttVersionExplicit = true;\n\t\t\t\t}\n\n\t\t\t\t//Check that if password is set, so is username\n\t\t\t\tif (connectOptions.password !== undefined && connectOptions.userName === undefined)\n\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.password, \"connectOptions.password\"]));\n\n\t\t\t\tif (connectOptions.willMessage) {\n\t\t\t\t\tif (!(connectOptions.willMessage instanceof Message))\n\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [connectOptions.willMessage, \"connectOptions.willMessage\"]));\n\t\t\t\t\t// The will message must have a payload that can be represented as a string.\n\t\t\t\t\t// Cause the willMessage to throw an exception if this is not the case.\n\t\t\t\t\tconnectOptions.willMessage.stringPayload = null;\n\n\t\t\t\t\tif (typeof connectOptions.willMessage.destinationName === \"undefined\")\n\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_TYPE, [typeof connectOptions.willMessage.destinationName, \"connectOptions.willMessage.destinationName\"]));\n\t\t\t\t}\n\t\t\t\tif (typeof connectOptions.cleanSession === \"undefined\")\n\t\t\t\t\tconnectOptions.cleanSession = true;\n\t\t\t\tif (connectOptions.hosts) {\n\n\t\t\t\t\tif (!(connectOptions.hosts instanceof Array) )\n\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.hosts, \"connectOptions.hosts\"]));\n\t\t\t\t\tif (connectOptions.hosts.length <1 )\n\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT, [connectOptions.hosts, \"connectOptions.hosts\"]));\n\n\t\t\t\t\tvar usingURIs = false;\n\t\t\t\t\tfor (var i = 0; i\n\t\t * @param {object} subscribeOptions - used to control the subscription\n\t\t *\n\t\t * @param {number} subscribeOptions.qos - the maximum qos of any publications sent\n\t\t * as a result of making this subscription.\n\t\t * @param {object} subscribeOptions.invocationContext - passed to the onSuccess callback\n\t\t * or onFailure callback.\n\t\t * @param {function} subscribeOptions.onSuccess - called when the subscribe acknowledgement\n\t\t * has been received from the server.\n\t\t * A single response object parameter is passed to the onSuccess callback containing the following fields:\n\t\t *
    \n\t\t *
  1. invocationContext if set in the subscribeOptions.\n\t\t *
\n\t\t * @param {function} subscribeOptions.onFailure - called when the subscribe request has failed or timed out.\n\t\t * A single response object parameter is passed to the onFailure callback containing the following fields:\n\t\t *
    \n\t\t *
  1. invocationContext - if set in the subscribeOptions.\n\t\t *
  2. errorCode - a number indicating the nature of the error.\n\t\t *
  3. errorMessage - text describing the error.\n\t\t *
\n\t\t * @param {number} subscribeOptions.timeout - which, if present, determines the number of\n\t\t * seconds after which the onFailure calback is called.\n\t\t * The presence of a timeout does not prevent the onSuccess\n\t\t * callback from being called when the subscribe completes.\n\t\t * @throws {InvalidState} if the client is not in connected state.\n\t\t */\n\t\t\tthis.subscribe = function (filter, subscribeOptions) {\n\t\t\t\tif (typeof filter !== \"string\" && filter.constructor !== Array)\n\t\t\t\t\tthrow new Error(\"Invalid argument:\"+filter);\n\t\t\t\tsubscribeOptions = subscribeOptions || {} ;\n\t\t\t\tvalidate(subscribeOptions, {qos:\"number\",\n\t\t\t\t\tinvocationContext:\"object\",\n\t\t\t\t\tonSuccess:\"function\",\n\t\t\t\t\tonFailure:\"function\",\n\t\t\t\t\ttimeout:\"number\"\n\t\t\t\t});\n\t\t\t\tif (subscribeOptions.timeout && !subscribeOptions.onFailure)\n\t\t\t\t\tthrow new Error(\"subscribeOptions.timeout specified with no onFailure callback.\");\n\t\t\t\tif (typeof subscribeOptions.qos !== \"undefined\" && !(subscribeOptions.qos === 0 || subscribeOptions.qos === 1 || subscribeOptions.qos === 2 ))\n\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT, [subscribeOptions.qos, \"subscribeOptions.qos\"]));\n\t\t\t\tclient.subscribe(filter, subscribeOptions);\n\t\t\t};\n\n\t\t/**\n\t\t * Unsubscribe for messages, stop receiving messages sent to destinations described by the filter.\n\t\t *\n\t\t * @name Paho.Client#unsubscribe\n\t\t * @function\n\t\t * @param {string} filter - describing the destinations to receive messages from.\n\t\t * @param {object} unsubscribeOptions - used to control the subscription\n\t\t * @param {object} unsubscribeOptions.invocationContext - passed to the onSuccess callback\n\t\t\t\t\t\t\t\t\t\t\t or onFailure callback.\n\t\t * @param {function} unsubscribeOptions.onSuccess - called when the unsubscribe acknowledgement has been received from the server.\n\t\t * A single response object parameter is passed to the\n\t\t * onSuccess callback containing the following fields:\n\t\t *
    \n\t\t *
  1. invocationContext - if set in the unsubscribeOptions.\n\t\t *
\n\t\t * @param {function} unsubscribeOptions.onFailure called when the unsubscribe request has failed or timed out.\n\t\t * A single response object parameter is passed to the onFailure callback containing the following fields:\n\t\t *
    \n\t\t *
  1. invocationContext - if set in the unsubscribeOptions.\n\t\t *
  2. errorCode - a number indicating the nature of the error.\n\t\t *
  3. errorMessage - text describing the error.\n\t\t *
\n\t\t * @param {number} unsubscribeOptions.timeout - which, if present, determines the number of seconds\n\t\t * after which the onFailure callback is called. The presence of\n\t\t * a timeout does not prevent the onSuccess callback from being\n\t\t * called when the unsubscribe completes\n\t\t * @throws {InvalidState} if the client is not in connected state.\n\t\t */\n\t\t\tthis.unsubscribe = function (filter, unsubscribeOptions) {\n\t\t\t\tif (typeof filter !== \"string\" && filter.constructor !== Array)\n\t\t\t\t\tthrow new Error(\"Invalid argument:\"+filter);\n\t\t\t\tunsubscribeOptions = unsubscribeOptions || {} ;\n\t\t\t\tvalidate(unsubscribeOptions, {invocationContext:\"object\",\n\t\t\t\t\tonSuccess:\"function\",\n\t\t\t\t\tonFailure:\"function\",\n\t\t\t\t\ttimeout:\"number\"\n\t\t\t\t});\n\t\t\t\tif (unsubscribeOptions.timeout && !unsubscribeOptions.onFailure)\n\t\t\t\t\tthrow new Error(\"unsubscribeOptions.timeout specified with no onFailure callback.\");\n\t\t\t\tclient.unsubscribe(filter, unsubscribeOptions);\n\t\t\t};\n\n\t\t\t/**\n\t\t * Send a message to the consumers of the destination in the Message.\n\t\t *\n\t\t * @name Paho.Client#send\n\t\t * @function\n\t\t * @param {string|Paho.Message} topic - mandatory The name of the destination to which the message is to be sent.\n\t\t * \t\t\t\t\t - If it is the only parameter, used as Paho.Message object.\n\t\t * @param {String|ArrayBuffer} payload - The message data to be sent.\n\t\t * @param {number} qos The Quality of Service used to deliver the message.\n\t\t * \t\t
\n\t\t * \t\t\t
0 Best effort (default).\n\t\t * \t\t\t
1 At least once.\n\t\t * \t\t\t
2 Exactly once.\n\t\t * \t\t
\n\t\t * @param {Boolean} retained If true, the message is to be retained by the server and delivered\n\t\t * to both current and future subscriptions.\n\t\t * If false the server only delivers the message to current subscribers, this is the default for new Messages.\n\t\t * A received message has the retained boolean set to true if the message was published\n\t\t * with the retained boolean set to true\n\t\t * and the subscrption was made after the message has been published.\n\t\t * @throws {InvalidState} if the client is not connected.\n\t\t */\n\t\t\tthis.send = function (topic,payload,qos,retained) {\n\t\t\t\tvar message ;\n\n\t\t\t\tif(arguments.length === 0){\n\t\t\t\t\tthrow new Error(\"Invalid argument.\"+\"length\");\n\n\t\t\t\t}else if(arguments.length == 1) {\n\n\t\t\t\t\tif (!(topic instanceof Message) && (typeof topic !== \"string\"))\n\t\t\t\t\t\tthrow new Error(\"Invalid argument:\"+ typeof topic);\n\n\t\t\t\t\tmessage = topic;\n\t\t\t\t\tif (typeof message.destinationName === \"undefined\")\n\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT,[message.destinationName,\"Message.destinationName\"]));\n\t\t\t\t\tclient.send(message);\n\n\t\t\t\t}else {\n\t\t\t\t//parameter checking in Message object\n\t\t\t\t\tmessage = new Message(payload);\n\t\t\t\t\tmessage.destinationName = topic;\n\t\t\t\t\tif(arguments.length >= 3)\n\t\t\t\t\t\tmessage.qos = qos;\n\t\t\t\t\tif(arguments.length >= 4)\n\t\t\t\t\t\tmessage.retained = retained;\n\t\t\t\t\tclient.send(message);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t/**\n\t\t * Publish a message to the consumers of the destination in the Message.\n\t\t * Synonym for Paho.Mqtt.Client#send\n\t\t *\n\t\t * @name Paho.Client#publish\n\t\t * @function\n\t\t * @param {string|Paho.Message} topic - mandatory The name of the topic to which the message is to be published.\n\t\t * \t\t\t\t\t - If it is the only parameter, used as Paho.Message object.\n\t\t * @param {String|ArrayBuffer} payload - The message data to be published.\n\t\t * @param {number} qos The Quality of Service used to deliver the message.\n\t\t * \t\t
\n\t\t * \t\t\t
0 Best effort (default).\n\t\t * \t\t\t
1 At least once.\n\t\t * \t\t\t
2 Exactly once.\n\t\t * \t\t
\n\t\t * @param {Boolean} retained If true, the message is to be retained by the server and delivered\n\t\t * to both current and future subscriptions.\n\t\t * If false the server only delivers the message to current subscribers, this is the default for new Messages.\n\t\t * A received message has the retained boolean set to true if the message was published\n\t\t * with the retained boolean set to true\n\t\t * and the subscrption was made after the message has been published.\n\t\t * @throws {InvalidState} if the client is not connected.\n\t\t */\n\t\t\tthis.publish = function(topic,payload,qos,retained) {\n\t\t\t\tvar message ;\n\n\t\t\t\tif(arguments.length === 0){\n\t\t\t\t\tthrow new Error(\"Invalid argument.\"+\"length\");\n\n\t\t\t\t}else if(arguments.length == 1) {\n\n\t\t\t\t\tif (!(topic instanceof Message) && (typeof topic !== \"string\"))\n\t\t\t\t\t\tthrow new Error(\"Invalid argument:\"+ typeof topic);\n\n\t\t\t\t\tmessage = topic;\n\t\t\t\t\tif (typeof message.destinationName === \"undefined\")\n\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT,[message.destinationName,\"Message.destinationName\"]));\n\t\t\t\t\tclient.send(message);\n\n\t\t\t\t}else {\n\t\t\t\t\t//parameter checking in Message object\n\t\t\t\t\tmessage = new Message(payload);\n\t\t\t\t\tmessage.destinationName = topic;\n\t\t\t\t\tif(arguments.length >= 3)\n\t\t\t\t\t\tmessage.qos = qos;\n\t\t\t\t\tif(arguments.length >= 4)\n\t\t\t\t\t\tmessage.retained = retained;\n\t\t\t\t\tclient.send(message);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\t/**\n\t\t * Normal disconnect of this Messaging client from its server.\n\t\t *\n\t\t * @name Paho.Client#disconnect\n\t\t * @function\n\t\t * @throws {InvalidState} if the client is already disconnected.\n\t\t */\n\t\t\tthis.disconnect = function () {\n\t\t\t\tclient.disconnect();\n\t\t\t};\n\n\t\t\t/**\n\t\t * Get the contents of the trace log.\n\t\t *\n\t\t * @name Paho.Client#getTraceLog\n\t\t * @function\n\t\t * @return {Object[]} tracebuffer containing the time ordered trace records.\n\t\t */\n\t\t\tthis.getTraceLog = function () {\n\t\t\t\treturn client.getTraceLog();\n\t\t\t};\n\n\t\t\t/**\n\t\t * Start tracing.\n\t\t *\n\t\t * @name Paho.Client#startTrace\n\t\t * @function\n\t\t */\n\t\t\tthis.startTrace = function () {\n\t\t\t\tclient.startTrace();\n\t\t\t};\n\n\t\t\t/**\n\t\t * Stop tracing.\n\t\t *\n\t\t * @name Paho.Client#stopTrace\n\t\t * @function\n\t\t */\n\t\t\tthis.stopTrace = function () {\n\t\t\t\tclient.stopTrace();\n\t\t\t};\n\n\t\t\tthis.isConnected = function() {\n\t\t\t\treturn client.connected;\n\t\t\t};\n\t\t};\n\n\t\t/**\n\t * An application message, sent or received.\n\t *

\n\t * All attributes may be null, which implies the default values.\n\t *\n\t * @name Paho.Message\n\t * @constructor\n\t * @param {String|ArrayBuffer} payload The message data to be sent.\n\t *

\n\t * @property {string} payloadString read only The payload as a string if the payload consists of valid UTF-8 characters.\n\t * @property {ArrayBuffer} payloadBytes read only The payload as an ArrayBuffer.\n\t *

\n\t * @property {string} destinationName mandatory The name of the destination to which the message is to be sent\n\t * (for messages about to be sent) or the name of the destination from which the message has been received.\n\t * (for messages received by the onMessage function).\n\t *

\n\t * @property {number} qos The Quality of Service used to deliver the message.\n\t *

\n\t *
0 Best effort (default).\n\t *
1 At least once.\n\t *
2 Exactly once.\n\t *
\n\t *

\n\t * @property {Boolean} retained If true, the message is to be retained by the server and delivered\n\t * to both current and future subscriptions.\n\t * If false the server only delivers the message to current subscribers, this is the default for new Messages.\n\t * A received message has the retained boolean set to true if the message was published\n\t * with the retained boolean set to true\n\t * and the subscrption was made after the message has been published.\n\t *

\n\t * @property {Boolean} duplicate read only If true, this message might be a duplicate of one which has already been received.\n\t * This is only set on messages received from the server.\n\t *\n\t */\n\t\tvar Message = function (newPayload) {\n\t\t\tvar payload;\n\t\t\tif ( typeof newPayload === \"string\" ||\n\t\tnewPayload instanceof ArrayBuffer ||\n\t\t(ArrayBuffer.isView(newPayload) && !(newPayload instanceof DataView))\n\t\t\t) {\n\t\t\t\tpayload = newPayload;\n\t\t\t} else {\n\t\t\t\tthrow (format(ERROR.INVALID_ARGUMENT, [newPayload, \"newPayload\"]));\n\t\t\t}\n\n\t\t\tvar destinationName;\n\t\t\tvar qos = 0;\n\t\t\tvar retained = false;\n\t\t\tvar duplicate = false;\n\n\t\t\tObject.defineProperties(this,{\n\t\t\t\t\"payloadString\":{\n\t\t\t\t\tenumerable : true,\n\t\t\t\t\tget : function () {\n\t\t\t\t\t\tif (typeof payload === \"string\")\n\t\t\t\t\t\t\treturn payload;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\treturn parseUTF8(payload, 0, payload.length);\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"payloadBytes\":{\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tget: function() {\n\t\t\t\t\t\tif (typeof payload === \"string\") {\n\t\t\t\t\t\t\tvar buffer = new ArrayBuffer(UTF8Length(payload));\n\t\t\t\t\t\t\tvar byteStream = new Uint8Array(buffer);\n\t\t\t\t\t\t\tstringToUTF8(payload, byteStream, 0);\n\n\t\t\t\t\t\t\treturn byteStream;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn payload;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"destinationName\":{\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tget: function() { return destinationName; },\n\t\t\t\t\tset: function(newDestinationName) {\n\t\t\t\t\t\tif (typeof newDestinationName === \"string\")\n\t\t\t\t\t\t\tdestinationName = newDestinationName;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT, [newDestinationName, \"newDestinationName\"]));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"qos\":{\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tget: function() { return qos; },\n\t\t\t\t\tset: function(newQos) {\n\t\t\t\t\t\tif (newQos === 0 || newQos === 1 || newQos === 2 )\n\t\t\t\t\t\t\tqos = newQos;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tthrow new Error(\"Invalid argument:\"+newQos);\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"retained\":{\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tget: function() { return retained; },\n\t\t\t\t\tset: function(newRetained) {\n\t\t\t\t\t\tif (typeof newRetained === \"boolean\")\n\t\t\t\t\t\t\tretained = newRetained;\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tthrow new Error(format(ERROR.INVALID_ARGUMENT, [newRetained, \"newRetained\"]));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"topic\":{\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tget: function() { return destinationName; },\n\t\t\t\t\tset: function(newTopic) {destinationName=newTopic;}\n\t\t\t\t},\n\t\t\t\t\"duplicate\":{\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tget: function() { return duplicate; },\n\t\t\t\t\tset: function(newDuplicate) {duplicate=newDuplicate;}\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\t// Module contents.\n\t\treturn {\n\t\t\tClient: Client,\n\t\t\tMessage: Message\n\t\t};\n\t// eslint-disable-next-line no-nested-ternary\n\t})(typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {});\n\treturn PahoMQTT;\n});\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/paho-mqtt/paho-mqtt.js?"); /***/ }), /***/ "./node_modules/path-browserify/index.js": /*!***********************************************!*\ !*** ./node_modules/path-browserify/index.js ***! \***********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("/* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,\n// backported and transplited with Babel, with backwards-compat fixes\n\n// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length - 1; i >= 0; i--) {\n var last = parts[i];\n if (last === '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// path.resolve([from ...], to)\n// posix version\nexports.resolve = function() {\n var resolvedPath = '',\n resolvedAbsolute = false;\n\n for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0) ? arguments[i] : process.cwd();\n\n // Skip empty and invalid entries\n if (typeof path !== 'string') {\n throw new TypeError('Arguments to path.resolve must be strings');\n } else if (!path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n }\n\n // At this point the path should be resolved to a full absolute path, but\n // handle relative paths to be safe (might happen when process.cwd() fails)\n\n // Normalize the path\n resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexports.normalize = function(path) {\n var isAbsolute = exports.isAbsolute(path),\n trailingSlash = substr(path, -1) === '/';\n\n // Normalize the path\n path = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isAbsolute).join('/');\n\n if (!path && !isAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n\n return (isAbsolute ? '/' : '') + path;\n};\n\n// posix version\nexports.isAbsolute = function(path) {\n return path.charAt(0) === '/';\n};\n\n// posix version\nexports.join = function() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return exports.normalize(filter(paths, function(p, index) {\n if (typeof p !== 'string') {\n throw new TypeError('Arguments to path.join must be strings');\n }\n return p;\n }).join('/'));\n};\n\n\n// path.relative(from, to)\n// posix version\nexports.relative = function(from, to) {\n from = exports.resolve(from).substr(1);\n to = exports.resolve(to).substr(1);\n\n function trim(arr) {\n var start = 0;\n for (; start < arr.length; start++) {\n if (arr[start] !== '') break;\n }\n\n var end = arr.length - 1;\n for (; end >= 0; end--) {\n if (arr[end] !== '') break;\n }\n\n if (start > end) return [];\n return arr.slice(start, end - start + 1);\n }\n\n var fromParts = trim(from.split('/'));\n var toParts = trim(to.split('/'));\n\n var length = Math.min(fromParts.length, toParts.length);\n var samePartsLength = length;\n for (var i = 0; i < length; i++) {\n if (fromParts[i] !== toParts[i]) {\n samePartsLength = i;\n break;\n }\n }\n\n var outputParts = [];\n for (var i = samePartsLength; i < fromParts.length; i++) {\n outputParts.push('..');\n }\n\n outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n return outputParts.join('/');\n};\n\nexports.sep = '/';\nexports.delimiter = ':';\n\nexports.dirname = function (path) {\n if (typeof path !== 'string') path = path + '';\n if (path.length === 0) return '.';\n var code = path.charCodeAt(0);\n var hasRoot = code === 47 /*/*/;\n var end = -1;\n var matchedSlash = true;\n for (var i = path.length - 1; i >= 1; --i) {\n code = path.charCodeAt(i);\n if (code === 47 /*/*/) {\n if (!matchedSlash) {\n end = i;\n break;\n }\n } else {\n // We saw the first non-path separator\n matchedSlash = false;\n }\n }\n\n if (end === -1) return hasRoot ? '/' : '.';\n if (hasRoot && end === 1) {\n // return '//';\n // Backwards-compat fix:\n return '/';\n }\n return path.slice(0, end);\n};\n\nfunction basename(path) {\n if (typeof path !== 'string') path = path + '';\n\n var start = 0;\n var end = -1;\n var matchedSlash = true;\n var i;\n\n for (i = path.length - 1; i >= 0; --i) {\n if (path.charCodeAt(i) === 47 /*/*/) {\n // If we reached a path separator that was not part of a set of path\n // separators at the end of the string, stop now\n if (!matchedSlash) {\n start = i + 1;\n break;\n }\n } else if (end === -1) {\n // We saw the first non-path separator, mark this as the end of our\n // path component\n matchedSlash = false;\n end = i + 1;\n }\n }\n\n if (end === -1) return '';\n return path.slice(start, end);\n}\n\n// Uses a mixed approach for backwards-compatibility, as ext behavior changed\n// in new Node.js versions, so only basename() above is backported here\nexports.basename = function (path, ext) {\n var f = basename(path);\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n};\n\nexports.extname = function (path) {\n if (typeof path !== 'string') path = path + '';\n var startDot = -1;\n var startPart = 0;\n var end = -1;\n var matchedSlash = true;\n // Track the state of characters (if any) we see before our first dot and\n // after any path separator we find\n var preDotState = 0;\n for (var i = path.length - 1; i >= 0; --i) {\n var code = path.charCodeAt(i);\n if (code === 47 /*/*/) {\n // If we reached a path separator that was not part of a set of path\n // separators at the end of the string, stop now\n if (!matchedSlash) {\n startPart = i + 1;\n break;\n }\n continue;\n }\n if (end === -1) {\n // We saw the first non-path separator, mark this as the end of our\n // extension\n matchedSlash = false;\n end = i + 1;\n }\n if (code === 46 /*.*/) {\n // If this is our first dot, mark it as the start of our extension\n if (startDot === -1)\n startDot = i;\n else if (preDotState !== 1)\n preDotState = 1;\n } else if (startDot !== -1) {\n // We saw a non-dot and non-path separator before our dot, so we should\n // have a good chance at having a non-empty extension\n preDotState = -1;\n }\n }\n\n if (startDot === -1 || end === -1 ||\n // We saw a non-dot character immediately before the dot\n preDotState === 0 ||\n // The (right-most) trimmed path component is exactly '..'\n preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {\n return '';\n }\n return path.slice(startDot, end);\n};\n\nfunction filter (xs, f) {\n if (xs.filter) return xs.filter(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (f(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// String.prototype.substr - negative index don't work in IE8\nvar substr = 'ab'.substr(-1) === 'b'\n ? function (str, start, len) { return str.substr(start, len) }\n : function (str, start, len) {\n if (start < 0) start = str.length + start;\n return str.substr(start, len);\n }\n;\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../node-libs-browser/mock/process.js */ \"./node_modules/node-libs-browser/mock/process.js\")))\n\n//# sourceURL=webpack:///./node_modules/path-browserify/index.js?"); /***/ }), /***/ "./node_modules/quick-lru/index.js": /*!*****************************************!*\ !*** ./node_modules/quick-lru/index.js ***! \*****************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nclass QuickLRU {\n\tconstructor(options = {}) {\n\t\tif (!(options.maxSize && options.maxSize > 0)) {\n\t\t\tthrow new TypeError('`maxSize` must be a number greater than 0');\n\t\t}\n\n\t\tthis.maxSize = options.maxSize;\n\t\tthis.cache = new Map();\n\t\tthis.oldCache = new Map();\n\t\tthis._size = 0;\n\t}\n\n\t_set(key, value) {\n\t\tthis.cache.set(key, value);\n\t\tthis._size++;\n\n\t\tif (this._size >= this.maxSize) {\n\t\t\tthis._size = 0;\n\t\t\tthis.oldCache = this.cache;\n\t\t\tthis.cache = new Map();\n\t\t}\n\t}\n\n\tget(key) {\n\t\tif (this.cache.has(key)) {\n\t\t\treturn this.cache.get(key);\n\t\t}\n\n\t\tif (this.oldCache.has(key)) {\n\t\t\tconst value = this.oldCache.get(key);\n\t\t\tthis.oldCache.delete(key);\n\t\t\tthis._set(key, value);\n\t\t\treturn value;\n\t\t}\n\t}\n\n\tset(key, value) {\n\t\tif (this.cache.has(key)) {\n\t\t\tthis.cache.set(key, value);\n\t\t} else {\n\t\t\tthis._set(key, value);\n\t\t}\n\n\t\treturn this;\n\t}\n\n\thas(key) {\n\t\treturn this.cache.has(key) || this.oldCache.has(key);\n\t}\n\n\tpeek(key) {\n\t\tif (this.cache.has(key)) {\n\t\t\treturn this.cache.get(key);\n\t\t}\n\n\t\tif (this.oldCache.has(key)) {\n\t\t\treturn this.oldCache.get(key);\n\t\t}\n\t}\n\n\tdelete(key) {\n\t\tconst deleted = this.cache.delete(key);\n\t\tif (deleted) {\n\t\t\tthis._size--;\n\t\t}\n\n\t\treturn this.oldCache.delete(key) || deleted;\n\t}\n\n\tclear() {\n\t\tthis.cache.clear();\n\t\tthis.oldCache.clear();\n\t\tthis._size = 0;\n\t}\n\n\t* keys() {\n\t\tfor (const [key] of this) {\n\t\t\tyield key;\n\t\t}\n\t}\n\n\t* values() {\n\t\tfor (const [, value] of this) {\n\t\t\tyield value;\n\t\t}\n\t}\n\n\t* [Symbol.iterator]() {\n\t\tfor (const item of this.cache) {\n\t\t\tyield item;\n\t\t}\n\n\t\tfor (const item of this.oldCache) {\n\t\t\tconst [key] = item;\n\t\t\tif (!this.cache.has(key)) {\n\t\t\t\tyield item;\n\t\t\t}\n\t\t}\n\t}\n\n\tget size() {\n\t\tlet oldCacheSize = 0;\n\t\tfor (const key of this.oldCache.keys()) {\n\t\t\tif (!this.cache.has(key)) {\n\t\t\t\toldCacheSize++;\n\t\t\t}\n\t\t}\n\n\t\treturn this._size + oldCacheSize;\n\t}\n}\n\nmodule.exports = QuickLRU;\n\n\n//# sourceURL=webpack:///./node_modules/quick-lru/index.js?"); /***/ }), /***/ "./node_modules/set-function-length/index.js": /*!***************************************************!*\ !*** ./node_modules/set-function-length/index.js ***! \***************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar GetIntrinsic = __webpack_require__(/*! get-intrinsic */ \"./node_modules/get-intrinsic/index.js\");\nvar define = __webpack_require__(/*! define-data-property */ \"./node_modules/define-data-property/index.js\");\nvar hasDescriptors = __webpack_require__(/*! has-property-descriptors */ \"./node_modules/has-property-descriptors/index.js\")();\nvar gOPD = __webpack_require__(/*! gopd */ \"./node_modules/gopd/index.js\");\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $floor = GetIntrinsic('%Math.floor%');\n\nmodule.exports = function setFunctionLength(fn, length) {\n\tif (typeof fn !== 'function') {\n\t\tthrow new $TypeError('`fn` is not a function');\n\t}\n\tif (typeof length !== 'number' || length < 0 || length > 0xFFFFFFFF || $floor(length) !== length) {\n\t\tthrow new $TypeError('`length` must be a positive 32-bit integer');\n\t}\n\n\tvar loose = arguments.length > 2 && !!arguments[2];\n\n\tvar functionLengthIsConfigurable = true;\n\tvar functionLengthIsWritable = true;\n\tif ('length' in fn && gOPD) {\n\t\tvar desc = gOPD(fn, 'length');\n\t\tif (desc && !desc.configurable) {\n\t\t\tfunctionLengthIsConfigurable = false;\n\t\t}\n\t\tif (desc && !desc.writable) {\n\t\t\tfunctionLengthIsWritable = false;\n\t\t}\n\t}\n\n\tif (functionLengthIsConfigurable || functionLengthIsWritable || !loose) {\n\t\tif (hasDescriptors) {\n\t\t\tdefine(fn, 'length', length, true, true);\n\t\t} else {\n\t\t\tdefine(fn, 'length', length);\n\t\t}\n\t}\n\treturn fn;\n};\n\n\n//# sourceURL=webpack:///./node_modules/set-function-length/index.js?"); /***/ }), /***/ "./node_modules/side-channel/index.js": /*!********************************************!*\ !*** ./node_modules/side-channel/index.js ***! \********************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar GetIntrinsic = __webpack_require__(/*! get-intrinsic */ \"./node_modules/get-intrinsic/index.js\");\nvar callBound = __webpack_require__(/*! call-bind/callBound */ \"./node_modules/call-bind/callBound.js\");\nvar inspect = __webpack_require__(/*! object-inspect */ \"./node_modules/object-inspect/index.js\");\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $WeakMap = GetIntrinsic('%WeakMap%', true);\nvar $Map = GetIntrinsic('%Map%', true);\n\nvar $weakMapGet = callBound('WeakMap.prototype.get', true);\nvar $weakMapSet = callBound('WeakMap.prototype.set', true);\nvar $weakMapHas = callBound('WeakMap.prototype.has', true);\nvar $mapGet = callBound('Map.prototype.get', true);\nvar $mapSet = callBound('Map.prototype.set', true);\nvar $mapHas = callBound('Map.prototype.has', true);\n\n/*\n * This function traverses the list returning the node corresponding to the\n * given key.\n *\n * That node is also moved to the head of the list, so that if it's accessed\n * again we don't need to traverse the whole list. By doing so, all the recently\n * used nodes can be accessed relatively quickly.\n */\nvar listGetNode = function (list, key) { // eslint-disable-line consistent-return\n\tfor (var prev = list, curr; (curr = prev.next) !== null; prev = curr) {\n\t\tif (curr.key === key) {\n\t\t\tprev.next = curr.next;\n\t\t\tcurr.next = list.next;\n\t\t\tlist.next = curr; // eslint-disable-line no-param-reassign\n\t\t\treturn curr;\n\t\t}\n\t}\n};\n\nvar listGet = function (objects, key) {\n\tvar node = listGetNode(objects, key);\n\treturn node && node.value;\n};\nvar listSet = function (objects, key, value) {\n\tvar node = listGetNode(objects, key);\n\tif (node) {\n\t\tnode.value = value;\n\t} else {\n\t\t// Prepend the new node to the beginning of the list\n\t\tobjects.next = { // eslint-disable-line no-param-reassign\n\t\t\tkey: key,\n\t\t\tnext: objects.next,\n\t\t\tvalue: value\n\t\t};\n\t}\n};\nvar listHas = function (objects, key) {\n\treturn !!listGetNode(objects, key);\n};\n\nmodule.exports = function getSideChannel() {\n\tvar $wm;\n\tvar $m;\n\tvar $o;\n\tvar channel = {\n\t\tassert: function (key) {\n\t\t\tif (!channel.has(key)) {\n\t\t\t\tthrow new $TypeError('Side channel does not contain ' + inspect(key));\n\t\t\t}\n\t\t},\n\t\tget: function (key) { // eslint-disable-line consistent-return\n\t\t\tif ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {\n\t\t\t\tif ($wm) {\n\t\t\t\t\treturn $weakMapGet($wm, key);\n\t\t\t\t}\n\t\t\t} else if ($Map) {\n\t\t\t\tif ($m) {\n\t\t\t\t\treturn $mapGet($m, key);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif ($o) { // eslint-disable-line no-lonely-if\n\t\t\t\t\treturn listGet($o, key);\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\thas: function (key) {\n\t\t\tif ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {\n\t\t\t\tif ($wm) {\n\t\t\t\t\treturn $weakMapHas($wm, key);\n\t\t\t\t}\n\t\t\t} else if ($Map) {\n\t\t\t\tif ($m) {\n\t\t\t\t\treturn $mapHas($m, key);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif ($o) { // eslint-disable-line no-lonely-if\n\t\t\t\t\treturn listHas($o, key);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\t\tset: function (key, value) {\n\t\t\tif ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {\n\t\t\t\tif (!$wm) {\n\t\t\t\t\t$wm = new $WeakMap();\n\t\t\t\t}\n\t\t\t\t$weakMapSet($wm, key, value);\n\t\t\t} else if ($Map) {\n\t\t\t\tif (!$m) {\n\t\t\t\t\t$m = new $Map();\n\t\t\t\t}\n\t\t\t\t$mapSet($m, key, value);\n\t\t\t} else {\n\t\t\t\tif (!$o) {\n\t\t\t\t\t/*\n\t\t\t\t\t * Initialize the linked list as an empty node, so that we don't have\n\t\t\t\t\t * to special-case handling of the first node: we can always refer to\n\t\t\t\t\t * it as (previous node).next, instead of something like (list).head\n\t\t\t\t\t */\n\t\t\t\t\t$o = { key: {}, next: null };\n\t\t\t\t}\n\t\t\t\tlistSet($o, key, value);\n\t\t\t}\n\t\t}\n\t};\n\treturn channel;\n};\n\n\n//# sourceURL=webpack:///./node_modules/side-channel/index.js?"); /***/ }), /***/ "./node_modules/strnum/strnum.js": /*!***************************************!*\ !*** ./node_modules/strnum/strnum.js ***! \***************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("const hexRegex = /^[-+]?0x[a-fA-F0-9]+$/;\nconst numRegex = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n// const octRegex = /0x[a-z0-9]+/;\n// const binRegex = /0x[a-z0-9]+/;\n\n\n//polyfill\nif (!Number.parseInt && window.parseInt) {\n Number.parseInt = window.parseInt;\n}\nif (!Number.parseFloat && window.parseFloat) {\n Number.parseFloat = window.parseFloat;\n}\n\n \nconst consider = {\n hex : true,\n leadingZeros: true,\n decimalPoint: \"\\.\",\n eNotation: true\n //skipLike: /regex/\n};\n\nfunction toNumber(str, options = {}){\n // const options = Object.assign({}, consider);\n // if(opt.leadingZeros === false){\n // options.leadingZeros = false;\n // }else if(opt.hex === false){\n // options.hex = false;\n // }\n\n options = Object.assign({}, consider, options );\n if(!str || typeof str !== \"string\" ) return str;\n \n let trimmedStr = str.trim();\n // if(trimmedStr === \"0.0\") return 0;\n // else if(trimmedStr === \"+0.0\") return 0;\n // else if(trimmedStr === \"-0.0\") return -0;\n\n if(options.skipLike !== undefined && options.skipLike.test(trimmedStr)) return str;\n else if (options.hex && hexRegex.test(trimmedStr)) {\n return Number.parseInt(trimmedStr, 16);\n // } else if (options.parseOct && octRegex.test(str)) {\n // return Number.parseInt(val, 8);\n // }else if (options.parseBin && binRegex.test(str)) {\n // return Number.parseInt(val, 2);\n }else{\n //separate negative sign, leading zeros, and rest number\n const match = numRegex.exec(trimmedStr);\n if(match){\n const sign = match[1];\n const leadingZeros = match[2];\n let numTrimmedByZeros = trimZeros(match[3]); //complete num without leading zeros\n //trim ending zeros for floating number\n \n const eNotation = match[4] || match[6];\n if(!options.leadingZeros && leadingZeros.length > 0 && sign && trimmedStr[2] !== \".\") return str; //-0123\n else if(!options.leadingZeros && leadingZeros.length > 0 && !sign && trimmedStr[1] !== \".\") return str; //0123\n else{//no leading zeros or leading zeros are allowed\n const num = Number(trimmedStr);\n const numStr = \"\" + num;\n if(numStr.search(/[eE]/) !== -1){ //given number is long and parsed to eNotation\n if(options.eNotation) return num;\n else return str;\n }else if(eNotation){ //given number has enotation\n if(options.eNotation) return num;\n else return str;\n }else if(trimmedStr.indexOf(\".\") !== -1){ //floating number\n // const decimalPart = match[5].substr(1);\n // const intPart = trimmedStr.substr(0,trimmedStr.indexOf(\".\"));\n\n \n // const p = numStr.indexOf(\".\");\n // const givenIntPart = numStr.substr(0,p);\n // const givenDecPart = numStr.substr(p+1);\n if(numStr === \"0\" && (numTrimmedByZeros === \"\") ) return num; //0.0\n else if(numStr === numTrimmedByZeros) return num; //0.456. 0.79000\n else if( sign && numStr === \"-\"+numTrimmedByZeros) return num;\n else return str;\n }\n \n if(leadingZeros){\n // if(numTrimmedByZeros === numStr){\n // if(options.leadingZeros) return num;\n // else return str;\n // }else return str;\n if(numTrimmedByZeros === numStr) return num;\n else if(sign+numTrimmedByZeros === numStr) return num;\n else return str;\n }\n\n if(trimmedStr === numStr) return num;\n else if(trimmedStr === sign+numStr) return num;\n // else{\n // //number with +/- sign\n // trimmedStr.test(/[-+][0-9]);\n\n // }\n return str;\n }\n // else if(!eNotation && trimmedStr && trimmedStr !== Number(trimmedStr) ) return str;\n \n }else{ //non-numeric string\n return str;\n }\n }\n}\n\n/**\n * \n * @param {string} numStr without leading zeros\n * @returns \n */\nfunction trimZeros(numStr){\n if(numStr && numStr.indexOf(\".\") !== -1){//float\n numStr = numStr.replace(/0+$/, \"\"); //remove ending zeros\n if(numStr === \".\") numStr = \"0\";\n else if(numStr[0] === \".\") numStr = \"0\"+numStr;\n else if(numStr[numStr.length-1] === \".\") numStr = numStr.substr(0,numStr.length-1);\n return numStr;\n }\n return numStr;\n}\nmodule.exports = toNumber\n\n\n//# sourceURL=webpack:///./node_modules/strnum/strnum.js?"); /***/ }), /***/ "./node_modules/tslib/tslib.es6.js": /*!*****************************************!*\ !*** ./node_modules/tslib/tslib.es6.js ***! \*****************************************/ /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__extends\", function() { return __extends; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__assign\", function() { return __assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__rest\", function() { return __rest; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__decorate\", function() { return __decorate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__param\", function() { return __param; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__metadata\", function() { return __metadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__awaiter\", function() { return __awaiter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__generator\", function() { return __generator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__createBinding\", function() { return __createBinding; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__exportStar\", function() { return __exportStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__values\", function() { return __values; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__read\", function() { return __read; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spread\", function() { return __spread; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__spreadArrays\", function() { return __spreadArrays; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__await\", function() { return __await; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncGenerator\", function() { return __asyncGenerator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncDelegator\", function() { return __asyncDelegator; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__asyncValues\", function() { return __asyncValues; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__makeTemplateObject\", function() { return __makeTemplateObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importStar\", function() { return __importStar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__importDefault\", function() { return __importDefault; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldGet\", function() { return __classPrivateFieldGet; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"__classPrivateFieldSet\", function() { return __classPrivateFieldSet; });\n/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nfunction __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nfunction __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nfunction __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n 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;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nfunction __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nfunction __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nfunction __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nfunction __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n 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;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nfunction __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nfunction __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nfunction __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nfunction __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nfunction __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nfunction __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nfunction __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nfunction __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n 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); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nfunction __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nfunction __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n 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);\r\n 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); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nfunction __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nfunction __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nfunction __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nfunction __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/tslib/tslib.es6.js?"); /***/ }), /***/ "./node_modules/ulid/dist/index.esm.js": /*!*********************************************!*\ !*** ./node_modules/ulid/dist/index.esm.js ***! \*********************************************/ /*! exports provided: replaceCharAt, incrementBase32, randomChar, encodeTime, encodeRandom, decodeTime, detectPrng, factory, monotonicFactory, ulid */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"replaceCharAt\", function() { return replaceCharAt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"incrementBase32\", function() { return incrementBase32; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"randomChar\", function() { return randomChar; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encodeTime\", function() { return encodeTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encodeRandom\", function() { return encodeRandom; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeTime\", function() { return decodeTime; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"detectPrng\", function() { return detectPrng; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"factory\", function() { return factory; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"monotonicFactory\", function() { return monotonicFactory; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ulid\", function() { return ulid; });\nfunction createError(message) {\n var err = new Error(message);\n err.source = \"ulid\";\n return err;\n}\n// These values should NEVER change. If\n// they do, we're no longer making ulids!\nvar ENCODING = \"0123456789ABCDEFGHJKMNPQRSTVWXYZ\"; // Crockford's Base32\nvar ENCODING_LEN = ENCODING.length;\nvar TIME_MAX = Math.pow(2, 48) - 1;\nvar TIME_LEN = 10;\nvar RANDOM_LEN = 16;\nfunction replaceCharAt(str, index, char) {\n if (index > str.length - 1) {\n return str;\n }\n return str.substr(0, index) + char + str.substr(index + 1);\n}\nfunction incrementBase32(str) {\n var done = undefined;\n var index = str.length;\n var char = void 0;\n var charIndex = void 0;\n var maxCharIndex = ENCODING_LEN - 1;\n while (!done && index-- >= 0) {\n char = str[index];\n charIndex = ENCODING.indexOf(char);\n if (charIndex === -1) {\n throw createError(\"incorrectly encoded string\");\n }\n if (charIndex === maxCharIndex) {\n str = replaceCharAt(str, index, ENCODING[0]);\n continue;\n }\n done = replaceCharAt(str, index, ENCODING[charIndex + 1]);\n }\n if (typeof done === \"string\") {\n return done;\n }\n throw createError(\"cannot increment this string\");\n}\nfunction randomChar(prng) {\n var rand = Math.floor(prng() * ENCODING_LEN);\n if (rand === ENCODING_LEN) {\n rand = ENCODING_LEN - 1;\n }\n return ENCODING.charAt(rand);\n}\nfunction encodeTime(now, len) {\n if (isNaN(now)) {\n throw new Error(now + \" must be a number\");\n }\n if (now > TIME_MAX) {\n throw createError(\"cannot encode time greater than \" + TIME_MAX);\n }\n if (now < 0) {\n throw createError(\"time must be positive\");\n }\n if (Number.isInteger(now) === false) {\n throw createError(\"time must be an integer\");\n }\n var mod = void 0;\n var str = \"\";\n for (; len > 0; len--) {\n mod = now % ENCODING_LEN;\n str = ENCODING.charAt(mod) + str;\n now = (now - mod) / ENCODING_LEN;\n }\n return str;\n}\nfunction encodeRandom(len, prng) {\n var str = \"\";\n for (; len > 0; len--) {\n str = randomChar(prng) + str;\n }\n return str;\n}\nfunction decodeTime(id) {\n if (id.length !== TIME_LEN + RANDOM_LEN) {\n throw createError(\"malformed ulid\");\n }\n var time = id.substr(0, TIME_LEN).split(\"\").reverse().reduce(function (carry, char, index) {\n var encodingIndex = ENCODING.indexOf(char);\n if (encodingIndex === -1) {\n throw createError(\"invalid character found: \" + char);\n }\n return carry += encodingIndex * Math.pow(ENCODING_LEN, index);\n }, 0);\n if (time > TIME_MAX) {\n throw createError(\"malformed ulid, timestamp too large\");\n }\n return time;\n}\nfunction detectPrng() {\n var allowInsecure = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;\n var root = arguments[1];\n\n if (!root) {\n root = typeof window !== \"undefined\" ? window : null;\n }\n var browserCrypto = root && (root.crypto || root.msCrypto);\n if (browserCrypto) {\n return function () {\n var buffer = new Uint8Array(1);\n browserCrypto.getRandomValues(buffer);\n return buffer[0] / 0xff;\n };\n } else {\n try {\n var nodeCrypto = __webpack_require__(/*! crypto */ \"./node_modules/ulid/stubs/crypto.js\");\n return function () {\n return nodeCrypto.randomBytes(1).readUInt8() / 0xff;\n };\n } catch (e) {}\n }\n if (allowInsecure) {\n try {\n console.error(\"secure crypto unusable, falling back to insecure Math.random()!\");\n } catch (e) {}\n return function () {\n return Math.random();\n };\n }\n throw createError(\"secure crypto unusable, insecure Math.random not allowed\");\n}\nfunction factory(currPrng) {\n if (!currPrng) {\n currPrng = detectPrng();\n }\n return function ulid(seedTime) {\n if (isNaN(seedTime)) {\n seedTime = Date.now();\n }\n return encodeTime(seedTime, TIME_LEN) + encodeRandom(RANDOM_LEN, currPrng);\n };\n}\nfunction monotonicFactory(currPrng) {\n if (!currPrng) {\n currPrng = detectPrng();\n }\n var lastTime = 0;\n var lastRandom = void 0;\n return function ulid(seedTime) {\n if (isNaN(seedTime)) {\n seedTime = Date.now();\n }\n if (seedTime <= lastTime) {\n var incrementedRandom = lastRandom = incrementBase32(lastRandom);\n return encodeTime(lastTime, TIME_LEN) + incrementedRandom;\n }\n lastTime = seedTime;\n var newRandom = lastRandom = encodeRandom(RANDOM_LEN, currPrng);\n return encodeTime(seedTime, TIME_LEN) + newRandom;\n };\n}\nvar ulid = factory();\n\n\n\n\n//# sourceURL=webpack:///./node_modules/ulid/dist/index.esm.js?"); /***/ }), /***/ "./node_modules/ulid/stubs/crypto.js": /*!*******************************************!*\ !*** ./node_modules/ulid/stubs/crypto.js ***! \*******************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("\n\n//# sourceURL=webpack:///./node_modules/ulid/stubs/crypto.js?"); /***/ }), /***/ "./node_modules/unfetch/dist/unfetch.module.js": /*!*****************************************************!*\ !*** ./node_modules/unfetch/dist/unfetch.module.js ***! \*****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (function(e,n){return n=n||{},new Promise(function(t,r){var s=new XMLHttpRequest,o=[],u=[],i={},a=function(){return{ok:2==(s.status/100|0),statusText:s.statusText,status:s.status,url:s.responseURL,text:function(){return Promise.resolve(s.responseText)},json:function(){return Promise.resolve(s.responseText).then(JSON.parse)},blob:function(){return Promise.resolve(new Blob([s.response]))},clone:a,headers:{keys:function(){return o},entries:function(){return u},get:function(e){return i[e.toLowerCase()]},has:function(e){return e.toLowerCase()in i}}}};for(var l in s.open(n.method||\"get\",e,!0),s.onload=function(){s.getAllResponseHeaders().replace(/^(.*?):[^\\S\\n]*([\\s\\S]*?)$/gm,function(e,n,t){o.push(n=n.toLowerCase()),u.push([n,t]),i[n]=i[n]?i[n]+\",\"+t:t}),t(a())},s.onerror=r,s.withCredentials=\"include\"==n.credentials,n.headers)s.setRequestHeader(l,n.headers[l]);s.send(n.body||null)})});\n//# sourceMappingURL=unfetch.module.js.map\n\n\n//# sourceURL=webpack:///./node_modules/unfetch/dist/unfetch.module.js?"); /***/ }), /***/ "./node_modules/universal-cookie/es6/Cookies.js": /*!******************************************************!*\ !*** ./node_modules/universal-cookie/es6/Cookies.js ***! \******************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var cookie__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! cookie */ \"./node_modules/cookie/index.js\");\n/* harmony import */ var cookie__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cookie__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ \"./node_modules/universal-cookie/es6/utils.js\");\nvar __assign = (undefined && undefined.__assign) || function () {\r\n __assign = Object.assign || function(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\r\n t[p] = s[p];\r\n }\r\n return t;\r\n };\r\n return __assign.apply(this, arguments);\r\n};\r\n\r\n\r\nvar Cookies = /** @class */ (function () {\r\n function Cookies(cookies, options) {\r\n var _this = this;\r\n this.changeListeners = [];\r\n this.HAS_DOCUMENT_COOKIE = false;\r\n this.cookies = Object(_utils__WEBPACK_IMPORTED_MODULE_1__[\"parseCookies\"])(cookies, options);\r\n new Promise(function () {\r\n _this.HAS_DOCUMENT_COOKIE = Object(_utils__WEBPACK_IMPORTED_MODULE_1__[\"hasDocumentCookie\"])();\r\n }).catch(function () { });\r\n }\r\n Cookies.prototype._updateBrowserValues = function (parseOptions) {\r\n if (!this.HAS_DOCUMENT_COOKIE) {\r\n return;\r\n }\r\n this.cookies = cookie__WEBPACK_IMPORTED_MODULE_0__[\"parse\"](document.cookie, parseOptions);\r\n };\r\n Cookies.prototype._emitChange = function (params) {\r\n for (var i = 0; i < this.changeListeners.length; ++i) {\r\n this.changeListeners[i](params);\r\n }\r\n };\r\n Cookies.prototype.get = function (name, options, parseOptions) {\r\n if (options === void 0) { options = {}; }\r\n this._updateBrowserValues(parseOptions);\r\n return Object(_utils__WEBPACK_IMPORTED_MODULE_1__[\"readCookie\"])(this.cookies[name], options);\r\n };\r\n Cookies.prototype.getAll = function (options, parseOptions) {\r\n if (options === void 0) { options = {}; }\r\n this._updateBrowserValues(parseOptions);\r\n var result = {};\r\n for (var name_1 in this.cookies) {\r\n result[name_1] = Object(_utils__WEBPACK_IMPORTED_MODULE_1__[\"readCookie\"])(this.cookies[name_1], options);\r\n }\r\n return result;\r\n };\r\n Cookies.prototype.set = function (name, value, options) {\r\n var _a;\r\n if (typeof value === 'object') {\r\n value = JSON.stringify(value);\r\n }\r\n this.cookies = __assign(__assign({}, this.cookies), (_a = {}, _a[name] = value, _a));\r\n if (this.HAS_DOCUMENT_COOKIE) {\r\n document.cookie = cookie__WEBPACK_IMPORTED_MODULE_0__[\"serialize\"](name, value, options);\r\n }\r\n this._emitChange({ name: name, value: value, options: options });\r\n };\r\n Cookies.prototype.remove = function (name, options) {\r\n var finalOptions = (options = __assign(__assign({}, options), { expires: new Date(1970, 1, 1, 0, 0, 1), maxAge: 0 }));\r\n this.cookies = __assign({}, this.cookies);\r\n delete this.cookies[name];\r\n if (this.HAS_DOCUMENT_COOKIE) {\r\n document.cookie = cookie__WEBPACK_IMPORTED_MODULE_0__[\"serialize\"](name, '', finalOptions);\r\n }\r\n this._emitChange({ name: name, value: undefined, options: options });\r\n };\r\n Cookies.prototype.addChangeListener = function (callback) {\r\n this.changeListeners.push(callback);\r\n };\r\n Cookies.prototype.removeChangeListener = function (callback) {\r\n var idx = this.changeListeners.indexOf(callback);\r\n if (idx >= 0) {\r\n this.changeListeners.splice(idx, 1);\r\n }\r\n };\r\n return Cookies;\r\n}());\r\n/* harmony default export */ __webpack_exports__[\"default\"] = (Cookies);\r\n\n\n//# sourceURL=webpack:///./node_modules/universal-cookie/es6/Cookies.js?"); /***/ }), /***/ "./node_modules/universal-cookie/es6/index.js": /*!****************************************************!*\ !*** ./node_modules/universal-cookie/es6/index.js ***! \****************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Cookies__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Cookies */ \"./node_modules/universal-cookie/es6/Cookies.js\");\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = (_Cookies__WEBPACK_IMPORTED_MODULE_0__[\"default\"]);\r\n\n\n//# sourceURL=webpack:///./node_modules/universal-cookie/es6/index.js?"); /***/ }), /***/ "./node_modules/universal-cookie/es6/utils.js": /*!****************************************************!*\ !*** ./node_modules/universal-cookie/es6/utils.js ***! \****************************************************/ /*! exports provided: hasDocumentCookie, cleanCookies, parseCookies, isParsingCookie, readCookie */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasDocumentCookie\", function() { return hasDocumentCookie; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cleanCookies\", function() { return cleanCookies; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseCookies\", function() { return parseCookies; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isParsingCookie\", function() { return isParsingCookie; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"readCookie\", function() { return readCookie; });\n/* harmony import */ var cookie__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! cookie */ \"./node_modules/cookie/index.js\");\n/* harmony import */ var cookie__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cookie__WEBPACK_IMPORTED_MODULE_0__);\n\r\nfunction hasDocumentCookie() {\r\n // Can we get/set cookies on document.cookie?\r\n return typeof document === 'object' && typeof document.cookie === 'string';\r\n}\r\nfunction cleanCookies() {\r\n document.cookie.split(';').forEach(function (c) {\r\n document.cookie = c\r\n .replace(/^ +/, '')\r\n .replace(/=.*/, '=;expires=' + new Date().toUTCString() + ';path=/');\r\n });\r\n}\r\nfunction parseCookies(cookies, options) {\r\n if (typeof cookies === 'string') {\r\n return cookie__WEBPACK_IMPORTED_MODULE_0__[\"parse\"](cookies, options);\r\n }\r\n else if (typeof cookies === 'object' && cookies !== null) {\r\n return cookies;\r\n }\r\n else {\r\n return {};\r\n }\r\n}\r\nfunction isParsingCookie(value, doNotParse) {\r\n if (typeof doNotParse === 'undefined') {\r\n // We guess if the cookie start with { or [, it has been serialized\r\n doNotParse =\r\n !value || (value[0] !== '{' && value[0] !== '[' && value[0] !== '\"');\r\n }\r\n return !doNotParse;\r\n}\r\nfunction readCookie(value, options) {\r\n if (options === void 0) { options = {}; }\r\n var cleanValue = cleanupCookieValue(value);\r\n if (isParsingCookie(cleanValue, options.doNotParse)) {\r\n try {\r\n return JSON.parse(cleanValue);\r\n }\r\n catch (e) {\r\n // At least we tried\r\n }\r\n }\r\n // Ignore clean value if we failed the deserialization\r\n // It is not relevant anymore to trim those values\r\n return value;\r\n}\r\nfunction cleanupCookieValue(value) {\r\n // express prepend j: before serializing a cookie\r\n if (value && value[0] === 'j' && value[1] === ':') {\r\n return value.substr(2);\r\n }\r\n return value;\r\n}\r\n\n\n//# sourceURL=webpack:///./node_modules/universal-cookie/es6/utils.js?"); /***/ }), /***/ "./node_modules/url/node_modules/qs/lib/formats.js": /*!*********************************************************!*\ !*** ./node_modules/url/node_modules/qs/lib/formats.js ***! \*********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar replace = String.prototype.replace;\nvar percentTwenties = /%20/g;\n\nvar Format = {\n RFC1738: 'RFC1738',\n RFC3986: 'RFC3986'\n};\n\nmodule.exports = {\n 'default': Format.RFC3986,\n formatters: {\n RFC1738: function (value) {\n return replace.call(value, percentTwenties, '+');\n },\n RFC3986: function (value) {\n return String(value);\n }\n },\n RFC1738: Format.RFC1738,\n RFC3986: Format.RFC3986\n};\n\n\n//# sourceURL=webpack:///./node_modules/url/node_modules/qs/lib/formats.js?"); /***/ }), /***/ "./node_modules/url/node_modules/qs/lib/index.js": /*!*******************************************************!*\ !*** ./node_modules/url/node_modules/qs/lib/index.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar stringify = __webpack_require__(/*! ./stringify */ \"./node_modules/url/node_modules/qs/lib/stringify.js\");\nvar parse = __webpack_require__(/*! ./parse */ \"./node_modules/url/node_modules/qs/lib/parse.js\");\nvar formats = __webpack_require__(/*! ./formats */ \"./node_modules/url/node_modules/qs/lib/formats.js\");\n\nmodule.exports = {\n formats: formats,\n parse: parse,\n stringify: stringify\n};\n\n\n//# sourceURL=webpack:///./node_modules/url/node_modules/qs/lib/index.js?"); /***/ }), /***/ "./node_modules/url/node_modules/qs/lib/parse.js": /*!*******************************************************!*\ !*** ./node_modules/url/node_modules/qs/lib/parse.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar utils = __webpack_require__(/*! ./utils */ \"./node_modules/url/node_modules/qs/lib/utils.js\");\n\nvar has = Object.prototype.hasOwnProperty;\nvar isArray = Array.isArray;\n\nvar defaults = {\n allowDots: false,\n allowPrototypes: false,\n allowSparse: false,\n arrayLimit: 20,\n charset: 'utf-8',\n charsetSentinel: false,\n comma: false,\n decoder: utils.decode,\n delimiter: '&',\n depth: 5,\n ignoreQueryPrefix: false,\n interpretNumericEntities: false,\n parameterLimit: 1000,\n parseArrays: true,\n plainObjects: false,\n strictNullHandling: false\n};\n\nvar interpretNumericEntities = function (str) {\n return str.replace(/&#(\\d+);/g, function ($0, numberStr) {\n return String.fromCharCode(parseInt(numberStr, 10));\n });\n};\n\nvar parseArrayValue = function (val, options) {\n if (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) {\n return val.split(',');\n }\n\n return val;\n};\n\n// This is what browsers will submit when the ✓ character occurs in an\n// application/x-www-form-urlencoded body and the encoding of the page containing\n// the form is iso-8859-1, or when the submitted form has an accept-charset\n// attribute of iso-8859-1. Presumably also with other charsets that do not contain\n// the ✓ character, such as us-ascii.\nvar isoSentinel = 'utf8=%26%2310003%3B'; // encodeURIComponent('✓')\n\n// These are the percent-encoded utf-8 octets representing a checkmark, indicating that the request actually is utf-8 encoded.\nvar charsetSentinel = 'utf8=%E2%9C%93'; // encodeURIComponent('✓')\n\nvar parseValues = function parseQueryStringValues(str, options) {\n var obj = { __proto__: null };\n\n var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\\?/, '') : str;\n var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit;\n var parts = cleanStr.split(options.delimiter, limit);\n var skipIndex = -1; // Keep track of where the utf8 sentinel was found\n var i;\n\n var charset = options.charset;\n if (options.charsetSentinel) {\n for (i = 0; i < parts.length; ++i) {\n if (parts[i].indexOf('utf8=') === 0) {\n if (parts[i] === charsetSentinel) {\n charset = 'utf-8';\n } else if (parts[i] === isoSentinel) {\n charset = 'iso-8859-1';\n }\n skipIndex = i;\n i = parts.length; // The eslint settings do not allow break;\n }\n }\n }\n\n for (i = 0; i < parts.length; ++i) {\n if (i === skipIndex) {\n continue;\n }\n var part = parts[i];\n\n var bracketEqualsPos = part.indexOf(']=');\n var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1;\n\n var key, val;\n if (pos === -1) {\n key = options.decoder(part, defaults.decoder, charset, 'key');\n val = options.strictNullHandling ? null : '';\n } else {\n key = options.decoder(part.slice(0, pos), defaults.decoder, charset, 'key');\n val = utils.maybeMap(\n parseArrayValue(part.slice(pos + 1), options),\n function (encodedVal) {\n return options.decoder(encodedVal, defaults.decoder, charset, 'value');\n }\n );\n }\n\n if (val && options.interpretNumericEntities && charset === 'iso-8859-1') {\n val = interpretNumericEntities(val);\n }\n\n if (part.indexOf('[]=') > -1) {\n val = isArray(val) ? [val] : val;\n }\n\n if (has.call(obj, key)) {\n obj[key] = utils.combine(obj[key], val);\n } else {\n obj[key] = val;\n }\n }\n\n return obj;\n};\n\nvar parseObject = function (chain, val, options, valuesParsed) {\n var leaf = valuesParsed ? val : parseArrayValue(val, options);\n\n for (var i = chain.length - 1; i >= 0; --i) {\n var obj;\n var root = chain[i];\n\n if (root === '[]' && options.parseArrays) {\n obj = [].concat(leaf);\n } else {\n obj = options.plainObjects ? Object.create(null) : {};\n var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;\n var index = parseInt(cleanRoot, 10);\n if (!options.parseArrays && cleanRoot === '') {\n obj = { 0: leaf };\n } else if (\n !isNaN(index)\n && root !== cleanRoot\n && String(index) === cleanRoot\n && index >= 0\n && (options.parseArrays && index <= options.arrayLimit)\n ) {\n obj = [];\n obj[index] = leaf;\n } else if (cleanRoot !== '__proto__') {\n obj[cleanRoot] = leaf;\n }\n }\n\n leaf = obj;\n }\n\n return leaf;\n};\n\nvar parseKeys = function parseQueryStringKeys(givenKey, val, options, valuesParsed) {\n if (!givenKey) {\n return;\n }\n\n // Transform dot notation to bracket notation\n var key = options.allowDots ? givenKey.replace(/\\.([^.[]+)/g, '[$1]') : givenKey;\n\n // The regex chunks\n\n var brackets = /(\\[[^[\\]]*])/;\n var child = /(\\[[^[\\]]*])/g;\n\n // Get the parent\n\n var segment = options.depth > 0 && brackets.exec(key);\n var parent = segment ? key.slice(0, segment.index) : key;\n\n // Stash the parent if it exists\n\n var keys = [];\n if (parent) {\n // If we aren't using plain objects, optionally prefix keys that would overwrite object prototype properties\n if (!options.plainObjects && has.call(Object.prototype, parent)) {\n if (!options.allowPrototypes) {\n return;\n }\n }\n\n keys.push(parent);\n }\n\n // Loop through children appending to the array until we hit depth\n\n var i = 0;\n while (options.depth > 0 && (segment = child.exec(key)) !== null && i < options.depth) {\n i += 1;\n if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) {\n if (!options.allowPrototypes) {\n return;\n }\n }\n keys.push(segment[1]);\n }\n\n // If there's a remainder, just add whatever is left\n\n if (segment) {\n keys.push('[' + key.slice(segment.index) + ']');\n }\n\n return parseObject(keys, val, options, valuesParsed);\n};\n\nvar normalizeParseOptions = function normalizeParseOptions(opts) {\n if (!opts) {\n return defaults;\n }\n\n if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') {\n throw new TypeError('Decoder has to be a function.');\n }\n\n if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') {\n throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined');\n }\n var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset;\n\n return {\n allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,\n allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes,\n allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse,\n arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit,\n charset: charset,\n charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,\n comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma,\n decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder,\n delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter,\n // eslint-disable-next-line no-implicit-coercion, no-extra-parens\n depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth,\n ignoreQueryPrefix: opts.ignoreQueryPrefix === true,\n interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities,\n parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit,\n parseArrays: opts.parseArrays !== false,\n plainObjects: typeof opts.plainObjects === 'boolean' ? opts.plainObjects : defaults.plainObjects,\n strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling\n };\n};\n\nmodule.exports = function (str, opts) {\n var options = normalizeParseOptions(opts);\n\n if (str === '' || str === null || typeof str === 'undefined') {\n return options.plainObjects ? Object.create(null) : {};\n }\n\n var tempObj = typeof str === 'string' ? parseValues(str, options) : str;\n var obj = options.plainObjects ? Object.create(null) : {};\n\n // Iterate over the keys and setup the new object\n\n var keys = Object.keys(tempObj);\n for (var i = 0; i < keys.length; ++i) {\n var key = keys[i];\n var newObj = parseKeys(key, tempObj[key], options, typeof str === 'string');\n obj = utils.merge(obj, newObj, options);\n }\n\n if (options.allowSparse === true) {\n return obj;\n }\n\n return utils.compact(obj);\n};\n\n\n//# sourceURL=webpack:///./node_modules/url/node_modules/qs/lib/parse.js?"); /***/ }), /***/ "./node_modules/url/node_modules/qs/lib/stringify.js": /*!***********************************************************!*\ !*** ./node_modules/url/node_modules/qs/lib/stringify.js ***! \***********************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar getSideChannel = __webpack_require__(/*! side-channel */ \"./node_modules/side-channel/index.js\");\nvar utils = __webpack_require__(/*! ./utils */ \"./node_modules/url/node_modules/qs/lib/utils.js\");\nvar formats = __webpack_require__(/*! ./formats */ \"./node_modules/url/node_modules/qs/lib/formats.js\");\nvar has = Object.prototype.hasOwnProperty;\n\nvar arrayPrefixGenerators = {\n brackets: function brackets(prefix) {\n return prefix + '[]';\n },\n comma: 'comma',\n indices: function indices(prefix, key) {\n return prefix + '[' + key + ']';\n },\n repeat: function repeat(prefix) {\n return prefix;\n }\n};\n\nvar isArray = Array.isArray;\nvar push = Array.prototype.push;\nvar pushToArray = function (arr, valueOrArray) {\n push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]);\n};\n\nvar toISO = Date.prototype.toISOString;\n\nvar defaultFormat = formats['default'];\nvar defaults = {\n addQueryPrefix: false,\n allowDots: false,\n charset: 'utf-8',\n charsetSentinel: false,\n delimiter: '&',\n encode: true,\n encoder: utils.encode,\n encodeValuesOnly: false,\n format: defaultFormat,\n formatter: formats.formatters[defaultFormat],\n // deprecated\n indices: false,\n serializeDate: function serializeDate(date) {\n return toISO.call(date);\n },\n skipNulls: false,\n strictNullHandling: false\n};\n\nvar isNonNullishPrimitive = function isNonNullishPrimitive(v) {\n return typeof v === 'string'\n || typeof v === 'number'\n || typeof v === 'boolean'\n || typeof v === 'symbol'\n || typeof v === 'bigint';\n};\n\nvar sentinel = {};\n\nvar stringify = function stringify(\n object,\n prefix,\n generateArrayPrefix,\n commaRoundTrip,\n strictNullHandling,\n skipNulls,\n encoder,\n filter,\n sort,\n allowDots,\n serializeDate,\n format,\n formatter,\n encodeValuesOnly,\n charset,\n sideChannel\n) {\n var obj = object;\n\n var tmpSc = sideChannel;\n var step = 0;\n var findFlag = false;\n while ((tmpSc = tmpSc.get(sentinel)) !== void undefined && !findFlag) {\n // Where object last appeared in the ref tree\n var pos = tmpSc.get(object);\n step += 1;\n if (typeof pos !== 'undefined') {\n if (pos === step) {\n throw new RangeError('Cyclic object value');\n } else {\n findFlag = true; // Break while\n }\n }\n if (typeof tmpSc.get(sentinel) === 'undefined') {\n step = 0;\n }\n }\n\n if (typeof filter === 'function') {\n obj = filter(prefix, obj);\n } else if (obj instanceof Date) {\n obj = serializeDate(obj);\n } else if (generateArrayPrefix === 'comma' && isArray(obj)) {\n obj = utils.maybeMap(obj, function (value) {\n if (value instanceof Date) {\n return serializeDate(value);\n }\n return value;\n });\n }\n\n if (obj === null) {\n if (strictNullHandling) {\n return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder, charset, 'key', format) : prefix;\n }\n\n obj = '';\n }\n\n if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) {\n if (encoder) {\n var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format);\n return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))];\n }\n return [formatter(prefix) + '=' + formatter(String(obj))];\n }\n\n var values = [];\n\n if (typeof obj === 'undefined') {\n return values;\n }\n\n var objKeys;\n if (generateArrayPrefix === 'comma' && isArray(obj)) {\n // we need to join elements in\n if (encodeValuesOnly && encoder) {\n obj = utils.maybeMap(obj, encoder);\n }\n objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : void undefined }];\n } else if (isArray(filter)) {\n objKeys = filter;\n } else {\n var keys = Object.keys(obj);\n objKeys = sort ? keys.sort(sort) : keys;\n }\n\n var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? prefix + '[]' : prefix;\n\n for (var j = 0; j < objKeys.length; ++j) {\n var key = objKeys[j];\n var value = typeof key === 'object' && typeof key.value !== 'undefined' ? key.value : obj[key];\n\n if (skipNulls && value === null) {\n continue;\n }\n\n var keyPrefix = isArray(obj)\n ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, key) : adjustedPrefix\n : adjustedPrefix + (allowDots ? '.' + key : '[' + key + ']');\n\n sideChannel.set(object, step);\n var valueSideChannel = getSideChannel();\n valueSideChannel.set(sentinel, sideChannel);\n pushToArray(values, stringify(\n value,\n keyPrefix,\n generateArrayPrefix,\n commaRoundTrip,\n strictNullHandling,\n skipNulls,\n generateArrayPrefix === 'comma' && encodeValuesOnly && isArray(obj) ? null : encoder,\n filter,\n sort,\n allowDots,\n serializeDate,\n format,\n formatter,\n encodeValuesOnly,\n charset,\n valueSideChannel\n ));\n }\n\n return values;\n};\n\nvar normalizeStringifyOptions = function normalizeStringifyOptions(opts) {\n if (!opts) {\n return defaults;\n }\n\n if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') {\n throw new TypeError('Encoder has to be a function.');\n }\n\n var charset = opts.charset || defaults.charset;\n if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') {\n throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined');\n }\n\n var format = formats['default'];\n if (typeof opts.format !== 'undefined') {\n if (!has.call(formats.formatters, opts.format)) {\n throw new TypeError('Unknown format option provided.');\n }\n format = opts.format;\n }\n var formatter = formats.formatters[format];\n\n var filter = defaults.filter;\n if (typeof opts.filter === 'function' || isArray(opts.filter)) {\n filter = opts.filter;\n }\n\n return {\n addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix,\n allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,\n charset: charset,\n charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,\n delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter,\n encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode,\n encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder,\n encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly,\n filter: filter,\n format: format,\n formatter: formatter,\n serializeDate: typeof opts.serializeDate === 'function' ? opts.serializeDate : defaults.serializeDate,\n skipNulls: typeof opts.skipNulls === 'boolean' ? opts.skipNulls : defaults.skipNulls,\n sort: typeof opts.sort === 'function' ? opts.sort : null,\n strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling\n };\n};\n\nmodule.exports = function (object, opts) {\n var obj = object;\n var options = normalizeStringifyOptions(opts);\n\n var objKeys;\n var filter;\n\n if (typeof options.filter === 'function') {\n filter = options.filter;\n obj = filter('', obj);\n } else if (isArray(options.filter)) {\n filter = options.filter;\n objKeys = filter;\n }\n\n var keys = [];\n\n if (typeof obj !== 'object' || obj === null) {\n return '';\n }\n\n var arrayFormat;\n if (opts && opts.arrayFormat in arrayPrefixGenerators) {\n arrayFormat = opts.arrayFormat;\n } else if (opts && 'indices' in opts) {\n arrayFormat = opts.indices ? 'indices' : 'repeat';\n } else {\n arrayFormat = 'indices';\n }\n\n var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];\n if (opts && 'commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {\n throw new TypeError('`commaRoundTrip` must be a boolean, or absent');\n }\n var commaRoundTrip = generateArrayPrefix === 'comma' && opts && opts.commaRoundTrip;\n\n if (!objKeys) {\n objKeys = Object.keys(obj);\n }\n\n if (options.sort) {\n objKeys.sort(options.sort);\n }\n\n var sideChannel = getSideChannel();\n for (var i = 0; i < objKeys.length; ++i) {\n var key = objKeys[i];\n\n if (options.skipNulls && obj[key] === null) {\n continue;\n }\n pushToArray(keys, stringify(\n obj[key],\n key,\n generateArrayPrefix,\n commaRoundTrip,\n options.strictNullHandling,\n options.skipNulls,\n options.encode ? options.encoder : null,\n options.filter,\n options.sort,\n options.allowDots,\n options.serializeDate,\n options.format,\n options.formatter,\n options.encodeValuesOnly,\n options.charset,\n sideChannel\n ));\n }\n\n var joined = keys.join(options.delimiter);\n var prefix = options.addQueryPrefix === true ? '?' : '';\n\n if (options.charsetSentinel) {\n if (options.charset === 'iso-8859-1') {\n // encodeURIComponent('✓'), the \"numeric entity\" representation of a checkmark\n prefix += 'utf8=%26%2310003%3B&';\n } else {\n // encodeURIComponent('✓')\n prefix += 'utf8=%E2%9C%93&';\n }\n }\n\n return joined.length > 0 ? prefix + joined : '';\n};\n\n\n//# sourceURL=webpack:///./node_modules/url/node_modules/qs/lib/stringify.js?"); /***/ }), /***/ "./node_modules/url/node_modules/qs/lib/utils.js": /*!*******************************************************!*\ !*** ./node_modules/url/node_modules/qs/lib/utils.js ***! \*******************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\nvar formats = __webpack_require__(/*! ./formats */ \"./node_modules/url/node_modules/qs/lib/formats.js\");\n\nvar has = Object.prototype.hasOwnProperty;\nvar isArray = Array.isArray;\n\nvar hexTable = (function () {\n var array = [];\n for (var i = 0; i < 256; ++i) {\n array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase());\n }\n\n return array;\n}());\n\nvar compactQueue = function compactQueue(queue) {\n while (queue.length > 1) {\n var item = queue.pop();\n var obj = item.obj[item.prop];\n\n if (isArray(obj)) {\n var compacted = [];\n\n for (var j = 0; j < obj.length; ++j) {\n if (typeof obj[j] !== 'undefined') {\n compacted.push(obj[j]);\n }\n }\n\n item.obj[item.prop] = compacted;\n }\n }\n};\n\nvar arrayToObject = function arrayToObject(source, options) {\n var obj = options && options.plainObjects ? Object.create(null) : {};\n for (var i = 0; i < source.length; ++i) {\n if (typeof source[i] !== 'undefined') {\n obj[i] = source[i];\n }\n }\n\n return obj;\n};\n\nvar merge = function merge(target, source, options) {\n /* eslint no-param-reassign: 0 */\n if (!source) {\n return target;\n }\n\n if (typeof source !== 'object') {\n if (isArray(target)) {\n target.push(source);\n } else if (target && typeof target === 'object') {\n if ((options && (options.plainObjects || options.allowPrototypes)) || !has.call(Object.prototype, source)) {\n target[source] = true;\n }\n } else {\n return [target, source];\n }\n\n return target;\n }\n\n if (!target || typeof target !== 'object') {\n return [target].concat(source);\n }\n\n var mergeTarget = target;\n if (isArray(target) && !isArray(source)) {\n mergeTarget = arrayToObject(target, options);\n }\n\n if (isArray(target) && isArray(source)) {\n source.forEach(function (item, i) {\n if (has.call(target, i)) {\n var targetItem = target[i];\n if (targetItem && typeof targetItem === 'object' && item && typeof item === 'object') {\n target[i] = merge(targetItem, item, options);\n } else {\n target.push(item);\n }\n } else {\n target[i] = item;\n }\n });\n return target;\n }\n\n return Object.keys(source).reduce(function (acc, key) {\n var value = source[key];\n\n if (has.call(acc, key)) {\n acc[key] = merge(acc[key], value, options);\n } else {\n acc[key] = value;\n }\n return acc;\n }, mergeTarget);\n};\n\nvar assign = function assignSingleSource(target, source) {\n return Object.keys(source).reduce(function (acc, key) {\n acc[key] = source[key];\n return acc;\n }, target);\n};\n\nvar decode = function (str, decoder, charset) {\n var strWithoutPlus = str.replace(/\\+/g, ' ');\n if (charset === 'iso-8859-1') {\n // unescape never throws, no try...catch needed:\n return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape);\n }\n // utf-8\n try {\n return decodeURIComponent(strWithoutPlus);\n } catch (e) {\n return strWithoutPlus;\n }\n};\n\nvar encode = function encode(str, defaultEncoder, charset, kind, format) {\n // This code was originally written by Brian White (mscdex) for the io.js core querystring library.\n // It has been adapted here for stricter adherence to RFC 3986\n if (str.length === 0) {\n return str;\n }\n\n var string = str;\n if (typeof str === 'symbol') {\n string = Symbol.prototype.toString.call(str);\n } else if (typeof str !== 'string') {\n string = String(str);\n }\n\n if (charset === 'iso-8859-1') {\n return escape(string).replace(/%u[0-9a-f]{4}/gi, function ($0) {\n return '%26%23' + parseInt($0.slice(2), 16) + '%3B';\n });\n }\n\n var out = '';\n for (var i = 0; i < string.length; ++i) {\n var c = string.charCodeAt(i);\n\n if (\n c === 0x2D // -\n || c === 0x2E // .\n || c === 0x5F // _\n || c === 0x7E // ~\n || (c >= 0x30 && c <= 0x39) // 0-9\n || (c >= 0x41 && c <= 0x5A) // a-z\n || (c >= 0x61 && c <= 0x7A) // A-Z\n || (format === formats.RFC1738 && (c === 0x28 || c === 0x29)) // ( )\n ) {\n out += string.charAt(i);\n continue;\n }\n\n if (c < 0x80) {\n out = out + hexTable[c];\n continue;\n }\n\n if (c < 0x800) {\n out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]);\n continue;\n }\n\n if (c < 0xD800 || c >= 0xE000) {\n out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]);\n continue;\n }\n\n i += 1;\n c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));\n /* eslint operator-linebreak: [2, \"before\"] */\n out += hexTable[0xF0 | (c >> 18)]\n + hexTable[0x80 | ((c >> 12) & 0x3F)]\n + hexTable[0x80 | ((c >> 6) & 0x3F)]\n + hexTable[0x80 | (c & 0x3F)];\n }\n\n return out;\n};\n\nvar compact = function compact(value) {\n var queue = [{ obj: { o: value }, prop: 'o' }];\n var refs = [];\n\n for (var i = 0; i < queue.length; ++i) {\n var item = queue[i];\n var obj = item.obj[item.prop];\n\n var keys = Object.keys(obj);\n for (var j = 0; j < keys.length; ++j) {\n var key = keys[j];\n var val = obj[key];\n if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) {\n queue.push({ obj: obj, prop: key });\n refs.push(val);\n }\n }\n }\n\n compactQueue(queue);\n\n return value;\n};\n\nvar isRegExp = function isRegExp(obj) {\n return Object.prototype.toString.call(obj) === '[object RegExp]';\n};\n\nvar isBuffer = function isBuffer(obj) {\n if (!obj || typeof obj !== 'object') {\n return false;\n }\n\n return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj));\n};\n\nvar combine = function combine(a, b) {\n return [].concat(a, b);\n};\n\nvar maybeMap = function maybeMap(val, fn) {\n if (isArray(val)) {\n var mapped = [];\n for (var i = 0; i < val.length; i += 1) {\n mapped.push(fn(val[i]));\n }\n return mapped;\n }\n return fn(val);\n};\n\nmodule.exports = {\n arrayToObject: arrayToObject,\n assign: assign,\n combine: combine,\n compact: compact,\n decode: decode,\n encode: encode,\n isBuffer: isBuffer,\n isRegExp: isRegExp,\n maybeMap: maybeMap,\n merge: merge\n};\n\n\n//# sourceURL=webpack:///./node_modules/url/node_modules/qs/lib/utils.js?"); /***/ }), /***/ "./node_modules/url/url.js": /*!*********************************!*\ !*** ./node_modules/url/url.js ***! \*********************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("/*\n * Copyright Joyent, Inc. and other Node contributors.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to permit\n * persons to whom the Software is furnished to do so, subject to the\n * following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n * NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n * USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n\n\nvar punycode = __webpack_require__(/*! punycode */ \"./node_modules/node-libs-browser/node_modules/punycode/punycode.js\");\n\nfunction Url() {\n this.protocol = null;\n this.slashes = null;\n this.auth = null;\n this.host = null;\n this.port = null;\n this.hostname = null;\n this.hash = null;\n this.search = null;\n this.query = null;\n this.pathname = null;\n this.path = null;\n this.href = null;\n}\n\n// Reference: RFC 3986, RFC 1808, RFC 2396\n\n/*\n * define these here so at least they only have to be\n * compiled once on the first module load.\n */\nvar protocolPattern = /^([a-z0-9.+-]+:)/i,\n portPattern = /:[0-9]*$/,\n\n // Special case for a simple path URL\n simplePathPattern = /^(\\/\\/?(?!\\/)[^?\\s]*)(\\?[^\\s]*)?$/,\n\n /*\n * RFC 2396: characters reserved for delimiting URLs.\n * We actually just auto-escape these.\n */\n delims = [\n '<', '>', '\"', '`', ' ', '\\r', '\\n', '\\t'\n ],\n\n // RFC 2396: characters not allowed for various reasons.\n unwise = [\n '{', '}', '|', '\\\\', '^', '`'\n ].concat(delims),\n\n // Allowed by RFCs, but cause of XSS attacks. Always escape these.\n autoEscape = ['\\''].concat(unwise),\n /*\n * Characters that are never ever allowed in a hostname.\n * Note that any invalid chars are also handled, but these\n * are the ones that are *expected* to be seen, so we fast-path\n * them.\n */\n nonHostChars = [\n '%', '/', '?', ';', '#'\n ].concat(autoEscape),\n hostEndingChars = [\n '/', '?', '#'\n ],\n hostnameMaxLen = 255,\n hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,\n hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,\n // protocols that can allow \"unsafe\" and \"unwise\" chars.\n unsafeProtocol = {\n javascript: true,\n 'javascript:': true\n },\n // protocols that never have a hostname.\n hostlessProtocol = {\n javascript: true,\n 'javascript:': true\n },\n // protocols that always contain a // bit.\n slashedProtocol = {\n http: true,\n https: true,\n ftp: true,\n gopher: true,\n file: true,\n 'http:': true,\n 'https:': true,\n 'ftp:': true,\n 'gopher:': true,\n 'file:': true\n },\n querystring = __webpack_require__(/*! qs */ \"./node_modules/url/node_modules/qs/lib/index.js\");\n\nfunction urlParse(url, parseQueryString, slashesDenoteHost) {\n if (url && typeof url === 'object' && url instanceof Url) { return url; }\n\n var u = new Url();\n u.parse(url, parseQueryString, slashesDenoteHost);\n return u;\n}\n\nUrl.prototype.parse = function (url, parseQueryString, slashesDenoteHost) {\n if (typeof url !== 'string') {\n throw new TypeError(\"Parameter 'url' must be a string, not \" + typeof url);\n }\n\n /*\n * Copy chrome, IE, opera backslash-handling behavior.\n * Back slashes before the query string get converted to forward slashes\n * See: https://code.google.com/p/chromium/issues/detail?id=25916\n */\n var queryIndex = url.indexOf('?'),\n splitter = queryIndex !== -1 && queryIndex < url.indexOf('#') ? '?' : '#',\n uSplit = url.split(splitter),\n slashRegex = /\\\\/g;\n uSplit[0] = uSplit[0].replace(slashRegex, '/');\n url = uSplit.join(splitter);\n\n var rest = url;\n\n /*\n * trim before proceeding.\n * This is to support parse stuff like \" http://foo.com \\n\"\n */\n rest = rest.trim();\n\n if (!slashesDenoteHost && url.split('#').length === 1) {\n // Try fast path regexp\n var simplePath = simplePathPattern.exec(rest);\n if (simplePath) {\n this.path = rest;\n this.href = rest;\n this.pathname = simplePath[1];\n if (simplePath[2]) {\n this.search = simplePath[2];\n if (parseQueryString) {\n this.query = querystring.parse(this.search.substr(1));\n } else {\n this.query = this.search.substr(1);\n }\n } else if (parseQueryString) {\n this.search = '';\n this.query = {};\n }\n return this;\n }\n }\n\n var proto = protocolPattern.exec(rest);\n if (proto) {\n proto = proto[0];\n var lowerProto = proto.toLowerCase();\n this.protocol = lowerProto;\n rest = rest.substr(proto.length);\n }\n\n /*\n * figure out if it's got a host\n * user@server is *always* interpreted as a hostname, and url\n * resolution will treat //foo/bar as host=foo,path=bar because that's\n * how the browser resolves relative URLs.\n */\n if (slashesDenoteHost || proto || rest.match(/^\\/\\/[^@/]+@[^@/]+/)) {\n var slashes = rest.substr(0, 2) === '//';\n if (slashes && !(proto && hostlessProtocol[proto])) {\n rest = rest.substr(2);\n this.slashes = true;\n }\n }\n\n if (!hostlessProtocol[proto] && (slashes || (proto && !slashedProtocol[proto]))) {\n\n /*\n * there's a hostname.\n * the first instance of /, ?, ;, or # ends the host.\n *\n * If there is an @ in the hostname, then non-host chars *are* allowed\n * to the left of the last @ sign, unless some host-ending character\n * comes *before* the @-sign.\n * URLs are obnoxious.\n *\n * ex:\n * http://a@b@c/ => user:a@b host:c\n * http://a@b?@c => user:a host:c path:/?@c\n */\n\n /*\n * v0.12 TODO(isaacs): This is not quite how Chrome does things.\n * Review our test case against browsers more comprehensively.\n */\n\n // find the first instance of any hostEndingChars\n var hostEnd = -1;\n for (var i = 0; i < hostEndingChars.length; i++) {\n var hec = rest.indexOf(hostEndingChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) { hostEnd = hec; }\n }\n\n /*\n * at this point, either we have an explicit point where the\n * auth portion cannot go past, or the last @ char is the decider.\n */\n var auth, atSign;\n if (hostEnd === -1) {\n // atSign can be anywhere.\n atSign = rest.lastIndexOf('@');\n } else {\n /*\n * atSign must be in auth portion.\n * http://a@b/c@d => host:b auth:a path:/c@d\n */\n atSign = rest.lastIndexOf('@', hostEnd);\n }\n\n /*\n * Now we have a portion which is definitely the auth.\n * Pull that off.\n */\n if (atSign !== -1) {\n auth = rest.slice(0, atSign);\n rest = rest.slice(atSign + 1);\n this.auth = decodeURIComponent(auth);\n }\n\n // the host is the remaining to the left of the first non-host char\n hostEnd = -1;\n for (var i = 0; i < nonHostChars.length; i++) {\n var hec = rest.indexOf(nonHostChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) { hostEnd = hec; }\n }\n // if we still have not hit it, then the entire thing is a host.\n if (hostEnd === -1) { hostEnd = rest.length; }\n\n this.host = rest.slice(0, hostEnd);\n rest = rest.slice(hostEnd);\n\n // pull out port.\n this.parseHost();\n\n /*\n * we've indicated that there is a hostname,\n * so even if it's empty, it has to be present.\n */\n this.hostname = this.hostname || '';\n\n /*\n * if hostname begins with [ and ends with ]\n * assume that it's an IPv6 address.\n */\n var ipv6Hostname = this.hostname[0] === '[' && this.hostname[this.hostname.length - 1] === ']';\n\n // validate a little.\n if (!ipv6Hostname) {\n var hostparts = this.hostname.split(/\\./);\n for (var i = 0, l = hostparts.length; i < l; i++) {\n var part = hostparts[i];\n if (!part) { continue; }\n if (!part.match(hostnamePartPattern)) {\n var newpart = '';\n for (var j = 0, k = part.length; j < k; j++) {\n if (part.charCodeAt(j) > 127) {\n /*\n * we replace non-ASCII char with a temporary placeholder\n * we need this to make sure size of hostname is not\n * broken by replacing non-ASCII by nothing\n */\n newpart += 'x';\n } else {\n newpart += part[j];\n }\n }\n // we test again with ASCII char only\n if (!newpart.match(hostnamePartPattern)) {\n var validParts = hostparts.slice(0, i);\n var notHost = hostparts.slice(i + 1);\n var bit = part.match(hostnamePartStart);\n if (bit) {\n validParts.push(bit[1]);\n notHost.unshift(bit[2]);\n }\n if (notHost.length) {\n rest = '/' + notHost.join('.') + rest;\n }\n this.hostname = validParts.join('.');\n break;\n }\n }\n }\n }\n\n if (this.hostname.length > hostnameMaxLen) {\n this.hostname = '';\n } else {\n // hostnames are always lower case.\n this.hostname = this.hostname.toLowerCase();\n }\n\n if (!ipv6Hostname) {\n /*\n * IDNA Support: Returns a punycoded representation of \"domain\".\n * It only converts parts of the domain name that\n * have non-ASCII characters, i.e. it doesn't matter if\n * you call it with a domain that already is ASCII-only.\n */\n this.hostname = punycode.toASCII(this.hostname);\n }\n\n var p = this.port ? ':' + this.port : '';\n var h = this.hostname || '';\n this.host = h + p;\n this.href += this.host;\n\n /*\n * strip [ and ] from the hostname\n * the host field still retains them, though\n */\n if (ipv6Hostname) {\n this.hostname = this.hostname.substr(1, this.hostname.length - 2);\n if (rest[0] !== '/') {\n rest = '/' + rest;\n }\n }\n }\n\n /*\n * now rest is set to the post-host stuff.\n * chop off any delim chars.\n */\n if (!unsafeProtocol[lowerProto]) {\n\n /*\n * First, make 100% sure that any \"autoEscape\" chars get\n * escaped, even if encodeURIComponent doesn't think they\n * need to be.\n */\n for (var i = 0, l = autoEscape.length; i < l; i++) {\n var ae = autoEscape[i];\n if (rest.indexOf(ae) === -1) { continue; }\n var esc = encodeURIComponent(ae);\n if (esc === ae) {\n esc = escape(ae);\n }\n rest = rest.split(ae).join(esc);\n }\n }\n\n // chop off from the tail first.\n var hash = rest.indexOf('#');\n if (hash !== -1) {\n // got a fragment string.\n this.hash = rest.substr(hash);\n rest = rest.slice(0, hash);\n }\n var qm = rest.indexOf('?');\n if (qm !== -1) {\n this.search = rest.substr(qm);\n this.query = rest.substr(qm + 1);\n if (parseQueryString) {\n this.query = querystring.parse(this.query);\n }\n rest = rest.slice(0, qm);\n } else if (parseQueryString) {\n // no query string, but parseQueryString still requested\n this.search = '';\n this.query = {};\n }\n if (rest) { this.pathname = rest; }\n if (slashedProtocol[lowerProto] && this.hostname && !this.pathname) {\n this.pathname = '/';\n }\n\n // to support http.request\n if (this.pathname || this.search) {\n var p = this.pathname || '';\n var s = this.search || '';\n this.path = p + s;\n }\n\n // finally, reconstruct the href based on what has been validated.\n this.href = this.format();\n return this;\n};\n\n// format a parsed object into a url string\nfunction urlFormat(obj) {\n /*\n * ensure it's an object, and not a string url.\n * If it's an obj, this is a no-op.\n * this way, you can call url_format() on strings\n * to clean up potentially wonky urls.\n */\n if (typeof obj === 'string') { obj = urlParse(obj); }\n if (!(obj instanceof Url)) { return Url.prototype.format.call(obj); }\n return obj.format();\n}\n\nUrl.prototype.format = function () {\n var auth = this.auth || '';\n if (auth) {\n auth = encodeURIComponent(auth);\n auth = auth.replace(/%3A/i, ':');\n auth += '@';\n }\n\n var protocol = this.protocol || '',\n pathname = this.pathname || '',\n hash = this.hash || '',\n host = false,\n query = '';\n\n if (this.host) {\n host = auth + this.host;\n } else if (this.hostname) {\n host = auth + (this.hostname.indexOf(':') === -1 ? this.hostname : '[' + this.hostname + ']');\n if (this.port) {\n host += ':' + this.port;\n }\n }\n\n if (this.query && typeof this.query === 'object' && Object.keys(this.query).length) {\n query = querystring.stringify(this.query, {\n arrayFormat: 'repeat',\n addQueryPrefix: false\n });\n }\n\n var search = this.search || (query && ('?' + query)) || '';\n\n if (protocol && protocol.substr(-1) !== ':') { protocol += ':'; }\n\n /*\n * only the slashedProtocols get the //. Not mailto:, xmpp:, etc.\n * unless they had them to begin with.\n */\n if (this.slashes || (!protocol || slashedProtocol[protocol]) && host !== false) {\n host = '//' + (host || '');\n if (pathname && pathname.charAt(0) !== '/') { pathname = '/' + pathname; }\n } else if (!host) {\n host = '';\n }\n\n if (hash && hash.charAt(0) !== '#') { hash = '#' + hash; }\n if (search && search.charAt(0) !== '?') { search = '?' + search; }\n\n pathname = pathname.replace(/[?#]/g, function (match) {\n return encodeURIComponent(match);\n });\n search = search.replace('#', '%23');\n\n return protocol + host + pathname + search + hash;\n};\n\nfunction urlResolve(source, relative) {\n return urlParse(source, false, true).resolve(relative);\n}\n\nUrl.prototype.resolve = function (relative) {\n return this.resolveObject(urlParse(relative, false, true)).format();\n};\n\nfunction urlResolveObject(source, relative) {\n if (!source) { return relative; }\n return urlParse(source, false, true).resolveObject(relative);\n}\n\nUrl.prototype.resolveObject = function (relative) {\n if (typeof relative === 'string') {\n var rel = new Url();\n rel.parse(relative, false, true);\n relative = rel;\n }\n\n var result = new Url();\n var tkeys = Object.keys(this);\n for (var tk = 0; tk < tkeys.length; tk++) {\n var tkey = tkeys[tk];\n result[tkey] = this[tkey];\n }\n\n /*\n * hash is always overridden, no matter what.\n * even href=\"\" will remove it.\n */\n result.hash = relative.hash;\n\n // if the relative url is empty, then there's nothing left to do here.\n if (relative.href === '') {\n result.href = result.format();\n return result;\n }\n\n // hrefs like //foo/bar always cut to the protocol.\n if (relative.slashes && !relative.protocol) {\n // take everything except the protocol from relative\n var rkeys = Object.keys(relative);\n for (var rk = 0; rk < rkeys.length; rk++) {\n var rkey = rkeys[rk];\n if (rkey !== 'protocol') { result[rkey] = relative[rkey]; }\n }\n\n // urlParse appends trailing / to urls like http://www.example.com\n if (slashedProtocol[result.protocol] && result.hostname && !result.pathname) {\n result.pathname = '/';\n result.path = result.pathname;\n }\n\n result.href = result.format();\n return result;\n }\n\n if (relative.protocol && relative.protocol !== result.protocol) {\n /*\n * if it's a known url protocol, then changing\n * the protocol does weird things\n * first, if it's not file:, then we MUST have a host,\n * and if there was a path\n * to begin with, then we MUST have a path.\n * if it is file:, then the host is dropped,\n * because that's known to be hostless.\n * anything else is assumed to be absolute.\n */\n if (!slashedProtocol[relative.protocol]) {\n var keys = Object.keys(relative);\n for (var v = 0; v < keys.length; v++) {\n var k = keys[v];\n result[k] = relative[k];\n }\n result.href = result.format();\n return result;\n }\n\n result.protocol = relative.protocol;\n if (!relative.host && !hostlessProtocol[relative.protocol]) {\n var relPath = (relative.pathname || '').split('/');\n while (relPath.length && !(relative.host = relPath.shift())) { }\n if (!relative.host) { relative.host = ''; }\n if (!relative.hostname) { relative.hostname = ''; }\n if (relPath[0] !== '') { relPath.unshift(''); }\n if (relPath.length < 2) { relPath.unshift(''); }\n result.pathname = relPath.join('/');\n } else {\n result.pathname = relative.pathname;\n }\n result.search = relative.search;\n result.query = relative.query;\n result.host = relative.host || '';\n result.auth = relative.auth;\n result.hostname = relative.hostname || relative.host;\n result.port = relative.port;\n // to support http.request\n if (result.pathname || result.search) {\n var p = result.pathname || '';\n var s = result.search || '';\n result.path = p + s;\n }\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n }\n\n var isSourceAbs = result.pathname && result.pathname.charAt(0) === '/',\n isRelAbs = relative.host || relative.pathname && relative.pathname.charAt(0) === '/',\n mustEndAbs = isRelAbs || isSourceAbs || (result.host && relative.pathname),\n removeAllDots = mustEndAbs,\n srcPath = result.pathname && result.pathname.split('/') || [],\n relPath = relative.pathname && relative.pathname.split('/') || [],\n psychotic = result.protocol && !slashedProtocol[result.protocol];\n\n /*\n * if the url is a non-slashed url, then relative\n * links like ../.. should be able\n * to crawl up to the hostname, as well. This is strange.\n * result.protocol has already been set by now.\n * Later on, put the first path part into the host field.\n */\n if (psychotic) {\n result.hostname = '';\n result.port = null;\n if (result.host) {\n if (srcPath[0] === '') { srcPath[0] = result.host; } else { srcPath.unshift(result.host); }\n }\n result.host = '';\n if (relative.protocol) {\n relative.hostname = null;\n relative.port = null;\n if (relative.host) {\n if (relPath[0] === '') { relPath[0] = relative.host; } else { relPath.unshift(relative.host); }\n }\n relative.host = null;\n }\n mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');\n }\n\n if (isRelAbs) {\n // it's absolute.\n result.host = relative.host || relative.host === '' ? relative.host : result.host;\n result.hostname = relative.hostname || relative.hostname === '' ? relative.hostname : result.hostname;\n result.search = relative.search;\n result.query = relative.query;\n srcPath = relPath;\n // fall through to the dot-handling below.\n } else if (relPath.length) {\n /*\n * it's relative\n * throw away the existing file, and take the new path instead.\n */\n if (!srcPath) { srcPath = []; }\n srcPath.pop();\n srcPath = srcPath.concat(relPath);\n result.search = relative.search;\n result.query = relative.query;\n } else if (relative.search != null) {\n /*\n * just pull out the search.\n * like href='?foo'.\n * Put this after the other two cases because it simplifies the booleans\n */\n if (psychotic) {\n result.host = srcPath.shift();\n result.hostname = result.host;\n /*\n * occationaly the auth can get stuck only in host\n * this especially happens in cases like\n * url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n */\n var authInHost = result.host && result.host.indexOf('@') > 0 ? result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.hostname = authInHost.shift();\n result.host = result.hostname;\n }\n }\n result.search = relative.search;\n result.query = relative.query;\n // to support http.request\n if (result.pathname !== null || result.search !== null) {\n result.path = (result.pathname ? result.pathname : '') + (result.search ? result.search : '');\n }\n result.href = result.format();\n return result;\n }\n\n if (!srcPath.length) {\n /*\n * no path at all. easy.\n * we've already handled the other stuff above.\n */\n result.pathname = null;\n // to support http.request\n if (result.search) {\n result.path = '/' + result.search;\n } else {\n result.path = null;\n }\n result.href = result.format();\n return result;\n }\n\n /*\n * if a url ENDs in . or .., then it must get a trailing slash.\n * however, if it ends in anything else non-slashy,\n * then it must NOT get a trailing slash.\n */\n var last = srcPath.slice(-1)[0];\n var hasTrailingSlash = (result.host || relative.host || srcPath.length > 1) && (last === '.' || last === '..') || last === '';\n\n /*\n * strip single dots, resolve double dots to parent dir\n * if the path tries to go above the root, `up` ends up > 0\n */\n var up = 0;\n for (var i = srcPath.length; i >= 0; i--) {\n last = srcPath[i];\n if (last === '.') {\n srcPath.splice(i, 1);\n } else if (last === '..') {\n srcPath.splice(i, 1);\n up++;\n } else if (up) {\n srcPath.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (!mustEndAbs && !removeAllDots) {\n for (; up--; up) {\n srcPath.unshift('..');\n }\n }\n\n if (mustEndAbs && srcPath[0] !== '' && (!srcPath[0] || srcPath[0].charAt(0) !== '/')) {\n srcPath.unshift('');\n }\n\n if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) {\n srcPath.push('');\n }\n\n var isAbsolute = srcPath[0] === '' || (srcPath[0] && srcPath[0].charAt(0) === '/');\n\n // put the host back\n if (psychotic) {\n result.hostname = isAbsolute ? '' : srcPath.length ? srcPath.shift() : '';\n result.host = result.hostname;\n /*\n * occationaly the auth can get stuck only in host\n * this especially happens in cases like\n * url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n */\n var authInHost = result.host && result.host.indexOf('@') > 0 ? result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.hostname = authInHost.shift();\n result.host = result.hostname;\n }\n }\n\n mustEndAbs = mustEndAbs || (result.host && srcPath.length);\n\n if (mustEndAbs && !isAbsolute) {\n srcPath.unshift('');\n }\n\n if (srcPath.length > 0) {\n result.pathname = srcPath.join('/');\n } else {\n result.pathname = null;\n result.path = null;\n }\n\n // to support request.http\n if (result.pathname !== null || result.search !== null) {\n result.path = (result.pathname ? result.pathname : '') + (result.search ? result.search : '');\n }\n result.auth = relative.auth || result.auth;\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n};\n\nUrl.prototype.parseHost = function () {\n var host = this.host;\n var port = portPattern.exec(host);\n if (port) {\n port = port[0];\n if (port !== ':') {\n this.port = port.substr(1);\n }\n host = host.substr(0, host.length - port.length);\n }\n if (host) { this.hostname = host; }\n};\n\nexports.parse = urlParse;\nexports.resolve = urlResolve;\nexports.resolveObject = urlResolveObject;\nexports.format = urlFormat;\n\nexports.Url = Url;\n\n\n//# sourceURL=webpack:///./node_modules/url/url.js?"); /***/ }), /***/ "./node_modules/uuid/index.js": /*!************************************!*\ !*** ./node_modules/uuid/index.js ***! \************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var v1 = __webpack_require__(/*! ./v1 */ \"./node_modules/uuid/v1.js\");\nvar v4 = __webpack_require__(/*! ./v4 */ \"./node_modules/uuid/v4.js\");\n\nvar uuid = v4;\nuuid.v1 = v1;\nuuid.v4 = v4;\n\nmodule.exports = uuid;\n\n\n//# sourceURL=webpack:///./node_modules/uuid/index.js?"); /***/ }), /***/ "./node_modules/uuid/lib/bytesToUuid.js": /*!**********************************************!*\ !*** ./node_modules/uuid/lib/bytesToUuid.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("/**\n * Convert array of 16 byte values to UUID string format of the form:\n * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\n */\nvar byteToHex = [];\nfor (var i = 0; i < 256; ++i) {\n byteToHex[i] = (i + 0x100).toString(16).substr(1);\n}\n\nfunction bytesToUuid(buf, offset) {\n var i = offset || 0;\n var bth = byteToHex;\n // join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4\n return ([\n bth[buf[i++]], bth[buf[i++]],\n bth[buf[i++]], bth[buf[i++]], '-',\n bth[buf[i++]], bth[buf[i++]], '-',\n bth[buf[i++]], bth[buf[i++]], '-',\n bth[buf[i++]], bth[buf[i++]], '-',\n bth[buf[i++]], bth[buf[i++]],\n bth[buf[i++]], bth[buf[i++]],\n bth[buf[i++]], bth[buf[i++]]\n ]).join('');\n}\n\nmodule.exports = bytesToUuid;\n\n\n//# sourceURL=webpack:///./node_modules/uuid/lib/bytesToUuid.js?"); /***/ }), /***/ "./node_modules/uuid/lib/rng-browser.js": /*!**********************************************!*\ !*** ./node_modules/uuid/lib/rng-browser.js ***! \**********************************************/ /*! no static exports found */ /***/ (function(module, exports) { eval("// Unique ID creation requires a high quality random # generator. In the\n// browser this is a little complicated due to unknown quality of Math.random()\n// and inconsistent support for the `crypto` API. We do the best we can via\n// feature-detection\n\n// getRandomValues needs to be invoked in a context where \"this\" is a Crypto\n// implementation. Also, find the complete implementation of crypto on IE11.\nvar getRandomValues = (typeof(crypto) != 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto)) ||\n (typeof(msCrypto) != 'undefined' && typeof window.msCrypto.getRandomValues == 'function' && msCrypto.getRandomValues.bind(msCrypto));\n\nif (getRandomValues) {\n // WHATWG crypto RNG - http://wiki.whatwg.org/wiki/Crypto\n var rnds8 = new Uint8Array(16); // eslint-disable-line no-undef\n\n module.exports = function whatwgRNG() {\n getRandomValues(rnds8);\n return rnds8;\n };\n} else {\n // Math.random()-based (RNG)\n //\n // If all else fails, use Math.random(). It's fast, but is of unspecified\n // quality.\n var rnds = new Array(16);\n\n module.exports = function mathRNG() {\n for (var i = 0, r; i < 16; i++) {\n if ((i & 0x03) === 0) r = Math.random() * 0x100000000;\n rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;\n }\n\n return rnds;\n };\n}\n\n\n//# sourceURL=webpack:///./node_modules/uuid/lib/rng-browser.js?"); /***/ }), /***/ "./node_modules/uuid/v1.js": /*!*********************************!*\ !*** ./node_modules/uuid/v1.js ***! \*********************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var rng = __webpack_require__(/*! ./lib/rng */ \"./node_modules/uuid/lib/rng-browser.js\");\nvar bytesToUuid = __webpack_require__(/*! ./lib/bytesToUuid */ \"./node_modules/uuid/lib/bytesToUuid.js\");\n\n// **`v1()` - Generate time-based UUID**\n//\n// Inspired by https://github.com/LiosK/UUID.js\n// and http://docs.python.org/library/uuid.html\n\nvar _nodeId;\nvar _clockseq;\n\n// Previous uuid creation time\nvar _lastMSecs = 0;\nvar _lastNSecs = 0;\n\n// See https://github.com/uuidjs/uuid for API details\nfunction v1(options, buf, offset) {\n var i = buf && offset || 0;\n var b = buf || [];\n\n options = options || {};\n var node = options.node || _nodeId;\n var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq;\n\n // node and clockseq need to be initialized to random values if they're not\n // specified. We do this lazily to minimize issues related to insufficient\n // system entropy. See #189\n if (node == null || clockseq == null) {\n var seedBytes = rng();\n if (node == null) {\n // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)\n node = _nodeId = [\n seedBytes[0] | 0x01,\n seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]\n ];\n }\n if (clockseq == null) {\n // Per 4.2.2, randomize (14 bit) clockseq\n clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;\n }\n }\n\n // UUID timestamps are 100 nano-second units since the Gregorian epoch,\n // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so\n // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'\n // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.\n var msecs = options.msecs !== undefined ? options.msecs : new Date().getTime();\n\n // Per 4.2.1.2, use count of uuid's generated during the current clock\n // cycle to simulate higher resolution clock\n var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1;\n\n // Time since last uuid creation (in msecs)\n var dt = (msecs - _lastMSecs) + (nsecs - _lastNSecs)/10000;\n\n // Per 4.2.1.2, Bump clockseq on clock regression\n if (dt < 0 && options.clockseq === undefined) {\n clockseq = clockseq + 1 & 0x3fff;\n }\n\n // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new\n // time interval\n if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {\n nsecs = 0;\n }\n\n // Per 4.2.1.2 Throw error if too many uuids are requested\n if (nsecs >= 10000) {\n throw new Error('uuid.v1(): Can\\'t create more than 10M uuids/sec');\n }\n\n _lastMSecs = msecs;\n _lastNSecs = nsecs;\n _clockseq = clockseq;\n\n // Per 4.1.4 - Convert from unix epoch to Gregorian epoch\n msecs += 12219292800000;\n\n // `time_low`\n var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;\n b[i++] = tl >>> 24 & 0xff;\n b[i++] = tl >>> 16 & 0xff;\n b[i++] = tl >>> 8 & 0xff;\n b[i++] = tl & 0xff;\n\n // `time_mid`\n var tmh = (msecs / 0x100000000 * 10000) & 0xfffffff;\n b[i++] = tmh >>> 8 & 0xff;\n b[i++] = tmh & 0xff;\n\n // `time_high_and_version`\n b[i++] = tmh >>> 24 & 0xf | 0x10; // include version\n b[i++] = tmh >>> 16 & 0xff;\n\n // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)\n b[i++] = clockseq >>> 8 | 0x80;\n\n // `clock_seq_low`\n b[i++] = clockseq & 0xff;\n\n // `node`\n for (var n = 0; n < 6; ++n) {\n b[i + n] = node[n];\n }\n\n return buf ? buf : bytesToUuid(b);\n}\n\nmodule.exports = v1;\n\n\n//# sourceURL=webpack:///./node_modules/uuid/v1.js?"); /***/ }), /***/ "./node_modules/uuid/v4.js": /*!*********************************!*\ !*** ./node_modules/uuid/v4.js ***! \*********************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("var rng = __webpack_require__(/*! ./lib/rng */ \"./node_modules/uuid/lib/rng-browser.js\");\nvar bytesToUuid = __webpack_require__(/*! ./lib/bytesToUuid */ \"./node_modules/uuid/lib/bytesToUuid.js\");\n\nfunction v4(options, buf, offset) {\n var i = buf && offset || 0;\n\n if (typeof(options) == 'string') {\n buf = options === 'binary' ? new Array(16) : null;\n options = null;\n }\n options = options || {};\n\n var rnds = options.random || (options.rng || rng)();\n\n // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`\n rnds[6] = (rnds[6] & 0x0f) | 0x40;\n rnds[8] = (rnds[8] & 0x3f) | 0x80;\n\n // Copy bytes to buffer, if provided\n if (buf) {\n for (var ii = 0; ii < 16; ++ii) {\n buf[i + ii] = rnds[ii];\n }\n }\n\n return buf || bytesToUuid(rnds);\n}\n\nmodule.exports = v4;\n\n\n//# sourceURL=webpack:///./node_modules/uuid/v4.js?"); /***/ }), /***/ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js": /*!********************************************************************!*\ !*** ./node_modules/vue-loader/lib/runtime/componentNormalizer.js ***! \********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return normalizeComponent; });\n/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nfunction normalizeComponent(\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier /* server only */,\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options =\n typeof scriptExports === 'function' ? scriptExports.options : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) {\n // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () {\n injectStyles.call(\n this,\n (options.functional ? this.parent : this).$root.$options.shadowRoot\n )\n }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection(h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing ? [].concat(existing, hook) : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n\n\n//# sourceURL=webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js?"); /***/ }), /***/ "./node_modules/vue-router/dist/vue-router.esm.js": /*!********************************************************!*\ !*** ./node_modules/vue-router/dist/vue-router.esm.js ***! \********************************************************/ /*! exports provided: NavigationFailureType, RouterLink, RouterView, START_LOCATION, default, isNavigationFailure, version */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NavigationFailureType\", function() { return NavigationFailureType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RouterLink\", function() { return Link; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RouterView\", function() { return View; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"START_LOCATION\", function() { return START; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return VueRouter$1; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isNavigationFailure\", function() { return isNavigationFailure; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return version; });\n/*!\n * vue-router v3.6.5\n * (c) 2022 Evan You\n * @license MIT\n */\n/* */\n\nfunction assert (condition, message) {\n if (!condition) {\n throw new Error((\"[vue-router] \" + message))\n }\n}\n\nfunction warn (condition, message) {\n if (!condition) {\n typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n }\n}\n\nfunction extend (a, b) {\n for (var key in b) {\n a[key] = b[key];\n }\n return a\n}\n\n/* */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n .replace(encodeReserveRE, encodeReserveReplacer)\n .replace(commaRE, ','); };\n\nfunction decode (str) {\n try {\n return decodeURIComponent(str)\n } catch (err) {\n if (true) {\n warn(false, (\"Error decoding \\\"\" + str + \"\\\". Leaving it intact.\"));\n }\n }\n return str\n}\n\nfunction resolveQuery (\n query,\n extraQuery,\n _parseQuery\n) {\n if ( extraQuery === void 0 ) extraQuery = {};\n\n var parse = _parseQuery || parseQuery;\n var parsedQuery;\n try {\n parsedQuery = parse(query || '');\n } catch (e) {\n true && warn(false, e.message);\n parsedQuery = {};\n }\n for (var key in extraQuery) {\n var value = extraQuery[key];\n parsedQuery[key] = Array.isArray(value)\n ? value.map(castQueryParamValue)\n : castQueryParamValue(value);\n }\n return parsedQuery\n}\n\nvar castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };\n\nfunction parseQuery (query) {\n var res = {};\n\n query = query.trim().replace(/^(\\?|#|&)/, '');\n\n if (!query) {\n return res\n }\n\n query.split('&').forEach(function (param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = decode(parts.shift());\n var val = parts.length > 0 ? decode(parts.join('=')) : null;\n\n if (res[key] === undefined) {\n res[key] = val;\n } else if (Array.isArray(res[key])) {\n res[key].push(val);\n } else {\n res[key] = [res[key], val];\n }\n });\n\n return res\n}\n\nfunction stringifyQuery (obj) {\n var res = obj\n ? Object.keys(obj)\n .map(function (key) {\n var val = obj[key];\n\n if (val === undefined) {\n return ''\n }\n\n if (val === null) {\n return encode(key)\n }\n\n if (Array.isArray(val)) {\n var result = [];\n val.forEach(function (val2) {\n if (val2 === undefined) {\n return\n }\n if (val2 === null) {\n result.push(encode(key));\n } else {\n result.push(encode(key) + '=' + encode(val2));\n }\n });\n return result.join('&')\n }\n\n return encode(key) + '=' + encode(val)\n })\n .filter(function (x) { return x.length > 0; })\n .join('&')\n : null;\n return res ? (\"?\" + res) : ''\n}\n\n/* */\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n record,\n location,\n redirectedFrom,\n router\n) {\n var stringifyQuery = router && router.options.stringifyQuery;\n\n var query = location.query || {};\n try {\n query = clone(query);\n } catch (e) {}\n\n var route = {\n name: location.name || (record && record.name),\n meta: (record && record.meta) || {},\n path: location.path || '/',\n hash: location.hash || '',\n query: query,\n params: location.params || {},\n fullPath: getFullPath(location, stringifyQuery),\n matched: record ? formatMatch(record) : []\n };\n if (redirectedFrom) {\n route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery);\n }\n return Object.freeze(route)\n}\n\nfunction clone (value) {\n if (Array.isArray(value)) {\n return value.map(clone)\n } else if (value && typeof value === 'object') {\n var res = {};\n for (var key in value) {\n res[key] = clone(value[key]);\n }\n return res\n } else {\n return value\n }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n path: '/'\n});\n\nfunction formatMatch (record) {\n var res = [];\n while (record) {\n res.unshift(record);\n record = record.parent;\n }\n return res\n}\n\nfunction getFullPath (\n ref,\n _stringifyQuery\n) {\n var path = ref.path;\n var query = ref.query; if ( query === void 0 ) query = {};\n var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n var stringify = _stringifyQuery || stringifyQuery;\n return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b, onlyPath) {\n if (b === START) {\n return a === b\n } else if (!b) {\n return false\n } else if (a.path && b.path) {\n return a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') && (onlyPath ||\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query))\n } else if (a.name && b.name) {\n return (\n a.name === b.name &&\n (onlyPath || (\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query) &&\n isObjectEqual(a.params, b.params))\n )\n )\n } else {\n return false\n }\n}\n\nfunction isObjectEqual (a, b) {\n if ( a === void 0 ) a = {};\n if ( b === void 0 ) b = {};\n\n // handle null value #1566\n if (!a || !b) { return a === b }\n var aKeys = Object.keys(a).sort();\n var bKeys = Object.keys(b).sort();\n if (aKeys.length !== bKeys.length) {\n return false\n }\n return aKeys.every(function (key, i) {\n var aVal = a[key];\n var bKey = bKeys[i];\n if (bKey !== key) { return false }\n var bVal = b[key];\n // query values can be null and undefined\n if (aVal == null || bVal == null) { return aVal === bVal }\n // check nested equality\n if (typeof aVal === 'object' && typeof bVal === 'object') {\n return isObjectEqual(aVal, bVal)\n }\n return String(aVal) === String(bVal)\n })\n}\n\nfunction isIncludedRoute (current, target) {\n return (\n current.path.replace(trailingSlashRE, '/').indexOf(\n target.path.replace(trailingSlashRE, '/')\n ) === 0 &&\n (!target.hash || current.hash === target.hash) &&\n queryIncludes(current.query, target.query)\n )\n}\n\nfunction queryIncludes (current, target) {\n for (var key in target) {\n if (!(key in current)) {\n return false\n }\n }\n return true\n}\n\nfunction handleRouteEntered (route) {\n for (var i = 0; i < route.matched.length; i++) {\n var record = route.matched[i];\n for (var name in record.instances) {\n var instance = record.instances[name];\n var cbs = record.enteredCbs[name];\n if (!instance || !cbs) { continue }\n delete record.enteredCbs[name];\n for (var i$1 = 0; i$1 < cbs.length; i$1++) {\n if (!instance._isBeingDestroyed) { cbs[i$1](instance); }\n }\n }\n }\n}\n\nvar View = {\n name: 'RouterView',\n functional: true,\n props: {\n name: {\n type: String,\n default: 'default'\n }\n },\n render: function render (_, ref) {\n var props = ref.props;\n var children = ref.children;\n var parent = ref.parent;\n var data = ref.data;\n\n // used by devtools to display a router-view badge\n data.routerView = true;\n\n // directly use parent context's createElement() function\n // so that components rendered by router-view can resolve named slots\n var h = parent.$createElement;\n var name = props.name;\n var route = parent.$route;\n var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n // determine current view depth, also check to see if the tree\n // has been toggled inactive but kept-alive.\n var depth = 0;\n var inactive = false;\n while (parent && parent._routerRoot !== parent) {\n var vnodeData = parent.$vnode ? parent.$vnode.data : {};\n if (vnodeData.routerView) {\n depth++;\n }\n if (vnodeData.keepAlive && parent._directInactive && parent._inactive) {\n inactive = true;\n }\n parent = parent.$parent;\n }\n data.routerViewDepth = depth;\n\n // render previous view if the tree is inactive and kept-alive\n if (inactive) {\n var cachedData = cache[name];\n var cachedComponent = cachedData && cachedData.component;\n if (cachedComponent) {\n // #2301\n // pass props\n if (cachedData.configProps) {\n fillPropsinData(cachedComponent, data, cachedData.route, cachedData.configProps);\n }\n return h(cachedComponent, data, children)\n } else {\n // render previous empty view\n return h()\n }\n }\n\n var matched = route.matched[depth];\n var component = matched && matched.components[name];\n\n // render empty node if no matched route or no config component\n if (!matched || !component) {\n cache[name] = null;\n return h()\n }\n\n // cache component\n cache[name] = { component: component };\n\n // attach instance registration hook\n // this will be called in the instance's injected lifecycle hooks\n data.registerRouteInstance = function (vm, val) {\n // val could be undefined for unregistration\n var current = matched.instances[name];\n if (\n (val && current !== vm) ||\n (!val && current === vm)\n ) {\n matched.instances[name] = val;\n }\n }\n\n // also register instance in prepatch hook\n // in case the same component instance is reused across different routes\n ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n matched.instances[name] = vnode.componentInstance;\n };\n\n // register instance in init hook\n // in case kept-alive component be actived when routes changed\n data.hook.init = function (vnode) {\n if (vnode.data.keepAlive &&\n vnode.componentInstance &&\n vnode.componentInstance !== matched.instances[name]\n ) {\n matched.instances[name] = vnode.componentInstance;\n }\n\n // if the route transition has already been confirmed then we weren't\n // able to call the cbs during confirmation as the component was not\n // registered yet, so we call it here.\n handleRouteEntered(route);\n };\n\n var configProps = matched.props && matched.props[name];\n // save route and configProps in cache\n if (configProps) {\n extend(cache[name], {\n route: route,\n configProps: configProps\n });\n fillPropsinData(component, data, route, configProps);\n }\n\n return h(component, data, children)\n }\n};\n\nfunction fillPropsinData (component, data, route, configProps) {\n // resolve props\n var propsToPass = data.props = resolveProps(route, configProps);\n if (propsToPass) {\n // clone to prevent mutation\n propsToPass = data.props = extend({}, propsToPass);\n // pass non-declared props as attrs\n var attrs = data.attrs = data.attrs || {};\n for (var key in propsToPass) {\n if (!component.props || !(key in component.props)) {\n attrs[key] = propsToPass[key];\n delete propsToPass[key];\n }\n }\n }\n}\n\nfunction resolveProps (route, config) {\n switch (typeof config) {\n case 'undefined':\n return\n case 'object':\n return config\n case 'function':\n return config(route)\n case 'boolean':\n return config ? route.params : undefined\n default:\n if (true) {\n warn(\n false,\n \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n \"expecting an object, function or boolean.\"\n );\n }\n }\n}\n\n/* */\n\nfunction resolvePath (\n relative,\n base,\n append\n) {\n var firstChar = relative.charAt(0);\n if (firstChar === '/') {\n return relative\n }\n\n if (firstChar === '?' || firstChar === '#') {\n return base + relative\n }\n\n var stack = base.split('/');\n\n // remove trailing segment if:\n // - not appending\n // - appending to trailing slash (last segment is empty)\n if (!append || !stack[stack.length - 1]) {\n stack.pop();\n }\n\n // resolve relative path\n var segments = relative.replace(/^\\//, '').split('/');\n for (var i = 0; i < segments.length; i++) {\n var segment = segments[i];\n if (segment === '..') {\n stack.pop();\n } else if (segment !== '.') {\n stack.push(segment);\n }\n }\n\n // ensure leading slash\n if (stack[0] !== '') {\n stack.unshift('');\n }\n\n return stack.join('/')\n}\n\nfunction parsePath (path) {\n var hash = '';\n var query = '';\n\n var hashIndex = path.indexOf('#');\n if (hashIndex >= 0) {\n hash = path.slice(hashIndex);\n path = path.slice(0, hashIndex);\n }\n\n var queryIndex = path.indexOf('?');\n if (queryIndex >= 0) {\n query = path.slice(queryIndex + 1);\n path = path.slice(0, queryIndex);\n }\n\n return {\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction cleanPath (path) {\n return path.replace(/\\/(?:\\s*\\/)+/g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue\n }\n\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = res[2] || defaultDelimiter;\n var pattern = capture || group;\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n }\n }\n\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n path += token;\n\n continue\n }\n\n var value = data[token.name];\n var segment;\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment;\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys;\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = [];\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n\n keys.push(token);\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n\n route += capture;\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/* */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n path,\n params,\n routeMsg\n) {\n params = params || {};\n try {\n var filler =\n regexpCompileCache[path] ||\n (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n\n // Fix #2505 resolving asterisk routes { name: 'not-found', params: { pathMatch: '/not-found' }}\n // and fix #3106 so that you can work with location descriptor object having params.pathMatch equal to empty string\n if (typeof params.pathMatch === 'string') { params[0] = params.pathMatch; }\n\n return filler(params, { pretty: true })\n } catch (e) {\n if (true) {\n // Fix #3072 no warn if `pathMatch` is string\n warn(typeof params.pathMatch === 'string', (\"missing param for \" + routeMsg + \": \" + (e.message)));\n }\n return ''\n } finally {\n // delete the 0 if it was added\n delete params[0];\n }\n}\n\n/* */\n\nfunction normalizeLocation (\n raw,\n current,\n append,\n router\n) {\n var next = typeof raw === 'string' ? { path: raw } : raw;\n // named target\n if (next._normalized) {\n return next\n } else if (next.name) {\n next = extend({}, raw);\n var params = next.params;\n if (params && typeof params === 'object') {\n next.params = extend({}, params);\n }\n return next\n }\n\n // relative params\n if (!next.path && next.params && current) {\n next = extend({}, next);\n next._normalized = true;\n var params$1 = extend(extend({}, current.params), next.params);\n if (current.name) {\n next.name = current.name;\n next.params = params$1;\n } else if (current.matched.length) {\n var rawPath = current.matched[current.matched.length - 1].path;\n next.path = fillParams(rawPath, params$1, (\"path \" + (current.path)));\n } else if (true) {\n warn(false, \"relative params navigation requires a current route.\");\n }\n return next\n }\n\n var parsedPath = parsePath(next.path || '');\n var basePath = (current && current.path) || '/';\n var path = parsedPath.path\n ? resolvePath(parsedPath.path, basePath, append || next.append)\n : basePath;\n\n var query = resolveQuery(\n parsedPath.query,\n next.query,\n router && router.options.parseQuery\n );\n\n var hash = next.hash || parsedPath.hash;\n if (hash && hash.charAt(0) !== '#') {\n hash = \"#\" + hash;\n }\n\n return {\n _normalized: true,\n path: path,\n query: query,\n hash: hash\n }\n}\n\n/* */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar noop = function () {};\n\nvar warnedCustomSlot;\nvar warnedTagProp;\nvar warnedEventProp;\n\nvar Link = {\n name: 'RouterLink',\n props: {\n to: {\n type: toTypes,\n required: true\n },\n tag: {\n type: String,\n default: 'a'\n },\n custom: Boolean,\n exact: Boolean,\n exactPath: Boolean,\n append: Boolean,\n replace: Boolean,\n activeClass: String,\n exactActiveClass: String,\n ariaCurrentValue: {\n type: String,\n default: 'page'\n },\n event: {\n type: eventTypes,\n default: 'click'\n }\n },\n render: function render (h) {\n var this$1$1 = this;\n\n var router = this.$router;\n var current = this.$route;\n var ref = router.resolve(\n this.to,\n current,\n this.append\n );\n var location = ref.location;\n var route = ref.route;\n var href = ref.href;\n\n var classes = {};\n var globalActiveClass = router.options.linkActiveClass;\n var globalExactActiveClass = router.options.linkExactActiveClass;\n // Support global empty active class\n var activeClassFallback =\n globalActiveClass == null ? 'router-link-active' : globalActiveClass;\n var exactActiveClassFallback =\n globalExactActiveClass == null\n ? 'router-link-exact-active'\n : globalExactActiveClass;\n var activeClass =\n this.activeClass == null ? activeClassFallback : this.activeClass;\n var exactActiveClass =\n this.exactActiveClass == null\n ? exactActiveClassFallback\n : this.exactActiveClass;\n\n var compareTarget = route.redirectedFrom\n ? createRoute(null, normalizeLocation(route.redirectedFrom), null, router)\n : route;\n\n classes[exactActiveClass] = isSameRoute(current, compareTarget, this.exactPath);\n classes[activeClass] = this.exact || this.exactPath\n ? classes[exactActiveClass]\n : isIncludedRoute(current, compareTarget);\n\n var ariaCurrentValue = classes[exactActiveClass] ? this.ariaCurrentValue : null;\n\n var handler = function (e) {\n if (guardEvent(e)) {\n if (this$1$1.replace) {\n router.replace(location, noop);\n } else {\n router.push(location, noop);\n }\n }\n };\n\n var on = { click: guardEvent };\n if (Array.isArray(this.event)) {\n this.event.forEach(function (e) {\n on[e] = handler;\n });\n } else {\n on[this.event] = handler;\n }\n\n var data = { class: classes };\n\n var scopedSlot =\n !this.$scopedSlots.$hasNormal &&\n this.$scopedSlots.default &&\n this.$scopedSlots.default({\n href: href,\n route: route,\n navigate: handler,\n isActive: classes[activeClass],\n isExactActive: classes[exactActiveClass]\n });\n\n if (scopedSlot) {\n if ( true && !this.custom) {\n !warnedCustomSlot && warn(false, 'In Vue Router 4, the v-slot API will by default wrap its content with an element. Use the custom prop to remove this warning:\\n\\n');\n warnedCustomSlot = true;\n }\n if (scopedSlot.length === 1) {\n return scopedSlot[0]\n } else if (scopedSlot.length > 1 || !scopedSlot.length) {\n if (true) {\n warn(\n false,\n (\" with to=\\\"\" + (this.to) + \"\\\" is trying to use a scoped slot but it didn't provide exactly one child. Wrapping the content with a span element.\")\n );\n }\n return scopedSlot.length === 0 ? h() : h('span', {}, scopedSlot)\n }\n }\n\n if (true) {\n if ('tag' in this.$options.propsData && !warnedTagProp) {\n warn(\n false,\n \"'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedTagProp = true;\n }\n if ('event' in this.$options.propsData && !warnedEventProp) {\n warn(\n false,\n \"'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedEventProp = true;\n }\n }\n\n if (this.tag === 'a') {\n data.on = on;\n data.attrs = { href: href, 'aria-current': ariaCurrentValue };\n } else {\n // find the first child and apply listener and href\n var a = findAnchor(this.$slots.default);\n if (a) {\n // in case the is a static node\n a.isStatic = false;\n var aData = (a.data = extend({}, a.data));\n aData.on = aData.on || {};\n // transform existing events in both objects into arrays so we can push later\n for (var event in aData.on) {\n var handler$1 = aData.on[event];\n if (event in on) {\n aData.on[event] = Array.isArray(handler$1) ? handler$1 : [handler$1];\n }\n }\n // append new listeners for router-link\n for (var event$1 in on) {\n if (event$1 in aData.on) {\n // on[event] is always a function\n aData.on[event$1].push(on[event$1]);\n } else {\n aData.on[event$1] = handler;\n }\n }\n\n var aAttrs = (a.data.attrs = extend({}, a.data.attrs));\n aAttrs.href = href;\n aAttrs['aria-current'] = ariaCurrentValue;\n } else {\n // doesn't have child, apply listener to self\n data.on = on;\n }\n }\n\n return h(this.tag, data, this.$slots.default)\n }\n};\n\nfunction guardEvent (e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n // don't redirect when preventDefault called\n if (e.defaultPrevented) { return }\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0) { return }\n // don't redirect if `target=\"_blank\"`\n if (e.currentTarget && e.currentTarget.getAttribute) {\n var target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target)) { return }\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault) {\n e.preventDefault();\n }\n return true\n}\n\nfunction findAnchor (children) {\n if (children) {\n var child;\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n if (child.tag === 'a') {\n return child\n }\n if (child.children && (child = findAnchor(child.children))) {\n return child\n }\n }\n }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n if (install.installed && _Vue === Vue) { return }\n install.installed = true;\n\n _Vue = Vue;\n\n var isDef = function (v) { return v !== undefined; };\n\n var registerInstance = function (vm, callVal) {\n var i = vm.$options._parentVnode;\n if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n i(vm, callVal);\n }\n };\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n if (isDef(this.$options.router)) {\n this._routerRoot = this;\n this._router = this.$options.router;\n this._router.init(this);\n Vue.util.defineReactive(this, '_route', this._router.history.current);\n } else {\n this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n }\n registerInstance(this, this);\n },\n destroyed: function destroyed () {\n registerInstance(this);\n }\n });\n\n Object.defineProperty(Vue.prototype, '$router', {\n get: function get () { return this._routerRoot._router }\n });\n\n Object.defineProperty(Vue.prototype, '$route', {\n get: function get () { return this._routerRoot._route }\n });\n\n Vue.component('RouterView', View);\n Vue.component('RouterLink', Link);\n\n var strats = Vue.config.optionMergeStrategies;\n // use the same hook merging strategy for route hooks\n strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/* */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/* */\n\nfunction createRouteMap (\n routes,\n oldPathList,\n oldPathMap,\n oldNameMap,\n parentRoute\n) {\n // the path list is used to control path matching priority\n var pathList = oldPathList || [];\n // $flow-disable-line\n var pathMap = oldPathMap || Object.create(null);\n // $flow-disable-line\n var nameMap = oldNameMap || Object.create(null);\n\n routes.forEach(function (route) {\n addRouteRecord(pathList, pathMap, nameMap, route, parentRoute);\n });\n\n // ensure wildcard routes are always at the end\n for (var i = 0, l = pathList.length; i < l; i++) {\n if (pathList[i] === '*') {\n pathList.push(pathList.splice(i, 1)[0]);\n l--;\n i--;\n }\n }\n\n if (true) {\n // warn if routes do not include leading slashes\n var found = pathList\n // check for missing leading slash\n .filter(function (path) { return path && path.charAt(0) !== '*' && path.charAt(0) !== '/'; });\n\n if (found.length > 0) {\n var pathNames = found.map(function (path) { return (\"- \" + path); }).join('\\n');\n warn(false, (\"Non-nested routes must include a leading slash character. Fix the following routes: \\n\" + pathNames));\n }\n }\n\n return {\n pathList: pathList,\n pathMap: pathMap,\n nameMap: nameMap\n }\n}\n\nfunction addRouteRecord (\n pathList,\n pathMap,\n nameMap,\n route,\n parent,\n matchAs\n) {\n var path = route.path;\n var name = route.name;\n if (true) {\n assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n assert(\n typeof route.component !== 'string',\n \"route config \\\"component\\\" for path: \" + (String(\n path || name\n )) + \" cannot be a \" + \"string id. Use an actual component instead.\"\n );\n\n warn(\n // eslint-disable-next-line no-control-regex\n !/[^\\u0000-\\u007F]+/.test(path),\n \"Route with path \\\"\" + path + \"\\\" contains unencoded characters, make sure \" +\n \"your path is correctly encoded before passing it to the router. Use \" +\n \"encodeURI to encode static segments of your path.\"\n );\n }\n\n var pathToRegexpOptions =\n route.pathToRegexpOptions || {};\n var normalizedPath = normalizePath(path, parent, pathToRegexpOptions.strict);\n\n if (typeof route.caseSensitive === 'boolean') {\n pathToRegexpOptions.sensitive = route.caseSensitive;\n }\n\n var record = {\n path: normalizedPath,\n regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n components: route.components || { default: route.component },\n alias: route.alias\n ? typeof route.alias === 'string'\n ? [route.alias]\n : route.alias\n : [],\n instances: {},\n enteredCbs: {},\n name: name,\n parent: parent,\n matchAs: matchAs,\n redirect: route.redirect,\n beforeEnter: route.beforeEnter,\n meta: route.meta || {},\n props:\n route.props == null\n ? {}\n : route.components\n ? route.props\n : { default: route.props }\n };\n\n if (route.children) {\n // Warn if route is named, does not redirect and has a default child route.\n // If users navigate to this route by name, the default child will\n // not be rendered (GH Issue #629)\n if (true) {\n if (\n route.name &&\n !route.redirect &&\n route.children.some(function (child) { return /^\\/?$/.test(child.path); })\n ) {\n warn(\n false,\n \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'}\\\"), \" +\n \"the default child route will not be rendered. Remove the name from \" +\n \"this route and use the name of the default child route for named \" +\n \"links instead.\"\n );\n }\n }\n route.children.forEach(function (child) {\n var childMatchAs = matchAs\n ? cleanPath((matchAs + \"/\" + (child.path)))\n : undefined;\n addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n });\n }\n\n if (!pathMap[record.path]) {\n pathList.push(record.path);\n pathMap[record.path] = record;\n }\n\n if (route.alias !== undefined) {\n var aliases = Array.isArray(route.alias) ? route.alias : [route.alias];\n for (var i = 0; i < aliases.length; ++i) {\n var alias = aliases[i];\n if ( true && alias === path) {\n warn(\n false,\n (\"Found an alias with the same value as the path: \\\"\" + path + \"\\\". You have to remove that alias. It will be ignored in development.\")\n );\n // skip in dev to make it work\n continue\n }\n\n var aliasRoute = {\n path: alias,\n children: route.children\n };\n addRouteRecord(\n pathList,\n pathMap,\n nameMap,\n aliasRoute,\n parent,\n record.path || '/' // matchAs\n );\n }\n }\n\n if (name) {\n if (!nameMap[name]) {\n nameMap[name] = record;\n } else if ( true && !matchAs) {\n warn(\n false,\n \"Duplicate named routes definition: \" +\n \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n );\n }\n }\n}\n\nfunction compileRouteRegex (\n path,\n pathToRegexpOptions\n) {\n var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n if (true) {\n var keys = Object.create(null);\n regex.keys.forEach(function (key) {\n warn(\n !keys[key.name],\n (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\")\n );\n keys[key.name] = true;\n });\n }\n return regex\n}\n\nfunction normalizePath (\n path,\n parent,\n strict\n) {\n if (!strict) { path = path.replace(/\\/$/, ''); }\n if (path[0] === '/') { return path }\n if (parent == null) { return path }\n return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/* */\n\n\n\nfunction createMatcher (\n routes,\n router\n) {\n var ref = createRouteMap(routes);\n var pathList = ref.pathList;\n var pathMap = ref.pathMap;\n var nameMap = ref.nameMap;\n\n function addRoutes (routes) {\n createRouteMap(routes, pathList, pathMap, nameMap);\n }\n\n function addRoute (parentOrRoute, route) {\n var parent = (typeof parentOrRoute !== 'object') ? nameMap[parentOrRoute] : undefined;\n // $flow-disable-line\n createRouteMap([route || parentOrRoute], pathList, pathMap, nameMap, parent);\n\n // add aliases of parent\n if (parent && parent.alias.length) {\n createRouteMap(\n // $flow-disable-line route is defined if parent is\n parent.alias.map(function (alias) { return ({ path: alias, children: [route] }); }),\n pathList,\n pathMap,\n nameMap,\n parent\n );\n }\n }\n\n function getRoutes () {\n return pathList.map(function (path) { return pathMap[path]; })\n }\n\n function match (\n raw,\n currentRoute,\n redirectedFrom\n ) {\n var location = normalizeLocation(raw, currentRoute, false, router);\n var name = location.name;\n\n if (name) {\n var record = nameMap[name];\n if (true) {\n warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n }\n if (!record) { return _createRoute(null, location) }\n var paramNames = record.regex.keys\n .filter(function (key) { return !key.optional; })\n .map(function (key) { return key.name; });\n\n if (typeof location.params !== 'object') {\n location.params = {};\n }\n\n if (currentRoute && typeof currentRoute.params === 'object') {\n for (var key in currentRoute.params) {\n if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n location.params[key] = currentRoute.params[key];\n }\n }\n }\n\n location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n return _createRoute(record, location, redirectedFrom)\n } else if (location.path) {\n location.params = {};\n for (var i = 0; i < pathList.length; i++) {\n var path = pathList[i];\n var record$1 = pathMap[path];\n if (matchRoute(record$1.regex, location.path, location.params)) {\n return _createRoute(record$1, location, redirectedFrom)\n }\n }\n }\n // no match\n return _createRoute(null, location)\n }\n\n function redirect (\n record,\n location\n ) {\n var originalRedirect = record.redirect;\n var redirect = typeof originalRedirect === 'function'\n ? originalRedirect(createRoute(record, location, null, router))\n : originalRedirect;\n\n if (typeof redirect === 'string') {\n redirect = { path: redirect };\n }\n\n if (!redirect || typeof redirect !== 'object') {\n if (true) {\n warn(\n false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n );\n }\n return _createRoute(null, location)\n }\n\n var re = redirect;\n var name = re.name;\n var path = re.path;\n var query = location.query;\n var hash = location.hash;\n var params = location.params;\n query = re.hasOwnProperty('query') ? re.query : query;\n hash = re.hasOwnProperty('hash') ? re.hash : hash;\n params = re.hasOwnProperty('params') ? re.params : params;\n\n if (name) {\n // resolved named direct\n var targetRecord = nameMap[name];\n if (true) {\n assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n }\n return match({\n _normalized: true,\n name: name,\n query: query,\n hash: hash,\n params: params\n }, undefined, location)\n } else if (path) {\n // 1. resolve relative redirect\n var rawPath = resolveRecordPath(path, record);\n // 2. resolve params\n var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n // 3. rematch with existing query and hash\n return match({\n _normalized: true,\n path: resolvedPath,\n query: query,\n hash: hash\n }, undefined, location)\n } else {\n if (true) {\n warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n }\n return _createRoute(null, location)\n }\n }\n\n function alias (\n record,\n location,\n matchAs\n ) {\n var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n var aliasedMatch = match({\n _normalized: true,\n path: aliasedPath\n });\n if (aliasedMatch) {\n var matched = aliasedMatch.matched;\n var aliasedRecord = matched[matched.length - 1];\n location.params = aliasedMatch.params;\n return _createRoute(aliasedRecord, location)\n }\n return _createRoute(null, location)\n }\n\n function _createRoute (\n record,\n location,\n redirectedFrom\n ) {\n if (record && record.redirect) {\n return redirect(record, redirectedFrom || location)\n }\n if (record && record.matchAs) {\n return alias(record, location, record.matchAs)\n }\n return createRoute(record, location, redirectedFrom, router)\n }\n\n return {\n match: match,\n addRoute: addRoute,\n getRoutes: getRoutes,\n addRoutes: addRoutes\n }\n}\n\nfunction matchRoute (\n regex,\n path,\n params\n) {\n var m = path.match(regex);\n\n if (!m) {\n return false\n } else if (!params) {\n return true\n }\n\n for (var i = 1, len = m.length; i < len; ++i) {\n var key = regex.keys[i - 1];\n if (key) {\n // Fix #1994: using * with props: true generates a param named 0\n params[key.name || 'pathMatch'] = typeof m[i] === 'string' ? decode(m[i]) : m[i];\n }\n }\n\n return true\n}\n\nfunction resolveRecordPath (path, record) {\n return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/* */\n\n// use User Timing api (if present) for more accurate key precision\nvar Time =\n inBrowser && window.performance && window.performance.now\n ? window.performance\n : Date;\n\nfunction genStateKey () {\n return Time.now().toFixed(3)\n}\n\nvar _key = genStateKey();\n\nfunction getStateKey () {\n return _key\n}\n\nfunction setStateKey (key) {\n return (_key = key)\n}\n\n/* */\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n // Prevent browser scroll behavior on History popstate\n if ('scrollRestoration' in window.history) {\n window.history.scrollRestoration = 'manual';\n }\n // Fix for #1585 for Firefox\n // Fix for #2195 Add optional third attribute to workaround a bug in safari https://bugs.webkit.org/show_bug.cgi?id=182678\n // Fix for #2774 Support for apps loaded from Windows file shares not mapped to network drives: replaced location.origin with\n // window.location.protocol + '//' + window.location.host\n // location.host contains the port and location.hostname doesn't\n var protocolAndPath = window.location.protocol + '//' + window.location.host;\n var absolutePath = window.location.href.replace(protocolAndPath, '');\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, window.history.state);\n stateCopy.key = getStateKey();\n window.history.replaceState(stateCopy, '', absolutePath);\n window.addEventListener('popstate', handlePopState);\n return function () {\n window.removeEventListener('popstate', handlePopState);\n }\n}\n\nfunction handleScroll (\n router,\n to,\n from,\n isPop\n) {\n if (!router.app) {\n return\n }\n\n var behavior = router.options.scrollBehavior;\n if (!behavior) {\n return\n }\n\n if (true) {\n assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n }\n\n // wait until re-render finishes before scrolling\n router.app.$nextTick(function () {\n var position = getScrollPosition();\n var shouldScroll = behavior.call(\n router,\n to,\n from,\n isPop ? position : null\n );\n\n if (!shouldScroll) {\n return\n }\n\n if (typeof shouldScroll.then === 'function') {\n shouldScroll\n .then(function (shouldScroll) {\n scrollToPosition((shouldScroll), position);\n })\n .catch(function (err) {\n if (true) {\n assert(false, err.toString());\n }\n });\n } else {\n scrollToPosition(shouldScroll, position);\n }\n });\n}\n\nfunction saveScrollPosition () {\n var key = getStateKey();\n if (key) {\n positionStore[key] = {\n x: window.pageXOffset,\n y: window.pageYOffset\n };\n }\n}\n\nfunction handlePopState (e) {\n saveScrollPosition();\n if (e.state && e.state.key) {\n setStateKey(e.state.key);\n }\n}\n\nfunction getScrollPosition () {\n var key = getStateKey();\n if (key) {\n return positionStore[key]\n }\n}\n\nfunction getElementPosition (el, offset) {\n var docEl = document.documentElement;\n var docRect = docEl.getBoundingClientRect();\n var elRect = el.getBoundingClientRect();\n return {\n x: elRect.left - docRect.left - offset.x,\n y: elRect.top - docRect.top - offset.y\n }\n}\n\nfunction isValidPosition (obj) {\n return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n y: isNumber(obj.y) ? obj.y : window.pageYOffset\n }\n}\n\nfunction normalizeOffset (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : 0,\n y: isNumber(obj.y) ? obj.y : 0\n }\n}\n\nfunction isNumber (v) {\n return typeof v === 'number'\n}\n\nvar hashStartsWithNumberRE = /^#\\d/;\n\nfunction scrollToPosition (shouldScroll, position) {\n var isObject = typeof shouldScroll === 'object';\n if (isObject && typeof shouldScroll.selector === 'string') {\n // getElementById would still fail if the selector contains a more complicated query like #main[data-attr]\n // but at the same time, it doesn't make much sense to select an element with an id and an extra selector\n var el = hashStartsWithNumberRE.test(shouldScroll.selector) // $flow-disable-line\n ? document.getElementById(shouldScroll.selector.slice(1)) // $flow-disable-line\n : document.querySelector(shouldScroll.selector);\n\n if (el) {\n var offset =\n shouldScroll.offset && typeof shouldScroll.offset === 'object'\n ? shouldScroll.offset\n : {};\n offset = normalizeOffset(offset);\n position = getElementPosition(el, offset);\n } else if (isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n } else if (isObject && isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n\n if (position) {\n // $flow-disable-line\n if ('scrollBehavior' in document.documentElement.style) {\n window.scrollTo({\n left: position.x,\n top: position.y,\n // $flow-disable-line\n behavior: shouldScroll.behavior\n });\n } else {\n window.scrollTo(position.x, position.y);\n }\n }\n}\n\n/* */\n\nvar supportsPushState =\n inBrowser &&\n (function () {\n var ua = window.navigator.userAgent;\n\n if (\n (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n ua.indexOf('Mobile Safari') !== -1 &&\n ua.indexOf('Chrome') === -1 &&\n ua.indexOf('Windows Phone') === -1\n ) {\n return false\n }\n\n return window.history && typeof window.history.pushState === 'function'\n })();\n\nfunction pushState (url, replace) {\n saveScrollPosition();\n // try...catch the pushState call to get around Safari\n // DOM Exception 18 where it limits to 100 pushState calls\n var history = window.history;\n try {\n if (replace) {\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, history.state);\n stateCopy.key = getStateKey();\n history.replaceState(stateCopy, '', url);\n } else {\n history.pushState({ key: setStateKey(genStateKey()) }, '', url);\n }\n } catch (e) {\n window.location[replace ? 'replace' : 'assign'](url);\n }\n}\n\nfunction replaceState (url) {\n pushState(url, true);\n}\n\n// When changing thing, also edit router.d.ts\nvar NavigationFailureType = {\n redirected: 2,\n aborted: 4,\n cancelled: 8,\n duplicated: 16\n};\n\nfunction createNavigationRedirectedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.redirected,\n (\"Redirected when going from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (stringifyRoute(\n to\n )) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createNavigationDuplicatedError (from, to) {\n var error = createRouterError(\n from,\n to,\n NavigationFailureType.duplicated,\n (\"Avoided redundant navigation to current location: \\\"\" + (from.fullPath) + \"\\\".\")\n );\n // backwards compatible with the first introduction of Errors\n error.name = 'NavigationDuplicated';\n return error\n}\n\nfunction createNavigationCancelledError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.cancelled,\n (\"Navigation cancelled from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" with a new navigation.\")\n )\n}\n\nfunction createNavigationAbortedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.aborted,\n (\"Navigation aborted from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createRouterError (from, to, type, message) {\n var error = new Error(message);\n error._isRouter = true;\n error.from = from;\n error.to = to;\n error.type = type;\n\n return error\n}\n\nvar propertiesToLog = ['params', 'query', 'hash'];\n\nfunction stringifyRoute (to) {\n if (typeof to === 'string') { return to }\n if ('path' in to) { return to.path }\n var location = {};\n propertiesToLog.forEach(function (key) {\n if (key in to) { location[key] = to[key]; }\n });\n return JSON.stringify(location, null, 2)\n}\n\nfunction isError (err) {\n return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nfunction isNavigationFailure (err, errorType) {\n return (\n isError(err) &&\n err._isRouter &&\n (errorType == null || err.type === errorType)\n )\n}\n\n/* */\n\nfunction runQueue (queue, fn, cb) {\n var step = function (index) {\n if (index >= queue.length) {\n cb();\n } else {\n if (queue[index]) {\n fn(queue[index], function () {\n step(index + 1);\n });\n } else {\n step(index + 1);\n }\n }\n };\n step(0);\n}\n\n/* */\n\nfunction resolveAsyncComponents (matched) {\n return function (to, from, next) {\n var hasAsync = false;\n var pending = 0;\n var error = null;\n\n flatMapComponents(matched, function (def, _, match, key) {\n // if it's a function and doesn't have cid attached,\n // assume it's an async component resolve function.\n // we are not using Vue's default async resolving mechanism because\n // we want to halt the navigation until the incoming component has been\n // resolved.\n if (typeof def === 'function' && def.cid === undefined) {\n hasAsync = true;\n pending++;\n\n var resolve = once(function (resolvedDef) {\n if (isESModule(resolvedDef)) {\n resolvedDef = resolvedDef.default;\n }\n // save resolved on async factory in case it's used elsewhere\n def.resolved = typeof resolvedDef === 'function'\n ? resolvedDef\n : _Vue.extend(resolvedDef);\n match.components[key] = resolvedDef;\n pending--;\n if (pending <= 0) {\n next();\n }\n });\n\n var reject = once(function (reason) {\n var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n true && warn(false, msg);\n if (!error) {\n error = isError(reason)\n ? reason\n : new Error(msg);\n next(error);\n }\n });\n\n var res;\n try {\n res = def(resolve, reject);\n } catch (e) {\n reject(e);\n }\n if (res) {\n if (typeof res.then === 'function') {\n res.then(resolve, reject);\n } else {\n // new syntax in Vue 2.3\n var comp = res.component;\n if (comp && typeof comp.then === 'function') {\n comp.then(resolve, reject);\n }\n }\n }\n }\n });\n\n if (!hasAsync) { next(); }\n }\n}\n\nfunction flatMapComponents (\n matched,\n fn\n) {\n return flatten(matched.map(function (m) {\n return Object.keys(m.components).map(function (key) { return fn(\n m.components[key],\n m.instances[key],\n m, key\n ); })\n }))\n}\n\nfunction flatten (arr) {\n return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n typeof Symbol === 'function' &&\n typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n var called = false;\n return function () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n if (called) { return }\n called = true;\n return fn.apply(this, args)\n }\n}\n\n/* */\n\nvar History = function History (router, base) {\n this.router = router;\n this.base = normalizeBase(base);\n // start with a route object that stands for \"nowhere\"\n this.current = START;\n this.pending = null;\n this.ready = false;\n this.readyCbs = [];\n this.readyErrorCbs = [];\n this.errorCbs = [];\n this.listeners = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n if (this.ready) {\n cb();\n } else {\n this.readyCbs.push(cb);\n if (errorCb) {\n this.readyErrorCbs.push(errorCb);\n }\n }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (\n location,\n onComplete,\n onAbort\n) {\n var this$1$1 = this;\n\n var route;\n // catch redirect option https://github.com/vuejs/vue-router/issues/3201\n try {\n route = this.router.match(location, this.current);\n } catch (e) {\n this.errorCbs.forEach(function (cb) {\n cb(e);\n });\n // Exception should still be thrown\n throw e\n }\n var prev = this.current;\n this.confirmTransition(\n route,\n function () {\n this$1$1.updateRoute(route);\n onComplete && onComplete(route);\n this$1$1.ensureURL();\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n\n // fire ready cbs once\n if (!this$1$1.ready) {\n this$1$1.ready = true;\n this$1$1.readyCbs.forEach(function (cb) {\n cb(route);\n });\n }\n },\n function (err) {\n if (onAbort) {\n onAbort(err);\n }\n if (err && !this$1$1.ready) {\n // Initial redirection should not mark the history as ready yet\n // because it's triggered by the redirection instead\n // https://github.com/vuejs/vue-router/issues/3225\n // https://github.com/vuejs/vue-router/issues/3331\n if (!isNavigationFailure(err, NavigationFailureType.redirected) || prev !== START) {\n this$1$1.ready = true;\n this$1$1.readyErrorCbs.forEach(function (cb) {\n cb(err);\n });\n }\n }\n }\n );\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n var this$1$1 = this;\n\n var current = this.current;\n this.pending = route;\n var abort = function (err) {\n // changed after adding errors with\n // https://github.com/vuejs/vue-router/pull/3047 before that change,\n // redirect and aborted navigation would produce an err == null\n if (!isNavigationFailure(err) && isError(err)) {\n if (this$1$1.errorCbs.length) {\n this$1$1.errorCbs.forEach(function (cb) {\n cb(err);\n });\n } else {\n if (true) {\n warn(false, 'uncaught error during route navigation:');\n }\n console.error(err);\n }\n }\n onAbort && onAbort(err);\n };\n var lastRouteIndex = route.matched.length - 1;\n var lastCurrentIndex = current.matched.length - 1;\n if (\n isSameRoute(route, current) &&\n // in the case the route map has been dynamically appended to\n lastRouteIndex === lastCurrentIndex &&\n route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]\n ) {\n this.ensureURL();\n if (route.hash) {\n handleScroll(this.router, current, route, false);\n }\n return abort(createNavigationDuplicatedError(current, route))\n }\n\n var ref = resolveQueue(\n this.current.matched,\n route.matched\n );\n var updated = ref.updated;\n var deactivated = ref.deactivated;\n var activated = ref.activated;\n\n var queue = [].concat(\n // in-component leave guards\n extractLeaveGuards(deactivated),\n // global before hooks\n this.router.beforeHooks,\n // in-component update hooks\n extractUpdateHooks(updated),\n // in-config enter guards\n activated.map(function (m) { return m.beforeEnter; }),\n // async components\n resolveAsyncComponents(activated)\n );\n\n var iterator = function (hook, next) {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n try {\n hook(route, current, function (to) {\n if (to === false) {\n // next(false) -> abort navigation, ensure current URL\n this$1$1.ensureURL(true);\n abort(createNavigationAbortedError(current, route));\n } else if (isError(to)) {\n this$1$1.ensureURL(true);\n abort(to);\n } else if (\n typeof to === 'string' ||\n (typeof to === 'object' &&\n (typeof to.path === 'string' || typeof to.name === 'string'))\n ) {\n // next('/') or next({ path: '/' }) -> redirect\n abort(createNavigationRedirectedError(current, route));\n if (typeof to === 'object' && to.replace) {\n this$1$1.replace(to);\n } else {\n this$1$1.push(to);\n }\n } else {\n // confirm transition and pass on the value\n next(to);\n }\n });\n } catch (e) {\n abort(e);\n }\n };\n\n runQueue(queue, iterator, function () {\n // wait until async components are resolved before\n // extracting in-component enter guards\n var enterGuards = extractEnterGuards(activated);\n var queue = enterGuards.concat(this$1$1.router.resolveHooks);\n runQueue(queue, iterator, function () {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n this$1$1.pending = null;\n onComplete(route);\n if (this$1$1.router.app) {\n this$1$1.router.app.$nextTick(function () {\n handleRouteEntered(route);\n });\n }\n });\n });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n this.current = route;\n this.cb && this.cb(route);\n};\n\nHistory.prototype.setupListeners = function setupListeners () {\n // Default implementation is empty\n};\n\nHistory.prototype.teardown = function teardown () {\n // clean up event listeners\n // https://github.com/vuejs/vue-router/issues/2341\n this.listeners.forEach(function (cleanupListener) {\n cleanupListener();\n });\n this.listeners = [];\n\n // reset current history route\n // https://github.com/vuejs/vue-router/issues/3294\n this.current = START;\n this.pending = null;\n};\n\nfunction normalizeBase (base) {\n if (!base) {\n if (inBrowser) {\n // respect tag\n var baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n } else {\n base = '/';\n }\n }\n // make sure there's the starting slash\n if (base.charAt(0) !== '/') {\n base = '/' + base;\n }\n // remove trailing slash\n return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n current,\n next\n) {\n var i;\n var max = Math.max(current.length, next.length);\n for (i = 0; i < max; i++) {\n if (current[i] !== next[i]) {\n break\n }\n }\n return {\n updated: next.slice(0, i),\n activated: next.slice(i),\n deactivated: current.slice(i)\n }\n}\n\nfunction extractGuards (\n records,\n name,\n bind,\n reverse\n) {\n var guards = flatMapComponents(records, function (def, instance, match, key) {\n var guard = extractGuard(def, name);\n if (guard) {\n return Array.isArray(guard)\n ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n : bind(guard, instance, match, key)\n }\n });\n return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n def,\n key\n) {\n if (typeof def !== 'function') {\n // extend now so that global mixins are applied.\n def = _Vue.extend(def);\n }\n return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n if (instance) {\n return function boundRouteGuard () {\n return guard.apply(instance, arguments)\n }\n }\n}\n\nfunction extractEnterGuards (\n activated\n) {\n return extractGuards(\n activated,\n 'beforeRouteEnter',\n function (guard, _, match, key) {\n return bindEnterGuard(guard, match, key)\n }\n )\n}\n\nfunction bindEnterGuard (\n guard,\n match,\n key\n) {\n return function routeEnterGuard (to, from, next) {\n return guard(to, from, function (cb) {\n if (typeof cb === 'function') {\n if (!match.enteredCbs[key]) {\n match.enteredCbs[key] = [];\n }\n match.enteredCbs[key].push(cb);\n }\n next(cb);\n })\n }\n}\n\n/* */\n\nvar HTML5History = /*@__PURE__*/(function (History) {\n function HTML5History (router, base) {\n History.call(this, router, base);\n\n this._startLocation = getLocation(this.base);\n }\n\n if ( History ) HTML5History.__proto__ = History;\n HTML5History.prototype = Object.create( History && History.prototype );\n HTML5History.prototype.constructor = HTML5History;\n\n HTML5History.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n\n // Avoiding first `popstate` event dispatched in some browsers but first\n // history route not updated since async guard at the same time.\n var location = getLocation(this$1$1.base);\n if (this$1$1.current === START && location === this$1$1._startLocation) {\n return\n }\n\n this$1$1.transitionTo(location, function (route) {\n if (supportsScroll) {\n handleScroll(router, route, current, true);\n }\n });\n };\n window.addEventListener('popstate', handleRoutingEvent);\n this.listeners.push(function () {\n window.removeEventListener('popstate', handleRoutingEvent);\n });\n };\n\n HTML5History.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.ensureURL = function ensureURL (push) {\n if (getLocation(this.base) !== this.current.fullPath) {\n var current = cleanPath(this.base + this.current.fullPath);\n push ? pushState(current) : replaceState(current);\n }\n };\n\n HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n return getLocation(this.base)\n };\n\n return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n var path = window.location.pathname;\n var pathLowerCase = path.toLowerCase();\n var baseLowerCase = base.toLowerCase();\n // base=\"/a\" shouldn't turn path=\"/app\" into \"/a/pp\"\n // https://github.com/vuejs/vue-router/issues/3555\n // so we ensure the trailing slash in the base\n if (base && ((pathLowerCase === baseLowerCase) ||\n (pathLowerCase.indexOf(cleanPath(baseLowerCase + '/')) === 0))) {\n path = path.slice(base.length);\n }\n return (path || '/') + window.location.search + window.location.hash\n}\n\n/* */\n\nvar HashHistory = /*@__PURE__*/(function (History) {\n function HashHistory (router, base, fallback) {\n History.call(this, router, base);\n // check history fallback deeplinking\n if (fallback && checkFallback(this.base)) {\n return\n }\n ensureSlash();\n }\n\n if ( History ) HashHistory.__proto__ = History;\n HashHistory.prototype = Object.create( History && History.prototype );\n HashHistory.prototype.constructor = HashHistory;\n\n // this is delayed until the app mounts\n // to avoid the hashchange listener being fired too early\n HashHistory.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n if (!ensureSlash()) {\n return\n }\n this$1$1.transitionTo(getHash(), function (route) {\n if (supportsScroll) {\n handleScroll(this$1$1.router, route, current, true);\n }\n if (!supportsPushState) {\n replaceHash(route.fullPath);\n }\n });\n };\n var eventType = supportsPushState ? 'popstate' : 'hashchange';\n window.addEventListener(\n eventType,\n handleRoutingEvent\n );\n this.listeners.push(function () {\n window.removeEventListener(eventType, handleRoutingEvent);\n });\n };\n\n HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n pushHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n replaceHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HashHistory.prototype.ensureURL = function ensureURL (push) {\n var current = this.current.fullPath;\n if (getHash() !== current) {\n push ? pushHash(current) : replaceHash(current);\n }\n };\n\n HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n return getHash()\n };\n\n return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n var location = getLocation(base);\n if (!/^\\/#/.test(location)) {\n window.location.replace(cleanPath(base + '/#' + location));\n return true\n }\n}\n\nfunction ensureSlash () {\n var path = getHash();\n if (path.charAt(0) === '/') {\n return true\n }\n replaceHash('/' + path);\n return false\n}\n\nfunction getHash () {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var index = href.indexOf('#');\n // empty path\n if (index < 0) { return '' }\n\n href = href.slice(index + 1);\n\n return href\n}\n\nfunction getUrl (path) {\n var href = window.location.href;\n var i = href.indexOf('#');\n var base = i >= 0 ? href.slice(0, i) : href;\n return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n if (supportsPushState) {\n pushState(getUrl(path));\n } else {\n window.location.hash = path;\n }\n}\n\nfunction replaceHash (path) {\n if (supportsPushState) {\n replaceState(getUrl(path));\n } else {\n window.location.replace(getUrl(path));\n }\n}\n\n/* */\n\nvar AbstractHistory = /*@__PURE__*/(function (History) {\n function AbstractHistory (router, base) {\n History.call(this, router, base);\n this.stack = [];\n this.index = -1;\n }\n\n if ( History ) AbstractHistory.__proto__ = History;\n AbstractHistory.prototype = Object.create( History && History.prototype );\n AbstractHistory.prototype.constructor = AbstractHistory;\n\n AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index + 1).concat(route);\n this$1$1.index++;\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index).concat(route);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.go = function go (n) {\n var this$1$1 = this;\n\n var targetIndex = this.index + n;\n if (targetIndex < 0 || targetIndex >= this.stack.length) {\n return\n }\n var route = this.stack[targetIndex];\n this.confirmTransition(\n route,\n function () {\n var prev = this$1$1.current;\n this$1$1.index = targetIndex;\n this$1$1.updateRoute(route);\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n },\n function (err) {\n if (isNavigationFailure(err, NavigationFailureType.duplicated)) {\n this$1$1.index = targetIndex;\n }\n }\n );\n };\n\n AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n var current = this.stack[this.stack.length - 1];\n return current ? current.fullPath : '/'\n };\n\n AbstractHistory.prototype.ensureURL = function ensureURL () {\n // noop\n };\n\n return AbstractHistory;\n}(History));\n\n/* */\n\n\n\nvar VueRouter = function VueRouter (options) {\n if ( options === void 0 ) options = {};\n\n if (true) {\n warn(this instanceof VueRouter, \"Router must be called with the new operator.\");\n }\n this.app = null;\n this.apps = [];\n this.options = options;\n this.beforeHooks = [];\n this.resolveHooks = [];\n this.afterHooks = [];\n this.matcher = createMatcher(options.routes || [], this);\n\n var mode = options.mode || 'hash';\n this.fallback =\n mode === 'history' && !supportsPushState && options.fallback !== false;\n if (this.fallback) {\n mode = 'hash';\n }\n if (!inBrowser) {\n mode = 'abstract';\n }\n this.mode = mode;\n\n switch (mode) {\n case 'history':\n this.history = new HTML5History(this, options.base);\n break\n case 'hash':\n this.history = new HashHistory(this, options.base, this.fallback);\n break\n case 'abstract':\n this.history = new AbstractHistory(this, options.base);\n break\n default:\n if (true) {\n assert(false, (\"invalid mode: \" + mode));\n }\n }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (raw, current, redirectedFrom) {\n return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n var this$1$1 = this;\n\n true &&\n assert(\n install.installed,\n \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n \"before creating root instance.\"\n );\n\n this.apps.push(app);\n\n // set up app destroyed handler\n // https://github.com/vuejs/vue-router/issues/2639\n app.$once('hook:destroyed', function () {\n // clean out app from this.apps array once destroyed\n var index = this$1$1.apps.indexOf(app);\n if (index > -1) { this$1$1.apps.splice(index, 1); }\n // ensure we still have a main app or null if no apps\n // we do not release the router so it can be reused\n if (this$1$1.app === app) { this$1$1.app = this$1$1.apps[0] || null; }\n\n if (!this$1$1.app) { this$1$1.history.teardown(); }\n });\n\n // main app previously initialized\n // return as we don't need to set up new history listener\n if (this.app) {\n return\n }\n\n this.app = app;\n\n var history = this.history;\n\n if (history instanceof HTML5History || history instanceof HashHistory) {\n var handleInitialScroll = function (routeOrError) {\n var from = history.current;\n var expectScroll = this$1$1.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll && 'fullPath' in routeOrError) {\n handleScroll(this$1$1, routeOrError, from, false);\n }\n };\n var setupListeners = function (routeOrError) {\n history.setupListeners();\n handleInitialScroll(routeOrError);\n };\n history.transitionTo(\n history.getCurrentLocation(),\n setupListeners,\n setupListeners\n );\n }\n\n history.listen(function (route) {\n this$1$1.apps.forEach(function (app) {\n app._route = route;\n });\n });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.push(location, resolve, reject);\n })\n } else {\n this.history.push(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.replace(location, resolve, reject);\n })\n } else {\n this.history.replace(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.go = function go (n) {\n this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n var route = to\n ? to.matched\n ? to\n : this.resolve(to).route\n : this.currentRoute;\n if (!route) {\n return []\n }\n return [].concat.apply(\n [],\n route.matched.map(function (m) {\n return Object.keys(m.components).map(function (key) {\n return m.components[key]\n })\n })\n )\n};\n\nVueRouter.prototype.resolve = function resolve (\n to,\n current,\n append\n) {\n current = current || this.history.current;\n var location = normalizeLocation(to, current, append, this);\n var route = this.match(location, current);\n var fullPath = route.redirectedFrom || route.fullPath;\n var base = this.history.base;\n var href = createHref(base, fullPath, this.mode);\n return {\n location: location,\n route: route,\n href: href,\n // for backwards compat\n normalizedTo: location,\n resolved: route\n }\n};\n\nVueRouter.prototype.getRoutes = function getRoutes () {\n return this.matcher.getRoutes()\n};\n\nVueRouter.prototype.addRoute = function addRoute (parentOrRoute, route) {\n this.matcher.addRoute(parentOrRoute, route);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n if (true) {\n warn(false, 'router.addRoutes() is deprecated and has been removed in Vue Router 4. Use router.addRoute() instead.');\n }\n this.matcher.addRoutes(routes);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nvar VueRouter$1 = VueRouter;\n\nfunction registerHook (list, fn) {\n list.push(fn);\n return function () {\n var i = list.indexOf(fn);\n if (i > -1) { list.splice(i, 1); }\n }\n}\n\nfunction createHref (base, fullPath, mode) {\n var path = mode === 'hash' ? '#' + fullPath : fullPath;\n return base ? cleanPath(base + '/' + path) : path\n}\n\n// We cannot remove this as it would be a breaking change\nVueRouter.install = install;\nVueRouter.version = '3.6.5';\nVueRouter.isNavigationFailure = isNavigationFailure;\nVueRouter.NavigationFailureType = NavigationFailureType;\nVueRouter.START_LOCATION = START;\n\nif (inBrowser && window.Vue) {\n window.Vue.use(VueRouter);\n}\n\nvar version = '3.6.5';\n\n\n\n\n//# sourceURL=webpack:///./node_modules/vue-router/dist/vue-router.esm.js?"); /***/ }), /***/ "./node_modules/vue-style-loader/lib/addStylesClient.js": /*!**************************************************************!*\ !*** ./node_modules/vue-style-loader/lib/addStylesClient.js ***! \**************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return addStylesClient; });\n/* harmony import */ var _listToStyles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./listToStyles */ \"./node_modules/vue-style-loader/lib/listToStyles.js\");\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n Modified by Evan You @yyx990803\n*/\n\n\n\nvar hasDocument = typeof document !== 'undefined'\n\nif (typeof DEBUG !== 'undefined' && DEBUG) {\n if (!hasDocument) {\n throw new Error(\n 'vue-style-loader cannot be used in a non-browser environment. ' +\n \"Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\"\n ) }\n}\n\n/*\ntype StyleObject = {\n id: number;\n parts: Array\n}\n\ntype StyleObjectPart = {\n css: string;\n media: string;\n sourceMap: ?string\n}\n*/\n\nvar stylesInDom = {/*\n [id: number]: {\n id: number,\n refs: number,\n parts: Array<(obj?: StyleObjectPart) => void>\n }\n*/}\n\nvar head = hasDocument && (document.head || document.getElementsByTagName('head')[0])\nvar singletonElement = null\nvar singletonCounter = 0\nvar isProduction = false\nvar noop = function () {}\nvar options = null\nvar ssrIdKey = 'data-vue-ssr-id'\n\n// Force single-tag solution on IE6-9, which has a hard limit on the # of `;\n }\n initTheme(root) {\n // Only watch for reactivity on client side\n if (typeof document === 'undefined') return; // If we get here somehow, ensure\n // existing instance is removed\n\n if (this.unwatch) {\n this.unwatch();\n this.unwatch = null;\n } // TODO: Update to use RFC if merged\n // https://github.com/vuejs/rfcs/blob/advanced-reactivity-api/active-rfcs/0000-advanced-reactivity-api.md\n\n root.$once('hook:created', () => {\n const obs = vue__WEBPACK_IMPORTED_MODULE_4__[\"default\"].observable({\n themes: this.themes\n });\n this.unwatch = root.$watch(() => obs.themes, () => this.applyTheme(), {\n deep: true\n });\n });\n this.applyTheme();\n }\n get currentTheme() {\n const target = this.dark ? 'dark' : 'light';\n return this.themes[target];\n }\n get generatedStyles() {\n const theme = this.parsedTheme;\n /* istanbul ignore next */\n\n const options = this.options || {};\n let css;\n if (options.themeCache != null) {\n css = options.themeCache.get(theme);\n /* istanbul ignore if */\n\n if (css != null) return css;\n }\n css = _utils__WEBPACK_IMPORTED_MODULE_2__[\"genStyles\"](theme, options.customProperties);\n if (options.minifyTheme != null) {\n css = options.minifyTheme(css);\n }\n if (options.themeCache != null) {\n options.themeCache.set(theme, css);\n }\n return css;\n }\n get parsedTheme() {\n return _utils__WEBPACK_IMPORTED_MODULE_2__[\"parse\"](this.currentTheme || {}, undefined, Object(_util_helpers__WEBPACK_IMPORTED_MODULE_3__[\"getNestedValue\"])(this.options, ['variations'], true));\n } // Is using v2.3 of vue-meta\n // https://github.com/nuxt/vue-meta/releases/tag/v2.3.0\n\n get isVueMeta23() {\n return typeof this.vueMeta.addApp === 'function';\n }\n}\nTheme.property = 'theme';\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/services/theme/index.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/services/theme/utils.js": /*!**********************************************************!*\ !*** ./node_modules/vuetify/lib/services/theme/utils.js ***! \**********************************************************/ /*! exports provided: parse, genStyles, genVariations, lighten, darken */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parse\", function() { return parse; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"genStyles\", function() { return genStyles; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"genVariations\", function() { return genVariations; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"lighten\", function() { return lighten; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"darken\", function() { return darken; });\n/* harmony import */ var _util_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../util/helpers */ \"./node_modules/vuetify/lib/util/helpers.js\");\n/* harmony import */ var _util_colorUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../util/colorUtils */ \"./node_modules/vuetify/lib/util/colorUtils.js\");\n/* harmony import */ var _util_color_transformSRGB__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../util/color/transformSRGB */ \"./node_modules/vuetify/lib/util/color/transformSRGB.js\");\n/* harmony import */ var _util_color_transformCIELAB__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../util/color/transformCIELAB */ \"./node_modules/vuetify/lib/util/color/transformCIELAB.js\");\n\n\n\n\nfunction parse(theme, isItem = false, variations = true) {\n const {\n anchor,\n ...variant\n } = theme;\n const colors = Object.keys(variant);\n const parsedTheme = {};\n for (let i = 0; i < colors.length; ++i) {\n const name = colors[i];\n const value = theme[name];\n if (value == null) continue;\n if (!variations) {\n parsedTheme[name] = {\n base: Object(_util_colorUtils__WEBPACK_IMPORTED_MODULE_1__[\"intToHex\"])(Object(_util_colorUtils__WEBPACK_IMPORTED_MODULE_1__[\"colorToInt\"])(value))\n };\n } else if (isItem) {\n /* istanbul ignore else */\n if (name === 'base' || name.startsWith('lighten') || name.startsWith('darken')) {\n parsedTheme[name] = Object(_util_colorUtils__WEBPACK_IMPORTED_MODULE_1__[\"colorToHex\"])(value);\n }\n } else if (typeof value === 'object') {\n parsedTheme[name] = parse(value, true, variations);\n } else {\n parsedTheme[name] = genVariations(name, Object(_util_colorUtils__WEBPACK_IMPORTED_MODULE_1__[\"colorToInt\"])(value));\n }\n }\n if (!isItem) {\n parsedTheme.anchor = anchor || parsedTheme.base || parsedTheme.primary.base;\n }\n return parsedTheme;\n}\n/**\n * Generate the CSS for a base color (.primary)\n */\n\nconst genBaseColor = (name, value) => {\n return `\n.v-application .${name} {\n background-color: ${value} !important;\n border-color: ${value} !important;\n}\n.v-application .${name}--text {\n color: ${value} !important;\n caret-color: ${value} !important;\n}`;\n};\n/**\n * Generate the CSS for a variant color (.primary.darken-2)\n */\n\nconst genVariantColor = (name, variant, value) => {\n const [type, n] = variant.split(/(\\d)/, 2);\n return `\n.v-application .${name}.${type}-${n} {\n background-color: ${value} !important;\n border-color: ${value} !important;\n}\n.v-application .${name}--text.text--${type}-${n} {\n color: ${value} !important;\n caret-color: ${value} !important;\n}`;\n};\nconst genColorVariableName = (name, variant = 'base') => `--v-${name}-${variant}`;\nconst genColorVariable = (name, variant = 'base') => `var(${genColorVariableName(name, variant)})`;\nfunction genStyles(theme, cssVar = false) {\n const {\n anchor,\n ...variant\n } = theme;\n const colors = Object.keys(variant);\n if (!colors.length) return '';\n let variablesCss = '';\n let css = '';\n const aColor = cssVar ? genColorVariable('anchor') : anchor;\n css += `.v-application a { color: ${aColor}; }`;\n cssVar && (variablesCss += ` ${genColorVariableName('anchor')}: ${anchor};\\n`);\n for (let i = 0; i < colors.length; ++i) {\n const name = colors[i];\n const value = theme[name];\n css += genBaseColor(name, cssVar ? genColorVariable(name) : value.base);\n cssVar && (variablesCss += ` ${genColorVariableName(name)}: ${value.base};\\n`);\n const variants = Object(_util_helpers__WEBPACK_IMPORTED_MODULE_0__[\"keys\"])(value);\n for (let i = 0; i < variants.length; ++i) {\n const variant = variants[i];\n const variantValue = value[variant];\n if (variant === 'base') continue;\n css += genVariantColor(name, variant, cssVar ? genColorVariable(name, variant) : variantValue);\n cssVar && (variablesCss += ` ${genColorVariableName(name, variant)}: ${variantValue};\\n`);\n }\n }\n if (cssVar) {\n variablesCss = `:root {\\n${variablesCss}}\\n\\n`;\n }\n return variablesCss + css;\n}\nfunction genVariations(name, value) {\n const values = {\n base: Object(_util_colorUtils__WEBPACK_IMPORTED_MODULE_1__[\"intToHex\"])(value)\n };\n for (let i = 5; i > 0; --i) {\n values[`lighten${i}`] = Object(_util_colorUtils__WEBPACK_IMPORTED_MODULE_1__[\"intToHex\"])(lighten(value, i));\n }\n for (let i = 1; i <= 4; ++i) {\n values[`darken${i}`] = Object(_util_colorUtils__WEBPACK_IMPORTED_MODULE_1__[\"intToHex\"])(darken(value, i));\n }\n return values;\n}\nfunction lighten(value, amount) {\n const lab = _util_color_transformCIELAB__WEBPACK_IMPORTED_MODULE_3__[\"fromXYZ\"](_util_color_transformSRGB__WEBPACK_IMPORTED_MODULE_2__[\"toXYZ\"](value));\n lab[0] = lab[0] + amount * 10;\n return _util_color_transformSRGB__WEBPACK_IMPORTED_MODULE_2__[\"fromXYZ\"](_util_color_transformCIELAB__WEBPACK_IMPORTED_MODULE_3__[\"toXYZ\"](lab));\n}\nfunction darken(value, amount) {\n const lab = _util_color_transformCIELAB__WEBPACK_IMPORTED_MODULE_3__[\"fromXYZ\"](_util_color_transformSRGB__WEBPACK_IMPORTED_MODULE_2__[\"toXYZ\"](value));\n lab[0] = lab[0] - amount * 10;\n return _util_color_transformSRGB__WEBPACK_IMPORTED_MODULE_2__[\"fromXYZ\"](_util_color_transformCIELAB__WEBPACK_IMPORTED_MODULE_3__[\"toXYZ\"](lab));\n}\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/services/theme/utils.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/util/color/transformCIELAB.js": /*!****************************************************************!*\ !*** ./node_modules/vuetify/lib/util/color/transformCIELAB.js ***! \****************************************************************/ /*! exports provided: fromXYZ, toXYZ */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromXYZ\", function() { return fromXYZ; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toXYZ\", function() { return toXYZ; });\nconst delta = 0.20689655172413793; // 6÷29\n\nconst cielabForwardTransform = t => t > delta ** 3 ? Math.cbrt(t) : t / (3 * delta ** 2) + 4 / 29;\nconst cielabReverseTransform = t => t > delta ? t ** 3 : 3 * delta ** 2 * (t - 4 / 29);\nfunction fromXYZ(xyz) {\n const transform = cielabForwardTransform;\n const transformedY = transform(xyz[1]);\n return [116 * transformedY - 16, 500 * (transform(xyz[0] / 0.95047) - transformedY), 200 * (transformedY - transform(xyz[2] / 1.08883))];\n}\nfunction toXYZ(lab) {\n const transform = cielabReverseTransform;\n const Ln = (lab[0] + 16) / 116;\n return [transform(Ln + lab[1] / 500) * 0.95047, transform(Ln), transform(Ln - lab[2] / 200) * 1.08883];\n}\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/util/color/transformCIELAB.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/util/color/transformSRGB.js": /*!**************************************************************!*\ !*** ./node_modules/vuetify/lib/util/color/transformSRGB.js ***! \**************************************************************/ /*! exports provided: fromXYZ, toXYZ */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fromXYZ\", function() { return fromXYZ; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toXYZ\", function() { return toXYZ; });\n/* harmony import */ var _util_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../util/helpers */ \"./node_modules/vuetify/lib/util/helpers.js\");\n // For converting XYZ to sRGB\n\nconst srgbForwardMatrix = [[3.2406, -1.5372, -0.4986], [-0.9689, 1.8758, 0.0415], [0.0557, -0.2040, 1.0570]]; // Forward gamma adjust\n\nconst srgbForwardTransform = C => C <= 0.0031308 ? C * 12.92 : 1.055 * C ** (1 / 2.4) - 0.055; // For converting sRGB to XYZ\n\nconst srgbReverseMatrix = [[0.4124, 0.3576, 0.1805], [0.2126, 0.7152, 0.0722], [0.0193, 0.1192, 0.9505]]; // Reverse gamma adjust\n\nconst srgbReverseTransform = C => C <= 0.04045 ? C / 12.92 : ((C + 0.055) / 1.055) ** 2.4;\nfunction fromXYZ(xyz) {\n const rgb = Array(3);\n const transform = srgbForwardTransform;\n const matrix = srgbForwardMatrix; // Matrix transform, then gamma adjustment\n\n for (let i = 0; i < 3; ++i) {\n rgb[i] = Math.round(Object(_util_helpers__WEBPACK_IMPORTED_MODULE_0__[\"clamp\"])(transform(matrix[i][0] * xyz[0] + matrix[i][1] * xyz[1] + matrix[i][2] * xyz[2])) * 255);\n } // Rescale back to [0, 255]\n\n return (rgb[0] << 16) + (rgb[1] << 8) + (rgb[2] << 0);\n}\nfunction toXYZ(rgb) {\n const xyz = [0, 0, 0];\n const transform = srgbReverseTransform;\n const matrix = srgbReverseMatrix; // Rescale from [0, 255] to [0, 1] then adjust sRGB gamma to linear RGB\n\n const r = transform((rgb >> 16 & 0xff) / 255);\n const g = transform((rgb >> 8 & 0xff) / 255);\n const b = transform((rgb >> 0 & 0xff) / 255); // Matrix color space transform\n\n for (let i = 0; i < 3; ++i) {\n xyz[i] = matrix[i][0] * r + matrix[i][1] * g + matrix[i][2] * b;\n }\n return xyz;\n}\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/util/color/transformSRGB.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/util/colorUtils.js": /*!*****************************************************!*\ !*** ./node_modules/vuetify/lib/util/colorUtils.js ***! \*****************************************************/ /*! exports provided: isCssColor, colorToInt, classToHex, intToHex, colorToHex, HSVAtoRGBA, RGBAtoHSVA, HSVAtoHSLA, HSLAtoHSVA, RGBAtoCSS, RGBtoCSS, RGBAtoHex, HexToRGBA, HexToHSVA, HSVAtoHex, parseHex, parseGradient, RGBtoInt, contrastRatio */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isCssColor\", function() { return isCssColor; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"colorToInt\", function() { return colorToInt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"classToHex\", function() { return classToHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"intToHex\", function() { return intToHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"colorToHex\", function() { return colorToHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HSVAtoRGBA\", function() { return HSVAtoRGBA; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RGBAtoHSVA\", function() { return RGBAtoHSVA; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HSVAtoHSLA\", function() { return HSVAtoHSLA; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HSLAtoHSVA\", function() { return HSLAtoHSVA; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RGBAtoCSS\", function() { return RGBAtoCSS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RGBtoCSS\", function() { return RGBtoCSS; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RGBAtoHex\", function() { return RGBAtoHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HexToRGBA\", function() { return HexToRGBA; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HexToHSVA\", function() { return HexToHSVA; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HSVAtoHex\", function() { return HSVAtoHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseHex\", function() { return parseHex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"parseGradient\", function() { return parseGradient; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RGBtoInt\", function() { return RGBtoInt; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"contrastRatio\", function() { return contrastRatio; });\n/* harmony import */ var core_js_modules_es_error_cause_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.error.cause.js */ \"./node_modules/core-js/modules/es.error.cause.js\");\n/* harmony import */ var core_js_modules_es_error_cause_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_error_cause_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _console__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./console */ \"./node_modules/vuetify/lib/util/console.js\");\n/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./helpers */ \"./node_modules/vuetify/lib/util/helpers.js\");\n/* harmony import */ var _color_transformSRGB__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./color/transformSRGB */ \"./node_modules/vuetify/lib/util/color/transformSRGB.js\");\n\n// Utilities\n\n\n\nfunction isCssColor(color) {\n return !!color && !!color.match(/^(#|var\\(--|(rgb|hsl)a?\\()/);\n}\nfunction colorToInt(color) {\n let rgb;\n if (typeof color === 'number') {\n rgb = color;\n } else if (typeof color === 'string') {\n let c = color[0] === '#' ? color.substring(1) : color;\n if (c.length === 3) {\n c = c.split('').map(char => char + char).join('');\n }\n if (c.length !== 6) {\n Object(_console__WEBPACK_IMPORTED_MODULE_1__[\"consoleWarn\"])(`'${color}' is not a valid rgb color`);\n }\n rgb = parseInt(c, 16);\n } else {\n throw new TypeError(`Colors can only be numbers or strings, recieved ${color == null ? color : color.constructor.name} instead`);\n }\n if (rgb < 0) {\n Object(_console__WEBPACK_IMPORTED_MODULE_1__[\"consoleWarn\"])(`Colors cannot be negative: '${color}'`);\n rgb = 0;\n } else if (rgb > 0xffffff || isNaN(rgb)) {\n Object(_console__WEBPACK_IMPORTED_MODULE_1__[\"consoleWarn\"])(`'${color}' is not a valid rgb color`);\n rgb = 0xffffff;\n }\n return rgb;\n}\nfunction classToHex(color, colors, currentTheme) {\n const [colorName, colorModifier] = color.toString().trim().replace('-', '').split(' ', 2);\n let hexColor = '';\n if (colorName && colorName in colors) {\n if (colorModifier && colorModifier in colors[colorName]) {\n hexColor = colors[colorName][colorModifier];\n } else if ('base' in colors[colorName]) {\n hexColor = colors[colorName].base;\n }\n } else if (colorName && colorName in currentTheme) {\n hexColor = currentTheme[colorName];\n }\n return hexColor;\n}\nfunction intToHex(color) {\n let hexColor = color.toString(16);\n if (hexColor.length < 6) hexColor = '0'.repeat(6 - hexColor.length) + hexColor;\n return '#' + hexColor;\n}\nfunction colorToHex(color) {\n return intToHex(colorToInt(color));\n}\n/**\n * Converts HSVA to RGBA. Based on formula from https://en.wikipedia.org/wiki/HSL_and_HSV\n *\n * @param color HSVA color as an array [0-360, 0-1, 0-1, 0-1]\n */\n\nfunction HSVAtoRGBA(hsva) {\n const {\n h,\n s,\n v,\n a\n } = hsva;\n const f = n => {\n const k = (n + h / 60) % 6;\n return v - v * s * Math.max(Math.min(k, 4 - k, 1), 0);\n };\n const rgb = [f(5), f(3), f(1)].map(v => Math.round(v * 255));\n return {\n r: rgb[0],\n g: rgb[1],\n b: rgb[2],\n a\n };\n}\n/**\n * Converts RGBA to HSVA. Based on formula from https://en.wikipedia.org/wiki/HSL_and_HSV\n *\n * @param color RGBA color as an array [0-255, 0-255, 0-255, 0-1]\n */\n\nfunction RGBAtoHSVA(rgba) {\n if (!rgba) return {\n h: 0,\n s: 1,\n v: 1,\n a: 1\n };\n const r = rgba.r / 255;\n const g = rgba.g / 255;\n const b = rgba.b / 255;\n const max = Math.max(r, g, b);\n const min = Math.min(r, g, b);\n let h = 0;\n if (max !== min) {\n if (max === r) {\n h = 60 * (0 + (g - b) / (max - min));\n } else if (max === g) {\n h = 60 * (2 + (b - r) / (max - min));\n } else if (max === b) {\n h = 60 * (4 + (r - g) / (max - min));\n }\n }\n if (h < 0) h = h + 360;\n const s = max === 0 ? 0 : (max - min) / max;\n const hsv = [h, s, max];\n return {\n h: hsv[0],\n s: hsv[1],\n v: hsv[2],\n a: rgba.a\n };\n}\nfunction HSVAtoHSLA(hsva) {\n const {\n h,\n s,\n v,\n a\n } = hsva;\n const l = v - v * s / 2;\n const sprime = l === 1 || l === 0 ? 0 : (v - l) / Math.min(l, 1 - l);\n return {\n h,\n s: sprime,\n l,\n a\n };\n}\nfunction HSLAtoHSVA(hsl) {\n const {\n h,\n s,\n l,\n a\n } = hsl;\n const v = l + s * Math.min(l, 1 - l);\n const sprime = v === 0 ? 0 : 2 - 2 * l / v;\n return {\n h,\n s: sprime,\n v,\n a\n };\n}\nfunction RGBAtoCSS(rgba) {\n return `rgba(${rgba.r}, ${rgba.g}, ${rgba.b}, ${rgba.a})`;\n}\nfunction RGBtoCSS(rgba) {\n return RGBAtoCSS({\n ...rgba,\n a: 1\n });\n}\nfunction RGBAtoHex(rgba) {\n const toHex = v => {\n const h = Math.round(v).toString(16);\n return ('00'.substr(0, 2 - h.length) + h).toUpperCase();\n };\n return `#${[toHex(rgba.r), toHex(rgba.g), toHex(rgba.b), toHex(Math.round(rgba.a * 255))].join('')}`;\n}\nfunction HexToRGBA(hex) {\n const rgba = Object(_helpers__WEBPACK_IMPORTED_MODULE_2__[\"chunk\"])(hex.slice(1), 2).map(c => parseInt(c, 16));\n return {\n r: rgba[0],\n g: rgba[1],\n b: rgba[2],\n a: Math.round(rgba[3] / 255 * 100) / 100\n };\n}\nfunction HexToHSVA(hex) {\n const rgb = HexToRGBA(hex);\n return RGBAtoHSVA(rgb);\n}\nfunction HSVAtoHex(hsva) {\n return RGBAtoHex(HSVAtoRGBA(hsva));\n}\nfunction parseHex(hex) {\n if (hex.startsWith('#')) {\n hex = hex.slice(1);\n }\n hex = hex.replace(/([^0-9a-f])/gi, 'F');\n if (hex.length === 3 || hex.length === 4) {\n hex = hex.split('').map(x => x + x).join('');\n }\n if (hex.length === 6) {\n hex = Object(_helpers__WEBPACK_IMPORTED_MODULE_2__[\"padEnd\"])(hex, 8, 'F');\n } else {\n hex = Object(_helpers__WEBPACK_IMPORTED_MODULE_2__[\"padEnd\"])(Object(_helpers__WEBPACK_IMPORTED_MODULE_2__[\"padEnd\"])(hex, 6), 8, 'F');\n }\n return `#${hex}`.toUpperCase().substr(0, 9);\n}\nfunction parseGradient(gradient, colors, currentTheme) {\n return gradient.replace(/([a-z]+(\\s[a-z]+-[1-5])?)(?=$|,)/gi, x => {\n return classToHex(x, colors, currentTheme) || x;\n }).replace(/(rgba\\()#[0-9a-f]+(?=,)/gi, x => {\n return 'rgba(' + Object.values(HexToRGBA(parseHex(x.replace(/rgba\\(/, '')))).slice(0, 3).join(',');\n });\n}\nfunction RGBtoInt(rgba) {\n return (rgba.r << 16) + (rgba.g << 8) + rgba.b;\n}\n/**\n * Returns the contrast ratio (1-21) between two colors.\n *\n * @param c1 First color\n * @param c2 Second color\n */\n\nfunction contrastRatio(c1, c2) {\n const [, y1] = Object(_color_transformSRGB__WEBPACK_IMPORTED_MODULE_3__[\"toXYZ\"])(RGBtoInt(c1));\n const [, y2] = Object(_color_transformSRGB__WEBPACK_IMPORTED_MODULE_3__[\"toXYZ\"])(RGBtoInt(c2));\n return (Math.max(y1, y2) + 0.05) / (Math.min(y1, y2) + 0.05);\n}\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/util/colorUtils.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/util/colors.js": /*!*************************************************!*\ !*** ./node_modules/vuetify/lib/util/colors.js ***! \*************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\nconst red = Object.freeze({\n base: '#f44336',\n lighten5: '#ffebee',\n lighten4: '#ffcdd2',\n lighten3: '#ef9a9a',\n lighten2: '#e57373',\n lighten1: '#ef5350',\n darken1: '#e53935',\n darken2: '#d32f2f',\n darken3: '#c62828',\n darken4: '#b71c1c',\n accent1: '#ff8a80',\n accent2: '#ff5252',\n accent3: '#ff1744',\n accent4: '#d50000'\n});\nconst pink = Object.freeze({\n base: '#e91e63',\n lighten5: '#fce4ec',\n lighten4: '#f8bbd0',\n lighten3: '#f48fb1',\n lighten2: '#f06292',\n lighten1: '#ec407a',\n darken1: '#d81b60',\n darken2: '#c2185b',\n darken3: '#ad1457',\n darken4: '#880e4f',\n accent1: '#ff80ab',\n accent2: '#ff4081',\n accent3: '#f50057',\n accent4: '#c51162'\n});\nconst purple = Object.freeze({\n base: '#9c27b0',\n lighten5: '#f3e5f5',\n lighten4: '#e1bee7',\n lighten3: '#ce93d8',\n lighten2: '#ba68c8',\n lighten1: '#ab47bc',\n darken1: '#8e24aa',\n darken2: '#7b1fa2',\n darken3: '#6a1b9a',\n darken4: '#4a148c',\n accent1: '#ea80fc',\n accent2: '#e040fb',\n accent3: '#d500f9',\n accent4: '#aa00ff'\n});\nconst deepPurple = Object.freeze({\n base: '#673ab7',\n lighten5: '#ede7f6',\n lighten4: '#d1c4e9',\n lighten3: '#b39ddb',\n lighten2: '#9575cd',\n lighten1: '#7e57c2',\n darken1: '#5e35b1',\n darken2: '#512da8',\n darken3: '#4527a0',\n darken4: '#311b92',\n accent1: '#b388ff',\n accent2: '#7c4dff',\n accent3: '#651fff',\n accent4: '#6200ea'\n});\nconst indigo = Object.freeze({\n base: '#3f51b5',\n lighten5: '#e8eaf6',\n lighten4: '#c5cae9',\n lighten3: '#9fa8da',\n lighten2: '#7986cb',\n lighten1: '#5c6bc0',\n darken1: '#3949ab',\n darken2: '#303f9f',\n darken3: '#283593',\n darken4: '#1a237e',\n accent1: '#8c9eff',\n accent2: '#536dfe',\n accent3: '#3d5afe',\n accent4: '#304ffe'\n});\nconst blue = Object.freeze({\n base: '#2196f3',\n lighten5: '#e3f2fd',\n lighten4: '#bbdefb',\n lighten3: '#90caf9',\n lighten2: '#64b5f6',\n lighten1: '#42a5f5',\n darken1: '#1e88e5',\n darken2: '#1976d2',\n darken3: '#1565c0',\n darken4: '#0d47a1',\n accent1: '#82b1ff',\n accent2: '#448aff',\n accent3: '#2979ff',\n accent4: '#2962ff'\n});\nconst lightBlue = Object.freeze({\n base: '#03a9f4',\n lighten5: '#e1f5fe',\n lighten4: '#b3e5fc',\n lighten3: '#81d4fa',\n lighten2: '#4fc3f7',\n lighten1: '#29b6f6',\n darken1: '#039be5',\n darken2: '#0288d1',\n darken3: '#0277bd',\n darken4: '#01579b',\n accent1: '#80d8ff',\n accent2: '#40c4ff',\n accent3: '#00b0ff',\n accent4: '#0091ea'\n});\nconst cyan = Object.freeze({\n base: '#00bcd4',\n lighten5: '#e0f7fa',\n lighten4: '#b2ebf2',\n lighten3: '#80deea',\n lighten2: '#4dd0e1',\n lighten1: '#26c6da',\n darken1: '#00acc1',\n darken2: '#0097a7',\n darken3: '#00838f',\n darken4: '#006064',\n accent1: '#84ffff',\n accent2: '#18ffff',\n accent3: '#00e5ff',\n accent4: '#00b8d4'\n});\nconst teal = Object.freeze({\n base: '#009688',\n lighten5: '#e0f2f1',\n lighten4: '#b2dfdb',\n lighten3: '#80cbc4',\n lighten2: '#4db6ac',\n lighten1: '#26a69a',\n darken1: '#00897b',\n darken2: '#00796b',\n darken3: '#00695c',\n darken4: '#004d40',\n accent1: '#a7ffeb',\n accent2: '#64ffda',\n accent3: '#1de9b6',\n accent4: '#00bfa5'\n});\nconst green = Object.freeze({\n base: '#4caf50',\n lighten5: '#e8f5e9',\n lighten4: '#c8e6c9',\n lighten3: '#a5d6a7',\n lighten2: '#81c784',\n lighten1: '#66bb6a',\n darken1: '#43a047',\n darken2: '#388e3c',\n darken3: '#2e7d32',\n darken4: '#1b5e20',\n accent1: '#b9f6ca',\n accent2: '#69f0ae',\n accent3: '#00e676',\n accent4: '#00c853'\n});\nconst lightGreen = Object.freeze({\n base: '#8bc34a',\n lighten5: '#f1f8e9',\n lighten4: '#dcedc8',\n lighten3: '#c5e1a5',\n lighten2: '#aed581',\n lighten1: '#9ccc65',\n darken1: '#7cb342',\n darken2: '#689f38',\n darken3: '#558b2f',\n darken4: '#33691e',\n accent1: '#ccff90',\n accent2: '#b2ff59',\n accent3: '#76ff03',\n accent4: '#64dd17'\n});\nconst lime = Object.freeze({\n base: '#cddc39',\n lighten5: '#f9fbe7',\n lighten4: '#f0f4c3',\n lighten3: '#e6ee9c',\n lighten2: '#dce775',\n lighten1: '#d4e157',\n darken1: '#c0ca33',\n darken2: '#afb42b',\n darken3: '#9e9d24',\n darken4: '#827717',\n accent1: '#f4ff81',\n accent2: '#eeff41',\n accent3: '#c6ff00',\n accent4: '#aeea00'\n});\nconst yellow = Object.freeze({\n base: '#ffeb3b',\n lighten5: '#fffde7',\n lighten4: '#fff9c4',\n lighten3: '#fff59d',\n lighten2: '#fff176',\n lighten1: '#ffee58',\n darken1: '#fdd835',\n darken2: '#fbc02d',\n darken3: '#f9a825',\n darken4: '#f57f17',\n accent1: '#ffff8d',\n accent2: '#ffff00',\n accent3: '#ffea00',\n accent4: '#ffd600'\n});\nconst amber = Object.freeze({\n base: '#ffc107',\n lighten5: '#fff8e1',\n lighten4: '#ffecb3',\n lighten3: '#ffe082',\n lighten2: '#ffd54f',\n lighten1: '#ffca28',\n darken1: '#ffb300',\n darken2: '#ffa000',\n darken3: '#ff8f00',\n darken4: '#ff6f00',\n accent1: '#ffe57f',\n accent2: '#ffd740',\n accent3: '#ffc400',\n accent4: '#ffab00'\n});\nconst orange = Object.freeze({\n base: '#ff9800',\n lighten5: '#fff3e0',\n lighten4: '#ffe0b2',\n lighten3: '#ffcc80',\n lighten2: '#ffb74d',\n lighten1: '#ffa726',\n darken1: '#fb8c00',\n darken2: '#f57c00',\n darken3: '#ef6c00',\n darken4: '#e65100',\n accent1: '#ffd180',\n accent2: '#ffab40',\n accent3: '#ff9100',\n accent4: '#ff6d00'\n});\nconst deepOrange = Object.freeze({\n base: '#ff5722',\n lighten5: '#fbe9e7',\n lighten4: '#ffccbc',\n lighten3: '#ffab91',\n lighten2: '#ff8a65',\n lighten1: '#ff7043',\n darken1: '#f4511e',\n darken2: '#e64a19',\n darken3: '#d84315',\n darken4: '#bf360c',\n accent1: '#ff9e80',\n accent2: '#ff6e40',\n accent3: '#ff3d00',\n accent4: '#dd2c00'\n});\nconst brown = Object.freeze({\n base: '#795548',\n lighten5: '#efebe9',\n lighten4: '#d7ccc8',\n lighten3: '#bcaaa4',\n lighten2: '#a1887f',\n lighten1: '#8d6e63',\n darken1: '#6d4c41',\n darken2: '#5d4037',\n darken3: '#4e342e',\n darken4: '#3e2723'\n});\nconst blueGrey = Object.freeze({\n base: '#607d8b',\n lighten5: '#eceff1',\n lighten4: '#cfd8dc',\n lighten3: '#b0bec5',\n lighten2: '#90a4ae',\n lighten1: '#78909c',\n darken1: '#546e7a',\n darken2: '#455a64',\n darken3: '#37474f',\n darken4: '#263238'\n});\nconst grey = Object.freeze({\n base: '#9e9e9e',\n lighten5: '#fafafa',\n lighten4: '#f5f5f5',\n lighten3: '#eeeeee',\n lighten2: '#e0e0e0',\n lighten1: '#bdbdbd',\n darken1: '#757575',\n darken2: '#616161',\n darken3: '#424242',\n darken4: '#212121'\n});\nconst shades = Object.freeze({\n black: '#000000',\n white: '#ffffff',\n transparent: 'transparent'\n});\n/* harmony default export */ __webpack_exports__[\"default\"] = (Object.freeze({\n red,\n pink,\n purple,\n deepPurple,\n indigo,\n blue,\n lightBlue,\n cyan,\n teal,\n green,\n lightGreen,\n lime,\n yellow,\n amber,\n orange,\n deepOrange,\n brown,\n blueGrey,\n grey,\n shades\n}));\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/util/colors.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/util/console.js": /*!**************************************************!*\ !*** ./node_modules/vuetify/lib/util/console.js ***! \**************************************************/ /*! exports provided: consoleInfo, consoleWarn, consoleError, deprecate, breaking, removed */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"consoleInfo\", function() { return consoleInfo; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"consoleWarn\", function() { return consoleWarn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"consoleError\", function() { return consoleError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deprecate\", function() { return deprecate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"breaking\", function() { return breaking; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removed\", function() { return removed; });\n/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.push.js */ \"./node_modules/core-js/modules/es.array.push.js\");\n/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _framework__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../framework */ \"./node_modules/vuetify/lib/framework.js\");\n\n/* eslint-disable no-console */\n\nfunction createMessage(message, vm, parent) {\n if (_framework__WEBPACK_IMPORTED_MODULE_1__[\"default\"].config.silent) return;\n if (parent) {\n vm = {\n _isVue: true,\n $parent: parent,\n $options: vm\n };\n }\n if (vm) {\n // Only show each message once per instance\n vm.$_alreadyWarned = vm.$_alreadyWarned || [];\n if (vm.$_alreadyWarned.includes(message)) return;\n vm.$_alreadyWarned.push(message);\n }\n return `[Vuetify] ${message}` + (vm ? generateComponentTrace(vm) : '');\n}\nfunction consoleInfo(message, vm, parent) {\n const newMessage = createMessage(message, vm, parent);\n newMessage != null && console.info(newMessage);\n}\nfunction consoleWarn(message, vm, parent) {\n const newMessage = createMessage(message, vm, parent);\n newMessage != null && console.warn(newMessage);\n}\nfunction consoleError(message, vm, parent) {\n const newMessage = createMessage(message, vm, parent);\n newMessage != null && console.error(newMessage);\n}\nfunction deprecate(original, replacement, vm, parent) {\n consoleWarn(`[UPGRADE] '${original}' is deprecated, use '${replacement}' instead.`, vm, parent);\n}\nfunction breaking(original, replacement, vm, parent) {\n consoleError(`[BREAKING] '${original}' has been removed, use '${replacement}' instead. For more information, see the upgrade guide https://github.com/vuetifyjs/vuetify/releases/tag/v2.0.0#user-content-upgrade-guide`, vm, parent);\n}\nfunction removed(original, vm, parent) {\n consoleWarn(`[REMOVED] '${original}' has been removed. You can safely omit it.`, vm, parent);\n}\n/**\n * Shamelessly stolen from vuejs/vue/blob/dev/src/core/util/debug.js\n */\n\nconst classifyRE = /(?:^|[-_])(\\w)/g;\nconst classify = str => str.replace(classifyRE, c => c.toUpperCase()).replace(/[-_]/g, '');\nfunction formatComponentName(vm, includeFile) {\n if (vm.$root === vm) {\n return '';\n }\n const options = typeof vm === 'function' && vm.cid != null ? vm.options : vm._isVue ? vm.$options || vm.constructor.options : vm || {};\n let name = options.name || options._componentTag;\n const file = options.__file;\n if (!name && file) {\n const match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n return (name ? `<${classify(name)}>` : ``) + (file && includeFile !== false ? ` at ${file}` : '');\n}\nfunction generateComponentTrace(vm) {\n if (vm._isVue && vm.$parent) {\n const tree = [];\n let currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n const last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue;\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree.map((vm, i) => `${i === 0 ? '---> ' : ' '.repeat(5 + i * 2)}${Array.isArray(vm) ? `${formatComponentName(vm[0])}... (${vm[1]} recursive calls)` : formatComponentName(vm)}`).join('\\n');\n } else {\n return `\\n\\n(found in ${formatComponentName(vm)})`;\n }\n}\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/util/console.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/util/dateTimeUtils.js": /*!********************************************************!*\ !*** ./node_modules/vuetify/lib/util/dateTimeUtils.js ***! \********************************************************/ /*! exports provided: weekNumber, isLeapYear */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"weekNumber\", function() { return weekNumber; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isLeapYear\", function() { return isLeapYear; });\nfunction createUTCDate(year, month = 0, day = 1) {\n let date;\n if (year < 100 && year >= 0) {\n date = new Date(Date.UTC(year, month, day));\n if (isFinite(date.getUTCFullYear())) {\n date.setUTCFullYear(year);\n }\n } else {\n date = new Date(Date.UTC(year, month, day));\n }\n return date;\n}\nfunction firstWeekOffset(year, firstDayOfWeek, firstDayOfYear) {\n const firstWeekDayInFirstWeek = 7 + firstDayOfWeek - firstDayOfYear;\n const firstWeekDayOfYear = (7 + createUTCDate(year, 0, firstWeekDayInFirstWeek).getUTCDay() - firstDayOfWeek) % 7;\n return -firstWeekDayOfYear + firstWeekDayInFirstWeek - 1;\n}\nfunction dayOfYear(year, month, day, firstDayOfWeek) {\n let dayOfYear = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334][month];\n if (month > 1 && isLeapYear(year)) {\n dayOfYear++;\n }\n return dayOfYear + day;\n}\nfunction weeksInYear(year, firstDayOfWeek, firstDayOfYear) {\n const weekOffset = firstWeekOffset(year, firstDayOfWeek, firstDayOfYear);\n const weekOffsetNext = firstWeekOffset(year + 1, firstDayOfWeek, firstDayOfYear);\n const daysInYear = isLeapYear(year) ? 366 : 365;\n return (daysInYear - weekOffset + weekOffsetNext) / 7;\n}\nfunction weekNumber(year, month, day, firstDayOfWeek, localeFirstDayOfYear) {\n const weekOffset = firstWeekOffset(year, firstDayOfWeek, localeFirstDayOfYear);\n const week = Math.ceil((dayOfYear(year, month, day, firstDayOfWeek) - weekOffset) / 7);\n if (week < 1) {\n return week + weeksInYear(year - 1, firstDayOfWeek, localeFirstDayOfYear);\n } else if (week > weeksInYear(year, firstDayOfWeek, localeFirstDayOfYear)) {\n return week - weeksInYear(year, firstDayOfWeek, localeFirstDayOfYear);\n } else {\n return week;\n }\n}\nfunction isLeapYear(year) {\n return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0;\n}\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/util/dateTimeUtils.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/util/dedupeModelListeners.js": /*!***************************************************************!*\ !*** ./node_modules/vuetify/lib/util/dedupeModelListeners.js ***! \***************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return dedupeModelListeners; });\n/**\n * Removes duplicate `@input` listeners when\n * using v-model with functional components\n *\n * @see https://github.com/vuetifyjs/vuetify/issues/4460\n */\nfunction dedupeModelListeners(data) {\n if (data.model && data.on && data.on.input) {\n if (Array.isArray(data.on.input)) {\n const i = data.on.input.indexOf(data.model.callback);\n if (i > -1) data.on.input.splice(i, 1);\n } else {\n delete data.on.input;\n }\n }\n}\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/util/dedupeModelListeners.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/util/dom.js": /*!**********************************************!*\ !*** ./node_modules/vuetify/lib/util/dom.js ***! \**********************************************/ /*! exports provided: attachedRoot */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"attachedRoot\", function() { return attachedRoot; });\n/**\n * Returns:\n * - 'null' if the node is not attached to the DOM\n * - the root node (HTMLDocument | ShadowRoot) otherwise\n */\nfunction attachedRoot(node) {\n /* istanbul ignore next */\n if (typeof node.getRootNode !== 'function') {\n // Shadow DOM not supported (IE11), lets find the root of this node\n while (node.parentNode) node = node.parentNode; // The root parent is the document if the node is attached to the DOM\n\n if (node !== document) return null;\n return document;\n }\n const root = node.getRootNode(); // The composed root node is the document if the node is attached to the DOM\n\n if (root !== document && root.getRootNode({\n composed: true\n }) !== document) return null;\n return root;\n}\n\n//# sourceURL=webpack:///./node_modules/vuetify/lib/util/dom.js?"); /***/ }), /***/ "./node_modules/vuetify/lib/util/helpers.js": /*!**************************************************!*\ !*** ./node_modules/vuetify/lib/util/helpers.js ***! \**************************************************/ /*! exports provided: createSimpleFunctional, directiveConfig, addOnceEventListener, passiveSupported, addPassiveEventListener, getNestedValue, deepEqual, getObjectValueByPath, getPropertyFromItem, createRange, getZIndex, filterObjectOnKeys, convertToUnit, kebabCase, isObject, keyCodes, remapInternalIcon, keys, camelize, arrayDiff, upperFirst, groupItems, wrapInArray, sortItems, defaultFilter, searchItems, getSlotType, debounce, throttle, getPrefixedScopedSlots, getSlot, clamp, padEnd, chunk, humanReadableFileSize, camelizeObjectKeys, mergeDeep, fillArray, composedPath */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createSimpleFunctional\", function() { return createSimpleFunctional; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"directiveConfig\", function() { return directiveConfig; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addOnceEventListener\", function() { return addOnceEventListener; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"passiveSupported\", function() { return passiveSupported; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addPassiveEventListener\", function() { return addPassiveEventListener; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getNestedValue\", function() { return getNestedValue; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"deepEqual\", function() { return deepEqual; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getObjectValueByPath\", function() { return getObjectValueByPath; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPropertyFromItem\", function() { return getPropertyFromItem; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createRange\", function() { return createRange; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getZIndex\", function() { return getZIndex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"filterObjectOnKeys\", function() { return filterObjectOnKeys; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"convertToUnit\", function() { return convertToUnit; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"kebabCase\", function() { return kebabCase; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isObject\", function() { return isObject; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"keyCodes\", function() { return keyCodes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"remapInternalIcon\", function() { return remapInternalIcon; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"keys\", function() { return keys; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"camelize\", function() { return camelize; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"arrayDiff\", function() { return arrayDiff; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"upperFirst\", function() { return upperFirst; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"groupItems\", function() { return groupItems; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"wrapInArray\", function() { return wrapInArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"sortItems\", function() { return sortItems; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultFilter\", function() { return defaultFilter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"searchItems\", function() { return searchItems; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSlotType\", function() { return getSlotType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"debounce\", function() { return debounce; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"throttle\", function() { return throttle; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPrefixedScopedSlots\", function() { return getPrefixedScopedSlots; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSlot\", function() { return getSlot; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"clamp\", function() { return clamp; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"padEnd\", function() { return padEnd; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"chunk\", function() { return chunk; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"humanReadableFileSize\", function() { return humanReadableFileSize; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"camelizeObjectKeys\", function() { return camelizeObjectKeys; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mergeDeep\", function() { return mergeDeep; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fillArray\", function() { return fillArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"composedPath\", function() { return composedPath; });\n/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.push.js */ \"./node_modules/core-js/modules/es.array.push.js\");\n/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_array_reduce_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.reduce.js */ \"./node_modules/core-js/modules/es.array.reduce.js\");\n/* harmony import */ var core_js_modules_es_array_reduce_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_reduce_js__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! vue */ \"./node_modules/vue/dist/vue.runtime.esm.js\");\n\n\n\nfunction createSimpleFunctional(c, el = 'div', name) {\n return vue__WEBPACK_IMPORTED_MODULE_2__[\"default\"].extend({\n name: name || c.replace(/__/g, '-'),\n functional: true,\n props: {\n tag: {\n type: String,\n default: el\n }\n },\n render(h, {\n data,\n props,\n children\n }) {\n data.staticClass = `${c} ${data.staticClass || ''}`.trim();\n return h(props.tag, data, children);\n }\n });\n}\nfunction directiveConfig(binding, defaults = {}) {\n return {\n ...defaults,\n ...binding.modifiers,\n value: binding.arg,\n ...(binding.value || {})\n };\n}\nfunction addOnceEventListener(el, eventName, cb, options = false) {\n const once = event => {\n cb(event);\n el.removeEventListener(eventName, once, options);\n };\n el.addEventListener(eventName, once, options);\n}\nlet passiveSupported = false;\ntry {\n if (typeof window !== 'undefined') {\n const testListenerOpts = Object.defineProperty({}, 'passive', {\n get: () => {\n passiveSupported = true;\n }\n });\n window.addEventListener('testListener', testListenerOpts, testListenerOpts);\n window.removeEventListener('testListener', testListenerOpts, testListenerOpts);\n }\n} catch (e) {\n console.warn(e);\n}\n/* eslint-disable-line no-console */\n\n\nfunction addPassiveEventListener(el, event, cb, options) {\n el.addEventListener(event, cb, passiveSupported ? options : false);\n}\nfunction getNestedValue(obj, path, fallback) {\n const last = path.length - 1;\n if (last < 0) return obj === undefined ? fallback : obj;\n for (let i = 0; i < last; i++) {\n if (obj == null) {\n return fallback;\n }\n obj = obj[path[i]];\n }\n if (obj == null) return fallback;\n return obj[path[last]] === undefined ? fallback : obj[path[last]];\n}\nfunction deepEqual(a, b) {\n if (a === b) return true;\n if (a instanceof Date && b instanceof Date && a.getTime() !== b.getTime()) {\n // If the values are Date, compare them as timestamps\n return false;\n }\n if (a !== Object(a) || b !== Object(b)) {\n // If the values aren't objects, they were already checked for equality\n return false;\n }\n const props = Object.keys(a);\n if (props.length !== Object.keys(b).length) {\n // Different number of props, don't bother to check\n return false;\n }\n return props.every(p => deepEqual(a[p], b[p]));\n}\nfunction getObjectValueByPath(obj, path, fallback) {\n // credit: http://stackoverflow.com/questions/6491463/accessing-nested-javascript-objects-with-string-key#comment55278413_6491621\n if (obj == null || !path || typeof path !== 'string') return fallback;\n if (obj[path] !== undefined) return obj[path];\n path = path.replace(/\\[(\\w+)\\]/g, '.$1'); // convert indexes to properties\n\n path = path.replace(/^\\./, ''); // strip a leading dot\n\n return getNestedValue(obj, path.split('.'), fallback);\n}\nfunction getPropertyFromItem(item, property, fallback) {\n if (property == null) return item === undefined ? fallback : item;\n if (item !== Object(item)) return fallback === undefined ? item : fallback;\n if (typeof property === 'string') return getObjectValueByPath(item, property, fallback);\n if (Array.isArray(property)) return getNestedValue(item, property, fallback);\n if (typeof property !== 'function') return fallback;\n const value = property(item, fallback);\n return typeof value === 'undefined' ? fallback : value;\n}\nfunction createRange(length) {\n return Array.from({\n length\n }, (v, k) => k);\n}\nfunction getZIndex(el) {\n if (!el || el.nodeType !== Node.ELEMENT_NODE) return 0;\n const index = +window.getComputedStyle(el).getPropertyValue('z-index');\n if (!index) return getZIndex(el.parentNode);\n return index;\n}\nfunction filterObjectOnKeys(obj, keys) {\n const filtered = {};\n for (let i = 0; i < keys.length; i++) {\n const key = keys[i];\n if (typeof obj[key] !== 'undefined') {\n filtered[key] = obj[key];\n }\n }\n return filtered;\n}\nfunction convertToUnit(str, unit = 'px') {\n if (str == null || str === '') {\n return undefined;\n } else if (isNaN(+str)) {\n return String(str);\n } else {\n return `${Number(str)}${unit}`;\n }\n}\nfunction kebabCase(str) {\n return (str || '').replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();\n}\nfunction isObject(obj) {\n return obj !== null && typeof obj === 'object';\n} // KeyboardEvent.keyCode aliases\n\nconst keyCodes = Object.freeze({\n enter: 13,\n tab: 9,\n delete: 46,\n esc: 27,\n space: 32,\n up: 38,\n down: 40,\n left: 37,\n right: 39,\n end: 35,\n home: 36,\n del: 46,\n backspace: 8,\n insert: 45,\n pageup: 33,\n pagedown: 34,\n shift: 16\n});\n/**\n * This remaps internal names like '$cancel' or '$vuetify.icons.cancel'\n * to the current name or component for that icon.\n */\n\nfunction remapInternalIcon(vm, iconName) {\n // Look for custom component in the configuration\n const component = vm.$vuetify.icons.component; // Look for overrides\n\n if (iconName.startsWith('$')) {\n // Get the target icon name\n const iconPath = `$vuetify.icons.values.${iconName.split('$').pop().split('.').pop()}`; // Now look up icon indirection name,\n // e.g. '$vuetify.icons.values.cancel'\n\n const override = getObjectValueByPath(vm, iconPath, iconName);\n if (typeof override === 'string') iconName = override;else return override;\n }\n if (component == null) {\n return iconName;\n }\n return {\n component,\n props: {\n icon: iconName\n }\n };\n}\nfunction keys(o) {\n return Object.keys(o);\n}\n/**\n * Camelize a hyphen-delimited string.\n */\n\nconst camelizeRE = /-(\\w)/g;\nconst camelize = str => {\n return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : '');\n};\n/**\n * Returns the set difference of B and A, i.e. the set of elements in B but not in A\n */\n\nfunction arrayDiff(a, b) {\n const diff = [];\n for (let i = 0; i < b.length; i++) {\n if (a.indexOf(b[i]) < 0) diff.push(b[i]);\n }\n return diff;\n}\n/**\n * Makes the first character of a string uppercase\n */\n\nfunction upperFirst(str) {\n return str.charAt(0).toUpperCase() + str.slice(1);\n}\nfunction groupItems(items, groupBy, groupDesc) {\n const key = groupBy[0];\n const groups = [];\n let current;\n for (let i = 0; i < items.length; i++) {\n const item = items[i];\n const val = getObjectValueByPath(item, key, null);\n if (current !== val) {\n current = val;\n groups.push({\n name: val !== null && val !== void 0 ? val : '',\n items: []\n });\n }\n groups[groups.length - 1].items.push(item);\n }\n return groups;\n}\nfunction wrapInArray(v) {\n return v != null ? Array.isArray(v) ? v : [v] : [];\n}\nfunction sortItems(items, sortBy, sortDesc, locale, customSorters) {\n if (sortBy === null || !sortBy.length) return items;\n const stringCollator = new Intl.Collator(locale, {\n sensitivity: 'accent',\n usage: 'sort'\n });\n return items.sort((a, b) => {\n for (let i = 0; i < sortBy.length; i++) {\n const sortKey = sortBy[i];\n let sortA = getObjectValueByPath(a, sortKey);\n let sortB = getObjectValueByPath(b, sortKey);\n if (sortDesc[i]) {\n [sortA, sortB] = [sortB, sortA];\n }\n if (customSorters && customSorters[sortKey]) {\n const customResult = customSorters[sortKey](sortA, sortB);\n if (!customResult) continue;\n return customResult;\n } // Check if both cannot be evaluated\n\n if (sortA === null && sortB === null) {\n continue;\n } // Dates should be compared numerically\n\n if (sortA instanceof Date && sortB instanceof Date) {\n return sortA.getTime() - sortB.getTime();\n }\n [sortA, sortB] = [sortA, sortB].map(s => (s || '').toString().toLocaleLowerCase());\n if (sortA !== sortB) {\n if (!isNaN(sortA) && !isNaN(sortB)) return Number(sortA) - Number(sortB);\n return stringCollator.compare(sortA, sortB);\n }\n }\n return 0;\n });\n}\nfunction defaultFilter(value, search, item) {\n return value != null && search != null && typeof value !== 'boolean' && value.toString().toLocaleLowerCase().indexOf(search.toLocaleLowerCase()) !== -1;\n}\nfunction searchItems(items, search) {\n if (!search) return items;\n search = search.toString().toLowerCase();\n if (search.trim() === '') return items;\n return items.filter(item => Object.keys(item).some(key => defaultFilter(getObjectValueByPath(item, key), search, item)));\n}\n/**\n * Returns:\n * - 'normal' for old style slots - `